clean start for v2
@@ -1,15 +0,0 @@
|
||||
/* eslint-env node */
|
||||
require("@rushstack/eslint-patch/modern-module-resolution");
|
||||
|
||||
module.exports = {
|
||||
"root": true,
|
||||
"extends": [
|
||||
"plugin:vue/vue3-essential",
|
||||
"eslint:recommended",
|
||||
"@vue/eslint-config-typescript/recommended",
|
||||
"@vue/eslint-config-prettier"
|
||||
],
|
||||
"env": {
|
||||
"vue/setup-compiler-macros": true,
|
||||
}
|
||||
}
|
@@ -1,6 +0,0 @@
|
||||
trailingComma = 'none'
|
||||
tabWidth = 2
|
||||
semi = false
|
||||
singleQuote = true
|
||||
printWidth = 80
|
||||
bracketSameLine = true
|
546
.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
vendored
785
.yarn/releases/yarn-3.2.0.cjs
vendored
@@ -1,7 +0,0 @@
|
||||
nodeLinker: node-modules
|
||||
|
||||
plugins:
|
||||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
|
||||
spec: "@yarnpkg/plugin-interactive-tools"
|
||||
|
||||
yarnPath: .yarn/releases/yarn-3.2.0.cjs
|
60
Jenkinsfile
vendored
@@ -1,60 +0,0 @@
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
environment {
|
||||
FTP_HOST = credentials('csgowtf-deploy-host')
|
||||
LFTP_PASSWORD = credentials('csgowtf-deploy-password')
|
||||
API_HOST = credentials('csgowtf-api-host')
|
||||
TRACK_HOST = credentials('csgowtf-track-host')
|
||||
TRACK_ID = credentials('csgowtf-track-id')
|
||||
TRACK_DOMAINS = credentials('csgowtf-track-domains')
|
||||
TRACK = credentials('csgowtf-track')
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Prepare') {
|
||||
steps {
|
||||
writeFile file: '.env.production', text: 'VUE_APP_API_URL=$API_HOST\nVUE_APP_TRACK_URL=$TRACK_HOST\nVUE_APP_TRACK_ID=$TRACK_ID\nVUE_APP_TRACK_DOMAINS=$TRACK_DOMAINS\nVUE_APP_TRACKING=$TRACK'
|
||||
}
|
||||
}
|
||||
stage('Install Dependencies') {
|
||||
steps {
|
||||
sh 'yarn install'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'yarn build'
|
||||
archiveArtifacts artifacts: '**/dist/**', excludes: '**/node_modules/**'
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
when {
|
||||
branch 'master'
|
||||
expression {
|
||||
currentBuild.result == null || currentBuild.result == 'SUCCESS'
|
||||
}
|
||||
}
|
||||
environment {
|
||||
FTP_USERNAME = credentials('csgowtf-deploy-user')
|
||||
}
|
||||
steps {
|
||||
sh 'lftp -u $FTP_USERNAME --env-password -e \'mirror --reverse --verbose --delete --recursion=always dist/ /\' $FTP_HOST'
|
||||
}
|
||||
}
|
||||
stage('Deploy Dev') {
|
||||
when {
|
||||
branch 'dev'
|
||||
expression {
|
||||
currentBuild.result == null || currentBuild.result == 'SUCCESS'
|
||||
}
|
||||
}
|
||||
environment {
|
||||
FTP_USERNAME = credentials('csgowtf-deploy-user-dev')
|
||||
}
|
||||
steps {
|
||||
sh 'lftp -u $FTP_USERNAME --env-password -e \'mirror --reverse --verbose --delete --recursion=always dist/ /\' $FTP_HOST'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
232
LICENSE
@@ -1,232 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
“This License” refers to version 3 of the GNU General Public License.
|
||||
|
||||
“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
|
||||
|
||||
“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
|
||||
|
||||
To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
|
||||
|
||||
A “covered work” means either the unmodified Program or a work based on the Program.
|
||||
|
||||
To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
|
||||
|
||||
To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
|
||||
|
||||
A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
|
||||
|
||||
The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
|
||||
|
||||
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
|
||||
|
||||
A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
|
||||
|
||||
“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
|
||||
|
||||
An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
|
||||
|
||||
A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
|
||||
|
||||
A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
27
README.md
@@ -1,27 +0,0 @@
|
||||
# CSGOW.TF
|
||||
|
||||
[](https://vuejs.org/)
|
||||
[](https://go.dev/)
|
||||
[](https://git.harting.dev/CSGOWTF/csgowtf/src/branch/master/LICENSE)
|
||||
[](https://liberapay.com/CSGOWTF/)
|
||||
[](https://liberapay.com/CSGOWTF/)
|
||||
[](https://csgow.tf/)
|
||||
<!--[](https://www.typescriptlang.org/)-->
|
||||
|
||||
### Statistics for CS:GO matchmaking matches.
|
||||
|
||||
---
|
||||
|
||||
## Backend
|
||||
This is the frontend to the [csgowtfd](https://git.harting.dev/CSGOWTF/csgowtfd) backend.
|
||||
|
||||
## Tips on how to contribute
|
||||
- If you are implementing or fixing an issue, please comment on the issue so work is not duplicated.
|
||||
- If you want to implement a new feature, create an issue first describing the issue, so we know about it.
|
||||
- Don't commit unnecessary changes to the codebase or debugging code.
|
||||
- Write meaningful commits or squash them.
|
||||
- Please try to follow the code style of the rest of the codebase.
|
||||
- Only make pull requests to the dev branch.
|
||||
- Only implement one feature per pull request to keep it easy to understand.
|
||||
- Expect comments or questions on your pull request from the project maintainers. We try to keep the code as consistent and maintainable as possible.
|
||||
- Each pull request should come from a new branch in your fork, it should have a meaningful name.
|
62
index.html
@@ -1,62 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta content="IE=edge" http-equiv="X-UA-Compatible">
|
||||
<meta content="width=device-width,initial-scale=1.0" name="viewport">
|
||||
|
||||
<meta content="Track your CSGO matches and see your match details."
|
||||
name="description">
|
||||
<meta content="index, follow, archive"
|
||||
name="robots">
|
||||
<meta content="Track your CSGO matches and see your match details."
|
||||
property="st:section">
|
||||
<meta content="csgoWTF - Open source CSGO data platform"
|
||||
name="twitter:title">
|
||||
<meta content="Track your CSGO matches and see your match details."
|
||||
name="twitter:description">
|
||||
<meta content="summary_large_image"
|
||||
name="twitter:card">
|
||||
<meta content="https://csgow.tf/"
|
||||
property="og:url">
|
||||
<meta content="csgoWTF - Open source CSGO data platform"
|
||||
property="og:title">
|
||||
<meta content="Track your CSGO matches and see your match details."
|
||||
property="og:description">
|
||||
<meta content="website"
|
||||
property="og:type">
|
||||
<meta content="en_US"
|
||||
property="og:locale">
|
||||
<meta content="csgoWTF - Open source CSGO data platform"
|
||||
property="og:site_name">
|
||||
<meta content="https://csgow.tf/images/logo.png"
|
||||
name="twitter:image">
|
||||
<meta content="https://csgow.tf/images/logo.png"
|
||||
property="og:image">
|
||||
<meta content="1024"
|
||||
property="og:image:width">
|
||||
<meta content="526"
|
||||
property="og:image:height">
|
||||
<meta content="https://csgow.tf/images/logo.png"
|
||||
property="og:image:secure_url">
|
||||
|
||||
<link href="/images/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">
|
||||
<link href="/images/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png">
|
||||
<link href="/images/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png">
|
||||
|
||||
<link href="/site.webmanifest" rel="manifest">
|
||||
|
||||
<link rel="preconnect" href="https://steamcdn-a.akamaihd.net" crossorigin>
|
||||
<link rel="dns-prefetch" href="https://steamcdn-a.akamaihd.net">
|
||||
<link rel="preconnect" href="https://api.csgow.tf" crossorigin>
|
||||
<link rel="dns-prefetch" href="https://api.csgow.tf">
|
||||
<link rel="preconnect" href="https://piwik.harting.hosting" crossorigin>
|
||||
<link rel="dns-prefetch" href="https://piwik.harting.hosting">
|
||||
|
||||
<title>csgoWTF</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
49
package.json
@@ -1,49 +0,0 @@
|
||||
{
|
||||
"name": "csgowtf",
|
||||
"version": "1.0.7",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"host": "vite --host",
|
||||
"build": "vue-tsc --noEmit && vite build",
|
||||
"preview": "vite preview --port 5050",
|
||||
"typecheck": "vue-tsc --noEmit",
|
||||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
|
||||
},
|
||||
"dependencies": {
|
||||
"@popperjs/core": "^2.11.4",
|
||||
"axios": "^0.26.1",
|
||||
"bootstrap": "^5.1.3",
|
||||
"bootstrap-icons": "^1.8.1",
|
||||
"csgo-sharecode": "^3.0.1",
|
||||
"echarts": "^5.3.1",
|
||||
"fork-awesome": "^1.2.0",
|
||||
"http-status-codes": "^2.2.0",
|
||||
"iso-639-1": "^2.1.13",
|
||||
"jquery": "^3.6.0",
|
||||
"luxon": "^2.3.1",
|
||||
"pinia": "^2.0.12",
|
||||
"vue": "^3.2.31",
|
||||
"vue-matomo": "^4.1.0",
|
||||
"vue-router": "^4.0.14",
|
||||
"vue3-cookies": "^1.0.6",
|
||||
"vuex": "^4.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rushstack/eslint-patch": "^1.1.1",
|
||||
"@types/echarts": "^4.9.13",
|
||||
"@types/luxon": "^2.3.1",
|
||||
"@types/node": "^16.11.26",
|
||||
"@vitejs/plugin-vue": "^2.2.4",
|
||||
"@vue/eslint-config-prettier": "^7.0.0",
|
||||
"@vue/eslint-config-typescript": "^10.0.0",
|
||||
"@vue/tsconfig": "^0.1.3",
|
||||
"eslint": "^8.11.0",
|
||||
"eslint-plugin-vue": "^8.5.0",
|
||||
"prettier": "^2.6.0",
|
||||
"sass": "^1.49.9",
|
||||
"typescript": "~4.6.2",
|
||||
"vite": "^2.8.6",
|
||||
"vue-tsc": "^0.33.2"
|
||||
},
|
||||
"packageManager": "yarn@3.2.0"
|
||||
}
|
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 504 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.5 MiB |
@@ -1,81 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="256px" height="256px" viewBox="0 0 256 256" enable-background="new 0 0 256 256" xml:space="preserve">
|
||||
<ellipse fill="#5E7B93" cx="128" cy="127.833" rx="128" ry="127.833"/>
|
||||
<ellipse cx="128.418" cy="127.833" rx="118.833" ry="118.678"/>
|
||||
<g>
|
||||
<path fill="#1E2A31" d="M222.433,133.458c0,0-4.328,0.891-8.53-0.635c8.404-5.596,8.53-11.826,8.53-11.826
|
||||
s-6.365,1.145-9.929-0.763c8.146-6.993,8.656-17.548,8.656-17.548s-3.437,1.526-8.912,1.781c8.402-9.41,4.711-18.057,4.711-18.057
|
||||
s-5.603,3.942-12.731,6.739c5.475-14.114,2.8-23.65,2.8-23.65s-6.238,6.993-11.075,9.536c2.672-16.275-1.784-23.523-1.784-23.523
|
||||
s-1.4,4.96-7.384,9.155c-0.638-17.293-4.328-18.31-4.328-18.31s-1.656,4.322-4.076,7.12c-1.018-16.657-5.22-17.166-5.22-17.166
|
||||
s-0.127,2.798-1.782,7.629c-0.255-10.426-7.258-16.275-7.003-14.495s-0.891,18.692-0.891,18.692s56.861,99.59,22.005,105.936
|
||||
c-9.983,1.817-27.486-4.012-55.999-22.015c0.51,5.341,1.91,29.119,9.039,41.58c7.131,12.462,17.315,17.293,17.315,17.293
|
||||
s6.112-2.797,4.966-3.434c-1.146-0.635-2.929-3.306-0.764-2.161c2.164,1.144,2.037,0.764,2.037,0.764l2.419-2.036l3.184,0.382
|
||||
c0,0,22.407,0.509,19.352-1.398c-3.054-1.907-10.694-7.121-10.694-7.121s-16.423-0.508,5.603-0.127
|
||||
c22.026,0.382,31.575-15.385,31.575-15.385s-2.929,0.253-5.984-1.271c12.604-5.088,10.187-9.41,10.187-9.41
|
||||
s-7.003,0.382-9.168-1.653C223.579,142.359,222.433,133.458,222.433,133.458z"/>
|
||||
<path fill="#1E2A31" d="M71.348,154.074C36.49,147.729,93.352,48.139,93.352,48.139s-1.146-16.912-0.892-18.692
|
||||
c0.255-1.78-6.748,4.069-7.002,14.495c-1.655-4.831-1.782-7.629-1.782-7.629s-4.202,0.509-5.221,17.166
|
||||
c-2.419-2.798-4.074-7.12-4.074-7.12s-3.692,1.017-4.329,18.31c-5.983-4.195-7.384-9.155-7.384-9.155s-4.457,7.248-1.783,23.523
|
||||
C56.047,76.493,49.809,69.5,49.809,69.5s-2.674,9.536,2.801,23.65c-7.13-2.797-12.732-6.739-12.732-6.739
|
||||
s-3.692,8.646,4.711,18.057c-5.476-0.255-8.912-1.781-8.912-1.781s0.509,10.555,8.657,17.548c-3.564,1.907-9.931,0.763-9.931,0.763
|
||||
s0.128,6.23,8.53,11.826c-4.202,1.525-8.53,0.635-8.53,0.635s-1.146,8.901,13.878,14.623c-2.165,2.035-9.168,1.653-9.168,1.653
|
||||
s-2.418,4.322,10.187,9.41c-3.056,1.524-5.984,1.271-5.984,1.271s9.549,15.767,31.575,15.385c22.027-0.381,5.602,0.127,5.602,0.127
|
||||
s-7.639,5.214-10.693,7.121c-3.057,1.907,19.352,1.398,19.352,1.398l3.184-0.382l2.418,2.036c0,0-0.126,0.38,2.038-0.764
|
||||
c2.164-1.145,0.382,1.526-0.764,2.161c-1.146,0.637,4.965,3.434,4.965,3.434s10.187-4.831,17.316-17.293
|
||||
c7.13-12.461,8.53-36.239,9.039-41.58C98.833,150.063,81.33,155.892,71.348,154.074z"/>
|
||||
</g>
|
||||
<path fill="#FFFFFF" d="M68.972,115.876"/>
|
||||
<g>
|
||||
<path fill="#5A7383" d="M91.172,130.499c-0.254,6.866-0.509,17.039-0.892,19.073c-0.382,2.034-2.928,4.959-7.384,3.179
|
||||
c-5.984-2.034-10.059-10.299-7.767-32.933c5.983-32.933,29.481-84.025,29.481-84.025s-8.855-2.186-10.257,11.038
|
||||
c-1.654,0.382-2.291-1.779-2.291-1.779s-2.674,2.67-2.165,10.936c-2.674,1.271-3.183-4.705-3.183-4.705s-3.183,3.814-2.291,15.64
|
||||
c-2.165-0.381-3.312-4.959-3.312-4.959s-4.455,2.162-3.564,19.709c-3.82-2.416-6.493-8.138-6.493-8.138s-4.202,6.485,0.382,20.727
|
||||
c-4.966-4.069-7.512-6.485-7.512-6.485s-4.966,8.138,3.819,23.269c-6.748-5.594-11.332-9.79-11.332-9.79s-2.291,5.213,4.457,17.674
|
||||
c-6.238-3.56-12.478-7.884-12.478-7.884s-1.782,8.139,9.167,17.93c-4.201-0.891-10.567-2.416-10.567-2.416s0.382,7.12,8.021,12.08
|
||||
c-6.748,0.89-9.167,0.635-9.167,0.635s6.11,9.919,15.405,12.588c-8.149,2.798-9.804,3.308-9.804,3.308s0.891,4.45,19.226,4.322
|
||||
c0.382,1.399-16.425,4.196-16.425,4.196s2.929,6.23,27.247,4.451c-0.256,1.906-8.403,5.977-8.403,5.977s13.75,0.254,14.132,0.254
|
||||
s27.502-31.153,27.502-31.153l-10.187-7.757C104.54,135.458,100.721,130.499,91.172,130.499z"/>
|
||||
<path fill="#5A7383" d="M211.829,139.272c0,0-2.42,0.255-9.168-0.635c7.64-4.96,8.021-12.08,8.021-12.08s-6.365,1.525-10.567,2.416
|
||||
c10.95-9.791,9.167-17.93,9.167-17.93s-6.238,4.324-12.477,7.884c6.747-12.461,4.457-17.674,4.457-17.674s-4.585,4.196-11.331,9.79
|
||||
c8.784-15.131,3.819-23.269,3.819-23.269s-2.548,2.416-7.512,6.485c4.582-14.241,0.38-20.727,0.38-20.727s-2.672,5.722-6.493,8.138
|
||||
c0.892-17.547-3.564-19.709-3.564-19.709s-1.146,4.578-3.311,4.959c0.891-11.825-2.291-15.64-2.291-15.64s-0.509,5.976-3.184,4.705
|
||||
c0.51-8.266-2.165-10.936-2.165-10.936s-0.636,2.161-2.291,1.779c-1.4-13.224-10.258-11.038-10.258-11.038
|
||||
s23.499,51.093,29.483,84.025c2.291,22.634-1.783,30.898-7.767,32.933c-4.457,1.78-7.003-1.145-7.386-3.179
|
||||
c-0.381-2.034-0.636-12.207-0.891-19.073c-9.549,0-13.369,4.959-13.369,4.959l-10.185,7.757c0,0,27.119,31.153,27.502,31.153
|
||||
c0.381,0,14.131-0.254,14.131-0.254s-8.146-4.07-8.402-5.977c24.319,1.779,27.246-4.451,27.246-4.451s-16.807-2.797-16.423-4.196
|
||||
c18.333,0.128,19.225-4.322,19.225-4.322s-1.656-0.51-9.805-3.308C205.719,149.191,211.829,139.272,211.829,139.272z"/>
|
||||
</g>
|
||||
<path fill="#5A7383" d="M20.335,256"/>
|
||||
<path fill="#5A7383" d="M21.354,246.464"/>
|
||||
<g>
|
||||
<polygon fill="none" points="128.502,105.81 128.502,105.768 128.5,105.81 "/>
|
||||
<path fill="#8D9BA4" d="M85.512,220.448c0.014-0.024,0.027-0.047,0.04-0.072c0.003-0.047,0.006-0.089,0.009-0.136
|
||||
c-0.005,0.039-0.009,0.071-0.009,0.071S85.536,220.369,85.512,220.448z"/>
|
||||
<path fill="#8D9BA4" d="M80.158,225.21c-0.689,0.144-1.456,0.218-2.323,0.188C78.604,225.453,79.385,225.401,80.158,225.21z"/>
|
||||
<path fill="#5A7383" d="M84.66,179.05c-2.675,5.977-5.855,14.686-6.875,46.343c0,0.002,0.033,0.005,0.05,0.005
|
||||
c0.867,0.03,1.634-0.044,2.323-0.188c3.971-0.827,5.054-5.174,5.054-5.174s-0.085-21.531,6.132-33.738
|
||||
c8.977-17.631,36.987-51.497,36.987-51.497l-0.283-0.392l-5.064-6.983C122.983,127.426,87.334,173.074,84.66,179.05z"/>
|
||||
<path fill="#8D9BA4" d="M171.44,220.24c0.004,0.047,0.006,0.089,0.01,0.136c0.012,0.025,0.025,0.048,0.037,0.072
|
||||
c-0.023-0.079-0.037-0.137-0.037-0.137S171.446,220.279,171.44,220.24z"/>
|
||||
<path fill="#8D9BA4" d="M179.164,225.397c-0.865,0.03-1.633-0.044-2.321-0.188C177.614,225.401,178.396,225.453,179.164,225.397z"
|
||||
/>
|
||||
<path fill="#8D9BA4" d="M184.692,191.003c-2.379-16.445-15.11-32-15.11-32l-29.325-39.207l6.067-13.352l-1.484-39.671l-4.455-3.18
|
||||
c0,0-10.885,33.141-10.187,33.188c1.909,0.127,3.311,1.398,3.311,4.578c0,4.45-5.007,4.408-5.007,4.408v0.042H128.5l0.002-0.042
|
||||
c0,0-5.01,0.042-5.01-4.408c0-3.18,1.4-4.451,3.311-4.578c0.7-0.047-10.186-33.188-10.186-33.188l-4.456,3.18l-1.485,39.671
|
||||
l6.068,13.352l-29.325,39.207c0,0-12.731,15.555-15.109,32c-2.376,16.444-1.824,25.304-1.782,28.99
|
||||
c0.025,2.128,3.455,5.098,7.258,5.399c1.02-31.657,4.2-40.366,6.875-46.343c2.674-5.976,38.323-51.624,38.323-51.624l5.064,6.983
|
||||
c0.176-0.203,0.283-0.329,0.283-0.329v-0.043h0.34v0.043c0,0,0.109,0.126,0.282,0.329l5.064-6.983c0,0,35.651,45.648,38.323,51.624
|
||||
c2.674,5.977,5.857,14.686,6.876,46.343c3.801-0.302,7.233-3.271,7.257-5.399C186.516,216.307,187.068,207.447,184.692,191.003z"/>
|
||||
<path fill="#5A7383" d="M134.018,127.426l-5.064,6.983l-0.282,0.392c0,0,28.01,33.866,36.986,51.497
|
||||
c6.216,12.207,6.131,33.738,6.131,33.738s1.084,4.347,5.055,5.174c0.688,0.144,1.456,0.218,2.321,0.188
|
||||
c0.019,0,0.053-0.003,0.053-0.005c-1.019-31.657-4.202-40.366-6.876-46.343C169.669,173.074,134.018,127.426,134.018,127.426z"/>
|
||||
</g>
|
||||
<rect x="129.134" y="145.292" fill="#5A7383" width="1.138" height="10.682"/>
|
||||
<rect x="125.314" y="144.91" transform="matrix(0.9877 0.1562 -0.1562 0.9877 25.0114 -17.8169)" fill="#5A7383" width="1.138" height="10.681"/>
|
||||
<rect x="121.494" y="143.978" transform="matrix(0.9635 0.2677 -0.2677 0.9635 44.4255 -27.2256)" fill="#5A7383" width="1.138" height="10.681"/>
|
||||
<rect x="133.144" y="144.91" transform="matrix(-0.9877 0.1563 -0.1563 -0.9877 289.2685 277.7526)" fill="#5A7383" width="1.137" height="10.68"/>
|
||||
<rect x="136.964" y="143.978" transform="matrix(-0.9636 0.2675 -0.2675 -0.9636 309.9945 256.4118)" fill="#5A7383" width="1.139" height="10.681"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 7.9 KiB |
@@ -1,118 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="64px" height="64px" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M49.866,63.49c-1.567,0.283-3.126,0.297-4.646-0.029
|
||||
c-0.447-1.072-0.401-2.127-0.358-3.168c0.065-1.566-0.142-3.102-0.431-4.629c-0.244-1.287-0.557-2.559-0.818-3.742
|
||||
c-0.5-0.525-0.881-1.02-1.637-1.141c-0.174,0.152-0.392,0.344-0.637,0.559c0.225,0.402,0.42,0.75,0.666,1.188
|
||||
c-0.436,0.381-0.883,0.773-1.395,1.223c-0.413-0.314-0.785-0.545-1.091-0.842c-1.122-1.094-2.228-2.205-3.327-3.322
|
||||
c-0.55-0.559-0.963-1.193-1.217-1.959c-0.713-2.145-1.27-4.318-1.604-6.559c-0.243-1.633-0.572-3.248-0.595-4.906
|
||||
c-0.005-0.389-0.14-0.775-0.085-1.217c1.049,1.383,2.102,2.762,3.144,4.148c1.338,1.781,2.679,3.559,3.995,5.355
|
||||
c1.438,1.959,2.852,3.938,4.27,5.91c0.527,0.734,0.725,1.607,0.911,2.457c0.337,1.541,0.641,3.096,0.835,4.66
|
||||
c0.166,1.34,0.16,2.699,0.229,4.051c0.014,0.266,0.025,0.533,0.041,0.855c0.51,0,0.972,0,1.453,0
|
||||
c0.313-0.637,0.384-1.33,0.352-2.045c-0.016-0.34-0.008-0.682-0.002-1.021c0.039-1.971-0.291-3.889-0.768-5.793
|
||||
c-0.426-1.699-0.744-3.432-1.486-5.029c-0.453-0.977-0.958-1.947-1.575-2.824c-1.534-2.182-3.14-4.313-4.728-6.455
|
||||
c-1.547-2.088-3.111-4.164-4.662-6.248c-0.34-0.455-0.658-0.928-1.01-1.422c-0.898,0.43-0.979,1.516-1.844,2
|
||||
c-0.695-0.475-0.841-1.496-1.713-1.967c-0.373,0.479-0.766,0.963-1.139,1.463c-1.602,2.131-3.208,4.26-4.789,6.406
|
||||
c-1.303,1.766-2.59,3.545-3.85,5.34c-0.659,0.939-1.277,1.91-1.857,2.898c-0.884,1.508-1.199,3.221-1.643,4.879
|
||||
c-0.328,1.23-0.632,2.48-0.785,3.742c-0.16,1.305-0.387,2.619-0.246,3.945c0.072,0.697,0.193,1.391,0.301,2.137
|
||||
c0.461,0,0.924,0,1.444,0c0.03-0.156,0.08-0.313,0.087-0.471c0.088-2.057,0.19-4.107,0.605-6.131
|
||||
c0.248-1.219,0.465-2.443,0.675-3.668c0.13-0.756,0.528-1.387,0.94-1.992c1.012-1.475,2.063-2.924,3.124-4.365
|
||||
c1.261-1.713,2.55-3.404,3.819-5.111c1.311-1.758,2.61-3.525,3.92-5.283c0.076-0.102,0.2-0.168,0.355-0.293
|
||||
c0.023,0.199,0.064,0.334,0.05,0.461c-0.112,1.037-0.222,2.072-0.359,3.105c-0.134,0.998-0.287,1.996-0.456,2.99
|
||||
c-0.357,2.092-0.851,4.148-1.557,6.154c-0.352,0.998-1.072,1.74-1.744,2.475c-1.115,1.223-2.381,2.305-3.529,3.395
|
||||
c-0.848-0.078-1.236-0.607-1.705-1.111c0.184-0.322,0.365-0.637,0.582-1.016c-0.082-0.131-0.147-0.352-0.293-0.436
|
||||
c-0.156-0.09-0.42-0.127-0.58-0.057c-0.46,0.199-0.891,0.463-1.229,0.645c-1.143,3.857-1.445,7.682-1.623,11.482
|
||||
c-0.375,0.369-0.765,0.516-1.233,0.51c-1.021-0.014-2.043-0.006-3.028-0.006c-0.777-0.398-0.762-1.156-0.794-1.787
|
||||
c-0.076-1.494-0.101-3.002,0-4.494c0.09-1.336,0.392-2.654,0.567-3.986c0.193-1.473,0.594-2.893,0.953-4.328
|
||||
c0.371-1.477,1.078-2.766,1.863-4.033c0.139-0.223,0.277-0.445,0.469-0.752c-0.332-0.016-0.576-0.082-0.792-0.029
|
||||
c-0.937,0.227-1.862,0.016-2.794,0.004c-2.004-0.023-3.764-0.658-5.313-1.912c-0.078-0.064-0.162-0.129-0.217-0.211
|
||||
c-0.164-0.25-0.316-0.506-0.54-0.867c1.759-0.406,3.44-0.795,5.347-1.236c-0.408-0.232-0.619-0.363-0.84-0.477
|
||||
c-0.932-0.482-1.924-0.869-2.783-1.457c-1.338-0.912-2.393-2.104-2.824-3.732c-0.033-0.129-0.051-0.264-0.062-0.396
|
||||
c-0.005-0.066,0.023-0.133,0.06-0.313c1.344-0.107,2.73,0.016,4.297-0.076c-0.809-0.533-1.461-0.973-2.124-1.396
|
||||
c-0.714-0.457-1.142-1.145-1.537-1.859c-0.393-0.709-0.688-1.451-0.694-2.385c1.472,0.633,2.863,1.264,4.525,1.578
|
||||
c-1.72-1.916-2.219-4.09-2.285-6.459c1.064,0.691,2.051,1.33,3.033,1.967c0.32-0.24,0.252-0.502,0.157-0.754
|
||||
c-0.532-1.426-0.577-2.908-0.532-4.4c0.02-0.676,0.298-1.52,0.646-2.002c0.77,0.654,1.537,1.307,2.398,2.039
|
||||
c0-0.588,0.094-1.107-0.02-1.578c-0.246-1.016-0.135-1.99-0.009-3.006c0.112-0.906,0.153-1.813,0.462-2.682
|
||||
c0.031-0.088,0.09-0.166,0.174-0.318c0.666,0.41,1.309,0.805,2.066,1.271c-0.025-2.369-0.088-4.615,1.368-6.629
|
||||
c0.472,0.518,0.892,0.979,1.405,1.541c0.123-0.277,0.26-0.457,0.283-0.652c0.18-1.453,0.676-2.816,1.19-4.17
|
||||
c0.468-1.234,1.301-2.217,2.361-3.115c0.382-0.002,0.765-0.457,1.337-0.156c-0.055,0.148-0.092,0.301-0.162,0.438
|
||||
c-1.311,2.57-2.699,5.104-3.916,7.719c-1.227,2.631-2.31,5.326-3.301,8.063c-1.012,2.797-1.815,5.645-2.545,8.516
|
||||
c-0.33,1.299-0.447,2.648-0.688,3.971c-0.297,1.635-0.434,3.277-0.408,4.939c0.021,1.262,0.262,2.486,0.659,3.666
|
||||
c0.503,1.492,2.106,2.957,3.913,2.598c0.727-0.453,0.982-1.113,0.973-1.977c-0.015-1.254-0.127-2.482-0.372-3.719
|
||||
c-0.138-0.689-0.235-1.471,0.19-2.236c1.606,0.471,3.002,1.246,4.25,2.242c0.484-0.012,0.709-0.35,0.918-0.639
|
||||
c0.773-1.064,1.504-2.16,2.266-3.234c0.352-0.492,0.738-0.961,1.158-1.504c-0.648-1.459-1.305-2.939-1.885-4.246
|
||||
c0-0.979-0.016-1.787,0.003-2.594c0.062-2.545,0.116-5.09,0.214-7.631c0.031-0.84,0.182-1.674,0.271-2.463
|
||||
c0.295-0.342,0.578-0.674,0.928-1.08c0.17,0.285,0.324,0.465,0.389,0.672c0.654,2.092,1.29,4.189,1.936,6.283
|
||||
c0.346,1.127,0.701,2.254,1.018,3.27c-0.33,0.436-0.633,0.834-1.021,1.348c-0.127,0.975-0.127,0.975,0.262,1.811
|
||||
c0.283,0.189,0.591,0.395,0.82,0.547c1.465,0.264,2.541-0.049,2.914-1.693c-0.07-0.73-0.43-1.418-1.234-1.861
|
||||
c1.078-3.443,2.144-6.844,3.228-10.307c0.288,0.139,0.525,0.254,0.874,0.422c0.136,0.525,0.396,1.102,0.418,1.686
|
||||
c0.109,2.986,0.143,5.975,0.234,8.959c0.025,0.805,0.164,1.605,0.236,2.289c-0.727,1.574-1.394,3.018-2.078,4.498
|
||||
c1.363,1.818,2.594,3.744,4.063,5.58c1.467-0.887,2.749-1.912,4.393-2.328c0.151,0.141,0.322,0.299,0.559,0.52
|
||||
c-0.086,0.701-0.084,1.457-0.283,2.156c-0.363,1.262-0.393,2.533-0.335,3.869c0.161,0.322,0.344,0.686,0.509,1.014
|
||||
c1.086,0.578,2.39,0.352,3.38-0.557c0.785-0.721,1.159-1.678,1.384-2.666c0.223-0.98,0.318-1.992,0.417-2.994
|
||||
c0.038-0.395-0.063-0.803-0.105-1.203c-0.021-0.201-0.085-0.402-0.077-0.6c0.063-1.805-0.311-3.566-0.672-5.305
|
||||
c-0.654-3.164-1.447-6.301-2.582-9.336c-0.816-2.182-1.609-4.377-2.55-6.506c-1.218-2.76-2.562-5.465-3.874-8.184
|
||||
c-0.352-0.725-0.787-1.408-1.176-2.096c0.272-0.322,0.531-0.25,0.785-0.154c1.111,0.426,1.801,1.291,2.35,2.293
|
||||
c0.95,1.74,1.484,3.615,1.805,5.561c0.01,0.061,0.064,0.113,0.121,0.207c0.713-0.15,0.721-1.041,1.422-1.32
|
||||
c0.582,0.342,0.708,1.053,1.002,1.627c0.178,0.35,0.247,0.773,0.281,1.172c0.098,1.109,0.15,2.225,0.224,3.336
|
||||
c0.004,0.064,0.039,0.127,0.077,0.242c0.693-0.199,1.167-0.744,1.785-1.172c0.137,0.178,0.311,0.309,0.357,0.477
|
||||
c0.23,0.809,0.445,1.621,0.436,2.479c-0.016,1.496-0.004,2.99-0.004,4.619c0.939-0.639,1.47-1.611,2.541-2
|
||||
c0.861,2.369,0.447,4.678-0.275,7.082c1.282-0.219,2.059-1.277,3.234-1.742c0.127,2.338-0.43,4.379-2.049,6.096
|
||||
c0.729,0.111,1.433-0.119,4.238-1.359c0.229,0.844,0.023,1.619-0.414,2.295c-0.664,1.029-1.459,1.953-2.58,2.539
|
||||
c-0.323,0.17-0.611,0.406-1.057,0.707c0.572,0.17,1.026,0.084,1.465,0.102c0.441,0.016,0.885,0.004,1.328,0.004
|
||||
c0.472,0,0.943,0,1.501,0c-0.261,1.691-1.027,2.996-2.271,3.996c-1.189,0.957-2.496,1.742-3.992,2.156
|
||||
c-0.076,0.021-0.134,0.113-0.285,0.25c1.805,0.426,3.52,0.832,5.289,1.248c-0.359,0.813-0.957,1.389-1.695,1.801
|
||||
c-1.38,0.771-2.864,1.188-4.457,1.18c-0.301,0-0.603,0.072-0.904,0.084c-0.361,0.014-0.723,0.01-1.084-0.006
|
||||
c-0.43-0.018-0.857-0.059-1.342-0.094c0.025,0.727,0.467,1.15,0.768,1.594c0.84,1.234,1.227,2.643,1.598,4.035
|
||||
c0.449,1.684,0.771,3.408,1.033,5.133c0.363,2.391,0.232,4.811,0.214,7.219C50.148,62.576,49.995,62.936,49.866,63.49z
|
||||
M29.604,38.008c-0.601,1.32-0.927,2.574-1.355,3.859c0.362,0.115,0.659,0.211,1.021,0.326c0.432-1.279,0.84-2.484,1.27-3.754
|
||||
C30.26,38.311,30,38.189,29.604,38.008z M33.293,38.463c0.434,1.314,0.828,2.51,1.233,3.74c0.337-0.121,0.612-0.221,0.962-0.346
|
||||
c-0.265-1.309-0.775-2.496-1.199-3.805C33.966,38.186,33.699,38.295,33.293,38.463z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M10.299,22.477c-0.89-0.705-1.6-1.27-2.35-1.863
|
||||
c-0.537,1.09-0.227,2.248-0.308,3.367c-0.083,1.166,0.177,2.279,0.548,3.482c-1.053-0.418-2.057-0.816-3.074-1.221
|
||||
c-0.373,2.037,0.383,4.316,2.089,6.309c-0.821,0.027-1.573,0.055-2.396,0.082c0.102,3.033,1.789,5.051,4.006,6.846
|
||||
c-1.23,0.328-2.414,0.643-3.609,0.961c0.019,0.775,0.48,1.266,0.891,1.727c1.643,1.842,3.701,2.895,6.178,3.109
|
||||
c0.869,0.076,1.734,0.191,2.619,0.291c-0.594,1.766-1.32,3.486-2.016,5.197c-1.607-1.057-3.135-2.041-4.643-3.057
|
||||
c-1.49-1.004-3.136-1.646-4.965-1.992c0.59-1.301,1.799-1.271,2.725-1.828c-0.33-0.451-0.852-0.619-1.281-0.879
|
||||
c-1.082-0.648-2.116-1.355-2.949-2.305c-0.733-0.836-1.41-1.725-1.67-2.977c1.419-0.049,2.803,0.004,4.322-0.035
|
||||
c-0.203-0.195-0.282-0.303-0.389-0.367C2.67,36.496,1.6,35.391,0.781,34.027c-0.662-1.1-0.977-2.25-0.654-3.563
|
||||
c1.324,0.176,2.576,0.723,4.033,0.701c-1.975-2.332-2.882-4.891-2.607-7.912c1.346,0.439,2.644,0.863,4.086,1.332
|
||||
c-0.197-0.434-0.298-0.789-0.5-1.072c-0.502-0.707-0.734-1.521-0.924-2.332c-0.198-0.85-0.313-1.727-0.258-2.617
|
||||
c0.039-0.652,0.248-1.242,0.455-1.877c0.963,0.85,1.867,1.646,2.907,2.566c-0.097-3.037-0.05-5.857,1.37-8.588
|
||||
c1.081,0.996,1.615,2.246,2.488,3.436c0.07-0.336,0.137-0.516,0.141-0.697c0.013-0.646,0.008-1.293,0.006-1.941
|
||||
c-0.006-1.572,0.367-3.074,0.892-4.539c0.114-0.322,0.385-0.588,0.623-0.938c0.544,0.832,1.017,1.553,1.589,2.43
|
||||
c0.152-0.631,0.293-1.066,0.361-1.514c0.162-1.082,0.566-2.076,0.999-3.068c0.312-0.713,0.827-1.221,1.519-1.77
|
||||
c0.217,0.66,0.408,1.244,0.638,1.945c0.886-1.303,1.583-2.639,3.096-3.355c0,0.275,0.071,0.504-0.013,0.617
|
||||
c-0.313,0.426-0.441,0.898-0.512,1.406c-0.031,0.23-0.115,0.455-0.197,0.674c-0.319,0.848-0.646,1.693-0.985,2.576
|
||||
c-0.177-0.271-0.374-0.572-0.591-0.904c-0.619-0.051-0.85,0.436-1.104,0.857c-0.582,0.963-0.969,2.01-1.194,3.109
|
||||
c-0.107,0.525-0.142,1.066-0.227,1.598c-0.025,0.154-0.114,0.299-0.219,0.563c-0.473-0.439-0.882-0.82-1.314-1.223
|
||||
c-0.819,0.797-1.065,1.809-1.319,2.826c-0.325,1.301-0.145,2.629-0.231,4.041c-0.794-0.41-0.97-1.348-1.802-1.748
|
||||
c-0.201,0.404-0.463,0.801-0.6,1.234c-0.252,0.803-0.45,1.621-0.438,2.479C10.313,19.912,10.299,21.066,10.299,22.477z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M49.035,45.564c0.951-0.102,1.85-0.232,2.754-0.285
|
||||
c1.315-0.078,2.521-0.535,3.643-1.141c1.51-0.816,2.705-2.008,3.516-3.662c-1.268-0.328-2.519-0.65-3.832-0.99
|
||||
c2.226-1.771,3.881-3.813,4.045-6.871c-0.828,0-1.592,0-2.529,0c1.802-1.838,2.364-3.922,2.32-6.338
|
||||
c-1.139,0.266-2.092,0.74-3.176,1.242c0.666-2.34,0.689-4.613,0.316-6.955c-0.821,0.641-1.557,1.215-2.449,1.912
|
||||
c0-1.467,0.037-2.721-0.01-3.973c-0.047-1.221-0.332-2.389-1.092-3.543c-0.59,0.654-1.116,1.238-1.766,1.959
|
||||
c0.025-1.998,0.107-3.836-0.607-5.564c-0.203-0.49-0.505-0.939-0.813-1.502c-0.51,0.469-0.92,0.846-1.395,1.279
|
||||
c-0.098-0.24-0.223-0.414-0.234-0.594c-0.109-1.609-0.572-3.109-1.339-4.525c-0.247-0.455-0.524-0.861-1.112-1.055
|
||||
c-0.226,0.328-0.445,0.648-0.707,1.029c-0.195-0.631-0.374-1.191-0.541-1.754c-0.18-0.611-0.597-1.113-0.648-1.803
|
||||
c-0.041-0.553-0.367-1.082-0.482-1.67c1.498,0.592,2.201,1.916,3.087,3.252c0.23-0.689,0.425-1.27,0.641-1.916
|
||||
c1.032,0.652,1.575,1.568,1.903,2.615c0.359,1.15,0.66,2.318,1.006,3.543c0.662-0.619,0.988-1.482,1.578-2.277
|
||||
c0.23,0.34,0.494,0.59,0.587,0.891c0.274,0.898,0.472,1.82,0.72,2.729c0.32,1.168,0.158,2.359,0.203,3.541
|
||||
c0.01,0.264,0.04,0.525,0.076,0.975c0.963-1.154,1.455-2.443,2.475-3.377c0.656,0.711,0.922,1.588,1.066,2.418
|
||||
c0.266,1.523,0.342,3.08,0.455,4.625c0.029,0.41-0.095,0.832-0.166,1.381c1.219-0.654,1.994-1.6,2.954-2.514
|
||||
c0.593,1.379,0.565,2.686,0.323,4.072c-0.238,1.355-0.828,2.539-1.58,3.889c1.49-0.484,2.79-0.906,4.158-1.352
|
||||
c0.29,2.979-0.6,5.535-2.53,7.809c0.69,0.322,1.317-0.096,1.954-0.152c0.658-0.057,1.298-0.318,1.955-0.492
|
||||
c0.092,0.24,0.176,0.459,0.238,0.621c-0.065,0.516-0.125,0.98-0.211,1.668c-0.674,2.006-2.199,3.578-4.257,4.895
|
||||
c0.572,0.174,1.03,0.082,1.472,0.1c0.442,0.018,0.886,0.004,1.328,0.004c0.471,0,0.941,0,1.563,0
|
||||
c-0.186,0.51-0.277,0.934-0.481,1.293c-0.94,1.662-2.304,2.902-3.942,3.859c-0.514,0.301-1.018,0.617-1.586,0.965
|
||||
c0.938,0.605,2.135,0.596,2.725,1.688c-0.162,0.125-0.298,0.316-0.461,0.342c-1.995,0.311-3.678,1.313-5.319,2.396
|
||||
c-1.21,0.801-2.402,1.629-3.675,2.494c-0.563-0.695-0.713-1.646-1.102-2.477C49.652,47.414,49.381,46.502,49.035,45.564z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M31.564,38.58c0.335,0,0.523,0,0.764,0
|
||||
c0,1.182,0,2.318,0,3.521c-0.195,0.027-0.406,0.057-0.674,0.096c-0.17-0.643-0.068-1.248-0.086-1.842
|
||||
C31.551,39.789,31.564,39.221,31.564,38.58z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
@@ -1,93 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="177.75388mm"
|
||||
height="205.2525mm"
|
||||
viewBox="0 0 177.75388 205.2525"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
|
||||
sodipodi:docname="game_banned.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.5"
|
||||
inkscape:cx="-25"
|
||||
inkscape:cy="389"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="text11238" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<rect
|
||||
x="141.36865"
|
||||
y="426.65552"
|
||||
width="529.30859"
|
||||
height="270.22998"
|
||||
id="rect11240" />
|
||||
<linearGradient
|
||||
id="linearGradient1328"
|
||||
inkscape:swatch="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1326" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-16.123061,-45.873752)">
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="fill:#5b0000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:22.6772;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path411"
|
||||
inkscape:flatsided="true"
|
||||
sodipodi:sides="6"
|
||||
sodipodi:cx="240.26172"
|
||||
sodipodi:cy="341.72095"
|
||||
sodipodi:r1="374.78607"
|
||||
sodipodi:r2="324.57425"
|
||||
sodipodi:arg1="0.52359878"
|
||||
sodipodi:arg2="1.0471976"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="M 564.83598,529.11398 240.26172,716.50702 -84.312541,529.11398 -84.31254,154.32791 240.26172,-33.065125 564.83598,154.32791 Z"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,41.430754,58.086334)"
|
||||
inkscape:transform-center-y="-1.1390698e-06" />
|
||||
<g
|
||||
aria-label="BAN"
|
||||
transform="matrix(0.32563879,0,0,0.33957976,-21.103325,-41.320428)"
|
||||
id="text11238"
|
||||
style="font-size:240px;line-height:1.25;white-space:pre;shape-inside:url(#rect11240)">
|
||||
<path
|
||||
d="m 213.60914,473.66629 q 32.16,0 48.48,9.6 16.56,9.36 16.56,32.88 0,15.12 -8.4,25.2 -8.4,9.84 -24.24,12.72 v 1.2 q 10.8,1.68 19.44,6.24 8.88,4.56 13.92,12.96 5.04,8.4 5.04,21.84 0,23.28 -16.08,36 -15.84,12.72 -43.44,12.72 h -60.24 v -171.36 z m 4.32,72.96 q 22.08,0 30.24,-6.96 8.16,-7.2 8.16,-21.12 0,-14.16 -10.08,-20.16 -9.84,-6.24 -31.68,-6.24 h -28.32 v 54.48 z m -31.68,18 v 62.16 h 34.56 q 22.8,0 31.68,-8.88 8.88,-8.88 8.88,-23.28 0,-13.44 -9.36,-21.6 -9.12,-8.4 -32.88,-8.4 z"
|
||||
style="fill:#ffffff"
|
||||
id="path13" />
|
||||
<path
|
||||
d="m 428.16905,645.02629 -20.64,-53.04 h -67.92 l -20.4,53.04 h -21.84 l 66.96,-172.08 h 19.44 l 66.72,172.08 z m -46.32,-124.08 q -0.72,-1.92 -2.4,-6.96 -1.68,-5.04 -3.36,-10.32 -1.44,-5.52 -2.4,-8.4 -1.68,7.44 -3.84,14.64 -2.16,6.96 -3.6,11.04 l -19.44,51.84 h 54.24 z"
|
||||
style="fill:#ffffff"
|
||||
id="path15" />
|
||||
<path
|
||||
d="m 609.84903,645.02629 h -25.2 l -91.68,-142.32 h -0.96 q 0.48,8.4 1.2,20.88 0.72,12.48 0.72,25.68 v 95.76 h -19.92 v -171.36 h 24.96 l 91.44,141.84 h 0.96 q -0.24,-3.84 -0.72,-11.52 -0.24,-7.68 -0.72,-16.8 -0.24,-9.12 -0.24,-16.8 v -96.72 h 20.16 z"
|
||||
style="fill:#ffffff"
|
||||
id="path17" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.8 KiB |
@@ -1,90 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="22.710474"
|
||||
height="34.224064"
|
||||
viewBox="0 0 22.710474 34.224064"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
id="svg20"
|
||||
sodipodi:docname="hitgroup-puppet.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<defs
|
||||
id="defs24"/>
|
||||
<sodipodi:namedview
|
||||
id="namedview22"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
showguides="false"
|
||||
inkscape:zoom="45.254834"
|
||||
inkscape:cx="6.8832426"
|
||||
inkscape:cy="13.247204"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1013"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg20"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"/>
|
||||
<path
|
||||
name="Left Arm"
|
||||
d="M 7.141623,13.979265 C 6.905754,13.081578 6.573803,12.214085 6.344503,11.315133 6.14912,10.753508 5.55109,10.49614 5.241876,10.00958 4.255968,8.8777561 3.492174,7.5759991 2.7366,6.2856845 2.445057,5.6812088 2.036069,5.1361362 1.828337,4.4934508 1.580758,3.9877798 1.396356,3.4379174 1.284912,2.8830221 1.0450912,2.3970534 0.42376285,2.2078085 0.20088515,1.6538568 -0.14988915,1.0610215 0.46230955,0.63098907 0.84634695,0.26619097 1.167073,-0.21948913 1.478777,0.51967717 1.721562,0.46196457 2.221988,0.34592357 2.327274,1.350798 2.014659,1.6659107 1.90204,2.2781914 2.457994,2.4848468 2.677912,2.9824421 c 0.283461,0.5103257 0.62158,0.9892397 0.954403,1.4686636 0.316364,0.4073596 0.22333,1.0433862 0.704178,1.3535312 0.530002,0.3070581 0.883219,0.8027217 1.128144,1.3374432 0.600746,0.284699 0.708157,1.009557 1.300297,1.331256 0.561911,0.166551 1.122755,0.382215 1.462661,0.896072 0.337821,0.459847 0.597809,1.0310769 0.413315,1.6045809 -0.01734,0.552416 -0.284062,1.041744 -0.48178,1.544857 -0.293144,0.516602 -0.661617,0.986417 -1.017507,1.460419 z"
|
||||
fill="#00ff00"
|
||||
stroke="#000000"
|
||||
stroke-width="0.2"
|
||||
stroke-opacity="1"
|
||||
id="arm_left"/>
|
||||
<path
|
||||
name="Right Arm"
|
||||
d="m 13.465845,10.511011 c -0.04407,-0.482095 -0.02562,-1.1006549 0.414225,-1.4033669 0.483393,-0.292095 1.15297,-0.182342 1.496001,-0.720701 0.358485,-0.418084 0.964045,-0.573356 1.205046,-1.094438 0.307102,-0.4391491 0.627443,-0.950665 1.170345,-1.0998957 0.446107,-0.4831052 0.633357,-1.1548859 1.062974,-1.657864 0.483112,-0.6725669 1.001212,-1.3228316 1.539695,-1.9500033 0.309471,-0.03029 0.162457,-0.5724547 0.214156,-0.8022905 -0.09101,-0.3680889 -0.117665,-0.78562313 0.175524,-1.06606653 0.182496,-0.1271886 0.303406,-0.3033472 0.393901,-0.504993 0.574344,-0.1633545 0.970432,0.273269 1.317584,0.6560752 0.198068,0.25263613 0.183753,0.56027693 0.08894,0.84792963 -0.394565,0.3034063 -0.880504,0.5955276 -1.065223,1.0786114 0.0098,0.5622898 -0.352252,1.0095603 -0.522078,1.5309037 -0.369587,0.6994661 -0.84079,1.3400307 -1.17228,2.0608943 -0.393089,0.3924582 -0.463966,0.8922808 -0.867882,1.2775418 -0.330654,0.416449 -0.803109,0.707257 -1.036443,1.197868 -0.444068,0.571036 -0.868098,1.1790579 -1.498998,1.5602229 -0.456816,0.318043 -1.003104,0.693349 -1.004675,1.315514 -0.09703,0.336299 -0.0061,1.46653 -0.564246,1.019166 -0.4348,-0.286783 -0.757165,-0.702396 -1.062084,-1.113622 -0.130954,-0.346818 -0.270634,-0.691581 -0.277069,-1.067735 -0.0025,-0.02125 -0.0049,-0.0425 -0.0074,-0.06375 z"
|
||||
fill="#00ff00"
|
||||
stroke="#000000"
|
||||
stroke-width="0.2"
|
||||
stroke-opacity="1"
|
||||
id="arm_right"/>
|
||||
<path
|
||||
name="Left Foot"
|
||||
d="m 7.272912,19.523172 c -0.184719,0.05741 -0.129467,0.351238 -0.210933,0.510372 0.174224,0.152016 0.05422,0.389802 0.04436,0.588772 -0.0013,0.247717 -0.351034,0.135582 -0.19748,-0.09024 0.03084,-0.340572 0.104082,-0.697933 0.04808,-1.03281 -0.07583,-0.198426 -0.266541,0.180045 -0.448407,0.08281 -0.17623,0.0013 -0.416845,0.05569 -0.50238,-0.150218 -0.228258,-0.114102 -0.08448,0.301631 -0.117784,0.432654 0.02425,1.132071 0.0485,2.264142 0.07274,3.396213 0.100433,0.156915 0.36987,0.02761 0.541025,0.06475 0.244586,0.07838 0.271046,-0.163217 0.247011,-0.344 0.0038,-0.600774 0.03093,-1.202579 0.02024,-1.802715 0.2793,-0.07998 0.138465,0.247321 0.166593,0.410826 -0.0074,0.843739 -0.03503,1.688804 -0.0449,2.531307 0.05442,0.363863 -0.07422,0.727626 0.0045,1.090967 -0.01817,0.586736 -0.15492,1.171738 -0.0631,1.7597 0.0527,0.325734 -0.234878,0.566365 -0.274373,0.881115 -0.153124,0.610296 -0.394444,1.198013 -0.457172,1.828513 -0.04977,0.275277 -0.0322,0.650582 0.261576,0.776794 0.09582,0.145231 0.361286,0.18977 0.325933,0.376589 -0.0021,0.401159 -0.01765,0.801976 -0.03301,1.202797 0.214991,0.115489 -0.07675,0.300015 -0.142538,0.427799 -0.151959,0.28232 -0.479683,0.410492 -0.661971,0.657733 -0.08162,0.217206 -0.240579,0.379066 -0.256494,0.617942 -0.114494,0.234828 0.165146,0.266053 0.331496,0.266497 0.636007,0.04325 1.281523,0.03538 1.912273,-0.04329 0.200158,-0.08538 0.44146,-0.0087 0.604404,-0.184484 0.229527,-0.06519 0.09453,-0.322005 0.120853,-0.494012 -0.03158,-0.292452 0.02756,-0.605286 -0.06425,-0.88421 0.226623,-0.04848 0.08753,-0.332107 0.130908,-0.498414 0.01571,-0.411605 -0.0059,-0.847163 0.149989,-1.233995 0.148236,-0.343555 0.42796,-0.660127 0.428762,-1.046445 -0.117161,-0.521954 -0.02941,-1.055709 -0.0076,-1.581529 -0.0168,-0.261572 0.04835,-0.53795 -0.06305,-0.784699 0.15597,-0.326082 0.251116,-0.679102 0.341978,-1.024793 0.03243,-0.272303 0.0054,-0.574597 0.07471,-0.828301 0.361994,-0.232617 0.252629,-0.719603 0.273085,-1.085465 0.08359,-0.09799 0.187223,-0.272508 0.231626,-0.458848 0.06762,-0.241155 0.191547,-0.487214 0.139471,-0.733682 -0.0098,-0.217022 0.142734,-0.311169 0.163034,-0.506685 0.154935,-0.535548 0.07265,-1.093344 0.08572,-1.642322 -0.0028,-0.461965 -0.0055,-0.923929 -0.0083,-1.385894 -1.055541,-0.02237 -2.111081,-0.04473 -3.166622,-0.0671 z"
|
||||
fill="#00ff00"
|
||||
stroke="#000000"
|
||||
stroke-width="0.2"
|
||||
stroke-opacity="1"
|
||||
id="foot_left"/>
|
||||
<path
|
||||
name="Right Foot"
|
||||
d="m 10.439534,19.590272 c 1.191659,-0.02307 2.383319,-0.04613 3.574978,-0.0692 0.296758,0.139654 0.391035,0.470491 0.630079,0.674659 0.124849,0.148775 0.462793,0.121668 0.420314,0.387926 -0.0294,0.216545 0.29903,0.131364 0.331248,0.353588 0.151032,0.224853 0.188138,0.523532 0.0097,0.744535 -0.05968,0.1884 -0.396724,0.146265 -0.229852,0.391949 0.06725,0.232558 0.142715,0.46712 0.0533,0.705179 -0.0099,0.227864 -0.290644,0.290322 -0.426614,0.441196 -0.256549,0.08778 -0.1322,0.284279 -0.05774,0.466542 0.134249,0.164044 -0.1078,0.412577 0.07124,0.53773 0.07317,0.196 -0.106227,0.390499 0.0012,0.58703 0.08741,0.270534 0.170719,0.539458 0.184299,0.827105 0.07998,0.410105 0.07841,0.823706 0.04519,1.238662 -0.06141,0.33742 0.10491,0.64977 0.208878,0.960637 0.230454,0.307233 0.363174,0.661656 0.478413,1.024519 0.107564,0.280149 0.230309,0.569511 0.135931,0.872952 -0.01394,0.245414 -0.149787,0.440273 -0.298905,0.62259 -0.165507,0.247406 -0.0965,0.570785 -0.142638,0.854003 -0.0031,0.282187 0.06015,0.563476 -0.05223,0.833583 -0.135774,0.169199 -0.06223,0.337558 0.01186,0.523197 0.08992,0.409465 0.342927,0.756268 0.552255,1.1062 0.06681,0.195723 0.09715,0.409458 -0.179679,0.390618 -0.627992,0.119353 -1.270898,0.0352 -1.89489,-0.0691 -0.113554,-0.135666 -0.321878,-0.203583 -0.2774,-0.418938 -0.02267,-0.407301 -0.04498,-0.814581 0.05278,-1.214671 0.0022,-0.114868 -0.135205,-0.239102 -0.09648,-0.443839 -0.03314,-0.351043 0.08887,-0.720608 -0.100783,-1.04353 -0.0987,-0.155231 -0.01666,-0.4971 -0.267826,-0.48854 -0.301776,0.0055 -0.460222,-0.339001 -0.369532,-0.598804 0.06946,-0.401034 -0.07011,-0.799965 -0.09726,-1.200417 -0.111144,-0.510681 -0.04833,-1.037487 -0.03363,-1.549973 -0.08073,-0.319924 -0.22389,-0.61055 -0.415184,-0.878545 -0.172809,-0.182809 -0.08748,-0.504431 -0.336875,-0.622907 -0.166561,-0.20208 -0.140432,-0.509275 -0.176332,-0.76214 -0.0149,-0.236728 0.02665,-0.490225 -0.14852,-0.679339 -0.255086,-0.586883 -0.492476,-1.187301 -0.661997,-1.806402 -0.156314,-0.106217 -0.3877,-0.167764 -0.497367,-0.301737 8e-6,-0.798773 1.5e-5,-1.597545 2.2e-5,-2.396318 z"
|
||||
fill="#00ff00"
|
||||
stroke="#000000"
|
||||
stroke-width="0.2"
|
||||
stroke-opacity="1"
|
||||
id="foot_right"/>
|
||||
<path
|
||||
name="Head"
|
||||
d="m 9.346912,8.5213721 c -0.0047,-0.111419 0.01572,-0.243568 -0.07189,-0.327213 -0.079,-0.03344 -0.09995,-0.109268 -0.120565,-0.185334 -0.04923,-0.166127 -0.134034,-0.329727 -0.106185,-0.507723 -0.01488,-0.06588 0.0459,-0.17713 -0.03906,-0.200988 C 8.920142,7.2581441 8.794008,7.2891241 8.74237,7.1867541 8.70153,7.1189751 8.72327,7.0247724 8.70656,6.9468023 8.68606,6.6603974 8.70986,6.3730485 8.768,6.0921085 8.82333,6.0324085 8.919641,6.0580515 8.97263,6.0328625 9.02137,5.9501605 8.90946,5.9195524 8.88566,5.8565782 8.84491,5.6199484 8.92321,5.3864043 8.98263,5.1596939 9.06046,4.9962344 9.157699,4.8395771 9.282292,4.7083685 9.452077,4.53491 9.658852,4.4044859 9.878879,4.3041782 c 0.121576,-0.059262 0.262195,-0.069416 0.393819,-0.096197 0.164317,-0.020982 0.328726,-0.033802 0.493545,-0.010099 0.269566,0.026621 0.544086,0.070326 0.790793,0.1848388 0.171348,0.1153223 0.345429,0.2326844 0.48827,0.38182 0.09034,0.1341507 0.189878,0.2634704 0.235159,0.4212689 0.07412,0.2283032 0.08961,0.4704318 0.111037,0.7083942 -0.05158,0.050578 -0.07229,0.1366292 0.0056,0.1736974 0.05696,0.041719 0.141902,0.016364 0.195513,0.071976 0.07048,0.047334 0.04423,0.1582458 0.05112,0.2347486 -0.0013,0.1955198 0.0073,0.3928958 -0.002,0.5872793 -0.03009,0.078666 -0.05185,0.1745557 -0.108304,0.2342277 -0.06127,0.03307 -0.171705,0.02415 -0.200081,0.08531 -0.02931,0.139928 -0.02329,0.288519 -0.06492,0.42425 -0.07374,0.18833 -0.202699,0.347489 -0.334569,0.498386 -0.03489,0.06218 -0.03029,0.159075 -0.05684,0.206915 -0.843354,0.03679 -1.686707,0.07358 -2.530061,0.110375 z"
|
||||
fill="#00ff00"
|
||||
stroke="#000000"
|
||||
stroke-width="0.2"
|
||||
stroke-opacity="1"
|
||||
id="head"/>
|
||||
<path
|
||||
name="Stomach"
|
||||
id="stomach"
|
||||
d="m 14.915071,13.987706 -7.761718,0.0098 c -0.03737,0.131549 -0.02717,0.281656 -0.04102,0.421875 -0.728656,0.472621 -0.618724,0.852167 -0.652344,1.736328 -0.125444,0.118325 -0.242976,0.278867 -0.101562,0.435547 0.180318,0.255927 0.01133,0.64729 0.285156,0.84375 0.196575,0.241742 0.515574,0.239833 0.796875,0.283203 0.235304,-0.100158 0.207612,0.198209 0.132812,0.328125 -0.105759,0.35002 -0.12621,0.732568 -0.304687,1.0625 -0.130882,0.20556 0.252245,0.184062 0.142578,0.416016 0.617503,0.01346 1.236013,0.0256 1.853516,0.03906 1.573515,0.05491 3.147101,-0.02598 4.720703,-0.04297 0.05118,-0.116083 -0.04363,-0.353986 -0.04883,-0.517579 -0.0794,-0.199166 -0.01274,-0.331946 0.105468,-0.460937 -0.07545,-0.179535 -0.114786,-0.250942 -0.06641,-0.4375 0.0111,-0.195491 -0.08442,-0.430194 0.01563,-0.617188 0.149269,-0.05468 0.360515,0.0067 0.533203,-0.0039 0.182605,0.0085 0.218168,-0.185306 0.425782,-0.103516 0.10962,-0.155632 0.05373,-0.36994 0.04883,-0.550781 -0.03413,-0.19184 0.01464,-0.428139 -0.07227,-0.591797 0.04411,-0.135718 -0.109647,-0.465373 0.09766,-0.439453 -0.01706,-0.43839 0.02073,-0.88148 -0.06445,-1.314453 0.0064,-0.165841 -0.117713,-0.349091 -0.04492,-0.496094 z"
|
||||
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
|
||||
<path
|
||||
name="Chest"
|
||||
id="chest"
|
||||
d="m 11.977571,8.4173941 c -0.952543,0.01861 -1.906804,0.07511 -2.859375,0.117187 -0.231459,-0.005 -0.329425,0.225494 -0.328125,0.425782 -0.116651,0.126828 -0.182759,-0.233998 -0.373047,-0.205079 -0.203602,0.02035 -0.410929,0.131857 -0.615234,0.185547 0.07309,0.06154 0.147613,0.122064 0.220703,0.183594 0.32146,0.338489 0.552435,0.76664 0.673828,1.2187499 0.02508,0.259591 -0.06175,0.529484 -0.08008,0.792969 -0.0167,0.460821 -0.269929,0.856987 -0.417969,1.283203 -0.235465,0.496628 -0.592962,0.927886 -0.916015,1.371094 -0.06949,0.05912 -0.10712,0.130333 -0.128906,0.207031 l 7.761718,-0.0098 c 0.01361,-0.02749 0.03085,-0.05355 0.06055,-0.07813 0.14058,-0.150077 0.24616,-0.316672 0.25586,-0.527343 0.0202,-0.257625 0.178225,-0.511206 0.103515,-0.767578 -0.122762,-0.125993 -0.129326,0.260686 -0.273437,0.310546 -0.251918,-0.199357 -0.518419,-0.385497 -0.761719,-0.59375 -0.208857,-0.299375 -0.52889,-0.535083 -0.625,-0.898437 -0.172968,-0.365785 -0.199202,-0.768248 -0.226563,-1.166016 0.02952,-0.3578019 0.0323,-0.7637689 0.291016,-1.0429689 0.208465,-0.123342 0.17626,-0.190105 -0.03711,-0.300781 -0.211415,-0.201797 -0.497989,-0.122297 -0.75586,-0.0918 -0.189632,0.08624 -0.336928,-0.0675 -0.386718,-0.240234 -0.139402,-0.15767 -0.379065,-0.163928 -0.582032,-0.173828 z"
|
||||
style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 13 KiB |
@@ -1,83 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.6, 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"
|
||||
width="32.217px" height="32.505px" viewBox="0 0 32.217 32.505" enable-background="new 0 0 32.217 32.505" xml:space="preserve">
|
||||
<symbol id="dude-transit" viewBox="0 -25.1 21.25 25.118">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M15.5-4.2l0.75-1.05l1-3.1l3.9-2.65v-0.05
|
||||
c0.067-0.1,0.1-0.233,0.1-0.4c0-0.2-0.05-0.383-0.15-0.55c-0.167-0.233-0.383-0.35-0.65-0.35l-4.3,1.8l-1.2,1.65l-1.5-3.95
|
||||
l2.25-5.05l-3.25-6.9c-0.267-0.2-0.633-0.3-1.1-0.3c-0.3,0-0.55,0.15-0.75,0.45c-0.1,0.133-0.15,0.25-0.15,0.35
|
||||
c0,0.067,0.017,0.15,0.05,0.25c0.033,0.1,0.067,0.184,0.1,0.25l2.55,5.6L10.7-14l-3.05-4.9L0.8-18.7
|
||||
c-0.367,0.033-0.6,0.184-0.7,0.45c-0.067,0.3-0.1,0.467-0.1,0.5c0,0.5,0.2,0.767,0.6,0.8l5.7,0.15l2.15,5.4l3.1,5.65L9.4-5.6
|
||||
c-1.367-2-2.1-3.033-2.2-3.1C7.1-8.8,6.95-8.85,6.75-8.85C6.35-8.85,6.1-8.667,6-8.3C5.9-8,5.9-7.8,6-7.7H5.95l2.5,4.4l3.7,0.3
|
||||
L14-3.5L15.5-4.2z M14.55-2.9c-0.333,0.4-0.45,0.85-0.35,1.35c0.033,0.5,0.25,0.9,0.65,1.2c0.4,0.3,0.85,0.417,1.35,0.35
|
||||
c0.5-0.067,0.9-0.3,1.2-0.7c0.333-0.4,0.467-0.85,0.4-1.35c-0.066-0.5-0.3-0.9-0.7-1.2c-0.4-0.333-0.85-0.45-1.35-0.35
|
||||
C15.25-3.533,14.85-3.3,14.55-2.9z"/>
|
||||
</symbol>
|
||||
<g id="Layer_1">
|
||||
</g>
|
||||
<g id="Layer_2">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon fill="#FCDC55" points="15.88,0.599 13.767,6.859 7.207,6.785 12.411,10.402 10.451,16.587 15.806,13.044
|
||||
21.235,16.661 19.122,10.63 24.477,6.785 17.84,6.708 "/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g id="Selected_Items_38_">
|
||||
<path fill="#FCDC55" d="M31.546,13.075l-0.015,0.938c-0.038,0.707-0.125,1.262-0.261,1.665
|
||||
c-0.25,0.703-0.69,1.418-1.318,2.144c-0.564,0.646-1.288,1.313-2.177,2.003l-4.077,3.168
|
||||
c-0.046,0.033-0.074,0.051-0.092,0.054c-0.003-0.005-0.059-0.043-0.161-0.112c-0.148-0.084-0.238-0.135-0.268-0.151
|
||||
c-0.159-0.077-0.327-0.107-0.509-0.097c-0.192,0.008-0.386,0.087-0.582,0.23c-0.204,0.148-0.352,0.327-0.447,0.542
|
||||
c-0.13,0.289-0.174,0.598-0.133,0.923c0.018,0.163,0.051,0.299,0.102,0.398c0.112,0.212,0.237,0.299,0.37,0.266
|
||||
c0.072-0.033,0.123-0.056,0.158-0.064c0.059-0.028,0.107-0.036,0.146-0.023c0.128,0.051,0.194,0.123,0.199,0.217
|
||||
c0.005,0.095-0.056,0.184-0.184,0.261c-0.156,0.095-0.342,0.14-0.554,0.133c-0.263-0.003-0.473-0.107-0.626-0.304l-0.529-0.68
|
||||
c-0.057-0.074-0.102-0.122-0.141-0.143c-0.051-0.031-0.102-0.026-0.153,0.013c-0.036,0.028-0.393,0.401-1.071,1.117
|
||||
c-0.846,0.848-1.694,1.599-2.537,2.253c-0.825,0.641-1.753,1.29-2.782,1.952c-0.511,0.327-1.004,0.641-1.479,0.94
|
||||
c-0.138,0.105-0.207,0.263-0.212,0.475c0.003,0.117,0.018,0.266,0.046,0.444c0.01,0.092-0.015,0.166-0.079,0.225
|
||||
c-0.061,0.048-0.146,0.056-0.248,0.028c-0.107-0.036-0.391-0.342-0.848-0.922c-0.11,0.005-0.212-0.02-0.312-0.072
|
||||
c-0.11-0.056-0.204-0.13-0.283-0.23c-0.069-0.092-0.12-0.202-0.143-0.319c-0.025-0.11-0.023-0.217,0.005-0.319
|
||||
c-0.411-0.554-0.621-0.884-0.631-0.986c-0.008-0.112,0.023-0.192,0.09-0.232c0.067-0.054,0.148-0.061,0.237-0.023
|
||||
c0.164,0.074,0.302,0.12,0.409,0.145c0.212,0.054,0.386,0.028,0.524-0.077c0.409-0.388,0.833-0.787,1.277-1.201
|
||||
c0.889-0.841,1.747-1.582,2.573-2.223c0.843-0.657,1.781-1.288,2.811-1.898c0.861-0.48,1.308-0.733,1.346-0.761
|
||||
c0.051-0.038,0.066-0.089,0.053-0.145c-0.008-0.033-0.041-0.09-0.099-0.164l-0.526-0.679
|
||||
c-0.156-0.199-0.202-0.427-0.141-0.682c0.049-0.207,0.136-0.376,0.263-0.503c0.11-0.105,0.21-0.143,0.302-0.112
|
||||
c0.087,0.02,0.138,0.1,0.153,0.235c0.008,0.046-0.01,0.095-0.051,0.146c-0.021,0.025-0.054,0.071-0.102,0.138
|
||||
c-0.067,0.123-0.013,0.26,0.158,0.414c0.161,0.156,0.317,0.256,0.468,0.294l0.181,0.023l0.189,0.245l2.55-1.983
|
||||
c0.281-0.22,0.723-0.524,1.326-0.925c0.764-0.503,1.357-0.889,1.776-1.155c1.63-1.068,2.792-1.891,3.487-2.468
|
||||
c0.756-0.639,1.413-1.229,1.97-1.768L31.546,13.075z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g id="Selected_Items_37_">
|
||||
<path fill="#FCDC55" d="M0.671,13.075l0.015,0.938c0.038,0.707,0.125,1.262,0.26,1.665c0.251,0.703,0.69,1.418,1.321,2.144
|
||||
c0.562,0.646,1.288,1.313,2.174,2.003l4.08,3.168c0.041,0.033,0.074,0.051,0.089,0.054c0.005-0.005,0.059-0.043,0.164-0.112
|
||||
c0.146-0.084,0.235-0.135,0.268-0.151c0.156-0.077,0.327-0.107,0.506-0.097c0.192,0.008,0.389,0.087,0.583,0.23
|
||||
c0.204,0.148,0.352,0.327,0.447,0.542c0.133,0.289,0.177,0.598,0.133,0.923c-0.018,0.163-0.051,0.299-0.1,0.398
|
||||
c-0.115,0.212-0.237,0.299-0.371,0.266c-0.074-0.033-0.125-0.056-0.158-0.064c-0.061-0.028-0.11-0.036-0.145-0.023
|
||||
c-0.13,0.051-0.197,0.123-0.199,0.217c-0.008,0.095,0.056,0.184,0.182,0.261c0.158,0.095,0.342,0.14,0.554,0.133
|
||||
c0.263-0.003,0.473-0.107,0.626-0.304l0.529-0.68c0.056-0.074,0.105-0.122,0.14-0.143c0.051-0.031,0.105-0.026,0.153,0.013
|
||||
c0.036,0.028,0.394,0.401,1.073,1.117c0.843,0.848,1.689,1.599,2.535,2.253c0.825,0.641,1.755,1.29,2.785,1.952
|
||||
c0.508,0.327,1.001,0.641,1.477,0.94c0.138,0.105,0.21,0.263,0.215,0.475c-0.003,0.117-0.02,0.266-0.049,0.444
|
||||
c-0.01,0.092,0.015,0.166,0.079,0.225c0.061,0.048,0.145,0.056,0.248,0.028c0.107-0.036,0.391-0.342,0.851-0.922
|
||||
c0.105,0.005,0.212-0.02,0.309-0.072c0.112-0.056,0.204-0.13,0.281-0.23c0.074-0.092,0.123-0.202,0.145-0.319
|
||||
c0.026-0.11,0.023-0.217-0.005-0.319c0.411-0.554,0.621-0.884,0.631-0.986c0.008-0.112-0.02-0.192-0.089-0.232
|
||||
c-0.067-0.054-0.146-0.061-0.235-0.023c-0.163,0.074-0.304,0.12-0.414,0.145c-0.21,0.054-0.383,0.028-0.521-0.077
|
||||
c-0.404-0.388-0.833-0.787-1.277-1.201c-0.889-0.841-1.745-1.582-2.573-2.223c-0.843-0.657-1.778-1.288-2.808-1.898
|
||||
c-0.863-0.48-1.31-0.733-1.349-0.761c-0.049-0.038-0.067-0.089-0.051-0.145c0.005-0.033,0.038-0.09,0.095-0.164l0.529-0.679
|
||||
c0.153-0.199,0.202-0.427,0.143-0.682c-0.048-0.207-0.138-0.376-0.266-0.503c-0.107-0.105-0.209-0.143-0.299-0.112
|
||||
c-0.087,0.02-0.138,0.1-0.156,0.235c-0.005,0.046,0.01,0.095,0.051,0.146c0.02,0.025,0.056,0.071,0.102,0.138
|
||||
c0.067,0.123,0.013,0.26-0.158,0.414c-0.161,0.156-0.314,0.256-0.467,0.294l-0.182,0.023l-0.189,0.245l-2.55-1.983
|
||||
c-0.279-0.217-0.72-0.524-1.326-0.925c-0.764-0.503-1.357-0.889-1.776-1.155c-1.632-1.068-2.792-1.891-3.487-2.468
|
||||
c-0.756-0.639-1.413-1.229-1.97-1.768L0.671,13.075z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="topo">
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 6.3 KiB |
@@ -1,70 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="256px" height="256px" viewBox="0 0 256 256" enable-background="new 0 0 256 256" xml:space="preserve">
|
||||
<ellipse fill="#453D31" cx="128" cy="127.833" rx="128" ry="127.833"/>
|
||||
<radialGradient id="SVGID_1_" cx="128.583" cy="127.832" r="118.7544" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#CCB97E"/>
|
||||
<stop offset="0.2473" style="stop-color:#C2AF77"/>
|
||||
<stop offset="0.5916" style="stop-color:#AC9A68"/>
|
||||
<stop offset="0.9915" style="stop-color:#8C7C53"/>
|
||||
<stop offset="1" style="stop-color:#8B7B52"/>
|
||||
</radialGradient>
|
||||
<ellipse fill="url(#SVGID_1_)" cx="128.583" cy="127.833" rx="118.832" ry="118.678"/>
|
||||
<path fill="#FFFFFF" d="M68.972,115.876"/>
|
||||
<path fill="#5A7383" d="M20.335,256"/>
|
||||
<path fill="#5A7383" d="M21.354,246.464"/>
|
||||
<polygon fill="#564C3D" points="128.833,29 114.833,70.5 71.333,70 105.833,94 92.833,135 128.333,111.5 164.333,135.5
|
||||
150.333,95.5 185.833,70 141.833,69.5 "/>
|
||||
<g>
|
||||
<g id="Selected_Items_27_">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#3F311E" d="M232.707,105.085l-0.113,6.224
|
||||
c-0.257,4.683-0.828,8.362-1.724,11.036c-1.66,4.652-4.578,9.395-8.746,14.215c-3.734,4.285-8.542,8.709-14.429,13.279
|
||||
l-27.038,20.996c-0.284,0.222-0.488,0.347-0.6,0.37c-0.033-0.042-0.391-0.291-1.077-0.75c-0.97-0.565-1.559-0.901-1.769-1.003
|
||||
c-1.048-0.502-2.174-0.717-3.372-0.646c-1.271,0.063-2.562,0.567-3.865,1.518c-1.351,0.984-2.336,2.179-2.961,3.585
|
||||
c-0.871,1.931-1.164,3.975-0.881,6.129c0.124,1.091,0.345,1.971,0.669,2.645c0.755,1.395,1.574,1.98,2.456,1.757
|
||||
c0.475-0.239,0.826-0.38,1.054-0.423c0.396-0.176,0.718-0.228,0.97-0.156c0.849,0.328,1.289,0.807,1.317,1.443
|
||||
c0.038,0.637-0.375,1.217-1.217,1.742c-1.045,0.61-2.269,0.904-3.676,0.873c-1.743-0.031-3.122-0.707-4.147-2.025l-3.497-4.506
|
||||
c-0.382-0.493-0.698-0.812-0.94-0.951c-0.346-0.194-0.687-0.164-1.015,0.092c-0.247,0.191-2.617,2.66-7.11,7.405
|
||||
c-5.607,5.608-11.213,10.585-16.807,14.928c-5.475,4.251-11.624,8.565-18.449,12.944c-3.392,2.172-6.659,4.247-9.808,6.229
|
||||
c-0.904,0.704-1.374,1.76-1.402,3.168c0.016,0.78,0.113,1.756,0.305,2.932c0.068,0.604-0.104,1.103-0.525,1.494
|
||||
c-0.411,0.318-0.958,0.382-1.637,0.186c-0.716-0.24-2.594-2.276-5.639-6.113c-0.708,0.024-1.396-0.139-2.057-0.48
|
||||
c-0.732-0.354-1.357-0.857-1.869-1.516c-0.479-0.617-0.799-1.328-0.957-2.127c-0.171-0.728-0.157-1.432,0.039-2.112
|
||||
c-2.728-3.684-4.127-5.864-4.186-6.541c-0.058-0.749,0.137-1.265,0.581-1.542c0.453-0.352,0.979-0.396,1.58-0.138
|
||||
c1.089,0.474,1.996,0.792,2.718,0.957c1.402,0.363,2.557,0.19,3.462-0.513c2.701-2.557,5.521-5.21,8.465-7.958
|
||||
c5.898-5.569,11.586-10.48,17.06-14.731c5.595-4.346,11.805-8.54,18.628-12.586c5.711-3.178,8.687-4.865,8.933-5.056
|
||||
c0.329-0.256,0.447-0.575,0.343-0.958c-0.044-0.229-0.258-0.592-0.642-1.085l-3.498-4.507c-1.023-1.315-1.338-2.822-0.937-4.52
|
||||
c0.321-1.369,0.907-2.482,1.758-3.342c0.717-0.688,1.382-0.942,1.987-0.752c0.577,0.148,0.919,0.672,1.026,1.578
|
||||
c0.037,0.3-0.076,0.621-0.343,0.959c-0.133,0.168-0.355,0.475-0.673,0.917c-0.435,0.8-0.085,1.717,1.048,2.753
|
||||
c1.06,1.021,2.093,1.671,3.097,1.945l1.206,0.154l1.244,1.604l16.915-13.135c1.852-1.438,4.781-3.482,8.795-6.133
|
||||
c5.058-3.34,8.98-5.89,11.767-7.656c10.804-7.07,18.504-12.524,23.111-16.363c5.024-4.232,9.377-8.142,13.06-11.723
|
||||
L232.707,105.085z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g id="Selected_Items_2_">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#564C3D" d="M27.996,105.085l0.113,6.224
|
||||
c0.257,4.683,0.828,8.362,1.724,11.036c1.66,4.652,4.578,9.395,8.746,14.215c3.734,4.285,8.542,8.709,14.429,13.279l27.038,20.996
|
||||
c0.284,0.222,0.488,0.347,0.6,0.37c0.033-0.042,0.391-0.291,1.077-0.75c0.97-0.565,1.559-0.901,1.769-1.003
|
||||
c1.048-0.502,2.174-0.717,3.372-0.646c1.271,0.063,2.562,0.567,3.865,1.518c1.351,0.984,2.336,2.179,2.961,3.585
|
||||
c0.871,1.931,1.164,3.975,0.881,6.129c-0.124,1.091-0.345,1.971-0.669,2.645c-0.755,1.395-1.574,1.98-2.456,1.757
|
||||
c-0.475-0.239-0.826-0.38-1.054-0.423c-0.396-0.176-0.718-0.228-0.97-0.156c-0.849,0.328-1.289,0.807-1.317,1.443
|
||||
c-0.038,0.637,0.375,1.217,1.217,1.742c1.045,0.61,2.269,0.904,3.676,0.873c1.743-0.031,3.122-0.707,4.147-2.025l3.497-4.506
|
||||
c0.382-0.493,0.698-0.812,0.94-0.951c0.346-0.194,0.687-0.164,1.015,0.092c0.247,0.191,2.617,2.66,7.11,7.405
|
||||
c5.607,5.608,11.213,10.585,16.807,14.928c5.475,4.251,11.624,8.565,18.449,12.944c3.392,2.172,6.659,4.247,9.808,6.229
|
||||
c0.904,0.704,1.374,1.76,1.402,3.168c-0.016,0.78-0.113,1.756-0.305,2.932c-0.068,0.604,0.104,1.103,0.525,1.494
|
||||
c0.411,0.318,0.958,0.382,1.637,0.186c0.716-0.24,2.594-2.276,5.639-6.113c0.708,0.024,1.396-0.139,2.057-0.48
|
||||
c0.732-0.354,1.357-0.857,1.869-1.516c0.479-0.617,0.799-1.328,0.957-2.127c0.171-0.728,0.157-1.432-0.039-2.112
|
||||
c2.728-3.684,4.127-5.864,4.186-6.541c0.058-0.749-0.137-1.265-0.581-1.542c-0.453-0.352-0.979-0.396-1.58-0.138
|
||||
c-1.089,0.474-1.996,0.792-2.718,0.957c-1.402,0.363-2.557,0.19-3.462-0.513c-2.701-2.557-5.521-5.21-8.465-7.958
|
||||
c-5.898-5.569-11.586-10.48-17.06-14.731c-5.595-4.346-11.805-8.54-18.628-12.586c-5.711-3.178-8.687-4.865-8.933-5.056
|
||||
c-0.329-0.256-0.447-0.575-0.343-0.958c0.044-0.229,0.258-0.592,0.642-1.085l3.498-4.507c1.023-1.315,1.338-2.822,0.937-4.52
|
||||
c-0.321-1.369-0.907-2.482-1.758-3.342c-0.717-0.688-1.382-0.942-1.987-0.752c-0.577,0.148-0.919,0.672-1.026,1.578
|
||||
c-0.037,0.3,0.076,0.621,0.343,0.959c0.133,0.168,0.355,0.475,0.673,0.917c0.435,0.8,0.085,1.717-1.048,2.753
|
||||
c-1.06,1.021-2.093,1.671-3.097,1.945l-1.206,0.154l-1.244,1.604L88.74,150.971c-1.852-1.438-4.781-3.482-8.795-6.133
|
||||
c-5.058-3.34-8.98-5.89-11.767-7.656c-10.804-7.07-18.504-12.524-23.111-16.363c-5.024-4.232-9.377-8.142-13.06-11.723
|
||||
L27.996,105.085z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.9 KiB |
@@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.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"
|
||||
width="69.903px" height="69.903px" viewBox="0 0 69.903 69.903" enable-background="new 0 0 69.903 69.903" xml:space="preserve">
|
||||
<symbol id="dude-transit" viewBox="0 -25.1 21.25 25.118">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M15.5-4.2l0.75-1.05l1-3.1l3.9-2.65v-0.05
|
||||
c0.067-0.1,0.1-0.233,0.1-0.4c0-0.2-0.05-0.383-0.15-0.55c-0.167-0.233-0.383-0.35-0.65-0.35l-4.3,1.8l-1.2,1.65l-1.5-3.95
|
||||
l2.25-5.05l-3.25-6.9c-0.267-0.2-0.633-0.3-1.1-0.3c-0.3,0-0.55,0.15-0.75,0.45c-0.1,0.133-0.15,0.25-0.15,0.35
|
||||
c0,0.067,0.017,0.15,0.05,0.25c0.033,0.1,0.067,0.184,0.1,0.25l2.55,5.6L10.7-14l-3.05-4.9L0.8-18.7
|
||||
c-0.367,0.033-0.6,0.184-0.7,0.45c-0.067,0.3-0.1,0.467-0.1,0.5c0,0.5,0.2,0.767,0.6,0.8l5.7,0.15l2.15,5.4l3.1,5.65L9.4-5.6
|
||||
c-1.367-2-2.1-3.033-2.2-3.1C7.1-8.8,6.95-8.85,6.75-8.85C6.35-8.85,6.1-8.667,6-8.3C5.9-8,5.9-7.8,6-7.7H5.95l2.5,4.4l3.7,0.3
|
||||
L14-3.5L15.5-4.2z M14.55-2.9c-0.333,0.4-0.45,0.85-0.35,1.35c0.033,0.5,0.25,0.9,0.65,1.2c0.4,0.3,0.85,0.417,1.35,0.35
|
||||
c0.5-0.067,0.9-0.3,1.2-0.7c0.333-0.4,0.467-0.85,0.4-1.35c-0.066-0.5-0.3-0.9-0.7-1.2c-0.4-0.333-0.85-0.45-1.35-0.35
|
||||
C15.25-3.533,14.85-3.3,14.55-2.9z"/>
|
||||
</symbol>
|
||||
<g id="Layer_1">
|
||||
</g>
|
||||
<g id="Layer_2">
|
||||
<g>
|
||||
<polygon fill="#FFFFFF" points="34.298,2.396 29.635,16.213 15.153,16.049 26.64,24.035 22.315,37.687 34.135,29.866
|
||||
46.119,37.851 41.455,24.537 53.275,16.049 38.624,15.88 "/>
|
||||
<g>
|
||||
<g>
|
||||
<g id="Selected_Items_13_">
|
||||
<path fill="#FFFFFF" d="M68.879,27.728l-0.033,2.07c-0.085,1.561-0.277,2.785-0.575,3.676c-0.553,1.551-1.523,3.13-2.91,4.732
|
||||
c-1.246,1.426-2.842,2.898-4.805,4.421l-9,6.993c-0.101,0.073-0.164,0.113-0.203,0.119c-0.006-0.011-0.13-0.096-0.355-0.248
|
||||
c-0.327-0.186-0.525-0.299-0.592-0.333c-0.35-0.169-0.722-0.237-1.122-0.214c-0.423,0.017-0.851,0.192-1.285,0.507
|
||||
c-0.451,0.327-0.778,0.722-0.987,1.195c-0.287,0.637-0.383,1.319-0.293,2.036c0.039,0.361,0.112,0.659,0.225,0.879
|
||||
c0.248,0.468,0.524,0.66,0.817,0.587c0.158-0.073,0.27-0.124,0.349-0.141c0.13-0.062,0.237-0.079,0.322-0.051
|
||||
c0.282,0.112,0.429,0.27,0.44,0.479c0.012,0.209-0.123,0.406-0.406,0.576c-0.344,0.209-0.756,0.31-1.224,0.293
|
||||
c-0.581-0.006-1.044-0.237-1.382-0.671l-1.167-1.5c-0.125-0.164-0.226-0.27-0.311-0.315c-0.112-0.068-0.225-0.057-0.338,0.028
|
||||
c-0.079,0.062-0.868,0.885-2.363,2.465c-1.866,1.872-3.739,3.53-5.599,4.974c-1.822,1.415-3.869,2.848-6.142,4.308
|
||||
c-1.127,0.722-2.216,1.415-3.265,2.075c-0.304,0.231-0.457,0.58-0.468,1.049c0.006,0.259,0.039,0.587,0.101,0.981
|
||||
c0.022,0.203-0.034,0.367-0.175,0.496c-0.135,0.107-0.322,0.124-0.547,0.062c-0.237-0.079-0.863-0.756-1.872-2.036
|
||||
c-0.243,0.011-0.468-0.045-0.689-0.158c-0.243-0.124-0.451-0.288-0.625-0.508c-0.153-0.203-0.266-0.445-0.316-0.705
|
||||
c-0.056-0.242-0.051-0.479,0.011-0.704c-0.908-1.224-1.37-1.952-1.393-2.177c-0.017-0.248,0.051-0.423,0.198-0.513
|
||||
c0.147-0.119,0.327-0.135,0.524-0.051c0.361,0.164,0.666,0.265,0.903,0.321c0.468,0.119,0.851,0.062,1.156-0.169
|
||||
c0.902-0.857,1.839-1.737,2.82-2.65c1.962-1.855,3.857-3.491,5.678-4.907c1.861-1.449,3.931-2.842,6.204-4.19
|
||||
c1.9-1.06,2.887-1.618,2.972-1.681c0.112-0.085,0.146-0.197,0.118-0.321c-0.017-0.073-0.09-0.198-0.219-0.361l-1.162-1.5
|
||||
c-0.344-0.44-0.446-0.942-0.311-1.506c0.107-0.457,0.3-0.829,0.581-1.111c0.243-0.232,0.462-0.316,0.666-0.248
|
||||
c0.191,0.045,0.304,0.22,0.338,0.519c0.017,0.101-0.022,0.209-0.112,0.322c-0.046,0.056-0.119,0.157-0.226,0.304
|
||||
c-0.147,0.27-0.028,0.575,0.349,0.913c0.356,0.345,0.7,0.564,1.032,0.649l0.4,0.051l0.417,0.542l5.629-4.376
|
||||
c0.62-0.485,1.595-1.156,2.927-2.041c1.686-1.111,2.995-1.963,3.919-2.549c3.598-2.357,6.164-4.173,7.698-5.448
|
||||
c1.67-1.41,3.119-2.712,4.348-3.902L68.879,27.728z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g id="Selected_Items_14_">
|
||||
<path fill="#FFFFFF" d="M0.727,27.728l0.034,2.07c0.085,1.561,0.277,2.785,0.575,3.676c0.553,1.551,1.523,3.13,2.916,4.732
|
||||
c1.24,1.426,2.842,2.898,4.799,4.421l9.007,6.993c0.09,0.073,0.163,0.113,0.197,0.119c0.012-0.011,0.13-0.096,0.361-0.248
|
||||
c0.322-0.186,0.519-0.299,0.592-0.333c0.344-0.169,0.722-0.237,1.116-0.214c0.423,0.017,0.858,0.192,1.286,0.507
|
||||
c0.451,0.327,0.778,0.722,0.987,1.195c0.293,0.637,0.39,1.319,0.293,2.036c-0.04,0.361-0.113,0.659-0.22,0.879
|
||||
c-0.254,0.468-0.524,0.66-0.818,0.587c-0.163-0.073-0.276-0.124-0.349-0.141c-0.135-0.062-0.243-0.079-0.321-0.051
|
||||
c-0.288,0.112-0.435,0.27-0.44,0.479c-0.017,0.209,0.124,0.406,0.401,0.576c0.349,0.209,0.756,0.31,1.224,0.293
|
||||
c0.58-0.006,1.044-0.237,1.382-0.671l1.167-1.5c0.124-0.164,0.231-0.27,0.31-0.315c0.113-0.068,0.232-0.057,0.338,0.028
|
||||
c0.079,0.062,0.869,0.885,2.368,2.465c1.861,1.872,3.728,3.53,5.595,4.974c1.821,1.415,3.874,2.848,6.147,4.308
|
||||
c1.122,0.722,2.21,1.415,3.259,2.075c0.304,0.231,0.462,0.58,0.474,1.049c-0.006,0.259-0.045,0.587-0.107,0.981
|
||||
c-0.022,0.203,0.034,0.367,0.175,0.496c0.135,0.107,0.321,0.124,0.547,0.062c0.236-0.079,0.862-0.756,1.878-2.036
|
||||
c0.232,0.011,0.468-0.045,0.682-0.158c0.248-0.124,0.451-0.288,0.621-0.508c0.164-0.203,0.271-0.445,0.321-0.705
|
||||
c0.057-0.242,0.051-0.479-0.011-0.704c0.908-1.224,1.371-1.952,1.393-2.177c0.017-0.248-0.045-0.423-0.197-0.513
|
||||
c-0.147-0.119-0.322-0.135-0.519-0.051c-0.361,0.164-0.671,0.265-0.913,0.321c-0.462,0.119-0.846,0.062-1.15-0.169
|
||||
c-0.892-0.857-1.839-1.737-2.82-2.65c-1.963-1.855-3.852-3.491-5.679-4.907c-1.861-1.449-3.925-2.842-6.198-4.19
|
||||
c-1.906-1.06-2.893-1.618-2.977-1.681c-0.107-0.085-0.147-0.197-0.113-0.321c0.011-0.073,0.085-0.198,0.209-0.361l1.168-1.5
|
||||
c0.338-0.44,0.445-0.942,0.316-1.506c-0.107-0.457-0.304-0.829-0.587-1.111c-0.236-0.232-0.462-0.316-0.659-0.248
|
||||
c-0.192,0.045-0.304,0.22-0.345,0.519c-0.011,0.101,0.023,0.209,0.113,0.322c0.045,0.056,0.124,0.157,0.225,0.304
|
||||
c0.147,0.27,0.028,0.575-0.349,0.913c-0.355,0.345-0.693,0.564-1.032,0.649l-0.401,0.051l-0.417,0.542l-5.628-4.376
|
||||
c-0.615-0.479-1.59-1.156-2.927-2.041c-1.686-1.111-2.995-1.963-3.919-2.549c-3.603-2.357-6.164-4.173-7.698-5.448
|
||||
c-1.67-1.41-3.119-2.712-4.348-3.902L0.727,27.728z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 6.2 KiB |
@@ -1,17 +0,0 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="16" cy="16" r="14.5" stroke="white" stroke-width="3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.2997 6C21.0806 6.15656 24.2878 8.53521 25.6497 11.8644L16 16V6.03428C16.1669 6.01848 16.335 6.00701 16.5044 6H17.2997Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.402 24.8867C21.6197 24.8867 25.8495 20.6569 25.8495 15.4392C25.8495 14.6638 25.7561 13.9102 25.5799 13.1891L16 17.5L7.05996 14.0233C7.03593 14.1832 7.01591 14.3444 7 14.5067V16.3718C7.46833 21.1517 11.499 24.8867 16.402 24.8867Z" fill="white"/>
|
||||
<rect x="16" y="2" width="1" height="3" fill="white"/>
|
||||
<rect x="16" y="27" width="1" height="3" fill="white"/>
|
||||
<rect x="30" y="16" width="1" height="3" transform="rotate(90 30 16)" fill="white"/>
|
||||
<rect x="5" y="16" width="1" height="3" transform="rotate(90 5 16)" fill="white"/>
|
||||
<rect x="27.616" y="22" width="1" height="2" transform="rotate(120 27.616 22)" fill="white"/>
|
||||
<rect x="6.23206" y="10" width="1" height="2" transform="rotate(120 6.23206 10)" fill="white"/>
|
||||
<rect x="9.40369" y="27.9707" width="1" height="2" transform="rotate(-150 9.40369 27.9707)" fill="white"/>
|
||||
<rect x="22.866" y="7.23206" width="1" height="2" transform="rotate(-150 22.866 7.23206)" fill="white"/>
|
||||
<rect x="4.37738" y="23.2207" width="1" height="2" transform="rotate(-120 4.37738 23.2207)" fill="white"/>
|
||||
<rect x="26.5" y="11.866" width="1" height="2" transform="rotate(-120 26.5 11.866)" fill="white"/>
|
||||
<rect x="8.75" y="4.83975" width="1" height="2" transform="rotate(-30 8.75 4.83975)" fill="white"/>
|
||||
<rect x="22" y="25.5" width="1" height="2" transform="rotate(-30 22 25.5)" fill="white"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,16 +0,0 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="16" cy="16" r="14.5" stroke="white" stroke-width="3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.402 24.8867C21.6197 24.8867 25.8495 20.6569 25.8495 15.4392C25.8495 10.3548 21.8329 6.20841 16.7997 6V15.9918H7V16.3718C7.46833 21.1517 11.499 24.8867 16.402 24.8867Z" fill="white"/>
|
||||
<rect x="16" y="2" width="1" height="3" fill="white"/>
|
||||
<rect x="16" y="27" width="1" height="3" fill="white"/>
|
||||
<rect x="30" y="16" width="1" height="3" transform="rotate(90 30 16)" fill="white"/>
|
||||
<rect x="5" y="16" width="1" height="3" transform="rotate(90 5 16)" fill="white"/>
|
||||
<rect x="27.616" y="22" width="1" height="2" transform="rotate(120 27.616 22)" fill="white"/>
|
||||
<rect x="6.23206" y="10" width="1" height="2" transform="rotate(120 6.23206 10)" fill="white"/>
|
||||
<rect x="9.40369" y="27.9707" width="1" height="2" transform="rotate(-150 9.40369 27.9707)" fill="white"/>
|
||||
<rect x="22.866" y="7.23206" width="1" height="2" transform="rotate(-150 22.866 7.23206)" fill="white"/>
|
||||
<rect x="4.37738" y="23.2207" width="1" height="2" transform="rotate(-120 4.37738 23.2207)" fill="white"/>
|
||||
<rect x="26.5" y="11.866" width="1" height="2" transform="rotate(-120 26.5 11.866)" fill="white"/>
|
||||
<rect x="8.75" y="4.83975" width="1" height="2" transform="rotate(-30 8.75 4.83975)" fill="white"/>
|
||||
<rect x="22" y="25.5" width="1" height="2" transform="rotate(-30 22 25.5)" fill="white"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,16 +0,0 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="16" cy="16" r="14.5" stroke="white" stroke-width="3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2212 17C26.3056 16.4923 26.3495 15.9709 26.3495 15.4392C26.3495 10.3548 22.3329 6.20841 17.2997 6H16.5044C16.335 6.00701 16.1669 6.01848 16 6.03428V17H24.5H26.2212Z" fill="white"/>
|
||||
<rect x="16" y="2" width="1" height="3" fill="white"/>
|
||||
<rect x="16" y="27" width="1" height="3" fill="white"/>
|
||||
<rect x="30" y="16" width="1" height="3" transform="rotate(90 30 16)" fill="white"/>
|
||||
<rect x="5" y="16" width="1" height="3" transform="rotate(90 5 16)" fill="white"/>
|
||||
<rect x="27.616" y="22" width="1" height="2" transform="rotate(120 27.616 22)" fill="white"/>
|
||||
<rect x="6.23206" y="10" width="1" height="2" transform="rotate(120 6.23206 10)" fill="white"/>
|
||||
<rect x="9.40369" y="27.9707" width="1" height="2" transform="rotate(-150 9.40369 27.9707)" fill="white"/>
|
||||
<rect x="22.866" y="7.23206" width="1" height="2" transform="rotate(-150 22.866 7.23206)" fill="white"/>
|
||||
<rect x="4.37738" y="23.2207" width="1" height="2" transform="rotate(-120 4.37738 23.2207)" fill="white"/>
|
||||
<rect x="26.5" y="11.866" width="1" height="2" transform="rotate(-120 26.5 11.866)" fill="white"/>
|
||||
<rect x="8.75" y="4.83975" width="1" height="2" transform="rotate(-30 8.75 4.83975)" fill="white"/>
|
||||
<rect x="22" y="25.5" width="1" height="2" transform="rotate(-30 22 25.5)" fill="white"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,93 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="177.75388mm"
|
||||
height="205.2525mm"
|
||||
viewBox="0 0 177.75388 205.2525"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
|
||||
sodipodi:docname="vac_banned.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.5"
|
||||
inkscape:cx="337"
|
||||
inkscape:cy="389"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="text11238" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<rect
|
||||
x="141.36865"
|
||||
y="426.65552"
|
||||
width="529.30859"
|
||||
height="270.22998"
|
||||
id="rect11240" />
|
||||
<linearGradient
|
||||
id="linearGradient1328"
|
||||
inkscape:swatch="solid">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1326" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-16.123061,-45.873752)">
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="fill:#5b0000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:22.6772;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path411"
|
||||
inkscape:flatsided="true"
|
||||
sodipodi:sides="6"
|
||||
sodipodi:cx="240.26172"
|
||||
sodipodi:cy="341.72095"
|
||||
sodipodi:r1="374.78607"
|
||||
sodipodi:r2="324.57425"
|
||||
sodipodi:arg1="0.52359878"
|
||||
sodipodi:arg2="1.0471976"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="M 564.83598,529.11398 240.26172,716.50702 -84.312541,529.11398 -84.31254,154.32791 240.26172,-33.065125 564.83598,154.32791 Z"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,41.430754,58.086334)"
|
||||
inkscape:transform-center-y="-1.1390698e-06" />
|
||||
<g
|
||||
aria-label="VAC"
|
||||
transform="matrix(0.34578181,0,0,0.33957976,-17.741749,-41.44268)"
|
||||
id="text11238"
|
||||
style="font-size:240px;line-height:1.25;white-space:pre;shape-inside:url(#rect11240)">
|
||||
<path
|
||||
d="m 285.36914,473.66629 -61.2,171.36 h -21.6 l -61.2,-171.36 h 22.56 l 38.64,109.92 q 3.84,10.56 6.48,19.92 2.64,9.12 4.32,17.52 1.68,-8.4 4.32,-17.76 2.64,-9.36 6.48,-20.16 l 38.4,-109.44 z"
|
||||
style="fill:#ffffff"
|
||||
id="path13" />
|
||||
<path
|
||||
d="m 406.56855,645.02629 -20.64,-53.04 h -67.92 l -20.4,53.04 h -21.84 l 66.96,-172.08 h 19.44 l 66.72,172.08 z m -46.32,-124.08 q -0.72,-1.92 -2.4,-6.96 -1.68,-5.04 -3.36,-10.32 -1.44,-5.52 -2.4,-8.4 -1.68,7.44 -3.84,14.64 -2.16,6.96 -3.6,11.04 l -19.44,51.84 h 54.24 z"
|
||||
style="fill:#ffffff"
|
||||
id="path15" />
|
||||
<path
|
||||
d="m 521.04843,490.22629 q -27.6,0 -43.44,18.48 -15.84,18.48 -15.84,50.64 0,31.92 14.64,50.64 14.88,18.48 44.4,18.48 11.28,0 21.36,-1.92 10.08,-1.92 19.68,-4.8 v 18.72 q -9.6,3.6 -19.92,5.28 -10.08,1.68 -24.24,1.68 -26.16,0 -43.68,-10.8 -17.52,-10.8 -26.4,-30.72 -8.64,-19.92 -8.64,-46.8 0,-25.92 9.36,-45.6 9.6,-19.92 28.08,-30.96 18.48,-11.28 44.88,-11.28 27.12,0 47.28,10.08 l -8.64,18.24 q -7.92,-3.6 -17.76,-6.48 -9.6,-2.88 -21.12,-2.88 z"
|
||||
style="fill:#ffffff"
|
||||
id="path17" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -1,91 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="751.82812"
|
||||
height="167.39999"
|
||||
viewBox="0 0 751.82812 167.39999"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
|
||||
sodipodi:docname="csgo-wtf.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#ffffff"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="1.2304688"
|
||||
inkscape:cx="305.98094"
|
||||
inkscape:cy="125.15555"
|
||||
inkscape:window-width="1916"
|
||||
inkscape:window-height="1142"
|
||||
inkscape:window-x="320"
|
||||
inkscape:window-y="18"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<rect
|
||||
x="283.46646"
|
||||
y="109.60863"
|
||||
width="54.847519"
|
||||
height="76.803276"
|
||||
id="rect20598" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(178.54286,-130.47085)">
|
||||
<g
|
||||
aria-label="CSGOWTF"
|
||||
id="text2740"
|
||||
style="font-size:192px;line-height:0;letter-spacing:0px;word-spacing:0px">
|
||||
<path
|
||||
d="m -67.261612,250.5271 q -1.59375,22.03125 -16.3125,34.6875 -14.625,12.65625 -38.624998,12.65625 -26.25,0 -41.34375,-17.625 -15,-17.71875 -15,-48.5625 v -8.34375 q 0,-19.6875 6.9375,-34.6875 6.9375,-15 19.78125,-22.96875 12.9375,-8.0625 30,-8.0625 23.624998,0 38.062498,12.65625 14.4375,12.65625 16.6875,35.53125 h -28.125 q -1.03125,-13.21875 -7.406248,-19.125 -6.28125,-6 -19.21875,-6 -14.0625,0 -21.09375,10.125 -6.9375,10.03125 -7.125,31.21875 v 10.3125 q 0,22.125 6.65625,32.34375 6.75,10.21875 21.1875,10.21875 13.03125,0 19.40625,-5.90625 6.468748,-6 7.406248,-18.46875 z"
|
||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#c3a235"
|
||||
id="path729" />
|
||||
<path
|
||||
d="m 21.988388,260.18335 q 0,-7.96875 -5.625,-12.1875 -5.625,-4.3125 -20.2499999,-9 -14.6250001,-4.78125 -23.1562501,-9.375 -23.25,-12.5625 -23.25,-33.84375 0,-11.0625 6.1875,-19.6875 6.28125,-8.71875 17.90625,-13.59375 11.71875,-4.875 26.25000006,-4.875 14.62499994,0 26.06249994,5.34375 11.4375,5.25 17.71875,14.90625 6.375,9.65625 6.375,21.9375 h -28.125 q 0,-9.375 -5.90625,-14.53125 -5.90625,-5.25 -16.59374994,-5.25 -10.31250006,0 -16.03125006,4.40625 -5.71875,4.3125 -5.71875,11.4375 0,6.65625 6.65625,11.15625 6.7500001,4.5 19.7812501,8.4375 23.9999999,7.21875 34.9687499,17.90625 10.96875,10.6875 10.96875,26.625 0,17.71875 -13.40625,27.84375 -13.40625,10.03125 -36.09374994,10.03125 -15.75000006,0 -28.68750006,-5.71875 -12.9375,-5.8125 -19.78125,-15.84375 -6.75,-10.03125 -6.75,-23.25 h 28.21875 q 0,22.59375 27.00000006,22.59375 10.03124994,0 15.65624994,-4.03125 5.625,-4.125 5.625,-11.4375 z"
|
||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#c3a235"
|
||||
id="path731" />
|
||||
<path
|
||||
d="m 177.23839,278.74585 q -7.59375,9.09375 -21.46875,14.15625 -13.875,4.96875 -30.75,4.96875 -17.71875,0 -31.125002,-7.6875 -13.3125,-7.78125 -20.625,-22.5 -7.21875,-14.71875 -7.40625,-34.59375 v -9.28125 q 0,-20.4375 6.84375,-35.34375 6.9375,-15 19.875,-22.875 13.031252,-7.96875 30.468752,-7.96875 24.28125,0 37.96875,11.625 13.6875,11.53125 16.21875,33.65625 h -27.375 q -1.875,-11.71875 -8.34375,-17.15625 -6.375,-5.4375 -17.625,-5.4375 -14.34375,0 -21.84375,10.78125 -7.500002,10.78125 -7.593752,32.0625 v 8.71875 q 0,21.46875 8.156252,32.4375 8.15625,10.96875 23.90625,10.96875 15.84375,0 22.59375,-6.75 V 244.99585 H 123.51964 V 224.2771 h 53.71875 z"
|
||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#c3a235"
|
||||
id="path733" />
|
||||
<path
|
||||
d="m 312.14464,230.8396 q 0,20.15625 -7.125,35.34375 -7.125,15.1875 -20.4375,23.4375 -13.21875,8.25 -30.375,8.25 -16.96875,0 -30.28125,-8.15625 -13.3125,-8.15625 -20.625,-23.25 -7.3125,-15.1875 -7.40625,-34.875 v -6.75 q 0,-20.15625 7.21875,-35.4375 7.3125,-15.375 20.53125,-23.53125 13.3125,-8.25 30.375,-8.25 17.0625,0 30.28125,8.25 13.3125,8.15625 20.53125,23.53125 7.3125,15.28125 7.3125,35.34375 z m -28.5,-6.1875 q 0,-21.46875 -7.6875,-32.625 -7.6875,-11.15625 -21.9375,-11.15625 -14.15625,0 -21.84375,11.0625 -7.6875,10.96875 -7.78125,32.25 v 6.65625 q 0,20.90625 7.6875,32.4375 7.6875,11.53125 22.125,11.53125 14.15625,0 21.75,-11.0625 7.59375,-11.15625 7.6875,-32.4375 z"
|
||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#c3a235"
|
||||
id="path735" />
|
||||
<path
|
||||
d="m 397.41964,193.6021 11.94374,-63.13125 h 18.22032 l -19.68282,88.725 h -18.40312 l -14.44219,-59.35313 -14.44218,59.35313 h -18.40313 l -19.68281,-88.725 h 18.22031 l 12.00469,63.00937 14.625,-63.00937 h 15.47812 z"
|
||||
style="font-size:65%;baseline-shift:super;fill:#ffffff"
|
||||
id="path737" />
|
||||
<path
|
||||
d="m 505.0962,145.27866 h -27.17813 v 73.91719 h -18.28125 v -73.91719 h -26.81249 v -14.80781 h 72.27187 z"
|
||||
style="font-size:65%;baseline-shift:super;fill:#ffffff"
|
||||
id="path739" />
|
||||
<path
|
||||
d="m 568.89777,182.93804 h -35.1 v 36.25781 h -18.28125 v -88.725 h 57.76875 v 14.80781 h -39.4875 v 22.9125 h 35.1 z"
|
||||
style="font-size:65%;baseline-shift:super;fill:#ffffff"
|
||||
id="path741" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="text20596"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect20598);fill:#000000;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 9.5 KiB |
@@ -1,99 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="495.6875"
|
||||
height="254.58194"
|
||||
viewBox="0 0 495.6875 254.58193"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
sodipodi:docname="logo.svg"
|
||||
inkscape:export-filename="/home/cnachtigall/git/WebStorm/csgowtf/public/logo.png"
|
||||
inkscape:export-xdpi="127.88531"
|
||||
inkscape:export-ydpi="127.88531"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#ffffff"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="1.2304688"
|
||||
inkscape:cx="274.2857"
|
||||
inkscape:cy="223.8984"
|
||||
inkscape:window-width="1916"
|
||||
inkscape:window-height="1026"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="52"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<rect
|
||||
x="283.46646"
|
||||
y="109.60863"
|
||||
width="54.847519"
|
||||
height="76.803276"
|
||||
id="rect20598" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-10.965942,-32.201904)">
|
||||
<g
|
||||
aria-label="CSGO "
|
||||
id="text2740"
|
||||
style="font-size:192px;line-height:0;letter-spacing:0px;word-spacing:0px;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill">
|
||||
<path
|
||||
d="m 124.74719,127.60815 q -1.59375,22.03125 -16.3125,34.6875 -14.624998,12.65625 -38.624998,12.65625 -26.25,0 -41.34375,-17.625 -15,-17.71875 -15,-48.5625 v -8.34375 q 0,-19.687496 6.9375,-34.687496 6.9375,-15 19.78125,-22.96875 12.9375,-8.0625 30,-8.0625 23.625,0 38.062498,12.65625 14.4375,12.65625 16.6875,35.53125 H 96.809692 q -1.03125,-13.21875 -7.40625,-19.125 -6.28125,-6 -19.21875,-6 -14.0625,0 -21.09375,10.125 -6.9375,10.03125 -7.125,31.21875 v 10.312496 q 0,22.125 6.65625,32.34375 6.75,10.21875 21.1875,10.21875 13.03125,0 19.40625,-5.90625 6.46875,-6 7.40625,-18.46875 z"
|
||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
id="path3650" />
|
||||
<path
|
||||
d="m 213.99719,137.2644 q 0,-7.96875 -5.625,-12.1875 -5.625,-4.3125 -20.25,-9 -14.625,-4.78125 -23.15625,-9.375 -23.25,-12.562496 -23.25,-33.843746 0,-11.0625 6.1875,-19.6875 6.28125,-8.71875 17.90625,-13.59375 11.71875,-4.875 26.25,-4.875 14.625,0 26.0625,5.34375 11.4375,5.25 17.71875,14.90625 6.375,9.65625 6.375,21.9375 h -28.125 q 0,-9.375 -5.90625,-14.53125 -5.90625,-5.25 -16.59375,-5.25 -10.3125,0 -16.03125,4.40625 -5.71875,4.3125 -5.71875,11.4375 0,6.65625 6.65625,11.15625 6.75,4.5 19.78125,8.4375 24,7.21875 34.96875,17.906246 10.96875,10.6875 10.96875,26.625 0,17.71875 -13.40625,27.84375 -13.40625,10.03125 -36.09375,10.03125 -15.75,0 -28.6875,-5.71875 -12.9375,-5.8125 -19.78125,-15.84375 -6.75,-10.03125 -6.75,-23.25 h 28.21875 q 0,22.59375 27,22.59375 10.03125,0 15.65625,-4.03125 5.625,-4.125 5.625,-11.4375 z"
|
||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
id="path3652" />
|
||||
<path
|
||||
d="m 369.24719,155.8269 q -7.59375,9.09375 -21.46875,14.15625 -13.875,4.96875 -30.75,4.96875 -17.71875,0 -31.125,-7.6875 -13.3125,-7.78125 -20.625,-22.5 -7.21875,-14.71875 -7.40625,-34.59375 v -9.28125 q 0,-20.437496 6.84375,-35.343746 6.9375,-15 19.875,-22.875 13.03125,-7.96875 30.46875,-7.96875 24.28125,0 37.96875,11.625 13.6875,11.53125 16.21875,33.65625 h -27.375 q -1.875,-11.71875 -8.34375,-17.15625 -6.375,-5.4375 -17.625,-5.4375 -14.34375,0 -21.84375,10.78125 -7.5,10.78125 -7.59375,32.062496 v 8.71875 q 0,21.46875 8.15625,32.4375 8.15625,10.96875 23.90625,10.96875 15.84375,0 22.59375,-6.75 V 122.0769 h -25.59375 v -20.71875 h 53.71875 z"
|
||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
id="path3654" />
|
||||
<path
|
||||
d="m 504.15344,107.92065 q 0,20.15625 -7.125,35.34375 -7.125,15.1875 -20.4375,23.4375 -13.21875,8.25 -30.375,8.25 -16.96875,0 -30.28125,-8.15625 -13.3125,-8.15625 -20.625,-23.25 -7.3125,-15.1875 -7.40625,-34.875 v -6.75 q 0,-20.156246 7.21875,-35.437496 7.3125,-15.375 20.53125,-23.53125 13.3125,-8.25 30.375,-8.25 17.0625,0 30.28125,8.25 13.3125,8.15625 20.53125,23.53125 7.3125,15.28125 7.3125,35.343746 z m -28.5,-6.1875 q 0,-21.468746 -7.6875,-32.624996 -7.6875,-11.15625 -21.9375,-11.15625 -14.15625,0 -21.84375,11.0625 -7.6875,10.96875 -7.78125,32.249996 v 6.65625 q 0,20.90625 7.6875,32.4375 7.6875,11.53125 22.125,11.53125 14.15625,0 21.75,-11.0625 7.59375,-11.15625 7.6875,-32.4375 z"
|
||||
style="font-weight:bold;line-height:1.25;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';text-align:end;baseline-shift:baseline;text-anchor:end;fill:#c3a235;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
id="path3656" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
id="text20596"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect20598);fill:#000000;fill-opacity:1;stroke:none" />
|
||||
<g
|
||||
aria-label="WTF"
|
||||
id="text36805"
|
||||
style="font-size:133.333px;line-height:1.25;letter-spacing:0px;word-spacing:0px;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill">
|
||||
<path
|
||||
d="m 204.87102,256.94016 12.76039,-67.44774 h 19.46609 l -21.02859,94.79142 H 196.4075 l -15.42964,-63.41129 -15.42965,63.41129 H 145.8868 l -21.02859,-94.79142 h 19.46609 l 12.82549,67.31754 15.62496,-67.31754 h 16.53642 z"
|
||||
style="font-weight:bold;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
id="path3643" />
|
||||
<path
|
||||
d="m 319.90979,205.31269 h -29.03638 v 78.97115 h -19.5312 v -78.97115 h -28.64576 v -15.82027 h 77.21334 z"
|
||||
style="font-weight:bold;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
id="path3645" />
|
||||
<path
|
||||
d="m 388.07367,245.54696 h -37.4999 v 38.73688 h -19.5312 v -94.79142 h 61.71859 v 15.82027 h -42.18739 v 24.47911 h 37.4999 z"
|
||||
style="font-weight:bold;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff;stroke:#000000;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
|
||||
id="path3647" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 8.0 KiB |
@@ -1,209 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#B6BAAE" d="M31.237,15.23L16.748,0.737c-0.224-0.224-0.521-0.347-0.836-0.347S15.3,0.514,15.076,0.737L0.587,15.23
|
||||
c-0.223,0.224-0.346,0.52-0.346,0.836c0,0.317,0.123,0.613,0.346,0.837l14.489,14.493c0.224,0.224,0.521,0.347,0.836,0.347
|
||||
s0.612-0.123,0.836-0.347l14.489-14.493C31.698,16.441,31.698,15.692,31.237,15.23z M30.701,16.591L16.43,30.861
|
||||
c-0.138,0.138-0.322,0.215-0.518,0.215c-0.196,0-0.379-0.077-0.518-0.215L1.123,16.591c-0.138-0.139-0.214-0.322-0.214-0.519
|
||||
s0.076-0.38,0.214-0.518L15.395,1.283c0.138-0.139,0.322-0.214,0.518-0.214c0.195,0,0.379,0.075,0.518,0.214l14.271,14.271
|
||||
C30.986,15.84,30.986,16.305,30.701,16.591z"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E8E8E8" d="M30.214,16.715L16.516,30.411c-0.355,0.356-0.932,0.356-1.287,0
|
||||
L1.532,16.715c-0.356-0.356-0.356-0.932,0-1.287L15.229,1.731c0.355-0.355,0.932-0.355,1.287,0l13.698,13.697
|
||||
C30.568,15.783,30.568,16.359,30.214,16.715z"/>
|
||||
<path fill="#F2F2F2" d="M15.873,30.726c-0.256,0-0.497-0.1-0.678-0.281L1.498,16.75c-0.182-0.182-0.281-0.423-0.281-0.679
|
||||
c0-0.255,0.1-0.496,0.281-0.675L15.195,1.697c0.181-0.181,0.421-0.281,0.677-0.281s0.497,0.1,0.677,0.281l13.697,13.698
|
||||
c0.18,0.18,0.279,0.42,0.279,0.675c0.001,0.256-0.099,0.498-0.279,0.679L16.55,30.445C16.369,30.626,16.128,30.726,15.873,30.726z
|
||||
M15.873,1.513c-0.23,0-0.447,0.089-0.61,0.252L1.566,15.462c-0.163,0.163-0.252,0.377-0.252,0.608c0,0.231,0.089,0.448,0.252,0.611
|
||||
l13.697,13.696c0.163,0.163,0.379,0.253,0.61,0.253s0.447-0.09,0.61-0.253L30.18,16.682c0.162-0.163,0.251-0.38,0.251-0.611
|
||||
c0-0.23-0.09-0.445-0.251-0.608L16.482,1.765C16.319,1.603,16.103,1.513,15.873,1.513z"/>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M15.894,28.65c-0.185,0-0.359-0.072-0.489-0.203L3.476,16.518
|
||||
c-0.131-0.13-0.203-0.304-0.203-0.489c0-0.186,0.072-0.359,0.203-0.489l0.987-0.987l3.196,0.027l-1.38,1.38
|
||||
c-0.039,0.039-0.039,0.103,0,0.142l9.526,9.525c0.02,0.02,0.045,0.029,0.071,0.029s0.051-0.01,0.071-0.029l9.525-9.525
|
||||
c0.039-0.039,0.039-0.103,0-0.142l-1.377-1.378h3.304l0.913,0.958c0.132,0.13,0.203,0.304,0.203,0.489
|
||||
c0,0.185-0.071,0.358-0.202,0.489L16.383,28.447C16.253,28.578,16.079,28.65,15.894,28.65z M9.268,9.747l6.137-6.137
|
||||
c0.13-0.13,0.304-0.202,0.489-0.202s0.359,0.072,0.489,0.202l6.136,6.135h-3.304l-3.27-3.31c-0.02-0.02-0.045-0.029-0.071-0.029
|
||||
s-0.051,0.01-0.071,0.029l-3.34,3.339L9.268,9.747z"/>
|
||||
<path fill="#D4E6AA" d="M15.894,3.508c0.158,0,0.307,0.061,0.418,0.173l5.965,5.964h-2.979l-3.282-3.281
|
||||
c-0.039-0.039-0.09-0.059-0.142-0.059s-0.103,0.02-0.142,0.059l-3.282,3.281h-2.94l5.963-5.964
|
||||
C15.587,3.569,15.736,3.508,15.894,3.508 M27.314,14.682l0.927,0.929c0.111,0.111,0.173,0.26,0.173,0.418
|
||||
c0,0.158-0.062,0.307-0.174,0.418L16.313,28.376c-0.112,0.112-0.26,0.173-0.418,0.173s-0.307-0.062-0.418-0.174L3.546,16.447
|
||||
c-0.112-0.111-0.173-0.26-0.173-0.418c0-0.159,0.062-0.307,0.174-0.419l0.928-0.928h2.94l-1.207,1.207
|
||||
c-0.078,0.078-0.078,0.205,0,0.283l9.526,9.525c0.039,0.039,0.09,0.059,0.142,0.059s0.103-0.02,0.142-0.059l9.525-9.525
|
||||
c0.078-0.078,0.078-0.205,0-0.283l-1.207-1.207H27.314 M15.894,3.308c-0.203,0-0.406,0.077-0.56,0.231L9.029,9.845h3.506
|
||||
l3.34-3.339l3.341,3.339h3.545L16.454,3.54C16.3,3.385,16.097,3.308,15.894,3.308L15.894,3.308z M27.397,14.482h-3.545l1.548,1.549
|
||||
l-9.525,9.525l-9.526-9.525l1.548-1.549H4.392l-0.986,0.987c-0.31,0.308-0.31,0.812,0,1.12l11.929,11.929
|
||||
c0.154,0.155,0.357,0.232,0.56,0.232s0.406-0.078,0.56-0.232l11.928-11.929c0.31-0.308,0.31-0.812,0-1.12L27.397,14.482
|
||||
L27.397,14.482z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#1D1D22" points="14.863,24.168 15.283,24.587 15.283,17.732 14.863,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="17.729,23.339 17.881,23.19 17.881,17.714 17.729,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="18.046,23.024 18.467,22.604 18.467,17.732 18.046,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="12.166,21.471 12.315,21.621 12.315,17.714 12.166,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="10.399,19.704 10.819,20.125 10.819,17.714 10.399,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="11.089,20.394 11.51,20.815 11.51,17.714 11.089,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="11.745,21.05 11.895,21.2 11.895,17.714 11.745,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="8.717,18.022 9.138,18.443 9.138,17.714 8.717,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="12.526,21.832 12.676,21.981 12.676,17.714 12.526,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="13.642,22.947 14.062,23.367 14.062,17.714 13.642,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="14.263,23.567 14.682,23.987 14.682,17.714 14.263,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="9.463,18.769 9.613,18.918 9.613,17.714 9.463,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="20.092,20.978 20.243,20.827 20.243,17.714 20.092,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="22.739,18.331 23.16,17.91 23.16,17.732 22.739,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="20.412,20.657 20.562,20.507 20.562,17.714 20.412,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="20.728,20.341 21.147,19.922 21.147,17.732 20.728,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="22.344,18.726 22.494,18.576 22.494,17.714 22.344,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="18.686,22.385 19.106,21.964 19.106,17.732 18.686,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="21.628,19.442 22.048,19.021 22.048,17.732 21.628,17.732 "/>
|
||||
<path fill="#1D1D22" d="M9.045,13.056c0.117-0.112,0.174-0.243,0.174-0.397c0-0.113-0.036-0.216-0.106-0.311
|
||||
c-0.071-0.095-0.178-0.159-0.32-0.192c0.246-0.076,0.37-0.227,0.37-0.454c0-0.112-0.029-0.208-0.084-0.285
|
||||
c-0.056-0.079-0.126-0.138-0.213-0.18c-0.086-0.042-0.215-0.064-0.386-0.064H7.524v2.049h0.955
|
||||
C8.74,13.223,8.929,13.167,9.045,13.056z M8.003,11.536h0.329c0.1,0,0.167,0.005,0.201,0.013c0.034,0.01,0.065,0.034,0.094,0.071
|
||||
s0.042,0.083,0.042,0.134c0,0.048-0.016,0.098-0.051,0.15c-0.035,0.053-0.119,0.08-0.252,0.08H8.003V11.536z M8.003,12.843V12.35
|
||||
h0.389c0.116,0,0.199,0.024,0.25,0.072c0.05,0.048,0.074,0.105,0.074,0.171c0,0.08-0.026,0.141-0.078,0.186
|
||||
c-0.052,0.043-0.141,0.065-0.267,0.065H8.003z"/>
|
||||
<path fill="#1D1D22" d="M10.424,12.801h0.663l0.126,0.422h0.516l-0.641-2.049h-0.556l-0.657,2.049h0.421L10.424,12.801z
|
||||
M10.759,11.704l0.214,0.718h-0.434L10.759,11.704z"/>
|
||||
<path fill="#1D1D22" d="M13.811,12.988c0.03,0.079,0.053,0.157,0.069,0.234h0.219v-1.096h-0.842v0.383h0.386
|
||||
c0,0.123-0.034,0.212-0.101,0.269c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.236-0.055-0.308-0.167
|
||||
c-0.072-0.111-0.108-0.271-0.108-0.482c0-0.218,0.034-0.386,0.1-0.503c0.067-0.117,0.165-0.177,0.295-0.177
|
||||
c0.198,0,0.316,0.124,0.353,0.373l0.456-0.061c-0.031-0.212-0.116-0.383-0.256-0.511c-0.14-0.129-0.324-0.193-0.553-0.193
|
||||
c-0.272,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.237,0.459-0.237,0.786c0,0.303,0.074,0.549,0.223,0.741
|
||||
c0.148,0.192,0.356,0.287,0.624,0.287C13.479,13.254,13.665,13.166,13.811,12.988z"/>
|
||||
<path fill="#1D1D22" d="M15.817,11.534c0.199,0,0.316,0.124,0.354,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.256-0.511
|
||||
c-0.141-0.129-0.325-0.193-0.553-0.193c-0.271,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.238,0.459-0.238,0.786
|
||||
c0,0.303,0.074,0.549,0.224,0.741c0.148,0.192,0.356,0.287,0.623,0.287c0.227,0,0.413-0.088,0.559-0.266
|
||||
c0.03,0.079,0.053,0.157,0.068,0.234h0.219v-1.096h-0.842v0.383h0.386c0,0.123-0.034,0.212-0.101,0.269
|
||||
c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.235-0.055-0.308-0.167c-0.072-0.111-0.108-0.271-0.108-0.482
|
||||
c0-0.218,0.033-0.386,0.099-0.503C15.589,11.594,15.688,11.534,15.817,11.534z"/>
|
||||
<path fill="#1D1D22" d="M17.902,12.801h0.663l0.125,0.422h0.516l-0.64-2.049H18.01l-0.656,2.049h0.421L17.902,12.801z
|
||||
M18.236,11.704l0.215,0.718h-0.434L18.236,11.704z"/>
|
||||
<path fill="#1D1D22" d="M20.768,11.534c0.198,0,0.315,0.124,0.353,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.257-0.511
|
||||
c-0.14-0.129-0.323-0.193-0.552-0.193c-0.273,0-0.487,0.1-0.647,0.298c-0.157,0.198-0.237,0.459-0.237,0.786
|
||||
c0,0.303,0.074,0.549,0.224,0.741c0.147,0.192,0.355,0.287,0.624,0.287c0.227,0,0.412-0.088,0.559-0.266
|
||||
c0.029,0.079,0.053,0.157,0.067,0.234h0.22v-1.096h-0.843v0.383h0.387c0,0.123-0.034,0.212-0.102,0.269
|
||||
c-0.067,0.055-0.145,0.083-0.229,0.083c-0.134,0-0.236-0.055-0.309-0.167c-0.072-0.111-0.107-0.271-0.107-0.482
|
||||
c0-0.218,0.033-0.386,0.099-0.503C20.539,11.594,20.637,11.534,20.768,11.534z"/>
|
||||
<polygon fill="#1D1D22" points="23.971,11.564 23.971,11.173 22.509,11.173 22.509,13.223 23.971,13.223 23.971,12.818
|
||||
22.997,12.818 22.997,12.37 23.763,12.37 23.763,11.985 22.997,11.985 22.997,11.564 "/>
|
||||
<polygon fill="#1D1D22" points="8.356,15.184 8.467,14.984 8.578,15.184 8.728,15.184 8.557,14.889 8.707,14.633 8.587,14.633
|
||||
8.493,14.8 8.404,14.633 8.253,14.633 8.405,14.891 8.234,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="9.353,14.633 9.232,14.633 9.138,14.8 9.048,14.633 8.898,14.633 9.049,14.891 8.879,15.184
|
||||
9.001,15.184 9.112,14.984 9.223,15.184 9.372,15.184 9.202,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="9.998,14.633 9.877,14.633 9.783,14.8 9.694,14.633 9.543,14.633 9.694,14.891 9.523,15.184
|
||||
9.646,15.184 9.757,14.984 9.868,15.184 10.018,15.184 9.847,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="10.292,15.184 10.402,14.984 10.512,15.184 10.663,15.184 10.492,14.889 10.642,14.633
|
||||
10.522,14.633 10.428,14.8 10.339,14.633 10.188,14.633 10.34,14.891 10.169,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="10.936,15.184 11.047,14.984 11.157,15.184 11.308,15.184 11.137,14.889 11.288,14.633
|
||||
11.167,14.633 11.073,14.8 10.983,14.633 10.833,14.633 10.984,14.891 10.814,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="11.933,14.633 11.812,14.633 11.718,14.8 11.629,14.633 11.479,14.633 11.63,14.891 11.459,15.184
|
||||
11.581,15.184 11.692,14.984 11.803,15.184 11.952,15.184 11.781,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="12.226,15.184 12.337,14.984 12.447,15.184 12.598,15.184 12.427,14.889 12.578,14.633
|
||||
12.457,14.633 12.363,14.8 12.274,14.633 12.123,14.633 12.274,14.891 12.104,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="13.223,14.633 13.102,14.633 13.008,14.8 12.918,14.633 12.769,14.633 12.92,14.891 12.749,15.184
|
||||
12.872,15.184 12.981,14.984 13.093,15.184 13.242,15.184 13.072,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="13.516,15.184 13.627,14.984 13.738,15.184 13.887,15.184 13.717,14.889 13.868,14.633
|
||||
13.747,14.633 13.653,14.8 13.563,14.633 13.413,14.633 13.565,14.891 13.394,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="14.21,14.891 14.039,15.184 14.161,15.184 14.272,14.984 14.383,15.184 14.532,15.184
|
||||
14.362,14.889 14.512,14.633 14.392,14.633 14.298,14.8 14.209,14.633 14.059,14.633 "/>
|
||||
<polygon fill="#1D1D22" points="14.807,15.184 14.917,14.984 15.028,15.184 15.177,15.184 15.007,14.889 15.158,14.633
|
||||
15.037,14.633 14.943,14.8 14.854,14.633 14.704,14.633 14.855,14.891 14.684,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="8.557,15.683 8.707,15.426 8.587,15.426 8.493,15.593 8.404,15.426 8.253,15.426 8.405,15.684
|
||||
8.234,15.978 8.356,15.978 8.467,15.777 8.578,15.978 8.728,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="9.353,15.426 9.232,15.426 9.138,15.593 9.048,15.426 8.898,15.426 9.049,15.684 8.879,15.978
|
||||
9.001,15.978 9.112,15.777 9.223,15.978 9.372,15.978 9.202,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="9.998,15.426 9.877,15.426 9.783,15.593 9.694,15.426 9.543,15.426 9.694,15.684 9.523,15.978
|
||||
9.646,15.978 9.757,15.777 9.868,15.978 10.018,15.978 9.847,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="10.512,15.978 10.663,15.978 10.492,15.683 10.642,15.426 10.522,15.426 10.428,15.593
|
||||
10.339,15.426 10.188,15.426 10.34,15.684 10.169,15.978 10.292,15.978 10.402,15.777 "/>
|
||||
<polygon fill="#1D1D22" points="11.308,15.978 11.137,15.683 11.288,15.426 11.167,15.426 11.073,15.593 10.983,15.426
|
||||
10.833,15.426 10.984,15.684 10.814,15.978 10.936,15.978 11.047,15.777 11.157,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="11.933,15.426 11.812,15.426 11.718,15.593 11.629,15.426 11.479,15.426 11.63,15.684
|
||||
11.459,15.978 11.581,15.978 11.692,15.777 11.803,15.978 11.952,15.978 11.781,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="12.427,15.683 12.578,15.426 12.457,15.426 12.363,15.593 12.274,15.426 12.123,15.426
|
||||
12.274,15.684 12.104,15.978 12.226,15.978 12.337,15.777 12.447,15.978 12.598,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="13.223,15.426 13.102,15.426 13.008,15.593 12.918,15.426 12.769,15.426 12.92,15.684
|
||||
12.749,15.978 12.872,15.978 12.981,15.777 13.093,15.978 13.242,15.978 13.072,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="13.887,15.978 13.717,15.683 13.868,15.426 13.747,15.426 13.653,15.593 13.563,15.426
|
||||
13.413,15.426 13.565,15.684 13.394,15.978 13.516,15.978 13.627,15.777 13.738,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="14.383,15.978 14.532,15.978 14.362,15.683 14.512,15.426 14.392,15.426 14.298,15.593
|
||||
14.209,15.426 14.059,15.426 14.21,15.684 14.039,15.978 14.161,15.978 14.272,15.777 "/>
|
||||
<polygon fill="#1D1D22" points="15.028,15.978 15.177,15.978 15.007,15.683 15.158,15.426 15.037,15.426 14.943,15.593
|
||||
14.854,15.426 14.704,15.426 14.855,15.684 14.684,15.978 14.807,15.978 14.917,15.777 "/>
|
||||
<path fill="#1D1D22" d="M16.867,14.841h0.292c-0.06,0.076-0.108,0.162-0.144,0.258c-0.037,0.097-0.057,0.191-0.059,0.284h0.124
|
||||
c0-0.06,0.01-0.127,0.03-0.201c0.018-0.076,0.047-0.148,0.086-0.214c0.036-0.066,0.073-0.117,0.109-0.153v-0.094h-0.439V14.841z"/>
|
||||
<path fill="#1D1D22" d="M17.873,15.023c0.063-0.036,0.096-0.083,0.096-0.141c0-0.041-0.016-0.079-0.048-0.112
|
||||
c-0.037-0.041-0.089-0.06-0.15-0.06c-0.038,0-0.07,0.007-0.102,0.02c-0.029,0.015-0.053,0.034-0.068,0.059
|
||||
c-0.018,0.023-0.029,0.056-0.038,0.097l0.118,0.02c0.004-0.029,0.014-0.052,0.029-0.065c0.015-0.016,0.034-0.024,0.057-0.024
|
||||
c0.021,0,0.039,0.007,0.052,0.02c0.014,0.013,0.021,0.031,0.021,0.056s-0.01,0.046-0.028,0.063
|
||||
c-0.017,0.016-0.044,0.024-0.079,0.023l-0.014,0.105c0.023-0.007,0.042-0.01,0.06-0.01c0.024,0,0.045,0.01,0.063,0.028
|
||||
c0.017,0.019,0.026,0.045,0.026,0.078c0,0.035-0.01,0.061-0.028,0.082c-0.019,0.02-0.04,0.03-0.066,0.03s-0.047-0.009-0.063-0.024
|
||||
c-0.018-0.017-0.028-0.042-0.032-0.074l-0.125,0.016c0.007,0.057,0.029,0.102,0.069,0.137c0.041,0.035,0.091,0.052,0.152,0.052
|
||||
c0.063,0,0.116-0.021,0.16-0.062c0.043-0.042,0.063-0.091,0.063-0.15c0-0.041-0.012-0.076-0.033-0.104
|
||||
C17.942,15.05,17.91,15.031,17.873,15.023z"/>
|
||||
<path fill="#1D1D22" d="M18.708,15.135h-0.082V14.71h-0.109l-0.291,0.426v0.113h0.273v0.134h0.127V15.25h0.082V15.135z
|
||||
M18.499,15.135h-0.153l0.153-0.229V15.135z"/>
|
||||
<path fill="#1D1D22" d="M18.938,14.841h0.293c-0.06,0.076-0.109,0.162-0.146,0.258c-0.036,0.097-0.055,0.191-0.057,0.284h0.125
|
||||
c-0.002-0.06,0.009-0.127,0.028-0.201c0.02-0.076,0.048-0.148,0.085-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44
|
||||
V14.841z"/>
|
||||
<path fill="#1D1D22" d="M19.955,15.022c0.028-0.013,0.053-0.031,0.068-0.056c0.017-0.025,0.024-0.053,0.024-0.083
|
||||
c0-0.05-0.017-0.091-0.053-0.124c-0.036-0.034-0.085-0.049-0.148-0.049c-0.065,0-0.114,0.015-0.15,0.049
|
||||
c-0.033,0.033-0.052,0.074-0.052,0.124c0,0.029,0.007,0.056,0.023,0.081c0.015,0.024,0.038,0.044,0.071,0.059
|
||||
c-0.038,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.073,0.156
|
||||
c0.04,0.031,0.09,0.048,0.152,0.048c0.065,0,0.118-0.019,0.158-0.058c0.038-0.04,0.059-0.089,0.059-0.151
|
||||
c0-0.038-0.011-0.071-0.029-0.1C20.021,15.058,19.992,15.037,19.955,15.022z M19.788,14.834c0.016-0.015,0.034-0.023,0.059-0.023
|
||||
s0.043,0.008,0.059,0.023c0.015,0.013,0.021,0.034,0.021,0.058c0,0.025-0.007,0.045-0.021,0.06
|
||||
c-0.016,0.015-0.034,0.023-0.059,0.023s-0.044-0.008-0.059-0.023c-0.015-0.014-0.021-0.034-0.021-0.059
|
||||
C19.768,14.868,19.773,14.849,19.788,14.834z M19.916,15.265c-0.018,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.05-0.008-0.068-0.029
|
||||
c-0.017-0.02-0.026-0.047-0.026-0.083c0-0.026,0.008-0.049,0.022-0.071c0.016-0.022,0.039-0.033,0.07-0.033
|
||||
c0.026,0,0.05,0.009,0.068,0.028c0.018,0.02,0.026,0.045,0.026,0.076C19.942,15.217,19.934,15.245,19.916,15.265z"/>
|
||||
<path fill="#1D1D22" d="M20.492,15.096c-0.071,0.065-0.119,0.119-0.144,0.16c-0.026,0.041-0.04,0.083-0.046,0.128h0.452v-0.119
|
||||
h-0.256c0.007-0.011,0.017-0.025,0.027-0.035c0.01-0.013,0.035-0.038,0.076-0.076c0.04-0.037,0.068-0.066,0.085-0.085
|
||||
c0.023-0.03,0.04-0.059,0.051-0.086c0.011-0.027,0.017-0.055,0.017-0.085c0-0.054-0.02-0.097-0.057-0.133
|
||||
c-0.038-0.036-0.091-0.053-0.156-0.053c-0.061,0-0.111,0.015-0.152,0.045c-0.039,0.032-0.064,0.083-0.071,0.154l0.13,0.012
|
||||
c0.002-0.039,0.011-0.065,0.025-0.081c0.017-0.017,0.038-0.025,0.064-0.025c0.027,0,0.049,0.008,0.064,0.024
|
||||
c0.016,0.016,0.024,0.037,0.024,0.065c0,0.026-0.01,0.053-0.028,0.079C20.586,15.004,20.55,15.04,20.492,15.096z"/>
|
||||
<path fill="#1D1D22" d="M21.011,14.841h0.293c-0.062,0.076-0.108,0.162-0.146,0.258c-0.035,0.097-0.054,0.191-0.056,0.284h0.124
|
||||
c0-0.06,0.009-0.127,0.027-0.201c0.021-0.076,0.05-0.148,0.087-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44V14.841z"/>
|
||||
<path fill="#1D1D22" d="M22.027,15.022c0.029-0.013,0.052-0.031,0.067-0.056c0.017-0.025,0.024-0.053,0.024-0.083
|
||||
c0-0.05-0.018-0.091-0.052-0.124c-0.036-0.034-0.085-0.049-0.149-0.049c-0.065,0-0.114,0.015-0.15,0.049
|
||||
c-0.034,0.033-0.052,0.074-0.052,0.124c0,0.029,0.009,0.056,0.023,0.081s0.039,0.044,0.072,0.059
|
||||
c-0.039,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.072,0.156
|
||||
c0.04,0.031,0.092,0.048,0.152,0.048c0.066,0,0.118-0.019,0.158-0.058c0.039-0.04,0.06-0.089,0.06-0.151
|
||||
c0-0.038-0.01-0.071-0.03-0.1C22.093,15.058,22.065,15.037,22.027,15.022z M21.86,14.834c0.015-0.015,0.034-0.023,0.059-0.023
|
||||
c0.023,0,0.044,0.008,0.058,0.023C21.991,14.848,22,14.868,22,14.892c0,0.025-0.009,0.045-0.023,0.06
|
||||
c-0.015,0.015-0.034,0.023-0.059,0.023c-0.023,0-0.043-0.008-0.058-0.023c-0.016-0.014-0.023-0.034-0.023-0.059
|
||||
C21.837,14.868,21.845,14.849,21.86,14.834z M21.988,15.265c-0.019,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.051-0.008-0.068-0.029
|
||||
c-0.019-0.02-0.026-0.047-0.026-0.083c0-0.026,0.007-0.049,0.021-0.071c0.017-0.022,0.04-0.033,0.071-0.033
|
||||
c0.026,0,0.05,0.009,0.067,0.028c0.017,0.02,0.026,0.045,0.026,0.076C22.014,15.217,22.004,15.245,21.988,15.265z"/>
|
||||
<path fill="#1D1D22" d="M22.831,15.05c0-0.122-0.022-0.208-0.066-0.261c-0.043-0.053-0.1-0.078-0.168-0.078
|
||||
c-0.063,0-0.113,0.02-0.154,0.062c-0.04,0.041-0.061,0.097-0.061,0.165c0,0.065,0.02,0.119,0.057,0.159
|
||||
c0.04,0.04,0.084,0.061,0.138,0.061c0.048,0,0.089-0.019,0.12-0.056c-0.005,0.077-0.015,0.129-0.034,0.152
|
||||
c-0.019,0.024-0.041,0.037-0.068,0.037c-0.021,0-0.039-0.007-0.05-0.018c-0.014-0.012-0.022-0.032-0.024-0.057l-0.125,0.015
|
||||
c0.01,0.054,0.03,0.095,0.063,0.125c0.032,0.027,0.074,0.041,0.128,0.041c0.072,0,0.132-0.026,0.177-0.082
|
||||
C22.807,15.26,22.831,15.171,22.831,15.05z M22.66,15.033c-0.017,0.02-0.038,0.03-0.062,0.03c-0.026,0-0.047-0.011-0.065-0.031
|
||||
c-0.018-0.02-0.024-0.051-0.024-0.095c0-0.043,0.007-0.074,0.022-0.093c0.017-0.018,0.036-0.028,0.06-0.028
|
||||
c0.024,0,0.047,0.011,0.066,0.035c0.02,0.022,0.028,0.054,0.028,0.095C22.686,14.985,22.678,15.015,22.66,15.033z"/>
|
||||
<path fill="#1D1D22" d="M23.459,14.71h-0.107l-0.292,0.426v0.113h0.275v0.134h0.124V15.25h0.084v-0.115h-0.084V14.71z
|
||||
M23.335,15.135h-0.154l0.154-0.229V15.135z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#1D1D22" d="M22.194,16.201v0.753c0,0.176,0.145,0.321,0.321,0.321h0.87c0.178,0,0.322-0.145,0.322-0.321v-0.753
|
||||
c0-0.176-0.145-0.32-0.322-0.32h-0.87C22.339,15.88,22.194,16.024,22.194,16.201z M23.408,16.141v0.876h-0.913v-0.876H23.408z"/>
|
||||
<rect x="19.897" y="16.697" fill="#1D1D22" width="0.232" height="0.234"/>
|
||||
<path fill="#1D1D22" d="M17.838,16.188v-0.017c-0.021-0.165-0.161-0.294-0.333-0.294h-0.848c-0.185,0-0.334,0.149-0.334,0.335
|
||||
v0.725c0,0.185,0.149,0.334,0.334,0.334h0.848c0.175,0,0.317-0.13,0.334-0.299v-0.018h-1.145v-0.767H17.838z"/>
|
||||
<path fill="#1D1D22" d="M21.92,16.15c-0.023-0.154-0.157-0.27-0.316-0.27h-0.931c-0.179,0-0.32,0.144-0.32,0.32v0.753
|
||||
c0,0.176,0.142,0.321,0.32,0.321h0.931c0.166,0,0.304-0.123,0.318-0.285v-0.529h-1.031c0.003,0.027,0.017,0.077,0.068,0.142
|
||||
c0.067,0.084,0.171,0.092,0.2,0.092h0.466V17h-0.977v-0.85H21.92z"/>
|
||||
<path fill="#1D1D22" d="M18.102,16.971c0.018,0.17,0.159,0.301,0.333,0.301h0.89c0.187,0,0.337-0.149,0.337-0.334v-0.217
|
||||
c-0.017-0.169-0.159-0.301-0.333-0.301h-0.889v-0.241h1.193c-0.018-0.169-0.16-0.301-0.333-0.301h-0.865
|
||||
c-0.185,0-0.335,0.149-0.335,0.334v0.208c0.018,0.171,0.16,0.302,0.333,0.302l0.889-0.001v0.25H18.102z"/>
|
||||
<rect x="19.897" y="16.219" fill="#1D1D22" width="0.232" height="0.233"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 20 KiB |
@@ -1,514 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_24_4_">
|
||||
<g>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="2.5088" y1="3.9233" x2="29.6924" y2="28.0986">
|
||||
<stop offset="0" style="stop-color:#EFE580"/>
|
||||
<stop offset="1" style="stop-color:#E6B341"/>
|
||||
</linearGradient>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="url(#SVGID_1_)" cx="16.253" cy="16.147" r="15.447"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_23_4_">
|
||||
<g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="13.7412" y1="4.9336" x2="19.1074" y2="28.8782">
|
||||
<stop offset="0" style="stop-color:#454547"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="url(#SVGID_2_)" d="M31.401,16.093c0-0.104-0.001-0.21-0.004-0.316
|
||||
c-0.001-0.074-0.004-0.149-0.008-0.223c-0.001-0.045-0.001-0.091-0.004-0.136c-0.001-0.006-0.001-0.014-0.002-0.019
|
||||
c-0.001-0.038-0.004-0.077-0.006-0.115c-0.004-0.068-0.008-0.137-0.013-0.205c-0.004-0.051-0.007-0.102-0.011-0.153
|
||||
c-0.007-0.085-0.015-0.171-0.022-0.257c-0.007-0.064-0.014-0.129-0.021-0.195c-0.004-0.034-0.008-0.068-0.012-0.103
|
||||
c-0.016-0.132-0.032-0.263-0.052-0.394c-0.001-0.012-0.004-0.024-0.004-0.036c-0.012-0.074-0.023-0.148-0.035-0.222
|
||||
c-0.002-0.017-0.005-0.032-0.007-0.048c-0.022-0.137-0.048-0.275-0.074-0.411c-0.003-0.015-0.005-0.031-0.008-0.045
|
||||
c-0.044-0.219-0.091-0.438-0.144-0.654c-0.006-0.023-0.011-0.045-0.017-0.067c-0.051-0.209-0.107-0.417-0.168-0.623
|
||||
c-0.01-0.03-0.019-0.062-0.028-0.095c-0.03-0.102-0.063-0.204-0.096-0.304c-0.013-0.037-0.022-0.074-0.036-0.11
|
||||
c-0.018-0.057-0.037-0.115-0.057-0.171c-0.016-0.043-0.031-0.088-0.046-0.13c-0.029-0.08-0.06-0.161-0.089-0.241
|
||||
c-0.019-0.05-0.038-0.102-0.058-0.152c-0.019-0.048-0.038-0.098-0.057-0.146c-0.026-0.066-0.054-0.131-0.081-0.197
|
||||
c-0.023-0.055-0.047-0.11-0.071-0.166c-0.023-0.059-0.05-0.116-0.075-0.172c-0.019-0.042-0.035-0.083-0.055-0.123
|
||||
c-0.039-0.084-0.077-0.167-0.116-0.249c-0.018-0.038-0.034-0.073-0.053-0.109c-0.031-0.063-0.063-0.126-0.094-0.19
|
||||
c-0.017-0.031-0.032-0.064-0.049-0.097c-0.045-0.084-0.089-0.169-0.134-0.252c-0.019-0.034-0.035-0.066-0.055-0.1
|
||||
c-0.039-0.072-0.078-0.142-0.118-0.212c-0.017-0.029-0.033-0.056-0.049-0.085c-0.045-0.079-0.091-0.155-0.138-0.232
|
||||
c-0.018-0.032-0.037-0.062-0.056-0.092c-0.01-0.017-0.02-0.034-0.029-0.05h-0.001c-2.669-4.321-7.447-7.2-12.898-7.2
|
||||
c-6.583,0-12.186,4.2-14.273,10.067c-0.007,0.013-0.011,0.027-0.015,0.04c-0.042,0.119-0.083,0.237-0.121,0.357
|
||||
c-0.01,0.031-0.021,0.061-0.031,0.093c-0.018,0.057-0.035,0.114-0.054,0.172c-0.016,0.055-0.033,0.111-0.049,0.167
|
||||
c-0.019,0.065-0.037,0.128-0.056,0.193c-0.019,0.07-0.037,0.141-0.057,0.211c-0.011,0.037-0.02,0.073-0.027,0.11
|
||||
c-0.026,0.102-0.052,0.204-0.075,0.305c-0.004,0.016-0.007,0.031-0.011,0.045c-0.023,0.104-0.045,0.206-0.067,0.31
|
||||
c-0.003,0.014-0.005,0.028-0.008,0.042c-0.025,0.118-0.047,0.236-0.068,0.355c0,0.001,0,0.001,0,0.002
|
||||
c-0.134,0.745-0.211,1.507-0.231,2.283v0.011c-0.004,0.128-0.006,0.257-0.006,0.385v0.001c0,0.006,0.001,0.011,0.001,0.016
|
||||
c0,0.074,0.001,0.146,0.001,0.22c0.019,1.212,0.18,2.39,0.469,3.519c0.001,0.005,0.001,0.011,0.004,0.016
|
||||
c0.029,0.114,0.06,0.23,0.093,0.344c0.004,0.014,0.008,0.027,0.012,0.042c0.027,0.097,0.055,0.192,0.084,0.288
|
||||
c0.007,0.021,0.013,0.043,0.02,0.063c0.03,0.095,0.06,0.19,0.093,0.286c0.013,0.04,0.026,0.079,0.041,0.119
|
||||
c0.021,0.063,0.042,0.125,0.064,0.188c0.026,0.073,0.054,0.147,0.082,0.22c0.016,0.043,0.031,0.087,0.048,0.129
|
||||
c0.023,0.06,0.047,0.119,0.07,0.178c0.006,0.015,0.012,0.028,0.018,0.042c0.052,0.127,0.104,0.254,0.158,0.38
|
||||
c0.005,0.008,0.008,0.019,0.013,0.028c0.758,1.731,1.829,3.289,3.14,4.605v2.281c0,0.129,0.083,0.233,0.182,0.233h3.116
|
||||
c0.172,0.097,0.344,0.189,0.519,0.279H9.329c0.006,0.004,0.013,0.007,0.02,0.01c0.007,0.005,0.015,0.008,0.021,0.012
|
||||
c0.098,0.049,0.192,0.097,0.291,0.144c0.01,0.005,0.021,0.011,0.031,0.016c0.099,0.047,0.197,0.094,0.296,0.138
|
||||
c0.019,0.008,0.036,0.016,0.055,0.025c0.099,0.044,0.197,0.088,0.298,0.13c0.012,0.005,0.024,0.01,0.037,0.016
|
||||
c0.092,0.039,0.185,0.077,0.278,0.114c0.017,0.006,0.034,0.014,0.052,0.021c0.095,0.037,0.192,0.074,0.288,0.109
|
||||
c0.028,0.01,0.055,0.02,0.082,0.03c0.094,0.034,0.188,0.067,0.283,0.1c0.027,0.009,0.055,0.018,0.081,0.027
|
||||
c0.076,0.024,0.151,0.05,0.226,0.074c0.034,0.011,0.066,0.022,0.099,0.031c0.088,0.028,0.176,0.054,0.264,0.079
|
||||
c0.043,0.013,0.085,0.025,0.129,0.037c0.072,0.02,0.146,0.041,0.219,0.06c0.058,0.016,0.116,0.03,0.176,0.045
|
||||
c0.051,0.013,0.102,0.026,0.152,0.038c0.079,0.019,0.158,0.036,0.238,0.055c0.05,0.011,0.098,0.021,0.147,0.033
|
||||
c0.06,0.012,0.12,0.024,0.181,0.036c0.034,0.007,0.067,0.013,0.103,0.02c0.104,0.021,0.209,0.041,0.315,0.057
|
||||
c0.029,0.006,0.059,0.011,0.088,0.015c0.123,0.021,0.247,0.04,0.371,0.056c0.013,0.003,0.028,0.005,0.041,0.007
|
||||
c0.07,0.009,0.14,0.019,0.211,0.027c0.017,0.001,0.033,0.004,0.051,0.006c0.124,0.015,0.246,0.028,0.37,0.038
|
||||
c0.028,0.004,0.057,0.006,0.085,0.008c0.11,0.011,0.223,0.019,0.334,0.025c0.034,0.002,0.066,0.005,0.099,0.007
|
||||
c0.062,0.003,0.125,0.007,0.186,0.01c0.057,0.003,0.113,0.005,0.168,0.006c0.075,0.004,0.149,0.006,0.226,0.008
|
||||
c0.067,0.001,0.135,0.002,0.203,0.002c0.038,0,0.078,0,0.116,0h0.016c0.102,0,0.203,0,0.304-0.003
|
||||
c0.023,0,0.045-0.001,0.068-0.001c1.296-0.032,2.552-0.225,3.747-0.563c0.008-0.002,0.015-0.004,0.022-0.007
|
||||
c0.116-0.032,0.23-0.065,0.346-0.102c0.001,0,0.001-0.001,0.001-0.001c0.104-0.03,0.207-0.064,0.309-0.099
|
||||
c0.025-0.009,0.052-0.017,0.076-0.025c0.092-0.031,0.183-0.063,0.273-0.096c0.039-0.014,0.077-0.028,0.115-0.042
|
||||
c0.067-0.024,0.135-0.05,0.2-0.077c0.063-0.023,0.126-0.048,0.188-0.073c0.045-0.019,0.089-0.036,0.133-0.055
|
||||
c0.104-0.043,0.206-0.087,0.31-0.132c0.016-0.006,0.031-0.013,0.046-0.02c0.065-0.029,0.129-0.058,0.192-0.087
|
||||
c0.007-0.002,0.011-0.004,0.015-0.007c0.375-0.173,0.743-0.361,1.101-0.563h2.555c0.101,0,0.185-0.104,0.185-0.233v-1.747
|
||||
c1.188-1.082,2.203-2.349,2.999-3.751c0,0,0,0,0.001,0c0.041-0.07,0.08-0.143,0.118-0.214c0.019-0.033,0.037-0.067,0.055-0.101
|
||||
c0.031-0.061,0.064-0.122,0.096-0.182c0.019-0.037,0.039-0.073,0.058-0.112c0.042-0.082,0.083-0.164,0.123-0.248
|
||||
c0.019-0.039,0.037-0.076,0.056-0.115c0.027-0.058,0.055-0.116,0.081-0.173c0.018-0.041,0.037-0.081,0.054-0.121
|
||||
c0.038-0.082,0.075-0.165,0.109-0.248c0.02-0.044,0.038-0.089,0.057-0.133c0.022-0.053,0.043-0.106,0.064-0.16
|
||||
c0.023-0.056,0.046-0.113,0.067-0.169c0.028-0.069,0.053-0.139,0.079-0.208c0.021-0.053,0.039-0.103,0.058-0.156
|
||||
c0.016-0.044,0.031-0.089,0.047-0.134c0.032-0.09,0.063-0.182,0.094-0.272c0.012-0.039,0.025-0.079,0.038-0.118
|
||||
c0.019-0.062,0.037-0.122,0.057-0.183c0.01-0.032,0.02-0.063,0.028-0.096c0.034-0.116,0.067-0.231,0.1-0.349
|
||||
c0.006-0.021,0.012-0.042,0.018-0.065c0.019-0.07,0.037-0.14,0.055-0.211c0.003-0.013,0.006-0.026,0.01-0.04
|
||||
c0.034-0.141,0.068-0.28,0.098-0.423c0.003-0.011,0.006-0.021,0.007-0.03c0.051-0.234,0.097-0.47,0.136-0.707
|
||||
c0-0.005,0-0.008,0.002-0.012c0.039-0.24,0.073-0.48,0.101-0.723c0.002-0.004,0.002-0.01,0.002-0.015
|
||||
c0.027-0.236,0.049-0.473,0.065-0.712c0-0.018,0.002-0.036,0.004-0.054c0.014-0.221,0.022-0.441,0.028-0.665
|
||||
c0-0.05,0.001-0.101,0.001-0.15c0-0.053,0.001-0.106,0.001-0.16v-0.007C31.402,16.128,31.401,16.111,31.401,16.093z
|
||||
M30.317,14.826c0.013,0.242,0.027,0.484,0.041,0.726c-0.079,0.005-0.16,0.009-0.24,0.015c-0.016-0.27-0.032-0.54-0.048-0.81
|
||||
c0.079-0.005,0.159-0.01,0.24-0.015C30.313,14.77,30.314,14.799,30.317,14.826z M30.117,13.43
|
||||
c0.044,0.268,0.085,0.535,0.129,0.802c-0.079,0.013-0.158,0.025-0.238,0.038c-0.043-0.267-0.086-0.533-0.13-0.8
|
||||
C29.957,13.456,30.037,13.443,30.117,13.43z M29.801,12.144c0.07,0.261,0.141,0.522,0.21,0.784
|
||||
c-0.078,0.021-0.155,0.041-0.233,0.062c-0.068-0.261-0.14-0.522-0.21-0.782C29.646,12.186,29.725,12.165,29.801,12.144z
|
||||
M29.367,10.893c0.095,0.253,0.191,0.505,0.286,0.759c-0.075,0.028-0.151,0.058-0.227,0.085c-0.096-0.253-0.19-0.507-0.287-0.759
|
||||
C29.217,10.949,29.292,10.921,29.367,10.893z M28.837,9.686c0.063,0.146,0.126,0.293,0.189,0.44
|
||||
c0.045,0.101,0.089,0.203,0.132,0.304c-0.073,0.032-0.147,0.064-0.222,0.096c-0.036-0.084-0.073-0.169-0.109-0.253
|
||||
c-0.071-0.164-0.143-0.327-0.214-0.491C28.688,9.75,28.762,9.717,28.837,9.686z M28.173,8.537
|
||||
c0.132,0.236,0.263,0.473,0.394,0.709c-0.071,0.038-0.141,0.079-0.212,0.118c-0.133-0.237-0.263-0.473-0.393-0.709
|
||||
C28.03,8.615,28.102,8.576,28.173,8.537z M27.405,7.456c0.157,0.227,0.313,0.455,0.47,0.683c-0.063,0.043-0.127,0.087-0.19,0.131
|
||||
h-0.014c-0.155-0.225-0.311-0.451-0.466-0.677C27.271,7.547,27.339,7.501,27.405,7.456z M26.541,6.451
|
||||
c0.178,0.211,0.354,0.423,0.533,0.634c-0.063,0.053-0.124,0.104-0.187,0.156c-0.177-0.211-0.354-0.423-0.533-0.634
|
||||
C26.416,6.555,26.479,6.503,26.541,6.451z M25.586,5.531c0.198,0.194,0.396,0.387,0.592,0.581
|
||||
c-0.058,0.058-0.113,0.115-0.17,0.172c-0.196-0.193-0.395-0.386-0.592-0.58C25.474,5.646,25.529,5.588,25.586,5.531z
|
||||
M24.551,4.703c0.214,0.175,0.429,0.348,0.645,0.522c-0.052,0.063-0.102,0.126-0.153,0.188c-0.215-0.174-0.43-0.347-0.644-0.522
|
||||
C24.448,4.83,24.499,4.766,24.551,4.703z M23.442,3.977c0.23,0.153,0.461,0.305,0.691,0.458C24.088,4.502,24.044,4.57,24,4.636
|
||||
c-0.23-0.152-0.461-0.304-0.692-0.457C23.354,4.111,23.397,4.044,23.442,3.977z M22.271,3.356c0.245,0.13,0.488,0.26,0.732,0.39
|
||||
c-0.038,0.07-0.077,0.143-0.114,0.214c-0.244-0.13-0.488-0.26-0.73-0.39C22.195,3.5,22.232,3.428,22.271,3.356z M21.045,2.852
|
||||
c0.256,0.104,0.512,0.209,0.767,0.315c-0.029,0.074-0.061,0.149-0.092,0.223c-0.256-0.104-0.511-0.209-0.767-0.315
|
||||
C20.984,3,21.016,2.926,21.045,2.852z M19.778,2.462c0.265,0.079,0.53,0.159,0.794,0.238c-0.023,0.077-0.047,0.155-0.07,0.233
|
||||
c-0.264-0.08-0.527-0.16-0.793-0.238C19.732,2.617,19.754,2.539,19.778,2.462z M18.479,2.195c0.272,0.052,0.544,0.106,0.814,0.158
|
||||
c-0.016,0.079-0.03,0.16-0.046,0.238c-0.272-0.052-0.543-0.105-0.813-0.157C18.451,2.354,18.465,2.275,18.479,2.195z
|
||||
M17.163,2.051l0.826,0.076l-0.022,0.241l-0.826-0.075L17.163,2.051z M16.667,2.021l0.002,0.244L15.84,2.271l-0.001-0.242
|
||||
L16.667,2.021z M15.351,2.064c0.004,0.081,0.009,0.161,0.013,0.243c-0.274,0.016-0.551,0.032-0.827,0.049
|
||||
c-0.004-0.081-0.009-0.161-0.015-0.242C14.798,2.097,15.073,2.081,15.351,2.064z M14.033,2.208c0.013,0.08,0.026,0.16,0.039,0.239
|
||||
c-0.273,0.044-0.547,0.09-0.818,0.134c-0.012-0.08-0.026-0.16-0.038-0.241C13.487,2.296,13.761,2.251,14.033,2.208z M12.735,2.473
|
||||
c0.022,0.078,0.044,0.157,0.063,0.234c-0.267,0.072-0.533,0.145-0.801,0.215c-0.021-0.077-0.042-0.156-0.063-0.234
|
||||
C12.202,2.616,12.469,2.545,12.735,2.473z M11.47,2.861c0.029,0.075,0.058,0.151,0.086,0.228
|
||||
c-0.259,0.096-0.517,0.194-0.776,0.291c-0.028-0.075-0.056-0.151-0.085-0.227C10.953,3.056,11.212,2.958,11.47,2.861z
|
||||
M10.246,3.366c0.035,0.073,0.072,0.146,0.108,0.217C10.105,3.706,9.858,3.829,9.61,3.951C9.574,3.879,9.539,3.806,9.503,3.734
|
||||
C9.751,3.611,9.999,3.488,10.246,3.366z M9.076,3.986c0.041,0.068,0.085,0.136,0.127,0.205c-0.234,0.146-0.47,0.292-0.704,0.437
|
||||
C8.455,4.56,8.414,4.491,8.371,4.422C8.605,4.276,8.841,4.131,9.076,3.986z M7.968,4.711c0.049,0.064,0.099,0.128,0.147,0.192
|
||||
c-0.221,0.168-0.44,0.335-0.66,0.503C7.406,5.342,7.357,5.277,7.309,5.213C7.529,5.046,7.748,4.879,7.968,4.711z M6.933,5.537
|
||||
c0.056,0.06,0.109,0.12,0.165,0.178C6.895,5.902,6.691,6.09,6.489,6.278C6.435,6.218,6.38,6.16,6.324,6.1
|
||||
C6.526,5.912,6.73,5.725,6.933,5.537z M5.979,6.456C6.04,6.51,6.101,6.563,6.16,6.618C5.977,6.824,5.792,7.03,5.608,7.235
|
||||
C5.548,7.181,5.487,7.128,5.428,7.074C5.611,6.869,5.796,6.662,5.979,6.456z M5.116,7.459c0.064,0.048,0.13,0.095,0.195,0.144
|
||||
C5.147,7.827,4.983,8.048,4.82,8.272C4.755,8.224,4.688,8.175,4.625,8.127C4.788,7.904,4.951,7.683,5.116,7.459z M4.349,8.541
|
||||
c0.068,0.041,0.139,0.082,0.208,0.124C4.415,8.902,4.274,9.139,4.133,9.376c-0.07-0.042-0.14-0.083-0.209-0.124
|
||||
C4.066,9.015,4.207,8.778,4.349,8.541z M3.68,9.705c0.072,0.032,0.144,0.068,0.217,0.103c-0.114,0.244-0.229,0.488-0.346,0.732
|
||||
c-0.072-0.033-0.146-0.068-0.219-0.103C3.448,10.193,3.563,9.947,3.68,9.705z M2.996,11.275c0.05-0.12,0.099-0.24,0.148-0.362
|
||||
c0.07,0.027,0.141,0.052,0.21,0.076c-0.043,0.125-0.088,0.249-0.132,0.374c-0.054,0.13-0.108,0.26-0.16,0.39
|
||||
c-0.069-0.029-0.138-0.057-0.206-0.085C2.902,11.537,2.95,11.406,2.996,11.275z M2.701,12.203
|
||||
c0.004-0.014,0.008-0.029,0.012-0.042c0.079,0.023,0.156,0.047,0.233,0.07c-0.001,0.002-0.002,0.004-0.002,0.008
|
||||
c-0.077,0.256-0.155,0.512-0.232,0.768c-0.077-0.022-0.155-0.046-0.231-0.069C2.554,12.693,2.628,12.448,2.701,12.203z
|
||||
M2.401,13.446c0.079,0.016,0.157,0.032,0.236,0.046c-0.052,0.266-0.104,0.531-0.156,0.796c-0.079-0.016-0.158-0.031-0.237-0.045
|
||||
C2.297,13.977,2.349,13.712,2.401,13.446z M2.208,14.756c0.08,0.008,0.161,0.015,0.241,0.022
|
||||
c-0.024,0.269-0.051,0.539-0.075,0.806c-0.08-0.006-0.159-0.014-0.239-0.021C2.158,15.294,2.184,15.026,2.208,14.756z
|
||||
M2.146,16.891c-0.003-0.077-0.003-0.154-0.004-0.23c0-0.193-0.003-0.387-0.004-0.582c0.08,0,0.161-0.001,0.241-0.001
|
||||
c0.001,0.173,0.003,0.347,0.005,0.52c0.001,0.097,0.002,0.194,0.002,0.292C2.307,16.89,2.227,16.89,2.146,16.891z M2.278,18.208
|
||||
c-0.029-0.268-0.059-0.538-0.087-0.806c0.079-0.009,0.158-0.017,0.238-0.026c0.03,0.268,0.06,0.537,0.09,0.806
|
||||
C2.439,18.19,2.358,18.201,2.278,18.208z M2.364,18.715c0.078-0.016,0.157-0.034,0.236-0.049c0.057,0.264,0.112,0.527,0.17,0.792
|
||||
c-0.079,0.017-0.158,0.034-0.237,0.05C2.478,19.245,2.421,18.979,2.364,18.715z M2.661,20.007
|
||||
c0.076-0.024,0.153-0.048,0.229-0.073c0.083,0.258,0.166,0.515,0.249,0.771c-0.077,0.025-0.154,0.05-0.23,0.075
|
||||
C2.825,20.522,2.744,20.265,2.661,20.007z M3.398,22.005c-0.052-0.123-0.104-0.246-0.158-0.368
|
||||
c-0.048-0.126-0.096-0.253-0.143-0.379c0.067-0.03,0.136-0.059,0.204-0.089c0.055,0.126,0.108,0.251,0.163,0.376
|
||||
c0.049,0.127,0.096,0.254,0.144,0.381C3.539,21.952,3.47,21.979,3.398,22.005z M3.991,23.19c-0.12-0.243-0.239-0.485-0.359-0.729
|
||||
c0.072-0.036,0.145-0.071,0.218-0.107c0.118,0.242,0.239,0.486,0.357,0.728C4.135,23.118,4.063,23.153,3.991,23.19z M4.715,24.322
|
||||
c-0.145-0.236-0.291-0.471-0.437-0.706c0.068-0.042,0.138-0.085,0.207-0.128c0.146,0.235,0.29,0.471,0.437,0.705
|
||||
C4.854,24.235,4.784,24.278,4.715,24.322z M5.514,25.335c-0.161-0.209-0.322-0.42-0.481-0.63c0.064-0.05,0.128-0.098,0.192-0.147
|
||||
c0.096,0.126,0.191,0.252,0.289,0.378V25.335z M12.12,29.622h-0.02l-0.009,0.029c-0.007-0.002-0.012-0.005-0.019-0.007
|
||||
l-0.061-0.022h-0.002c-0.228-0.081-0.456-0.162-0.685-0.243c0.004-0.012,0.008-0.024,0.014-0.037h0.607
|
||||
c0.081,0.029,0.161,0.058,0.241,0.086C12.167,29.494,12.143,29.559,12.12,29.622z M13.375,29.979
|
||||
c-0.161-0.04-0.323-0.079-0.485-0.12c-0.101-0.024-0.202-0.05-0.302-0.075c0.02-0.078,0.039-0.156,0.058-0.235
|
||||
c0.263,0.065,0.525,0.129,0.788,0.195C13.413,29.823,13.394,29.901,13.375,29.979z M14.684,30.185
|
||||
c-0.23-0.033-0.462-0.066-0.693-0.099c-0.036-0.005-0.072-0.011-0.109-0.016c0.012-0.08,0.023-0.16,0.034-0.239
|
||||
c0.044,0.005,0.087,0.012,0.13,0.018c0.224,0.031,0.449,0.064,0.674,0.097C14.708,30.025,14.696,30.105,14.684,30.185z
|
||||
M16.007,30.267c-0.115-0.004-0.23-0.008-0.345-0.013l-0.466-0.021l0.009-0.241c0.162,0.006,0.323,0.013,0.483,0.02l0.328,0.014
|
||||
C16.013,30.106,16.01,30.187,16.007,30.267z M16.948,30.25c-0.142,0.001-0.286,0.003-0.429,0.004l-0.013-0.222l0.434-0.026
|
||||
c0.129-0.001,0.256-0.002,0.383-0.003c0.001,0.075,0.001,0.149,0.003,0.224L16.948,30.25z M18.396,30.108
|
||||
c-0.188,0.02-0.374,0.041-0.561,0.061c-0.01-0.08-0.018-0.161-0.026-0.241c0.208-0.023,0.418-0.047,0.627-0.069
|
||||
c0.06-0.006,0.118-0.013,0.179-0.019c0.01,0.08,0.018,0.16,0.026,0.24C18.562,30.09,18.479,30.099,18.396,30.108z M19.72,29.841
|
||||
c-0.192,0.039-0.384,0.081-0.576,0.122c-0.018-0.079-0.034-0.157-0.051-0.235l0.482-0.105h-0.002
|
||||
c0.11-0.023,0.221-0.046,0.33-0.07c0.006,0.024,0.01,0.046,0.016,0.07H19.9l0.036,0.171C19.865,29.809,19.793,29.825,19.72,29.841
|
||||
z M20.427,29.634c-0.026-0.076-0.05-0.154-0.075-0.231c0.063-0.02,0.127-0.04,0.189-0.06h0.662
|
||||
c0.004,0.014,0.008,0.027,0.012,0.039C20.952,29.465,20.689,29.55,20.427,29.634z M26.254,23.745h-0.097
|
||||
c0.071-0.092,0.14-0.186,0.21-0.28c0.017-0.022,0.031-0.044,0.047-0.066c0.014-0.018,0.026-0.036,0.04-0.056
|
||||
c0.044-0.063,0.088-0.127,0.132-0.191c0.009-0.013,0.019-0.026,0.026-0.039c0.106-0.159,0.211-0.32,0.31-0.484
|
||||
c0.007-0.011,0.013-0.021,0.021-0.032c0.042-0.07,0.084-0.141,0.126-0.213c0.009-0.016,0.018-0.031,0.025-0.047
|
||||
c0.042-0.072,0.083-0.146,0.124-0.219c0.005-0.01,0.011-0.02,0.015-0.029c0.092-0.169,0.18-0.34,0.264-0.513
|
||||
c0.008-0.016,0.015-0.032,0.022-0.048c0.033-0.068,0.065-0.136,0.097-0.206c0.01-0.022,0.02-0.044,0.03-0.067
|
||||
c0.03-0.067,0.061-0.134,0.088-0.203c0.009-0.02,0.019-0.04,0.026-0.058c0.036-0.086,0.071-0.173,0.105-0.259
|
||||
c0.006-0.015,0.011-0.029,0.018-0.044c0.027-0.069,0.056-0.141,0.08-0.21c0.013-0.034,0.026-0.069,0.038-0.104
|
||||
c0.018-0.051,0.036-0.102,0.054-0.152c0.014-0.041,0.027-0.082,0.041-0.122c0.016-0.045,0.03-0.091,0.046-0.136
|
||||
c0.013-0.043,0.027-0.088,0.041-0.132c0.011-0.036,0.022-0.071,0.031-0.106c0.03-0.101,0.06-0.203,0.087-0.305
|
||||
c0.008-0.028,0.016-0.053,0.022-0.08c0.016-0.06,0.031-0.121,0.045-0.181c0.007-0.026,0.014-0.05,0.019-0.075
|
||||
c0.016-0.064,0.031-0.127,0.046-0.193c0.003-0.014,0.007-0.03,0.01-0.044c0.068-0.308,0.125-0.619,0.169-0.933
|
||||
c0.001-0.006,0.002-0.012,0.002-0.019c0.058-0.398,0.094-0.803,0.111-1.211c0.001-0.021,0.001-0.042,0.003-0.062
|
||||
c0.002-0.068,0.005-0.134,0.005-0.201c0.002-0.031,0.002-0.061,0.003-0.089c0.001-0.063,0.001-0.124,0.001-0.186v-0.042
|
||||
c0-0.088-0.001-0.177-0.004-0.266c-0.001-0.06-0.004-0.121-0.007-0.18c-0.001-0.038-0.001-0.078-0.004-0.116
|
||||
c0-0.004-0.001-0.01-0.001-0.014c-0.002-0.046-0.004-0.091-0.008-0.137c-0.003-0.048-0.004-0.095-0.008-0.14
|
||||
c-0.004-0.058-0.008-0.114-0.015-0.17c-0.002-0.034-0.005-0.066-0.008-0.1c-0.006-0.062-0.012-0.126-0.02-0.188
|
||||
c-0.001-0.018-0.005-0.036-0.006-0.054c-0.025-0.227-0.057-0.453-0.094-0.678c-0.004-0.013-0.004-0.025-0.008-0.038
|
||||
c-0.012-0.071-0.023-0.141-0.037-0.208c-0.004-0.019-0.007-0.039-0.01-0.057c-0.014-0.069-0.027-0.138-0.043-0.206
|
||||
c-0.001-0.012-0.005-0.023-0.007-0.036c-0.045-0.212-0.096-0.421-0.151-0.629c-0.01-0.029-0.018-0.06-0.025-0.091
|
||||
c-0.015-0.052-0.03-0.105-0.045-0.159c-0.012-0.036-0.023-0.074-0.034-0.112c-0.015-0.048-0.029-0.096-0.045-0.144
|
||||
c-0.016-0.049-0.031-0.096-0.046-0.143c-0.013-0.04-0.024-0.078-0.038-0.116c-0.028-0.084-0.058-0.166-0.087-0.248
|
||||
c-0.01-0.031-0.021-0.061-0.033-0.089c-0.022-0.061-0.044-0.121-0.067-0.18c-0.012-0.029-0.023-0.059-0.035-0.087
|
||||
c-0.025-0.063-0.052-0.127-0.078-0.19c-0.01-0.023-0.019-0.045-0.027-0.066c-0.075-0.178-0.155-0.354-0.238-0.527
|
||||
c-0.003-0.005-0.005-0.011-0.009-0.016c-0.04-0.083-0.079-0.163-0.12-0.244c-0.007-0.011-0.012-0.021-0.016-0.032
|
||||
c-0.043-0.081-0.086-0.162-0.129-0.242c-0.002-0.005-0.004-0.008-0.006-0.011c-0.143-0.264-0.295-0.52-0.455-0.77
|
||||
c-0.003-0.004-0.004-0.008-0.008-0.011c-0.213-0.333-0.441-0.654-0.684-0.963c-0.006-0.007-0.01-0.014-0.016-0.019
|
||||
c-0.021-0.026-0.041-0.054-0.063-0.08C25.715,7.99,25.406,7.646,25.08,7.32c-2.259-2.26-5.379-3.656-8.826-3.656
|
||||
S9.687,5.061,7.427,7.32C6.819,7.929,6.273,8.601,5.8,9.324c0,0.001,0,0.002-0.003,0.003C5.756,9.391,5.715,9.455,5.674,9.52
|
||||
C5.672,9.522,5.67,9.526,5.668,9.53c-0.166,0.266-0.322,0.537-0.467,0.814c-0.003,0.004-0.006,0.009-0.007,0.012
|
||||
c-0.037,0.068-0.07,0.136-0.105,0.205c-0.002,0.003-0.004,0.008-0.006,0.012c-0.104,0.207-0.201,0.417-0.293,0.63
|
||||
c-0.002,0.005-0.006,0.011-0.008,0.017C4.756,11.28,4.73,11.34,4.704,11.403c-0.008,0.021-0.017,0.044-0.027,0.067
|
||||
c-0.021,0.057-0.045,0.114-0.067,0.171c-0.009,0.026-0.02,0.053-0.029,0.081c-0.042,0.108-0.083,0.22-0.121,0.331
|
||||
c-0.008,0.022-0.016,0.043-0.022,0.063c-0.015,0.042-0.028,0.084-0.042,0.126c-0.015,0.047-0.03,0.094-0.045,0.141
|
||||
c-0.012,0.04-0.025,0.079-0.037,0.119c-0.017,0.054-0.032,0.109-0.049,0.165c-0.009,0.032-0.02,0.064-0.028,0.098
|
||||
c-0.022,0.081-0.044,0.16-0.065,0.241c-0.002,0.009-0.005,0.017-0.006,0.025c-0.025,0.096-0.048,0.19-0.07,0.287
|
||||
c-0.004,0.012-0.005,0.023-0.008,0.034c-0.02,0.085-0.039,0.172-0.057,0.259c-0.002,0.014-0.006,0.027-0.008,0.042
|
||||
c-0.021,0.093-0.038,0.186-0.054,0.278c0,0.002-0.001,0.005-0.002,0.008c-0.055,0.307-0.098,0.616-0.13,0.929
|
||||
c0,0.001-0.001,0.002-0.001,0.003c-0.031,0.31-0.051,0.622-0.059,0.938c0,0.013,0,0.025-0.001,0.039
|
||||
c-0.002,0.085-0.004,0.172-0.004,0.257v0.077c0,0.046,0,0.093,0.002,0.14c0.001,0.043,0.001,0.088,0.003,0.133
|
||||
c0,0.03,0.001,0.062,0.002,0.094c0.001,0.059,0.004,0.119,0.007,0.179c0,0.007,0.001,0.014,0.001,0.02
|
||||
c0,0.008,0.001,0.015,0.002,0.022c0.004,0.099,0.01,0.198,0.018,0.296v0.006c0.055,0.743,0.174,1.469,0.354,2.171
|
||||
c0,0.003,0.001,0.006,0.001,0.011c0.075,0.291,0.16,0.579,0.255,0.862c0.006,0.021,0.014,0.042,0.022,0.062
|
||||
c0.022,0.068,0.045,0.135,0.069,0.202c0.011,0.029,0.021,0.056,0.03,0.084c0.024,0.063,0.048,0.126,0.071,0.188
|
||||
c0.011,0.028,0.021,0.053,0.032,0.08c0.031,0.08,0.063,0.162,0.098,0.242c0.017,0.039,0.032,0.079,0.051,0.117
|
||||
c0.018,0.044,0.037,0.087,0.056,0.131c0.021,0.045,0.041,0.091,0.063,0.136c0.016,0.035,0.031,0.069,0.049,0.104
|
||||
c0.022,0.048,0.046,0.099,0.069,0.146c0.012,0.025,0.025,0.05,0.038,0.077c0.091,0.182,0.184,0.361,0.284,0.538
|
||||
c0.01,0.019,0.021,0.038,0.03,0.057c0.031,0.056,0.064,0.112,0.097,0.168c0.01,0.017,0.021,0.035,0.031,0.051
|
||||
C5.656,22.751,5.815,23,5.981,23.24c0.012,0.018,0.023,0.034,0.036,0.049c0.035,0.054,0.072,0.105,0.11,0.157
|
||||
c0.004,0.007,0.008,0.012,0.013,0.019h0.001c0.067,0.094,0.137,0.188,0.208,0.28H5.695c-0.046,0-0.09,0.023-0.121,0.06
|
||||
c-0.081-0.112-0.16-0.225-0.237-0.34c-0.079-0.12-0.157-0.239-0.232-0.36c-0.012-0.02-0.025-0.039-0.037-0.06
|
||||
c-0.033-0.053-0.066-0.108-0.101-0.164c-0.012-0.019-0.022-0.039-0.034-0.058c-0.102-0.173-0.2-0.349-0.295-0.527
|
||||
c-0.015-0.029-0.031-0.057-0.045-0.086c-0.027-0.052-0.052-0.101-0.078-0.15c-0.018-0.035-0.035-0.069-0.052-0.105
|
||||
c-0.035-0.071-0.069-0.142-0.103-0.213c-0.023-0.051-0.048-0.101-0.07-0.153c-0.02-0.041-0.038-0.081-0.055-0.121
|
||||
c-0.022-0.05-0.044-0.098-0.063-0.148c-0.018-0.037-0.033-0.073-0.049-0.112C4.094,21.139,4.066,21.07,4.039,21
|
||||
c-0.008-0.018-0.014-0.035-0.021-0.053c-0.036-0.089-0.069-0.179-0.102-0.27c-0.01-0.022-0.017-0.043-0.025-0.066
|
||||
c-0.028-0.076-0.053-0.154-0.081-0.231c-0.006-0.017-0.011-0.034-0.017-0.051c-0.066-0.197-0.128-0.397-0.185-0.598
|
||||
c-0.001-0.002-0.003-0.006-0.003-0.008c-0.264-0.936-0.426-1.914-0.477-2.927c-0.001-0.014-0.001-0.028-0.002-0.043
|
||||
c-0.003-0.061-0.005-0.122-0.007-0.184c-0.001-0.031-0.002-0.063-0.003-0.095c-0.001-0.044-0.003-0.09-0.004-0.135v-0.224
|
||||
c0.001-0.893,0.093-1.766,0.266-2.607c0.001-0.009,0.002-0.018,0.004-0.027c0.02-0.091,0.039-0.183,0.061-0.273
|
||||
c0.003-0.016,0.007-0.032,0.011-0.047c0.046-0.193,0.095-0.386,0.147-0.575c0.008-0.031,0.019-0.062,0.027-0.095
|
||||
c0.017-0.06,0.035-0.121,0.054-0.181c0.01-0.038,0.022-0.074,0.034-0.111c0.02-0.063,0.04-0.125,0.062-0.189
|
||||
c0.021-0.063,0.042-0.126,0.064-0.19c0.015-0.042,0.03-0.085,0.045-0.127c0.019-0.051,0.037-0.103,0.057-0.155
|
||||
c0.012-0.032,0.025-0.065,0.037-0.096c0.021-0.056,0.044-0.112,0.065-0.168c0.002-0.004,0.004-0.009,0.006-0.013
|
||||
c0.053-0.134,0.108-0.268,0.167-0.399c0.006-0.012,0.011-0.026,0.017-0.038c0.027-0.063,0.058-0.127,0.087-0.191
|
||||
c0.007-0.013,0.012-0.026,0.019-0.039c0.097-0.205,0.196-0.408,0.303-0.608C4.646,9.982,4.647,9.98,4.649,9.977
|
||||
C4.684,9.91,4.721,9.844,4.757,9.778C4.76,9.772,4.764,9.766,4.767,9.76c0.075-0.134,0.151-0.266,0.23-0.398
|
||||
C5.55,8.447,6.211,7.605,6.962,6.855c2.378-2.379,5.663-3.851,9.292-3.851c3.63,0,6.915,1.471,9.292,3.851
|
||||
c0.817,0.816,1.528,1.741,2.107,2.75c0.001,0.001,0.001,0.001,0.001,0.002c0.156,0.271,0.303,0.547,0.438,0.829
|
||||
c0.005,0.009,0.01,0.018,0.014,0.026c0.088,0.185,0.173,0.371,0.254,0.561c0.004,0.011,0.009,0.022,0.013,0.034
|
||||
c0.033,0.078,0.065,0.157,0.097,0.236c0.009,0.022,0.019,0.046,0.028,0.069c0.028,0.075,0.058,0.148,0.084,0.223
|
||||
c0.007,0.018,0.015,0.038,0.021,0.058c0.033,0.086,0.063,0.175,0.094,0.263c0.011,0.034,0.022,0.067,0.033,0.101
|
||||
c0.02,0.057,0.037,0.112,0.056,0.168c0.013,0.042,0.025,0.083,0.039,0.126c0.015,0.049,0.028,0.098,0.044,0.146
|
||||
c0.021,0.074,0.042,0.149,0.063,0.225c0.013,0.048,0.027,0.097,0.039,0.147c0.016,0.057,0.029,0.114,0.044,0.17
|
||||
c0.008,0.034,0.016,0.066,0.023,0.1c0.015,0.06,0.027,0.119,0.042,0.178c0.005,0.027,0.012,0.053,0.017,0.08
|
||||
c0.045,0.208,0.086,0.418,0.122,0.631c0.003,0.021,0.007,0.043,0.009,0.065c0.011,0.067,0.022,0.134,0.032,0.203
|
||||
c0.004,0.022,0.006,0.043,0.01,0.066c0.028,0.208,0.052,0.416,0.072,0.627c0.003,0.038,0.007,0.076,0.009,0.114
|
||||
c0.006,0.055,0.01,0.109,0.013,0.161c0.004,0.054,0.007,0.108,0.011,0.162c0.002,0.04,0.006,0.083,0.007,0.125
|
||||
c0.004,0.047,0.004,0.094,0.005,0.141c0.003,0.062,0.007,0.124,0.007,0.186c0.004,0.094,0.004,0.187,0.004,0.281v0.219
|
||||
c-0.001,0.036-0.003,0.071-0.003,0.107c-0.001,0.065-0.003,0.131-0.005,0.196c0,0.022-0.003,0.043-0.003,0.065
|
||||
c-0.01,0.235-0.025,0.469-0.047,0.7c0,0.005,0,0.008-0.001,0.011c-0.007,0.08-0.017,0.16-0.024,0.239
|
||||
c-0.001,0.005-0.003,0.009-0.003,0.014c-0.026,0.238-0.061,0.475-0.1,0.71c-0.003,0.007-0.003,0.014-0.004,0.02
|
||||
c-0.013,0.075-0.026,0.147-0.04,0.222c-0.002,0.014-0.007,0.026-0.008,0.04c-0.042,0.212-0.087,0.424-0.139,0.631
|
||||
c-0.006,0.027-0.013,0.056-0.02,0.083c-0.015,0.057-0.03,0.114-0.045,0.171c-0.01,0.036-0.02,0.073-0.03,0.108
|
||||
c-0.014,0.053-0.027,0.104-0.042,0.156c-0.024,0.08-0.048,0.16-0.072,0.24c-0.013,0.04-0.025,0.078-0.037,0.117
|
||||
c-0.019,0.054-0.034,0.107-0.052,0.16c-0.015,0.038-0.027,0.075-0.04,0.115c-0.021,0.06-0.042,0.118-0.063,0.177
|
||||
c-0.01,0.031-0.021,0.061-0.031,0.089c-0.033,0.089-0.066,0.177-0.101,0.264c-0.006,0.017-0.014,0.034-0.021,0.049
|
||||
c-0.029,0.077-0.061,0.15-0.092,0.226c-0.009,0.022-0.02,0.045-0.028,0.068c-0.033,0.077-0.067,0.152-0.101,0.229
|
||||
c-0.006,0.012-0.011,0.024-0.016,0.037c-0.043,0.094-0.086,0.186-0.131,0.278c0,0.001-0.002,0.002-0.002,0.003
|
||||
c-0.043,0.088-0.086,0.176-0.13,0.263c-0.008,0.014-0.015,0.026-0.02,0.04c-0.045,0.085-0.09,0.17-0.135,0.254
|
||||
c-0.003,0.004-0.003,0.006-0.005,0.008c-0.098,0.181-0.201,0.358-0.307,0.534c-0.006,0.01-0.011,0.019-0.017,0.029
|
||||
c-0.314,0.516-0.664,1.008-1.045,1.476v-0.474C26.438,23.849,26.354,23.745,26.254,23.745z M26.438,25.926V25.58
|
||||
c0.015-0.015,0.028-0.031,0.044-0.045c0.059,0.056,0.115,0.113,0.173,0.169C26.582,25.777,26.51,25.852,26.438,25.926z
|
||||
M26.983,25.332c-0.063-0.051-0.127-0.102-0.189-0.153c0.175-0.213,0.349-0.43,0.522-0.643c0.063,0.05,0.126,0.102,0.188,0.152
|
||||
C27.331,24.901,27.157,25.116,26.983,25.332z M27.797,24.287c-0.067-0.044-0.135-0.089-0.201-0.134
|
||||
c0.152-0.231,0.305-0.46,0.457-0.688h0.004c0.066,0.043,0.132,0.088,0.199,0.132C28.104,23.827,27.95,24.057,27.797,24.287z
|
||||
M28.512,23.171c-0.07-0.038-0.141-0.076-0.214-0.114c0.128-0.238,0.254-0.477,0.382-0.716c0.071,0.038,0.143,0.075,0.215,0.114
|
||||
C28.766,22.694,28.639,22.932,28.512,23.171z M29.119,21.994c-0.074-0.03-0.148-0.062-0.223-0.092
|
||||
c0.103-0.25,0.205-0.5,0.309-0.751c0.074,0.031,0.149,0.063,0.224,0.093C29.326,21.494,29.222,21.744,29.119,21.994z
|
||||
M29.697,20.469c-0.034,0.098-0.07,0.196-0.105,0.294c-0.075-0.028-0.152-0.055-0.228-0.082c0.041-0.115,0.081-0.229,0.122-0.343
|
||||
c0.05-0.141,0.1-0.28,0.149-0.421c0.077,0.028,0.152,0.054,0.229,0.082C29.808,20.155,29.752,20.312,29.697,20.469z
|
||||
M29.977,19.449c-0.004,0.015-0.007,0.03-0.011,0.044c-0.078-0.019-0.156-0.038-0.234-0.058c0.004-0.016,0.007-0.03,0.011-0.045
|
||||
c0.061-0.247,0.123-0.495,0.185-0.742c0.077,0.02,0.155,0.04,0.234,0.059C30.1,18.954,30.038,19.201,29.977,19.449z M30.22,18.194
|
||||
c-0.081-0.012-0.16-0.023-0.24-0.035v-0.001c0.038-0.268,0.076-0.535,0.116-0.801c0.079,0.011,0.158,0.023,0.238,0.034
|
||||
C30.295,17.659,30.258,17.926,30.22,18.194z M30.359,16.658c-0.003,0.073-0.007,0.146-0.01,0.219
|
||||
c-0.08-0.004-0.161-0.006-0.241-0.01c0.003-0.075,0.006-0.15,0.009-0.224c0.009-0.195,0.017-0.392,0.024-0.587
|
||||
c0.082,0.003,0.161,0.007,0.241,0.01C30.375,16.262,30.367,16.459,30.359,16.658z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M4.382,16.699c0-6.9,5.595-12.495,12.494-12.495c3.012,0,5.773,1.065,7.931,2.839c-2.235-2.099-5.243-3.385-8.551-3.385
|
||||
c-6.901,0-12.495,5.594-12.495,12.495c0,3.89,1.777,7.365,4.564,9.656C5.898,23.529,4.382,20.291,4.382,16.699z"/>
|
||||
<g>
|
||||
<rect x="24.91" y="21.131" width="0.692" height="0.637"/>
|
||||
<path d="M26.56,13.431l-0.288-0.009L15.666,6.093c-0.016-0.011-0.035-0.017-0.056-0.017c-0.03,0-0.061,0.015-0.079,0.042
|
||||
l-0.017,0.024c-0.006-0.001-0.011-0.001-0.015-0.001c-0.023,0-0.047,0.008-0.064,0.025l-8.316,7.341H6.968
|
||||
c-0.054,0-0.098,0.044-0.098,0.098v0.122v0.351v0.91c0,0.054,0.044,0.098,0.098,0.098h1.399c0.054,0,0.098-0.044,0.098-0.098
|
||||
v-0.423h2.311v0.374c0,0.054,0.043,0.098,0.098,0.098h2.146c0.054,0,0.098-0.043,0.098-0.098v-0.374h1.399v0.317
|
||||
c0,0.054,0.044,0.098,0.098,0.098h0.293v12.436c0,0.054,0.044,0.098,0.098,0.098h1.644c0.054,0,0.098-0.044,0.098-0.098V14.979
|
||||
h0.644c0.029,0,0.057-0.013,0.075-0.035l0.319-0.382l5.052-0.166v6.102h-3.428v1.796h7.137v-1.796h-3.362v-6.113l3.377-0.111
|
||||
c0.053-0.001,0.095-0.044,0.095-0.097v-0.648C26.654,13.476,26.612,13.432,26.56,13.431z M21.352,21.748
|
||||
c-0.014,0.122-0.122,0.217-0.254,0.217h-0.644c-0.14,0-0.252-0.109-0.252-0.244v-0.528c0-0.134,0.112-0.244,0.252-0.244h0.644
|
||||
c0.13,0,0.237,0.094,0.252,0.214v0.013h-0.866v0.558h0.868V21.748z M22.731,21.722c0,0.134-0.115,0.244-0.255,0.244h-0.674
|
||||
c-0.132,0-0.24-0.097-0.254-0.22h0.924v-0.181l-0.672,0c-0.132,0-0.239-0.096-0.253-0.219v-0.151c0-0.134,0.114-0.244,0.255-0.244
|
||||
h0.655c0.131,0,0.239,0.097,0.254,0.219h-0.905v0.176h0.674c0.13,0,0.239,0.096,0.251,0.219V21.722z M24.682,21.175
|
||||
c0-0.128,0.11-0.234,0.244-0.234h0.661c0.134,0,0.242,0.106,0.242,0.234v0.548c0,0.129-0.108,0.234-0.242,0.234h-0.661
|
||||
c-0.134,0-0.244-0.105-0.244-0.234V21.175z M23.285,21.175c0-0.128,0.109-0.234,0.243-0.234h0.707c0.119,0,0.221,0.085,0.24,0.198
|
||||
H23.51v0.617h0.741v-0.221h-0.354c-0.022,0-0.1-0.005-0.15-0.067c-0.04-0.047-0.051-0.084-0.054-0.103h0.783v0.385
|
||||
c-0.013,0.117-0.116,0.207-0.241,0.207h-0.707c-0.134,0-0.243-0.105-0.243-0.234V21.175z M26.203,13.693l-0.006,0.005l-0.04-0.037
|
||||
L26.203,13.693z M15.903,7.498l0.025,0.185l-0.086-0.099L15.903,7.498z M15.352,25.674l0.482-0.481l0.481,0.481H15.352z
|
||||
M16.304,25.935l-0.47,0.469l-0.47-0.469H16.304z M15.168,25.491v-0.963l0.482,0.481L15.168,25.491z M15.364,24.356h0.939
|
||||
l-0.47,0.469L15.364,24.356z M15.352,24.091l0.482-0.481l0.481,0.481H15.352z M15.168,23.907v-0.962l0.482,0.481L15.168,23.907z
|
||||
M15.364,22.773h0.939l-0.47,0.469L15.364,22.773z M15.352,22.513l0.482-0.481l0.481,0.481H15.352z M15.168,22.329v-0.963
|
||||
l0.482,0.481L15.168,22.329z M15.367,21.197h0.935l-0.468,0.467L15.367,21.197z M15.354,20.935l0.479-0.479l0.48,0.479H15.354z
|
||||
M15.168,20.753V19.79l0.482,0.481L15.168,20.753z M15.364,19.619h0.939l-0.47,0.469L15.364,19.619z M15.352,19.358l0.482-0.481
|
||||
l0.481,0.481H15.352z M15.168,19.175v-0.963l0.482,0.481L15.168,19.175z M15.364,18.041h0.939l-0.47,0.469L15.364,18.041z
|
||||
M15.352,17.775l0.482-0.481l0.481,0.481H15.352z M15.168,17.591v-0.963l0.482,0.481L15.168,17.591z M15.364,16.457h0.939
|
||||
l-0.47,0.469L15.364,16.457z M15.352,16.197l0.482-0.481l0.481,0.481H15.352z M15.465,14.979h0.738l-0.369,0.368L15.465,14.979z
|
||||
M15.886,10.34l0.383,0.645l-0.676,0.003L15.886,10.34z M15.504,10.575l-0.005-0.887l0.232,0.392L15.504,10.575z M15.854,9.811
|
||||
l-0.267-0.444l0.473-0.003L15.854,9.811z M15.593,9.111l0.186-0.317l0.229,0.314L15.593,9.111z M15.756,8.37l-0.157-0.213
|
||||
l0.285-0.002L15.756,8.37z M15.627,8.587l-0.133,0.226L15.492,8.4L15.627,8.587z M15.488,7.688l-0.002-0.172l0.069,0.079
|
||||
L15.488,7.688z M15.483,6.914V6.876l0.018,0.018L15.483,6.914z M15.51,11.737l0.391,0.852l-0.141,0.43h-0.243L15.51,11.737z
|
||||
M15.586,11.287l0.741-0.003l-0.307,0.937L15.586,11.287z M16.009,10.067l0.185-0.408l0.124,0.919L16.009,10.067z M15.906,8.575
|
||||
l0.116-0.196l0.057,0.431L15.906,8.575z M15.603,7.917l0.105-0.146l0.125,0.144L15.603,7.917z M15.658,7.049l0.047,0.048
|
||||
l-0.089,0.001L15.658,7.049z M15.63,6.714l0.024,0l-0.012,0.014L15.63,6.714z M15.755,7.32L15.689,7.41l-0.077-0.088L15.755,7.32z
|
||||
M15.818,6.86l0.006,0.047L15.8,6.882L15.818,6.86z M15.603,6.368l0.185,0.128l-0.333,0.003L15.603,6.368z M15.65,15.532
|
||||
l-0.482,0.481V15.05L15.65,15.532z M14.614,13.019c-0.054,0-0.098,0.044-0.098,0.098v1.009h-1.399V14.06
|
||||
c0-0.054-0.044-0.098-0.098-0.098h-2.146c-0.055,0-0.098,0.043-0.098,0.098v0.065H8.465v-0.521c0-0.054-0.044-0.098-0.098-0.098
|
||||
H7.517l7.748-6.841v6.353H14.614z M15.168,26.106l0.482,0.481l-0.482,0.481V26.106z M15.352,27.252l0.482-0.481l0.481,0.481H15.352
|
||||
z M16.485,27.054l-0.467-0.466l0.467-0.466V27.054z M16.485,25.476l-0.467-0.466l0.467-0.466V25.476z M16.485,23.892l-0.467-0.466
|
||||
l0.467-0.466V23.892z M16.485,22.314l-0.467-0.466l0.467-0.466V22.314z M16.485,20.738l-0.467-0.466l0.467-0.466V20.738z
|
||||
M16.485,19.16l-0.467-0.466l0.467-0.466V19.16z M16.485,17.576l-0.467-0.466l0.467-0.466V17.576z M16.485,15.998l-0.467-0.466
|
||||
l0.467-0.466V15.998z M16.394,13.019l-0.207-0.442l0.28-0.877l0.178,1.319H16.394z M18.613,13.847l-0.461,0.244
|
||||
c0-0.001,0-0.487,0-0.487L18.613,13.847z M18.316,13.402l1.076,0.033l-0.509,0.269L18.316,13.402z M18.295,14.303l0.588-0.313
|
||||
l0.528,0.279L18.295,14.303z M19.74,14.161l-0.589-0.314l0.589-0.313V14.161z M20.515,13.847l-0.497,0.294v-0.588L20.515,13.847z
|
||||
M20.351,13.464l0.772,0.023l-0.367,0.217L20.351,13.464z M20.334,14.241l0.422-0.251l0.383,0.227L20.334,14.241z M21.424,14.104
|
||||
l-0.43-0.256l0.43-0.256V14.104z M22.044,13.848l-0.362,0.237V13.61L22.044,13.848z M21.971,13.513l0.559,0.017l-0.268,0.175
|
||||
L21.971,13.513z M21.957,14.192l0.305-0.201l0.28,0.184L21.957,14.192z M22.791,14.054l-0.313-0.206l0.313-0.207V14.054z
|
||||
M23.039,14.037v-0.378l0.264,0.189L23.039,14.037z M23.293,13.553l0.403,0.012l-0.193,0.139L23.293,13.553z M23.282,14.152
|
||||
l0.221-0.16l0.204,0.147L23.282,14.152z M23.931,14.013l-0.229-0.165l0.229-0.165V14.013z M24.169,13.997V13.7l0.189,0.148
|
||||
L24.169,13.997z M24.387,14.119l0.158-0.124l0.146,0.115L24.387,14.119z M24.396,13.586l0.287,0.008l-0.139,0.108L24.396,13.586z
|
||||
M24.893,13.976l-0.161-0.127l0.161-0.127V13.976z M25.128,13.96v-0.222l0.131,0.111L25.128,13.96z M25.324,14.09l0.11-0.093
|
||||
l0.103,0.086L25.324,14.09z M25.333,13.614l0.196,0.006l-0.095,0.081L25.333,13.614z M25.719,13.942l-0.109-0.094l0.109-0.093
|
||||
V13.942z M18.152,13.154v-0.038c0-0.054-0.043-0.098-0.098-0.098h-1.156l-0.89-6.369l9.777,6.756L18.152,13.154z M25.945,13.927
|
||||
v-0.155l0.086,0.078L25.945,13.927z M26.124,14.066L26.197,14l0.068,0.062L26.124,14.066z M26.432,13.912l-0.069-0.063l0.069-0.063
|
||||
V13.912z"/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="1.8662" y1="0.2197" x2="26.1004" y2="22.4479">
|
||||
<stop offset="0" style="stop-color:#EFE580"/>
|
||||
<stop offset="1" style="stop-color:#E6B341"/>
|
||||
</linearGradient>
|
||||
<rect x="24.178" y="20.684" fill="url(#SVGID_3_)" width="0.693" height="0.637"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="0.3135" y1="1.9639" x2="24.5419" y2="24.1868">
|
||||
<stop offset="0" style="stop-color:#EFE580"/>
|
||||
<stop offset="1" style="stop-color:#E6B341"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_4_)" d="M25.828,13.024l-0.289-0.01L14.935,5.687c-0.017-0.012-0.036-0.017-0.056-0.017
|
||||
c-0.03,0-0.061,0.015-0.08,0.042l-0.017,0.024c-0.005,0-0.01-0.001-0.014-0.001c-0.023,0-0.047,0.008-0.065,0.024l-8.315,7.342
|
||||
H6.236c-0.055,0-0.098,0.043-0.098,0.097v0.123v0.351v0.91c0,0.054,0.043,0.098,0.098,0.098h1.398c0.055,0,0.099-0.043,0.099-0.098
|
||||
v-0.423h2.31v0.375c0,0.054,0.043,0.097,0.098,0.097h2.147c0.054,0,0.098-0.043,0.098-0.097v-0.375h1.399v0.317
|
||||
c0,0.054,0.043,0.097,0.098,0.097h0.292v12.437c0,0.054,0.044,0.098,0.099,0.098h1.643c0.054,0,0.098-0.044,0.098-0.098V14.572
|
||||
h0.645c0.029,0,0.057-0.012,0.075-0.035l0.319-0.382l5.052-0.166v6.101h-3.428v1.796h7.137v-1.796h-3.362v-6.113l3.377-0.111
|
||||
c0.053-0.001,0.094-0.045,0.094-0.098v-0.648C25.922,13.069,25.881,13.026,25.828,13.024z M20.619,21.301
|
||||
c-0.013,0.122-0.121,0.218-0.253,0.218h-0.644c-0.14,0-0.252-0.11-0.252-0.244v-0.528c0-0.134,0.112-0.244,0.252-0.244h0.644
|
||||
c0.13,0,0.237,0.094,0.252,0.214v0.013h-0.867v0.557h0.868V21.301z M22,21.274c0,0.134-0.115,0.244-0.255,0.244H21.07
|
||||
c-0.132,0-0.239-0.097-0.253-0.221h0.924v-0.181h-0.672c-0.132,0-0.24-0.096-0.253-0.219v-0.151c0-0.134,0.114-0.244,0.254-0.244
|
||||
h0.656c0.131,0,0.239,0.097,0.253,0.22h-0.904v0.176h0.674c0.13,0,0.238,0.096,0.251,0.219V21.274z M23.949,20.728
|
||||
c0-0.128,0.111-0.234,0.244-0.234h0.661c0.135,0,0.243,0.105,0.243,0.234v0.547c0,0.13-0.108,0.234-0.243,0.234h-0.661
|
||||
c-0.133,0-0.244-0.104-0.244-0.234V20.728z M22.554,20.728c0-0.128,0.109-0.234,0.243-0.234h0.707c0.118,0,0.221,0.084,0.239,0.197
|
||||
h-0.965v0.617h0.741v-0.221h-0.354c-0.022,0-0.101-0.005-0.15-0.067c-0.04-0.047-0.051-0.084-0.054-0.103h0.783v0.385
|
||||
c-0.013,0.117-0.116,0.207-0.241,0.207h-0.707c-0.134,0-0.243-0.104-0.243-0.234V20.728z M25.471,13.287l-0.005,0.005l-0.04-0.036
|
||||
L25.471,13.287z M15.172,7.091l0.025,0.185L15.11,7.177L15.172,7.091z M14.62,25.268l0.482-0.481l0.481,0.481H14.62z
|
||||
M15.571,25.528l-0.469,0.469l-0.47-0.469H15.571z M14.436,25.084v-0.963l0.482,0.481L14.436,25.084z M14.633,23.95h0.938
|
||||
l-0.469,0.469L14.633,23.95z M14.62,23.685l0.482-0.481l0.481,0.481H14.62z M14.436,23.5v-0.962l0.482,0.481L14.436,23.5z
|
||||
M14.633,22.367h0.938l-0.469,0.469L14.633,22.367z M14.62,22.106l0.482-0.481l0.481,0.481H14.62z M14.436,21.922V20.96
|
||||
l0.482,0.481L14.436,21.922z M14.635,20.791h0.936l-0.468,0.467L14.635,20.791z M14.622,20.528l0.48-0.479l0.48,0.479H14.622z
|
||||
M14.436,20.346v-0.962l0.482,0.481L14.436,20.346z M14.633,19.212h0.938l-0.469,0.469L14.633,19.212z M14.62,18.952l0.482-0.481
|
||||
l0.481,0.481H14.62z M14.436,18.769v-0.963l0.482,0.481L14.436,18.769z M14.633,17.634h0.938l-0.469,0.469L14.633,17.634z
|
||||
M14.62,17.368l0.482-0.481l0.481,0.481H14.62z M14.436,17.185v-0.963l0.482,0.481L14.436,17.185z M14.633,16.05h0.938
|
||||
l-0.469,0.469L14.633,16.05z M14.62,15.79l0.482-0.481l0.481,0.481H14.62z M14.733,14.572h0.738l-0.369,0.369L14.733,14.572z
|
||||
M15.154,9.933l0.383,0.646l-0.677,0.003L15.154,9.933z M14.772,10.168l-0.005-0.887L15,9.673L14.772,10.168z M15.123,9.404
|
||||
L14.855,8.96l0.474-0.003L15.123,9.404z M14.861,8.705l0.186-0.317l0.229,0.314L14.861,8.705z M15.024,7.964L14.867,7.75
|
||||
l0.285-0.002L15.024,7.964z M14.896,8.18l-0.134,0.226L14.76,7.994L14.896,8.18z M14.756,7.282L14.755,7.11l0.069,0.079
|
||||
L14.756,7.282z M14.752,6.507V6.469l0.017,0.018L14.752,6.507z M14.778,11.331l0.391,0.852l-0.141,0.43h-0.243L14.778,11.331z
|
||||
M14.854,10.881l0.741-0.003l-0.307,0.937L14.854,10.881z M15.277,9.661l0.185-0.408l0.123,0.92L15.277,9.661z M15.175,8.168
|
||||
l0.115-0.197l0.058,0.431L15.175,8.168z M14.871,7.511l0.104-0.146l0.125,0.145L14.871,7.511z M14.926,6.643l0.047,0.047
|
||||
l-0.088,0.001L14.926,6.643z M14.898,6.308h0.024l-0.012,0.013L14.898,6.308z M15.023,6.914l-0.065,0.09l-0.077-0.088L15.023,6.914
|
||||
z M15.087,6.453L15.093,6.5l-0.025-0.024L15.087,6.453z M14.871,5.962l0.185,0.127l-0.333,0.003L14.871,5.962z M14.918,15.125
|
||||
l-0.482,0.481v-0.963L14.918,15.125z M13.883,12.612c-0.055,0-0.098,0.044-0.098,0.098v1.008h-1.399v-0.065
|
||||
c0-0.054-0.044-0.098-0.098-0.098h-2.147c-0.055,0-0.098,0.044-0.098,0.098v0.065h-2.31v-0.521c0-0.054-0.044-0.097-0.099-0.097
|
||||
h-0.85l7.748-6.841v6.353H13.883z M14.436,25.7l0.482,0.481l-0.482,0.481V25.7z M14.62,26.846l0.482-0.481l0.481,0.481H14.62z
|
||||
M15.753,26.647l-0.466-0.466l0.466-0.466V26.647z M15.753,25.069l-0.466-0.466l0.466-0.466V25.069z M15.753,23.486l-0.466-0.466
|
||||
l0.466-0.466V23.486z M15.753,21.908l-0.466-0.466l0.466-0.466V21.908z M15.753,20.332l-0.466-0.467l0.466-0.466V20.332z
|
||||
M15.753,18.753l-0.466-0.466l0.466-0.466V18.753z M15.753,17.169l-0.466-0.466l0.466-0.466V17.169z M15.753,15.591l-0.466-0.466
|
||||
l0.466-0.466V15.591z M15.661,12.612l-0.206-0.442l0.28-0.877l0.177,1.32H15.661z M17.881,13.44l-0.46,0.243
|
||||
c0-0.001,0-0.487,0-0.487L17.881,13.44z M17.585,12.996l1.075,0.032l-0.509,0.27L17.585,12.996z M17.563,13.896l0.589-0.313
|
||||
l0.528,0.279L17.563,13.896z M19.008,13.754L18.42,13.44l0.588-0.313V13.754z M19.783,13.441l-0.497,0.294v-0.589L19.783,13.441z
|
||||
M19.619,13.057l0.772,0.023l-0.367,0.218L19.619,13.057z M19.602,13.834l0.422-0.251l0.384,0.227L19.602,13.834z M20.692,13.697
|
||||
l-0.43-0.256l0.43-0.255V13.697z M21.313,13.441l-0.362,0.238v-0.476L21.313,13.441z M21.239,13.106l0.559,0.017l-0.268,0.175
|
||||
L21.239,13.106z M21.226,13.785l0.305-0.201l0.28,0.183L21.226,13.785z M22.06,13.647l-0.313-0.207l0.313-0.206V13.647z
|
||||
M22.308,13.63v-0.378l0.264,0.189L22.308,13.63z M22.562,13.146l0.403,0.012l-0.193,0.139L22.562,13.146z M22.55,13.746
|
||||
l0.222-0.16l0.204,0.146L22.55,13.746z M23.199,13.606l-0.229-0.165l0.229-0.165V13.606z M23.437,13.59v-0.297l0.189,0.148
|
||||
L23.437,13.59z M23.655,13.712l0.158-0.124l0.146,0.115L23.655,13.712z M23.665,13.179l0.286,0.009l-0.138,0.107L23.665,13.179z
|
||||
M24.161,13.569l-0.162-0.127l0.162-0.127V13.569z M24.396,13.553v-0.222l0.132,0.111L24.396,13.553z M24.593,13.684l0.109-0.093
|
||||
l0.104,0.086L24.593,13.684z M24.602,13.208l0.196,0.006l-0.096,0.08L24.602,13.208z M24.987,13.536l-0.11-0.093l0.11-0.094V13.536
|
||||
z M17.421,12.748V12.71c0-0.054-0.044-0.098-0.098-0.098h-1.157l-0.889-6.37l9.776,6.756L17.421,12.748z M25.214,13.52v-0.155
|
||||
l0.085,0.078L25.214,13.52z M25.393,13.659l0.073-0.066l0.067,0.062L25.393,13.659z M25.699,13.505l-0.068-0.063l0.068-0.063
|
||||
V13.505z"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#282622" d="M5.358,29.823c-0.241,0-0.432-0.206-0.435-0.47l-0.021-5.609
|
||||
c-0.001-0.132,0.049-0.258,0.138-0.348c0.08-0.081,0.185-0.125,0.294-0.125l21.813-0.012c0.24,0,0.436,0.212,0.436,0.472
|
||||
l0.021,5.608c0,0.26-0.192,0.473-0.432,0.473L5.358,29.823C5.358,29.823,5.358,29.823,5.358,29.823z"/>
|
||||
<g id="Shape_21_copy_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#DBAD22" d="M27.42,23.732c0-0.171-0.123-0.31-0.272-0.31L5.335,23.434
|
||||
c-0.148,0-0.271,0.137-0.27,0.31l0.021,5.608c0.002,0.172,0.122,0.31,0.272,0.31l21.813-0.011c0.149,0,0.271-0.139,0.271-0.309
|
||||
L27.42,23.732z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_21_copy_2_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#282622" d="M26.971,24.124c-0.002-0.149-0.119-0.27-0.262-0.27l-20.934,0.01
|
||||
c-0.144,0-0.259,0.121-0.258,0.27l0.02,4.855c0,0.148,0.117,0.27,0.261,0.27l20.933-0.01c0.144,0,0.26-0.12,0.26-0.27
|
||||
L26.971,24.124z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M8.984,25.172v3.122H7.403H7.311c-0.085,0-0.151-0.011-0.197-0.031c-0.046-0.021-0.068-0.05-0.068-0.088
|
||||
c0-0.063,0.047-0.104,0.142-0.124c0.078-0.017,0.124-0.027,0.138-0.031c0.012-0.004,0.026-0.013,0.04-0.026
|
||||
c0.028-0.024,0.042-0.063,0.042-0.117v-2.289c0-0.053-0.014-0.092-0.042-0.117c-0.014-0.014-0.028-0.022-0.04-0.026
|
||||
c-0.014-0.004-0.06-0.014-0.138-0.031c-0.095-0.02-0.142-0.061-0.142-0.124c0-0.038,0.022-0.067,0.068-0.088
|
||||
c0.046-0.021,0.112-0.031,0.197-0.031h0.093H8.984z M9.702,27.639v-1.804c0-0.111-0.025-0.199-0.075-0.265
|
||||
c-0.03-0.042-0.068-0.074-0.113-0.093c-0.045-0.02-0.116-0.037-0.213-0.051v-0.254c0.125,0,0.231,0.003,0.319,0.01
|
||||
c0.301,0.021,0.592,0.104,0.874,0.247c0.28,0.139,0.487,0.319,0.622,0.542c0.14,0.226,0.21,0.476,0.21,0.75
|
||||
c0,0.311-0.089,0.587-0.267,0.829c-0.178,0.242-0.433,0.432-0.765,0.571c-0.161,0.067-0.311,0.113-0.449,0.137
|
||||
c-0.139,0.024-0.32,0.037-0.545,0.037v-0.247C9.4,28.03,9.469,28.015,9.508,28c0.039-0.013,0.073-0.035,0.103-0.064
|
||||
c0.035-0.034,0.059-0.071,0.072-0.113S9.702,27.72,9.702,27.639z"/>
|
||||
<path d="M13.706,28.293h-1.585h-0.092c-0.086,0-0.151-0.011-0.197-0.031c-0.046-0.021-0.069-0.05-0.069-0.088
|
||||
c0-0.063,0.047-0.104,0.142-0.124c0.078-0.017,0.125-0.027,0.138-0.031s0.026-0.013,0.04-0.026
|
||||
c0.029-0.024,0.043-0.063,0.043-0.117v-2.289c0-0.053-0.014-0.092-0.043-0.117c-0.014-0.014-0.027-0.022-0.04-0.026
|
||||
c-0.013-0.004-0.06-0.014-0.138-0.031c-0.095-0.02-0.142-0.061-0.142-0.124c0-0.038,0.023-0.067,0.069-0.088
|
||||
c0.046-0.021,0.111-0.031,0.197-0.031h0.092h1.585h0.093c0.085,0,0.151,0.01,0.197,0.031c0.046,0.021,0.068,0.05,0.068,0.088
|
||||
c0,0.063-0.047,0.104-0.142,0.124c-0.078,0.017-0.124,0.027-0.137,0.031c-0.013,0.004-0.026,0.012-0.04,0.026
|
||||
c-0.029,0.024-0.044,0.063-0.044,0.117v2.289c0,0.054,0.015,0.093,0.044,0.117c0.014,0.014,0.027,0.022,0.04,0.026
|
||||
s0.059,0.014,0.137,0.031c0.095,0.02,0.142,0.061,0.142,0.124c0,0.038-0.022,0.067-0.068,0.088
|
||||
c-0.046,0.02-0.112,0.031-0.197,0.031H13.706z"/>
|
||||
<path d="M18.02,25.172v0.263l-1.965,2.858h-1.553v-0.227l1.972-2.895L18.02,25.172z M14.623,25.172h1.542l-0.178,0.261
|
||||
c-0.201,0.017-0.386,0.064-0.554,0.142c-0.214,0.097-0.359,0.236-0.438,0.416c-0.02,0.047-0.043,0.08-0.071,0.098
|
||||
c-0.028,0.019-0.069,0.027-0.121,0.027c-0.12,0-0.181-0.045-0.181-0.135V25.172z M18.02,28.293h-1.662l0.159-0.229
|
||||
c0.291-0.044,0.503-0.095,0.633-0.153c0.11-0.05,0.201-0.108,0.27-0.174c0.068-0.065,0.141-0.164,0.217-0.295
|
||||
c0.028-0.048,0.057-0.082,0.084-0.099s0.063-0.026,0.111-0.026c0.062,0,0.108,0.014,0.141,0.041
|
||||
c0.031,0.028,0.048,0.067,0.048,0.119V28.293z"/>
|
||||
<path d="M21.828,25.172v0.263l-1.964,2.858h-1.554v-0.227l1.973-2.895H21.828z M18.432,25.172h1.542l-0.177,0.26
|
||||
c-0.202,0.017-0.387,0.064-0.555,0.142c-0.213,0.097-0.359,0.236-0.437,0.416c-0.02,0.047-0.044,0.08-0.071,0.098
|
||||
c-0.029,0.019-0.069,0.027-0.121,0.027c-0.121,0-0.182-0.045-0.182-0.135V25.172z M21.828,28.293h-1.662l0.159-0.229
|
||||
c0.291-0.044,0.503-0.095,0.633-0.153c0.111-0.05,0.201-0.108,0.271-0.174c0.068-0.065,0.141-0.164,0.217-0.295
|
||||
c0.028-0.048,0.056-0.082,0.083-0.099s0.064-0.026,0.111-0.026c0.062,0,0.109,0.014,0.141,0.041
|
||||
c0.032,0.028,0.048,0.067,0.048,0.119V28.293z"/>
|
||||
<path d="M24.891,26.862v0.997c0,0.06,0.018,0.102,0.054,0.128c0.019,0.015,0.037,0.024,0.054,0.028
|
||||
c0.017,0.003,0.071,0.013,0.163,0.029c0.113,0.017,0.17,0.059,0.17,0.125c0,0.044-0.031,0.078-0.096,0.101
|
||||
c-0.037,0.015-0.11,0.023-0.221,0.023h-0.12h-1.584h-0.117c-0.107,0-0.182-0.009-0.225-0.027c-0.062-0.025-0.092-0.057-0.092-0.096
|
||||
c0-0.067,0.057-0.109,0.17-0.125c0.093-0.016,0.146-0.025,0.164-0.029c0.017-0.004,0.033-0.014,0.049-0.028
|
||||
c0.036-0.026,0.054-0.069,0.054-0.128v-0.773l-1.006-1.543c-0.037-0.058-0.091-0.1-0.159-0.125
|
||||
c-0.064-0.026-0.104-0.046-0.123-0.062c-0.018-0.016-0.026-0.037-0.026-0.064c0-0.079,0.09-0.119,0.27-0.119h1.741
|
||||
c0.092,0,0.156,0.007,0.192,0.021c0.059,0.024,0.089,0.056,0.089,0.096c0,0.049-0.035,0.087-0.104,0.114l-0.103,0.042
|
||||
c-0.041,0.017-0.062,0.042-0.062,0.076c0,0.038,0.014,0.075,0.039,0.112L24.891,26.862z M25.03,26.645l-0.2-0.299l0.373-0.538
|
||||
c0.031-0.045,0.047-0.108,0.047-0.187c0-0.088-0.076-0.152-0.228-0.19c-0.083-0.021-0.137-0.04-0.161-0.056
|
||||
c-0.025-0.016-0.038-0.041-0.038-0.074c0-0.042,0.021-0.072,0.064-0.094c0.028-0.014,0.06-0.022,0.096-0.027
|
||||
c0.035-0.005,0.098-0.007,0.185-0.007h0.877c0.166,0,0.249,0.043,0.249,0.128c0,0.031-0.011,0.054-0.033,0.071
|
||||
c-0.022,0.017-0.065,0.034-0.13,0.053c-0.116,0.034-0.199,0.067-0.248,0.101c-0.071,0.049-0.131,0.104-0.178,0.167l-0.082,0.116
|
||||
L25.03,26.645z"/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="8.9961" y1="24.6343" x2="8.9961" y2="29.306">
|
||||
<stop offset="0" style="stop-color:#EFE580"/>
|
||||
<stop offset="1" style="stop-color:#E6B341"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M8.795,25.01v3.121H7.214H7.121c-0.085,0-0.151-0.01-0.197-0.031
|
||||
c-0.046-0.021-0.069-0.049-0.069-0.088c0-0.063,0.048-0.104,0.143-0.123c0.078-0.017,0.123-0.027,0.137-0.031
|
||||
c0.013-0.004,0.026-0.013,0.041-0.026c0.027-0.024,0.043-0.063,0.043-0.117v-2.289c0-0.053-0.016-0.092-0.043-0.117
|
||||
c-0.015-0.014-0.028-0.022-0.041-0.026c-0.014-0.004-0.059-0.014-0.137-0.031c-0.095-0.02-0.143-0.061-0.143-0.124
|
||||
c0-0.038,0.023-0.067,0.069-0.088s0.112-0.031,0.197-0.031h0.093H8.795z M9.512,27.477v-1.804c0-0.111-0.023-0.2-0.074-0.265
|
||||
c-0.031-0.043-0.068-0.074-0.113-0.094c-0.045-0.02-0.116-0.036-0.214-0.05V25.01c0.126,0,0.232,0.003,0.32,0.009
|
||||
c0.301,0.021,0.593,0.104,0.874,0.247c0.279,0.139,0.486,0.32,0.622,0.542c0.14,0.226,0.21,0.476,0.21,0.75
|
||||
c0,0.311-0.09,0.587-0.268,0.829c-0.177,0.242-0.432,0.432-0.764,0.571c-0.161,0.067-0.311,0.113-0.449,0.137
|
||||
c-0.139,0.025-0.32,0.037-0.546,0.037v-0.247c0.1-0.017,0.169-0.032,0.208-0.046c0.04-0.014,0.073-0.035,0.102-0.064
|
||||
c0.036-0.033,0.061-0.071,0.072-0.113C9.506,27.619,9.512,27.558,9.512,27.477z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="12.7246" y1="24.6343" x2="12.7246" y2="29.306">
|
||||
<stop offset="0" style="stop-color:#EFE580"/>
|
||||
<stop offset="1" style="stop-color:#E6B341"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M13.517,28.131h-1.585H11.84c-0.085,0-0.151-0.01-0.197-0.031c-0.046-0.021-0.069-0.049-0.069-0.088
|
||||
c0-0.063,0.048-0.104,0.142-0.123c0.079-0.017,0.124-0.027,0.138-0.031c0.013-0.004,0.026-0.013,0.04-0.026
|
||||
c0.028-0.024,0.043-0.063,0.043-0.117v-2.289c0-0.053-0.015-0.092-0.043-0.117c-0.014-0.014-0.027-0.022-0.04-0.026
|
||||
c-0.014-0.004-0.059-0.014-0.138-0.031c-0.094-0.02-0.142-0.061-0.142-0.124c0-0.038,0.023-0.067,0.069-0.088
|
||||
s0.112-0.031,0.197-0.031h0.092h1.585h0.092c0.086,0,0.151,0.01,0.197,0.031s0.069,0.05,0.069,0.088
|
||||
c0,0.063-0.047,0.104-0.142,0.124c-0.078,0.017-0.124,0.027-0.138,0.031c-0.012,0.004-0.026,0.013-0.04,0.026
|
||||
c-0.028,0.024-0.042,0.063-0.042,0.117v2.289c0,0.054,0.014,0.092,0.042,0.117c0.014,0.014,0.028,0.022,0.04,0.026
|
||||
c0.014,0.004,0.06,0.014,0.138,0.031c0.095,0.02,0.142,0.061,0.142,0.123c0,0.039-0.023,0.067-0.069,0.088
|
||||
c-0.046,0.021-0.111,0.031-0.197,0.031H13.517z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="16.0713" y1="24.6343" x2="16.0713" y2="29.306">
|
||||
<stop offset="0" style="stop-color:#EFE580"/>
|
||||
<stop offset="1" style="stop-color:#E6B341"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_7_)" d="M17.83,25.01v0.263l-1.965,2.858h-1.553v-0.227l1.972-2.895H17.83z M14.434,25.01h1.542
|
||||
l-0.178,0.261c-0.202,0.017-0.387,0.064-0.555,0.142c-0.213,0.098-0.358,0.236-0.437,0.416c-0.02,0.047-0.043,0.08-0.071,0.098
|
||||
c-0.029,0.019-0.069,0.027-0.12,0.027c-0.122,0-0.182-0.044-0.182-0.134V25.01z M17.83,28.131h-1.663l0.159-0.229
|
||||
c0.292-0.044,0.503-0.095,0.634-0.153c0.11-0.051,0.201-0.108,0.27-0.174c0.069-0.066,0.141-0.164,0.217-0.295
|
||||
c0.028-0.049,0.057-0.082,0.083-0.1c0.027-0.018,0.064-0.026,0.112-0.026c0.062,0,0.108,0.014,0.141,0.041
|
||||
c0.032,0.028,0.048,0.067,0.048,0.119V28.131z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="19.8799" y1="24.6343" x2="19.8799" y2="29.306">
|
||||
<stop offset="0" style="stop-color:#EFE580"/>
|
||||
<stop offset="1" style="stop-color:#E6B341"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_8_)" d="M21.639,25.01v0.263l-1.965,2.858h-1.553v-0.227l1.972-2.895H21.639z M18.242,25.01h1.542
|
||||
l-0.178,0.261c-0.201,0.017-0.387,0.064-0.555,0.142c-0.213,0.098-0.358,0.236-0.437,0.416c-0.019,0.047-0.043,0.08-0.071,0.098
|
||||
c-0.028,0.019-0.069,0.027-0.12,0.027c-0.122,0-0.182-0.044-0.182-0.134V25.01z M21.639,28.131h-1.663l0.16-0.229
|
||||
c0.291-0.044,0.502-0.095,0.633-0.153c0.11-0.051,0.201-0.108,0.27-0.174c0.069-0.066,0.141-0.164,0.217-0.295
|
||||
c0.028-0.049,0.057-0.082,0.084-0.1s0.063-0.026,0.111-0.026c0.062,0,0.108,0.014,0.141,0.041c0.032,0.028,0.048,0.067,0.048,0.119
|
||||
V28.131z"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="23.957" y1="24.6343" x2="23.957" y2="29.306">
|
||||
<stop offset="0" style="stop-color:#EFE580"/>
|
||||
<stop offset="1" style="stop-color:#E6B341"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_9_)" d="M24.701,26.699v0.997c0,0.059,0.019,0.103,0.054,0.128c0.019,0.016,0.036,0.025,0.053,0.029
|
||||
s0.071,0.013,0.164,0.028c0.113,0.017,0.17,0.059,0.17,0.126c0,0.044-0.032,0.078-0.096,0.101c-0.038,0.015-0.111,0.023-0.22,0.023
|
||||
h-0.121H23.12h-0.117c-0.106,0-0.181-0.009-0.224-0.027c-0.063-0.024-0.093-0.057-0.093-0.096c0-0.067,0.058-0.109,0.171-0.126
|
||||
c0.092-0.015,0.146-0.024,0.163-0.028s0.034-0.013,0.05-0.029c0.036-0.025,0.054-0.069,0.054-0.128v-0.773l-1.005-1.543
|
||||
c-0.039-0.058-0.092-0.1-0.161-0.125c-0.063-0.026-0.104-0.047-0.122-0.062s-0.027-0.037-0.027-0.064
|
||||
c0-0.079,0.09-0.119,0.271-0.119h1.741c0.093,0,0.156,0.007,0.191,0.021c0.06,0.024,0.09,0.057,0.09,0.096
|
||||
c0,0.048-0.035,0.087-0.104,0.114l-0.104,0.041c-0.04,0.017-0.061,0.042-0.061,0.076c0,0.038,0.014,0.075,0.039,0.112
|
||||
L24.701,26.699z M24.84,26.482l-0.199-0.3l0.374-0.538c0.03-0.046,0.046-0.108,0.046-0.188c0-0.088-0.076-0.151-0.228-0.189
|
||||
c-0.083-0.021-0.138-0.04-0.162-0.056s-0.037-0.041-0.037-0.074c0-0.041,0.021-0.072,0.064-0.094
|
||||
c0.028-0.014,0.061-0.023,0.096-0.027c0.035-0.005,0.097-0.007,0.185-0.007h0.878c0.165,0,0.248,0.042,0.248,0.128
|
||||
c0,0.031-0.012,0.054-0.033,0.071c-0.022,0.017-0.065,0.035-0.13,0.052c-0.116,0.034-0.199,0.067-0.249,0.101
|
||||
c-0.071,0.048-0.13,0.104-0.178,0.167l-0.082,0.117L24.84,26.482z"/>
|
||||
</g>
|
||||
<path d="M5.802,24.438c-0.001-0.149,0.114-0.27,0.259-0.27l20.91-0.01v-0.015c-0.002-0.149-0.119-0.27-0.262-0.27l-20.934,0.01
|
||||
c-0.144,0-0.259,0.121-0.258,0.27l0.02,4.855c0,0.148,0.117,0.27,0.261,0.27h0.023L5.802,24.438z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 52 KiB |
@@ -1,986 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
|
||||
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
|
||||
<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
|
||||
<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
|
||||
<!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
|
||||
<!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
|
||||
<!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
|
||||
<!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
|
||||
<!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
|
||||
]>
|
||||
<svg version="1.1" id="Layer_2" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px"
|
||||
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<switch>
|
||||
<foreignObject requiredExtensions="&ns_ai;" x="0" y="0" width="1" height="1">
|
||||
<i:pgfRef xlink:href="#adobe_illustrator_pgf">
|
||||
</i:pgfRef>
|
||||
</foreignObject>
|
||||
<g i:extraneous="self">
|
||||
<g>
|
||||
<path fill="#E6E7E8" d="M16.1,31.7c-8.7,0-15.7-7.1-15.7-15.7c0-8.7,7.1-15.7,15.7-15.7s15.7,7.1,15.7,15.7
|
||||
C31.8,24.6,24.7,31.7,16.1,31.7z M16.1,1.3C8,1.3,1.4,7.9,1.4,15.9C1.4,24,8,30.6,16.1,30.6S30.7,24,30.7,15.9
|
||||
C30.7,7.9,24.1,1.3,16.1,1.3z"/>
|
||||
</g>
|
||||
<circle cx="16.1" cy="15.9" r="14.6"/>
|
||||
<g>
|
||||
<circle fill="#E8E8E8" cx="12.8" cy="9.2" r="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E8E8E8" d="M7.4,16.5c0.8,3.8,4.2,6.6,8.2,6.6c4.6,0,8.4-3.8,8.4-8.4c0-2.5-1.1-4.7-2.8-6.3c-1-0.3-2-0.4-3-0.4
|
||||
C12.9,8,8.5,11.7,7.4,16.5z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="9.6006" y1="3.9086" x2="20.8752" y2="24.9482">
|
||||
<stop offset="0" style="stop-color:#2E3191"/>
|
||||
<stop offset="0.1304" style="stop-color:#252680"/>
|
||||
<stop offset="0.3883" style="stop-color:#0F0853"/>
|
||||
<stop offset="0.4525" style="stop-color:#090047"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_1_)" d="M5.2,19.8c1.2,5.3,5.9,9.3,11.6,9.3c6.5,0,11.8-5.3,11.8-11.8c0-3.5-1.5-6.7-4-8.8
|
||||
c-1.3-0.4-2.8-0.6-4.2-0.6C13,7.8,6.8,12.9,5.2,19.8z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="21.1754" y1="35.2699" x2="11.8374" y2="5.712435e-02">
|
||||
<stop offset="5.413396e-02" style="stop-color:#807776"/>
|
||||
<stop offset="6.670566e-02" style="stop-color:#88807F"/>
|
||||
<stop offset="0.1208" style="stop-color:#A4A0A0"/>
|
||||
<stop offset="0.1723" style="stop-color:#B8B7B8"/>
|
||||
<stop offset="0.22" style="stop-color:#C5C5C7"/>
|
||||
<stop offset="0.2598" style="stop-color:#C9CACC"/>
|
||||
<stop offset="0.291" style="stop-color:#C4C5C7"/>
|
||||
<stop offset="0.3304" style="stop-color:#B4B6B9"/>
|
||||
<stop offset="0.3742" style="stop-color:#9A9DA1"/>
|
||||
<stop offset="0.421" style="stop-color:#767B80"/>
|
||||
<stop offset="0.433" style="stop-color:#6C7176"/>
|
||||
<stop offset="0.7402" style="stop-color:#BEC9D0"/>
|
||||
<stop offset="0.8799" style="stop-color:#85A2B1"/>
|
||||
<stop offset="1" style="stop-color:#5C5D60"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M16.1,31.4c-8.5,0-15.4-6.9-15.4-15.4c0-8.5,6.9-15.4,15.4-15.4s15.4,6.9,15.4,15.4
|
||||
C31.5,24.4,24.6,31.4,16.1,31.4z M16.1,1.6C8.1,1.6,1.7,8,1.7,15.9c0,7.9,6.4,14.4,14.4,14.4s14.4-6.4,14.4-14.4
|
||||
C30.4,8,24,1.6,16.1,1.6z"/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="31.4199" y1="12.9626" x2="2.1343" y2="20.2331">
|
||||
<stop offset="0" style="stop-color:#2E3191"/>
|
||||
<stop offset="0.1304" style="stop-color:#252680"/>
|
||||
<stop offset="0.3883" style="stop-color:#0F0853"/>
|
||||
<stop offset="0.4525" style="stop-color:#090047"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_3_)" d="M7.8,20.2H6.4c-0.1,0-0.2,0-0.3,0C6,20.1,6,20.1,5.9,20c0,0-0.1-0.1-0.1-0.1c0-0.1,0-0.1,0-0.2
|
||||
v-2.3c0-0.1-0.1-0.1-0.1-0.1H5.1C5,17.3,5,17.3,5,17.4v2.3c0,0.2,0,0.4,0.1,0.5c0.1,0.2,0.1,0.3,0.3,0.4c0.1,0.1,0.3,0.2,0.4,0.3
|
||||
C5.9,21,6.1,21,6.4,21h1.4c0.1,0,0.1-0.1,0.1-0.1v-0.6C7.9,20.2,7.8,20.2,7.8,20.2z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="31.5849" y1="13.6272" x2="2.2993" y2="20.8977">
|
||||
<stop offset="0" style="stop-color:#2E3191"/>
|
||||
<stop offset="0.1304" style="stop-color:#252680"/>
|
||||
<stop offset="0.3883" style="stop-color:#0F0853"/>
|
||||
<stop offset="0.4525" style="stop-color:#090047"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_4_)" d="M11.2,17.3h-0.6c-0.1,0-0.1,0.1-0.1,0.1v2.3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1H9.4
|
||||
c-0.2,0-0.3,0-0.3-0.1C9,20,9,19.9,9,19.8v-2.3c0-0.1-0.1-0.1-0.1-0.1H8.2c-0.1,0-0.1,0.1-0.1,0.1v2.4c0,0.8,0.4,1.2,1.3,1.2h0.7
|
||||
c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.9v-2.4C11.4,17.3,11.3,17.3,11.2,17.3z"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="31.8534" y1="14.7088" x2="2.5678" y2="21.9793">
|
||||
<stop offset="0" style="stop-color:#2E3191"/>
|
||||
<stop offset="0.1304" style="stop-color:#252680"/>
|
||||
<stop offset="0.3883" style="stop-color:#0F0853"/>
|
||||
<stop offset="0.4525" style="stop-color:#090047"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M15.8,17.3h-0.6c-0.1,0-0.1,0.1-0.1,0.1v2.8c0,0,0,0,0,0.1c0,0,0,0-0.1,0c0,0,0,0-0.1,0
|
||||
c0,0,0,0,0-0.1l-1-2.2c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.2c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.2,0.4-0.2,0.6v2.8
|
||||
C11.9,21,12,21,12,21h0.6c0.1,0,0.1-0.1,0.1-0.1v-2.8c0,0,0-0.1,0-0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1l1,2.2
|
||||
c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0,0.2,0.1,0.4,0.1c0.3,0,0.5-0.1,0.7-0.3
|
||||
c0.2-0.2,0.2-0.4,0.2-0.6v-2.8C15.9,17.3,15.8,17.3,15.8,17.3z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="32.1358" y1="15.8464" x2="2.8502" y2="23.117">
|
||||
<stop offset="0" style="stop-color:#2E3191"/>
|
||||
<stop offset="0.1304" style="stop-color:#252680"/>
|
||||
<stop offset="0.3883" style="stop-color:#0F0853"/>
|
||||
<stop offset="0.4525" style="stop-color:#090047"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M18.9,17.8c-0.1-0.2-0.2-0.3-0.3-0.4c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.4,0-0.5,0.1
|
||||
c-0.1,0.1-0.3,0.2-0.3,0.4l-1.2,3.1c0,0,0,0.1,0,0.1C16,21,16,21,16,21h0.7c0.1,0,0.1,0,0.1-0.1l1.1-2.8c0,0,0,0,0.1,0
|
||||
c0,0,0,0,0,0l1.1,2.8c0,0.1,0.1,0.1,0.1,0.1h0.7c0,0,0.1,0,0.1-0.1c0,0,0-0.1,0-0.1L18.9,17.8z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="32.3363" y1="16.6538" x2="3.0507" y2="23.9243">
|
||||
<stop offset="0" style="stop-color:#2E3191"/>
|
||||
<stop offset="0.1304" style="stop-color:#252680"/>
|
||||
<stop offset="0.3883" style="stop-color:#0F0853"/>
|
||||
<stop offset="0.4525" style="stop-color:#090047"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_7_)" d="M23,17.3h-1.4c-0.5,0-1,0.2-1.3,0.5c-0.3,0.3-0.4,0.8-0.4,1.4c0,0.6,0.1,1.1,0.4,1.4
|
||||
c0.3,0.3,0.7,0.5,1.3,0.5H23c0.1,0,0.1-0.1,0.1-0.1v-0.6c0-0.1-0.1-0.1-0.1-0.1h-1.4c-0.3,0-0.5-0.1-0.6-0.2
|
||||
c-0.1-0.2-0.2-0.4-0.2-0.8c0-0.4,0.1-0.6,0.2-0.8c0.1-0.1,0.3-0.2,0.6-0.2H23c0.1,0,0.1-0.1,0.1-0.1v-0.6
|
||||
C23.2,17.3,23.1,17.3,23,17.3z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="32.464" y1="17.1684" x2="3.1784" y2="24.4389">
|
||||
<stop offset="0" style="stop-color:#2E3191"/>
|
||||
<stop offset="0.1304" style="stop-color:#252680"/>
|
||||
<stop offset="0.3883" style="stop-color:#0F0853"/>
|
||||
<stop offset="0.4525" style="stop-color:#090047"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_8_)" d="M26.9,17.4c0,0-0.1-0.1-0.1-0.1h-0.7c0,0-0.1,0-0.1,0.1l-0.9,1.3l-0.9-1.3c0,0-0.1-0.1-0.1-0.1
|
||||
h-0.7c0,0-0.1,0-0.1,0.1c0,0,0,0.1,0,0.1l1.4,2v1.5c0,0.1,0.1,0.1,0.1,0.1h0.6c0.1,0,0.1-0.1,0.1-0.1v-1.5l1.4-2
|
||||
C27,17.5,27,17.4,26.9,17.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#E8E8E8" d="M8.1,19.6H6.7c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1-0.1-0.2-0.1c0,0-0.1-0.1-0.1-0.1c0-0.1,0-0.1,0-0.2v-2.3
|
||||
c0-0.1-0.1-0.1-0.1-0.1H5.4c-0.1,0-0.1,0.1-0.1,0.1v2.3c0,0.2,0,0.4,0.1,0.5c0.1,0.2,0.1,0.3,0.3,0.4c0.1,0.1,0.3,0.2,0.4,0.3
|
||||
c0.2,0.1,0.4,0.1,0.6,0.1h1.4c0.1,0,0.1-0.1,0.1-0.1v-0.6C8.2,19.6,8.1,19.6,8.1,19.6z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E8E8E8" d="M11.5,16.7h-0.6c-0.1,0-0.1,0.1-0.1,0.1v2.3c0,0.1,0,0.2-0.1,0.3c-0.1,0.1-0.2,0.1-0.3,0.1H9.7
|
||||
c-0.2,0-0.3,0-0.3-0.1c-0.1-0.1-0.1-0.2-0.1-0.3v-2.3c0-0.1-0.1-0.1-0.1-0.1H8.5c-0.1,0-0.1,0.1-0.1,0.1v2.4
|
||||
c0,0.8,0.4,1.2,1.3,1.2h0.7c0.4,0,0.7-0.1,0.9-0.3c0.2-0.2,0.3-0.5,0.3-0.9v-2.4C11.6,16.8,11.6,16.7,11.5,16.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E8E8E8" d="M16,16.7h-0.6c-0.1,0-0.1,0.1-0.1,0.1v2.8c0,0,0,0,0,0.1c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
l-1-2.2c-0.1-0.2-0.2-0.4-0.3-0.5c-0.2-0.1-0.4-0.2-0.6-0.2c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.2,0.4-0.2,0.6v2.8
|
||||
c0,0.1,0.1,0.1,0.1,0.1h0.6c0.1,0,0.1-0.1,0.1-0.1v-2.8c0,0,0-0.1,0-0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0.1l1,2.2
|
||||
c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0,0.2,0.1,0.4,0.1c0.3,0,0.5-0.1,0.7-0.3
|
||||
c0.2-0.2,0.2-0.4,0.2-0.6v-2.8C16.2,16.8,16.1,16.7,16,16.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E8E8E8" d="M19.1,17.2c-0.1-0.2-0.2-0.3-0.3-0.4c-0.1-0.1-0.3-0.1-0.5-0.1c-0.2,0-0.4,0-0.5,0.1
|
||||
c-0.1,0.1-0.3,0.2-0.3,0.4l-1.2,3.1c0,0,0,0.1,0,0.1c0,0,0.1,0.1,0.1,0.1H17c0.1,0,0.1,0,0.1-0.1l1.1-2.8c0,0,0,0,0.1,0
|
||||
c0,0,0,0,0,0l1.1,2.8c0,0.1,0.1,0.1,0.1,0.1h0.7c0,0,0.1,0,0.1-0.1c0,0,0-0.1,0-0.1L19.1,17.2z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E8E8E8" d="M23.3,16.7H22c-0.5,0-1,0.2-1.3,0.5c-0.3,0.3-0.4,0.8-0.4,1.4c0,0.6,0.1,1.1,0.4,1.4
|
||||
c0.3,0.3,0.7,0.5,1.3,0.5h1.4c0.1,0,0.1-0.1,0.1-0.1v-0.6c0-0.1-0.1-0.1-0.1-0.1H22c-0.3,0-0.5-0.1-0.6-0.2
|
||||
c-0.1-0.2-0.2-0.4-0.2-0.8c0-0.4,0.1-0.6,0.2-0.8c0.1-0.1,0.3-0.2,0.6-0.2h1.4c0.1,0,0.1-0.1,0.1-0.1v-0.6
|
||||
C23.4,16.8,23.4,16.7,23.3,16.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E8E8E8" d="M27.2,16.8c0,0-0.1-0.1-0.1-0.1h-0.7c0,0-0.1,0-0.1,0.1l-0.9,1.3l-0.9-1.3c0,0-0.1-0.1-0.1-0.1h-0.7
|
||||
c0,0-0.1,0-0.1,0.1c0,0,0,0.1,0,0.1l1.4,2v1.5c0,0.1,0.1,0.1,0.1,0.1h0.6c0.1,0,0.1-0.1,0.1-0.1v-1.5l1.4-2
|
||||
C27.3,16.9,27.3,16.8,27.2,16.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#D5D6D5" d="M10.6,5.4c-0.2,0.1-0.5,0.1-0.7-0.1c0,0-0.1,0-0.1,0l0,0c0,0,0,0.1,0,0.1c0.1,0.2,0.1,0.5-0.1,0.7
|
||||
c0,0,0,0.1,0,0.1l0,0c0,0,0.1,0,0.1,0c0.2-0.1,0.5-0.1,0.7,0.1c0,0,0.1,0,0.1,0l0,0c0,0,0-0.1,0-0.1c-0.1-0.2-0.1-0.5,0.1-0.7
|
||||
c0,0,0-0.1,0-0.1c0,0,0,0,0,0C10.7,5.4,10.7,5.4,10.6,5.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#D5D6D5" d="M6.9,7.7c-0.1,0-0.2,0-0.3-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0l0,0
|
||||
c0,0,0,0,0,0c0.1,0,0.2,0,0.3,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0C6.9,8,6.9,7.9,6.9,7.7C7,7.8,7,7.7,6.9,7.7C7,7.7,7,7.7,6.9,7.7
|
||||
C7,7.7,6.9,7.7,6.9,7.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#D5D6D5" d="M7.2,10.9c-0.1,0-0.2,0-0.3-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0l0,0
|
||||
c0,0,0,0,0,0c0.1,0,0.2,0,0.3,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0C7.1,11.1,7.1,11,7.2,10.9C7.2,10.9,7.2,10.9,7.2,10.9
|
||||
C7.2,10.9,7.2,10.9,7.2,10.9C7.2,10.9,7.2,10.8,7.2,10.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#D5D6D5" d="M4.7,13.5c-0.1,0-0.2,0-0.3-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0l0,0
|
||||
c0,0,0,0,0,0c0.1,0,0.2,0,0.3,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0C4.6,13.8,4.6,13.6,4.7,13.5C4.7,13.5,4.7,13.5,4.7,13.5
|
||||
C4.7,13.5,4.7,13.5,4.7,13.5C4.7,13.5,4.7,13.5,4.7,13.5z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#D5D6D5" d="M6,11.9c-0.1,0-0.2,0-0.3-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0l0,0
|
||||
c0,0,0,0,0,0c0.1,0,0.2,0,0.3,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0C6,12.1,6,12,6,11.9C6.1,11.9,6.1,11.9,6,11.9
|
||||
C6.1,11.9,6.1,11.9,6,11.9C6.1,11.9,6,11.9,6,11.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#D5D6D5" d="M5.4,13.2c-0.1,0-0.2,0-0.3-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0l0,0
|
||||
c0,0,0,0,0,0c0.1,0,0.2,0,0.3,0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0C5.4,13.5,5.4,13.4,5.4,13.2C5.5,13.3,5.5,13.3,5.4,13.2
|
||||
C5.5,13.3,5.5,13.3,5.4,13.2C5.5,13.2,5.5,13.2,5.4,13.2z"/>
|
||||
</g>
|
||||
<circle fill="#D5D6D5" cx="10.2" cy="7.8" r="0.1"/>
|
||||
<circle fill="#D5D6D5" cx="16.6" cy="3.6" r="0.1"/>
|
||||
<circle fill="#D5D6D5" cx="19.5" cy="4" r="0.1"/>
|
||||
<circle fill="#D5D6D5" cx="17.9" cy="5.1" r="0.1"/>
|
||||
<circle fill="#D5D6D5" cx="14.2" cy="4.4" r="0.1"/>
|
||||
</g>
|
||||
<path fill="#C61717" d="M16.1,2C8.4,2,2.1,8.3,2.1,15.9c0,7.7,6.2,13.9,13.9,13.9S30,23.6,30,15.9C30,8.3,23.7,2,16.1,2z
|
||||
M16.1,29.3c-7.4,0-13.4-6-13.4-13.4c0-7.4,6-13.4,13.4-13.4s13.4,6,13.4,13.4C29.4,23.3,23.4,29.3,16.1,29.3z"/>
|
||||
</g>
|
||||
</switch>
|
||||
<i:pgf id="adobe_illustrator_pgf">
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
<![CDATA[
|
||||
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
|
||||
]]>
|
||||
</i:pgf>
|
||||
</svg>
|
Before Width: | Height: | Size: 70 KiB |
@@ -1,305 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16" y1="3.8982" x2="16" y2="26.4613">
|
||||
<stop offset="0" style="stop-color:#B2C9CC"/>
|
||||
<stop offset="0.2185" style="stop-color:#8FA1A3"/>
|
||||
<stop offset="0.4362" style="stop-color:#738182"/>
|
||||
<stop offset="0.6435" style="stop-color:#5E6A6A"/>
|
||||
<stop offset="0.8362" style="stop-color:#525C5C"/>
|
||||
<stop offset="1" style="stop-color:#4E5757"/>
|
||||
</linearGradient>
|
||||
<circle fill="url(#SVGID_1_)" cx="16" cy="15.8" r="14.1"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="15.6121" y1="12.8788" x2="15.6121" y2="30.5654">
|
||||
<stop offset="0" style="stop-color:#B6CCD1"/>
|
||||
<stop offset="1.855779e-02" style="stop-color:#B3C8CD"/>
|
||||
<stop offset="0.2369" style="stop-color:#8FA0A3"/>
|
||||
<stop offset="0.4494" style="stop-color:#738082"/>
|
||||
<stop offset="0.6519" style="stop-color:#5E696A"/>
|
||||
<stop offset="0.8401" style="stop-color:#525C5C"/>
|
||||
<stop offset="1" style="stop-color:#4E5757"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M1,17.6c0.3-0.2,0.6-0.5,0.9-0.9c1.6-2,2.9-4.2,3.7-5.4c0.3,1.5,3.4,6.8,6.8,7.9
|
||||
c4.8,1.6,7.1,0,8.4-1.3c3.3-3.2,4.3-6.7,5.4-8.2c1.2,1.5,1.6,3.6,3,4.8c0.4,0.3,1,1,1.4,1.2c-0.1,5.2-1.6,15.1-13.8,15.1
|
||||
S-1,19.3,1,17.6z"/>
|
||||
<rect x="13.2" y="9.7" fill="#6D6460" width="0.4" height="3.2"/>
|
||||
<path fill="#DE9537" d="M22,8.9l-0.2,0.1C21.9,9,22,9,22,8.9z"/>
|
||||
<g>
|
||||
<polygon fill="#DDDBD4" points="22.5,28.5 22.5,28.5 24.9,27.4 26.9,25 28.9,22.4 30.1,17.7 1.9,17.7 2.4,20.6 4.4,24.6 8.5,28.4
|
||||
12,30.1 18.3,30.2 "/>
|
||||
<rect x="13.2" y="9" fill="#725835" width="5.4" height="3.2"/>
|
||||
<rect x="18.3" y="9" fill="#6D6460" width="0.4" height="3.2"/>
|
||||
<rect x="15.8" y="9" fill="#6D6460" width="0.4" height="3.2"/>
|
||||
<polygon fill="#A03C2E" points="10,17.7 21.9,17.7 21.7,14.2 10.2,14.2 "/>
|
||||
<polygon fill="#DDDBD4" points="10.3,12 10.2,13.9 21.7,13.9 21.6,12 "/>
|
||||
<polygon fill="#EDE9DD" points="21.4,11.7 16,11.7 10.5,11.7 9.6,12.5 16,12.5 22.3,12.5 "/>
|
||||
<path fill="#966626" d="M23.5,8l-0.3-0.5L22,8.3c-0.1,0-0.1,0.1-0.2,0.1C19.6,9.5,16,9.3,16,9.3c-3.5,0-5.9-0.9-5.9-0.9L8.7,7.6
|
||||
L8.5,8l1.3,0.8C9.7,9.1,9.6,9.3,9.6,9.3s1.2,0.6,3.6,0.8c0,0,1,0.1,2.7,0.1s2.7-0.1,2.7-0.1c2.5-0.3,3.6-0.8,3.6-0.8s0-0.2-0.1-0.5
|
||||
L23.5,8z"/>
|
||||
<path fill="#DE9537" d="M21.8,8.4c-2,0.7-3.4-1-3.9-1.4c-0.4-0.4-0.9-1-1.4-1.3h-0.3c0.1,0,0.1-0.1,0.1-0.2V5
|
||||
c0-0.1-0.1-0.2-0.2-0.2l0,0c0,0,0,0,0,0v0c0,0,0-0.1,0-0.1h0.1h0.3c0,0,0.1,0,0.1-0.1l0-0.1c0,0,0-0.1-0.1-0.1h-0.5c0,0,0,0,0,0v0
|
||||
c0,0,0,0,0,0l0,0c0.1,0,0.1-0.1,0.1-0.2V3.7c0-0.1-0.1-0.2-0.2-0.2h0c0,0,0,0,0,0v0c0,0,0,0,0,0h0.3c0,0,0,0,0-0.1l0-0.1
|
||||
c0,0,0-0.1-0.1-0.1h-0.1h-0.1c0,0,0,0,0,0v0c0,0,0,0,0,0l0,0c0.1,0-0.2-0.9-0.2-0.9c0,0,0,0,0,0c0,0-0.3,0.9-0.2,0.9l0,0
|
||||
c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.1h-0.1c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0,0.1h0.3c0,0,0,0,0,0v0c0,0,0,0,0,0h0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2v0.4c0,0.1,0.1,0.1,0.1,0.2l0,0c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.5c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0.1,0.1
|
||||
h0.3h0.1c0,0,0,0,0,0.1v0c0,0,0,0,0,0l0,0c-0.1,0-0.2,0.1-0.2,0.2v0.5c0,0.1,0.1,0.2,0.1,0.2h-0.3c-0.5,0.3-1,1-1.4,1.3
|
||||
c-0.5,0.5-1.9,2.1-3.9,1.4c0,0,2.3,0.9,5.9,0.9C16,9.3,19.6,9.5,21.8,8.4z"/>
|
||||
<rect x="17.5" y="14.7" fill="#6D6460" width="2" height="2"/>
|
||||
<g>
|
||||
<rect x="17.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="17.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
|
||||
</g>
|
||||
<path fill="#D6D6D6" d="M18.7,10.1c-1.8,0.2-3.6,0.2-5.4,0v0.6c1.8,0.2,3.6,0.2,5.4,0V10.1z"/>
|
||||
<g>
|
||||
<polygon fill="#D6D6D6" points="21.7,14.4 10.2,14.5 10.2,13.9 21.7,13.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#D6D6D6" points="30.1,18.5 1.8,18.6 1.8,18 30,18 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#D6D6D6" points="21.7,13 10.2,13.1 10.2,12.5 21.7,12.5 "/>
|
||||
</g>
|
||||
<rect x="12.4" y="14.7" fill="#6D6460" width="2" height="2"/>
|
||||
<g>
|
||||
<rect x="12.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="12.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon fill="#A03C2E" points="20.1,30.9 16.6,31.5 10.8,30.4 7.4,28.9 6.2,27.1 26.9,27.1 22.5,29.8 "/>
|
||||
<rect x="12.6" y="28.1" fill="#6D6460" width="2" height="2"/>
|
||||
<rect x="17.2" y="28.1" fill="#6D6460" width="2" height="2"/>
|
||||
<polygon fill="#6D6460" points="22.7,30.1 21.9,30.1 21.9,28.1 23.9,28.1 23.9,29.3 "/>
|
||||
<polygon fill="#6D6460" points="10.6,30.1 9.1,30.1 8.6,29.5 8.6,28.1 10.6,28.1 "/>
|
||||
<g>
|
||||
<rect x="17.3" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="12.8" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#9DA5A5" points="22.1,28.2 23.8,28.2 23.8,29.4 23.4,29.9 22.1,29.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="8.7" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#626666" d="M30.7,17.5c-2.2-0.8-3.8-1.9-3.9-1.9l-0.1,0l-0.1,0c0,0-5,3.2-10.3,3.2c-3.7,0-7.4-1.5-9.6-2.4
|
||||
c-0.8-0.3-1.2-0.5-1.5-0.6v0h0c-0.2,0-0.3,0-0.3,0C4.7,16,3.1,16.5,1.7,17c-0.8,0.3-1,0.6,0.1,0.2c1.3-0.5,2.8-1,3.2-1.2l0.3,0
|
||||
c0.3,0.1,0.8,0.3,1.4,0.5c2.2,0.9,5.9,2.4,9.7,2.4c4.8,0,9.2-2.5,10.2-3.1l0.3,0c0.6,0.4,1.9,1.2,3.8,1.9
|
||||
C30.9,17.6,30.9,17.6,30.7,17.5z"/>
|
||||
<path fill="#626666" d="M9,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C8.5,17.1,8.3,17,8.1,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
|
||||
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
|
||||
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L6.1,16C5.9,16,5.9,16,5.8,16l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7c0,0,0,0,0,0
|
||||
c0,0,0-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.2,0.3,0.2,0.4
|
||||
c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2c0-0.1-0.1-0.2-0.2-0.3
|
||||
c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H3.3c-0.1,0-0.6,0.3-0.6,0.3L2.6,17c0,0,0,0-0.1,0l-0.1,0C2.2,17,2.1,17.1,2,17.3c0,0,0,0,0,0.1
|
||||
c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.4,1l0.1,0.1
|
||||
H2l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1l0.1-0.1l0-0.1c0,0-0.1-0.3-0.2-0.4l-0.2-0.6c0-0.1,0-0.2,0-0.2
|
||||
c0,0,0,0,0.2-0.1L2.8,18c0.1,0,0.2-0.2,0.1-0.3l0-0.1C3,17.9,3.1,18,3.1,18c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.3
|
||||
c0,0.1-0.1,0.2-0.4,0.3L3.7,19l0.1,0.1c0,0,0,0.1,0.2,0.2l0.3,0.2c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6
|
||||
l0-0.2c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
|
||||
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3L7,19l0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1l0.2,0
|
||||
c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
|
||||
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9c0-0.1,0.3-0.6,0.3-0.7C9.1,17.9,9.1,17.7,9,17.5z"/>
|
||||
<path fill="#626666" d="M11.4,18.4c-0.2-0.3-0.4-0.5-0.8-0.6c-0.1,0-0.3-0.1-0.4-0.1c-0.2,0-0.4,0.1-0.6,0.2
|
||||
C9.3,18,9.1,18.3,9,18.7c-0.1,0.4-0.1,0.7,0.1,1c0.2,0.3,0.4,0.5,0.8,0.6c0.1,0,0.3,0.1,0.4,0.1c0.2,0,0.4-0.1,0.6-0.1
|
||||
c0.3-0.2,0.5-0.4,0.6-0.8C11.6,19,11.5,18.7,11.4,18.4z M10.4,19.3c0,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.1-0.1-0.2-0.2
|
||||
c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.2,0.1-0.2c0,0,0.1,0,0.1,0l0.1,0c0.1,0,0.1,0.1,0.2,0.1c0,0.1,0,0.2,0,0.3
|
||||
C10.5,19.2,10.5,19.3,10.4,19.3z"/>
|
||||
<path fill="#626666" d="M13.5,18.4l-0.1,0c-0.1,0-0.3,0-0.4,0.1c0,0-0.1,0-0.1,0c0-0.1,0-0.2-0.2-0.3c-0.1,0-0.2,0-0.4,0
|
||||
c-0.2,0-0.3,0-0.4,0l-0.1,0.1l0,0.1c0,0.2,0,0.5,0,0.9l-0.2,1.1l0,0.2l0.1,0c0.1,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0
|
||||
c0.1,0,0.2-0.1,0.2-0.2l0.2-1.2c0,0,0,0,0.1-0.1c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c0.1,0,0.2,0,0.1,0.2L13,20c0,0.1-0.1,0.6-0.1,0.6
|
||||
c0,0.1,0,0.2,0.1,0.2c0,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0h0l0.2-0.1l0.3-1.7c0-0.2,0-0.4-0.2-0.6C13.9,18.5,13.7,18.4,13.5,18.4z"
|
||||
/>
|
||||
<path fill="#626666" d="M17,18.8L17,18.8c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3-0.1-0.3-0.1c-0.1,0-0.1,0.1-0.2,0.1
|
||||
c-0.1-0.1-0.3-0.2-0.6-0.2c-0.4,0-0.7,0.1-0.9,0.4c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.3,0.1,0.6,0.3,0.9c0.2,0.3,0.5,0.4,0.8,0.4h0
|
||||
c0.2,0,0.3-0.1,0.5-0.2c0,0.1,0.1,0.2,0.2,0.2l0.2,0c0.2,0,0.3,0,0.4,0c0.1,0,0.2-0.1,0.2-0.2c0-0.1,0-0.3,0-0.5c0-0.2,0-0.4,0-0.5
|
||||
c0-0.3,0-0.6,0.1-0.9L17,18.8z M15.8,20.1c-0.1,0.1-0.1,0.1-0.2,0.1h0c-0.1,0-0.2,0-0.2-0.1c-0.1-0.1-0.1-0.1-0.1-0.2
|
||||
c0-0.1,0-0.2,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.1h0c0.1,0,0.2,0,0.2,0.1c0.1,0.1,0.1,0.1,0.1,0.2C15.9,19.9,15.9,20,15.8,20.1z"/>
|
||||
<path fill="#626666" d="M18.3,19.4c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0-0.1,0-0.1c0,0,0.1,0,0.3-0.1l0.1,0l0-0.1l0.1-0.1l0,0
|
||||
c0,0,0-0.1-0.2-0.3c-0.2-0.2-0.2-0.3-0.3-0.3h0c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.4,0.4-0.3,0.7c0,0.1,0.1,0.3,0.2,0.4
|
||||
c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.1,0.1c0,0,0,0.1-0.1,0.1l-0.3,0.1l-0.1,0.1l0,0.1c0,0,0,0.1,0.2,0.3
|
||||
c0.2,0.2,0.2,0.3,0.3,0.3h0c0.2,0,0.3-0.1,0.5-0.2c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2,0-0.3
|
||||
c0-0.2-0.1-0.3-0.2-0.4C18.5,19.6,18.5,19.5,18.3,19.4z"/>
|
||||
<path fill="#626666" d="M22.9,19.2c-0.1-0.1-0.2-0.2-0.2-0.2c0.1,0,0.1,0,0.1,0c0.1,0,0.2-0.2,0.1-0.4c-0.1-0.3-0.3-0.6-0.6-0.7
|
||||
c-0.2-0.1-0.4-0.2-0.6-0.2c-0.1,0-0.2,0-0.3,0c-0.4,0.1-0.6,0.3-0.8,0.6c-0.1,0.2-0.1,0.4-0.1,0.6l-0.1-0.1h-0.1
|
||||
c-0.1,0-0.4,0.1-0.4,0.1c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.1-0.2-0.1c0,0-0.4,0-0.4,0l-0.2,0c0,0-0.1,0-0.1,0
|
||||
l-0.1,0l0,0c0,0.1,0,0.1,0,0.4L19,19c0,0.1,0,0.2,0,0.2h0c-0.2,0-0.2,0.1-0.2,0.2l0.1,0.3l0,0.2c0,0.1,0.1,0.1,0.2,0.1l0.1,0
|
||||
c0,0.1,0,0.2,0.1,0.4c0,0.2,0.1,0.4,0.1,0.5c0.1,0.3,0.3,0.5,0.6,0.5c0.1,0,0.2,0,0.2,0c0.3,0,0.5-0.1,0.7-0.3C20.9,21,21,21,21,21
|
||||
l0-0.1l0,0c0,0,0-0.1,0-0.2c0-0.1,0-0.2,0-0.2l-0.1-0.1h-0.1c0,0-0.1,0-0.2,0.1c-0.1,0-0.1,0-0.1,0l-0.1,0c0,0,0-0.1-0.1-0.2l0-0.2
|
||||
l0-0.1l0.4-0.1l0.2-0.1l-0.1-0.3c0.1,0.3,0.3,0.6,0.6,0.7c0.2,0.1,0.4,0.1,0.6,0.1c0.1,0,0.3,0,0.4-0.1c0.4-0.1,0.7-0.3,0.8-0.6
|
||||
l0-0.1l0,0C23.1,19.5,23.1,19.4,22.9,19.2z M21.5,18.7c0-0.1,0.1-0.1,0.1-0.1l0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1
|
||||
c0,0,0,0,0,0c-0.2,0.1-0.4,0.2-0.4,0.2C21.5,18.8,21.5,18.7,21.5,18.7z M22.4,19.2c-0.1,0.1-0.2,0.2-0.3,0.2c0,0-0.1,0-0.2,0
|
||||
c0,0-0.1,0-0.1,0c0,0,0,0,0,0C22.1,19.3,22.4,19.2,22.4,19.2L22.4,19.2z"/>
|
||||
<path fill="#626666" d="M30.7,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C30.1,17.1,30,17,29.8,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
|
||||
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
|
||||
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L27.7,16c-0.1,0-0.2-0.1-0.2-0.1l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7
|
||||
c0-0.1-0.1-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.1,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2
|
||||
c0-0.1-0.1-0.2-0.2-0.3c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H25c-0.1,0-0.6,0.3-0.6,0.3c-0.1,0-0.1,0.1-0.1,0.1l0,0c0,0,0-0.1-0.1-0.1
|
||||
l-0.1,0l0,0c-0.1,0.1-0.3,0.2-0.4,0.3c0,0,0,0,0,0.1c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2
|
||||
l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.2,0.4l0.1,0.2l0.2,0.4l0.1,0.1h0.1l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1
|
||||
l0.1-0.1c0,0-0.2-0.4-0.2-0.5l-0.2-0.6c0-0.1,0-0.2,0-0.2c0,0,0,0,0.2-0.1l0.2-0.1c0.1,0,0.2-0.2,0.1-0.3l0-0.1
|
||||
c0.1,0.3,0.2,0.3,0.2,0.4c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.1,0.1-0.2,0.2-0.3,0.3
|
||||
L25.3,19l0.1,0.1c0,0,0,0.1,0.2,0.1l0.4,0.3c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6l0-0.2
|
||||
c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
|
||||
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3l0.1,0c0,0,0.3-0.6,0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1
|
||||
l0.2,0c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
|
||||
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9l0.3-0.7C30.8,17.9,30.8,17.7,30.7,17.5z"/>
|
||||
<path fill="#B2838D" d="M8.2,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,18.3,8,18.2,8,18c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,18.7,7,18.8,7,18.9c0,0-0.1,0.1-0.1,0l-0.6-0.3
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3C6.4,18.1,6.5,18,6.5,18c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
|
||||
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
|
||||
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.4C8.3,19.3,8.3,19.4,8.2,19.5z"/>
|
||||
<path fill="#5A8E55" d="M11.4,19.3c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
|
||||
C9.1,19.3,9,19,9.1,18.7c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5C11.4,18.7,11.5,19,11.4,19.3z
|
||||
M10.6,19.1c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.2,0.2-0.2,0.3c0,0.1,0,0.2,0,0.3
|
||||
c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,19.3,10.6,19.2,10.6,19.1z"/>
|
||||
<path fill="#4F80B2" d="M13.8,20.8C13.8,20.9,13.8,20.9,13.8,20.8c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1S13,20.7,13,20.7
|
||||
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
|
||||
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5
|
||||
L14,19.9c0,0.1,0,0.2-0.1,0.4C13.9,20.6,13.8,20.7,13.8,20.8z"/>
|
||||
<path fill="#CCC381" d="M16.8,19.8c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
|
||||
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
|
||||
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,19.2,16.8,19.5,16.8,19.8z M16,19.8c0-0.1,0-0.2-0.1-0.3
|
||||
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
|
||||
c0.1,0,0.2,0,0.3-0.1C16,20.1,16,20,16,19.8z"/>
|
||||
<path fill="#5A8E55" d="M18.6,19C18.6,19,18.6,19,18.6,19C18.5,19,18.5,19,18.4,19c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.1,0.1-0.1,0.2
|
||||
c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.2-0.1,0.2
|
||||
c-0.1,0.1-0.2,0.2-0.4,0.3C18,20.9,17.8,21,17.7,21c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3c0,0,0,0,0,0
|
||||
c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2c-0.1-0.1-0.1-0.2-0.1-0.3
|
||||
c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,18.8,18.6,18.9,18.6,19z"/>
|
||||
<path fill="#B2838D" d="M20.8,20.4c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
|
||||
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0c0,0,0.1,0,0.1,0
|
||||
c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0.1,0,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0l-0.2,0c0,0,0,0,0,0.1
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
|
||||
C20.7,20.4,20.7,20.4,20.8,20.4C20.8,20.4,20.8,20.4,20.8,20.4z"/>
|
||||
<path fill="#4F80B2" d="M22.9,18.6c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
|
||||
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
|
||||
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
|
||||
c0.3-0.1,0.6,0,0.8,0.1C22.6,18.1,22.8,18.3,22.9,18.6z M22,18.7c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,18.9,21.8,18.9,22,18.7C22,18.7,22,18.7,22,18.7z"/>
|
||||
<path fill="#CCC381" d="M24.5,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
|
||||
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
|
||||
c0,0,0,0.1,0.1,0.2C24.5,17.7,24.5,17.7,24.5,17.7z"/>
|
||||
<path fill="#B2838D" d="M26.7,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
|
||||
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
|
||||
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,16,26.6,16.1,26.7,16.4z"/>
|
||||
<path fill="#5A8E55" d="M29.9,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.1,0.2-0.1,0.3c0,0-0.1,0.1-0.1,0l-0.6-0.3
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
|
||||
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2s-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
|
||||
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.4C30,19.3,29.9,19.4,29.9,19.5z"/>
|
||||
<path fill="#C4BCB1" d="M2.8,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
|
||||
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
|
||||
c0,0,0,0.1,0.1,0.2C2.8,17.7,2.8,17.7,2.8,17.7z"/>
|
||||
<path fill="#CCC381" d="M5,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6C5,18.8,5,19,5,19.1
|
||||
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
|
||||
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2C4.5,16,4.6,16,4.6,15.9
|
||||
c0,0,0.1,0,0.1,0C4.8,16,4.9,16.1,5,16.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#586689" d="M8.2,23.6c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,22.4,8,22.3,8,22.1c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,22.8,7,22.9,7,23c0,0-0.1,0.1-0.1,0l-0.6-0.3
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
|
||||
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
|
||||
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3C9,21.8,9,22,8.9,22.2c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.4C8.3,23.4,8.3,23.5,8.2,23.6z"/>
|
||||
<path fill="#586689" d="M11.4,23.4c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
|
||||
c-0.1-0.3-0.2-0.6-0.1-0.9c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5
|
||||
C11.4,22.8,11.5,23.1,11.4,23.4z M10.6,23.2c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1
|
||||
C10,22.8,9.9,22.9,9.9,23c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,23.4,10.6,23.3,10.6,23.2z"/>
|
||||
<path fill="#586689" d="M13.8,24.9C13.8,24.9,13.8,25,13.8,24.9c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1c0,0-0.1-0.1-0.1-0.1
|
||||
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
|
||||
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
|
||||
c0,0,0,0.1,0,0.2s0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5L14,24
|
||||
c0,0.1,0,0.2-0.1,0.4C13.9,24.7,13.8,24.8,13.8,24.9z"/>
|
||||
<path fill="#586689" d="M16.8,23.9c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
|
||||
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
|
||||
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,23.3,16.8,23.6,16.8,23.9z M16,23.9c0-0.1,0-0.2-0.1-0.3
|
||||
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
|
||||
c0.1,0,0.2,0,0.3-0.1C16,24.2,16,24.1,16,23.9z"/>
|
||||
<path fill="#586689" d="M18.6,23.1C18.6,23.1,18.6,23.1,18.6,23.1c-0.1,0.1-0.1,0.1-0.2,0.1c-0.1,0-0.2,0-0.2,0.1
|
||||
c-0.1,0.1-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3
|
||||
c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.4,0.1c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3
|
||||
c0,0,0,0,0,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,22.9,18.6,23,18.6,23.1z"/>
|
||||
<path fill="#586689" d="M20.8,24.5c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
|
||||
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0
|
||||
c0,0,0.1,0,0.1,0c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0
|
||||
l-0.2,0c0,0,0,0,0,0.1c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
|
||||
C20.7,24.5,20.7,24.5,20.8,24.5C20.8,24.5,20.8,24.5,20.8,24.5z"/>
|
||||
<path fill="#586689" d="M22.9,22.7c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
|
||||
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
|
||||
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
|
||||
c0.3-0.1,0.6,0,0.8,0.1C22.6,22.2,22.8,22.4,22.9,22.7z M22,22.8c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,23,21.8,23,22,22.8C22,22.8,22,22.8,22,22.8z"/>
|
||||
<path fill="#586689" d="M24.5,21.8c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
|
||||
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
|
||||
c0,0,0,0.1,0.1,0.2C24.5,21.8,24.5,21.8,24.5,21.8z"/>
|
||||
<path fill="#586689" d="M26.7,20.5c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
|
||||
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3
|
||||
c0-0.2,0-0.3,0-0.3C26,21,26,20.9,25.9,20.8c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,20.1,26.6,20.2,26.7,20.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#A03C2E" d="M16,0.3C7.3,0.3,0.2,7.3,0.2,16s7,15.7,15.7,15.7s15.7-7,15.7-15.7S24.7,0.3,16,0.3z M16,30
|
||||
C8.2,30,2,23.7,2,16C2,8.3,8.2,2,16,2s14,6.3,14,14C29.9,23.7,23.7,30,16,30z"/>
|
||||
<path fill="#682721" d="M16,0.9C7.6,0.9,0.9,7.7,0.9,16S7.6,31.1,16,31.1S31.1,24.3,31.1,16S24.3,0.9,16,0.9z M16,30.7
|
||||
C7.9,30.7,1.3,24.1,1.3,16C1.3,7.9,7.9,1.3,16,1.3S30.6,7.9,30.6,16C30.6,24.1,24.1,30.7,16,30.7z"/>
|
||||
<path fill="#682721" d="M16,0.2C7.3,0.2,0.2,7.3,0.2,16S7.3,31.8,16,31.8S31.7,24.7,31.7,16S24.7,0.2,16,0.2z M16,31.3
|
||||
C7.5,31.3,0.6,24.5,0.6,16C0.6,7.5,7.5,0.7,16,0.7S31.3,7.5,31.3,16C31.3,24.5,24.4,31.3,16,31.3z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 28 KiB |
@@ -1,299 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<path fill="#4D4846" d="M4.237,30.16l-0.001-1.773L4.237,30.16c-0.632,0-1.224-0.246-1.669-0.693
|
||||
c-0.444-0.446-0.688-1.039-0.686-1.669V3.964c0-1.298,1.056-2.354,2.354-2.354l23.841,0c0.631,0,1.224,0.246,1.669,0.692
|
||||
c0.444,0.446,0.688,1.039,0.686,1.669v23.835c0,1.298-1.056,2.354-2.354,2.354H4.237z"/>
|
||||
<path fill="#231D13" d="M3.941,29.273v-0.029c-0.28-0.057-0.539-0.195-0.745-0.402c-0.276-0.278-0.429-0.648-0.427-1.041V3.964
|
||||
c0-0.81,0.657-1.468,1.467-1.468l23.841,0c0.394,0,0.764,0.153,1.041,0.432c0.276,0.278,0.429,0.647,0.427,1.041v23.837
|
||||
c0,0.81-0.657,1.468-1.467,1.468H3.941z"/>
|
||||
<path fill="#EEE8D8" d="M4.237,28.978l-0.001-0.591L4.237,28.978c-0.315,0-0.609-0.122-0.832-0.345
|
||||
c-0.221-0.222-0.343-0.518-0.341-0.831V3.964c0-0.646,0.525-1.172,1.172-1.172l23.841,0c0.313,0,0.609,0.122,0.832,0.345
|
||||
c0.221,0.222,0.343,0.518,0.342,0.831v23.838c0,0.646-0.526,1.172-1.173,1.172H4.237z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.1577" y1="3.2583" x2="16.1577" y2="28.5112">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.2701" style="stop-color:#B0A289"/>
|
||||
<stop offset="0.4539" style="stop-color:#AB9F86"/>
|
||||
<stop offset="0.612" style="stop-color:#A39B81"/>
|
||||
<stop offset="0.7556" style="stop-color:#999579"/>
|
||||
<stop offset="0.8881" style="stop-color:#8A8B6E"/>
|
||||
<stop offset="1" style="stop-color:#797E61"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_1_)" d="M28.196,3.258c0.325,0,0.589,0.263,0.588,0.588v24.077c0,0.325-0.263,0.587-0.587,0.587H4.118
|
||||
c-0.324,0.001-0.589-0.262-0.587-0.588V3.846c0-0.326,0.262-0.588,0.587-0.587L28.196,3.258z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="5.8398" y1="28.5112" x2="5.8398" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="5.741" y="3.259" fill="url(#SVGID_2_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="8.105" y1="28.5112" x2="8.105" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="8.007" y="3.259" fill="url(#SVGID_3_)" width="0.196" height="25.252"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="12.7832" y1="28.5112" x2="12.7832" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="12.685" y="3.259" fill="url(#SVGID_4_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="18.249" y1="28.5112" x2="18.249" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="18.15" y="3.259" fill="url(#SVGID_5_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="19.481" y1="28.5112" x2="19.481" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="19.383" y="3.259" fill="url(#SVGID_6_)" width="0.196" height="25.252"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="23.9121" y1="28.5112" x2="23.9121" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="23.813" y="3.259" fill="url(#SVGID_7_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="26.7686" y1="28.5112" x2="26.7686" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="26.67" y="3.259" fill="url(#SVGID_8_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="27.5195" y1="28.5112" x2="27.5195" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="27.421" y="3.259" fill="url(#SVGID_9_)" width="0.197" height="25.252"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#B5AFA0" d="M22.065,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
|
||||
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
|
||||
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
|
||||
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
|
||||
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C22.429,24.337,22.281,24.303,22.065,24.303
|
||||
L22.065,24.303z M21.858,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
|
||||
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C21.936,26.375,21.912,26.392,21.858,26.392
|
||||
L21.858,26.392z"/>
|
||||
<path fill="#B5AFA0" d="M19.213,24.303c-0.044,0-0.269,0.014-0.328,0.291v0c0,0-0.066,0.294-0.066,0.39
|
||||
c0,0.227,0.164,0.345,0.325,0.345h0.232l0.074-0.213c0.016-0.001,0.035-0.002,0.06-0.003l0.112-0.003v0.855
|
||||
c0,0.19,0,0.372-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
|
||||
c0.068,0,0.157-0.002,0.234-0.005l0.124-0.003l0.126,0.003c0.089,0.002,0.203,0.005,0.319,0.005c0.229,0,0.354-0.169,0.354-0.328
|
||||
c0-0.148-0.108-0.304-0.309-0.321c-0.006-0.127-0.006-0.297-0.006-0.474v-0.856l0.052,0.001c0.026,0,0.047,0.002,0.064,0.004
|
||||
c0.058,0.192,0.214,0.243,0.311,0.243c0.141,0,0.302-0.098,0.325-0.314c0.001-0.068,0.004-0.137,0.006-0.202l0.003-0.158
|
||||
c0-0.284-0.211-0.359-0.322-0.359c-0.041,0-0.074,0.007-0.116,0.016c-0.041,0.006-0.089,0.013-0.156,0.013h-1.124
|
||||
c-0.084,0-0.18-0.005-0.253-0.013C19.338,24.327,19.285,24.303,19.213,24.303L19.213,24.303z"/>
|
||||
<path fill="#B5AFA0" d="M17.826,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
|
||||
c0.854,0,1.475-0.615,1.475-1.463C19.272,24.85,18.691,24.303,17.826,24.303L17.826,24.303z M17.917,26.386
|
||||
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
|
||||
C18.275,26.051,18.213,26.386,17.917,26.386L17.917,26.386z"/>
|
||||
<path fill="#B5AFA0" d="M15.193,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
|
||||
c0.854,0,1.475-0.615,1.475-1.463C16.64,24.85,16.059,24.303,15.193,24.303L15.193,24.303z M15.284,26.386
|
||||
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
|
||||
C15.643,26.051,15.58,26.386,15.284,26.386L15.284,26.386z"/>
|
||||
<path fill="#B5AFA0" d="M13.611,24.343c-0.064,0-0.151,0.002-0.228,0.005l-0.129,0.003l-0.13-0.003
|
||||
c-0.084-0.002-0.186-0.005-0.279-0.005c-0.225,0-0.328,0.141-0.353,0.264c-0.025-0.123-0.128-0.264-0.353-0.264
|
||||
c-0.065,0-0.153,0.002-0.23,0.005l-0.127,0.003l-0.13-0.003c-0.084-0.002-0.186-0.005-0.279-0.005
|
||||
c-0.264,0-0.359,0.194-0.359,0.325c0,0.143,0.1,0.294,0.286,0.321c0.001,0.084,0.001,0.212,0.001,0.477v0.5
|
||||
c0,0.19,0,0.373-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
|
||||
c0.067,0,0.156-0.002,0.233-0.005l0.125-0.003l0.126,0.003c0.089,0.002,0.201,0.005,0.316,0.005c0.177,0,0.292-0.099,0.336-0.216
|
||||
c0.044,0.119,0.159,0.216,0.34,0.216c0.065,0,0.153-0.002,0.229-0.005l0.125-0.003l0.128,0.003
|
||||
c0.089,0.002,0.201,0.005,0.315,0.005c0.231,0,0.356-0.169,0.356-0.328c0-0.147-0.108-0.304-0.309-0.321
|
||||
c-0.006-0.127-0.006-0.297-0.006-0.474v-0.5c0-0.282,0-0.408,0.001-0.488c0.165-0.048,0.243-0.18,0.243-0.31
|
||||
C13.971,24.537,13.875,24.343,13.611,24.343L13.611,24.343z M12.255,24.978c0.137-0.041,0.214-0.138,0.236-0.245
|
||||
c0.024,0.123,0.119,0.233,0.279,0.256c0.001,0.057,0.001,0.133,0.002,0.256h-0.519C12.254,25.11,12.254,25.033,12.255,24.978
|
||||
L12.255,24.978z M12.254,25.998h0.519c0,0.179,0,0.347-0.006,0.457c-0.114,0.036-0.185,0.111-0.217,0.195
|
||||
c-0.04-0.107-0.138-0.199-0.289-0.211C12.254,26.32,12.254,26.163,12.254,25.998L12.254,25.998z"/>
|
||||
<path fill="#B5AFA0" d="M10.452,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
|
||||
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
|
||||
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
|
||||
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
|
||||
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C10.815,24.337,10.667,24.303,10.452,24.303
|
||||
L10.452,24.303z M10.245,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
|
||||
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C10.323,26.375,10.299,26.392,10.245,26.392
|
||||
L10.245,26.392z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#EEE8D8" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
|
||||
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
|
||||
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
|
||||
<path fill="none" d="M18.305,13.939l-2.101,2.101c-0.029,0.028-0.075,0.028-0.104,0l-2.1-2.101c-0.028-0.028-0.028-0.074,0-0.103
|
||||
l2.1-2.1c0.028-0.028,0.074-0.028,0.104,0l2.101,2.1C18.332,13.865,18.332,13.911,18.305,13.939z"/>
|
||||
<path fill="#B5AFA0" d="M7.621,13.089l0.038-0.311c0.486-3.856,3.52-6.881,7.377-7.355l0.31-0.038v1.91L15.11,7.33
|
||||
c-2.835,0.419-5.114,2.691-5.544,5.524l-0.035,0.235H7.621z"/>
|
||||
<path fill="#4D4846" d="M15.07,7.056v-1.36c-3.72,0.458-6.669,3.399-7.137,7.116h1.359C9.743,9.842,12.097,7.496,15.07,7.056z"/>
|
||||
<path fill="#B5AFA0" d="M22.635,13.088l-0.036-0.234c-0.424-2.796-2.58-5.004-5.367-5.494l-0.228-0.041V5.4l0.316,0.046
|
||||
c3.756,0.548,6.711,3.563,7.186,7.332l0.039,0.311H22.635z"/>
|
||||
<path fill="#4D4846" d="M17.28,5.72v1.368c2.886,0.508,5.151,2.816,5.591,5.725h1.361C23.771,9.157,20.912,6.25,17.28,5.72z"/>
|
||||
<path fill="#B5AFA0" d="M16.957,20.384l0.23-0.039c2.77-0.468,4.938-2.643,5.396-5.414l0.038-0.231h1.916l-0.043,0.314
|
||||
c-0.514,3.74-3.483,6.718-7.223,7.242L16.957,22.3V20.384z"/>
|
||||
<path fill="#4D4846" d="M17.233,20.617v1.366c3.624-0.509,6.488-3.379,6.986-7.007h-1.364
|
||||
C22.38,17.856,20.111,20.131,17.233,20.617z"/>
|
||||
<path fill="#B5AFA0" d="M15.036,22.274c-3.813-0.469-6.841-3.455-7.364-7.26L7.629,14.7h1.916l0.037,0.231
|
||||
c0.468,2.832,2.69,5.017,5.528,5.436l0.235,0.035v1.911L15.036,22.274z"/>
|
||||
<path fill="#4D4846" d="M9.311,14.976H7.945c0.504,3.673,3.436,6.571,7.125,7.025v-1.36C12.127,20.205,9.794,17.903,9.311,14.976z"
|
||||
/>
|
||||
<path fill="#B5AFA0" d="M10.455,13.089l0.067-0.331c0.45-2.229,2.258-4,4.499-4.405l0.324-0.058v1.767l-0.097,0.083
|
||||
c-1.173,0.997-2.067,1.956-2.884,2.854l-0.082,0.091H10.455z"/>
|
||||
<path fill="#4D4846" d="M15.07,9.934V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h1.368C13.069,11.812,13.935,10.897,15.07,9.934z"
|
||||
/>
|
||||
<path fill="#B5AFA0" d="M19.735,13.089l-0.04-0.147c-0.24-0.277-1.706-1.866-2.601-2.667l-0.091-0.083V8.337l0.34,0.083
|
||||
c2.112,0.508,3.754,2.211,4.185,4.338l0.067,0.331L19.735,13.089z"/>
|
||||
<path fill="#4D4846" d="M17.28,8.688v1.38c1,0.898,2.659,2.714,2.666,2.745h1.312C20.847,10.782,19.283,9.17,17.28,8.688z"/>
|
||||
<path fill="#B5AFA0" d="M15.021,19.4c-2.259-0.408-4.021-2.123-4.491-4.367L10.461,14.7h1.792l0.082,0.087
|
||||
c0.84,0.895,3.011,2.917,3.011,2.917v1.756L15.021,19.4z"/>
|
||||
<path fill="#4D4846" d="M12.134,14.976h-1.333c0.442,2.114,2.135,3.767,4.27,4.152v-1.302
|
||||
C15.036,17.818,13.053,15.955,12.134,14.976z"/>
|
||||
<path fill="#B5AFA0" d="M16.957,17.628c0,0,2.515-2.518,2.727-2.776l0.043-0.153h1.863l-0.07,0.333
|
||||
c-0.445,2.128-2.103,3.822-4.224,4.313l-0.339,0.078V17.628z"/>
|
||||
<path fill="#4D4846" d="M17.233,17.756v1.32c2.015-0.466,3.591-2.071,4.017-4.101h-1.313C19.92,15.035,17.26,17.748,17.233,17.756z
|
||||
"/>
|
||||
<path fill="#B5AFA0" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
|
||||
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
|
||||
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
|
||||
<path fill="#4D4846" d="M16.204,11.736c-0.029-0.028-0.075-0.028-0.104,0l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101
|
||||
c0.028,0.028,0.074,0.028,0.104,0l2.101-2.101c0.027-0.028,0.027-0.074,0-0.103L16.204,11.736z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M9.791,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
|
||||
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
|
||||
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
|
||||
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
|
||||
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
|
||||
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
|
||||
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
|
||||
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C10.041,26.828,9.913,26.808,9.791,26.754z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M13.056,25.545c0.008,0,0.017-0.006,0.017-0.02v-0.06c0-0.432,0-0.511-0.006-0.602
|
||||
c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.07-0.008-0.11-0.008c-0.031,0-0.049-0.006-0.049-0.026
|
||||
c0-0.02,0.021-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.068,0,0.247-0.009,0.357-0.009c0.04,0,0.06,0.006,0.06,0.025
|
||||
c0,0.02-0.017,0.026-0.051,0.026c-0.022,0-0.049,0.003-0.082,0.008c-0.077,0.014-0.1,0.063-0.105,0.162
|
||||
c-0.006,0.091-0.006,0.17-0.006,0.602v0.5c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
|
||||
c0.04,0.005,0.103,0.011,0.145,0.011c0.031,0,0.046,0.008,0.046,0.022c0,0.02-0.022,0.028-0.057,0.028
|
||||
c-0.185,0-0.363-0.008-0.443-0.008c-0.065,0-0.244,0.008-0.354,0.008c-0.04,0-0.06-0.008-0.06-0.028
|
||||
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.071-0.074,0.082-0.156
|
||||
c0.015-0.119,0.015-0.343,0.015-0.604v-0.25c0-0.011-0.009-0.017-0.017-0.017h-1.085c-0.008,0-0.017,0.003-0.017,0.017v0.25
|
||||
c0,0.261,0,0.485,0.014,0.607c0.009,0.079,0.026,0.142,0.111,0.153c0.039,0.005,0.102,0.011,0.145,0.011
|
||||
c0.031,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.057,0.028c-0.185,0-0.363-0.008-0.442-0.008
|
||||
c-0.065,0-0.244,0.008-0.357,0.008c-0.037,0-0.057-0.008-0.057-0.028c0-0.014,0.011-0.022,0.045-0.022
|
||||
c0.043,0,0.077-0.006,0.103-0.011c0.057-0.012,0.07-0.074,0.082-0.156c0.015-0.119,0.015-0.343,0.015-0.604v-0.5
|
||||
c0-0.432,0-0.511-0.006-0.602c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.071-0.008-0.111-0.008
|
||||
c-0.03,0-0.048-0.006-0.048-0.026c0-0.02,0.02-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.067,0,0.246-0.009,0.357-0.009
|
||||
c0.04,0,0.06,0.006,0.06,0.025c0,0.02-0.018,0.026-0.051,0.026c-0.023,0-0.049,0.003-0.083,0.008
|
||||
c-0.076,0.014-0.099,0.063-0.104,0.162c-0.006,0.091-0.006,0.17-0.006,0.602v0.06c0,0.014,0.009,0.02,0.017,0.02H13.056z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M14.021,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
|
||||
C14.351,26.828,14.021,26.218,14.021,25.715z M15.942,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
|
||||
c0,0.59,0.326,1.059,0.871,1.059C15.483,26.686,15.942,26.59,15.942,25.77z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M16.654,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
|
||||
C16.983,26.828,16.654,26.218,16.654,25.715z M18.575,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
|
||||
c0,0.59,0.326,1.059,0.871,1.059C18.116,26.686,18.575,26.59,18.575,25.77z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M19.922,24.802l-0.423,0.011c-0.164,0.006-0.232,0.02-0.275,0.083c-0.028,0.042-0.042,0.076-0.048,0.099
|
||||
c-0.006,0.022-0.015,0.034-0.031,0.034c-0.021,0-0.025-0.014-0.025-0.045c0-0.045,0.054-0.304,0.06-0.327
|
||||
c0.008-0.037,0.017-0.054,0.034-0.054c0.022,0,0.051,0.028,0.122,0.034c0.082,0.008,0.189,0.014,0.283,0.014h1.124
|
||||
c0.091,0,0.153-0.009,0.196-0.014c0.042-0.009,0.064-0.014,0.076-0.014c0.02,0,0.022,0.017,0.022,0.06
|
||||
c0,0.06-0.008,0.255-0.008,0.329c-0.003,0.028-0.009,0.045-0.026,0.045c-0.022,0-0.028-0.014-0.031-0.057l-0.002-0.031
|
||||
c-0.006-0.074-0.083-0.153-0.335-0.159l-0.358-0.008v1.164c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
|
||||
c0.04,0.005,0.103,0.011,0.146,0.011c0.03,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.054,0.028
|
||||
c-0.188,0-0.366-0.008-0.445-0.008c-0.065,0-0.244,0.008-0.358,0.008c-0.036,0-0.057-0.008-0.057-0.028
|
||||
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.074-0.074,0.083-0.156
|
||||
c0.014-0.119,0.014-0.343,0.014-0.604V24.802z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M21.404,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
|
||||
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
|
||||
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
|
||||
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
|
||||
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
|
||||
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
|
||||
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
|
||||
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C21.654,26.828,21.526,26.808,21.404,26.754z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M9.328,9.176c-0.446,0.645-0.803,1.356-1.052,2.117h1.433c0.316-0.789,0.773-1.505,1.342-2.117H9.328z"/>
|
||||
<path fill="#231D13" d="M15.07,5.696c-1.945,0.24-3.679,1.159-4.959,2.513h2.055c0.849-0.59,1.836-0.995,2.904-1.153V5.696z"/>
|
||||
<path fill="#231D13" d="M17.28,5.72v1.368c0.997,0.176,1.92,0.566,2.719,1.122h2.056C20.815,6.898,19.15,5.993,17.28,5.72z"/>
|
||||
<path fill="#231D13" d="M21.112,9.176c0.569,0.612,1.028,1.328,1.346,2.117h1.432c-0.249-0.761-0.604-1.473-1.052-2.117H21.112z"/>
|
||||
<path fill="#231D13" d="M17.233,21.983c1.613-0.227,3.076-0.922,4.247-1.944h-2.429c-0.567,0.272-1.178,0.47-1.818,0.578V21.983z"
|
||||
/>
|
||||
<path fill="#231D13" d="M22.56,16.127c-0.274,0.78-0.686,1.495-1.204,2.117h1.666c0.412-0.65,0.735-1.361,0.954-2.117H22.56z"/>
|
||||
<path fill="#231D13" d="M15.07,20.64c-0.691-0.102-1.35-0.309-1.957-0.601h-2.427c1.204,1.05,2.716,1.756,4.384,1.961V20.64z"/>
|
||||
<path fill="#231D13" d="M8.191,16.126c0.217,0.756,0.541,1.468,0.953,2.118h1.666c-0.519-0.622-0.93-1.337-1.205-2.118H8.191z"/>
|
||||
<path fill="#231D13" d="M15.07,9.176h-1.571c-0.902,0.485-1.649,1.222-2.146,2.117h2.244c0.453-0.452,0.932-0.9,1.473-1.36V9.176z"
|
||||
/>
|
||||
<path fill="#231D13" d="M18.549,9.176H17.28v0.892c0.367,0.33,0.822,0.783,1.252,1.226h2.163
|
||||
C20.198,10.398,19.452,9.662,18.549,9.176z"/>
|
||||
<path fill="#231D13" d="M13.274,16.127l-2.091,0c0.397,0.853,1.015,1.582,1.776,2.118h2.11v-0.418
|
||||
C15.048,17.821,14.144,16.977,13.274,16.127z"/>
|
||||
<path fill="#231D13" d="M20.865,16.127h-2.024c-0.743,0.763-1.593,1.625-1.607,1.629v0.488h1.855
|
||||
C19.852,17.708,20.468,16.979,20.865,16.127z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M15.07,5.943V5.696c-3.72,0.458-6.669,3.399-7.137,7.116h0.3C8.769,9.282,11.546,6.496,15.07,5.943z"/>
|
||||
<path fill="#231D13" d="M20.343,8.479c1.327,1.054,2.264,2.58,2.528,4.333h0.218C22.764,11.031,21.758,9.495,20.343,8.479z"/>
|
||||
<path fill="#231D13" d="M17.546,5.923c1.316,0.192,2.526,0.705,3.563,1.444c-1.093-0.849-2.396-1.438-3.828-1.647v1.368
|
||||
c0.091,0.016,0.176,0.049,0.266,0.069V5.923z"/>
|
||||
<path fill="#231D13" d="M23.121,15.179h1.054c0.011-0.069,0.035-0.133,0.045-0.203h-1.364c-0.476,2.881-2.744,5.156-5.622,5.641
|
||||
v1.366c0.091-0.013,0.176-0.044,0.266-0.06V20.82C20.377,20.334,22.646,18.06,23.121,15.179z"/>
|
||||
<path fill="#231D13" d="M8.211,15.179h1.15c-0.014-0.069-0.039-0.133-0.051-0.203H7.945c0.316,2.304,1.588,4.301,3.401,5.583
|
||||
C9.677,19.274,8.511,17.367,8.211,15.179z"/>
|
||||
<path fill="#231D13" d="M15.07,20.64c-1.068-0.158-2.053-0.568-2.9-1.159c0.836,0.645,1.822,1.096,2.9,1.3V20.64z"/>
|
||||
<path fill="#231D13" d="M15.07,8.897V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h0.323C11.59,10.871,13.121,9.355,15.07,8.897z"/>
|
||||
<path fill="#231D13" d="M17.546,10.271v-1.38c0.687,0.166,1.316,0.472,1.871,0.874c-0.614-0.507-1.338-0.885-2.137-1.077v1.38"/>
|
||||
<path fill="#231D13" d="M11.066,15.179h1.263c-0.065-0.068-0.138-0.142-0.195-0.203h-1.333c0.284,1.357,1.087,2.519,2.188,3.283
|
||||
C12.027,17.498,11.326,16.423,11.066,15.179z"/>
|
||||
<path fill="#231D13" d="M20.202,15.179h0.989c0.018-0.068,0.044-0.133,0.059-0.203h-1.313c-0.017,0.059-2.677,2.772-2.703,2.781
|
||||
v1.32c0.091-0.021,0.177-0.057,0.266-0.082v-1.035"/>
|
||||
<path fill="#231D13" d="M14.267,14.04l2.1-2.1c0.011-0.011,0.026,0.002,0.041,0l-0.203-0.203c-0.029-0.028-0.075-0.028-0.104,0
|
||||
l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101c0.017,0.017,0.04,0.003,0.063,0l-1.896-1.897
|
||||
C14.238,14.114,14.238,14.068,14.267,14.04z"/>
|
||||
<path fill="#231D13" d="M19.417,9.765"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 23 KiB |
@@ -1,240 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="292.903" y1="-1174.2194" x2="319.124" y2="-1174.2194" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
|
||||
<stop offset="0" style="stop-color:#302E2E"/>
|
||||
<stop offset="0.1262" style="stop-color:#2B2929"/>
|
||||
<stop offset="0.4685" style="stop-color:#1C1C1C"/>
|
||||
<stop offset="0.771" style="stop-color:#10100F"/>
|
||||
<stop offset="1" style="stop-color:#030303"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_1_)" points="29.097,16 16,29.097 2.903,16 16,2.903 "/>
|
||||
<radialGradient id="SVGID_2_" cx="-3838.7021" cy="-693.1246" r="11.5047" gradientTransform="matrix(-0.0607 -0.9982 -2.2198 0.1351 -1754.624 -3729.8008)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#999999"/>
|
||||
<stop offset="0.3646" style="stop-color:#878787"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M16.361,16.361c1.806,0.09,2.529-0.271,4.606,0c2.529,0.271,3.342,1.174,3.974,0.542
|
||||
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.4-8.4
|
||||
C16.542,6.697,16.271,6.607,16,6.607s-0.542,0.09-0.723,0.271l-8.4,8.4c-0.18,0.18-0.27,0.451-0.27,0.722
|
||||
c0,0.271,0.09,0.542,0.361,0.813c0.632,0.542,1.355,0.723,2.258,0.452C11.665,16.632,13.742,16.271,16.361,16.361z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="306.0364" y1="-1170.2096" x2="306.0081" y2="-1185.4795" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="1" style="stop-color:#404A44"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_3_)" d="M6.697,16.903l8.4,8.4c0.542,0.542,1.355,0.542,1.897,0l8.4-8.4c0.361-0.361,0.09-0.903,0.09-0.903
|
||||
c0,0.271-0.09,0.542-0.271,0.723l-8.4,8.4c-0.181,0.181-0.452,0.271-0.723,0.271s-0.542-0.09-0.723-0.271l-8.4-8.4
|
||||
c-0.18-0.181-0.27-0.452-0.27-0.723C6.607,16,6.245,16.542,6.697,16.903z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="303.0059" y1="2005.6226" x2="308.4788" y2="2022.9065" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
|
||||
<stop offset="0.0196" style="stop-color:#675A5A"/>
|
||||
<stop offset="0.5439" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_4_)" d="M15.006,6.516c0.542-0.542,1.355-0.542,1.897,0l8.58,8.58c0.542,0.542,0.542,1.355,0,1.897
|
||||
l-8.58,8.58c-0.542,0.542-1.355,0.542-1.897,0l-8.58-8.58c-0.542-0.542-0.542-1.355,0-1.897L15.006,6.516z"/>
|
||||
<radialGradient id="SVGID_5_" cx="298.6385" cy="1997.7714" r="31.3367" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#B2CAD4"/>
|
||||
<stop offset="0.2238" style="stop-color:#B5CAD2"/>
|
||||
<stop offset="0.3874" style="stop-color:#BECBCB"/>
|
||||
<stop offset="0.5316" style="stop-color:#CECDC0"/>
|
||||
<stop offset="0.5447" style="stop-color:#D0CDBF"/>
|
||||
<stop offset="0.7058" style="stop-color:#D1CABC"/>
|
||||
<stop offset="0.8243" style="stop-color:#D2C1B3"/>
|
||||
<stop offset="0.9288" style="stop-color:#D5B1A3"/>
|
||||
<stop offset="1" style="stop-color:#D8A193"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M15.097,6.878c0.542-0.542,1.355-0.542,1.806,0l8.219,8.219c0.542,0.542,0.542,1.355,0,1.806
|
||||
l-8.219,8.219c-0.542,0.542-1.355,0.542-1.806,0l-8.219-8.219c-0.542-0.542-0.542-1.355,0-1.806L15.097,6.878z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="305.9771" y1="2016.2919" x2="306.1612" y2="2004.2383" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
|
||||
<stop offset="0.0098" style="stop-color:#F7FDFF;stop-opacity:0.4"/>
|
||||
<stop offset="0.7258" style="stop-color:#B7B3B3;stop-opacity:0.7"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M16.361,16.271c1.716,0.09,2.529-0.271,4.516,0c2.439,0.271,3.252,1.084,3.884,0.542
|
||||
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.219-8.219
|
||||
c-0.18-0.18-0.451-0.27-0.722-0.27s-0.542,0.09-0.723,0.271l-8.219,8.219c-0.181,0.181-0.271,0.452-0.271,0.723
|
||||
c0,0.271,0.09,0.542,0.361,0.813c0.542,0.542,1.355,0.632,2.168,0.452C11.755,16.542,13.742,16.181,16.361,16.271z"/>
|
||||
<radialGradient id="SVGID_7_" cx="313.709" cy="2032.4696" r="37.5603" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#612A2A"/>
|
||||
<stop offset="0.2109" style="stop-color:#948A87"/>
|
||||
<stop offset="0.2122" style="stop-color:#948A87"/>
|
||||
<stop offset="0.3051" style="stop-color:#A9A4A2"/>
|
||||
<stop offset="0.3998" style="stop-color:#B8B6B5"/>
|
||||
<stop offset="0.4972" style="stop-color:#C1C0C0"/>
|
||||
<stop offset="0.6006" style="stop-color:#C4C4C4"/>
|
||||
<stop offset="1" style="stop-color:#ABAAA9"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_7_)" d="M16,29.909c-0.452,0-0.903-0.181-1.264-0.542L2.542,17.174c-0.723-0.723-0.723-1.897,0-2.619
|
||||
L14.736,2.542C15.097,2.181,15.548,2,16,2s0.903,0.181,1.264,0.542l12.103,12.103c0.361,0.361,0.542,0.813,0.542,1.264
|
||||
c0,0.452-0.181,0.903-0.542,1.264L17.264,29.367C16.903,29.729,16.452,29.909,16,29.909z M16,6.155
|
||||
c-0.361,0-0.723,0.181-0.994,0.452l-8.4,8.4c-0.27,0.27-0.451,0.632-0.451,0.993c0,0.361,0.181,0.723,0.452,0.994l8.4,8.4
|
||||
c0.271,0.271,0.632,0.452,0.994,0.452c0.361,0,0.723-0.181,0.994-0.452l8.4-8.4c0.271-0.271,0.452-0.632,0.452-0.994
|
||||
c0-0.361-0.181-0.723-0.452-0.994l-8.4-8.4C16.723,6.245,16.361,6.155,16,6.155z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_8_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
|
||||
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
|
||||
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
|
||||
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
|
||||
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
|
||||
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
|
||||
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
|
||||
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
|
||||
<rect x="31.886" y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
|
||||
<rect y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="14.0231" y1="26.2306" x2="16.9333" y2="17.8188" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_9_)" d="M15.157,11.49c0.44,0,0.812,0.303,0.826,0.314c0.109,0.085,0.518,0.377,1.042,0.377
|
||||
c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305c-0.003,0.003-0.386,0.316-0.829,0.316c-0.44,0-0.812-0.303-0.826-0.314
|
||||
c-0.109-0.085-0.518-0.377-1.042-0.377c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305C14.331,11.803,14.714,11.49,15.157,11.49z"/>
|
||||
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="13.7429" y1="26.1337" x2="16.6531" y2="17.7218" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_10_)" d="M17.024,12.687c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
|
||||
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
|
||||
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,12.374,17.467,12.687,17.024,12.687z"
|
||||
/>
|
||||
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="13.463" y1="26.0369" x2="16.3732" y2="17.625" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_11_)" d="M17.024,13.593c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
|
||||
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
|
||||
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,13.28,17.467,13.593,17.024,13.593z"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="9.887" y1="20.8985" x2="10.4514" y2="13.0569" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_12_)" d="M10.399,17.361l-0.221-0.134c-0.139-0.085-0.237-0.168-0.296-0.25s-0.088-0.176-0.088-0.283
|
||||
c0-0.16,0.056-0.29,0.167-0.39c0.111-0.1,0.255-0.149,0.433-0.149c0.17,0,0.325,0.047,0.467,0.143v0.33
|
||||
c-0.146-0.141-0.304-0.211-0.473-0.211c-0.095,0-0.173,0.022-0.234,0.066s-0.092,0.1-0.092,0.168c0,0.061,0.022,0.118,0.067,0.171
|
||||
c0.045,0.054,0.118,0.108,0.217,0.167l0.222,0.132c0.248,0.148,0.372,0.337,0.372,0.565c0,0.163-0.055,0.295-0.164,0.396
|
||||
c-0.109,0.103-0.251,0.153-0.425,0.153c-0.201,0-0.383-0.062-0.548-0.186v-0.368c0.157,0.199,0.339,0.299,0.545,0.299
|
||||
c0.091,0,0.167-0.025,0.228-0.076s0.091-0.114,0.091-0.19C10.667,17.59,10.578,17.472,10.399,17.361z"/>
|
||||
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="10.9574" y1="20.9755" x2="11.5217" y2="13.1339" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_13_)" d="M11.264,16.181h0.291v2.032h-0.291V16.181z"/>
|
||||
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="12.2643" y1="21.0695" x2="12.8286" y2="13.2279" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_14_)" d="M12.014,18.213v-2.032h0.509c0.206,0,0.369,0.051,0.489,0.153s0.181,0.239,0.181,0.413
|
||||
c0,0.118-0.03,0.221-0.089,0.307s-0.144,0.15-0.254,0.193c0.065,0.043,0.128,0.101,0.19,0.175c0.062,0.073,0.149,0.202,0.262,0.386
|
||||
c0.071,0.115,0.127,0.202,0.17,0.26l0.107,0.146h-0.346l-0.088-0.134c-0.003-0.005-0.009-0.013-0.018-0.024l-0.057-0.08
|
||||
l-0.09-0.148l-0.097-0.159c-0.06-0.083-0.115-0.149-0.165-0.199c-0.05-0.049-0.095-0.085-0.136-0.106
|
||||
c-0.04-0.021-0.108-0.032-0.203-0.032h-0.076v0.884h-0.289V18.213z M12.392,16.428h-0.087v0.641h0.111
|
||||
c0.147,0,0.248-0.012,0.303-0.037c0.055-0.025,0.097-0.063,0.128-0.114c0.03-0.051,0.045-0.109,0.045-0.174
|
||||
c0-0.064-0.017-0.122-0.051-0.174c-0.034-0.052-0.082-0.088-0.143-0.11S12.535,16.428,12.392,16.428z"/>
|
||||
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="14.1579" y1="21.2058" x2="14.7223" y2="13.3642" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_15_)" d="M14.622,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
|
||||
c0,0.299-0.105,0.547-0.316,0.743c-0.21,0.196-0.477,0.295-0.797,0.295c-0.306,0-0.562-0.099-0.765-0.295
|
||||
c-0.204-0.196-0.306-0.442-0.306-0.737c0-0.304,0.103-0.555,0.308-0.754S14.308,16.152,14.622,16.152z M14.633,16.428
|
||||
c-0.232,0-0.423,0.073-0.573,0.218c-0.149,0.146-0.224,0.331-0.224,0.558c0,0.219,0.075,0.401,0.225,0.546
|
||||
c0.15,0.146,0.338,0.219,0.563,0.219c0.227,0,0.416-0.074,0.567-0.223c0.152-0.148,0.228-0.333,0.228-0.554
|
||||
c0-0.216-0.076-0.396-0.228-0.543C15.041,16.502,14.854,16.428,14.633,16.428z"/>
|
||||
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="16.4523" y1="21.3709" x2="17.0166" y2="13.5293" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_16_)" d="M17.828,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.578-0.137
|
||||
c-0.158-0.091-0.283-0.217-0.375-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
|
||||
c0.21-0.202,0.471-0.302,0.781-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
|
||||
c-0.234,0-0.427,0.073-0.581,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
|
||||
c0.151,0.144,0.344,0.216,0.581,0.216C17.354,17.968,17.594,17.892,17.828,17.742z"/>
|
||||
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="18.5498" y1="21.5219" x2="19.1142" y2="13.6803" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_17_)" d="M19.937,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.577-0.137
|
||||
c-0.158-0.091-0.283-0.217-0.376-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
|
||||
s0.471-0.302,0.78-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
|
||||
c-0.233,0-0.426,0.073-0.58,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
|
||||
c0.151,0.144,0.345,0.216,0.581,0.216C19.462,17.968,19.702,17.892,19.937,17.742z"/>
|
||||
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="20.7932" y1="21.6833" x2="21.3575" y2="13.8418" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_18_)" d="M21.292,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
|
||||
c0,0.299-0.105,0.547-0.316,0.743s-0.477,0.295-0.797,0.295c-0.307,0-0.562-0.099-0.766-0.295s-0.306-0.442-0.306-0.737
|
||||
c0-0.304,0.103-0.555,0.308-0.754C20.719,16.251,20.979,16.152,21.292,16.152z M21.304,16.428c-0.232,0-0.424,0.073-0.573,0.218
|
||||
c-0.149,0.146-0.225,0.331-0.225,0.558c0,0.219,0.075,0.401,0.226,0.546c0.15,0.146,0.338,0.219,0.563,0.219
|
||||
c0.227,0,0.416-0.074,0.567-0.223s0.228-0.333,0.228-0.554c0-0.216-0.076-0.396-0.228-0.543S21.524,16.428,21.304,16.428z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="17.8348" y1="39.2776" x2="13.8546" y2="-11.2175">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.15" style="stop-color:#E3CBCB"/>
|
||||
<stop offset="0.2442" style="stop-color:#DBC3C3"/>
|
||||
<stop offset="0.323" style="stop-color:#CCB6B6"/>
|
||||
<stop offset="0.3933" style="stop-color:#B7A3A3"/>
|
||||
<stop offset="0.4574" style="stop-color:#9D8B8B"/>
|
||||
<stop offset="0.5013" style="stop-color:#867676"/>
|
||||
<stop offset="0.8106" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_19_)" d="M16,29.999c-0.557,0-1.146-0.255-1.573-0.683L2.684,17.572C2.251,17.229,2,16.663,2,16
|
||||
c0-0.557,0.255-1.145,0.684-1.573L14.428,2.683C14.771,2.251,15.337,2,16,2c0.557,0,1.145,0.255,1.573,0.683l11.744,11.745
|
||||
C29.749,14.77,30,15.336,30,16c0,0.557-0.255,1.145-0.683,1.572L17.573,29.316C17.229,29.749,16.663,29.999,16,29.999z
|
||||
M15.036,29.152c0.217,0.284,0.638,0.458,1.055,0.458c0.386,0,0.76-0.161,1.053-0.454l5.287-5.288l1.998-4.621v2.713l4.817-4.816
|
||||
c0.212-0.289,0.376-0.701,0.458-1.193c-0.004-0.336-0.165-0.709-0.458-1.001L23.778,9.48l-4.582-1.909h2.672l-4.816-4.817
|
||||
C16.838,2.473,16.417,2.3,16,2.3c-0.385,0-0.759,0.162-1.052,0.455L9.935,7.768l-2.091,5.291V9.95l-4.999,4.998
|
||||
C2.564,15.162,2.391,15.583,2.391,16c0,0.386,0.162,0.76,0.455,1.053l5.288,5.288l4.916,2.088H10.15L15.036,29.152z"/>
|
||||
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_20_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
|
||||
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
|
||||
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
|
||||
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
|
||||
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
|
||||
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
|
||||
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
|
||||
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 18 KiB |
@@ -1,265 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#282525" d="M15.514,31.541c-3.655-1.191-8.36-5.684-10.651-10.008s-3.205-9.796-3.361-10.75
|
||||
C1.362,9.928,1.029,5.738,1.029,5.149c0-0.588,0.149-0.96,0.847-1.393C2.236,3.533,5.162,2.075,8.1,1.354
|
||||
c2.938-0.72,7.967-0.72,7.967-0.72l0.091,0.003c0,0,5.029,0,7.966,0.72c2.938,0.721,5.863,2.179,6.225,2.402
|
||||
c0.696,0.433,0.846,0.805,0.846,1.393s-0.333,4.778-0.474,5.634c-0.155,0.954-1.069,6.426-3.36,10.75s-7.066,8.855-10.65,10.006
|
||||
C16.258,31.689,15.966,31.689,15.514,31.541z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="20.6953" y1="23.6855" x2="15.786" y2="11.4275">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.1638" style="stop-color:#030303"/>
|
||||
<stop offset="0.2944" style="stop-color:#0D0D0D"/>
|
||||
<stop offset="0.4136" style="stop-color:#1E1E1E"/>
|
||||
<stop offset="0.526" style="stop-color:#363636"/>
|
||||
<stop offset="0.6338" style="stop-color:#545454"/>
|
||||
<stop offset="0.7379" style="stop-color:#7A7A7A"/>
|
||||
<stop offset="0.8391" style="stop-color:#A7A7A7"/>
|
||||
<stop offset="0.9356" style="stop-color:#D9D9D9"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path opacity="0.35" fill="url(#SVGID_1_)" d="M15.928,30.643c-0.011-0.002-0.053-0.008-0.146-0.039
|
||||
c-3.331-1.086-7.834-5.357-10.042-9.521c-2.037-3.848-2.978-8.664-3.288-10.555c-0.136-0.826,1.066,1.648,3.656,1.472
|
||||
c2.589-0.178,2.255-0.48,5.095-1.177c2.691-0.66-0.375-1.951,0-1.952l2.703-0.373l1.428,2.607c0.049,0,2.433-2.118,5.218-1.435
|
||||
c2.839,0.696,3.595-0.359,4.468-0.167c1.39,0.307,1.923,1.75,2.68,1.788c0.759,0.037,1.831-1.586,1.695-0.761
|
||||
c-0.31,1.892-1.251,6.708-3.289,10.552c-2.179,4.115-6.773,8.475-10.034,9.521C15.98,30.635,15.94,30.641,15.928,30.643z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="20.4844" y1="3.8057" x2="25.1602" y2="3.8057">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M20.484,1.849c1.662,1.21,3.143,2.288,4.419,3.914c0.628-1.088-0.013-2.432-0.661-3.372L20.484,1.849
|
||||
z"/>
|
||||
<path fill="#282525" d="M25.263,16.123c-0.003,0.149-0.006,0.299-0.009,0.447c-0.047,0.121-0.114,0.229-0.175,0.335
|
||||
c-0.091-0.018-0.396-0.174-0.468-0.139c-0.004,0.008-0.01,0.016-0.016,0.024c-0.006,0.002-0.013,0.006-0.017,0.008
|
||||
c-0.013,0.025,0.016,0.035,0.017,0.041c0.016,0.087-0.007,0.274,0.009,0.359c-0.006,0.007-0.012,0.016-0.019,0.025
|
||||
c-0.052,0.002-0.072-0.015-0.124-0.034c-0.016,0.003-0.034,0.006-0.049,0.009c-0.077,0.242-0.205,0.766-0.543,0.676
|
||||
c-0.211-0.057-0.384-0.242-0.584-0.309c0-0.006,0-0.012,0-0.018c0.125-0.058,0.191-0.18,0.311-0.228
|
||||
c-0.035-0.076-0.198-0.113-0.285-0.163c-0.222-0.131-0.444-0.261-0.667-0.392c-0.695-0.469-1.223-1.057-1.566-1.868
|
||||
c-0.075-0.174-0.302-0.564-0.233-0.791c0.133-0.447,0.592-0.07,0.94-0.163c0.241-0.064,0.411-0.109,0.691-0.156
|
||||
c0.27-0.042,0.826,0.103,1.026,0.163c0.099,0.02,0.195,0.039,0.292,0.057c0.15,0.068,0.216,0.279,0.317,0.401
|
||||
c0.119,0.139,0.401,0.208,0.617,0.218c0-0.005,0-0.01,0-0.015c-0.29-0.149-0.121-0.349-0.226-0.58
|
||||
c-0.054-0.116-0.19-0.198-0.191-0.358c0.441-0.153,1.388,0.477,1.533,0.84c0.062,0.153,0.019,0.313-0.05,0.448
|
||||
c-0.007,0.009-0.011,0.018-0.017,0.025c0.29-0.068,0.918-0.477,0.792-0.873c-0.072-0.227-0.285-0.442-0.408-0.636
|
||||
c-0.088-0.136-0.17-0.348-0.3-0.44c0.02-0.041,0.058-0.049,0.108-0.058c0.008-0.024,0.017-0.048,0.024-0.073
|
||||
c-0.142-0.079-0.282-0.267-0.383-0.391c-0.308-0.289-0.612-0.577-0.918-0.864c-0.189-0.128-0.377-0.256-0.567-0.384
|
||||
c-0.252-0.181-0.482-0.403-0.758-0.563c-0.124-0.062-0.25-0.126-0.375-0.188c-0.092-0.044-0.2-0.038-0.283-0.106
|
||||
c-0.293-0.241-0.518-0.549-0.759-0.84c-0.197-0.236-0.315-0.534-0.467-0.791c-0.385-0.65-0.666-1.373-0.958-2.063
|
||||
c-0.152-0.354-0.371-0.748-0.593-1.052c-0.204-0.281-0.32-0.628-0.509-0.914c0.026-0.033-0.091-0.164-0.108-0.196
|
||||
c-0.111-0.206-0.223-0.413-0.334-0.619c-0.458-0.862-0.96-1.74-1.56-2.496C17.059,0.98,16.913,2.38,16.457,2
|
||||
c-0.15-0.125-0.323-0.268-0.442-0.423c-0.081-0.058-0.162-0.114-0.242-0.172c-0.137-0.124-5.469,0.381-6.812,0.59
|
||||
C7.965,2.15,6.677,2.851,7.639,3.255c0.331,0.139,0.632,0.167,0.917,0.318c0,0.03,0,0.059,0,0.089
|
||||
C8.434,3.749,8.335,3.864,8.222,3.956c0.027,0.713,0.533,1.151,1.009,1.418c0.113,0.06,0.228,0.12,0.342,0.18
|
||||
C9.575,5.57,9.578,5.586,9.581,5.603c0.106,0.148,0.241,0.314,0.367,0.449c0.081,0.087,0.264,0.194,0.309,0.302
|
||||
c0,0.055,0,0.109,0,0.164c0.066,0.223,0.124,0.417,0.25,0.628c0.31,0.516,0.879,0.813,1.442,1.06
|
||||
c0.117,0.052,0.288,0.059,0.425,0.123c0.204,0.095,0.386,0.117,0.583,0.195c0.076,0.03,0.209,0.096,0.317,0.106
|
||||
c-0.028,0.046-0.124,0.019-0.192,0.007c-0.269-0.045-0.496,0.035-0.717,0.098c0.037,0.256,0.515,0.602,0.701,0.75
|
||||
c0.384,0.309,0.83,0.567,1.268,0.824c0.172,0.084,0.344,0.168,0.516,0.253c0.175,0.104,0.382,0.175,0.56,0.285
|
||||
c0.079,0.049,0.157,0.113,0.259,0.139c0.002,0.006,0.005,0.011,0.008,0.017c-0.02,0.011-0.039,0.021-0.058,0.033
|
||||
c-0.083-0.003-0.167-0.006-0.251-0.008c-0.263-0.042-0.458-0.136-0.7-0.229c-0.07-0.022-0.139-0.043-0.208-0.065
|
||||
c-0.158-0.099-0.321-0.117-0.492-0.196c-0.146-0.067-0.306-0.161-0.483-0.196c-0.293-0.056-0.578,0.121-0.768,0.196
|
||||
c-0.161,0.064-0.348,0.082-0.516,0.123c-0.363,0.089-0.798,0.253-1.109,0.481c-0.611,0.446-0.853,0.97-1.092,1.664
|
||||
c-0.054,0.158-0.202,0.756,0.009,0.815c0.088,0.069,0.542,0.004,0.674,0.042c0.201,0.057,0.462-0.015,0.734,0.033
|
||||
c0.355,0.061,0.694-0.014,1.059,0.024c0.191,0.003,0.384,0.005,0.575,0.007c0.114-0.004,0.229-0.009,0.342-0.015
|
||||
c0.271,0.029,0.928-0.125,1.018-0.081c0.37-0.025,1.328-0.104,1.492,0.081c0.072,0.083,0.071,0.27,0.101,0.35
|
||||
c0.063,0.135,0.127,0.267,0.19,0.4c0.204,0.371,0.556,0.643,0.784,0.996c0.196,0.303,0.301,0.67,0.417,1.003
|
||||
c0.054,0.153,0.021,0.291,0.059,0.448c0.094,0.403,0.188,0.717,0.324,1.069c0.04,0.104,0.091,0.423,0.176,0.464
|
||||
c0.003-0.145,0.115-0.262,0.158-0.399c0.009-0.007,0.018-0.012,0.025-0.017c0.037,0.039,0.028,0.095,0.05,0.171
|
||||
c0.057,0.194,0.125,0.392,0.199,0.587c0.032,0.081,0.032,0.172,0.06,0.229c0.079,0.163,0.235,0.303,0.392,0.391
|
||||
c0.054,0.024,0.105,0.049,0.16,0.073c0.027,0.006,0.06,0.012,0.091,0.017c-0.1-0.216-0.137-0.285-0.091-0.546
|
||||
c0.021-0.012,0.043-0.021,0.065-0.033c0.003,0,0.006,0,0.008,0c0,0.408,0.374,0.86,0.584,1.125c0.069,0.134,0.139,0.267,0.208,0.399
|
||||
c-0.059,0.039-0.118,0.076-0.176,0.115c-0.111,0.081-0.276,0.334-0.282,0.505c0.16,0.183,0.558,0.6,0.841,0.578
|
||||
c0.178-0.013,0.398,0.049,0.483-0.039c-0.28-0.052-0.766-0.298-0.825-0.588c-0.058-0.089,0.236-0.299,0.316-0.335
|
||||
c0.29-0.125,0.596-0.352,0.86-0.383c0.075-0.009,0.229-0.102,0.3-0.065c0.117,0.06,0.197,0.446,0.192,0.588
|
||||
c0.007,0.005,0.017,0.01,0.024,0.015c0.113-0.129,0.147-0.533,0.051-0.717c0.061-0.051,0.193-0.043,0.249-0.073
|
||||
c0.053,0.067,0.104,0.136,0.158,0.205c0.13,0.183,0.184,0.444,0.176,0.667c0.024-0.01,0.009,0.001,0.024-0.016
|
||||
c0.135-0.101,0.025-0.863-0.084-0.92c0-0.012,0-0.024,0-0.033c0.166-0.047,0.292-0.196,0.4-0.302c0.012,0,0.022,0,0.033,0
|
||||
c0.059,0.062,0.116,0.124,0.176,0.187c0.13,0.139,0.389,0.553,0.409,0.774c0.01,0,0.021,0,0.032,0
|
||||
c0.024-0.528,0.054-0.991-0.3-1.346c-0.101-0.101-0.251-0.153-0.359-0.228c-0.019,0.003-0.037,0.005-0.058,0.009
|
||||
c-0.152,0.247-0.264,0.472-0.55,0.586c-0.123-0.107-0.227-0.278-0.4-0.335c-0.016,0.012-0.014,0.008-0.025,0.025
|
||||
c-0.036,0.035-0.031,0.118-0.065,0.18c-0.048,0.057-0.097,0.114-0.143,0.171c-0.006,0-0.012,0-0.017,0
|
||||
c-0.045-0.036-0.075-0.09-0.142-0.081c-0.012,0.002-0.5,0.354-0.525,0.393c-0.186-0.05-0.522-0.666-0.551-0.851
|
||||
c0.063,0.014,0.227,0.087,0.259,0.124c0.025,0.003,0.05,0.006,0.075,0.007c-0.008-0.074-0.045-0.096-0.066-0.146
|
||||
c-0.095-0.216-0.179-0.506-0.101-0.76c0.009-0.001,0.017-0.004,0.025-0.007c0.212,0.298,0.709,0.726,1.135,0.799
|
||||
c-0.059-0.227-0.157-0.368-0.067-0.653c0.128-0.023,0.289,0.119,0.533,0.124c0.002-0.007,0.006-0.013,0.009-0.018
|
||||
c-0.085-0.176-0.141-0.358-0.018-0.521c0.482,0.026,1.199,0.295,1.318,0.717c0.008,0,0.016,0,0.024,0
|
||||
c-0.015-0.2-0.032-0.422-0.05-0.619c0.167,0.014,0.475,0.433,0.649,0.531c0.023,0.159-0.123,0.64-0.032,0.782
|
||||
c0.055,0.091,0.219,0.084,0.333,0.122c0.402,0.133,0.844,0.027,1.075-0.245c-0.006-0.006-0.012-0.01-0.017-0.016
|
||||
c-0.347,0.149-1.192,0.066-1.025-0.498c0.116-0.391,0.26-0.762,0.617-1.019c0.045-0.041,0.088-0.083,0.134-0.122
|
||||
c0.064-0.015,0.282,0.191,0.316,0.235c0.05,0.065,0.131,0.14,0.149,0.229c0.106-0.075-0.181-0.628-0.283-0.685
|
||||
c-0.003-0.009-0.006-0.016-0.009-0.024c0.08-0.037,0.115-0.102,0.176-0.155c0.225,0.066,0.593,0.397,0.667,0.611
|
||||
c0.008,0.005,0.017,0.011,0.025,0.017c-0.011-0.251-0.301-0.738-0.508-0.808c0.011-0.165,0.146-0.275,0.14-0.472
|
||||
c0.003-0.005,0.006-0.007,0.009-0.01c0.276,0.039,0.521,0.236,0.708,0.376c0.063,0.045,0.103,0.121,0.176,0.154
|
||||
c0.023,0.022,0.045,0.044,0.066,0.065c0.003-0.002,0.006-0.006,0.009-0.008C26.432,16.669,25.903,16.11,25.263,16.123z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="1.4673" y1="12.2451" x2="24.4434" y2="12.2451">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_3_)" d="M21.74,16.237c-0.008,0.312-0.014,0.628-0.02,0.935c-0.096,0.254-0.234,0.479-0.357,0.699
|
||||
c-0.182-0.035-0.807-0.359-0.951-0.287c-0.01,0.01-0.021,0.031-0.033,0.049c-0.012,0.002-0.023,0.012-0.033,0.018
|
||||
c-0.027,0.049,0.031,0.076,0.033,0.082c0.033,0.182-0.012,0.576,0.018,0.748c-0.012,0.02-0.021,0.035-0.035,0.055
|
||||
c-0.109,0.006-0.148-0.025-0.256-0.07l-0.102,0.016c-0.152,0.508-0.416,1.6-1.107,1.414c-0.426-0.115-0.781-0.506-1.188-0.646
|
||||
v-0.035c0.256-0.119,0.387-0.371,0.629-0.475c-0.066-0.16-0.404-0.23-0.576-0.34c-0.455-0.273-0.91-0.543-1.364-0.814
|
||||
c-1.418-0.979-2.492-2.208-3.196-3.897c-0.153-0.367-1.164-1.681-1.026-2.153c0.969,0.125,1.758,0.356,2.472,0.162
|
||||
c0.491-0.133,0.838-0.227,1.414-0.322c0.544-0.091,1.681,0.212,2.091,0.34c0.195,0.039,0.396,0.08,0.596,0.119
|
||||
c0.305,0.141,0.436,0.581,0.646,0.833c0.238,0.293,0.818,0.436,1.258,0.46v-0.035c-0.596-0.312-0.246-0.728-0.459-1.207
|
||||
c-0.111-0.244-0.391-0.415-0.393-0.749c0.902-0.318,2.832,0.995,3.131,1.752c0.123,0.319,0.035,0.654-0.104,0.936
|
||||
c-0.016,0.018-0.02,0.033-0.035,0.05c0.592-0.14,1.873-0.994,1.617-1.819c-0.146-0.473-0.58-0.922-0.834-1.327
|
||||
c-0.18-0.285-0.346-0.724-0.611-0.918c0.037-0.084,0.119-0.102,0.219-0.119c0.02-0.051,0.039-0.102,0.051-0.153
|
||||
c-0.291-0.164-0.572-0.556-0.783-0.816c-0.48-0.464-0.961-0.93-1.444-1.394c-0.062-0.1-0.135-0.194-0.233-0.268
|
||||
c-0.472-0.357-0.847-1.135-1.268-1.534c-0.419-0.398-1.214-0.867-1.214-0.867s0.198,0.294,0.42,0.571
|
||||
c0.09,0.113,0.197,0.333,0.293,0.553c-0.362-0.295-0.724-0.598-1.128-0.838c-0.252-0.13-0.508-0.261-0.764-0.391
|
||||
c-0.184-0.092-0.408-0.079-0.58-0.221c-0.332-0.282-0.623-0.609-0.901-0.948h0.278c-0.449-0.85-0.926-1.7-1.439-2.515
|
||||
c-1.728,0.071-4.2,0.244-5.942,0.671C5.591,2.262,2.665,3.72,2.305,3.943C1.689,4.325,1.51,4.669,1.475,5.147
|
||||
c0.053,0.03,0.111,0.054,0.163,0.086c0.16,0.102,0.321,0.235,0.527,0.29c0.004,0.011,0.011,0.022,0.017,0.034
|
||||
c-0.04,0.022-0.08,0.045-0.118,0.068C1.892,5.62,1.722,5.614,1.553,5.609C1.521,5.604,1.498,5.591,1.467,5.585
|
||||
c0.05,1.074,0.336,4.605,0.464,5.384c0,0.004,0.002,0.013,0.003,0.018c0.333,0.033,2.04,0.973,2.144,1.093
|
||||
c0.146,0.175,0.146,0.561,0.203,0.732c0.131,0.277,1.618,1.473,1.75,1.75c0.414,0.772-1.198,0.282-1.198,0.282
|
||||
s1.818,1.607,2.013,2.195c0.041,0.123-1.202-0.223-1.162-0.104c0.044,0.129,0.05,0.25,0.058,0.373l0.196,0.035
|
||||
c0,0,2.756,2.012,2.868,2.123c0.09,0.092,1.949,1.609,2.68,2.207c-0.042-0.266-0.043-0.537,0.033-0.795
|
||||
c0.015-0.004,0.034-0.01,0.051-0.014c0.434,0.621,1.447,1.512,2.311,1.666c-0.117-0.473-0.317-0.771-0.136-1.363
|
||||
c0.262-0.047,0.592,0.248,1.091,0.256c0.004-0.012,0.009-0.021,0.015-0.035c-0.171-0.363-0.285-0.744-0.031-1.084
|
||||
c0.982,0.053,2.446,0.611,2.686,1.494h0.051c-0.033-0.418-0.066-0.883-0.102-1.291c0.338,0.025,0.967,0.9,1.324,1.104
|
||||
c0.049,0.336-0.25,1.336-0.066,1.637c0.113,0.189,0.449,0.174,0.682,0.25c0.82,0.281,1.719,0.061,2.189-0.51
|
||||
c-0.01-0.01-0.018-0.02-0.033-0.033c-0.703,0.314-2.43,0.139-2.09-1.037c0.236-0.813,0.531-1.586,1.258-2.127
|
||||
c0.09-0.084,0.182-0.168,0.273-0.252c0.133-0.027,0.576,0.398,0.645,0.49c0.104,0.135,0.268,0.293,0.307,0.479
|
||||
c0.217-0.154-0.371-1.311-0.58-1.432c-0.004-0.014-0.008-0.031-0.016-0.049c0.166-0.076,0.234-0.209,0.355-0.324
|
||||
c0.459,0.143,1.213,0.83,1.363,1.275c0.018,0.012,0.031,0.021,0.051,0.035c-0.023-0.521-0.613-1.541-1.037-1.688
|
||||
c0.025-0.342,0.301-0.57,0.289-0.982c0.004-0.006,0.012-0.014,0.018-0.02c0.561,0.082,1.063,0.494,1.443,0.785
|
||||
c0.127,0.094,0.211,0.254,0.359,0.322c0.045,0.045,0.09,0.09,0.137,0.137c0.004-0.008,0.01-0.012,0.016-0.014
|
||||
C24.121,17.377,23.045,16.209,21.74,16.237z M21.777,10.059c0,0-0.334,0.296-0.682,0.093c-0.273-0.159-0.486-1.172-0.486-1.172
|
||||
l-0.012-0.294c0,0,0.199,0.293,0.375,0.536c0.242,0.344,0.377,0.505,0.484,0.607C21.621,9.975,21.777,10.059,21.777,10.059z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="21.4482" y1="19.2559" x2="12.1449" y2="2.554">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_4_)" d="M16.116,31.229c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801
|
||||
c-2.06-3.89-3.006-8.726-3.318-10.624C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038
|
||||
C2.344,3.97,5.217,2.499,8.208,1.765c2.799-0.686,7.643-0.708,7.848-0.708l0.097,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708
|
||||
c2.989,0.733,5.863,2.205,6.095,2.348c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568
|
||||
c-0.313,1.898-1.258,6.735-3.318,10.624c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715
|
||||
C16.384,31.204,16.244,31.229,16.116,31.229z M16.05,1.441c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436
|
||||
C1.865,4.723,1.865,4.849,1.865,5.151c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509
|
||||
c2.222,4.195,6.787,8.507,10.174,9.61c0.146,0.049,0.249,0.068,0.334,0.068c0.083,0,0.186-0.02,0.33-0.066
|
||||
c1.608-0.517,3.558-1.804,5.49-3.625c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509
|
||||
c0.141-0.855,0.463-4.981,0.463-5.508c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3
|
||||
c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441z"/>
|
||||
<path fill="#282525" d="M16.055,1.057l0.098,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708c2.989,0.733,5.863,2.205,6.095,2.348
|
||||
c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568c-0.313,1.898-1.258,6.735-3.318,10.624
|
||||
c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715c-0.187,0.06-0.327,0.085-0.456,0.085
|
||||
c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801c-2.06-3.89-3.006-8.726-3.318-10.624
|
||||
C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038C2.344,3.97,5.217,2.499,8.208,1.765
|
||||
C11.007,1.079,15.851,1.058,16.055,1.057 M16.116,30.847c0.083,0,0.186-0.02,0.33-0.066c1.608-0.517,3.558-1.804,5.49-3.625
|
||||
c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509c0.141-0.855,0.463-4.981,0.463-5.508
|
||||
c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441
|
||||
c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436C1.865,4.723,1.865,4.849,1.865,5.151
|
||||
c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509c2.222,4.195,6.787,8.507,10.174,9.61
|
||||
C15.928,30.827,16.03,30.847,16.116,30.847 M16.061,0.739h-0.005c-0.206,0-5.086,0.021-7.923,0.717
|
||||
c-3.029,0.743-5.951,2.24-6.187,2.387C1.272,4.26,1.148,4.611,1.148,5.151c0,0.538,0.329,4.748,0.472,5.62
|
||||
c0.314,1.914,1.269,6.789,3.352,10.721c2.295,4.336,7.043,8.8,10.583,9.953c0.221,0.072,0.395,0.105,0.56,0.105
|
||||
c0.163,0,0.334-0.031,0.552-0.102c1.71-0.549,3.757-1.894,5.765-3.787c2-1.885,3.712-4.075,4.819-6.167
|
||||
c2.082-3.931,3.037-8.807,3.351-10.721c0.144-0.871,0.473-5.081,0.473-5.619c0-0.54-0.123-0.891-0.796-1.308
|
||||
c-0.236-0.146-3.16-1.645-6.188-2.387c-2.889-0.708-7.884-0.717-7.934-0.717h-0.003l-0.089-0.003H16.061L16.061,0.739z
|
||||
M16.116,30.529c-0.048,0-0.127-0.019-0.235-0.054c-3.321-1.081-7.803-5.324-9.992-9.456c-2.012-3.8-2.941-8.547-3.247-10.412
|
||||
C2.502,9.76,2.183,5.673,2.183,5.151c0-0.116,0.001-0.178,0.019-0.209c0.02-0.037,0.086-0.107,0.293-0.235
|
||||
c0.223-0.138,2.984-1.548,5.886-2.26c2.684-0.659,7.399-0.686,7.664-0.687l0.103,0.003h0.005h0.005
|
||||
c0.048,0,4.917,0.008,7.684,0.687c2.901,0.711,5.664,2.123,5.887,2.261c0.207,0.128,0.273,0.198,0.294,0.234
|
||||
c0.018,0.032,0.019,0.094,0.019,0.21c0,0.522-0.319,4.609-0.458,5.457c-0.307,1.865-1.235,6.613-3.247,10.412
|
||||
c-1.057,1.995-2.697,4.092-4.617,5.901c-1.898,1.789-3.806,3.051-5.371,3.554C16.24,30.513,16.164,30.529,16.116,30.529
|
||||
L16.116,30.529z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#282525" d="M23.386,30.365c-4.477-1.824-9.65-1.919-14.563,0.091c-0.701-1.597-1.4-3.194-2.1-4.791
|
||||
c6.301-2.618,13.004-2.466,18.785-0.063C24.909,27.113,24.024,28.887,23.386,30.365z"/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="17.0723" y1="33.1914" x2="15.6923" y2="22.6429">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M7.194,25.856l0.183-0.072c2.853-1.111,5.832-1.675,8.853-1.675c2.843,0,5.63,0.5,8.289,1.486
|
||||
l0.044,0.017l0.462,0.192l-1.788,4.108l-0.047-0.019l-0.005,0.01c-2.203-0.852-4.53-1.282-6.916-1.282
|
||||
c-2.414,0-4.799,0.441-7.093,1.313l-0.167,0.063L7.194,25.856z M16.231,24.486c-2.88,0-5.726,0.521-8.456,1.549l-0.079,0.029
|
||||
l1.515,3.455l0.07-0.025c2.263-0.828,4.613-1.248,6.986-1.248c2.265,0,4.485,0.383,6.598,1.14l0.071,0.024l1.502-3.441
|
||||
l-0.079-0.03C21.753,24.975,19.019,24.486,16.231,24.486z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.4873" y1="33.9238" x2="10.1073" y2="23.3755">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M10.108,28.419c-0.076-0.224-0.141-0.399-0.196-0.532c0.135,0.021,0.251,0.029,0.351,0.024
|
||||
c0.1-0.004,0.184-0.017,0.255-0.035c0.093-0.024,0.164-0.059,0.211-0.101c0.047-0.043,0.064-0.09,0.05-0.144
|
||||
c-0.005-0.018-0.013-0.035-0.022-0.05c-0.01-0.015-0.025-0.031-0.046-0.048c-0.02-0.017-0.048-0.034-0.083-0.051l-0.373-0.18
|
||||
c-0.086-0.042-0.148-0.07-0.184-0.091c-0.07-0.039-0.129-0.078-0.172-0.116c-0.045-0.039-0.08-0.08-0.108-0.124
|
||||
c-0.028-0.046-0.049-0.096-0.063-0.149c-0.018-0.064-0.024-0.132-0.018-0.201c0.006-0.068,0.024-0.135,0.056-0.202
|
||||
c0.031-0.066,0.079-0.13,0.145-0.191c0.065-0.06,0.139-0.107,0.221-0.146c0.083-0.037,0.17-0.069,0.262-0.094
|
||||
c0.181-0.048,0.382-0.081,0.606-0.096c0.022,0.072,0.045,0.138,0.066,0.198c0.021,0.06,0.06,0.165,0.117,0.314
|
||||
c-0.109-0.014-0.206-0.017-0.291-0.01c-0.085,0.006-0.157,0.017-0.216,0.034c-0.083,0.022-0.148,0.057-0.195,0.103
|
||||
c-0.046,0.046-0.063,0.091-0.051,0.137c0.006,0.022,0.016,0.041,0.03,0.06c0.014,0.018,0.036,0.038,0.067,0.058
|
||||
c0.031,0.021,0.07,0.043,0.117,0.064c0.047,0.023,0.121,0.055,0.22,0.097l0.141,0.06c0.042,0.02,0.087,0.042,0.137,0.072
|
||||
c0.05,0.026,0.095,0.057,0.134,0.088c0.039,0.03,0.071,0.061,0.095,0.088c0.023,0.028,0.044,0.058,0.061,0.087
|
||||
c0.016,0.031,0.029,0.065,0.039,0.103c0.026,0.097,0.028,0.193,0.006,0.293c-0.022,0.1-0.068,0.189-0.137,0.268
|
||||
c-0.07,0.08-0.152,0.143-0.247,0.192c-0.095,0.051-0.198,0.09-0.311,0.121C10.61,28.365,10.385,28.398,10.108,28.419z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="13.5469" y1="33.6533" x2="12.167" y2="23.1061">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_7_)" d="M12.41,27.889c-0.038-0.539-0.105-1.127-0.204-1.766l-0.692,0.137l-0.023-0.183
|
||||
c-0.012-0.097-0.027-0.204-0.045-0.319c0.31-0.052,0.67-0.113,1.083-0.184l0.403-0.07l0.393-0.067l0.212-0.039l0.018,0.162
|
||||
c0.01,0.087,0.02,0.157,0.028,0.214c0.007,0.057,0.013,0.1,0.019,0.128c-0.235,0.027-0.429,0.056-0.58,0.082l-0.114,0.018
|
||||
c0.017,0.197,0.035,0.376,0.054,0.541c0.029,0.236,0.058,0.465,0.09,0.688c0.031,0.221,0.059,0.399,0.082,0.535
|
||||
c-0.179,0.028-0.294,0.047-0.347,0.056C12.738,27.829,12.613,27.853,12.41,27.889z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="15.8555" y1="33.3516" x2="14.4756" y2="22.8043">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_8_)" d="M13.979,27.627c0.009-0.195,0.014-0.372,0.016-0.528c0.002-0.156,0.001-0.337-0.003-0.543
|
||||
c-0.004-0.206-0.011-0.423-0.021-0.65c-0.01-0.229-0.02-0.41-0.028-0.545c0.138-0.006,0.249-0.011,0.335-0.017
|
||||
c0.088-0.006,0.195-0.015,0.322-0.028c0.126-0.014,0.25-0.024,0.371-0.032c0.14-0.008,0.267-0.01,0.378-0.006
|
||||
c0.083,0.002,0.159,0.013,0.229,0.032c0.069,0.021,0.128,0.047,0.176,0.078c0.049,0.032,0.09,0.068,0.124,0.11
|
||||
c0.034,0.04,0.061,0.089,0.082,0.146c0.02,0.056,0.033,0.117,0.037,0.185c0.005,0.074,0,0.144-0.015,0.209
|
||||
c-0.014,0.065-0.04,0.128-0.076,0.188c-0.037,0.06-0.084,0.112-0.143,0.157c-0.059,0.046-0.142,0.093-0.249,0.144l0.1,0.204
|
||||
c0.028,0.058,0.057,0.115,0.089,0.174l0.253,0.472c0.011,0.02,0.032,0.06,0.061,0.12c-0.181,0.01-0.304,0.017-0.367,0.021
|
||||
c-0.079,0.004-0.209,0.015-0.391,0.028c-0.021-0.057-0.06-0.16-0.116-0.313c-0.023-0.064-0.042-0.113-0.058-0.148
|
||||
c-0.032-0.076-0.078-0.184-0.138-0.32l-0.201-0.458c0.061,0.007,0.119,0.009,0.177,0.005c0.08-0.005,0.152-0.021,0.217-0.051
|
||||
c0.064-0.029,0.111-0.069,0.142-0.121c0.029-0.054,0.043-0.108,0.04-0.164c-0.003-0.049-0.019-0.089-0.047-0.123
|
||||
c-0.028-0.033-0.068-0.059-0.124-0.072c-0.056-0.015-0.141-0.019-0.255-0.012c-0.038,0.003-0.078,0.007-0.12,0.012
|
||||
c-0.041,0.004-0.089,0.009-0.144,0.014c0,0.227,0.006,0.504,0.016,0.828c0.009,0.328,0.023,0.647,0.04,0.961
|
||||
c-0.185,0.011-0.305,0.016-0.359,0.02C14.262,27.605,14.146,27.614,13.979,27.627z"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="17.6396" y1="33.1211" x2="16.2589" y2="22.567">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_9_)" d="M16.317,27.516c0.083-0.888,0.127-1.569,0.137-2.05l0.003-0.214
|
||||
c0.194,0.007,0.323,0.011,0.389,0.012c0.029,0.002,0.148,0.002,0.356,0.004c-0.025,0.249-0.046,0.484-0.063,0.706
|
||||
c-0.021,0.309-0.039,0.599-0.051,0.867s-0.021,0.498-0.023,0.689l-0.34-0.012C16.658,27.519,16.523,27.518,16.317,27.516z"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="19.5723" y1="32.8643" x2="18.1927" y2="22.3194">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_10_)" d="M17.421,27.518c0.044-0.203,0.078-0.372,0.102-0.507c0.043-0.238,0.098-0.563,0.162-0.979
|
||||
c0.045-0.289,0.075-0.492,0.088-0.61l0.017-0.142c0.182,0.021,0.309,0.037,0.378,0.045c0.046,0.005,0.164,0.017,0.355,0.036
|
||||
l-0.214,1.223l-0.152,1.015l-0.357-0.043C17.748,27.551,17.623,27.538,17.421,27.518z M18.379,26.42l0.424-0.461l0.346-0.385
|
||||
l0.108-0.133c0.204,0.025,0.342,0.042,0.414,0.05c0.021,0.003,0.151,0.017,0.395,0.04l-0.792,0.802l-0.15,0.161l0.101,0.208
|
||||
l0.578,1.079l-0.405-0.049c-0.088-0.01-0.237-0.025-0.447-0.046C18.838,27.403,18.646,26.981,18.379,26.42z"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="21.8867" y1="32.5654" x2="20.5061" y2="22.0126">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_11_)" d="M19.938,27.822c0.092-0.273,0.165-0.501,0.22-0.686c0.056-0.186,0.127-0.431,0.21-0.739
|
||||
c0.084-0.308,0.139-0.512,0.161-0.613l0.032-0.144c0.254,0.062,0.561,0.134,0.921,0.218c0.333,0.076,0.627,0.143,0.883,0.199
|
||||
l-0.016,0.053c-0.005,0.013-0.019,0.059-0.041,0.139l-0.051,0.173c-0.011,0.037-0.02,0.075-0.029,0.113
|
||||
c-0.206-0.056-0.379-0.1-0.521-0.134c-0.155-0.035-0.259-0.06-0.313-0.071c-0.055-0.013-0.141-0.029-0.256-0.051l-0.105,0.365
|
||||
c0.126,0.034,0.273,0.069,0.442,0.108c0.062,0.015,0.223,0.047,0.485,0.1c-0.043,0.137-0.092,0.299-0.146,0.485
|
||||
c-0.186-0.044-0.328-0.078-0.429-0.102c-0.148-0.033-0.316-0.069-0.502-0.104l-0.109,0.389l0.186,0.043
|
||||
c0.055,0.013,0.17,0.037,0.343,0.074l0.335,0.069c0.051,0.011,0.135,0.024,0.252,0.044c-0.049,0.156-0.099,0.319-0.146,0.488
|
||||
c-0.264-0.063-0.551-0.131-0.864-0.204l-0.712-0.163L19.938,27.822z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 214 KiB |
Before Width: | Height: | Size: 210 KiB |
@@ -1,312 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_37_copy_6">
|
||||
<g>
|
||||
<rect x="1.434" y="4.102" fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" width="29.43" height="21.078"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_7">
|
||||
<g>
|
||||
<rect x="1.857" y="4.426" fill-rule="evenodd" clip-rule="evenodd" fill="#722429" width="28.6" height="20.192"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_5_2_">
|
||||
<g>
|
||||
<rect x="2.537" y="4.938" fill-rule="evenodd" clip-rule="evenodd" fill="#E8E5BC" width="27.416" height="19.048"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_8">
|
||||
<g>
|
||||
<rect x="3.199" y="5.51" fill-rule="evenodd" clip-rule="evenodd" fill="#2F151C" width="26.213" height="17.942"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_9">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#878577" points="3.199,5.51 3.199,23.452 29.412,5.51 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.258,7.948c-6.71,0-12.035,2.579-12.035,5.76
|
||||
c0,3.181,5.325,5.759,12.035,5.759c6.708,0,12.034-2.579,12.034-5.759C28.292,10.527,22.966,7.948,16.258,7.948z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38_copy">
|
||||
<g>
|
||||
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" cx="16.258" cy="13.708" rx="11.525" ry="5.266"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38_copy_2">
|
||||
<g>
|
||||
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#99654B" cx="16.249" cy="13.708" rx="11.119" ry="5.036"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38_copy_3">
|
||||
<g>
|
||||
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#722429" cx="16.225" cy="13.708" rx="10.635" ry="4.771"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.3">
|
||||
<g id="PARKER_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M10.131,11.784c-0.129-0.052-0.316-0.078-0.56-0.078H8.48v2.771
|
||||
h0.659v-1.029h0.457c0.198,0,0.343-0.012,0.436-0.037c0.092-0.024,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
|
||||
c0.054-0.13,0.082-0.263,0.082-0.4c0-0.194-0.05-0.359-0.151-0.493C10.375,11.929,10.26,11.835,10.131,11.784z M9.878,12.832
|
||||
c-0.065,0.074-0.178,0.111-0.339,0.111H9.116v-0.734h0.42c0.147,0,0.257,0.033,0.331,0.099c0.072,0.066,0.108,0.156,0.108,0.268
|
||||
C9.976,12.672,9.943,12.758,9.878,12.832z M11.558,11.706l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
|
||||
H11.558z M11.567,13.395l0.296-0.973l0.292,0.973H11.567z M16.017,12.535c0-0.17-0.044-0.325-0.133-0.464
|
||||
c-0.09-0.139-0.202-0.235-0.339-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.217v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
|
||||
l-0.512-1.225C15.855,13.106,16.017,12.868,16.017,12.535z M15.279,12.756c-0.047,0.063-0.099,0.103-0.158,0.122
|
||||
c-0.059,0.018-0.153,0.027-0.284,0.027H14.44v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.152,0.113
|
||||
c0.045,0.061,0.068,0.13,0.068,0.207C15.347,12.621,15.324,12.693,15.279,12.756z M18.957,11.706h-0.622l-0.868,1.301v-1.301
|
||||
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.957,11.706z M19.762,14.477h1.979v-0.548h-1.319
|
||||
v-0.605h1.037v-0.521h-1.037v-0.568h1.319v-0.528h-1.979V14.477z M24.193,13.251c0.322-0.145,0.481-0.384,0.481-0.717
|
||||
c0-0.17-0.045-0.325-0.134-0.464s-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099
|
||||
h0.464l0.425,1.099h0.717L24.193,13.251z M23.936,12.756c-0.046,0.063-0.098,0.103-0.158,0.122
|
||||
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.105,0.052,0.151,0.113
|
||||
c0.046,0.061,0.068,0.13,0.068,0.207C24.004,12.621,23.981,12.693,23.936,12.756z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="BUILDING_MATERIALS_INC._2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M9.863,15.583c0.107-0.033,0.16-0.101,0.16-0.203
|
||||
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.403v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
|
||||
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.045-0.142C9.975,15.629,9.927,15.601,9.863,15.583z M9.511,15.254
|
||||
h0.225c0.058,0,0.102,0.013,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
|
||||
c-0.028,0.031-0.083,0.046-0.163,0.046H9.511V15.254z M9.89,15.92c-0.032,0.029-0.077,0.043-0.137,0.043H9.511v-0.33h0.225
|
||||
c0.052,0,0.091,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
|
||||
C9.938,15.855,9.921,15.892,9.89,15.92z M10.719,15.75c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
|
||||
c-0.037,0-0.071-0.007-0.104-0.021s-0.058-0.035-0.074-0.063c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588h-0.112v0.588
|
||||
c0,0.115,0.024,0.199,0.075,0.252c0.051,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
|
||||
c0.058-0.051,0.086-0.136,0.086-0.254v-0.588h-0.094V15.75z M11.012,16.063h0.113v-0.901h-0.113V16.063z M11.452,15.162h-0.115
|
||||
v0.901h0.532v-0.099h-0.417V15.162z M12.287,15.162h-0.302v0.901h0.339c0.106,0,0.194-0.044,0.264-0.131
|
||||
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.107-0.318C12.512,15.205,12.414,15.162,12.287,15.162z
|
||||
M12.501,15.867c-0.051,0.067-0.124,0.101-0.221,0.101h-0.183v-0.711h0.183c0.101,0,0.176,0.036,0.224,0.107
|
||||
c0.047,0.071,0.072,0.15,0.072,0.239C12.576,15.711,12.55,15.8,12.501,15.867z M12.845,16.063h0.112v-0.901h-0.112V16.063z
|
||||
M13.744,15.768c0,0.019,0,0.041,0.001,0.065l0.002,0.063l-0.435-0.734h-0.143v0.901h0.092v-0.669c0-0.015,0-0.034-0.002-0.057
|
||||
l-0.001-0.06l0.466,0.786h0.11v-0.901h-0.09V15.768z M14.373,15.703h0.223c0.001,0.019,0.001,0.036,0.001,0.049
|
||||
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
|
||||
c-0.047-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
|
||||
c0.049,0,0.095,0.015,0.138,0.045c0.042,0.03,0.07,0.079,0.086,0.146l0.106-0.026c-0.05-0.174-0.159-0.261-0.325-0.261
|
||||
c-0.12,0-0.214,0.045-0.285,0.136c-0.07,0.091-0.105,0.206-0.105,0.342c0,0.128,0.034,0.236,0.099,0.325
|
||||
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.193-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.338V15.703z M15.669,15.883
|
||||
l-0.272-0.721h-0.167v0.901h0.097v-0.787l0.295,0.787h0.077l0.292-0.787v0.787H16.1v-0.901h-0.166L15.669,15.883z M16.496,15.162
|
||||
l-0.294,0.901h0.095l0.081-0.264h0.335l0.09,0.264h0.115l-0.294-0.901H16.496z M16.409,15.715l0.139-0.433l0.14,0.433H16.409z
|
||||
M16.922,15.261h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V15.261z M17.777,15.639h0.363v-0.091h-0.363v-0.287h0.458v-0.099
|
||||
h-0.571v0.901h0.582v-0.099h-0.469V15.639z M18.991,15.551c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
|
||||
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.355v0.901h0.106v-0.391h0.257l0.166,0.391h0.12l-0.178-0.417
|
||||
C18.921,15.627,18.965,15.595,18.991,15.551z M18.732,15.581h-0.236v-0.32h0.249c0.05,0,0.09,0.014,0.122,0.04
|
||||
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.84,15.564,18.794,15.581,18.732,15.581z M19.206,16.063
|
||||
h0.112v-0.901h-0.112V16.063z M19.713,15.162l-0.292,0.901h0.094l0.082-0.264h0.333l0.091,0.264h0.115l-0.293-0.901H19.713z
|
||||
M19.627,15.715l0.139-0.433l0.14,0.433H19.627z M20.355,15.162H20.24v0.901h0.532v-0.099h-0.417V15.162z M21.26,15.56
|
||||
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.038-0.026,0.083-0.04,0.131-0.04
|
||||
c0.049,0,0.097,0.014,0.14,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.053-0.148-0.16-0.222-0.324-0.222
|
||||
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.121
|
||||
c0.021,0.035,0.045,0.061,0.076,0.078c0.03,0.017,0.067,0.031,0.114,0.043l0.181,0.044c0.036,0.009,0.067,0.025,0.094,0.048
|
||||
c0.028,0.023,0.042,0.054,0.042,0.092c0,0.051-0.018,0.091-0.055,0.122c-0.035,0.03-0.089,0.045-0.161,0.045
|
||||
c-0.137,0-0.225-0.062-0.266-0.185l-0.101,0.023c0.06,0.172,0.183,0.257,0.37,0.257c0.104,0,0.187-0.026,0.245-0.077
|
||||
c0.058-0.052,0.086-0.117,0.086-0.195C21.49,15.68,21.414,15.597,21.26,15.56z M21.969,16.063h0.112v-0.901h-0.112V16.063z
|
||||
M22.868,15.768c0,0.019,0,0.041,0.002,0.065l0,0.063l-0.435-0.734h-0.142v0.901h0.092v-0.669c0-0.015-0.001-0.034-0.002-0.057
|
||||
l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.768z M23.485,15.239c0.106,0,0.181,0.072,0.219,0.215l0.107-0.021
|
||||
c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126c-0.069,0.084-0.103,0.196-0.103,0.334
|
||||
c0,0.135,0.033,0.248,0.097,0.339c0.066,0.092,0.156,0.138,0.27,0.138c0.172,0,0.285-0.099,0.333-0.298l-0.103-0.023
|
||||
c-0.038,0.15-0.114,0.226-0.229,0.226c-0.075,0-0.133-0.034-0.179-0.1c-0.044-0.067-0.067-0.155-0.067-0.266
|
||||
c0-0.121,0.021-0.214,0.066-0.281C23.343,15.272,23.405,15.239,23.485,15.239z M23.919,15.915v0.148h0.148v-0.148H23.919z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3_6_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M17.86,17.147c-0.065,0-0.091,0.05-0.094,0.064
|
||||
c-0.004,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
|
||||
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
|
||||
c0.054,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.162v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.111
|
||||
c-0.133-0.101-0.223-0.258-0.286-0.339c-0.098-0.125-0.191-0.178-0.311-0.178c-0.183,0-0.403,0.15-0.403,0.361
|
||||
c0,0.146,0.123,0.26,0.247,0.26c0.041,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
|
||||
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.063-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
|
||||
c-0.032,0.017-0.064,0.05-0.064,0.116c0,0.077,0.04,0.148,0.146,0.227c0.127,0.083,0.27,0.121,0.417,0.121
|
||||
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.204
|
||||
C17.975,17.209,17.931,17.147,17.86,17.147z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.437,17.075c-0.041,0-0.082,0.014-0.125,0.042
|
||||
c-0.01,0.006-0.01,0.018,0.007,0.018c0.076,0,0.24,0.094,0.24,0.277c0,0.114-0.063,0.216-0.23,0.216
|
||||
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.115c0-0.078-0.038-0.149-0.146-0.228
|
||||
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.141,0-0.33,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.054,0.058
|
||||
c-0.036,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.121,0.115,0.121c0.064,0,0.09-0.05,0.092-0.064
|
||||
c0.004-0.015,0.002-0.019-0.011-0.026c-0.029-0.007-0.082-0.039-0.082-0.107c0-0.093,0.075-0.118,0.133-0.118
|
||||
c0.101,0,0.2,0.097,0.252,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
|
||||
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.009h0.04c0.069,0,0.174,0.021,0.297,0.112
|
||||
c0.132,0.1,0.222,0.258,0.286,0.338c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.402-0.15,0.402-0.361
|
||||
C16.683,17.189,16.561,17.075,16.437,17.075z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g id="PARKER">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.802,11.469c-0.129-0.052-0.316-0.078-0.56-0.078H8.15v2.771
|
||||
H8.81v-1.029h0.457c0.199,0,0.343-0.012,0.436-0.037c0.092-0.025,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
|
||||
c0.053-0.13,0.081-0.263,0.081-0.4c0-0.194-0.05-0.359-0.151-0.493C10.045,11.614,9.931,11.521,9.802,11.469z M9.549,12.518
|
||||
c-0.065,0.074-0.178,0.111-0.339,0.111H8.787v-0.734h0.42c0.147,0,0.258,0.033,0.331,0.099c0.072,0.066,0.108,0.155,0.108,0.268
|
||||
C9.646,12.358,9.613,12.443,9.549,12.518z M11.228,11.391l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
|
||||
H11.228z M11.237,13.08l0.297-0.973l0.291,0.973H11.237z M15.687,12.22c0-0.17-0.044-0.325-0.133-0.464
|
||||
c-0.09-0.139-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
|
||||
l-0.512-1.226C15.526,12.792,15.687,12.553,15.687,12.22z M14.949,12.441c-0.047,0.063-0.099,0.103-0.158,0.122
|
||||
c-0.059,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.104,0.052,0.151,0.113
|
||||
c0.045,0.061,0.068,0.13,0.068,0.207C15.018,12.307,14.994,12.378,14.949,12.441z M18.628,11.391h-0.622l-0.869,1.301v-1.301
|
||||
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.628,11.391z M19.433,14.162h1.979v-0.548h-1.319
|
||||
v-0.605h1.037v-0.522h-1.037v-0.568h1.319v-0.528h-1.979V14.162z M23.863,12.937c0.322-0.145,0.481-0.383,0.481-0.716
|
||||
c0-0.17-0.045-0.325-0.134-0.464c-0.089-0.139-0.202-0.235-0.338-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654
|
||||
v-1.099h0.464l0.425,1.099h0.717L23.863,12.937z M23.606,12.441c-0.046,0.063-0.098,0.103-0.158,0.122
|
||||
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.396v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.151,0.113
|
||||
s0.068,0.13,0.068,0.207C23.674,12.307,23.652,12.378,23.606,12.441z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="BUILDING_MATERIALS_INC.">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.534,15.269c0.107-0.033,0.16-0.101,0.16-0.203
|
||||
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.073v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
|
||||
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.046-0.142C9.646,15.315,9.598,15.286,9.534,15.269z M9.182,14.939
|
||||
h0.225c0.058,0,0.102,0.012,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
|
||||
c-0.028,0.031-0.083,0.046-0.163,0.046H9.182V14.939z M9.56,15.606c-0.032,0.029-0.077,0.043-0.137,0.043H9.182v-0.33h0.225
|
||||
c0.052,0,0.092,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
|
||||
C9.609,15.541,9.592,15.578,9.56,15.606z M10.389,15.436c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
|
||||
c-0.036,0-0.071-0.007-0.104-0.021S10.016,15.613,10,15.584c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588H9.863v0.588
|
||||
c0,0.115,0.024,0.199,0.075,0.252c0.05,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
|
||||
c0.058-0.052,0.086-0.136,0.086-0.254v-0.588h-0.094V15.436z M10.682,15.749h0.113v-0.901h-0.113V15.749z M11.122,14.847h-0.115
|
||||
v0.901h0.532v-0.099h-0.417V14.847z M11.957,14.847h-0.302v0.901h0.339c0.106,0,0.195-0.044,0.264-0.131
|
||||
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.106-0.318C12.183,14.891,12.084,14.847,11.957,14.847z
|
||||
M12.171,15.552c-0.05,0.067-0.124,0.101-0.221,0.101h-0.184v-0.711h0.184c0.101,0,0.176,0.036,0.224,0.107
|
||||
c0.048,0.071,0.072,0.15,0.072,0.239C12.246,15.397,12.22,15.485,12.171,15.552z M12.516,15.749h0.112v-0.901h-0.112V15.749z
|
||||
M13.415,15.454c0,0.019,0,0.041,0,0.065l0.002,0.063l-0.435-0.734H12.84v0.901h0.092v-0.669c0-0.016,0-0.034-0.002-0.057
|
||||
l-0.002-0.06l0.466,0.786h0.111v-0.901h-0.09V15.454z M14.043,15.389h0.223c0.001,0.019,0.001,0.035,0.001,0.049
|
||||
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
|
||||
c-0.048-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
|
||||
c0.049,0,0.095,0.015,0.139,0.045c0.041,0.03,0.07,0.079,0.086,0.146l0.107-0.026c-0.051-0.174-0.159-0.261-0.325-0.261
|
||||
c-0.12,0-0.214,0.045-0.284,0.136c-0.07,0.091-0.106,0.206-0.106,0.342c0,0.127,0.034,0.236,0.099,0.325
|
||||
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.192-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.339V15.389z M15.34,15.568
|
||||
l-0.272-0.721H14.9v0.901h0.096v-0.787l0.296,0.787h0.077l0.292-0.787v0.787h0.109v-0.901h-0.166L15.34,15.568z M16.166,14.847
|
||||
l-0.294,0.901h0.096l0.081-0.264h0.335l0.09,0.264h0.115l-0.295-0.901H16.166z M16.08,15.4l0.139-0.433l0.139,0.433H16.08z
|
||||
M16.593,14.946h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V14.946z M17.447,15.324h0.363v-0.092h-0.363v-0.286h0.458v-0.099
|
||||
h-0.571v0.901h0.583v-0.099h-0.469V15.324z M18.661,15.237c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
|
||||
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.354v0.901h0.105v-0.391h0.258l0.166,0.391h0.12l-0.178-0.417
|
||||
C18.592,15.312,18.635,15.281,18.661,15.237z M18.403,15.267h-0.236v-0.32h0.249c0.051,0,0.09,0.014,0.122,0.04
|
||||
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.511,15.25,18.465,15.267,18.403,15.267z M18.876,15.749
|
||||
h0.112v-0.901h-0.112V15.749z M19.384,14.847l-0.292,0.901h0.095l0.082-0.264h0.333l0.091,0.264h0.115l-0.294-0.901H19.384z
|
||||
M19.298,15.4l0.14-0.433l0.139,0.433H19.298z M20.026,14.847h-0.115v0.901h0.531v-0.099h-0.417V14.847z M20.93,15.246
|
||||
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.037-0.026,0.082-0.04,0.131-0.04
|
||||
c0.05,0,0.097,0.014,0.141,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.052-0.148-0.16-0.222-0.324-0.222
|
||||
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.122
|
||||
c0.021,0.035,0.046,0.061,0.076,0.078s0.067,0.031,0.114,0.043l0.181,0.044c0.037,0.009,0.067,0.025,0.095,0.048
|
||||
c0.028,0.023,0.041,0.054,0.041,0.092c0,0.051-0.018,0.091-0.054,0.122c-0.036,0.03-0.089,0.045-0.161,0.045
|
||||
c-0.137,0-0.225-0.061-0.266-0.184L20.46,15.51c0.06,0.172,0.182,0.257,0.37,0.257c0.104,0,0.186-0.026,0.244-0.077
|
||||
c0.058-0.052,0.086-0.117,0.086-0.195C21.16,15.366,21.084,15.283,20.93,15.246z M21.64,15.749h0.112v-0.901H21.64V15.749z
|
||||
M22.538,15.454c0,0.019,0,0.041,0.002,0.065l0.001,0.063l-0.436-0.734h-0.142v0.901h0.092v-0.669
|
||||
c0-0.016-0.001-0.034-0.002-0.057l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.454z M23.156,14.925
|
||||
c0.107,0,0.181,0.071,0.219,0.215l0.106-0.021c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126
|
||||
c-0.069,0.084-0.103,0.196-0.103,0.334c0,0.135,0.033,0.248,0.098,0.339c0.065,0.092,0.155,0.138,0.27,0.138
|
||||
c0.172,0,0.284-0.099,0.333-0.298l-0.103-0.023c-0.037,0.15-0.114,0.225-0.228,0.225c-0.075,0-0.133-0.033-0.179-0.1
|
||||
c-0.044-0.066-0.067-0.155-0.067-0.265c0-0.121,0.021-0.214,0.066-0.281C23.014,14.958,23.075,14.925,23.156,14.925z
|
||||
M23.59,15.601v0.148h0.148v-0.148H23.59z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M17.531,16.833c-0.064,0-0.091,0.05-0.094,0.064
|
||||
c-0.003,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
|
||||
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
|
||||
c0.055,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.161v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.112
|
||||
c-0.133-0.101-0.223-0.258-0.285-0.338c-0.099-0.125-0.192-0.178-0.311-0.178c-0.182,0-0.403,0.15-0.403,0.361
|
||||
c0,0.146,0.123,0.26,0.247,0.26c0.042,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
|
||||
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.064-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
|
||||
c-0.032,0.017-0.065,0.05-0.065,0.115c0,0.078,0.04,0.149,0.146,0.228c0.127,0.083,0.27,0.121,0.417,0.121
|
||||
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.205
|
||||
C17.645,16.895,17.602,16.833,17.531,16.833z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M16.107,16.761c-0.041,0-0.081,0.014-0.125,0.042
|
||||
c-0.01,0.006-0.01,0.018,0.008,0.018c0.076,0,0.239,0.094,0.239,0.277c0,0.114-0.063,0.216-0.23,0.216
|
||||
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.116c0-0.077-0.038-0.148-0.146-0.228
|
||||
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.14,0-0.329,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.053,0.058
|
||||
c-0.037,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.122,0.115,0.122c0.063,0,0.09-0.05,0.092-0.064
|
||||
c0.003-0.015,0.001-0.019-0.011-0.026c-0.029-0.007-0.083-0.039-0.083-0.107c0-0.093,0.075-0.118,0.133-0.118
|
||||
c0.101,0,0.2,0.097,0.253,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
|
||||
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.01h0.041c0.069,0,0.174,0.022,0.296,0.112
|
||||
c0.132,0.101,0.222,0.258,0.286,0.339c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.403-0.15,0.403-0.361
|
||||
C16.354,16.875,16.231,16.761,16.107,16.761z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_10">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M3.741,21.821v0.104c0.566,2.134,1.112,4.204,1.641,6.347
|
||||
c6.986-2.134,14.646-2.159,21.659,0c0.528-2.144,1.074-4.318,1.641-6.452C20.546,19.487,11.801,19.458,3.741,21.821z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_10_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FBF0D7" d="M4.414,22.131l0,0.087c0.525,1.795,0.948,3.621,1.438,5.424
|
||||
c6.626-1.795,14.059-1.899,20.69-0.083c0.511-1.804,0.944-3.633,1.491-5.428C20.34,20.167,12.058,20.143,4.414,22.131z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_11">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" d="M4.867,22.371c0.427,1.562,0.844,3.152,1.25,4.772
|
||||
c6.582-1.771,13.607-1.771,20.19,0c0.405-1.62,0.821-3.211,1.249-4.772C20.15,20.5,12.273,20.5,4.867,22.371z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ASSAULT">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#722429" d="M7.033,22.661c0.053,1.111,0.119,2.221,0.197,3.329
|
||||
c0.32-0.062,0.643-0.122,0.965-0.177L8.137,25.22c0.114-0.02,0.228-0.039,0.34-0.057c0.054,0.191,0.106,0.383,0.159,0.576
|
||||
c0.319-0.052,0.638-0.102,0.958-0.147C9.24,24.529,8.871,23.47,8.49,22.414C8.004,22.489,7.518,22.572,7.033,22.661z
|
||||
M8.014,24.646c-0.03-0.292-0.057-0.757-0.074-1.396c0.153,0.533,0.287,0.98,0.405,1.34C8.234,24.608,8.125,24.627,8.014,24.646z
|
||||
M11.848,23.769c-0.129-0.134-0.423-0.295-0.89-0.473c-0.163-0.062-0.265-0.118-0.305-0.169c-0.042-0.051-0.069-0.132-0.083-0.241
|
||||
c-0.012-0.085-0.005-0.15,0.021-0.196c0.026-0.045,0.068-0.071,0.13-0.078c0.056-0.006,0.097,0.005,0.124,0.034
|
||||
c0.028,0.028,0.048,0.099,0.063,0.213c0.01,0.081,0.02,0.162,0.03,0.243c0.307-0.033,0.614-0.064,0.922-0.091
|
||||
c-0.004-0.043-0.008-0.087-0.012-0.13c-0.027-0.261-0.076-0.443-0.146-0.547c-0.071-0.103-0.203-0.182-0.396-0.235
|
||||
c-0.194-0.054-0.424-0.066-0.688-0.037c-0.242,0.027-0.443,0.084-0.604,0.171c-0.161,0.086-0.271,0.193-0.33,0.318
|
||||
c-0.059,0.126-0.068,0.314-0.031,0.564c0.027,0.173,0.074,0.313,0.145,0.417c0.068,0.104,0.146,0.184,0.234,0.237
|
||||
s0.264,0.134,0.524,0.246c0.261,0.111,0.424,0.194,0.492,0.246c0.067,0.053,0.112,0.176,0.134,0.37
|
||||
c0.012,0.088,0.004,0.155-0.021,0.203s-0.07,0.076-0.133,0.083c-0.064,0.007-0.11-0.006-0.14-0.039
|
||||
c-0.03-0.032-0.052-0.109-0.067-0.232c-0.018-0.133-0.034-0.266-0.052-0.399c-0.3,0.034-0.599,0.071-0.897,0.111
|
||||
c0.01,0.071,0.021,0.143,0.031,0.214c0.037,0.245,0.094,0.43,0.169,0.556s0.208,0.22,0.397,0.285
|
||||
c0.191,0.064,0.411,0.082,0.662,0.054c0.23-0.025,0.427-0.083,0.592-0.175c0.164-0.092,0.273-0.195,0.322-0.312
|
||||
c0.05-0.116,0.064-0.292,0.04-0.526C12.053,24.133,11.975,23.904,11.848,23.769z M13.812,23.071
|
||||
c-0.158-0.071-0.257-0.133-0.292-0.187c-0.039-0.054-0.062-0.136-0.069-0.246c-0.005-0.085,0.007-0.15,0.034-0.194
|
||||
c0.029-0.043,0.074-0.067,0.135-0.07c0.055-0.003,0.097,0.011,0.122,0.041s0.042,0.102,0.048,0.216
|
||||
c0.005,0.082,0.01,0.163,0.014,0.245c0.31-0.016,0.618-0.028,0.926-0.038c-0.001-0.043-0.003-0.087-0.004-0.13
|
||||
c-0.01-0.263-0.045-0.448-0.109-0.555c-0.065-0.107-0.191-0.194-0.381-0.258s-0.418-0.09-0.684-0.076
|
||||
c-0.242,0.013-0.447,0.059-0.612,0.136c-0.166,0.077-0.282,0.177-0.349,0.299c-0.066,0.122-0.088,0.309-0.066,0.561
|
||||
c0.014,0.175,0.053,0.316,0.115,0.425c0.063,0.108,0.135,0.191,0.219,0.25c0.085,0.058,0.254,0.149,0.507,0.275
|
||||
c0.252,0.125,0.409,0.217,0.475,0.274c0.063,0.057,0.101,0.182,0.11,0.376c0.006,0.088-0.007,0.155-0.035,0.202
|
||||
c-0.029,0.046-0.074,0.071-0.139,0.074c-0.063,0.003-0.107-0.012-0.135-0.045c-0.027-0.034-0.045-0.113-0.053-0.236
|
||||
c-0.01-0.134-0.018-0.268-0.025-0.401c-0.301,0.017-0.602,0.037-0.902,0.059c0.006,0.072,0.012,0.144,0.018,0.215
|
||||
c0.021,0.247,0.064,0.436,0.133,0.565c0.066,0.13,0.193,0.231,0.379,0.307c0.186,0.075,0.403,0.105,0.655,0.092
|
||||
c0.23-0.012,0.431-0.058,0.601-0.141c0.17-0.082,0.285-0.179,0.342-0.292s0.082-0.288,0.074-0.522
|
||||
c-0.011-0.323-0.074-0.556-0.193-0.698C14.549,23.453,14.266,23.275,13.812,23.071z M15.76,21.816
|
||||
c-0.16,1.102-0.309,2.205-0.442,3.308c0.326-0.007,0.652-0.01,0.978-0.01l0.059-0.593c0.113,0,0.229,0,0.342,0.001
|
||||
c0.016,0.198,0.031,0.396,0.046,0.593c0.323,0.003,0.646,0.009,0.968,0.019c-0.145-1.105-0.303-2.209-0.476-3.313
|
||||
C16.742,21.813,16.251,21.811,15.76,21.816z M16.34,23.936c0.027-0.292,0.09-0.754,0.195-1.386
|
||||
c0.048,0.55,0.095,1.013,0.141,1.387C16.564,23.936,16.452,23.936,16.34,23.936z M19.481,24.349
|
||||
c-0.013,0.164-0.028,0.268-0.05,0.311c-0.02,0.042-0.061,0.063-0.121,0.059c-0.053-0.004-0.087-0.025-0.102-0.066
|
||||
c-0.014-0.042-0.018-0.134-0.008-0.277c0.055-0.824,0.11-1.647,0.166-2.47c-0.34-0.02-0.68-0.037-1.02-0.05
|
||||
c-0.028,0.65-0.058,1.301-0.086,1.951c-0.018,0.372-0.021,0.616-0.012,0.733c0.012,0.116,0.055,0.229,0.133,0.337
|
||||
c0.078,0.108,0.198,0.198,0.361,0.272c0.162,0.073,0.352,0.117,0.567,0.13c0.196,0.013,0.368-0.003,0.517-0.047
|
||||
s0.271-0.116,0.371-0.214c0.099-0.099,0.162-0.198,0.189-0.297c0.027-0.1,0.055-0.273,0.078-0.523
|
||||
c0.07-0.732,0.141-1.464,0.211-2.196c-0.34-0.029-0.679-0.055-1.018-0.077C19.601,22.731,19.541,23.54,19.481,24.349z
|
||||
M22.457,22.182c-0.338-0.041-0.676-0.078-1.015-0.112c-0.124,1.094-0.248,2.188-0.372,3.282c0.506,0.051,1.01,0.11,1.514,0.176
|
||||
c0.033-0.218,0.065-0.436,0.098-0.654c-0.193-0.026-0.387-0.05-0.58-0.074C22.221,23.928,22.338,23.055,22.457,22.182z
|
||||
M23.516,22.321l-0.105,0.653c0.197,0.028,0.393,0.057,0.59,0.087c-0.15,0.869-0.301,1.737-0.453,2.605
|
||||
c0.313,0.048,0.625,0.099,0.938,0.154c0.169-0.865,0.34-1.731,0.51-2.596c0.196,0.034,0.393,0.07,0.588,0.107
|
||||
c0.047-0.216,0.092-0.432,0.137-0.648C24.986,22.546,24.252,22.426,23.516,22.321z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 217 KiB |
Before Width: | Height: | Size: 214 KiB |
@@ -1,337 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_1_copy_11">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B7E4F3" d="M24.301,3.451c0-0.21,0.016-0.418,0.045-0.622
|
||||
c-2.285-0.262-5.189-0.505-8.087-0.505c-2.799,0-5.593,0.231-7.817,0.486c0.032,0.21,0.048,0.423,0.048,0.641
|
||||
c0,2.339-1.883,5.392-4.394,5.863c-0.218,18.099,9.518,20.474,12.248,21.57c2.79-1.112,12.473-3.473,12.249-21.591
|
||||
C26.133,8.789,24.301,5.759,24.301,3.451z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_49">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8ED7F0" d="M25.977,11.356c0,0-1.965-0.625-4.014-0.362
|
||||
c1.383-1.472,1.979-3.224,1.979-3.224S21.83,7.986,20.07,9.135c0.703-1.968,0.502-3.922,0.502-3.922s-1.883,1.121-2.967,2.986
|
||||
c-0.176-2.158-1.252-3.934-1.252-3.934s-1.048,1.593-1.318,3.566c-1.019-1.715-2.508-2.787-2.508-2.787s-0.339,1.893,0.195,3.832
|
||||
C11.09,7.691,9.264,7.289,9.264,7.289s0.442,1.906,1.721,3.497c-2.009-0.437-3.907-0.063-3.907-0.063s1.193,1.606,3.043,2.561
|
||||
c-1.043,0.217-1.98,0.617-2.655,0.96c-0.67,0.34,4.028,4.094,4.028,4.094l10.246,0.061c0,0,4.326-3.195,3.654-3.629
|
||||
c-0.666-0.43-1.588-0.935-2.613-1.242C24.693,12.741,25.977,11.356,25.977,11.356z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_16">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M25.064,2.685c0-0.223,0.016-0.442,0.049-0.658
|
||||
c-2.504-0.277-5.766-0.535-8.861-0.535c-2.99,0-6.131,0.245-8.569,0.514c0.035,0.222,0.053,0.449,0.053,0.679
|
||||
c0,2.476-1.697,5.706-4.355,6.205C3.152,28.042,13.454,30.556,16.343,31.716c2.954-1.176,13.2-3.675,12.961-22.848
|
||||
C26.701,8.334,25.064,5.127,25.064,2.685z M16.343,30.557C13.713,29.5,4.246,27.123,4.456,9.689
|
||||
c2.815-1.091,4.486-4.294,4.64-6.726c2.143-0.246,4.47-0.4,7.166-0.4c2.792,0,5.233,0.201,7.434,0.453
|
||||
c0.041,1.635,1.449,5.509,4.563,6.673C28.475,27.141,19.031,29.486,16.343,30.557z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_17">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M24.178,3.492c0-0.21,0.016-0.417,0.045-0.62
|
||||
c-2.25-0.261-5.109-0.504-7.962-0.504c-2.757,0-5.508,0.23-7.698,0.484c0.031,0.209,0.047,0.423,0.047,0.64
|
||||
c0,2.332-1.973,5.375-4.476,5.845c-0.217,18.043,9.488,20.411,12.21,21.504c2.782-1.108,12.434-3.462,12.209-21.524
|
||||
C26.102,8.813,24.178,5.792,24.178,3.492z M16.343,29.748C13.866,28.753,4.948,26.514,5.145,10.09
|
||||
C7.797,9.063,9.498,6.045,9.64,3.754c1.982-0.231,4.118-0.376,6.627-0.376c2.598,0,4.838,0.188,6.875,0.426
|
||||
c0.039,1.541,1.49,5.189,4.424,6.287C27.77,26.53,18.875,28.739,16.343,29.748z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_18">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M24.336,3.248c0-0.213-0.033-0.424-0.004-0.63
|
||||
c-2.281-0.266-5.133-0.514-8.075-0.514c-2.843,0-5.583,0.235-7.803,0.493c0.032,0.213-0.001,0.431-0.001,0.651
|
||||
c0,2.376-1.997,5.475-4.547,5.954c-0.221,18.377,9.665,20.79,12.437,21.903c2.833-1.129,12.665-3.526,12.436-21.923
|
||||
C26.283,8.668,24.336,5.591,24.336,3.248z M16.343,29.992C13.82,28.979,4.736,26.697,4.937,9.969
|
||||
c2.702-1.047,4.38-4.12,4.526-6.454c2.034-0.235,4.243-0.384,6.802-0.384c2.651,0,4.967,0.192,7.055,0.434
|
||||
c0.041,1.569,1.467,5.286,4.455,6.403C27.982,26.714,18.922,28.964,16.343,29.992z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_34_copy_2">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8D917E" d="M8.557,17.673c0.099,0.448,0.238,1.016,0.414,1.576
|
||||
c0.356,1.135,0.885,2.236,0.885,2.236H23.32c0,0,0.59-1.083,0.941-2.208c0.174-0.556,0.297-1.122,0.379-1.572L8.557,17.673z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_14_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8B5A0" d="M20.621,21.167l-8.446,0.034c0,0-4.904,0.537-3.575,2.596
|
||||
c0.276,0.428,0.562,0.823,0.854,1.188c2.553,3.192,5.573,3.951,6.889,4.479c1.524-0.607,5.12-1.479,7.809-5.789
|
||||
C25.658,21.262,20.621,21.167,20.621,21.167z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_15">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" d="M5.51,12.764c0.436,5.998,1.993,9.782,3.944,12.221
|
||||
c1.49-2.05,2.721-3.783,2.721-3.783s0.035-6.002,0.002-6.014C8.556,13.895,5.51,12.764,5.51,12.764z M20.629,15.471
|
||||
c-0.039,0.014-0.008,5.696-0.008,5.696s1.004,1.587,2.531,3.919c1.945-2.419,3.49-6.206,3.986-12.276
|
||||
C27.139,12.81,21.289,15.239,20.629,15.471z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_31_copy_2">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#242424" points="19.725,12.614 19.953,11.828 19.301,11.323 18.381,8.32
|
||||
14.339,8.313 13.482,11.259 12.822,11.775 13.082,12.633 12.544,14.485 13.484,14.512 19.283,14.348 20.297,14.485 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_28_copy_8">
|
||||
<g>
|
||||
<rect x="14.702" y="9.106" fill-rule="evenodd" clip-rule="evenodd" fill="#C0B391" width="3.367" height="17.031"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_28_copy_8_1_">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="13.339,13.905 13.339,21.058 14.734,26.137
|
||||
14.734,9.106 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_28_copy_8_2_">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="18.014,9.106 18.014,26.137 19.408,21.165
|
||||
19.408,13.601 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_29_copy_4">
|
||||
<g>
|
||||
<rect x="15.944" y="16.968" fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" width="1.021" height="1.902"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_32_copy_7">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" d="M17.215,12.494c-0.02-0.383-0.354-0.688-0.763-0.688
|
||||
c-0.409,0-0.743,0.305-0.763,0.688h-0.001v1.744h1.527V12.494L17.215,12.494z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_2">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M23.623,13.172c-0.063-0.016-0.125-0.014-0.186,0
|
||||
c-0.094-1.051-0.307-3.618-0.307-3.618s-0.016-0.167-0.133-0.165c-0.098,0.002-0.117,0.119-0.117,0.119L22.5,12.709
|
||||
c-0.102-0.023-0.205-0.02-0.299,0.026c-0.285,0.143-0.16,0.58-0.008,0.971c0.135,0.353,0.365,0.987,0.807,0.895
|
||||
c-0.043,0.234-0.068,0.497,0.078,0.54c0.594,0.17,0.697-0.608,0.762-1.023C23.902,13.703,23.932,13.25,23.623,13.172z
|
||||
M22.975,13.571c-0.006-0.167,0.047-0.354-0.018-0.514c-0.043-0.11-0.127-0.206-0.283-0.276c0.08-0.74,0.297-3.04,0.297-3.04
|
||||
l0.047-0.004l0.238,3.491C23.1,13.306,23.027,13.441,22.975,13.571z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_1_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.255,10.097c4.065-0.024,8.12-0.564,9.967-0.906
|
||||
c0.336-0.062,0.641-0.119,0.92-0.173l-0.195-0.129c-0.225,0.04-0.465,0.084-0.725,0.132c-1.848,0.342-5.902,0.882-9.967,0.906
|
||||
C11.354,9.955,6.443,9.417,5.441,9.277c-0.007,0.074,0.003,0.146,0,0.171C6.443,9.588,11.354,10.126,16.255,10.097z M28.016,9.594
|
||||
c-0.48,0.102-1.111,0.243-1.893,0.426c-1.83,0.43-5.871,1.491-9.936,1.516c-4.901,0.029-9.786-1.119-10.781-1.304
|
||||
c-0.274-0.051-0.506-0.09-0.698-0.12c-0.002,0.04-0.016,0.098-0.019,0.148c0.193,0.043,0.43,0.091,0.709,0.143
|
||||
c0.995,0.185,5.888,1.334,10.789,1.305c4.065-0.024,8.114-1.086,9.944-1.516c0.863-0.202,1.541-0.37,2.035-0.498L28.016,9.594z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_1_copy_7">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M6.853,26.454c0.001,0.009,0.005,0.028,0.011,0.058
|
||||
C6.859,26.493,6.856,26.473,6.853,26.454z M26.006,26.19c0-0.021-0.002-0.042-0.006-0.063c0-0.011-0.002-0.021-0.004-0.032
|
||||
c-0.002-0.01-0.004-0.021-0.006-0.031c-0.006-0.021-0.012-0.041-0.018-0.061c-0.125-0.344-0.428-0.469-0.773-0.484
|
||||
c-0.346-0.014-0.736,0.083-1.043,0.19c-0.209,0.074-0.447,0.096-0.6,0.24c-0.033,0.029-0.039,0.061-0.055,0.111
|
||||
c0.023,0.051,0.045,0.103,0.068,0.154c0.107,0.016,0.264-0.106,0.377-0.152c0.422-0.169,1.676-0.514,1.822,0.084
|
||||
c0.117,0.537-0.697,0.694-1.189,0.632c-0.279-0.034-1.162-0.271-2.518-0.487c-1.355-0.217-3.162-0.425-5.344-0.416
|
||||
c-0.067,0-0.136,0-0.203,0c-0.069,0-0.136,0.001-0.203,0.002c-0.135,0.002-0.268,0.005-0.401,0.009
|
||||
c-0.265,0.007-0.526,0.017-0.783,0.029c-0.513,0.025-1.008,0.061-1.483,0.102c-0.949,0.083-1.816,0.19-2.562,0.297
|
||||
c-1.495,0.21-2.508,0.435-2.719,0.461c-0.503,0.07-1.146-0.163-1.26-0.585c-0.071-0.262,0.146-0.302,0.373-0.36
|
||||
c0.626-0.158,1.281,0.267,1.778,0.396c0.054-0.111,0.083-0.15,0.043-0.277c-0.458-0.213-0.978-0.391-1.592-0.443
|
||||
c-0.408-0.024-0.618,0-0.818,0.431c-0.01,0.021-0.019,0.043-0.026,0.065c-0.003,0.011-0.006,0.022-0.009,0.033
|
||||
s-0.006,0.023-0.008,0.034c-0.004,0.023-0.008,0.047-0.01,0.07c-0.001,0.012-0.002,0.024-0.003,0.036
|
||||
c0,0.012-0.001,0.024-0.001,0.036c-0.001,0.078,0.007,0.159,0.021,0.24c-0.017-0.13,0.4,1.525,0.691,2.823
|
||||
c0.117,0.257,0.393,0.453,0.636,0.558c0.032,0.014,0.074,0.022,0.126,0.027c0.053,0.003,0.115,0.003,0.187-0.001
|
||||
c0.144-0.01,0.327-0.035,0.546-0.07c0.439-0.072,1.023-0.187,1.73-0.308c1.417-0.242,3.317-0.509,5.58-0.507
|
||||
c2.258,0.001,4.165,0.27,5.592,0.516c0.713,0.123,1.303,0.241,1.746,0.317c0.221,0.038,0.406,0.065,0.553,0.078
|
||||
c0.072,0.006,0.135,0.008,0.189,0.006c0.025-0.001,0.049-0.003,0.07-0.006c0.012-0.001,0.021-0.003,0.029-0.006
|
||||
c0.006-0.001,0.01-0.002,0.014-0.004c0.002,0,0.002-0.001,0.004-0.001c0,0,0.002,0,0.002,0c0,0,0.002,0,0.002,0
|
||||
c0.002-0.001,0.004-0.001,0.006-0.002c0.299-0.109,0.582-0.297,0.725-0.593c0.084-0.175,0.135-0.396,0.188-0.619
|
||||
c0.309-1.388,0.51-2.205,0.496-2.146c0.021-0.086,0.037-0.173,0.041-0.259C26.008,26.232,26.008,26.211,26.006,26.19z"/>
|
||||
<path fill="#010101" d="M7.528,25.501c0.055,0,0.115,0.002,0.178,0.006c0.614,0.052,1.134,0.23,1.592,0.443
|
||||
c0.04,0.126,0.011,0.166-0.043,0.277c-0.421-0.11-0.955-0.432-1.489-0.432c-0.096,0-0.193,0.011-0.289,0.035
|
||||
c-0.227,0.058-0.444,0.098-0.373,0.36c0.101,0.372,0.612,0.597,1.076,0.597c0.063,0,0.124-0.004,0.184-0.012
|
||||
c0.211-0.026,1.224-0.251,2.719-0.461c0.746-0.107,1.613-0.213,2.562-0.297c0.475-0.041,0.97-0.076,1.483-0.102
|
||||
c0.257-0.012,0.518-0.022,0.783-0.029c0.133-0.003,0.267-0.007,0.401-0.009c0.067,0,0.134-0.001,0.203-0.002
|
||||
c0.067,0,0.136,0,0.203,0c0.045,0,0.089,0,0.133,0c2.122,0,3.883,0.205,5.211,0.417c1.355,0.216,2.238,0.453,2.518,0.487
|
||||
c0.068,0.009,0.141,0.013,0.215,0.013c0.48,0,1.076-0.181,0.975-0.645c-0.063-0.253-0.324-0.337-0.635-0.337
|
||||
c-0.424,0-0.945,0.156-1.188,0.253c-0.105,0.043-0.252,0.153-0.357,0.153c-0.008,0-0.014,0-0.02-0.001
|
||||
c-0.023-0.051-0.045-0.103-0.068-0.154c0.016-0.051,0.021-0.082,0.055-0.111c0.152-0.144,0.391-0.166,0.6-0.24
|
||||
c0.287-0.1,0.646-0.191,0.975-0.191c0.023,0,0.047,0,0.068,0.001c0.346,0.015,0.648,0.14,0.773,0.484
|
||||
c0.006,0.02,0.012,0.041,0.018,0.061c0.002,0.01,0.004,0.021,0.006,0.031C25.998,26.106,26,26.116,26,26.127
|
||||
c0.004,0.021,0.006,0.042,0.006,0.063c0.002,0.021,0.002,0.042,0,0.064c-0.004,0.086-0.02,0.173-0.041,0.259
|
||||
c0-0.002,0-0.003,0-0.003s-0.199,0.809-0.496,2.149c-0.053,0.223-0.104,0.444-0.188,0.619c-0.143,0.296-0.426,0.483-0.725,0.593
|
||||
c-0.002,0.001-0.004,0.001-0.006,0.002c0,0-0.002,0-0.002,0c0,0-0.002,0-0.002,0c-0.002,0-0.002,0-0.004,0.001
|
||||
c-0.004,0.001-0.008,0.003-0.014,0.004c-0.008,0.002-0.018,0.004-0.029,0.006c-0.021,0.003-0.045,0.005-0.07,0.006
|
||||
c-0.014,0-0.027,0.001-0.043,0.001c-0.043,0-0.092-0.002-0.146-0.007c-0.146-0.012-0.332-0.04-0.553-0.078
|
||||
c-0.443-0.076-1.033-0.194-1.746-0.317c-1.428-0.247-3.334-0.515-5.592-0.516c-0.007,0-0.014,0-0.021,0
|
||||
c-2.253,0-4.146,0.266-5.559,0.507c-0.708,0.121-1.292,0.236-1.73,0.308c-0.219,0.036-0.402,0.061-0.546,0.07
|
||||
c-0.041,0.002-0.078,0.004-0.112,0.004c-0.026,0-0.051-0.001-0.075-0.002c-0.052-0.004-0.094-0.013-0.126-0.027
|
||||
c-0.243-0.104-0.519-0.301-0.636-0.558c-0.28-1.25-0.677-2.83-0.691-2.83c0,0,0,0.002,0,0.007
|
||||
c-0.014-0.081-0.023-0.162-0.021-0.24c0-0.012,0-0.024,0.001-0.036c0.001-0.012,0.001-0.024,0.003-0.036
|
||||
c0.002-0.023,0.005-0.047,0.01-0.07c0.002-0.011,0.005-0.023,0.008-0.034s0.006-0.022,0.009-0.033
|
||||
c0.007-0.022,0.016-0.044,0.026-0.065C7.057,25.575,7.232,25.501,7.528,25.501 M6.853,26.454c0.003,0.02,0.007,0.039,0.011,0.058
|
||||
C6.857,26.482,6.854,26.463,6.853,26.454 M7.528,25.264L7.528,25.264c-0.354,0-0.635,0.098-0.857,0.575
|
||||
c-0.013,0.03-0.025,0.061-0.036,0.093c-0.004,0.015-0.009,0.031-0.013,0.046c-0.004,0.016-0.007,0.031-0.011,0.047
|
||||
c-0.006,0.03-0.011,0.062-0.014,0.093c-0.001,0.015-0.003,0.031-0.003,0.046c-0.001,0.016-0.001,0.03-0.002,0.046
|
||||
c-0.001,0.086,0.007,0.177,0.025,0.28c0.001,0.012,0.005,0.031,0.013,0.07l0.009-0.002c0.067,0.231,0.415,1.622,0.672,2.771
|
||||
l0.005,0.024l0.01,0.022c0.124,0.273,0.407,0.527,0.758,0.678c0.056,0.024,0.123,0.039,0.203,0.045
|
||||
c0.028,0.002,0.06,0.003,0.092,0.003c0.039,0,0.082-0.001,0.127-0.004c0.14-0.009,0.321-0.032,0.57-0.073
|
||||
c0.222-0.037,0.476-0.083,0.77-0.137c0.286-0.053,0.61-0.112,0.962-0.172c1.266-0.216,3.215-0.503,5.519-0.503h0.021
|
||||
c2.321,0.002,4.28,0.293,5.551,0.513c0.389,0.067,0.74,0.133,1.053,0.19c0.264,0.049,0.49,0.092,0.693,0.126
|
||||
c0.256,0.043,0.434,0.068,0.574,0.081c0.063,0.005,0.117,0.007,0.166,0.007c0.02,0,0.035,0,0.053-0.001
|
||||
c0.035-0.001,0.068-0.004,0.098-0.009c0.018-0.002,0.033-0.006,0.051-0.01c0.008-0.002,0.016-0.004,0.023-0.007l0.006-0.001
|
||||
l0.002,0l0.004-0.001v0c0.002,0,0.004,0,0.006-0.001c0.002-0.001,0.006-0.002,0.01-0.004c0.406-0.148,0.703-0.395,0.857-0.713
|
||||
c0.088-0.182,0.139-0.398,0.189-0.608l0.014-0.06l0.002-0.002v-0.002c0.115-0.521,0.293-1.309,0.482-2.094
|
||||
c0.004-0.015,0.008-0.029,0.01-0.043l0,0c0.029-0.114,0.047-0.215,0.051-0.308c0.002-0.028,0.002-0.057,0-0.083
|
||||
c0-0.029-0.004-0.058-0.008-0.085c-0.002-0.015-0.004-0.029-0.006-0.044c-0.004-0.014-0.006-0.028-0.01-0.042
|
||||
c-0.006-0.031-0.016-0.06-0.025-0.087c-0.1-0.278-0.352-0.615-0.986-0.641c-0.025-0.001-0.051-0.001-0.078-0.001
|
||||
c-0.389,0-0.787,0.111-1.053,0.205c-0.053,0.019-0.109,0.034-0.17,0.05c-0.17,0.045-0.361,0.097-0.514,0.239
|
||||
c-0.08,0.073-0.102,0.156-0.117,0.21l-0.004,0.011l-0.021,0.081l0.031,0.078l0.057,0.126c-0.354-0.071-0.77-0.148-1.24-0.224
|
||||
c-1.766-0.282-3.482-0.419-5.249-0.419c-0.044,0-0.088,0-0.133,0c-0.068,0-0.137,0-0.205,0.001c-0.069,0-0.137,0.001-0.205,0.002
|
||||
c-0.131,0.002-0.266,0.004-0.403,0.009c-0.256,0.006-0.521,0.016-0.788,0.029c-0.482,0.023-0.984,0.058-1.492,0.103
|
||||
c-0.837,0.073-1.704,0.173-2.575,0.298c-0.618,0.086-1.149,0.175-1.58,0.252l0.011-0.023c0.065-0.129,0.106-0.235,0.044-0.429
|
||||
l-0.031-0.1l-0.095-0.044c-0.578-0.269-1.109-0.417-1.671-0.464l-0.003,0H7.721C7.641,25.266,7.582,25.264,7.528,25.264
|
||||
L7.528,25.264z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1E2729" d="M18.379,26.451c-0.75,0-1.098,0.313-1.436,0.833
|
||||
c-0.127,0.194-0.244,0.38-0.332,0.55c-0.096,0.184-0.14,0.11-0.086-0.043c0.105-0.299,0.289-0.544,0.446-0.881
|
||||
c0.109-0.24,0.238-0.53,0.238-0.791c0-0.312-0.129-0.655-0.311-1.03c-0.174-0.364-0.42-0.497-0.585-0.954
|
||||
c-0.165,0.458-0.411,0.59-0.585,0.954c-0.183,0.375-0.311,0.718-0.311,1.03c0,0.26,0.128,0.551,0.237,0.791
|
||||
c0.155,0.333,0.335,0.576,0.441,0.869c0.057,0.156,0.012,0.241-0.087,0.056c-0.096-0.179-0.224-0.377-0.354-0.577
|
||||
c-0.338-0.52-0.658-0.806-1.407-0.806c-0.512,0-0.914,0.541-0.914,1.124c0,0.494,0.236,1.017,0.525,1.311
|
||||
c0.052,0.053,0.162,0.012,0.166-0.045c0.042-0.581,0.301-0.933,0.908-0.933c0.42,0,1.099,0.417,1.099,0.771
|
||||
c-0.131,0-0.088,0.317,0,0.249c0.069,0,0.445,0,0.563,0c0.093,0,0.129-0.249,0-0.249c0-0.354,0.678-0.771,1.096-0.771
|
||||
c0.598,0,0.857,0.341,0.906,0.903c0.006,0.067,0.133,0.114,0.191,0.051c0.279-0.298,0.502-0.807,0.502-1.287
|
||||
C19.291,26.992,18.891,26.451,18.379,26.451z M16.074,29.437h0.503c0.08,0,0.144-0.097,0.144-0.216
|
||||
c0-0.119-0.063-0.215-0.144-0.215h-0.503c-0.08,0-0.144,0.097-0.144,0.215C15.93,29.34,15.994,29.437,16.074,29.437z
|
||||
M17.02,29.937c-0.201,0-0.379-0.003-0.375-0.28c0.033-0.073-0.09-0.179-0.16-0.167c-0.068,0.012-0.146,0.054-0.183,0.054
|
||||
c-0.036,0-0.15-0.054-0.196-0.059c-0.045-0.006-0.171,0.103-0.122,0.172c0.002,0.276-0.225,0.275-0.449,0.275
|
||||
c-0.317,0,0.206,0.397,0.381,0.216c0.14-0.143,0.233-0.154,0.232-0.348h0.02c0,0.175-0.016,0.223-0.09,0.35
|
||||
c-0.034,0.059-0.054,0.127-0.032,0.189c0.099,0.284,0.394,0.333,0.498,0c0.019-0.062-0.006-0.146-0.028-0.208
|
||||
c-0.047-0.129-0.058-0.129-0.057-0.33h0.017c-0.001,0.194,0.077,0.202,0.202,0.329C16.835,30.292,17.309,29.937,17.02,29.937z"/>
|
||||
<path fill="#403C32" d="M16.313,24.134c0.165,0.458,0.411,0.59,0.585,0.954c0.182,0.375,0.311,0.718,0.311,1.03
|
||||
c0,0.26-0.129,0.551-0.238,0.791c-0.157,0.337-0.341,0.582-0.446,0.881c-0.031,0.089-0.029,0.151-0.004,0.151
|
||||
c0.019,0,0.05-0.031,0.09-0.108c0.088-0.169,0.205-0.355,0.332-0.55c0.338-0.52,0.686-0.833,1.436-0.833
|
||||
c0.512,0,0.912,0.541,0.912,1.124c0,0.48-0.223,0.989-0.502,1.287c-0.02,0.021-0.047,0.029-0.074,0.029
|
||||
c-0.055,0-0.113-0.036-0.117-0.081c-0.049-0.563-0.309-0.903-0.906-0.903c-0.418,0-1.096,0.417-1.096,0.771
|
||||
c0.129,0,0.093,0.249,0,0.249c-0.119,0-0.494,0-0.563,0c-0.009,0.007-0.017,0.01-0.024,0.01c-0.071,0-0.094-0.259,0.024-0.259
|
||||
c0-0.354-0.678-0.771-1.099-0.771c-0.606,0-0.866,0.353-0.908,0.933c-0.003,0.039-0.053,0.07-0.103,0.07
|
||||
c-0.023,0-0.046-0.007-0.063-0.024c-0.289-0.294-0.525-0.817-0.525-1.311c0-0.583,0.402-1.124,0.914-1.124
|
||||
c0.75,0,1.069,0.287,1.407,0.806c0.13,0.199,0.258,0.397,0.354,0.577c0.04,0.075,0.071,0.105,0.09,0.105
|
||||
c0.029,0,0.031-0.068-0.003-0.161c-0.106-0.293-0.286-0.537-0.441-0.869c-0.109-0.24-0.237-0.53-0.237-0.791
|
||||
c0-0.312,0.128-0.655,0.311-1.03C15.902,24.725,16.148,24.592,16.313,24.134 M16.577,29.005c0.08,0,0.144,0.097,0.144,0.215
|
||||
c0,0.119-0.063,0.216-0.144,0.216h-0.503c-0.08,0-0.144-0.097-0.144-0.216c0-0.119,0.064-0.215,0.144-0.215H16.577 M16.102,29.484
|
||||
c0.001,0,0.002,0,0.003,0c0.046,0.005,0.16,0.059,0.196,0.059c0.037,0,0.115-0.042,0.183-0.054c0.004,0,0.007,0,0.011,0
|
||||
c0.07,0,0.18,0.099,0.148,0.167c-0.004,0.276,0.175,0.28,0.375,0.28c0.234,0-0.036,0.235-0.229,0.235
|
||||
c-0.044,0-0.084-0.012-0.113-0.042c-0.125-0.127-0.203-0.135-0.202-0.329h-0.017c-0.001,0.201,0.01,0.201,0.057,0.33
|
||||
c0.022,0.063,0.047,0.146,0.028,0.208c-0.05,0.16-0.144,0.232-0.239,0.232c-0.103,0-0.207-0.084-0.258-0.232
|
||||
c-0.022-0.062-0.002-0.13,0.032-0.189c0.074-0.126,0.09-0.175,0.09-0.35h-0.02c0.001,0.194-0.092,0.206-0.232,0.348
|
||||
c-0.032,0.034-0.077,0.047-0.125,0.047c-0.215,0-0.514-0.264-0.256-0.264c0.001,0,0.002,0,0.003,0c0.223,0,0.447,0,0.445-0.275
|
||||
C15.935,29.59,16.053,29.484,16.102,29.484 M16.313,23.943C16.313,23.943,16.313,23.943,16.313,23.943
|
||||
c-0.081,0-0.152,0.051-0.179,0.126c-0.084,0.232-0.19,0.371-0.304,0.517c-0.094,0.121-0.19,0.245-0.274,0.42
|
||||
c-0.153,0.313-0.329,0.724-0.329,1.111c0,0.149,0.034,0.302,0.084,0.452c-0.261-0.201-0.587-0.31-1.063-0.31
|
||||
c-0.598,0-1.104,0.601-1.104,1.313c0,0.512,0.233,1.092,0.58,1.444c0.051,0.053,0.123,0.082,0.199,0.082
|
||||
c0.154,0,0.282-0.108,0.292-0.247c0.039-0.53,0.253-0.756,0.718-0.756c0.321,0,0.78,0.294,0.885,0.501
|
||||
c-0.006,0.009-0.012,0.018-0.017,0.028c-0.035,0.064-0.043,0.134-0.043,0.18c0,0.069,0.015,0.131,0.04,0.181
|
||||
c-0.037,0.066-0.059,0.146-0.059,0.233c0,0.102,0.029,0.194,0.078,0.264c-0.001,0.002-0.002,0.004-0.003,0.006
|
||||
c-0.034,0.065-0.041,0.136-0.023,0.199c-0.002,0.019-0.007,0.025-0.007,0.025c-0.024,0.027-0.18,0.027-0.247,0.027h-0.003
|
||||
c-0.067,0-0.121,0.012-0.167,0.036c-0.077,0.042-0.124,0.118-0.124,0.203c0,0.223,0.331,0.404,0.546,0.404
|
||||
c0.023,0,0.047-0.002,0.069-0.005c0.002,0.007,0.005,0.014,0.007,0.021c0.076,0.218,0.248,0.36,0.438,0.36
|
||||
c0.192,0,0.35-0.137,0.42-0.366c0.005-0.013,0.008-0.024,0.01-0.037c0.02,0.002,0.038,0.004,0.057,0.004
|
||||
c0.201,0,0.51-0.164,0.51-0.382c0-0.084-0.047-0.159-0.123-0.2c-0.043-0.023-0.096-0.034-0.158-0.034
|
||||
c-0.052,0-0.149,0-0.176-0.015c-0.002-0.005-0.008-0.019-0.008-0.049c0.011-0.056,0.004-0.115-0.022-0.171
|
||||
c0.062-0.073,0.099-0.176,0.099-0.291c0-0.102-0.029-0.195-0.08-0.265c0.024-0.05,0.037-0.107,0.037-0.169
|
||||
c0-0.068-0.018-0.131-0.052-0.182c-0.002-0.003-0.005-0.007-0.008-0.011c0.11-0.206,0.564-0.496,0.882-0.496
|
||||
c0.459,0,0.672,0.218,0.717,0.729c0.012,0.143,0.146,0.254,0.307,0.254c0.082,0,0.158-0.032,0.213-0.089
|
||||
c0.332-0.355,0.555-0.924,0.555-1.417c0-0.712-0.506-1.313-1.104-1.313c-0.467,0-0.801,0.116-1.066,0.316
|
||||
c0.051-0.153,0.086-0.308,0.086-0.459c0-0.388-0.176-0.799-0.33-1.113c-0.083-0.173-0.179-0.298-0.272-0.418
|
||||
c-0.113-0.146-0.221-0.285-0.305-0.517C16.464,23.994,16.394,23.943,16.313,23.943L16.313,23.943z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ITALY_copy_5">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E7D19E" d="M11.995,28.606c-0.05,0-0.086-0.003-0.109-0.008
|
||||
c-0.042-0.009-0.07-0.023-0.088-0.044c-0.018-0.021-0.03-0.048-0.036-0.081c-0.082-0.457-0.163-0.913-0.245-1.369
|
||||
c-0.005-0.032-0.004-0.061,0.005-0.088c0.01-0.027,0.034-0.05,0.074-0.068c0.031-0.014,0.07-0.028,0.118-0.04
|
||||
c0.047-0.013,0.086-0.022,0.118-0.03c-0.006-0.036-0.012-0.07-0.018-0.106c-0.423,0.063-0.845,0.133-1.265,0.212
|
||||
c0.007,0.035,0.015,0.07,0.022,0.105c0.037-0.003,0.082-0.004,0.134-0.004c0.051,0,0.091,0.002,0.119,0.007
|
||||
c0.043,0.007,0.074,0.021,0.093,0.042s0.031,0.047,0.037,0.078c0.091,0.456,0.181,0.911,0.272,1.367
|
||||
c0.007,0.034,0.006,0.063-0.003,0.088s-0.031,0.047-0.065,0.068c-0.018,0.01-0.054,0.022-0.105,0.036s-0.092,0.024-0.118,0.03
|
||||
c0.008,0.036,0.015,0.07,0.022,0.106c0.393-0.074,0.787-0.14,1.182-0.199c-0.006-0.036-0.012-0.071-0.018-0.106
|
||||
C12.087,28.605,12.045,28.606,11.995,28.606z M12.533,26.673c0.026,0.185,0.053,0.371,0.079,0.556
|
||||
c0.041-0.005,0.083-0.01,0.124-0.015c0.021-0.087,0.062-0.183,0.122-0.286c0.061-0.104,0.122-0.163,0.183-0.177
|
||||
c0.034-0.008,0.076-0.016,0.126-0.023c0.05-0.008,0.093-0.014,0.129-0.018c0.026-0.003,0.051-0.005,0.076-0.008
|
||||
c0.059,0.514,0.117,1.028,0.176,1.543c0.003,0.034,0,0.064-0.01,0.09c-0.01,0.026-0.034,0.049-0.072,0.067
|
||||
c-0.019,0.009-0.054,0.02-0.107,0.03c-0.052,0.011-0.093,0.02-0.122,0.025c0.004,0.036,0.009,0.071,0.014,0.107
|
||||
c0.398-0.044,0.797-0.081,1.197-0.11c-0.002-0.036-0.006-0.071-0.009-0.107c-0.035-0.001-0.077-0.004-0.127-0.009
|
||||
c-0.05-0.005-0.087-0.01-0.111-0.017c-0.04-0.011-0.068-0.029-0.083-0.053c-0.016-0.024-0.025-0.053-0.029-0.086
|
||||
c-0.047-0.511-0.095-1.021-0.144-1.532c0.025-0.002,0.051-0.004,0.076-0.006c0.037-0.003,0.08-0.005,0.131-0.006
|
||||
c0.051-0.001,0.093-0.001,0.128,0c0.063,0.003,0.135,0.049,0.216,0.14s0.14,0.177,0.179,0.258
|
||||
c0.041-0.002,0.083-0.005,0.125-0.007c-0.013-0.187-0.025-0.373-0.037-0.56C14.017,26.511,13.273,26.58,12.533,26.673z
|
||||
M17.391,28.223c-0.037-0.021-0.066-0.043-0.086-0.066c-0.02-0.022-0.035-0.048-0.049-0.076c-0.078-0.17-0.172-0.385-0.285-0.644
|
||||
c-0.114-0.259-0.274-0.611-0.491-1.053c-0.109,0-0.217,0.002-0.327,0.004c-0.146,0.315-0.276,0.605-0.39,0.869
|
||||
c-0.114,0.263-0.225,0.527-0.332,0.79c-0.018,0.045-0.04,0.084-0.068,0.118c-0.027,0.033-0.062,0.062-0.102,0.086
|
||||
c-0.023,0.015-0.057,0.027-0.098,0.037c-0.042,0.01-0.079,0.017-0.113,0.021c0.002,0.036,0.005,0.071,0.007,0.107
|
||||
c0.294-0.016,0.589-0.027,0.884-0.034l-0.003-0.108c-0.115-0.006-0.198-0.019-0.248-0.038c-0.05-0.019-0.076-0.043-0.077-0.073
|
||||
c0-0.009,0-0.025,0.003-0.048c0.003-0.023,0.013-0.061,0.03-0.113c0.014-0.04,0.03-0.085,0.049-0.137
|
||||
c0.02-0.051,0.037-0.096,0.054-0.134c0.253-0.008,0.508-0.012,0.761-0.014c0.064,0.134,0.127,0.27,0.189,0.405
|
||||
c0.007,0.016,0.012,0.028,0.014,0.037c0,0.01,0.002,0.018,0.002,0.025c0,0.021-0.037,0.039-0.111,0.054
|
||||
c-0.074,0.015-0.139,0.024-0.193,0.028c0.001,0.036,0.001,0.071,0.001,0.107c0.392-0.004,0.783,0,1.175,0.011
|
||||
c0-0.036,0.002-0.072,0.002-0.108c-0.029-0.003-0.064-0.008-0.102-0.017S17.42,28.238,17.391,28.223z M15.81,27.59
|
||||
c0.098-0.239,0.198-0.478,0.301-0.716c0.114,0.234,0.227,0.469,0.335,0.704C16.234,27.581,16.022,27.584,15.81,27.59z
|
||||
M19.666,28.113c-0.064,0.08-0.125,0.141-0.18,0.183c-0.037,0.026-0.094,0.041-0.172,0.042c-0.076,0.002-0.156,0-0.236-0.005
|
||||
c-0.084-0.006-0.148-0.013-0.195-0.021c-0.049-0.008-0.084-0.022-0.109-0.041c-0.025-0.019-0.041-0.045-0.047-0.081
|
||||
c-0.008-0.036-0.01-0.083-0.004-0.144c0.029-0.429,0.061-0.858,0.092-1.287c0.002-0.033,0.01-0.061,0.027-0.085
|
||||
c0.016-0.024,0.045-0.041,0.088-0.05c0.035-0.007,0.076-0.011,0.123-0.013c0.047-0.002,0.088-0.003,0.123-0.003
|
||||
c0.002-0.036,0.006-0.071,0.008-0.107c-0.42-0.031-0.842-0.054-1.266-0.069c0,0.036-0.002,0.072-0.004,0.108
|
||||
c0.029,0.004,0.066,0.012,0.113,0.021c0.045,0.01,0.086,0.021,0.119,0.036c0.043,0.02,0.07,0.04,0.082,0.062
|
||||
c0.01,0.022,0.014,0.05,0.014,0.083c-0.023,0.461-0.049,0.921-0.072,1.381c-0.002,0.036-0.01,0.065-0.025,0.087
|
||||
c-0.016,0.022-0.041,0.04-0.078,0.05c-0.018,0.005-0.047,0.01-0.096,0.014s-0.09,0.007-0.127,0.009
|
||||
c0,0.035-0.002,0.071-0.004,0.107c0.662,0.023,1.324,0.068,1.982,0.134c0.037-0.207,0.074-0.414,0.113-0.621
|
||||
c-0.039-0.003-0.076-0.007-0.113-0.011C19.781,27.96,19.729,28.033,19.666,28.113z M22.014,26.831
|
||||
c-0.008,0.036-0.014,0.071-0.02,0.106c0.1,0.021,0.17,0.042,0.211,0.067c0.041,0.023,0.059,0.051,0.053,0.082
|
||||
c-0.004,0.024-0.055,0.084-0.15,0.18c-0.096,0.096-0.268,0.264-0.512,0.507c-0.07-0.154-0.135-0.288-0.186-0.401
|
||||
c-0.053-0.113-0.092-0.202-0.119-0.266c-0.029-0.069-0.049-0.119-0.061-0.151c-0.01-0.033-0.016-0.054-0.014-0.063
|
||||
c0.004-0.02,0.027-0.033,0.07-0.039s0.125-0.001,0.244,0.013c0.006-0.036,0.012-0.071,0.018-0.106
|
||||
c-0.438-0.064-0.875-0.119-1.313-0.165c-0.004,0.036-0.01,0.071-0.014,0.107c0.033,0.005,0.07,0.014,0.111,0.026
|
||||
c0.039,0.012,0.074,0.026,0.102,0.043c0.035,0.023,0.07,0.052,0.104,0.087c0.031,0.035,0.064,0.08,0.094,0.134
|
||||
c0.055,0.105,0.115,0.218,0.174,0.337c0.061,0.12,0.123,0.248,0.184,0.381c0.021,0.047,0.039,0.085,0.053,0.114
|
||||
c0.014,0.03,0.021,0.053,0.027,0.072c0.004,0.016,0.004,0.036,0.002,0.059c-0.004,0.023-0.006,0.049-0.012,0.08
|
||||
c-0.018,0.114-0.035,0.228-0.051,0.342c-0.008,0.035-0.018,0.063-0.035,0.085S20.93,28.5,20.889,28.51
|
||||
c-0.021,0.004-0.061,0.006-0.113,0.004c-0.055-0.001-0.096-0.003-0.123-0.005c-0.006,0.036-0.012,0.072-0.016,0.107
|
||||
c0.396,0.05,0.795,0.108,1.189,0.174c0.008-0.035,0.014-0.071,0.021-0.106c-0.027-0.006-0.066-0.019-0.119-0.039
|
||||
s-0.088-0.034-0.105-0.042c-0.035-0.021-0.057-0.045-0.066-0.072c-0.01-0.026-0.012-0.057-0.006-0.089
|
||||
c0.016-0.091,0.031-0.183,0.049-0.274c0.018-0.103,0.035-0.173,0.057-0.212c0.02-0.04,0.064-0.093,0.135-0.162
|
||||
c0.109-0.108,0.211-0.206,0.305-0.294c0.094-0.089,0.184-0.17,0.27-0.245c0.041-0.036,0.082-0.067,0.125-0.096
|
||||
c0.043-0.027,0.09-0.048,0.139-0.062c0.033-0.009,0.064-0.015,0.098-0.018c0.033-0.002,0.07-0.001,0.109,0.002
|
||||
c0.008-0.035,0.014-0.071,0.023-0.106C22.576,26.925,22.295,26.876,22.014,26.831z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_50">
|
||||
<g>
|
||||
<rect x="10.283" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.878" height="1.899"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_50_copy">
|
||||
<g>
|
||||
<rect x="18.336" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.879" height="1.899"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M11.466,4.709h1.688V4.684c-0.029-0.244-0.238-0.434-0.49-0.434
|
||||
h-1.252c-0.273,0-0.494,0.222-0.494,0.494v1.07c0,0.272,0.221,0.494,0.494,0.494h1.252c0.256,0,0.466-0.193,0.491-0.442V5.841
|
||||
h-1.688V4.709z M15.352,5.051h-1.311V4.695h1.76c-0.025-0.25-0.236-0.445-0.492-0.445h-1.275c-0.273,0-0.495,0.222-0.495,0.494
|
||||
v0.307c0.024,0.25,0.235,0.445,0.491,0.445l1.309-0.001v0.368h-1.797c0.024,0.25,0.235,0.445,0.492,0.445h1.313
|
||||
c0.272,0,0.494-0.221,0.494-0.494V5.495C15.818,5.246,15.607,5.051,15.352,5.051z M21.396,4.232h-1.285
|
||||
c-0.26,0-0.473,0.213-0.473,0.474v1.111c0,0.261,0.213,0.473,0.473,0.473h1.285c0.262,0,0.473-0.212,0.473-0.473V4.706
|
||||
C21.869,4.445,21.658,4.232,21.396,4.232z M21.428,5.909H20.08V4.616h1.348V5.909z M17.816,5.3c0.1,0.125,0.252,0.135,0.295,0.135
|
||||
h0.686v0.449h-1.439V4.631h1.877c-0.035-0.228-0.232-0.398-0.467-0.398h-1.373c-0.262,0-0.475,0.213-0.475,0.474v1.111
|
||||
c0,0.261,0.213,0.473,0.475,0.473h1.373c0.244,0,0.447-0.182,0.471-0.42V5.091h-1.523C17.721,5.131,17.742,5.205,17.816,5.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 27 KiB |
@@ -1,90 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_39">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M29.976,0.65H2.36C1.958,9.97,2.7,27.451,16.169,31.48
|
||||
C29.636,27.452,30.374,9.842,29.976,0.65z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E78025" d="M29.664,0.969H2.674c-0.38,9.15,0.386,26.266,13.495,30.179
|
||||
C29.277,27.235,30.037,9.994,29.664,0.969z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" d="M28.411,2.316H3.925c-0.32,8.361,0.433,23.67,12.244,27.184
|
||||
C27.979,25.987,28.728,10.564,28.411,2.316z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_6">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" points="16.182,4.546 4.419,9.883 4.723,14.393 16.182,9.066
|
||||
27.639,14.393 28.027,10.113 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_6_copy">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" d="M16.182,10.86l-11.38,5.21c0,0,0.794,3.202,1.563,3.873
|
||||
c3.17-1.474,9.816-4.563,9.816-4.563s6.297,2.928,9.554,4.443c1.048-1.496,1.545-3.735,1.545-3.735L16.182,10.86z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_20_2_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" cx="16.229" cy="14.45" r="5.112"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_19">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M20.277,14.44c0-2.251-1.825-4.076-4.076-4.076
|
||||
s-4.076,1.825-4.076,4.076c0,2.005,1.448,3.672,3.356,4.013l-0.234,4.2l-1.152,0.002v0.321l1.13-0.003l-0.475,6.258l0.874-0.002
|
||||
l0.191-6.257l0.794-0.002l0.209,6.257l0.872-0.002l-0.493-6.256l0.959-0.002l0.005-0.321l-0.985,0.002l-0.234-4.2
|
||||
C18.84,18.1,20.277,16.438,20.277,14.44z M15.825,22.651l0.005-0.176l0.221-3.962c0.05,0.001,0.1,0.003,0.15,0.003
|
||||
c0.057,0,0.115-0.001,0.171-0.004l0.22,3.95l0.007,0.188L15.825,22.651z M16.065,18.242l0.146-2.627l0.146,2.625
|
||||
c-0.052,0.003-0.104,0.004-0.156,0.004C16.155,18.244,16.11,18.243,16.065,18.242z M16.928,18.174l-0.238-4.269l-0.478,0.027
|
||||
l-0.479-0.027l-0.238,4.273c-1.764-0.331-3.099-1.879-3.099-3.739c0-2.102,1.704-3.805,3.805-3.805s3.805,1.703,3.805,3.805
|
||||
C20.006,16.293,18.681,17.836,16.928,18.174z M15.624,29.23l1.194-0.002v0L15.624,29.23L15.624,29.23z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_18_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M15.629,13.096l-1.918-4.019l-1.29,0.607l2.824,3.708
|
||||
L15.629,13.096z M15.183,13.399l-3.381-2.917l-0.915,1.082l4.07,2.264L15.183,13.399z M14.723,14.46l-4.401,0.154l0.102,1.409
|
||||
l4.435-1.094L14.723,14.46z M17.718,14.569l4.358-0.12l-0.057-1.407l-4.431,1.057L17.718,14.569z M17.634,13.994l3.97-1.799
|
||||
L21,10.904l-3.668,2.702L17.634,13.994z M18.271,9.002l-1.356-0.486l-0.583,4.563l0.488,0.061L18.271,9.002z M16.225,13.004
|
||||
L16.014,8.59l-1.437,0.052l1.174,4.485L16.225,13.004z M14.86,13.87l-4.19-1.486l-0.438,1.343l4.579,0.626L14.86,13.87z
|
||||
M16.851,15.866l1.832,3.911l1.266-0.581l-2.712-3.622L16.851,15.866z M17.261,15.576l3.271,2.861l0.919-1.043l-3.96-2.242
|
||||
L17.261,15.576z M17.626,14.63l-0.056,0.481l4.099,1.486l0.468-1.315L17.626,14.63z M16.251,15.961l0.173,4.289l1.401-0.05
|
||||
l-1.104-4.358L16.251,15.961z M15.142,15.479l-2.814,3.253l1.093,0.901l2.157-3.925L15.142,15.479z M14.829,15.035l-3.947,1.824
|
||||
l0.64,1.263l3.613-2.704L14.829,15.035z M17.202,14.457c-0.005-0.544-0.455-0.989-1.004-0.992
|
||||
c-0.55-0.002-0.989,0.438-0.981,0.984c0.007,0.544,0.457,0.986,1.004,0.988C16.769,15.438,17.207,15,17.202,14.457z M14.25,19.887
|
||||
l1.339,0.446l0.533-4.445l-0.486-0.056L14.25,19.887z M17.31,13.5l2.882-3.277l-1.083-0.946l-2.231,3.988L17.31,13.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_2">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M28.833,1.868H3.504c-0.341,8.622,0.411,24.51,12.665,28.16
|
||||
C28.42,26.378,29.169,10.372,28.833,1.868z M16.169,29.101C4.768,25.715,4.018,10.85,4.317,2.734H28.02
|
||||
C28.315,10.741,27.567,25.715,16.169,29.101z"/>
|
||||
</g>
|
||||
</g>
|
||||
<text transform="matrix(1 0 0 1 6.4873 7.2632)" fill="#F5E8B0" font-family="'BritannicBold'" font-size="5.1856">MILITIA</text>
|
||||
<g id="Color_Fill_1_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFEEEE" d="M20.645,8.273h0.796V8.261c-0.013-0.117-0.111-0.208-0.23-0.208
|
||||
h-0.592c-0.129,0-0.233,0.106-0.233,0.237v0.512c0,0.131,0.104,0.236,0.233,0.236h0.592c0.121,0,0.22-0.092,0.232-0.211V8.815
|
||||
h-0.798V8.273z M22.48,8.437h-0.619v-0.17h0.832c-0.013-0.119-0.112-0.213-0.233-0.213h-0.603c-0.129,0-0.233,0.106-0.233,0.237
|
||||
v0.146c0.011,0.12,0.111,0.214,0.232,0.214l0.618,0v0.176h-0.85c0.011,0.12,0.111,0.213,0.232,0.213h0.62
|
||||
c0.13,0,0.233-0.105,0.233-0.236V8.649C22.701,8.53,22.601,8.437,22.48,8.437z M25.337,8.044h-0.607
|
||||
c-0.122,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.102,0.227,0.224,0.227h0.607c0.124,0,0.224-0.102,0.224-0.227V8.271
|
||||
C25.561,8.147,25.461,8.044,25.337,8.044z M25.353,8.848h-0.637V8.229h0.637V8.848z M24.315,8.236
|
||||
c-0.018-0.11-0.111-0.191-0.221-0.191h-0.649c-0.124,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.1,0.227,0.224,0.227h0.649
|
||||
c0.115,0,0.21-0.087,0.221-0.201V8.456h-0.719c0.002,0.02,0.012,0.055,0.049,0.1c0.046,0.061,0.118,0.065,0.139,0.065h0.325v0.216
|
||||
h-0.682v-0.6H24.315z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 5.5 KiB |
@@ -1,196 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_34">
|
||||
<g>
|
||||
<rect x="4.09" y="0.689" fill-rule="evenodd" clip-rule="evenodd" fill="#282622" width="24.203" height="31.029"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_1">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#303535" d="M9.312,8.763l2.339,2.345l2.339-2.345L11.65,6.418L9.312,8.763z
|
||||
M4.628,8.763l2.339,2.345l2.339-2.345L6.967,6.418L4.628,8.763z M9.312,4.037l2.339,2.345l2.339-2.345L11.65,1.692L9.312,4.037z
|
||||
M18.678,8.763l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,8.763z M13.995,4.037l2.339,2.345l2.338-2.345l-2.338-2.345
|
||||
L13.995,4.037z M4.628,4.037l2.339,2.345l2.339-2.345L6.967,1.692L4.628,4.037z M28.033,4.037l-2.338-2.345l-2.34,2.345
|
||||
l2.34,2.345L28.033,4.037z M18.678,4.037l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,4.037z M23.355,8.763l2.34,2.345l2.338-2.345
|
||||
l-2.338-2.345L23.355,8.763z M13.995,8.763l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,8.763z M4.628,13.488l2.339,2.346
|
||||
l2.339-2.346l-2.339-2.345L4.628,13.488z M13.995,18.215l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,18.215z M9.312,18.215
|
||||
l2.339,2.345l2.339-2.345L11.65,15.87L9.312,18.215z M9.312,13.488l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,13.488z
|
||||
M4.628,18.215l2.339,2.345l2.339-2.345L6.967,15.87L4.628,18.215z M13.995,13.488l2.339,2.345l2.338-2.345l-2.338-2.345
|
||||
L13.995,13.488z M23.355,13.488l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,13.488z M18.678,13.488l2.338,2.345l2.34-2.345
|
||||
l-2.34-2.345L18.678,13.488z M23.355,18.215l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,18.215z M18.678,18.215l2.338,2.345
|
||||
l2.34-2.345l-2.34-2.345L18.678,18.215z M4.628,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L4.628,27.737z M4.628,23.011
|
||||
l2.339,2.346l2.339-2.346l-2.339-2.345L4.628,23.011z M9.312,23.011l2.339,2.346l2.339-2.346l-2.339-2.345L9.312,23.011z
|
||||
M18.678,23.011l2.338,2.346l2.34-2.346l-2.34-2.345L18.678,23.011z M23.355,27.737l2.34,2.345l2.338-2.345l-2.338-2.345
|
||||
L23.355,27.737z M23.355,23.011l2.34,2.346l2.338-2.346l-2.338-2.345L23.355,23.011z M13.995,23.011l2.339,2.346l2.338-2.346
|
||||
l-2.338-2.345L13.995,23.011z M13.995,27.737l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,27.737z M18.678,27.737l2.338,2.345
|
||||
l2.34-2.345l-2.34-2.345L18.678,27.737z M9.312,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,27.737z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_36">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="22.635,11.858 22.314,11.674 20.676,12.62 20.68,12.296
|
||||
20.357,12.111 20.037,12.296 20.031,12.992 18.678,13.774 18.684,13.062 18.363,12.877 18.043,13.062 18.033,14.146
|
||||
17.348,14.542 16.439,14.018 16.439,13.223 17.369,12.676 17.369,12.306 17.049,12.121 16.439,12.479 16.439,10.915
|
||||
17.033,10.564 17.033,10.194 16.713,10.01 16.439,10.171 16.439,8.281 16.119,8.097 15.799,8.281 15.798,10.174 15.52,10.01
|
||||
15.199,10.194 15.199,10.564 15.798,10.918 15.798,12.481 15.185,12.121 14.864,12.306 14.864,12.676 15.798,13.226
|
||||
15.799,14.018 14.891,14.542 14.202,14.145 14.193,13.066 13.873,12.881 13.552,13.066 13.558,13.772 12.204,12.99 12.197,12.301
|
||||
11.877,12.116 11.557,12.301 11.56,12.618 9.923,11.674 9.603,11.858 9.603,12.229 11.242,13.175 10.96,13.335 10.96,13.704
|
||||
11.28,13.89 11.886,13.547 13.24,14.329 12.621,14.68 12.621,15.05 12.941,15.234 13.884,14.7 14.571,15.097 14.571,16.145
|
||||
13.881,16.543 12.943,16.012 12.623,16.196 12.623,16.566 13.238,16.915 11.883,17.697 11.283,17.357 10.962,17.542
|
||||
10.962,17.912 11.239,18.068 9.603,19.014 9.603,19.383 9.923,19.568 11.563,18.621 11.559,18.945 11.88,19.131 12.2,18.945
|
||||
12.206,18.25 13.561,17.468 13.555,18.18 13.875,18.365 14.195,18.18 14.204,17.097 14.891,16.7 15.798,17.224 15.799,18.02
|
||||
14.87,18.566 14.869,18.937 15.19,19.121 15.799,18.763 15.798,20.327 15.205,20.678 15.204,21.047 15.525,21.232 15.799,21.07
|
||||
15.798,22.96 16.119,23.146 16.439,22.961 16.439,21.067 16.718,21.232 17.039,21.047 17.039,20.677 16.439,20.324 16.439,18.76
|
||||
17.053,19.121 17.373,18.937 17.373,18.566 16.439,18.017 16.439,17.224 17.348,16.7 18.037,17.098 18.045,18.176 18.365,18.36
|
||||
18.686,18.176 18.68,17.47 20.035,18.251 20.041,18.941 20.361,19.126 20.682,18.941 20.678,18.623 22.314,19.568 22.635,19.383
|
||||
22.635,19.014 20.996,18.067 21.277,17.907 21.277,17.537 20.957,17.353 20.352,17.695 18.998,16.913 19.617,16.563
|
||||
19.617,16.192 19.297,16.008 18.354,16.542 17.668,16.146 17.668,15.097 18.357,14.699 19.295,15.23 19.615,15.045 19.615,14.676
|
||||
19,14.327 20.355,13.545 20.955,13.885 21.275,13.7 21.275,13.33 20.998,13.174 22.635,12.229 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_36_copy">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="21.84,15.621 21.699,15.378 20.26,15.378 20.385,15.165
|
||||
20.244,14.922 19.963,14.922 19.695,15.378 18.506,15.378 18.781,14.91 18.641,14.667 18.359,14.667 17.941,15.378 17.338,15.378
|
||||
16.939,14.687 17.242,14.163 18.061,14.156 18.203,13.912 18.061,13.669 17.523,13.674 18.119,12.644 18.643,12.639
|
||||
18.783,12.396 18.643,12.151 18.402,12.154 19.121,10.909 18.98,10.666 18.699,10.666 17.979,11.912 17.857,11.698 17.576,11.698
|
||||
17.436,11.941 17.695,12.402 17.102,13.432 16.834,12.961 16.553,12.961 16.413,13.204 16.819,13.922 16.517,14.443 15.72,14.443
|
||||
15.417,13.919 15.822,13.206 15.681,12.963 15.4,12.963 15.135,13.43 14.541,12.4 14.799,11.943 14.658,11.7 14.377,11.7
|
||||
14.258,11.91 13.539,10.666 13.258,10.666 13.118,10.909 13.837,12.156 13.591,12.153 13.45,12.397 13.591,12.641 14.12,12.646
|
||||
14.714,13.676 14.173,13.671 14.032,13.914 14.173,14.158 14.997,14.165 15.298,14.688 14.9,15.377 14.295,15.378 13.879,14.671
|
||||
13.598,14.671 13.457,14.914 13.729,15.378 12.541,15.378 12.274,14.926 11.993,14.926 11.852,15.169 11.975,15.378
|
||||
10.538,15.378 10.397,15.621 10.538,15.864 11.977,15.864 11.852,16.076 11.993,16.32 12.274,16.32 12.542,15.864 13.732,15.864
|
||||
13.457,16.331 13.598,16.575 13.879,16.575 14.297,15.864 14.9,15.864 15.298,16.555 14.996,17.079 14.176,17.086 14.035,17.329
|
||||
14.176,17.573 14.713,17.568 14.119,18.599 13.594,18.603 13.454,18.847 13.594,19.09 13.836,19.088 13.118,20.332 13.258,20.576
|
||||
13.539,20.576 14.259,19.33 14.38,19.544 14.662,19.544 14.802,19.301 14.542,18.84 15.136,17.81 15.403,18.281 15.685,18.281
|
||||
15.825,18.037 15.419,17.32 15.72,16.799 16.517,16.799 16.82,17.322 16.417,18.035 16.556,18.279 16.837,18.279 17.104,17.812
|
||||
17.697,18.842 17.439,19.299 17.58,19.542 17.861,19.542 17.98,19.331 18.699,20.576 18.98,20.576 19.121,20.332 18.4,19.086
|
||||
18.646,19.088 18.787,18.845 18.646,18.601 18.117,18.597 17.523,17.566 18.064,17.571 18.205,17.327 18.064,17.084 17.24,17.077
|
||||
16.939,16.555 17.338,15.864 17.943,15.864 18.359,16.571 18.641,16.571 18.781,16.327 18.508,15.864 19.697,15.864
|
||||
19.963,16.316 20.244,16.316 20.385,16.073 20.264,15.864 21.699,15.864 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_34_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5A6568" d="M4.623,1.225v29.895H27.76V1.224L4.623,1.225z M27.201,30.517
|
||||
H5.16V1.827h22.041V30.517z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_34_copy_5">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" d="M5.667,2.351v27.643h21.05V2.351H5.667z M26.389,29.641H5.975
|
||||
V2.73h20.414V29.641z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="office" opacity="0.6392">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E0E4CD" d="M9.336,25.35c-0.482,0-0.873,0.159-1.171,0.479
|
||||
c-0.299,0.319-0.448,0.692-0.448,1.118c0,0.434,0.15,0.808,0.451,1.123c0.3,0.314,0.69,0.472,1.168,0.472
|
||||
c0.473,0,0.86-0.158,1.162-0.474c0.302-0.317,0.453-0.69,0.453-1.121c0-0.425-0.148-0.797-0.446-1.117
|
||||
C10.207,25.51,9.817,25.35,9.336,25.35z M9.981,27.634c-0.163,0.174-0.378,0.262-0.645,0.262c-0.268,0-0.484-0.088-0.648-0.262
|
||||
c-0.164-0.175-0.246-0.404-0.246-0.688c0-0.285,0.082-0.515,0.246-0.688s0.38-0.261,0.648-0.261c0.267,0,0.482,0.087,0.645,0.261
|
||||
c0.163,0.174,0.244,0.403,0.244,0.688C10.225,27.229,10.144,27.459,9.981,27.634z M11.771,28.501h0.703v-1.276h1.241v-0.57h-1.241
|
||||
V25.96h1.241v-0.57h-1.944V28.501z M14.582,28.501h0.703v-1.276h1.242v-0.57h-1.242V25.96h1.242v-0.57h-1.945V28.501z
|
||||
M17.418,28.501h0.703V25.39h-0.703V28.501z M20.691,27.896c-0.295,0-0.535-0.09-0.723-0.27s-0.283-0.408-0.283-0.685
|
||||
c0-0.274,0.096-0.5,0.287-0.678s0.436-0.267,0.736-0.267c0.307,0,0.631,0.106,0.973,0.319v-0.693
|
||||
c-0.279-0.183-0.619-0.273-1.023-0.273c-0.504,0-0.914,0.155-1.229,0.468c-0.313,0.312-0.469,0.691-0.469,1.138
|
||||
c0,0.447,0.148,0.823,0.445,1.129c0.297,0.305,0.697,0.457,1.197,0.457c0.387,0,0.758-0.103,1.111-0.31v-0.679
|
||||
c-0.268,0.144-0.469,0.236-0.604,0.279C20.977,27.874,20.836,27.896,20.691,27.896z M23.295,27.931v-0.748h1.289v-0.57h-1.289
|
||||
V25.96h1.352v-0.57h-2.055v3.111h2.082v-0.57H23.295z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="_x35_2375">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2F657A" d="M11.447,4.979c-0.068,0-0.142,0.002-0.221,0.007V4.244h0.976
|
||||
V3.983h-1.257v1.269c0.199-0.015,0.335-0.021,0.408-0.021c0.213,0,0.378,0.047,0.493,0.14s0.172,0.223,0.172,0.388
|
||||
c0,0.167-0.056,0.302-0.168,0.402c-0.112,0.102-0.26,0.152-0.444,0.152s-0.364-0.057-0.542-0.168v0.307
|
||||
c0.118,0.069,0.298,0.104,0.538,0.104c0.285,0,0.509-0.074,0.673-0.225c0.164-0.148,0.245-0.346,0.245-0.591
|
||||
c0-0.236-0.076-0.422-0.228-0.559C11.939,5.046,11.725,4.979,11.447,4.979z M13.38,6.073c0.019-0.053,0.051-0.104,0.098-0.157
|
||||
s0.109-0.108,0.188-0.169c0.079-0.06,0.18-0.132,0.301-0.217c0.098-0.068,0.183-0.135,0.256-0.201
|
||||
c0.072-0.065,0.132-0.135,0.18-0.206c0.048-0.071,0.083-0.148,0.107-0.229c0.023-0.081,0.035-0.172,0.035-0.271
|
||||
c0-0.109-0.019-0.207-0.057-0.291c-0.038-0.085-0.09-0.156-0.157-0.214s-0.145-0.102-0.235-0.132
|
||||
c-0.091-0.029-0.189-0.045-0.295-0.045c-0.148,0-0.274,0.021-0.377,0.063c-0.104,0.041-0.197,0.102-0.28,0.181v0.311
|
||||
c0.042-0.046,0.088-0.088,0.137-0.126c0.049-0.037,0.1-0.069,0.152-0.097c0.053-0.027,0.107-0.048,0.162-0.063
|
||||
c0.056-0.016,0.112-0.022,0.17-0.022c0.068,0,0.13,0.009,0.188,0.027c0.058,0.02,0.108,0.048,0.151,0.086
|
||||
c0.043,0.038,0.077,0.086,0.102,0.144c0.025,0.058,0.037,0.126,0.037,0.203c0,0.069-0.008,0.135-0.024,0.197
|
||||
c-0.016,0.062-0.043,0.122-0.082,0.183c-0.039,0.06-0.09,0.119-0.153,0.18c-0.063,0.06-0.142,0.123-0.236,0.188
|
||||
c-0.13,0.093-0.241,0.177-0.331,0.251s-0.163,0.147-0.218,0.222s-0.095,0.152-0.12,0.235c-0.024,0.082-0.036,0.178-0.036,0.285
|
||||
v0.126h1.603v-0.26h-1.293C13.352,6.186,13.361,6.125,13.38,6.073z M16.249,5.193V5.187c0.349-0.096,0.522-0.31,0.522-0.643
|
||||
c0-0.176-0.066-0.321-0.197-0.434c-0.131-0.113-0.306-0.17-0.524-0.17c-0.227,0-0.423,0.049-0.59,0.145v0.283
|
||||
c0.162-0.121,0.333-0.182,0.516-0.182c0.327,0,0.491,0.143,0.491,0.43c0,0.311-0.215,0.466-0.643,0.466h-0.205v0.245h0.216
|
||||
c0.481,0,0.723,0.166,0.723,0.496c0,0.149-0.055,0.269-0.162,0.356c-0.108,0.089-0.253,0.133-0.435,0.133
|
||||
c-0.223,0-0.423-0.068-0.601-0.205V6.42c0.146,0.091,0.342,0.136,0.589,0.136c0.273,0,0.494-0.069,0.661-0.209
|
||||
c0.168-0.14,0.251-0.322,0.251-0.55c0-0.165-0.055-0.302-0.165-0.412C16.584,5.275,16.436,5.211,16.249,5.193z M17.557,4.244
|
||||
h1.309l-0.973,2.27h0.309l1.027-2.438V3.983h-1.672V4.244z M21.203,5.182c-0.152-0.136-0.367-0.203-0.645-0.203
|
||||
c-0.068,0-0.143,0.002-0.221,0.007V4.244h0.975V3.983h-1.256v1.269c0.199-0.015,0.334-0.021,0.408-0.021
|
||||
c0.213,0,0.377,0.047,0.492,0.14s0.172,0.223,0.172,0.388c0,0.167-0.057,0.302-0.168,0.402c-0.113,0.102-0.262,0.152-0.445,0.152
|
||||
c-0.182,0-0.363-0.057-0.541-0.168v0.307c0.119,0.069,0.299,0.104,0.539,0.104c0.283,0,0.508-0.075,0.672-0.225
|
||||
c0.164-0.148,0.246-0.346,0.246-0.591C21.432,5.504,21.355,5.318,21.203,5.182z"/>
|
||||
<path fill="#A9BDC4" d="M16.049,3.94c0.219,0,0.394,0.057,0.524,0.17c0.131,0.112,0.197,0.258,0.197,0.434
|
||||
c0,0.333-0.174,0.547-0.522,0.643v0.007c0.188,0.018,0.336,0.082,0.447,0.191c0.11,0.11,0.165,0.247,0.165,0.412
|
||||
c0,0.228-0.083,0.41-0.251,0.55c-0.167,0.14-0.388,0.209-0.661,0.209c-0.247,0-0.443-0.045-0.589-0.136V6.107
|
||||
c0.177,0.137,0.378,0.205,0.601,0.205c0.182,0,0.326-0.044,0.435-0.133c0.107-0.088,0.162-0.207,0.162-0.356
|
||||
c0-0.33-0.241-0.496-0.723-0.496h-0.216V5.082h0.205c0.428,0,0.643-0.155,0.643-0.466c0-0.287-0.164-0.43-0.491-0.43
|
||||
c-0.182,0-0.354,0.061-0.516,0.182V4.085C15.626,3.989,15.823,3.94,16.049,3.94 M13.801,3.94c0.106,0,0.205,0.016,0.295,0.045
|
||||
c0.09,0.03,0.169,0.074,0.235,0.132s0.119,0.129,0.157,0.214c0.038,0.084,0.057,0.182,0.057,0.291c0,0.1-0.012,0.19-0.035,0.271
|
||||
c-0.024,0.081-0.06,0.158-0.107,0.229c-0.047,0.071-0.107,0.141-0.18,0.206c-0.073,0.066-0.158,0.133-0.256,0.201
|
||||
c-0.122,0.085-0.222,0.157-0.301,0.217c-0.079,0.061-0.142,0.116-0.188,0.169s-0.079,0.104-0.098,0.157
|
||||
c-0.019,0.052-0.028,0.112-0.028,0.181h1.293v0.26h-1.603V6.388c0-0.107,0.012-0.203,0.036-0.285
|
||||
c0.024-0.083,0.064-0.161,0.12-0.235s0.128-0.147,0.218-0.222s0.2-0.158,0.331-0.251c0.094-0.065,0.173-0.129,0.236-0.188
|
||||
c0.063-0.061,0.114-0.12,0.153-0.18c0.039-0.061,0.066-0.121,0.082-0.183c0.017-0.063,0.024-0.128,0.024-0.197
|
||||
c0-0.077-0.012-0.146-0.037-0.203c-0.024-0.058-0.059-0.105-0.102-0.144c-0.042-0.038-0.093-0.066-0.151-0.086
|
||||
c-0.058-0.019-0.121-0.027-0.188-0.027c-0.058,0-0.115,0.007-0.17,0.022c-0.055,0.016-0.109,0.036-0.162,0.063
|
||||
C13.38,4.3,13.329,4.332,13.28,4.369c-0.049,0.038-0.095,0.08-0.137,0.126V4.185c0.083-0.079,0.176-0.14,0.28-0.181
|
||||
C13.526,3.962,13.652,3.94,13.801,3.94 M21.313,3.983v0.261h-0.975v0.741c0.078-0.005,0.152-0.007,0.221-0.007
|
||||
c0.277,0,0.492,0.067,0.645,0.203c0.152,0.137,0.229,0.322,0.229,0.559c0,0.245-0.082,0.442-0.246,0.591
|
||||
c-0.164,0.149-0.389,0.225-0.672,0.225c-0.24,0-0.42-0.035-0.539-0.104V6.145c0.178,0.111,0.359,0.168,0.541,0.168
|
||||
c0.184,0,0.332-0.051,0.445-0.152c0.111-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.492-0.14
|
||||
c-0.074,0-0.209,0.007-0.408,0.021V3.983H21.313 M19.229,3.983v0.092l-1.027,2.438h-0.309l0.973-2.27h-1.309V3.983H19.229
|
||||
M12.202,3.983v0.261h-0.976v0.741c0.08-0.005,0.153-0.007,0.221-0.007c0.277,0,0.492,0.067,0.645,0.203
|
||||
c0.152,0.137,0.228,0.322,0.228,0.559c0,0.245-0.082,0.442-0.245,0.591c-0.164,0.15-0.388,0.225-0.673,0.225
|
||||
c-0.24,0-0.42-0.035-0.538-0.104V6.145c0.178,0.111,0.358,0.168,0.542,0.168s0.332-0.051,0.444-0.152
|
||||
c0.112-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.493-0.14c-0.073,0-0.208,0.007-0.408,0.021
|
||||
V3.983H12.202 M16.049,3.721c-0.265,0-0.5,0.059-0.701,0.174c-0.068,0.039-0.11,0.112-0.11,0.19v0.283
|
||||
c0,0.083,0.047,0.159,0.122,0.196c0.031,0.017,0.065,0.023,0.099,0.023c0.046,0,0.093-0.015,0.132-0.044
|
||||
c0.124-0.093,0.25-0.138,0.384-0.138c0.251,0,0.271,0.087,0.271,0.21c0,0.092,0,0.246-0.422,0.246h-0.205
|
||||
c-0.122,0-0.22,0.099-0.22,0.22v0.246c0,0.121,0.099,0.22,0.22,0.22h0.216c0.502,0,0.502,0.187,0.502,0.275
|
||||
c0,0.084-0.024,0.14-0.081,0.186c-0.067,0.055-0.166,0.083-0.295,0.083c-0.175,0-0.327-0.052-0.466-0.159
|
||||
c-0.04-0.03-0.087-0.046-0.134-0.046c-0.033,0-0.067,0.008-0.098,0.023c-0.075,0.037-0.123,0.113-0.123,0.197V6.42
|
||||
c0,0.076,0.04,0.146,0.104,0.188c0.181,0.111,0.417,0.169,0.705,0.169c0.325,0,0.596-0.088,0.803-0.261
|
||||
c0.219-0.183,0.331-0.425,0.331-0.719c0-0.225-0.078-0.416-0.231-0.568c-0.029-0.028-0.06-0.055-0.092-0.079
|
||||
c0.151-0.152,0.231-0.357,0.231-0.605c0-0.239-0.094-0.447-0.272-0.601C16.546,3.795,16.322,3.721,16.049,3.721L16.049,3.721z
|
||||
M13.801,3.721c-0.176,0-0.331,0.026-0.46,0.078c-0.128,0.052-0.245,0.128-0.348,0.226c-0.044,0.041-0.069,0.1-0.069,0.16v0.311
|
||||
c0,0.091,0.056,0.172,0.14,0.205c0.026,0.01,0.053,0.015,0.08,0.015c0.061,0,0.12-0.024,0.163-0.07
|
||||
c0.033-0.036,0.07-0.07,0.109-0.101c0.038-0.029,0.078-0.055,0.119-0.075c0.038-0.021,0.079-0.036,0.119-0.047
|
||||
c0.036-0.011,0.074-0.016,0.112-0.016c0.044,0,0.084,0.006,0.12,0.018c0.029,0.01,0.053,0.022,0.073,0.041
|
||||
c0.019,0.017,0.034,0.038,0.046,0.065c0.013,0.03,0.019,0.069,0.019,0.116c0,0.05-0.006,0.098-0.017,0.141
|
||||
c-0.01,0.039-0.029,0.079-0.055,0.119c-0.029,0.045-0.069,0.092-0.119,0.14c-0.055,0.052-0.126,0.108-0.211,0.168
|
||||
c-0.136,0.097-0.251,0.185-0.344,0.262c-0.103,0.084-0.189,0.172-0.254,0.26C12.95,5.83,12.898,5.933,12.867,6.04
|
||||
c-0.03,0.103-0.045,0.219-0.045,0.348v0.126c0,0.121,0.099,0.22,0.22,0.22h1.603c0.122,0,0.22-0.099,0.22-0.22v-0.26
|
||||
c0-0.122-0.099-0.221-0.22-0.221H13.67c0.034-0.033,0.077-0.07,0.129-0.11c0.076-0.058,0.175-0.129,0.294-0.211
|
||||
c0.105-0.073,0.198-0.147,0.278-0.22c0.085-0.077,0.158-0.161,0.215-0.247c0.06-0.09,0.105-0.188,0.135-0.29
|
||||
c0.029-0.101,0.044-0.213,0.044-0.333c0-0.141-0.025-0.269-0.076-0.382c-0.051-0.113-0.123-0.211-0.213-0.289
|
||||
c-0.088-0.077-0.193-0.136-0.311-0.175C14.053,3.739,13.93,3.721,13.801,3.721L13.801,3.721z M21.313,3.763h-1.256
|
||||
c-0.121,0-0.221,0.099-0.221,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.094,0.059,0.15,0.059
|
||||
c0.006,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.393-0.021c0.16,0,0.279,0.03,0.354,0.09c0.041,0.034,0.09,0.09,0.09,0.217
|
||||
c0,0.104-0.031,0.18-0.096,0.239c-0.07,0.063-0.168,0.095-0.297,0.095c-0.141,0-0.281-0.044-0.424-0.134
|
||||
c-0.035-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.072,0.01-0.105,0.027c-0.07,0.039-0.115,0.113-0.115,0.193v0.307
|
||||
c0,0.078,0.043,0.151,0.109,0.19c0.154,0.091,0.367,0.135,0.65,0.135c0.34,0,0.615-0.095,0.82-0.282
|
||||
c0.211-0.192,0.318-0.445,0.318-0.754c0-0.301-0.102-0.544-0.303-0.723c-0.193-0.172-0.459-0.26-0.791-0.26c0,0,0,0-0.002,0V4.465
|
||||
h0.756c0.123,0,0.221-0.099,0.221-0.221V3.983C21.533,3.861,21.436,3.763,21.313,3.763L21.313,3.763z M19.229,3.763h-1.672
|
||||
c-0.123,0-0.221,0.099-0.221,0.221v0.261c0,0.122,0.098,0.221,0.221,0.221h0.975l-0.842,1.962
|
||||
c-0.029,0.067-0.021,0.146,0.02,0.208s0.109,0.099,0.184,0.099h0.309c0.088,0,0.168-0.053,0.203-0.135l1.027-2.438
|
||||
c0.012-0.026,0.018-0.056,0.018-0.085V3.983C19.449,3.861,19.352,3.763,19.229,3.763L19.229,3.763z M12.202,3.763h-1.257
|
||||
c-0.122,0-0.22,0.099-0.22,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.095,0.059,0.15,0.059
|
||||
c0.005,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.392-0.021c0.161,0,0.28,0.03,0.354,0.09c0.042,0.034,0.091,0.09,0.091,0.217
|
||||
c0,0.104-0.031,0.18-0.096,0.239c-0.071,0.063-0.168,0.095-0.296,0.095c-0.142,0-0.281-0.044-0.424-0.134
|
||||
c-0.036-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.073,0.01-0.106,0.027c-0.07,0.039-0.114,0.113-0.114,0.193v0.307
|
||||
c0,0.078,0.042,0.151,0.109,0.19c0.154,0.091,0.366,0.135,0.649,0.135c0.34,0,0.617-0.095,0.821-0.282
|
||||
c0.21-0.192,0.317-0.445,0.317-0.754c0-0.301-0.102-0.544-0.302-0.723c-0.193-0.172-0.459-0.26-0.792-0.26c0,0,0,0-0.001,0V4.465
|
||||
h0.756c0.122,0,0.221-0.099,0.221-0.221V3.983C12.423,3.861,12.324,3.763,12.202,3.763L12.202,3.763z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 209 KiB |
Before Width: | Height: | Size: 212 KiB |
@@ -1,435 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<path fill="#30302F" d="M31.361,13.876L31.361,13.876c-0.036-0.042-0.079-0.078-0.129-0.107c-0.25-0.145-0.521-0.223-0.824-0.239
|
||||
c-0.169-0.439-0.139-0.992-0.106-1.583c0.024-0.42,0.051-0.896-0.007-1.356c-0.017-0.122-0.076-0.233-0.17-0.314
|
||||
c-0.342-0.294-0.755-0.365-1.131-0.194c-0.159,0.073-0.294,0.182-0.407,0.306c-0.021-0.068-0.039-0.135-0.056-0.198
|
||||
c0.344-0.092,0.65-0.267,0.914-0.52c0.666-0.641,0.927-1.688,0.633-2.547c-0.255-0.741-0.867-1.243-1.694-1.405
|
||||
c0.118-0.129,0.246-0.298,0.264-0.529c0.012-0.142-0.039-0.283-0.138-0.385c-0.1-0.104-0.263-0.167-0.378-0.153
|
||||
c-0.393,0.014-0.798,0.154-1.173,0.4c0-0.012,0-0.023,0-0.035c-0.003-0.403-0.006-0.819,0.159-1.131
|
||||
c0.136-0.426-0.014-0.657-0.162-0.774c-0.097-0.077-0.359-0.229-0.747-0.001c-0.401,0.239-1.059,0.982-1.477,1.88
|
||||
c0-0.004-0.001-0.009-0.001-0.014c-0.108-0.498-0.562-0.607-0.78-0.66c-0.037-0.009-0.149-0.036-0.167-0.046
|
||||
c-0.001-0.002-0.006-0.012-0.021-0.072c-0.308-0.837-1.066-0.797-1.521-0.773c-0.339,0.013-0.506,0.007-0.577-0.077
|
||||
c-0.023-0.028-0.051-0.053-0.081-0.075c-0.001-0.014-0.003-0.027-0.007-0.042c-0.137-0.648-0.52-1.2-1.023-1.474
|
||||
c-0.417-0.23-0.884-0.257-1.348-0.08c-0.166,0.063-0.283,0.208-0.314,0.376C18.579,1.967,18.215,1.947,17.811,2
|
||||
c-0.135,0.018-0.258,0.091-0.336,0.198c-0.066,0.089-0.101,0.199-0.099,0.311c-0.143-0.024-0.287-0.031-0.432-0.021
|
||||
c-0.169-0.503-0.593-0.912-1.12-1.074c-0.489-0.149-0.994-0.063-1.337,0.223c-0.209,0.14-0.33,0.311-0.403,0.469
|
||||
c-0.065-0.03-0.138-0.058-0.22-0.083c-0.729-0.132-1.096,0.148-1.274,0.405c-0.075,0.108-0.119,0.225-0.146,0.33
|
||||
c-0.08-0.001-0.187-0.005-0.322-0.013c-0.459-0.022-1.126-0.054-1.473,0.326c-0.055-0.013-0.109-0.016-0.166-0.01
|
||||
c-0.674,0.08-1.319,0.347-1.895,0.795C8.572,3.812,8.55,3.772,8.523,3.734C7.958,2.957,7.321,3.118,7.14,3.186
|
||||
C6.576,3.399,6.201,4.095,6.267,4.804c0.008,0.09,0.026,0.177,0.053,0.265C5.851,5.111,5.48,5.487,5.399,6.021
|
||||
C5.346,6.366,5.437,6.691,5.64,6.918C5.4,7.195,5.416,7.462,5.484,7.653C5.39,7.745,5.292,7.845,5.2,7.952
|
||||
C4.829,7.803,4.344,8.001,4.155,8.38C4.087,8.516,4.01,8.767,4.146,9.077C3.998,9.148,3.869,9.259,3.767,9.406
|
||||
c-0.285,0.409-0.328,1.018-0.221,1.422c0.134,0.392,0.463,0.549,0.688,0.626c-0.002,0-0.004,0-0.006,0
|
||||
c-0.525,0-1.048,0.489-1.377,0.974c-0.155,0.229-0.48,0.784-0.35,1.278c-0.009,0.014-0.018,0.028-0.025,0.045
|
||||
c-0.478,1.008-0.354,1.956-0.243,2.811c0.005,0.038,0.01,0.076,0.015,0.114c-0.095-0.042-0.196-0.073-0.304-0.091
|
||||
c-0.559-0.092-1.121,0.174-1.399,0.659c-0.271,0.522-0.246,1.104,0.067,1.597c0.354,0.557,0.998,0.903,1.68,0.903l0.075-0.001
|
||||
c0.324-0.01,0.606-0.082,0.845-0.214c0.065,0.531,0.307,0.9,0.689,1.038c-0.036,0.361,0.179,0.739,0.32,0.986l0.038,0.065
|
||||
c0.021,0.036,0.041,0.065,0.036,0.048c0.039,0.171,0.122,0.317,0.243,0.428C4.41,22.275,4.335,22.49,4.328,22.7
|
||||
c-0.007,0.199,0.047,0.872,1.085,1.138l0.066,0.001c0.163,0,0.326-0.031,0.481-0.092c0.059,0.116,0.148,0.218,0.267,0.306
|
||||
c0,0.001,0.001,0.001,0.001,0.001c-0.028,0.299,0.045,0.58,0.213,0.836l0.056,0.141c0.114,0.292,0.314,0.807,0.695,1.008
|
||||
c0.01,0.075,0.036,0.148,0.079,0.213c0.38,0.575,0.918,1.036,1.568,1.343c-0.203,0.239-0.314,0.568-0.285,0.894
|
||||
c0.042,0.462,0.398,0.979,1.293,1.047c0.754-0.013,1.438-0.64,1.563-1.461c0.23,0.496,0.76,0.881,1.666,1.211
|
||||
c0.054,0.02,0.111,0.029,0.17,0.029s0.17-0.021,0.216-0.036c0.146-0.049,0.26-0.162,0.312-0.304c0.29,0.212,0.69,0.236,1.001,0.255
|
||||
c0.083,0.005,0.254,0.015,0.329,0.035c0.086,0.021,0.174,0.021,0.252,0.001c0.002-0.001,0.004-0.001,0.006-0.002
|
||||
c0.039,0.12,0.094,0.231,0.162,0.325c0.167,0.229,0.415,0.365,0.663,0.365c0.032,0,0.063-0.003,0.054-0.006
|
||||
c0.457,0.037,0.87-0.175,1.118-0.566c0.228-0.359,0.268-0.825,0.114-1.225c0.007-0.002,0.014-0.003,0.021-0.005
|
||||
c0.35,0.96,1.188,1.027,2.073,1.099l0.252,0.018c0.343-0.012,0.523-0.167,0.615-0.295c0.202-0.286,0.111-0.626,0.035-0.863
|
||||
c0.047-0.013,0.092-0.033,0.134-0.06c-0.01,0.062-0.014,0.125-0.012,0.19c0.017,0.486,0.359,0.934,0.796,1.04
|
||||
c0.076,0.019,0.163,0.02,0.225,0.003c1.012-0.215,1.238-0.758,1.283-1.063c0.074-0.506-0.243-1.034-0.812-1.346
|
||||
c-0.003-0.001-0.005-0.003-0.008-0.004c0.196-0.101,0.398-0.208,0.604-0.326c0.127,0.059,0.256,0.076,0.373,0.064
|
||||
c0.264-0.012,0.493-0.145,0.652-0.372c0.03,0.014,0.062,0.026,0.095,0.037c0.107,0.035,0.217,0.033,0.325-0.006
|
||||
c1.211-0.44,1.671-0.776,1.762-1.284c0.036-0.206-0.016-0.383-0.085-0.523c0.257-0.248,0.415-0.594,0.565-0.934
|
||||
c0.238,0.323,0.653,0.438,1.115,0.304c0.394-0.112,0.729-0.463,0.853-0.894c0.115-0.401,0.031-0.796-0.229-1.082
|
||||
c-0.042-0.047-0.094-0.086-0.156-0.117l-0.113-0.055c0.073-0.116,0.143-0.252,0.177-0.414c0.003-0.016,0.005-0.03,0.006-0.044
|
||||
c0.646-0.297,1.117-0.976,1.437-1.437c0.12-0.176,0.116-0.41-0.011-0.582c-0.024-0.033-0.05-0.062-0.075-0.086
|
||||
c0.384-0.654,0.325-1.374,0.274-1.961c0.102,0.029,0.2,0.036,0.276,0.021c0.486-0.001,0.886-0.295,1.044-0.766
|
||||
c0.059-0.174,0.079-0.359,0.063-0.545c0.277-0.073,0.492-0.266,0.602-0.544C31.821,14.836,31.644,14.205,31.361,13.876z
|
||||
M21.716,21.769c-0.169-0.178-0.444-0.208-0.64-0.074c-0.079,0.053-0.267,0.176-0.301,0.424c-0.024,0.182,0.043,0.314,0.112,0.41
|
||||
c-0.09,0.06-0.182,0.115-0.273,0.172c-0.096,0.058-0.19,0.116-0.283,0.177c-0.036,0.023-0.069,0.053-0.098,0.086
|
||||
c-0.472-0.057-0.974,0.199-1.382,0.413c-0.28,0.146-0.597,0.312-0.782,0.315c-0.111-0.179-0.3-0.407-0.646-0.362
|
||||
c-0.174,0.03-0.374,0.16-0.44,0.434c-0.194,0.03-0.39,0.057-0.586,0.08c-0.051,0.006-0.1,0.021-0.147,0.045
|
||||
c-0.341-0.176-0.89-0.234-1.778-0.279l-0.076-0.004c-0.118-0.006-0.271-0.014-0.389-0.022c-0.007-0.093-0.031-0.179-0.074-0.258
|
||||
c-0.056-0.104-0.194-0.285-0.485-0.332c-0.194-0.035-0.387,0.046-0.501,0.217c-0.003,0.004-0.006,0.009-0.009,0.014
|
||||
c-0.139-0.028-0.268-0.069-0.384-0.123c0.004-0.114-0.031-0.228-0.101-0.318c-0.306-0.406-0.801-0.707-1.303-1.013
|
||||
c-0.23-0.141-0.45-0.274-0.619-0.403c0.009-0.057,0.008-0.113-0.003-0.167c-0.069-0.333-0.305-0.447-0.42-0.484
|
||||
c0.375-0.09,0.648-0.332,0.757-0.687c0.138-0.451-0.05-0.986-0.438-1.245c-0.202-0.136-0.432-0.184-0.66-0.153
|
||||
c0.473-0.171,0.644-0.479,0.705-0.676c0.13-0.42-0.048-0.904-0.445-1.205c-0.292-0.222-0.64-0.299-0.969-0.225
|
||||
C9.013,16.068,9.004,15.563,9,15.298c0-0.054-0.001-0.103-0.002-0.151c0.753-0.016,1.096-0.425,1.172-0.827
|
||||
c0.039,0.009,0.08,0.016,0.123,0.022c0.529-0.002,0.951-0.306,1.1-0.793c0.176-0.575-0.042-1.248-0.508-1.566
|
||||
c-0.095-0.065-0.296-0.175-0.565-0.178c0.09-0.109,0.214-0.215,0.386-0.301c0.155,0.172,0.428,0.214,0.632,0.091
|
||||
c0.02-0.012,0.039-0.025,0.059-0.04l0.004,0.004l0.089-0.079c0.012-0.011,0.024-0.021,0.036-0.032l0.018-0.016
|
||||
c0.121,0.039,0.243,0.058,0.377,0.058c0,0,0,0,0.001,0c0.267-0.009,0.832-0.18,1.159-0.51c0.011,0.003,0.022,0.006,0.033,0.009
|
||||
c0.443,0.093,0.945-0.227,1.177-0.546c0.269-0.37,0.15-0.668,0.087-0.78c-0.088-0.153-0.223-0.254-0.396-0.301
|
||||
c0.21-0.115,0.426-0.22,0.646-0.315c0.199,0.255,0.491,0.355,0.759,0.27c0.041-0.014,0.08-0.033,0.117-0.057
|
||||
c0.066-0.044,0.122-0.095,0.166-0.152c0.341,0.191,0.7,0.273,1.072,0.274c-0.331,0.296-0.587,0.641-0.728,0.992
|
||||
c-0.133,0.184-0.122,0.447,0.026,0.624c0.09,0.108,0.227,0.171,0.347,0.171c0.002,0,0.005,0,0.007,0l0.128-0.005
|
||||
c0.12-0.018,0.231-0.07,0.332-0.118c0.251-0.119,0.737-0.34,1.229-0.307c-0.122,0.113-0.225,0.23-0.307,0.349
|
||||
c-0.3,0.431-0.407,0.91-0.313,1.384c0.036,0.178,0.165,0.323,0.341,0.38c0.174,0.051,0.364,0.009,0.494-0.116
|
||||
c0.368-0.351,0.849-0.565,1.351-0.61c-0.042,0.183-0.04,0.359,0.003,0.517c0.012,0.155,0.1,0.299,0.235,0.385
|
||||
c0.206,0.132,0.513,0.076,0.664-0.12c0.287-0.367,0.742-0.608,1.18-0.615c0.328,0,0.625,0.148,0.858,0.428
|
||||
c0,0.001,0.001,0.002,0.002,0.002c-0.051,0.311,0.048,0.581,0.194,0.81c-0.232,0.038-0.436,0.139-0.585,0.298
|
||||
c-0.166,0.176-0.408,0.57-0.165,1.238c0.025,0.067,0.063,0.127,0.114,0.179c0.535,0.536,1.064,0.443,1.356,0.201
|
||||
c0.018-0.015,0.035-0.031,0.052-0.047c0.044,0.091,0.067,0.163,0.071,0.206c0.001,0.012,0.003,0.024,0.005,0.036
|
||||
c-0.085,0.087-0.149,0.185-0.193,0.292l-0.025,0.073c-0.046,0.182-0.054,0.366-0.024,0.563c-0.089-0.019-0.174-0.023-0.252-0.017
|
||||
c-0.261,0.012-0.748,0.138-1.088,0.869c-0.139,0.426-0.039,0.833,0.273,1.117c0.316,0.285,0.799,0.372,1.177,0.21
|
||||
c0.005-0.002,0.009-0.004,0.014-0.006c-0.006,0.021-0.01,0.043-0.012,0.065c-0.061,0.062-0.105,0.14-0.127,0.22
|
||||
c-0.038,0.127-0.021,0.267,0.042,0.38c0.034,0.063,0.081,0.116,0.143,0.16c-0.045,0.12-0.101,0.239-0.166,0.356
|
||||
c-0.012,0.022-0.021,0.044-0.026,0.065c-0.005,0.002-0.009,0.004-0.014,0.007c-0.486,0.271-0.787,0.709-1.078,1.134
|
||||
c-0.172,0.251-0.337,0.49-0.523,0.674C21.738,21.793,21.727,21.78,21.716,21.769z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.0335" y1="5.4208" x2="16.0335" y2="27.5461">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.2318" style="stop-color:#D6BE77"/>
|
||||
<stop offset="0.3855" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.6006" style="stop-color:#A5935C"/>
|
||||
<stop offset="0.7402" style="stop-color:#423B27"/>
|
||||
<stop offset="0.7667" style="stop-color:#48402A"/>
|
||||
<stop offset="0.8025" style="stop-color:#595033"/>
|
||||
<stop offset="0.8435" style="stop-color:#766943"/>
|
||||
<stop offset="0.8882" style="stop-color:#9D8C58"/>
|
||||
<stop offset="0.8966" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#A8A66A"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_1_)" d="M14.463,8.571c-0.606,0.253-1.219,0.552-1.714,0.986c-0.111-0.159-0.289-0.287-0.483-0.348
|
||||
c0.532-0.356,1.193-0.517,1.579-1.058c0.059-0.083,0.213-0.329,0.176-0.403c-0.461-0.925-0.783-1.969-1.226-2.922
|
||||
c0.099,0.015,0.293-0.165,0.373,0.012c0.306,0.944,0.662,1.91,1.058,2.871C14.226,7.709,14.514,8.55,14.463,8.571z M12.812,10.386
|
||||
c-0.173-0.435-0.441-1.081-0.956-0.861c-0.608,0.481,0.081,1.285,0.234,0.696c-0.005-0.114-0.273-0.081-0.244-0.241
|
||||
c0.291-0.546,0.843,0.42,0.344,0.662c-0.565,0.36-1.109-0.479-0.809-0.959c0.427-0.972,1.869-1,2.29-1.944l-0.227-0.548
|
||||
c-0.45,1.086-2.05,1.367-2.628,2.306c0.167,0.156,0.08,0.434-0.128,0.525c0.341,0.42,0.724,0.976,1.216,0.971
|
||||
C12.14,10.983,12.911,10.706,12.812,10.386z M13.214,10.5c0.53,0.176,1.257-0.853,0.457-0.773c-0.091-0.03-0.279,0.209-0.135,0.204
|
||||
c0.154-0.111,0.344,0.145,0.175,0.252c-0.339,0.243-0.75-0.259-0.436-0.541l-0.042-0.077c-0.12,0.081-0.232,0.173-0.336,0.263
|
||||
c0.077,0.188,0.211,0.405,0.233,0.61C13.17,10.478,13.125,10.498,13.214,10.5z M12.578,26.658c0.315-0.781,0.431-1.647,0.729-2.434
|
||||
c0.029-0.212,0.404-0.684,0.058-0.74c-0.266,0.402-0.294,1.026-0.444,1.489C12.873,25.531,12.439,26.114,12.578,26.658z
|
||||
M12.054,23.083c-0.406-0.537-1.357-0.935-1.896-1.376c-0.177,0.193-0.632,0.614-0.886,0.852c0.633,0.67,1.263,1.12,2.052,1.239
|
||||
C11.787,23.874,12.025,23.258,12.054,23.083z M12.841,27.639c0.092,0.015,0.109-0.037,0.129-0.147
|
||||
c0.181-0.65,0.167-1.398,0.603-1.946c-0.107-0.027-0.213-0.056-0.319-0.088c-0.201,0.404-0.155,1.563-0.74,1.507
|
||||
C12.462,27.36,12.323,27.604,12.841,27.639z M8.128,21.69c-0.039,0.07-0.087,0.135-0.144,0.193l0.146,0.178
|
||||
C8.166,21.948,8.143,21.814,8.128,21.69z M16.157,24.414c-0.204-0.342-2.105-0.271-2.454-0.37c-0.095,0.25-0.335,0.964-0.368,1.119
|
||||
c0.712,0.203,1.183,0.276,1.898,0.276C16.118,25.48,16.393,25.293,16.157,24.414z M8.421,20.497
|
||||
c0.044,0.001,0.069-0.008,0.082-0.004l0.011-0.018c0.192-0.032,0.48-0.157,0.54-0.371c-0.424-0.683-0.871-1.374-1.139-2.152
|
||||
c-0.137,0.039-1.045,0.29-1.114,0.309C6.873,18.934,7.583,20.319,8.421,20.497z M7.936,22.307L7.725,22.05
|
||||
c-0.126,0.05-0.279,0.067-0.416,0.044c-0.06,0.027-0.175,0.042-0.206,0.044c-0.046,0.19-0.153,0.358-0.256,0.504
|
||||
c0.082,0.106,0.178,0.202,0.251,0.316C7.331,22.761,7.659,22.523,7.936,22.307z M7.381,16.293c0.238-0.004,0.486-0.015,0.439-0.371
|
||||
c-0.053-0.862-0.059-1.672,0.1-2.404c-0.207-0.039-0.911-0.159-1.127-0.195C6.646,14.142,6.29,16.172,7.381,16.293z M7.208,16.586
|
||||
c0.009,0.241,0.036,0.479,0.08,0.712c0.175-0.052,0.36-0.104,0.537-0.154l-0.097-0.581C7.556,16.6,7.379,16.61,7.208,16.586z
|
||||
M8.513,22.081L8.46,22.017c-0.008,0.064-0.026,0.126-0.054,0.188C8.442,22.164,8.478,22.123,8.513,22.081z M8.976,21.569
|
||||
c-0.133-0.144-0.521-0.571-0.159-0.654c0.193,0.039,0.211,0.331,0.369,0.433c0.1-0.106,0.203-0.213,0.315-0.311L9.104,20.55
|
||||
c-0.009,0.002-0.02,0.003-0.033,0.003c-0.626,0.472-1.202,0.16-1.655-0.362c0.278,0.394,0.661,0.939,1.303,1.66
|
||||
C8.799,21.759,8.883,21.669,8.976,21.569z M9.134,21.346l-0.037,0.032v0.001L9.134,21.346z M22.36,6.95
|
||||
c-0.097,0.211-0.168,0.448-0.298,0.573c0.142,0.118,0.256,0.252,0.409,0.388C22.665,7.588,22.565,7.069,22.36,6.95z M6.493,6.91
|
||||
C6.255,7.05,5.83,7.259,5.96,7.506c0.311,0.49,0.968,0.659,1.398,1.036c1.687,1.04-0.338,2.666-0.288,4.124
|
||||
c0.072,0.014,0.328,0.068,0.328,0.068c0.03-0.212,0.057-0.432,0.154-0.624c-0.554-1.33,1.983-2.572,0.424-3.495
|
||||
c-0.729-0.618-2.51-1.386-0.475-1.732c0.633,0.106,1.314,1.091,1.837,1.452c0.03-0.037,0.061-0.073,0.092-0.109
|
||||
C8.42,7.708,7.797,5.816,6.493,6.91z M23.268,7.222c-0.119,0.337-0.348,0.607-0.598,0.85c0.247,0.129,0.48,0.233,0.771,0.27
|
||||
C23.527,7.969,23.458,7.566,23.268,7.222z M22.106,6.533c0.01-0.044,0.017-0.098,0.011-0.143c-0.225-0.004-0.45-0.007-0.674-0.011
|
||||
C21.374,6.837,22.025,6.923,22.106,6.533z M21.431,6.957c-0.065,0.054-0.095,0.185-0.123,0.321c0.102,0.051,0.567,0.171,0.567,0.171
|
||||
C22.09,6.98,21.715,6.718,21.431,6.957z M22.936,7.204c0.111-0.148,0.29-0.452,0.27-0.857c-0.21-0.003-0.421-0.006-0.631-0.008
|
||||
C22.674,6.492,22.743,7.359,22.936,7.204z M23.913,7.221c0.156-0.234,0.182-0.538,0.18-0.811c-0.188-0.01-0.369-0.01-0.555-0.012
|
||||
c0.149,0.309,0.22,0.691,0.215,1.034C23.815,7.385,23.871,7.284,23.913,7.221z M24.495,6.058c-0.243,0.018-1.021,0.016-2.165,0.016
|
||||
c-1.244,0-1.881-0.074-1.969,0.109c-0.147,0.305-0.304,0.853-0.604,0.981c-0.3,0.128-1.801-0.016-2.139-0.027
|
||||
C17.376,7.13,17.518,6.804,17.09,6.78s-0.445,0.221-0.456,0.358c-0.011,0.125,0.055,0.42,0.419,0.45
|
||||
c0.336,0.028,0.287-0.225,0.658-0.216c0.371,0.009,1.619,0.155,1.925,0.159c0.213,0.003,1.363,0.04,1.786,0.225
|
||||
c0.373,0.163,0.426,0.315,0.797,0.537c0.36,0.215,0.878,0.575,2.057,0.561c-0.013-0.041-0.021-0.081-0.038-0.121
|
||||
c-0.866,0.115-1.652-0.241-2.213-0.893c-0.431-0.555-2.058-0.155-1.8-0.848c0.353-0.669,0.192-0.961,1.148-0.839
|
||||
C21.818,6.061,24.447,6.398,24.495,6.058z M23.949,7.531c-0.112,0.448-0.146,0.748-0.209,0.921c0.15,0.018,0.33,0.025,0.454,0.043
|
||||
c0,0,0.091-0.216,0.092-0.216C24.377,8.033,24.198,7.697,23.949,7.531z M20.906,4.343c0.368,0.376,0.444,1.082,0.192,1.456
|
||||
c-0.104,0-0.13,0.003-0.233,0.001c0-0.001-0.026-0.001-0.026-0.002C20.752,5.808,20.572,5.8,20.441,5.8
|
||||
c-0.05,0.007-0.257,0.012-0.377,0.114c-0.048,0.034-0.103,0.138-0.1,0.138c-0.044,0.082-0.067,0.142-0.084,0.24
|
||||
c-1.125-0.27-1.18-1.631-0.385-2.108c0.053-0.032,0.481-0.134,0.852-0.01C20.551,4.242,20.743,4.288,20.906,4.343z M20.645,5.192
|
||||
c0-0.294-0.238-0.533-0.533-0.533c-0.294,0-0.533,0.238-0.533,0.533c0,0.294,0.238,0.533,0.533,0.533S20.646,5.486,20.645,5.192z
|
||||
M15.609,2.983c-0.072-0.071-0.161,0.044-0.152,0.12c0.042,0.151,0.294,0.098,0.416,0.103c0.517-0.415-0.702-1.17-0.956-0.381
|
||||
c-0.183,0.568,0.268,0.677,1.165,0.901s1.118,2.062,2.592,0.787c-0.119-0.052-0.195-0.165-0.258-0.28
|
||||
c-0.172,0.116-0.615,0.368-0.662,0.331c-0.795,0.062-0.752-1.336-1.925-1.141c-0.997,0.151-0.487-1.114-0.05-0.532
|
||||
C15.783,2.977,15.685,3.058,15.609,2.983z M24.701,8.616c0.081,0.256,0.141,0.554-0.09,0.752c-0.004,0.003-0.008,0.004-0.011,0.007
|
||||
c0.704,0.601,1.316,1.307,1.763,2.109c0.162,0.291,0.245,0.218,0.165-0.114c-0.033-0.136-0.011-0.335-0.051-0.462
|
||||
C26.196,10.012,25.711,9.326,24.701,8.616z M24.791,10.859c0.307-0.075,0.591,0.015,0.841,0.178c0.177,0.116,0.217,0.01,0.072-0.185
|
||||
c-0.378-0.506-0.826-0.96-1.308-1.371c-0.189,0.093-0.234,0.374-0.299,0.55C24.372,10.267,24.624,10.54,24.791,10.859z
|
||||
M26.654,10.262c-0.016-0.182-0.024-0.365-0.029-0.547c-0.188-0.1-0.367-0.216-0.54-0.345c0.012,0.101,0.036,0.202,0.041,0.303
|
||||
c0.147,0.187,0.278,0.386,0.388,0.596C26.59,10.415,26.668,10.414,26.654,10.262z M17.341,8.741
|
||||
c3.163-0.959,1.529,0.828,2.879,1.292c-0.306-0.512-0.362-1.342-0.772-1.749c-0.771-0.175-1.528-0.127-2.221,0.257
|
||||
c-2.432,0.407-2.673-3.595-0.029-2.867c0.581,0.327,1.151,0.469,1.824,0.433c-0.262-0.301-0.443-0.717-0.413-1.12
|
||||
c0.004-0.053-0.076-0.076-0.128-0.037c-0.1,0.076-0.205,0.143-0.327,0.182c-0.029,0.159,0.313,0.625-0.042,0.522
|
||||
c-0.803-0.805-1.764-0.636-2.715,0.147C14.101,7.098,15.596,9.485,17.341,8.741z M18.501,10.312
|
||||
c0.148,0.044,0.296,0.087,0.433,0.156c0.269-0.171,0.673-0.068,0.365-0.474c-0.13-0.299-0.144-0.898-0.518-1.007
|
||||
c-0.98,0.034-2.002,0.743-2.351,1.666c-0.006,0.005-0.012,0.01-0.018,0.015c0.003,0.003,0.005,0.006,0.008,0.008
|
||||
c0.006-0.004,0.013-0.007,0.019-0.011C16.495,10.726,17.474,10.004,18.501,10.312z M18.972,28.031
|
||||
c0.198,0.042-0.026-0.391-0.224-0.936c-0.055-0.15-0.095-0.117-0.116,0.034c-0.022,0.155-0.086,0.286-0.217,0.375
|
||||
C18.45,27.894,18.589,28.028,18.972,28.031z M17.256,24.834c-0.042-0.152-0.066-0.445-0.129-0.588
|
||||
c-0.222,0.036-0.446,0.066-0.669,0.093c0.065,0.159,0.091,0.297,0.083,0.436c0,0.02-0.001,0.04-0.002,0.061L17.256,24.834z
|
||||
M18.517,26.098c-0.006-0.222,0.035-0.427,0.153-0.594c-0.105,0.031-0.21,0.063-0.315,0.088c0.007,0.137,0.057,0.321,0.114,0.522
|
||||
C18.498,26.217,18.52,26.207,18.517,26.098z M20.502,23.638c-0.576-0.636-1.681,0.57-2.456,0.554
|
||||
c0.051,0.234,0.196,0.894,0.242,1.102C19.032,24.974,21.086,24.882,20.502,23.638z M10.039,21.301
|
||||
c-0.148-0.706-2.152,2.069-2.442,2.367c0.011,0.025,0.015,0.053,0.018,0.08C8.353,22.892,9.392,22.207,10.039,21.301z M7.414,21.8
|
||||
c0.253-0.004,0.491-0.174,0.503-0.448c-0.636-0.586-1.087-2.191-2.141-1.532C6.247,20.533,6.592,21.532,7.414,21.8z M5.384,19.996
|
||||
c0.233,0.797,1.148,1.418,1.348,2.253c0.3-0.597-0.977-1.422-1.235-2.302C5.459,19.963,5.421,19.98,5.384,19.996z M7.413,24.048
|
||||
c-0.029,0.212,0.02,0.417,0.136,0.569c0.505-0.583,0.896-1.447,1.692-1.645c-0.065-0.066-0.129-0.133-0.19-0.202
|
||||
C8.514,23.113,8.073,24.107,7.413,24.048z M27.674,20.378c1.198-1.046-1.476-0.614-1.735-1.284c-0.02,0.058-0.097,0.26-0.097,0.26
|
||||
c0.43,0.219,1.909,0.25,1.596,0.959C27.515,20.341,27.6,20.379,27.674,20.378z M28.501,11.87c0.084,0.654,0.241,1.353,0.479,2.138
|
||||
c0.177-0.044,0.783-0.185,0.991-0.225c-0.398-0.919-0.041-2.091-0.172-3.128C29.097,10.049,28.498,11.257,28.501,11.87z
|
||||
M22.931,23.414c0.259,0.457,1.265,1.022,0.82,1.589c0.065,0.069,0.164,0.108,0.273,0.108c1.035-0.29-0.998-1.308-0.823-1.97
|
||||
C23.115,23.233,23.021,23.325,22.931,23.414z M23.853,19.33c1.079,0.306,2.07,0.57,3.128,0.892c0.888-0.196-2.862-0.938-3.12-1.07
|
||||
L23.853,19.33z M25.45,20.694c0.086,0.036,0.175,0.072,0.26,0.109l0.144-0.238C25.693,20.521,25.481,20.511,25.45,20.694z
|
||||
M26.316,21.518c0.276-0.108,0.689,0.027,0.942,0.124c0.102-0.149,0.23-0.303,0.268-0.478c-0.603-0.14-0.144-0.025-1.377-0.494
|
||||
l-0.179,0.296C26.069,21.055,26.289,21.254,26.316,21.518z M25.318,20.965c-0.185,0.35-0.443,0.765-0.786,1.19
|
||||
c-0.508,0.548-0.634,0.879,0.21,1.463C25.166,22.838,26.913,21.436,25.318,20.965z M3.887,13.157
|
||||
c0.829,0.252,1.746,0.062,2.549,0.349c0.014-0.061,0.054-0.231,0.054-0.231c-0.467-0.203-2.109,0.102-1.767-0.737
|
||||
C4.313,12.359,4.033,12.84,3.887,13.157z M7.762,7.316c-0.263-0.272-0.605-0.01-0.896,0.093c0.663,0.565,1.379,0.985,1.935,1.696
|
||||
c0.045-0.058,0.091-0.119,0.145-0.17C8.67,8.587,7.098,7.567,7.762,7.316z M7.698,12.796c0.085,0.017,0.459,0.092,0.459,0.092
|
||||
l0.04-0.292c-0.154-0.035-0.279-0.107-0.42-0.218C7.739,12.521,7.716,12.666,7.698,12.796z M8.62,11.986
|
||||
c0.351-0.881,0.779-1.608,1.306-2.22C9.843,9.691,9.733,9.585,9.643,9.507L9.64,9.51C9.51,9.403,9.32,9.227,9.183,9.122
|
||||
c-0.401,0.661-2.248,2.726-0.893,3.176C8.454,12.298,8.561,12.122,8.62,11.986z M10.13,10.527c-0.079-0.076-0.166-0.145-0.251-0.212
|
||||
c-0.614,0.629-0.727,1.735-1.374,2.248c-0.005,0.145-0.042,0.29-0.055,0.435c0.193,0.119,0.156,0.436-0.053,0.517
|
||||
c0.026,0.437,0.11,0.954,0.498,1.131c1.565,0.047,0.371-1.809,0.098-0.96c-0.13,0.289,0.218,0.513,0.267,0.251
|
||||
c-0.154-0.058-0.087-0.297,0.064-0.292c0.241,0.026,0.351,0.37,0.181,0.543c-0.463,0.371-0.866-0.084-0.826-0.766
|
||||
C8.77,12.233,9.31,11.156,10.13,10.527z M11.218,11.051c-0.324-0.275-0.586-0.613-0.849-0.938c-0.084-0.011-0.163-0.073-0.223-0.132
|
||||
c-0.027,0.032-0.054,0.064-0.081,0.097c0.408,0.289,0.702,0.707,1.011,1.091C11.125,11.139,11.172,11.092,11.218,11.051z
|
||||
M9.761,20.253c1.163,0.007,0.574-1.65-0.257-0.967c0.025,0.176,0.421,0.601,0.483,0.23c-0.007-0.03-0.026-0.03-0.049-0.028
|
||||
c-0.275,0.081-0.257-0.356,0.015-0.312c1.035,0.288-0.514,1.93-1.019-0.634c-0.177-0.03-0.342-0.124-0.498-0.287
|
||||
c-0.05-0.052-0.092-0.017-0.057,0.063c0.247,0.573,0.703,1.152,0.976,1.766C9.479,20.223,9.644,20.253,9.761,20.253z M8.12,17.063
|
||||
c0.475-0.151,0.792,0.435,0.324,0.706c0.208,0.327,0.419,0.486,0.644,0.486c1.713-0.081,0.674-1.674-0.13-1.154
|
||||
c0.041,0.264,0.251,0.617,0.46,0.406c0.016-0.017-0.003-0.039-0.029-0.041c-0.129-0.006-0.233-0.195-0.087-0.277
|
||||
c0.282-0.181,0.591,0.186,0.407,0.447c-1.382,1.093-1.16-2.042-1.228-2.91c-0.161-0.214-0.276-0.46-0.337-0.715
|
||||
C7.945,14.792,8.3,15.662,8.01,16.405L8.12,17.063z M9.857,12.493c-0.331,0.83,0.471,0.65,0.5,0.482
|
||||
c0.006-0.033-0.078-0.029-0.101-0.01c-0.119,0.094-0.336-0.079-0.26-0.211c0.142-0.338,0.761-0.171,0.667,0.219
|
||||
c-0.855,1.543-1.9-1.159-0.098-1.955c-0.072-0.09-0.146-0.18-0.223-0.267c-0.687,0.506-1.171,1.391-1.338,2.445
|
||||
c0.294-0.11,0.649,0.066,0.794,0.334c0.167,0.09,0.3,0.282,0.492,0.313C11.478,13.838,10.899,11.666,9.857,12.493z M9.846,7.641
|
||||
c0.644-0.154,1.137-0.734,1.707-1.081c0.364-0.263,0.084-0.686-0.069-0.978C10.994,5.961,8.502,7.038,9.846,7.641z M7.999,7.536
|
||||
C7.95,7.578,7.896,7.598,7.841,7.621C8.66,8.393,9.64,8.999,10.409,9.814c0.053-0.04,0.123-0.056,0.106-0.118
|
||||
C10.421,9.36,8.917,8.406,7.999,7.536z M8.226,13.079c-0.735-0.144-2.373-0.304-3.203-0.443c-0.067,0.077-0.079,0.158,0.013,0.219
|
||||
c0.144,0.072,0.292,0.101,0.509,0.117c1.113,0.082,2.66,0.398,2.698,0.322C8.288,13.204,8.304,13.185,8.226,13.079z M7.945,6.413
|
||||
c0.466,0.395,0.899,1.042,1.424,1.401c0.075,0.051,0.114,0.042,0.03-0.032C9.193,7.6,9.094,7.294,9.184,7.028
|
||||
C8.724,6.928,8.438,5.872,7.945,6.413z M4.731,18.423c-0.196,0.057-0.41,0.128-0.372,0.365c0.01,0.14-0.026,0.339,0.04,0.418
|
||||
c0.745-0.097,1.372-0.593,2.13-0.67c-0.002-0.013-0.026-0.17-0.028-0.188C5.879,18.374,4.901,19.339,4.731,18.423z M5.035,18.317
|
||||
c0.011,0.06,0.015,0.131,0.028,0.189C9.361,17.249,9.322,16.922,5.035,18.317z M8.651,6.127c0.197,0.262,0.377,0.419,0.611,0.606
|
||||
h0.003L9.27,6.734V6.732c0.02,0.001,0.049-0.005,0.063,0.006c0.534-0.646,1.328-0.974,2.012-1.426
|
||||
c-0.127-0.25-0.22-0.473-0.375-0.724C10.165,5.034,9.268,5.416,8.651,6.127z M6.218,12.041c0.084,0.02,0.163,0.04,0.255,0.043
|
||||
c0.103,0.003,0.234-0.013,0.286-0.095c-0.173,0.005-0.336-0.05-0.492-0.147L6.218,12.041z M7.376,10.663
|
||||
c0.251-0.449,0.515-0.929,0.265-1.39L7.64,9.275C7.541,9.067,7.363,8.946,7.194,8.8c-0.34,0.677-1.594,2.556-0.503,2.88
|
||||
C7.131,11.667,7.107,10.956,7.376,10.663z M5.106,20.111c-0.014,0.005-0.118,0.042-0.118,0.042c-0.222-0.066-0.466,0.184-0.565,0.35
|
||||
c-0.183,0.242,0.314,0.879,0.359,1.054c0.071,0.315,0.451,0.29,0.707,0.249c0.695,0.131,0.723,1.175,0.044,1.202
|
||||
C5.354,23.02,4.993,22.8,5.07,22.553c0.061-0.098,0.233-0.094,0.278,0.019c0.123,0.247,0.465,0.083,0.37-0.159
|
||||
c-0.393-0.89-1.623,0.565-0.279,0.923c0.353,0.019,0.671-0.197,0.842-0.483C6.838,21.819,5.314,21.105,5.106,20.111z M6.655,22.887
|
||||
c-0.21,0.22-0.454,0.524-0.133,0.763c0.104-0.175,0.216-0.343,0.362-0.489C6.789,23.087,6.73,22.978,6.655,22.887z M8.237,25.008
|
||||
c1.135-2.393,2.666-0.635,4.389-0.114c0.054-0.214,0.229-0.91,0.289-1.166c-0.253-0.044-0.485-0.122-0.69-0.232
|
||||
c-0.617,1.341-1.995,0.112-2.847-0.24c-0.771,0.054-1.205,1.355-1.817,1.745c-1.076-0.625-0.033-1.82,0.522-2.417
|
||||
c-0.666,0.505-1.795,1.152-1.179,2.118c0.145,0.352,0.335,0.974,0.681,0.937C7.819,25.649,8.075,25.371,8.237,25.008z M7.08,19.736
|
||||
c-0.2-0.311-0.361-0.638-0.472-0.9c-0.674-0.104-2.318,1.319-2.543,0.31c-0.072-0.425,0.003-0.898,0.5-0.993
|
||||
c0.597-0.208,1.21-0.392,1.807-0.579c-0.031-0.062-0.059-0.124-0.084-0.187c-0.587,0.453-1.517,0.264-2.14,0.677
|
||||
c-0.492,0.142-0.682,1.833-0.069,2.035C6.271,19.34,6.574,19.125,7.08,19.736z M7.917,25.804c-0.068,0.061-0.143,0.118-0.229,0.172
|
||||
c0.363,0.551,0.906,0.993,1.534,1.247c0.606,0.126,1.553,0.813,0.838,1.407c-0.284,0.27-1.044-0.289-0.561-0.493
|
||||
c0.066,0,0.138,0.041,0.15,0.133c0.068,0.245,0.411,0.057,0.353-0.121c-0.567-1.237-1.739,0.762-0.164,0.885
|
||||
c0.517-0.009,0.994-0.454,1.073-0.967C10.895,26.882,8.517,26.89,7.917,25.804z M4.013,17.308c-0.002,0.147,0.044,0.294,0.098,0.432
|
||||
c0.067-0.032,0.136-0.059,0.205-0.086c-0.026-0.093-0.106-0.352-0.139-0.475C4.104,17.19,4.053,17.267,4.013,17.308z M11.166,25.25
|
||||
c0.238-0.026,0.503-0.148,0.615-0.355c-0.775-0.247-2.01-1.451-2.664-0.581C9.772,24.672,10.433,25.09,11.166,25.25z M10.464,26.861
|
||||
c0.253,0.014,0.329-0.265,0.328-0.348c-0.072-0.824-1.596-1.052-2.168-1.536C7.706,26.139,9.671,26.591,10.464,26.861z
|
||||
M4.608,17.561c0.08-0.022,0.16-0.042,0.24-0.061c-0.043-0.179-0.079-0.36-0.106-0.54c-0.078,0.075-0.166,0.13-0.263,0.164
|
||||
L4.608,17.561z M5,11.757c0.067,0.014,0.685,0.138,0.921,0.211c0.033-0.125,0.063-0.296,0.11-0.397
|
||||
c-0.034-0.1-0.055-0.197-0.065-0.291c-0.272,0.128-0.626,0.208-0.94,0.149C5.017,11.538,5.02,11.648,5,11.757z M3.439,14.174
|
||||
c-0.175-0.023-0.381-0.015-0.511-0.209c-0.774,1.634,0.286,3.207-0.309,4.329c-0.536,0.793-1.784-0.079-1.058-0.761
|
||||
c0.103-0.08,0.255-0.022,0.296,0.099c0.069,0.138-0.148,0.224-0.129,0.348c0.089,0.568,0.851,0.073,0.708-0.324
|
||||
c-0.152-0.778-1.134-0.724-1.447-0.181c-0.474,0.915,0.42,1.807,1.362,1.77C4.747,19.173,2.524,15.647,3.439,14.174z M4.61,11.049
|
||||
c0.229,0.048,0.472,0.093,0.702,0.093C6.318,11.221,6.22,9.37,6.943,8.623c-0.2-0.135-0.402-0.256-0.615-0.384
|
||||
c-0.875,0.548-0.658,2.484-1.519,2.522c-0.503,0.053-0.813-0.798-0.218-0.867c0.266-0.017,0.248,0.368-0.011,0.318
|
||||
c-0.055,0.127,0.12,0.254,0.217,0.24c0.248-0.001,0.282-0.287,0.342-0.474C5.27,9.726,4.755,9.495,4.504,9.483
|
||||
c-0.461,0.045-0.579,0.825-0.484,1.184C4.115,10.946,4.447,10.986,4.61,11.049z M3.93,17.027c0.192,0.01,0.423-0.176,0.575-0.218
|
||||
c0.414-0.581-0.072-1.861,0.069-2.622c-0.948-0.306-1.037,0.468-0.934,1.19C3.75,15.784,3.511,16.884,3.93,17.027z M5.28,9.497
|
||||
c0.149-0.495,0.362-1.038,0.783-1.429C6.01,8.031,5.954,7.99,5.903,7.942c-0.183,0.18-0.371,0.365-0.49,0.56
|
||||
c0.043,0.301-0.427,0.521-0.599,0.241c-0.06-0.148,0.125-0.286,0.254-0.176C5.222,8.136,3.733,8.597,5.28,9.497z M6.667,17.483
|
||||
l0.327-0.098c-0.059-0.271-0.089-0.564-0.092-0.893c-0.735-0.58-0.576-1.795-0.524-2.66c-0.8-0.41-2.074,0.014-2.768-0.522
|
||||
c-0.104-0.657,0.782-1.43,1.435-0.982c0.579,0.081,1.158,0.176,1.723,0.281c0.008-0.092,0.019-0.183,0.033-0.275
|
||||
c-0.8,0.183-1.71-0.38-2.522-0.377c-0.664-0.111-2.105,2.012-0.756,1.863C7.505,13.783,5.6,14.853,6.667,17.483z M4.848,14.221
|
||||
c-0.026,1.026,0.137,2.104,0.297,3.209c0.267-0.113,0.895-0.002,0.936-0.414c0,0-0.089-1.196-0.125-1.567
|
||||
c-0.04-0.386,0.066-1.165-0.467-1.145v-0.002C5.355,14.28,4.988,14.237,4.848,14.221z M11.892,25.257
|
||||
c-0.927,0.753-2.046-0.258-2.962-0.697c-0.045,0.057-0.089,0.115-0.131,0.174c4.036,1.765,1.13,1.885,2.701,2.602
|
||||
C11.448,26.679,12.222,25.832,11.892,25.257z M21.972,24.377c0.4,1.163-1.512,1.601-2.24,2.088c0.02,0.079,0.043,0.158,0.067,0.236
|
||||
c0.683-0.27,1.38-0.622,2.187-1.105c0.265-0.177,0.489-0.004,0.643,0.232c0.191,0.35,0.561,0.396,0.728,0.017
|
||||
c-0.517-0.455-0.94-1.031-1.298-1.544C22.03,24.327,22.001,24.352,21.972,24.377z M20.251,27.465l0.086,0.162
|
||||
c0.461-0.356,1.718-0.188,1.687,0.515c-0.106,0.242-0.609,0.388-0.635-0.1c-0.015-0.059,0.019-0.187-0.019-0.225
|
||||
c-0.487,0.155-0.263,0.879,0.139,0.977C23.604,28.347,21.547,26.346,20.251,27.465z M23.948,23.323
|
||||
c-0.625-0.84,1.31-2.168,1.449-3.338c-0.198-0.075-0.38-0.142-0.566-0.196c-0.154,0.275-0.292,0.555-0.419,0.857
|
||||
c0.417,1.206-1.687,2.062-0.561,3.118c0.537,0.442,1.362,1.482,0.158,1.664c-0.734-0.152-1.088-1.001-1.614-1.476
|
||||
c-0.031,0.05-0.076,0.088-0.116,0.13c0.563,0.7,0.91,1.463,1.676,1.717C26.395,24.912,25.292,24.568,23.948,23.323z M22.235,25.822
|
||||
c-0.764,0.411-1.523,0.859-2.342,1.172l0.091,0.26c0.809-0.285,1.616-0.662,2.463-1.152C22.39,26.019,22.31,25.831,22.235,25.822z
|
||||
M26.582,21.779c-0.579,0.152-1.062,1.662-1.537,2.074c0.094,0.078,0.217,0.187,0.336,0.313c0.591-0.447,0.662-1.937,1.548-1.943
|
||||
c0.26-0.02,0.542,0.066,0.63,0.339c0.218,0.725-1.066,0.58-0.504,0.179c0.134,0.075,0.298,0.01,0.176-0.152
|
||||
c-0.688-0.25-0.793,1.026,0.116,0.761c0.434-0.123,0.732-0.781,0.389-1.159C27.362,22.013,27.012,21.82,26.582,21.779z
|
||||
M30.982,14.203c-0.805-0.464-1.802,0.101-2.812,0.412c-0.341,0.141-0.422,0.491-0.253,1.106c0.21,1.002,0.157,2.041,0.065,3.017
|
||||
c0.084,0.009,0.169,0.021,0.253,0.033l0.082,0.012c0.601-1.341-1.021-4.602,1.653-3.956c0.077-0.537,0.843-0.638,0.997-0.072
|
||||
c0.083,0.192-0.066,0.53-0.281,0.331c-0.044-0.104-0.003-0.255-0.078-0.362c-0.106-0.091-0.264-0.04-0.316,0.085
|
||||
c-0.046,0.23,0.34,0.542,0.543,0.588C31.363,15.338,31.255,14.52,30.982,14.203z M17.447,25.699c0,0-0.099-0.44-0.125-0.562
|
||||
c-0.205,0.008-0.618,0.003-0.828,0.003c-0.259,1.155-1.851,0.322-2.674,0.579c-0.422,0.542-0.361,1.31-0.58,1.938
|
||||
c-0.117,0.441-0.609,0.274-0.922,0.14c-0.43-0.357,0.107-2.098,0.24-2.606c-0.162-0.059-0.322-0.12-0.482-0.182
|
||||
c0.917,1.396-1.867,2.697,1.171,3.803c0.027,0,0.049-0.008,0.058-0.011C14.104,24.799,13.671,26.074,17.447,25.699z M26.284,17.999
|
||||
c-0.131-1.284,0.251-2.755-0.611-3.851c-0.549-0.747-1.811-2.851-2.572-1.432c-0.264,0.823,1.498,1.384,1.639,2.835
|
||||
c1.389,0.398,1.487,1.625,1.341,2.939c-0.057,1.059,1.565,0.554,2.097,1.092c0.229,0.36-0.024,1.092-0.494,1.112
|
||||
c-0.204-0.022-0.428-0.131-0.62-0.169c-0.493-0.014-0.931-0.268-1.383-0.429c-0.016,0.047-0.031,0.093-0.048,0.14
|
||||
c0.698,0.009,1.302,0.568,1.987,0.624c0.607-0.157,1.074-0.848,1.424-1.352C28.374,18.599,26.427,19.505,26.284,17.999z
|
||||
M28.631,15.655c-0.015,1.069,0.385,2.142-0.016,3.196c0.088,0.027,0.175,0.063,0.264,0.109c0.672-0.983-0.048-2.216,0.363-3.199
|
||||
c0.408-0.62,1.336,0.049,0.81,0.578c-0.141,0.141-0.358-0.096-0.208-0.225c0.207-0.231-0.193-0.42-0.342-0.192
|
||||
c-0.302,0.322,0.106,0.812,0.417,0.759c0.688-0.002,0.802-0.968,0.326-1.328C29.833,14.916,28.733,14.879,28.631,15.655z
|
||||
M14.028,27.682c-0.112,0.02-0.15,0.171-0.15,0.171c-0.042,0.181,0.012,0.44,0.095,0.615c0.199,0.325,0.912,0.217,1.258,0.313
|
||||
c0.343-0.089,0.182-0.62,0.862-0.633c0.805-0.015,0.944,0.99,0.128,1.011c-0.269,0.042-0.253-0.353,0.027-0.3
|
||||
c0.232-0.009,0.279-0.343,0.034-0.4c-0.139-0.024-0.35-0.014-0.434,0.106c-0.14,0.295-0.003,0.939,0.42,0.884
|
||||
c0.67,0.031,0.972-0.683,0.692-1.212C16.441,27.211,14.899,28.054,14.028,27.682z M13.969,26.929c0.21,0.009,0.42,0.013,0.63,0.013
|
||||
c0.664-0.006,1.36-0.032,2.027-0.136c0.173-0.139,0.027-0.53,0.034-0.739C15.79,26.255,14.075,25.632,13.969,26.929z M17.017,26.761
|
||||
c0.116-0.012,0.223-0.021,0.339-0.035c-0.027-0.145-0.101-0.563-0.124-0.701c-0.071,0-0.173,0.011-0.267,0.021
|
||||
C16.98,26.227,17.011,26.613,17.017,26.761z M21.724,24.571c-0.598,0.564-1.823,0.76-2.058,1.582
|
||||
C20.297,25.782,21.89,25.245,21.724,24.571z M22.196,23.727l-0.366-0.415c-0.291,0.228-0.595,0.444-0.905,0.643
|
||||
c0.112,1.231-1.518,0.97-2.003,1.72c-0.418,0.898,0.524,1.675,0.428,2.509c-0.216,0.279-0.771,0.138-1.041-0.033
|
||||
c-0.131-0.171-0.135-0.396-0.197-0.594c-0.153-0.037-0.235-0.162-0.286-0.301c0.088,1.437,0.697,1.405,1.978,1.511
|
||||
c0.306-0.009,0.292-0.194,0.193-0.504C18.473,24.748,20.202,25.765,22.196,23.727z M13.937,27.233l-0.021,0.264
|
||||
c0.989,0.124,2.213-0.352,3.071,0.204c0.203,0.006,0.428-0.021,0.611-0.091c-0.042-0.184-0.094-0.376-0.158-0.585
|
||||
C16.294,27.157,15.133,27.303,13.937,27.233z M21.625,23.082c-0.079-0.089-0.174-0.219-0.25-0.283
|
||||
c-0.247,0.185-0.516,0.331-0.773,0.497c0.115,0.109,0.185,0.203,0.243,0.342C21.108,23.464,21.369,23.277,21.625,23.082z
|
||||
M22.501,14.896c0.78,0.784,1.125-0.573,0.506-0.225c0.302,0.281-0.309,0.418-0.328,0.058c-0.009-1.237,1.399,0.339,1.444,0.833
|
||||
c0.1-0.033,0.2-0.05,0.297-0.052C24.09,13.674,21.918,13.574,22.501,14.896z M24.173,18.922c0.594-0.961-0.982-2.761-1.649-1.344
|
||||
c-0.26,0.796,0.98,1.026,0.983,0.383c-0.16,0.033-0.433,0.111-0.544-0.044c-0.089-0.158-0.064-0.406,0.07-0.48
|
||||
c0.697-0.194,1.176,0.977,0.96,1.443L24.173,18.922z M23.898,16.13c-0.238,0.935,1.15,1.845,0.575,2.864
|
||||
c0.213,0.054,0.881,0.226,1.074,0.278c0.326-0.834,0.528-2.254-0.219-3.025C25.116,15.931,24.138,15.546,23.898,16.13z
|
||||
M24.523,19.705c-0.147-0.039-0.294-0.078-0.439-0.125c-0.062,0.2-0.148,0.399-0.255,0.591c0.148,0.058,0.277,0.152,0.36,0.223
|
||||
C24.287,20.159,24.414,19.932,24.523,19.705z M23.733,11.955c-0.024-0.026-0.054-0.047-0.083-0.069
|
||||
c-1.2,0.186-1.596-0.78-2.707-0.662c-0.409,0.334-0.975,0.812-0.791,1.376c-0.002,0.004-0.004,0.007-0.006,0.011
|
||||
c0.003-0.003,0.006-0.006,0.008-0.01c0.638-0.82,1.967-1.22,2.816-0.199C23.145,12.161,23.426,11.95,23.733,11.955z M24.592,10.929
|
||||
c-0.154-0.246-0.342-0.47-0.555-0.667c-0.121,0.47-0.016,0.964,0.063,1.18C24.151,11.326,24.303,11.051,24.592,10.929z
|
||||
M23.923,9.121c-0.774-0.049-1.558-0.172-2.081-0.803c-0.734-0.615-1.768-0.428-2.657-0.532c-0.511,0.01-1.056-0.163-1.55-0.084
|
||||
c-0.546,0.44-1.411,0.106-1.348-0.644c0.062-0.673,1.091-0.756,1.411-0.223c0.657-0.04,1.734,0.389,2.127-0.297
|
||||
c-0.656-0.317-1.45-0.132-2.113-0.361c-0.406-0.261-0.855-0.46-1.349-0.351c-1.787,0.431-0.507,3.13,1.011,2.441
|
||||
c0.594-0.428,1.302-0.278,1.983-0.222c0.352,0.003,0.451,0.353,0.571,0.623c0.274,0.631,0.65,2.339,1.546,1.944
|
||||
c-0.015-0.368-0.03-0.955,0.218-1.242c0.069-0.127,0.391-0.468,0.433-0.162c-0.284,1.26,0.179,2.402,1.443,2.196
|
||||
c-0.159-0.715-0.025-1.487,0.336-2.122C23.918,9.23,23.925,9.176,23.923,9.121z M21.081,7.253c-0.009-0.407-0.491-0.256-0.523,0.003
|
||||
C20.691,7.255,20.882,7.255,21.081,7.253z M18.597,4.113c0.044,0.068,0.092,0.154,0.143,0.194c0.002,0,0.009,0.003,0.012,0.004
|
||||
c1.287-0.994,2.348,0.218,2.306-0.427c0.004-0.026,0.007-0.053,0.009-0.079c-0.405-0.107-0.843-0.252-1.265-0.207
|
||||
C19.367,3.673,18.967,3.878,18.597,4.113z M23.596,20.436c-0.711,0.397-0.995,1.351-1.678,1.888
|
||||
c0.163,0.166,0.651,0.685,0.812,0.862C23.231,22.597,25.042,20.812,23.596,20.436z M17.951,12.374
|
||||
c0.568-0.541,1.378-0.852,2.193-0.752c0.054-0.23,0.608-0.323,0.448-0.555c-0.489-0.197-0.495-0.483-0.899-0.618
|
||||
C18.79,10.595,17.758,11.41,17.951,12.374z M20.986,6.341c-0.174,0-0.298,0.115-0.361,0.267c-0.013,0.031-0.027,0.061-0.034,0.095
|
||||
c0.004,0.002,0.007,0.004,0.011,0.006C20.624,6.766,21.081,6.584,20.986,6.341z M17.737,24.197l-0.041,0.027
|
||||
c0.003-0.032,0.008-0.121,0.017-0.148c-0.719-1.345,0.286,3.069,0.489,3.175C18.625,27.259,17.742,24.636,17.737,24.197z
|
||||
M23.633,24.731c-0.416-0.842-1.409-1.57-1.981-2.239c-0.079-0.098-0.212-0.287-0.3-0.38c-0.106,0.07-0.103,0.076-0.02,0.171
|
||||
c0.741,0.796,1.444,1.726,2.211,2.472L23.633,24.731z M26.511,15.383c0.237-0.294,0.722-0.327,1.01-0.174
|
||||
c-0.237-1.431-0.987-3.687-2.521-4.097c-0.529-0.036-0.864,0.579-0.679,1.032C25.336,12.985,26.308,14.173,26.511,15.383z
|
||||
M25.903,7.36c0.002-0.104,0.003-0.207,0.004-0.239c0.031-0.242,0.237-0.871,0.475-1.145c0.186-0.61-0.071-1.658,0.259-2.243
|
||||
c0.266-0.832-1.298,0.607-1.702,2.119c-0.028,0.103,0.094,0.143,0.018,0.31c-0.025,0.054-0.1,0.118-0.105,0.177
|
||||
c-0.014,0.17-0.008,0.339,0.021,0.501C25.247,6.952,25.585,7.138,25.903,7.36z M14.937,8.625c0.045,0.103,0.158,0.26,0.288,0.217
|
||||
c0.034-0.022,0.031-0.103,0-0.23c-0.055-0.225-0.322-0.568-0.508-1.015c-0.145-0.35-0.211-0.898-0.394-1.305
|
||||
c-0.779-1.724-1.425-3.32-0.875-3.469c0.384-0.104,0.527,0.32,0.19,0.227c-0.009,0.014-0.022,0.026-0.04,0.032
|
||||
c0.106,0.871,1.205-0.225,0.179-0.568c-1.392-0.242-0.839,1.377-0.438,2.07c0.393,0.981,0.683,1.862,1.034,2.795
|
||||
C14.533,7.802,14.784,8.2,14.937,8.625z M17.726,4.237c0.992-0.766,2.112-1.304,3.36-0.902c-0.166-0.794-0.839-1.519-1.704-1.19
|
||||
c0.008,0.184,0.469,1.278,0.027,0.976c-0.215-0.628-0.946-0.703-1.533-0.625c0.034,0.2,0.732,1.193,0.232,1.015
|
||||
c-0.316-0.455-0.945-0.653-1.463-0.453c-0.007-0.003-0.021,0.015-0.025,0.019c-0.004,0.009-0.006,0.018-0.006,0.027
|
||||
c0.001,0.002,0.003,0.008,0.003,0.012c0.066,0.145,0.355,0.425,0.582,0.7c0.14,0.17,0.252,0.341,0.333,0.432
|
||||
C17.57,4.292,17.692,4.263,17.726,4.237z M14.952,2.439c0.608-0.429,1.306,0.026,1.24,0.725c-0.005,0.013,0.239,0.057,0.227,0.022
|
||||
c0.022-0.019,0.035-0.05,0.044-0.078c0,0,0.001,0,0.002,0.001c0.052-0.141,0.06-0.297,0.02-0.422
|
||||
c-0.206-0.7-1.125-1.121-1.719-0.634c-0.527,0.35-0.194,1.118-0.605,1.476c-0.202,0.131-0.472,0.089-0.652-0.061
|
||||
c0.425,1.105,0.725,1.714,1.108,2.792c0.138-1.085,1.14-1.307,2.216-1.456c0,0-0.498-0.754-0.833-0.854
|
||||
c-0.335-0.1-1.081-0.2-1.241-0.497C14.583,3.127,14.606,2.641,14.952,2.439z M16.638,3.059c0.002-0.001,0.005,0,0.007-0.001
|
||||
c0,0,0.001-0.001,0.001-0.001C16.644,3.058,16.642,3.058,16.638,3.059z M9.631,8.459c0.53,0.397,0.652,0.488,0.984,0.8
|
||||
c0.52-1.017,2.78-1.287,2.562-2.71l-0.664-1.608c-0.179-0.299,0.153-0.453,0.377-0.423c0.029-0.012,0.058-0.034,0.052-0.108
|
||||
l0.021-0.034c-0.168-0.306-0.301-0.803-0.372-1.128c-0.408,0.055-1.545-0.191-1.664,0.263c0.119,0.871,0.874,1.75,1.115,2.614
|
||||
C11.922,7.261,10.219,7.54,9.631,8.459z M16.636,3.059L16.634,3.06L16.636,3.059L16.636,3.059z M7.607,5.624
|
||||
c1.112-0.334,1.759-1.591,2.986-1.787c-0.025-0.089-0.041-0.182-0.051-0.281C9.886,3.633,9.247,3.921,8.739,4.368
|
||||
C8.348,4.847,7.328,5.4,7.105,4.485c-0.088-0.358,0.63-0.784,0.708-0.324c-0.022,0.123-0.139,0.146-0.24,0.113
|
||||
C6.927,4.679,8.371,4.991,8.119,4.028C7.088,2.609,5.93,5.328,7.607,5.624z M8.011,5.996c0.121-0.055,0.253-0.078,0.378-0.042
|
||||
c0.654-0.76,1.583-1.171,2.442-1.639c-0.035-0.075-0.063-0.145-0.084-0.21C9.723,4.643,8.838,5.232,7.979,5.939
|
||||
C7.852,6.044,7.87,6.06,8.011,5.996z M28.096,11.132c-0.059-0.416-0.36-0.602-0.631-0.602c-1.544,0.385,0.182,3.04,0.253,4.035
|
||||
c0.255-0.29,0.747-0.409,0.968-0.468C28.273,12.821,28.073,11.15,28.096,11.132z M27.353,9.995
|
||||
c-0.175-0.036-0.347-0.099-0.509-0.171c0.007,0.169,0.018,0.338,0.035,0.507c0.005,0.051,0.089,0.093,0.129,0.069
|
||||
c0.132-0.082,0.289-0.133,0.442-0.131C27.446,10.256,27.392,10.104,27.353,9.995z M27.679,18.711
|
||||
c-0.013-0.701,0.386-3.119-0.454-3.269c-0.258,0.012-0.547,0.052-0.685,0.395C26.756,16.922,25.93,18.565,27.679,18.711z
|
||||
M28.001,10.094c-0.175-0.01-0.23-0.024-0.402-0.061c0.03,0.083,0.059,0.166,0.089,0.249c0.151,0.021,0.176,0.071,0.297,0.162
|
||||
c0.049,0.037,0.096-0.002,0.079-0.067C28.039,10.284,28.019,10.189,28.001,10.094z M22.211,4.727
|
||||
c-0.181,0.105-0.538,0.039-0.726-0.068c0.247,0.43,0.12,0.858-0.045,1.14c0.931-0.003,1.861-0.004,2.792-0.011
|
||||
c-0.15-0.205,0.007-0.482,0.011-0.705c-0.092-0.42-0.823-0.125-0.951-0.712c-0.326-0.896-1.485-0.07-2.013-0.702
|
||||
c-0.005,0.136-0.005,0.334-0.098,0.447c-0.022,0.027,0.283,0.209,0.362,0.243C21.938,4.531,22.242,4.371,22.211,4.727z M6.211,6.72
|
||||
C6.317,6.653,6.439,6.581,6.56,6.515c-0.015-0.012-0.03-0.026-0.043-0.04C6.163,6.481,5.996,5.876,6.374,5.788
|
||||
c0.113-0.03,0.23,0.178,0.111,0.266c-0.061,0.04,0.014,0.132,0.074,0.119C7.004,6.11,6.702,5.555,6.416,5.565
|
||||
C5.844,5.54,5.67,6.576,6.211,6.72z M26.29,7.649c-0.041-0.61,0.226-1.215,0.744-1.574c0.215-0.149,0.451-0.234,0.693-0.275
|
||||
c0.016-0.25,0.406-0.441,0.421-0.65C27.068,5.19,26,6.436,26.113,7.512C26.172,7.557,26.232,7.602,26.29,7.649z M26.828,7.956
|
||||
c0.421,0.673,1.942,0.285,1.503-0.601c-0.139-0.352-0.81-0.081-0.615,0.214c0.116,0.077-0.023,0.243-0.138,0.167
|
||||
c-0.144-0.095-0.18-0.242-0.149-0.381c0.104-0.475,0.806-0.56,1.072-0.19c0.676,0.979-0.553,1.699-1.353,1.35
|
||||
C26.203,8.2,25.551,7.31,24.185,7.163c-0.001,0.002-0.001,0.004-0.002,0.005c0.335,0.323,0.411,0.746,0.418,0.845
|
||||
c0.669,0.12,2.208,1.441,2.592,1.604c2.557,0.991,3.663-3.148,0.856-3.444C27.121,6.038,26.302,7.148,26.828,7.956z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="16.6016" y1="13.4223" x2="16.8244" y2="8.3431" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<rect x="2.26" y="20.143" fill="url(#SVGID_2_)" width="28.845" height="4.556"/>
|
||||
<g>
|
||||
<rect x="2.64" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="6.662" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="10.703" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="14.74" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="18.781" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="22.799" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="26.84" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="16.5495" y1="9.7871" x2="16.5495" y2="13.2217" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#3B3421;stop-opacity:0"/>
|
||||
<stop offset="0.2211" style="stop-color:#353229;stop-opacity:0.3006"/>
|
||||
<stop offset="0.5223" style="stop-color:#30302F;stop-opacity:0.71"/>
|
||||
<stop offset="0.9709" style="stop-color:#3A3422;stop-opacity:0.0432"/>
|
||||
<stop offset="1" style="stop-color:#3B3421;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<rect x="2.797" y="20.732" opacity="0.77" fill="url(#SVGID_3_)" enable-background="new " width="27.505" height="3.515"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="8.666" y1="12.0149" x2="8.666" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_4_)" points="9.325,23.149 7.974,21.014 7.61,21.014 7.61,23.871 8.007,23.871 8.007,21.768
|
||||
9.354,23.871 9.722,23.871 9.722,21.014 9.325,21.014 "/>
|
||||
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="4.6815" y1="12.0149" x2="4.6815" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M4.511,21.013l-1.054,2.859H3.89l0.215-0.627h1.154l0.215,0.627h0.432l-1.054-2.859H4.511z
|
||||
M4.236,22.914l0.446-1.298l0.446,1.298H4.236z"/>
|
||||
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="12.6932" y1="12.0149" x2="12.6932" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M13.274,21.811h0.411c-0.12-0.919-1.439-1.176-1.856-0.342c-0.188,0.304-0.108,0.993-0.124,1.345
|
||||
c-0.048,1.291,1.746,1.458,1.98,0.216h-0.411c-0.2,0.724-1.208,0.535-1.158-0.216c0.018-0.247-0.053-0.924,0.073-1.139
|
||||
C12.403,21.175,13.161,21.303,13.274,21.811z"/>
|
||||
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="28.7335" y1="12.0149" x2="28.7335" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_7_)" points="27.725,21.013 27.725,21.394 28.533,21.394 28.533,23.872 28.934,23.872 28.934,21.394
|
||||
29.742,21.394 29.742,21.013 "/>
|
||||
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="16.6395" y1="12.0149" x2="16.6395" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_8_)" points="16.022,21.394 16.439,21.394 16.439,23.49 16.022,23.49 16.022,23.872 17.257,23.872
|
||||
17.257,23.49 16.84,23.49 16.84,21.394 17.257,21.394 17.257,21.013 16.022,21.013 "/>
|
||||
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="24.688" y1="12.0149" x2="24.688" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_9_)" points="25.346,23.149 23.996,21.014 23.632,21.014 23.632,23.871 24.029,23.871 24.029,21.768
|
||||
25.376,23.871 25.744,23.871 25.744,21.014 25.346,21.014 "/>
|
||||
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="20.7125" y1="12.0149" x2="20.7125" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_10_)" points="19.794,23.872 21.631,23.872 21.631,23.49 20.195,23.49 20.195,22.643 21.414,22.643
|
||||
21.414,22.261 20.195,22.261 20.195,21.394 21.631,21.394 21.631,21.013 19.794,21.013 "/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 214 KiB |
@@ -1,274 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<rect x="2.083" y="7.25" fill-rule="evenodd" clip-rule="evenodd" fill="#2E5E54" width="26.958" height="11.519"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#227561" points="28.73,12.264 28.73,19.764 15.696,19.878 2.662,20.026
|
||||
2.714,11.718 6.43,8.003 9.6,11.173 12.769,8.003 15.988,11.223 15.988,11.173 19.157,8.003 22.341,11.188 22.341,11.173
|
||||
25.51,8.003 28.73,11.173 "/>
|
||||
<rect x="2.083" y="18.083" fill-rule="evenodd" clip-rule="evenodd" fill="#23331B" width="26.958" height="6.084"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#394428" points="2.662,19.391 2.662,18.105 15.696,18.105 28.73,18.105
|
||||
28.677,19.937 24.961,23.651 21.792,20.481 18.623,23.651 15.403,20.432 15.403,20.481 12.234,23.651 9.05,20.467 9.05,20.481
|
||||
5.881,23.651 2.662,20.481 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#BABABA" d="M19.722,15.976h5.258v0.181h-5.227L19.722,15.976z M19.494,13.694
|
||||
h3.873l0.472,1.682h-4.125L19.494,13.694z M19.375,13.334h3.968v0.181h-3.936L19.375,13.334z M19.179,11.384h1.542l0.473,1.47
|
||||
h-1.795L19.179,11.384z M19.093,11.054h1.762v0.21h-1.762V11.054z M17.888,18.525l-0.472-6.991v-0.719h1.479v0.749l0.882,6.961
|
||||
H17.888z M17.699,9.547h0.913v1.094h-0.913V9.547z M17.919,9.374l-0.094-0.27v-0.66h0.661v0.66l-0.094,0.27H17.919z M14.488,15.585
|
||||
h2.912l0.008,0.181H14.48L14.488,15.585z M14.506,15.167h2.874l0.01,0.209h-2.894L14.506,15.167z M14.523,14.746h2.838l0.009,0.21
|
||||
h-2.856L14.523,14.746z M14.54,14.325h2.802l0.009,0.21h-2.819L14.54,14.325z M14.557,13.935h2.768l0.008,0.181h-2.783
|
||||
L14.557,13.935z M14.582,9.656h2.739v1.031h-2.739V9.656z M14.644,8.892h2.645V9.46h-2.645V8.892z M17.294,13.275h-2.71l0.008-0.211
|
||||
h2.692L17.294,13.275z M17.276,12.854h-2.675l0.008-0.18h2.658L17.276,12.854z M17.258,12.465h-2.64l0.008-0.209h2.622
|
||||
L17.258,12.465z M17.238,12.045h-2.603l0.008-0.21h2.585L17.238,12.045z M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195z
|
||||
M17.219,11.624h-2.567l0.009-0.209h2.549L17.219,11.624z M17.314,13.724h-2.749l0.01-0.239h2.729L17.314,13.724z M12.125,18.525
|
||||
l0.882-6.961v-0.749h1.479v0.719l-0.472,6.991H12.125z M13.291,9.547h0.913v1.094h-0.913V9.547z M13.511,9.374l-0.094-0.27v-0.66
|
||||
h0.661v0.66l-0.094,0.27H13.511z M10.708,12.854l0.473-1.47h1.543l-0.221,1.47H10.708z M11.062,11.054h1.763v0.21h-1.763V11.054z
|
||||
M12.51,13.515H8.574v-0.181h3.968L12.51,13.515z M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409z M12.164,16.156H6.937
|
||||
v-0.181h5.258L12.164,16.156z M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031z M17.504,17.897h-3.112l0.008-0.211h3.094
|
||||
L17.504,17.897z M17.485,17.476H14.41l0.008-0.209h3.058L17.485,17.476z M17.466,17.056h-3.04l0.009-0.21h3.021L17.466,17.056z
|
||||
M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417z M17.447,16.635h-3.002l0.01-0.238h2.982L17.447,16.635z M17.514,18.106
|
||||
l0.01,0.21h-3.149l0.009-0.21H17.514z M25.507,18.347h-5.353l-0.283-2.011h5.039L25.507,18.347z"/>
|
||||
<path fill="#898989" d="M18.486,8.444v0.66l-0.094,0.27h-0.473l-0.094-0.27v-0.66H18.486 M14.078,8.444v0.66l-0.094,0.27h-0.473
|
||||
l-0.094-0.27v-0.66H14.078 M17.289,8.892V9.46h-2.645V8.892H17.289 M18.612,9.547v1.094h-0.913V9.547H18.612 M14.204,9.547v1.094
|
||||
h-0.913V9.547H14.204 M17.321,9.656v1.031h-2.739V9.656H17.321 M18.895,10.815v0.749l0.882,6.961h-1.889l-0.472-6.991v-0.719H18.895
|
||||
M14.486,10.815v0.719l-0.472,6.991h-1.889l0.882-6.961v-0.749H14.486 M20.855,11.054v0.21h-1.762v-0.21H20.855 M12.825,11.054v0.21
|
||||
h-1.763v-0.21H12.825 M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195 M20.721,11.384l0.473,1.47h-1.795l-0.22-1.47H20.721
|
||||
M12.724,11.384l-0.221,1.47h-1.795l0.473-1.47H12.724 M17.21,11.415l0.009,0.209h-2.567l0.009-0.209H17.21 M17.229,11.835
|
||||
l0.009,0.21h-2.603l0.008-0.21H17.229 M17.248,12.256l0.01,0.209h-2.64l0.008-0.209H17.248 M17.267,12.675l0.009,0.18h-2.675
|
||||
l0.008-0.18H17.267 M17.285,13.064l0.01,0.211h-2.71l0.008-0.211H17.285 M23.343,13.334v0.181h-3.936l-0.032-0.181H23.343
|
||||
M12.542,13.334l-0.032,0.181H8.574v-0.181H12.542 M17.305,13.484l0.01,0.239h-2.749l0.01-0.239H17.305 M23.367,13.694l0.472,1.682
|
||||
h-4.125l-0.221-1.682H23.367 M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409 M17.325,13.935l0.008,0.181h-2.783l0.007-0.181
|
||||
H17.325 M17.342,14.325l0.009,0.21h-2.819l0.008-0.21H17.342 M17.361,14.746l0.009,0.21h-2.856l0.009-0.21H17.361 M17.38,15.167
|
||||
l0.01,0.209h-2.894l0.009-0.209H17.38 M17.399,15.585l0.008,0.181H14.48l0.007-0.181H17.399 M24.98,15.976v0.181h-5.227
|
||||
l-0.032-0.181H24.98 M12.195,15.976l-0.032,0.181H6.937v-0.181H12.195 M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417
|
||||
M24.91,16.336l0.598,2.011h-5.353l-0.283-2.011H24.91 M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031 M17.437,16.396
|
||||
l0.011,0.238h-3.002l0.01-0.238H17.437 M17.457,16.846l0.01,0.21h-3.04l0.009-0.21H17.457 M17.476,17.267l0.009,0.209H14.41
|
||||
l0.008-0.209H17.476 M17.495,17.687l0.009,0.211h-3.112l0.008-0.211H17.495 M17.514,18.106l0.01,0.21h-3.149l0.009-0.21H17.514
|
||||
M18.536,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27
|
||||
l0.002-0.008V9.104v-0.66V8.395L18.536,8.395z M14.127,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27
|
||||
l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27l0.002-0.008V9.104v-0.66V8.395L14.127,8.395z M17.339,8.842h-0.05h-2.645
|
||||
h-0.05v0.05V9.46v0.05h0.05h2.645h0.05V9.46V8.892V8.842L17.339,8.842z M18.662,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05
|
||||
h0.913h0.05v-0.05V9.547V9.497L18.662,9.497z M14.253,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05h0.913h0.05v-0.05V9.547V9.497
|
||||
L14.253,9.497z M17.371,9.606h-0.05h-2.739h-0.05v0.05v1.031v0.05h0.05h2.739h0.05v-0.05V9.656V9.606L17.371,9.606z M18.945,10.766
|
||||
h-0.05h-1.479h-0.05v0.05v0.719l0.472,6.994l0.003,0.047h0.047h1.889h0.057l-0.007-0.056l-0.882-6.961v-0.743V10.766L18.945,10.766z
|
||||
M14.536,10.766h-0.05h-1.479h-0.05v0.05v0.749l-0.882,6.955l-0.007,0.056h0.057h1.889h0.047l0.003-0.047l0.472-6.991v-0.722V10.766
|
||||
L14.536,10.766z M20.905,11.004h-0.05h-1.762h-0.05v0.05v0.21v0.05h0.05h1.762h0.05v-0.05v-0.21V11.004L20.905,11.004z
|
||||
M12.875,11.004h-0.05h-1.763h-0.05v0.05v0.21v0.05h0.05h1.763h0.05v-0.05v-0.21V11.004L12.875,11.004z M17.243,11.005h-0.048
|
||||
h-2.519h-0.048l-0.002,0.048l-0.006,0.149l-0.002,0.052h0.052h2.53h0.052l-0.002-0.052l-0.005-0.149L17.243,11.005L17.243,11.005z
|
||||
M20.758,11.334h-0.037h-1.542h-0.058l0.009,0.058l0.22,1.47l0.006,0.042h0.043h1.795h0.068l-0.021-0.065l-0.473-1.47L20.758,11.334
|
||||
L20.758,11.334z M12.782,11.334h-0.058h-1.543h-0.037l-0.011,0.034l-0.473,1.47l-0.021,0.065h0.069h1.795h0.043l0.006-0.042
|
||||
l0.221-1.47L12.782,11.334L12.782,11.334z M17.258,11.365H17.21h-2.549h-0.048l-0.002,0.048l-0.009,0.209L14.6,11.674h0.052h2.567
|
||||
h0.052l-0.002-0.052l-0.009-0.209L17.258,11.365L17.258,11.365z M17.277,11.785h-0.048h-2.585h-0.048l-0.002,0.048l-0.008,0.21
|
||||
l-0.002,0.052h0.052h2.603h0.052l-0.002-0.052l-0.009-0.21L17.277,11.785L17.277,11.785z M17.296,12.206h-0.048h-2.622h-0.048
|
||||
l-0.002,0.048l-0.008,0.209l-0.002,0.052h0.052h2.64h0.052l-0.002-0.052l-0.01-0.209L17.296,12.206L17.296,12.206z M17.315,12.625
|
||||
h-0.048h-2.658h-0.048l-0.002,0.048l-0.008,0.18l-0.002,0.052h0.052h2.675h0.053l-0.003-0.053l-0.009-0.18L17.315,12.625
|
||||
L17.315,12.625z M17.333,13.015h-0.048h-2.692h-0.048l-0.001,0.048l-0.008,0.211l-0.002,0.052h0.052h2.71h0.052l-0.002-0.052
|
||||
l-0.01-0.211L17.333,13.015L17.333,13.015z M23.393,13.284h-0.05h-3.968h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h3.936h0.05
|
||||
v-0.05v-0.181V13.284L23.393,13.284z M12.601,13.284h-0.06H8.574h-0.05v0.05v0.181v0.05h0.05h3.936h0.042l0.007-0.041l0.032-0.181
|
||||
L12.601,13.284L12.601,13.284z M17.353,13.435h-0.048h-2.729h-0.048l-0.002,0.048l-0.01,0.239l-0.002,0.052h0.052h2.749h0.052
|
||||
l-0.002-0.052l-0.01-0.239L17.353,13.435L17.353,13.435z M23.405,13.645h-0.038h-3.873h-0.057l0.007,0.057l0.221,1.682l0.006,0.043
|
||||
h0.044h4.125h0.066l-0.018-0.063l-0.472-1.682L23.405,13.645L23.405,13.645z M12.466,13.645h-0.057H8.536H8.498l-0.01,0.036
|
||||
l-0.472,1.682l-0.018,0.063h0.066h4.125h0.044l0.006-0.043l0.221-1.682L12.466,13.645L12.466,13.645z M17.373,13.885h-0.048h-2.768
|
||||
h-0.048l-0.002,0.048L14.5,14.113l-0.002,0.052h0.052h2.783h0.052l-0.002-0.052l-0.008-0.181L17.373,13.885L17.373,13.885z
|
||||
M17.39,14.275h-0.048H14.54h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.819h0.052l-0.002-0.052l-0.009-0.21
|
||||
L17.39,14.275L17.39,14.275z M17.409,14.696h-0.048h-2.838h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h2.856h0.052
|
||||
l-0.002-0.052l-0.009-0.21L17.409,14.696L17.409,14.696z M17.428,15.117H17.38h-2.874h-0.048l-0.002,0.048l-0.009,0.209
|
||||
l-0.002,0.052h0.052h2.894h0.053l-0.003-0.053l-0.01-0.209L17.428,15.117L17.428,15.117z M17.447,15.535h-0.048h-2.912H14.44
|
||||
l-0.002,0.048l-0.007,0.181l-0.002,0.052h0.052h2.927h0.052l-0.002-0.052l-0.008-0.181L17.447,15.535L17.447,15.535z M25.03,15.926
|
||||
h-0.05h-5.258h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h5.227h0.05v-0.05v-0.181V15.926L25.03,15.926z M12.255,15.926h-0.06
|
||||
H6.937h-0.05v0.05v0.181v0.05h0.05h5.227h0.042l0.007-0.041l0.032-0.181L12.255,15.926L12.255,15.926z M17.465,15.927h-0.048h-2.945
|
||||
h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.963h0.052l-0.002-0.052l-0.01-0.21L17.465,15.927L17.465,15.927z
|
||||
M24.947,16.286H24.91h-5.039h-0.058l0.008,0.057l0.283,2.011l0.006,0.043h0.043h5.353h0.067l-0.019-0.064l-0.598-2.011
|
||||
L24.947,16.286L24.947,16.286z M12.089,16.286h-0.058H6.993H6.956l-0.011,0.035l-0.598,2.011l-0.019,0.064h0.067h5.353h0.043
|
||||
l0.006-0.043l0.283-2.011L12.089,16.286L12.089,16.286z M17.484,16.347h-0.048h-2.982h-0.048l-0.002,0.048l-0.01,0.238l-0.002,0.052
|
||||
h0.052h3.002H17.5l-0.002-0.052l-0.011-0.238L17.484,16.347L17.484,16.347z M17.504,16.796h-0.048h-3.021h-0.048l-0.002,0.048
|
||||
l-0.009,0.21l-0.002,0.052h0.052h3.04h0.052l-0.002-0.052l-0.01-0.21L17.504,16.796L17.504,16.796z M17.524,17.217h-0.048h-3.058
|
||||
H14.37l-0.001,0.048l-0.008,0.209l-0.002,0.052h0.052h3.075h0.052l-0.002-0.052l-0.009-0.209L17.524,17.217L17.524,17.217z
|
||||
M17.543,17.637h-0.048h-3.094h-0.048l-0.002,0.048l-0.008,0.211l-0.002,0.052h0.052h3.112h0.052l-0.002-0.052l-0.009-0.211
|
||||
L17.543,17.637L17.543,17.637z M17.562,18.057h-0.048h-3.13h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h3.149h0.053
|
||||
l-0.003-0.052l-0.01-0.211L17.562,18.057L17.562,18.057z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M28.444,16.208c-0.505-0.929-1.088-1.318-2.08-2.447
|
||||
c-0.954-1.085-1.216-2.501-1.216-2.501c2.662,3.817,5.156,0.925,4.25,7.613C29.278,18.209,28.967,17.167,28.444,16.208z
|
||||
M29.231,18.795c0.103,0.46,0.038,1.113,0.038,1.113s-0.224-2.438-2.449-4.279C24.733,13.902,25.1,11.45,25.1,11.45
|
||||
s0.369,1.815,1.979,3.293C28.757,16.285,29.116,18.284,29.231,18.795z M26.567,16.336c1.551,0.787,2.53,2.621,2.863,4.581
|
||||
c-0.758-2.282-2.504-4.332-4.856-4.478c-1.5-0.093-2.01,1.021-2.01,1.021C23.372,15.667,25.072,15.577,26.567,16.336z
|
||||
M28.217,18.813c1.439,2.233,1.692,4.15,1.692,4.15s-0.729-2.87-3.865-4.603c-2.959-1.634-3.709,0.568-3.709,0.568
|
||||
C22.231,15.435,26.544,16.215,28.217,18.813z M5.675,18.361C2.54,20.094,1.81,22.964,1.81,22.964s0.253-1.917,1.691-4.15
|
||||
c1.673-2.599,5.986-3.379,5.883,0.116C9.384,18.93,8.634,16.728,5.675,18.361z M7.144,16.439c-2.351,0.146-4.098,2.195-4.855,4.478
|
||||
c0.333-1.96,1.312-3.794,2.862-4.581c1.494-0.758,3.192-0.669,4.002,1.118C9.116,17.378,8.589,16.352,7.144,16.439z M2.449,19.908
|
||||
c0,0-0.066-0.653,0.039-1.113c0.114-0.511,0.473-2.51,2.152-4.052c1.609-1.478,1.978-3.293,1.978-3.293s0.367,2.452-1.72,4.179
|
||||
C2.673,17.471,2.449,19.908,2.449,19.908z M3.274,16.208c-0.522,0.959-0.833,2.001-0.955,2.665
|
||||
c-0.905-6.688,1.588-3.796,4.251-7.613c0,0-0.262,1.416-1.216,2.501C4.362,14.89,3.779,15.279,3.274,16.208z"/>
|
||||
<path fill="#51853C" d="M1.81,23.014c-0.003,0-0.006,0-0.009-0.001c-0.026-0.005-0.044-0.029-0.041-0.056
|
||||
c0.003-0.019,0.271-1.953,1.699-4.171c0.855-1.328,2.44-2.257,3.854-2.257c0.552,0,1.024,0.149,1.38,0.434
|
||||
c-0.306-0.264-0.794-0.521-1.546-0.474c-2.514,0.155-4.163,2.491-4.811,4.443c-0.008,0.024-0.032,0.039-0.06,0.033
|
||||
c-0.025-0.007-0.042-0.031-0.037-0.058c0.056-0.327,0.128-0.645,0.215-0.95c-0.002,0-0.004,0-0.006,0l0,0
|
||||
c-0.026,0-0.047-0.02-0.05-0.045c-0.002-0.027-0.065-0.667,0.04-1.129l0.02-0.09c0.134-0.622,0.543-2.515,2.148-3.988
|
||||
c0.479-0.439,0.848-0.912,1.129-1.356c-0.104,0.151-0.218,0.301-0.344,0.444c-0.337,0.384-0.627,0.682-0.883,0.944
|
||||
c-0.5,0.515-0.861,0.886-1.191,1.493c-0.517,0.948-0.829,1.991-0.949,2.65c-0.004,0.024-0.025,0.041-0.049,0.041
|
||||
c0,0-0.001,0-0.001,0c-0.025,0-0.045-0.019-0.048-0.043c-0.576-4.257,0.229-4.673,1.563-5.362c0.767-0.396,1.722-0.889,2.697-2.286
|
||||
c0.013-0.019,0.039-0.027,0.06-0.018c0.022,0.009,0.034,0.032,0.03,0.055c0,0.003-0.01,0.054-0.032,0.142
|
||||
c0.008-0.006,0.019-0.01,0.03-0.01H6.62c0.024,0,0.044,0.019,0.048,0.042c0.004,0.025,0.347,2.5-1.738,4.225
|
||||
c-1.821,1.508-2.294,3.437-2.402,4.05c0.507-1.594,1.436-2.834,2.602-3.426c0.588-0.298,1.189-0.455,1.738-0.455
|
||||
c0.731,0,1.727,0.275,2.326,1.585c0.008,0.009,0.013,0.021,0.013,0.033c0,0.027-0.022,0.05-0.05,0.05c-0.001,0-0.001,0-0.002,0
|
||||
c-0.003,0-0.005,0-0.008,0c0.209,0.379,0.306,0.857,0.289,1.428c0,0.023-0.019,0.044-0.042,0.048
|
||||
c-0.022,0.002-0.047-0.011-0.055-0.033c-0.016-0.047-0.405-1.139-1.716-1.139c-0.558,0-1.204,0.201-1.922,0.598
|
||||
c-3.081,1.702-3.833,4.542-3.841,4.571C1.853,22.999,1.832,23.014,1.81,23.014z M7.313,16.63c-1.359,0-2.944,0.93-3.77,2.211
|
||||
c-0.903,1.402-1.338,2.688-1.536,3.44c0.419-0.962,1.447-2.75,3.643-3.964c0.733-0.404,1.396-0.609,1.97-0.609
|
||||
c1.026,0,1.523,0.655,1.714,1c-0.017-0.655-0.202-1.168-0.551-1.528C8.434,16.82,7.925,16.63,7.313,16.63z M6.867,15.936
|
||||
c-0.533,0-1.119,0.154-1.693,0.445c-1.273,0.646-2.26,2.089-2.708,3.924c0.773-1.833,2.364-3.772,4.675-3.915
|
||||
c0.799-0.053,1.323,0.235,1.643,0.521C8.212,16.12,7.451,15.936,6.867,15.936z M6.589,11.748c-0.177,0.575-0.691,1.908-1.916,3.032
|
||||
c-1.581,1.452-1.985,3.321-2.118,3.935l-0.02,0.091c-0.046,0.202-0.059,0.445-0.058,0.65c0.18-0.796,0.74-2.502,2.388-3.865
|
||||
C6.488,14.249,6.609,12.444,6.589,11.748z M6.463,11.494c-0.937,1.262-1.847,1.731-2.585,2.112
|
||||
c-1.264,0.653-2.039,1.053-1.548,4.966c0.151-0.66,0.448-1.56,0.899-2.388c0.337-0.62,0.702-0.996,1.208-1.516
|
||||
c0.255-0.262,0.543-0.56,0.879-0.941C6.017,12.932,6.343,11.944,6.463,11.494z M29.909,23.014c-0.022,0-0.042-0.015-0.048-0.037
|
||||
c-0.007-0.029-0.762-2.87-3.841-4.571c-0.717-0.396-1.364-0.598-1.921-0.598c-1.312,0-1.701,1.092-1.716,1.139
|
||||
c-0.007,0.022-0.032,0.035-0.055,0.033c-0.024-0.004-0.042-0.024-0.042-0.048c-0.017-0.567,0.079-1.044,0.286-1.422
|
||||
c-0.009,0-0.019,0-0.027-0.004c-0.025-0.012-0.037-0.041-0.025-0.066c0.597-1.326,1.599-1.604,2.334-1.604
|
||||
c0.549,0,1.15,0.158,1.737,0.456c1.165,0.592,2.093,1.83,2.601,3.422c-0.11-0.618-0.585-2.542-2.401-4.046
|
||||
c-2.085-1.725-1.742-4.199-1.738-4.225c0.003-0.023,0.024-0.042,0.048-0.042c0.012,0.004,0.023,0.004,0.033,0.011
|
||||
c-0.022-0.089-0.032-0.14-0.032-0.143c-0.004-0.022,0.008-0.046,0.03-0.055c0.023-0.01,0.047-0.001,0.061,0.018
|
||||
c0.975,1.397,1.929,1.891,2.696,2.286c1.334,0.689,2.139,1.105,1.563,5.362c-0.003,0.024-0.023,0.043-0.048,0.043c0,0,0,0-0.001,0
|
||||
c-0.024,0-0.045-0.017-0.049-0.041c-0.12-0.658-0.432-1.7-0.949-2.65c-0.33-0.606-0.691-0.978-1.189-1.491
|
||||
c-0.256-0.263-0.546-0.562-0.884-0.946c-0.129-0.146-0.245-0.3-0.35-0.454c0.282,0.447,0.653,0.924,1.136,1.366
|
||||
c1.601,1.471,2.012,3.362,2.147,3.984l0.021,0.094c0.104,0.462,0.042,1.102,0.039,1.129c-0.002,0.025-0.024,0.045-0.05,0.045l0,0
|
||||
c-0.002,0-0.004,0-0.005,0c0.087,0.306,0.159,0.623,0.215,0.95c0.004,0.026-0.012,0.051-0.037,0.058
|
||||
c-0.028,0.006-0.052-0.009-0.06-0.033c-0.648-1.952-2.297-4.288-4.812-4.443c-0.694-0.044-1.168,0.179-1.479,0.423
|
||||
c0.348-0.251,0.796-0.383,1.314-0.383c1.413,0,2.998,0.929,3.853,2.257c1.429,2.218,1.697,4.152,1.7,4.171
|
||||
c0.003,0.026-0.014,0.051-0.041,0.056C29.915,23.014,29.912,23.014,29.909,23.014z M24.098,17.708c0.575,0,1.237,0.205,1.97,0.609
|
||||
c2.195,1.213,3.224,3,3.643,3.962c-0.198-0.752-0.633-2.038-1.536-3.438c-0.825-1.281-2.41-2.211-3.769-2.211
|
||||
c-0.613,0-1.122,0.19-1.471,0.55c-0.35,0.36-0.534,0.873-0.551,1.528C22.574,18.363,23.072,17.708,24.098,17.708z M24.398,16.384
|
||||
c0.058,0,0.117,0.002,0.178,0.006c2.311,0.143,3.902,2.083,4.676,3.916c-0.447-1.836-1.434-3.278-2.708-3.925
|
||||
c-0.574-0.292-1.159-0.445-1.692-0.445c-0.583,0-1.34,0.183-1.911,0.966C23.236,16.641,23.703,16.384,24.398,16.384z M25.129,11.748
|
||||
c-0.02,0.696,0.102,2.501,1.724,3.843c1.646,1.362,2.207,3.068,2.387,3.864c0-0.205-0.012-0.447-0.057-0.649l-0.021-0.094
|
||||
c-0.134-0.614-0.54-2.482-2.117-3.932C25.821,13.656,25.306,12.324,25.129,11.748z M25.256,11.494
|
||||
c0.12,0.45,0.446,1.438,1.146,2.233c0.336,0.383,0.625,0.681,0.881,0.943c0.504,0.52,0.869,0.895,1.206,1.514
|
||||
c0.452,0.829,0.749,1.729,0.899,2.387c0.491-3.911-0.284-4.312-1.548-4.965C27.102,13.226,26.192,12.756,25.256,11.494z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5D5E5E" d="M0.543,4.852h30.692v21.757H0.543V4.852z M1.665,6.018h28.449
|
||||
v19.417L1.665,25.436V6.018z"/>
|
||||
<path fill="#898989" d="M31.335,26.708H0.443V4.752h30.892V26.708z M0.643,26.509h30.492V4.951H0.643V26.509z M1.665,25.535h-0.1
|
||||
V5.918h28.649v19.616L1.665,25.535z M1.765,6.117v19.219l28.249-0.001V6.117H1.765z"/>
|
||||
<path fill="#91C63F" d="M1.665,25.436l28.449-0.001V6.018H1.665V25.436 M3.265,7.617h25.249v16.218L3.265,23.836V7.617L3.265,7.617z
|
||||
"/>
|
||||
<path fill="#51853C" d="M3.265,23.886h-0.05V7.567h25.348v16.317L3.265,23.886z M3.314,7.667v16.119l25.149-0.001V7.667H3.314z"/>
|
||||
<path fill="#51853C" d="M1.72,25.447H1.665V5.996h28.449v19.45L1.72,25.447z M1.776,6.114v19.215l28.225-0.002V6.114H1.776z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E2EAD9" d="M23.153,20.561c-0.306-0.324-0.652-0.486-1.036-0.486
|
||||
c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818c0,0.228,0.049,0.428,0.148,0.603
|
||||
c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105c0.155-0.069,0.326-0.196,0.511-0.382
|
||||
l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142c-0.527,0-0.958-0.167-1.294-0.501
|
||||
c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901c0.153-0.264,0.372-0.475,0.657-0.635
|
||||
c0.285-0.159,0.592-0.239,0.921-0.239c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505L23.153,20.561z
|
||||
M17.809,19.534h1.851v0.633h-1.21v0.612h1.21v0.62h-1.21v0.893h1.21v0.634h-1.851V19.534z M16.392,22.926h-0.655v-2.755h-0.602
|
||||
v-0.637h1.875v0.637h-0.618V22.926z M14.447,22.306v0.62h-2.072l1.202-2.753h-1.103v-0.639h2.051l-1.207,2.771H14.447z
|
||||
M10.83,22.227H9.447L9.17,22.926H8.5l1.308-3.392h0.654l1.305,3.392h-0.671L10.83,22.227z M10.139,20.434l-0.456,1.164h0.908
|
||||
L10.139,20.434z"/>
|
||||
<path fill="#A2BC52" d="M22.127,19.449c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505l-0.452,0.43
|
||||
c-0.306-0.324-0.652-0.486-1.036-0.486c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818
|
||||
c0,0.228,0.049,0.428,0.148,0.603c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105
|
||||
c0.155-0.069,0.326-0.196,0.511-0.382l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142
|
||||
c-0.527,0-0.958-0.167-1.294-0.501c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901
|
||||
c0.153-0.264,0.372-0.475,0.657-0.635C21.491,19.529,21.799,19.449,22.127,19.449 M19.659,19.534v0.633h-1.21v0.612h1.21v0.62h-1.21
|
||||
v0.893h1.21v0.634h-1.851v-3.392H19.659 M17.01,19.534v0.637h-0.618v2.755h-0.655v-2.755h-0.602v-0.637H17.01 M14.525,19.534
|
||||
l-1.207,2.771h1.128v0.62h-2.072l1.202-2.753h-1.103v-0.639H14.525 M10.462,19.534l1.305,3.392h-0.671l-0.266-0.699H9.447
|
||||
L9.17,22.926H8.5l1.308-3.392H10.462 M9.684,21.598h0.908l-0.452-1.164L9.684,21.598 M22.127,19.284
|
||||
c-0.355,0-0.692,0.087-1.001,0.26c-0.31,0.176-0.552,0.409-0.719,0.696c-0.167,0.286-0.251,0.617-0.251,0.984
|
||||
c0,0.565,0.186,1.036,0.552,1.401c0.367,0.365,0.842,0.55,1.411,0.55c0.306,0,0.584-0.052,0.827-0.155
|
||||
c0.244-0.104,0.499-0.286,0.761-0.542l0.117-0.114l-0.113-0.117l-0.438-0.457l-0.117-0.122l-0.119,0.119
|
||||
c-0.169,0.169-0.325,0.285-0.462,0.348c-0.133,0.061-0.283,0.091-0.446,0.091c-0.192,0-0.362-0.042-0.519-0.129
|
||||
c-0.154-0.086-0.27-0.2-0.354-0.35c-0.085-0.151-0.126-0.322-0.126-0.522c0-0.281,0.093-0.51,0.285-0.702
|
||||
c0.191-0.19,0.421-0.283,0.703-0.283c0.34,0,0.64,0.142,0.916,0.435l0.114,0.12l0.12-0.114l0.451-0.43l0.113-0.107l-0.102-0.118
|
||||
c-0.202-0.236-0.446-0.421-0.726-0.548C22.723,19.349,22.428,19.284,22.127,19.284L22.127,19.284z M19.824,19.369h-0.165h-1.851
|
||||
h-0.165v0.165v3.392v0.165h0.165h1.851h0.165v-0.165v-0.634v-0.165h-0.165h-1.045v-0.563h1.045h0.165v-0.165v-0.62v-0.165h-0.165
|
||||
h-1.045v-0.282h1.045h0.165v-0.165v-0.633V19.369L19.824,19.369z M17.174,19.369H17.01h-1.875h-0.165v0.165v0.637v0.164h0.165h0.437
|
||||
v2.591v0.165h0.165h0.655h0.165v-0.165v-2.591h0.454h0.165v-0.164v-0.637V19.369L17.174,19.369z M14.776,19.369h-0.251h-2.051H12.31
|
||||
v0.165v0.639v0.164h0.165h0.851l-1.102,2.522l-0.101,0.231h0.251h2.072h0.165v-0.165v-0.62v-0.165h-0.165H13.57l1.106-2.54
|
||||
L14.776,19.369L14.776,19.369z M10.575,19.369h-0.113H9.808H9.695l-0.041,0.105l-1.308,3.392L8.26,23.091H8.5h0.67h0.112
|
||||
l0.041-0.104l0.235-0.595h1.158l0.225,0.593l0.041,0.106h0.114h0.671h0.24l-0.086-0.224l-1.304-3.392L10.575,19.369L10.575,19.369z
|
||||
M9.925,21.433l0.213-0.546l0.212,0.546H9.925L9.925,21.433z"/>
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.644,11.835 14.635,12.045 14.782,12.045
|
||||
14.789,11.835 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.592,13.064 14.584,13.275 14.74,13.275 14.748,13.064
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.609,12.675 14.601,12.854 14.754,12.854 14.76,12.675
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.626,12.256 14.618,12.465 14.768,12.465
|
||||
14.774,12.256 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.472,15.977 14.463,16.187 14.642,16.187
|
||||
14.649,15.977 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.853,8.892 14.644,8.892 14.644,9.46 15.087,9.46 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.455,16.396 14.445,16.635 14.627,16.635
|
||||
14.635,16.396 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.418,17.267 14.41,17.476 14.599,17.476 14.605,17.267
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.436,16.846 14.427,17.056 14.613,17.056 14.62,16.846
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.401,17.687 14.393,17.897 14.584,17.897
|
||||
14.591,17.687 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.885,13.334 19.375,13.334 19.407,13.515
|
||||
19.885,13.515 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.965,13.694 19.494,13.694 19.714,15.376
|
||||
21.303,15.376 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.562,12.854 19.489,11.384 19.179,11.384
|
||||
19.399,12.854 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.276,15.976 19.722,15.976 19.753,16.156
|
||||
20.276,16.156 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.661,11.415 14.652,11.624 14.796,11.624
|
||||
14.803,11.415 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.676,11.055 14.67,11.204 14.81,11.204 14.815,11.055
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.407,11.054 19.093,11.054 19.093,11.264
|
||||
19.401,11.264 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.523,14.746 14.514,14.956 14.684,14.956 14.69,14.746
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.895,9.656 14.582,9.656 14.582,10.688 15.277,10.688
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.362,16.336 19.871,16.336 20.154,18.347
|
||||
22.373,18.347 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.383,18.106 14.375,18.316 14.57,18.316 14.577,18.106
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.54,14.325 14.532,14.535 14.698,14.535 14.705,14.325
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.506,15.167 14.497,15.376 14.669,15.376
|
||||
14.676,15.167 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.557,13.935 14.549,14.115 14.712,14.115
|
||||
14.718,13.935 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.575,13.484 14.565,13.724 14.725,13.724
|
||||
14.733,13.484 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.488,15.585 14.48,15.766 14.656,15.766 14.662,15.585
|
||||
"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.57,18.316"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.577,18.106"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.584,17.897"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.591,17.687"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.599,17.476"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.605,17.267"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.613,17.056"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.62,16.846"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.627,16.635"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.635,16.396"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.642,16.187"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.649,15.977"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.656,15.766"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.662,15.585"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.669,15.376"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.676,15.167"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.684,14.956"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.69,14.746"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.698,14.535"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.705,14.325"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.718,13.935"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.725,13.724"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.733,13.484"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.74,13.275"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.748,13.064"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.754,12.854"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.76,12.675"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.768,12.465"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.774,12.256"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.782,12.045"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.789,11.835"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.803,11.415"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.815,11.055"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 27 KiB |
@@ -1,141 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_22_copy_11_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5E5C55" d="M27.265,5.259H4.152c-0.247,0-0.448,0.201-0.448,0.448v11.939
|
||||
c0.027,0.402,0.518,0.896,0.518,0.896s11.03,11.075,11.166,11.211c0.137,0.137,0.427,0.204,0.637-0.006
|
||||
c0.21-0.209,11.24-11.205,11.24-11.205s0.447-0.467,0.447-0.896V5.708C27.712,5.46,27.512,5.259,27.265,5.259z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Ellipse_1_copy_5" opacity="0.4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171617" d="M24.033,8.904l0.083-4.535L4.136,4.301l0.067,13.515l2.704,2.942
|
||||
l0.938,0.769V9.862c0-0.53,0.431-0.959,0.961-0.959h15.164C23.992,8.902,24.013,8.903,24.033,8.904z M14.699,12.492h10.376v-0.674
|
||||
H14.81c-0.005-1.11-0.906-2.009-2.018-2.009s-2.014,0.899-2.02,2.009h-0.186v0.674h0.298c0.249,0.715,0.889,1.247,1.663,1.34
|
||||
v1.915c-0.52,0.061-0.989,0.277-1.362,0.602l-1.753-1.75l-0.479,0.478l1.785,1.783c-0.26,0.393-0.412,0.863-0.412,1.369
|
||||
c0,0.658,0.257,1.256,0.675,1.702L8.958,21.97l0.479,0.478l2.093-2.09c0.303,0.185,0.649,0.307,1.019,0.35v1.944
|
||||
c-0.992,0.102-1.771,0.923-1.808,1.934h-0.153v0.674l0.243,0c0.255,0.821,1.021,1.418,1.927,1.418
|
||||
c0.904,0,1.669-0.594,1.927-1.412l6.354,0.01l0.376-0.69h-6.64c-0.033-0.921-0.684-1.684-1.549-1.89v-2
|
||||
c0.357-0.054,0.691-0.184,0.984-0.373l2.131,2.129l0.479-0.478l-2.095-2.092c0.394-0.441,0.633-1.02,0.633-1.656
|
||||
c0-0.483-0.138-0.934-0.377-1.316l1.833-1.831l-0.477-0.478l-1.79,1.788c-0.36-0.329-0.816-0.556-1.321-0.633V13.8
|
||||
C13.913,13.649,14.471,13.147,14.699,12.492z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_1_copy_4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M12.206,23.091h0.677V18.69l3.116,3.112l0.478-0.478
|
||||
l-3.454-3.449l3.45-3.445l-0.479-0.478l-3.11,3.106v-4.4h-0.677v4.4L9.09,13.947l-0.479,0.478l3.454,3.449l-3.449,3.445
|
||||
l0.478,0.478l3.112-3.107V23.091z M10.245,24.608h11.511v-0.674H10.245V24.608z M10.245,11.167v0.674h14.488v-0.674H10.245z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.4">
|
||||
<path fill="#343A38" d="M14.029,16.625l-0.688-0.687c-0.165-0.038-0.337-0.059-0.513-0.059c-1.261,0-2.284,1.021-2.284,2.281
|
||||
c0,0.239,0.226,0.696,0.295,0.913c0.009,0.027-0.216,0.196-0.2,0.219c0.147,0.209,0.307,0.371,0.508,0.518l0.08-0.167l0.974,0.317
|
||||
v0.479c0.35,0.091,0.666,0.013,0.686,0.012l0.031-0.534l0.321-0.487l0.677,0.297l0.267,0.271c0.188-0.137,0.353-0.303,0.489-0.49
|
||||
l-0.643-0.643V16.625z"/>
|
||||
<path fill="#343A38" d="M13.59,11.124l-0.748-0.677c-0.165-0.038-0.258-0.428-0.434-0.428c-1.263,0-1.261,0.392-1.261,1.651
|
||||
c0,0.539,0.271,0.976,0.582,1.367l0.476,0.023v0.53c0.281,0.096,0.671,0.018,0.689,0.017v-0.523l-0.88-1.243l0.677,0.297
|
||||
l0.267,0.271c0.187-0.138,0.352-0.303,0.489-0.49l0.771-0.059h0.321c0,0,0.073-0.4,0.012-0.701
|
||||
C14.134,11.16,13.59,11.124,13.59,11.124z"/>
|
||||
<path fill="#343A38" d="M13.394,24.68l0.772-0.059h0.32c0,0,0.123-0.265,0.012-0.702c-0.554,0-0.962-0.035-0.962-0.035
|
||||
L13.394,24.68z"/>
|
||||
</g>
|
||||
<g id="Color_Fill_1">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M24.244,7.009V3.656H3.441V17.24l3.899,3.9l0.069-0.547
|
||||
c0,0,0-9.888,0-10.401c0-0.599-0.034-0.834,0.342-1.232C8.127,8.563,8.18,8.583,8.848,8.583c0.479,0,15.44,0,15.44,0L24.244,7.009
|
||||
z M10.72,11.504c0,0.991,0.805,1.795,1.797,1.795c0.993,0,1.799-0.804,1.799-1.795s-0.806-1.795-1.799-1.795
|
||||
C11.524,9.709,10.72,10.513,10.72,11.504z M14.315,24.271c0-0.991-0.806-1.795-1.799-1.795c-0.992,0-1.797,0.804-1.797,1.795
|
||||
s0.805,1.795,1.797,1.795C13.51,26.066,14.315,25.263,14.315,24.271z M12.544,20.155c1.262,0,2.284-1.021,2.284-2.281
|
||||
s-1.022-2.281-2.284-2.281s-2.283,1.021-2.283,2.281S11.282,20.155,12.544,20.155z M19.019,27.401
|
||||
c-2.02,0-4.303-0.016-6.159-0.016c-0.871,0,2.807,3.275,2.807,3.275S20.278,27.401,19.019,27.401z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_3">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#293C3C" points="22.574,4.832 22.574,24.252 27.485,18.558 27.485,4.832
|
||||
"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#55682F" d="M27.52,3.117H4.375c-0.862,0-1.377,0.637-1.377,1.252v12.685
|
||||
c0,1.091,0.635,1.879,0.662,1.913l0.012,0.015l0.013,0.014c3.398,3.624,11.318,12.066,11.486,12.215
|
||||
c0.202,0.18,0.483,0.283,0.771,0.283c0.283,0,0.555-0.103,0.765-0.29c0.262-0.233,9.688-10.209,11.574-12.207l0.03-0.033
|
||||
l0.024-0.037c0.059-0.083,0.562-0.843,0.562-1.714V4.369C28.896,3.777,28.332,3.117,27.52,3.117z M28.166,17.219
|
||||
c0,0.822-0.476,1.539-0.529,1.618l-0.024,0.034l-0.028,0.031C25.804,20.787,16.91,30.2,16.663,30.419
|
||||
c-0.197,0.177-0.454,0.274-0.722,0.274c-0.271,0-0.536-0.098-0.728-0.267C15.057,30.285,7.583,22.319,4.377,18.9l-0.012-0.013
|
||||
l-0.013-0.014c-0.024-0.031-0.624-0.775-0.624-1.805V5.099c0-0.58,0.486-1.181,1.3-1.181h21.838c0.766,0,1.3,0.623,1.3,1.181V17.219
|
||||
z"/>
|
||||
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" fill="#191919" d="M16.133,30.431c-0.008,0-0.015-0.002-0.02-0.003
|
||||
c-0.537-0.55-7.729-8.237-10.771-11.48c-0.055-0.074-0.396-0.56-0.396-1.181V5.087c0.004-0.02,0.033-0.116,0.236-0.116h22.449
|
||||
c0.158,0,0.223,0.106,0.236,0.135l0.079,12.185c0,0.413-0.232,0.866-0.34,1.037c-3.099,3.28-11.06,11.701-11.47,12.103
|
||||
C16.137,30.431,16.135,30.431,16.133,30.431z M26.435,17.815c0.107-0.12,0.266-0.374,0.266-0.495L26.621,5.552l-1.934,0.023
|
||||
l0.026,0.832H6.026v11.88c0.017,0.102,0.176,0.354,0.327,0.517c0.098,0.103,8.544,9.054,9.697,10.273
|
||||
C17.183,27.888,26.174,18.09,26.435,17.815z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8CA14A" d="M15.941,30.354c-0.007,0-0.015-0.002-0.021-0.003
|
||||
c-0.535-0.55-8.344-8.872-11.386-12.116c-0.055-0.074-0.396-0.559-0.396-1.181V4.375c0.003-0.02,0.033-0.117,0.236-0.117H27.52
|
||||
c0.16,0,0.223,0.107,0.236,0.136v12.82c0,0.413-0.231,0.866-0.34,1.037c-3.098,3.28-11.06,11.701-11.47,12.103
|
||||
C15.945,30.353,15.944,30.354,15.941,30.354z M26.243,17.737c0.108-0.12,0.267-0.374,0.267-0.495V5.695H5.219v11.521
|
||||
c0.016,0.102,0.175,0.353,0.326,0.517c0.098,0.103,9.161,9.688,10.315,10.908C16.992,27.452,25.981,18.012,26.243,17.737z"/>
|
||||
<g id="Shape_22_copy_12_3_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M27.52,3.687H4.375c-0.574,0-0.807,0.413-0.807,0.682v12.685
|
||||
c0,0.9,0.532,1.551,0.532,1.551s11.283,12.031,11.449,12.18c0.167,0.148,0.521,0.222,0.777-0.007
|
||||
c0.256-0.228,11.538-12.173,11.538-12.173s0.461-0.671,0.461-1.392V4.369C28.326,4.1,28.028,3.687,27.52,3.687z M27.08,17.242
|
||||
c0,0.423-0.418,0.882-0.418,0.882S16.355,28.947,16.159,29.153c-0.195,0.207-0.467,0.141-0.594,0.006
|
||||
C15.438,29.025,5.132,18.125,5.132,18.125s-0.459-0.486-0.483-0.882V5.565c0-0.243,0.188-0.441,0.418-0.441h21.596
|
||||
c0.23,0,0.418,0.198,0.418,0.441V17.242z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path opacity="0.4" fill="#131313" d="M25.468,5.699l-0.006-2.586l-0.728-0.008l-0.75-1.608c0,0-0.14-0.022-0.2-0.022H8.367
|
||||
c-0.485,0-0.88,0.395-0.88,0.881v4.582c0,0.487,0.746,1.245,1.231,1.245l13.856-0.021l0.019-0.272h1.675
|
||||
c0.731,0,1.444-0.701,1.444-1.326l0.001-0.19l0.796-0.004l-0.004-0.669H25.468z"/>
|
||||
<path fill="#8CA14A" d="M24.806,5.891c0,0.896-0.776,1.622-1.735,1.622h-14.1c-0.959,0-1.735-0.726-1.735-1.622V2.646
|
||||
c0-0.896,0.776-1.622,1.735-1.622h14.1c0.959,0,1.735,0.727,1.735,1.623V5.891z"/>
|
||||
<path fill="#343A38" d="M8.908,7.078c-0.644,0-1.167-0.493-1.167-1.099V2.559c0-0.606,0.523-1.1,1.167-1.1h14.225
|
||||
c0.644,0,1.167,0.494,1.167,1.1v3.419c0,0.606-0.523,1.1-1.167,1.1L8.908,7.078z"/>
|
||||
<g id="bank" opacity="0.4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171717" d="M11.648,3.494c0.148-0.034,0.26-0.096,0.334-0.186
|
||||
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.193-0.409c-0.128-0.119-0.333-0.179-0.613-0.179H9.937v2.24h1.268
|
||||
c0.397,0,0.657-0.065,0.778-0.196c0.122-0.131,0.182-0.279,0.182-0.445C12.164,3.738,11.993,3.563,11.648,3.494z M10.688,2.898
|
||||
h0.365c0.182,0,0.273,0.063,0.273,0.187c0,0.046-0.02,0.09-0.059,0.13c-0.04,0.041-0.106,0.061-0.201,0.061h-0.379V2.898z
|
||||
M11.304,4.097c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.751h0.371c0.119,0,0.201,0.022,0.247,0.065
|
||||
c0.044,0.043,0.066,0.091,0.066,0.142C11.373,4.009,11.351,4.056,11.304,4.097z M13.823,2.417l-0.821,2.24h0.663l0.159-0.441
|
||||
h0.714l0.15,0.441h0.833l-0.835-2.24H13.823z M13.964,3.727l0.216-0.65l0.214,0.65H13.964z M18.096,3.08
|
||||
c0,0.201,0.021,0.396,0.063,0.588c-0.063-0.124-0.157-0.267-0.28-0.43l-0.62-0.821h-0.772v2.24h0.663V3.573
|
||||
c0-0.101-0.021-0.224-0.063-0.368c0.095,0.181,0.188,0.335,0.282,0.463l0.729,0.989h0.665v-2.24h-0.665V3.08z M21.51,3.237
|
||||
l0.672-0.82h-0.734l-0.734,0.926V2.417h-0.77v2.24h0.77V4.141l0.276-0.33l0.46,0.846h0.894L21.51,3.237z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="bank_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F2EBC8" d="M11.458,3.304c0.148-0.034,0.26-0.096,0.334-0.187
|
||||
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.192-0.409c-0.129-0.119-0.333-0.179-0.615-0.179H9.746v2.24h1.269
|
||||
c0.396,0,0.656-0.065,0.777-0.196c0.122-0.131,0.183-0.279,0.183-0.446C11.975,3.547,11.802,3.374,11.458,3.304z M10.499,2.708
|
||||
h0.364c0.183,0,0.272,0.063,0.272,0.188c0,0.046-0.02,0.089-0.058,0.129c-0.039,0.04-0.106,0.061-0.201,0.061h-0.378V2.708z
|
||||
M11.114,3.907c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.562h0.371c0.119,0,0.201,0.021,0.246,0.065
|
||||
c0.045,0.043,0.067,0.09,0.067,0.142C11.184,3.82,11.16,3.866,11.114,3.907z M13.634,2.227l-0.821,2.24h0.663l0.159-0.441h0.713
|
||||
l0.15,0.441h0.834l-0.835-2.24H13.634z M13.774,3.537l0.215-0.65l0.215,0.65H13.774z M17.906,2.89c0,0.2,0.021,0.396,0.063,0.587
|
||||
c-0.063-0.124-0.157-0.267-0.281-0.43l-0.62-0.821h-0.771v2.24h0.662V3.383c0-0.101-0.021-0.223-0.064-0.368
|
||||
c0.096,0.182,0.189,0.335,0.284,0.462l0.729,0.99h0.665v-2.24h-0.665V2.89z M21.319,3.047l0.673-0.82h-0.734l-0.734,0.926V2.227
|
||||
h-0.77v2.24h0.77V3.95L20.8,3.621l0.46,0.846h0.894L21.319,3.047z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CAF4E" d="M17.503,5.169h-0.622c-0.136,0-0.246,0.11-0.246,0.245v0.532
|
||||
c0,0.136,0.11,0.246,0.246,0.246h0.622c0.126,0,0.23-0.096,0.243-0.22V5.959h-0.838V5.397h0.838V5.385
|
||||
C17.731,5.263,17.628,5.169,17.503,5.169z M18.838,5.567h-0.651V5.389h0.874c-0.012-0.123-0.116-0.22-0.243-0.22h-0.635
|
||||
c-0.136,0-0.245,0.11-0.245,0.245v0.152c0.012,0.125,0.117,0.221,0.244,0.221l0.649,0V5.97h-0.893
|
||||
c0.013,0.124,0.117,0.221,0.244,0.221h0.652c0.136,0,0.246-0.109,0.246-0.245V5.787C19.069,5.663,18.965,5.567,18.838,5.567z
|
||||
M21.841,5.16h-0.639c-0.129,0-0.234,0.105-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.639
|
||||
c0.129,0,0.235-0.105,0.235-0.235V5.396C22.076,5.266,21.97,5.16,21.841,5.16z M21.856,5.993h-0.67V5.351h0.67V5.993z
|
||||
M20.063,5.69c0.049,0.063,0.125,0.067,0.146,0.067l0.341,0V5.98h-0.715V5.358h0.933C20.749,5.244,20.65,5.16,20.534,5.16h-0.683
|
||||
c-0.129,0-0.234,0.106-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.683c0.122,0,0.223-0.09,0.234-0.208V5.586h-0.757
|
||||
C20.015,5.606,20.024,5.643,20.063,5.69z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 208 KiB |
Before Width: | Height: | Size: 212 KiB |
@@ -1,213 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_1_copy_13">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#721011" points="28.515,13.102 19.345,12.357 16.037,4.037
|
||||
12.729,12.357 3.559,13.102 10.685,18.65 8.325,27.77 16.037,22.538 23.748,27.77 21.389,18.65 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_4_copy">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED2024" points="28.414,13.642 28.22,12.914 17.286,16.311
|
||||
24.673,12.427 23.037,12.254 17.105,15.998 21.351,12.076 20.336,11.969 16.85,15.742 19.505,11.536 19.134,10.621 16.537,15.562
|
||||
18.534,9.135 17.947,7.684 16.188,15.468 16.624,4.414 16.468,4.028 15.68,4.028 15.402,4.737 15.826,15.467 14.133,7.973
|
||||
13.566,9.414 15.477,15.562 13.001,10.854 12.647,11.756 15.162,15.742 11.771,12.07 10.754,12.159 14.907,15.998 9.064,12.309
|
||||
7.396,12.457 14.728,16.311 3.793,12.914 3.59,13.672 4.439,14.356 14.633,16.66 6.922,16.355 8.071,17.281 14.633,17.022
|
||||
9.258,18.237 9.888,18.745 9.857,18.884 14.728,17.371 9.586,20.074 9.329,21.206 14.907,17.685 8.859,23.272 8.412,25.247
|
||||
15.162,17.94 9.053,27.621 9.111,27.656 11.182,26.289 15.477,18.121 13.392,24.829 14.496,24.1 15.826,18.214 15.623,23.356
|
||||
15.989,23.113 16.392,23.381 16.188,18.214 17.525,24.135 18.636,24.873 16.537,18.121 20.868,26.359 22.857,27.681
|
||||
22.962,27.621 16.85,17.94 23.273,24.892 22.838,22.981 17.105,17.685 22.391,21.021 22.141,19.924 17.286,17.371 21.884,18.8
|
||||
21.882,18.788 22.619,18.206 17.38,17.022 23.802,17.275 24.962,16.361 17.38,16.66 27.482,14.376 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_13_13_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AC782B" d="M31.348,12.273c-1.842-0.149-11.138-0.902-11.138-0.902
|
||||
S17.045,3.41,16.228,1.354c-0.121-0.305-0.262-0.305-0.383,0.002c-0.819,2.06-3.981,10.015-3.981,10.015
|
||||
s-9.346,0.755-11.168,0.903c-0.194,0.016-0.218,0.166-0.055,0.292c1.458,1.136,8.645,6.743,8.645,6.743S6.832,28.768,6.41,30.401
|
||||
c-0.04,0.151,0.11,0.255,0.25,0.161c1.432-0.971,9.377-6.347,9.377-6.347s7.685,5.213,9.395,6.373
|
||||
c0.214,0.146,0.3,0.098,0.24-0.133c-0.503-1.949-2.883-11.146-2.883-11.146s7.211-5.613,8.649-6.733
|
||||
C31.595,12.454,31.546,12.289,31.348,12.273z M21.937,18.871l2.601,10.053l-8.5-5.767l-8.501,5.767l2.601-10.053l-7.854-6.115
|
||||
l10.107-0.82l3.646-9.172l3.646,9.172l10.106,0.82L21.937,18.871z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_13_9_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" d="M30.973,12.511L19.997,11.62l-3.961-9.962l-3.96,9.962
|
||||
L1.1,12.511l8.53,6.642L6.806,30.07l9.231-6.263l9.231,6.263l-2.824-10.917L30.973,12.511z M24.103,28.276l-8.065-5.472
|
||||
l-8.066,5.472l2.469-9.54l-7.455-5.803l9.593-0.778l3.46-8.704l3.459,8.704l9.592,0.778l-7.453,5.803L24.103,28.276z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_13_6_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" d="M28.911,13.033l-9.461-0.768l-3.413-8.586l-3.414,8.586
|
||||
l-9.459,0.768l7.351,5.725L8.08,28.167l7.957-5.397l7.956,5.397l-2.435-9.409L28.911,13.033z M22.989,26.621l-6.952-4.716
|
||||
l-6.953,4.716l2.127-8.221l-6.422-5.002l8.266-0.671l2.982-7.501l2.981,7.501l8.267,0.671l-6.424,5.002L22.989,26.621z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_13_8_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AC782B" d="M29.554,12.889l-9.934-0.807l-3.583-9.015l-3.583,9.015
|
||||
L2.52,12.889l7.719,6.01l-2.556,9.879l8.354-5.667l8.354,5.667l-2.556-9.879L29.554,12.889z M23.335,27.155l-7.298-4.952
|
||||
l-7.3,4.952l2.233-8.632l-6.744-5.251l8.679-0.704l3.132-7.876l3.13,7.876l8.68,0.704l-6.744,5.251L23.335,27.155z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_13_10_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#521311" d="M30.359,12.688l-10.526-0.854l-3.796-9.552l-3.798,9.552
|
||||
L1.713,12.688l8.18,6.37L7.184,29.525l8.854-6.005l8.852,6.005l-2.708-10.468L30.359,12.688z M23.771,27.806l-7.734-5.247
|
||||
l-7.734,5.247l2.366-9.147l-7.147-5.565l9.197-0.746l3.318-8.346l3.317,8.346l9.197,0.746l-7.146,5.565L23.771,27.806z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AC782B" d="M25.786,13.867H6.29c-0.108,0-0.197,0.088-0.197,0.196v5.806
|
||||
c0,0.108,0.089,0.196,0.197,0.196h19.496c0.108,0,0.196-0.088,0.196-0.196v-5.806C25.982,13.955,25.895,13.867,25.786,13.867z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_14">
|
||||
<g>
|
||||
<rect x="6.439" y="14.186" fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" width="19.229" height="5.641"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_13_12_">
|
||||
<g>
|
||||
<rect x="6.767" y="14.488" fill-rule="evenodd" clip-rule="evenodd" fill="#521311" width="18.575" height="5.036"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_13_14_">
|
||||
<g>
|
||||
<rect x="7.011" y="14.776" fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" width="18.087" height="4.528"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_13_16_">
|
||||
<g>
|
||||
<rect x="7.249" y="14.987" fill-rule="evenodd" clip-rule="evenodd" fill="#E8E1BB" width="17.609" height="4.107"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_9">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#361F1E" d="M10.363,15.537h-1.13c-0.154,0-0.284,0.048-0.39,0.145
|
||||
c-0.106,0.096-0.159,0.213-0.159,0.352v2.012c0,0.138,0.053,0.255,0.159,0.352c0.105,0.097,0.235,0.145,0.39,0.145h1.13
|
||||
c0.155,0,0.284-0.048,0.393-0.145c0.107-0.096,0.16-0.213,0.16-0.352v-0.546h-0.604v0.429c0,0.033-0.013,0.061-0.039,0.083
|
||||
c-0.027,0.022-0.059,0.034-0.096,0.034H9.424c-0.037,0-0.068-0.012-0.096-0.034c-0.026-0.022-0.039-0.05-0.039-0.083V16.15
|
||||
c0-0.034,0.013-0.061,0.039-0.083c0.027-0.023,0.059-0.034,0.096-0.034h0.754c0.037,0,0.068,0.011,0.096,0.034
|
||||
c0.026,0.022,0.039,0.05,0.039,0.083v0.401h0.604v-0.519c0-0.138-0.053-0.255-0.16-0.352
|
||||
C10.647,15.584,10.519,15.537,10.363,15.537z M12.656,15.537l-1.131,3.004h0.608l0.231-0.654h1.131l0.24,0.654h0.608l-1.13-3.004
|
||||
H12.656z M12.546,17.404l0.387-1.146l0.388,1.146H12.546z M16.658,15.537h-1.131c-0.154,0-0.284,0.048-0.39,0.145
|
||||
c-0.105,0.096-0.158,0.213-0.158,0.352v2.012c0,0.138,0.053,0.255,0.158,0.352c0.105,0.097,0.235,0.145,0.39,0.145h1.131
|
||||
c0.154,0,0.284-0.048,0.392-0.145c0.107-0.096,0.161-0.213,0.161-0.352v-0.546h-0.604v0.429c0,0.033-0.014,0.061-0.04,0.083
|
||||
c-0.027,0.022-0.059,0.034-0.096,0.034h-0.754c-0.036,0-0.068-0.012-0.095-0.034c-0.027-0.022-0.04-0.05-0.04-0.083V16.15
|
||||
c0-0.034,0.013-0.061,0.04-0.083c0.026-0.023,0.059-0.034,0.095-0.034h0.754c0.037,0,0.068,0.011,0.096,0.034
|
||||
c0.026,0.022,0.04,0.05,0.04,0.083v0.401h0.604v-0.519c0-0.138-0.054-0.255-0.161-0.352
|
||||
C16.942,15.584,16.813,15.537,16.658,15.537z M18.709,15.537h-0.604v3.004h0.604v-1.286h1.137v1.286h0.603v-1.782h-1.739V15.537z
|
||||
M23.425,16.033v-0.496h-2.03v3.004h2.03v-0.496h-1.428v-0.771h1.302v-0.497h-1.302v-0.744H23.425z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#B7AE86" d="M21.395,18.693c-0.091,0-0.163-0.073-0.163-0.164v-3.003c0-0.09,0.072-0.164,0.163-0.164h2.03
|
||||
c0.09,0,0.163,0.074,0.163,0.164v0.496c0,0.09-0.073,0.164-0.163,0.164h-1.264v0.417h1.138c0.09,0,0.164,0.074,0.164,0.164v0.496
|
||||
c0,0.09-0.074,0.164-0.164,0.164h-1.138v0.444h1.264c0.09,0,0.163,0.074,0.163,0.164v0.496c0,0.09-0.073,0.164-0.163,0.164H21.395z
|
||||
M23.365,18.471v-0.378h-1.427v-0.889h1.302v-0.378h-1.302v-0.862h1.427v-0.377h-1.911v2.885H23.365z"/>
|
||||
<path fill="#B7AE86" d="M19.846,18.693c-0.091,0-0.164-0.073-0.164-0.164v-1.121h-0.809v1.121c0,0.09-0.073,0.164-0.164,0.164
|
||||
h-0.604c-0.089,0-0.162-0.073-0.162-0.164v-3.003c0-0.09,0.073-0.164,0.162-0.164h0.604c0.091,0,0.164,0.074,0.164,0.164v1.058
|
||||
h1.575c0.091,0,0.163,0.073,0.163,0.164v1.781c0,0.09-0.072,0.164-0.163,0.164H19.846z M20.389,18.471v-1.664H18.65v-1.222h-0.484
|
||||
v2.885h0.484v-1.285h1.254v1.285H20.389z"/>
|
||||
<path fill="#B7AE86" d="M15.527,18.693c-0.196,0-0.365-0.063-0.5-0.187c-0.141-0.128-0.211-0.287-0.211-0.472v-2.012
|
||||
c0-0.185,0.07-0.344,0.211-0.473c0.135-0.124,0.304-0.187,0.5-0.187h1.131c0.195,0,0.363,0.063,0.501,0.186
|
||||
c0.144,0.127,0.216,0.287,0.216,0.473v0.519c0,0.09-0.074,0.164-0.164,0.164h-0.604c-0.09,0-0.163-0.074-0.163-0.164l-0.003-0.355
|
||||
h-0.694l0.003,1.685h0.694v-0.382c0-0.09,0.073-0.164,0.163-0.164h0.604c0.09,0,0.164,0.074,0.164,0.164v0.546
|
||||
c0,0.186-0.072,0.345-0.216,0.473c-0.138,0.124-0.306,0.186-0.501,0.186H15.527z M15.527,15.585c-0.141,0-0.255,0.042-0.35,0.129
|
||||
c-0.094,0.085-0.14,0.186-0.14,0.308v2.012c0,0.122,0.046,0.223,0.14,0.308c0.095,0.087,0.209,0.128,0.35,0.128h1.131
|
||||
c0.14,0,0.256-0.042,0.353-0.129c0.095-0.085,0.142-0.186,0.142-0.308v-0.487h-0.484v0.369c0,0.051-0.022,0.095-0.062,0.128
|
||||
c-0.039,0.032-0.084,0.048-0.135,0.048h-0.754c-0.051,0-0.095-0.016-0.133-0.048c-0.041-0.034-0.061-0.078-0.061-0.128V16.14
|
||||
c0-0.051,0.021-0.096,0.062-0.128c0.035-0.032,0.081-0.048,0.132-0.048h0.754c0.051,0,0.097,0.017,0.135,0.049
|
||||
c0.039,0.032,0.062,0.077,0.062,0.128v0.342h0.484v-0.46c0-0.122-0.047-0.222-0.142-0.308c-0.097-0.087-0.213-0.129-0.353-0.129
|
||||
H15.527z"/>
|
||||
<path fill="#B7AE86" d="M13.736,18.693c-0.067,0-0.129-0.043-0.153-0.106l-0.201-0.547h-0.9l-0.192,0.544
|
||||
c-0.024,0.065-0.086,0.109-0.155,0.109h-0.608c-0.053,0-0.104-0.026-0.135-0.07c-0.029-0.044-0.037-0.101-0.018-0.151l1.13-3.003
|
||||
c0.024-0.063,0.086-0.106,0.153-0.106h0.559c0.067,0,0.129,0.042,0.152,0.106l1.131,3.004c0.019,0.05,0.013,0.107-0.019,0.151
|
||||
c-0.03,0.044-0.081,0.07-0.135,0.07H13.736z M14.26,18.471l-1.087-2.885h-0.475l-1.087,2.885h0.48l0.231-0.654h1.213l0.243,0.654
|
||||
H14.26z M12.464,17.453l0.469-1.389l0.47,1.389H12.464z M13.092,17.23l-0.159-0.47l-0.158,0.47H13.092z"/>
|
||||
<path fill="#B7AE86" d="M9.233,18.693c-0.196,0-0.365-0.063-0.5-0.187c-0.141-0.128-0.213-0.287-0.213-0.472v-2.012
|
||||
c0-0.185,0.072-0.344,0.213-0.473c0.136-0.124,0.304-0.187,0.5-0.187h1.13c0.196,0,0.364,0.063,0.502,0.186
|
||||
c0.143,0.127,0.215,0.287,0.215,0.473v0.519c0,0.09-0.074,0.164-0.164,0.164h-0.604c-0.089,0-0.162-0.074-0.162-0.164l-0.004-0.355
|
||||
H9.453l0.002,1.685h0.695v-0.382c0-0.09,0.073-0.164,0.162-0.164h0.604c0.09,0,0.164,0.074,0.164,0.164v0.546
|
||||
c0,0.186-0.072,0.345-0.215,0.473c-0.138,0.124-0.306,0.186-0.502,0.186H9.233z M9.233,15.585c-0.141,0-0.255,0.042-0.35,0.129
|
||||
C8.79,15.8,8.744,15.9,8.744,16.022v2.012c0,0.122,0.045,0.223,0.14,0.308c0.095,0.087,0.208,0.128,0.35,0.128h1.13
|
||||
c0.141,0,0.257-0.042,0.354-0.129c0.095-0.085,0.141-0.186,0.141-0.308v-0.487h-0.484v0.369c0,0.051-0.021,0.095-0.063,0.128
|
||||
c-0.037,0.032-0.082,0.048-0.133,0.048H9.424c-0.051,0-0.096-0.016-0.133-0.048c-0.041-0.034-0.062-0.078-0.062-0.128V16.14
|
||||
c0-0.051,0.021-0.096,0.062-0.128c0.036-0.032,0.082-0.048,0.133-0.048h0.754c0.051,0,0.097,0.017,0.133,0.049
|
||||
c0.041,0.032,0.063,0.077,0.063,0.128v0.342h0.484v-0.46c0-0.122-0.046-0.222-0.142-0.308c-0.096-0.087-0.212-0.129-0.353-0.129
|
||||
H9.233z"/>
|
||||
<g id="Shape_8">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFEDA8" d="M10.363,15.421h-1.13c-0.18,0-0.335,0.058-0.461,0.171
|
||||
c-0.127,0.116-0.192,0.26-0.192,0.429v2.012c0,0.168,0.065,0.313,0.192,0.429c0.126,0.114,0.28,0.172,0.461,0.172h1.13
|
||||
c0.182,0,0.336-0.058,0.462-0.171c0.131-0.116,0.196-0.26,0.196-0.429v-0.546c0-0.057-0.047-0.104-0.105-0.104h-0.604
|
||||
c-0.057,0-0.104,0.047-0.104,0.104v0.429c-0.01,0.008-0.017,0.013-0.031,0.013H9.424c-0.015,0-0.021-0.004-0.028-0.009
|
||||
l-0.002-1.78c0.009-0.008,0.016-0.013,0.03-0.013h0.754c0.015,0,0.021,0.004,0.028,0.009l0.003,0.404
|
||||
c0,0.058,0.047,0.105,0.104,0.105h0.604c0.059,0,0.105-0.047,0.105-0.105v-0.519c0-0.169-0.065-0.313-0.196-0.429
|
||||
C10.699,15.479,10.545,15.421,10.363,15.421z M10.916,16.541h-0.604V16.14c0-0.033-0.013-0.062-0.039-0.083
|
||||
c-0.027-0.022-0.059-0.034-0.096-0.034H9.424c-0.037,0-0.068,0.012-0.096,0.034c-0.026,0.022-0.039,0.05-0.039,0.083v1.777
|
||||
c0,0.033,0.013,0.061,0.039,0.083c0.027,0.023,0.059,0.034,0.096,0.034h0.754c0.037,0,0.068-0.011,0.096-0.034
|
||||
c0.026-0.022,0.039-0.05,0.039-0.083v-0.429h0.604v0.546c0,0.138-0.053,0.255-0.16,0.352c-0.108,0.096-0.237,0.144-0.393,0.144
|
||||
h-1.13c-0.154,0-0.284-0.048-0.39-0.144c-0.106-0.096-0.159-0.213-0.159-0.352v-2.012c0-0.139,0.053-0.255,0.159-0.352
|
||||
c0.105-0.096,0.235-0.144,0.39-0.144h1.13c0.155,0,0.284,0.048,0.393,0.144c0.107,0.096,0.16,0.213,0.16,0.352V16.541z
|
||||
M13.215,15.421h-0.559c-0.044,0-0.082,0.027-0.098,0.068l-1.131,3.003c-0.011,0.032-0.008,0.068,0.012,0.097
|
||||
s0.052,0.045,0.086,0.045h0.608c0.045,0,0.085-0.028,0.099-0.07l0.206-0.584h0.984l0.216,0.586
|
||||
c0.015,0.041,0.055,0.068,0.098,0.068h0.608c0.035,0,0.067-0.017,0.087-0.045s0.022-0.065,0.012-0.097l-1.132-3.003
|
||||
C13.297,15.449,13.258,15.421,13.215,15.421z M13.736,18.53l-0.24-0.654h-1.131l-0.231,0.654h-0.608l1.131-3.003h0.559l1.13,3.003
|
||||
H13.736z M12.546,17.394h0.774l-0.388-1.146L12.546,17.394z M12.692,17.289l0.24-0.714l0.241,0.714H12.692z M16.658,15.421h-1.131
|
||||
c-0.18,0-0.335,0.058-0.46,0.171c-0.128,0.116-0.191,0.26-0.191,0.429v2.012c0,0.168,0.063,0.313,0.191,0.429
|
||||
c0.125,0.114,0.279,0.172,0.46,0.172h1.131c0.181,0,0.336-0.058,0.461-0.171c0.131-0.116,0.196-0.26,0.196-0.429v-0.546
|
||||
c0-0.057-0.047-0.104-0.104-0.104h-0.604c-0.058,0-0.104,0.047-0.104,0.104v0.429c-0.008,0.008-0.017,0.013-0.031,0.013h-0.754
|
||||
c-0.015,0-0.021-0.004-0.027-0.009l-0.003-1.78c0.009-0.008,0.016-0.013,0.03-0.013h0.754c0.015,0,0.023,0.004,0.028,0.009
|
||||
l0.003,0.404c0,0.058,0.047,0.105,0.104,0.105h0.604c0.058,0,0.104-0.047,0.104-0.105v-0.519c0-0.169-0.065-0.313-0.196-0.429
|
||||
C16.993,15.479,16.839,15.421,16.658,15.421z M17.211,16.541h-0.604V16.14c0-0.033-0.014-0.062-0.04-0.083
|
||||
c-0.027-0.022-0.059-0.034-0.096-0.034h-0.754c-0.036,0-0.068,0.012-0.095,0.034c-0.027,0.022-0.04,0.05-0.04,0.083v1.777
|
||||
c0,0.033,0.013,0.061,0.04,0.083c0.026,0.023,0.059,0.034,0.095,0.034h0.754c0.037,0,0.068-0.011,0.096-0.034
|
||||
c0.026-0.022,0.04-0.05,0.04-0.083v-0.429h0.604v0.546c0,0.138-0.054,0.255-0.161,0.352s-0.237,0.144-0.392,0.144h-1.131
|
||||
c-0.154,0-0.284-0.048-0.39-0.144s-0.158-0.213-0.158-0.352v-2.012c0-0.139,0.053-0.255,0.158-0.352
|
||||
c0.105-0.096,0.235-0.144,0.39-0.144h1.131c0.154,0,0.284,0.048,0.392,0.144c0.107,0.096,0.161,0.213,0.161,0.352V16.541z
|
||||
M20.448,16.644h-1.634v-1.118c0-0.058-0.047-0.105-0.105-0.105h-0.604c-0.056,0-0.104,0.047-0.104,0.105v3.003
|
||||
c0,0.058,0.048,0.105,0.104,0.105h0.604c0.059,0,0.105-0.047,0.105-0.105v-1.181h0.926v1.181c0,0.058,0.048,0.105,0.105,0.105
|
||||
h0.603c0.058,0,0.104-0.047,0.104-0.105v-1.781C20.553,16.691,20.506,16.644,20.448,16.644z M20.448,18.53h-0.603v-1.285h-1.137
|
||||
v1.285h-0.604v-3.003h0.604v1.222h1.739V18.53z M23.425,16.127c0.058,0,0.104-0.047,0.104-0.105v-0.496
|
||||
c0-0.058-0.047-0.105-0.104-0.105h-2.03c-0.057,0-0.104,0.047-0.104,0.105v3.003c0,0.058,0.048,0.105,0.104,0.105h2.03
|
||||
c0.058,0,0.104-0.047,0.104-0.105v-0.496c0-0.058-0.047-0.105-0.104-0.105h-1.322v-0.562h1.196c0.059,0,0.104-0.047,0.104-0.105
|
||||
v-0.496c0-0.058-0.046-0.105-0.104-0.105h-1.196v-0.534H23.425z M23.299,16.766v0.496h-1.302v0.772h1.428v0.496h-2.03v-3.003h2.03
|
||||
v0.496h-1.428v0.744H23.299z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_copy_6">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#280F0E" d="M13.59,20.991h0.843v-0.013
|
||||
c-0.014-0.122-0.118-0.216-0.245-0.216h-0.625c-0.137,0-0.245,0.11-0.245,0.246v0.535c0,0.135,0.108,0.246,0.245,0.246h0.625
|
||||
c0.128,0,0.233-0.096,0.246-0.221v-0.012H13.59V20.991z M15.529,21.161h-0.653v-0.178h0.878c-0.012-0.124-0.117-0.221-0.246-0.221
|
||||
h-0.637c-0.136,0-0.246,0.11-0.246,0.246v0.153c0.012,0.125,0.117,0.223,0.244,0.223l0.654,0v0.183h-0.897
|
||||
c0.012,0.125,0.117,0.223,0.245,0.223h0.655c0.137,0,0.247-0.111,0.247-0.246v-0.16C15.762,21.258,15.656,21.161,15.529,21.161z
|
||||
M18.545,20.752h-0.641c-0.13,0-0.236,0.106-0.236,0.236v0.555c0,0.13,0.106,0.236,0.236,0.236h0.641
|
||||
c0.13,0,0.236-0.106,0.236-0.236v-0.555C18.781,20.859,18.675,20.752,18.545,20.752z M18.561,21.589h-0.672v-0.645h0.672V21.589z
|
||||
M16.759,21.285c0.05,0.063,0.125,0.068,0.148,0.068l0.342,0v0.224h-0.72v-0.625h0.937c-0.018-0.113-0.116-0.199-0.232-0.199
|
||||
h-0.685c-0.132,0-0.237,0.106-0.237,0.237v0.554c0,0.13,0.105,0.236,0.237,0.236h0.685c0.122,0,0.223-0.091,0.235-0.209v-0.389
|
||||
h-0.761C16.711,21.201,16.721,21.238,16.759,21.285z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_copy_6_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E2A825" d="M13.733,20.834h0.779v-0.011c-0.014-0.113-0.11-0.2-0.227-0.2
|
||||
h-0.578c-0.127,0-0.229,0.102-0.229,0.228v0.494c0,0.126,0.103,0.229,0.229,0.229h0.578c0.118,0,0.216-0.089,0.228-0.204v-0.012
|
||||
h-0.78V20.834z M15.528,20.992h-0.606v-0.165h0.813c-0.012-0.115-0.107-0.205-0.228-0.205h-0.589
|
||||
c-0.126,0-0.229,0.102-0.229,0.228v0.142c0.013,0.115,0.108,0.206,0.228,0.206h0.604v0.169h-0.831
|
||||
c0.013,0.116,0.108,0.206,0.228,0.206h0.606c0.127,0,0.229-0.103,0.229-0.229v-0.147C15.744,21.082,15.646,20.992,15.528,20.992z
|
||||
M18.321,20.613h-0.593c-0.121,0-0.22,0.099-0.22,0.219v0.513c0,0.121,0.099,0.219,0.22,0.219h0.593
|
||||
c0.12,0,0.219-0.098,0.219-0.219v-0.513C18.54,20.712,18.441,20.613,18.321,20.613z M18.336,21.388h-0.622v-0.597h0.622V21.388z
|
||||
M16.668,21.107c0.044,0.058,0.115,0.063,0.136,0.063h0.316v0.208h-0.665v-0.579h0.868c-0.017-0.106-0.109-0.185-0.217-0.185
|
||||
h-0.635c-0.121,0-0.22,0.099-0.22,0.22v0.513c0,0.121,0.099,0.219,0.22,0.219h0.635c0.113,0,0.207-0.084,0.218-0.194v-0.36H16.62
|
||||
C16.623,21.029,16.633,21.063,16.668,21.107z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 213 KiB |
Before Width: | Height: | Size: 278 KiB |
@@ -1,588 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<path fill="#F3F0E7" d="M15.883,31.299C11.286,29.828,3.164,26.502,2.895,7.723c2.161-0.908,3.392-2.429,4.044-3.55
|
||||
C7.492,3.222,7.248,2.69,7.42,1.602c2.399-0.259,5.811-0.719,8.316-0.719c2.785,0,6.404,0.348,8.693,0.587
|
||||
c0.205,2.669,0.633,4.579,4.381,5.984C28.655,20.253,25.29,28.225,15.883,31.299z"/>
|
||||
<path fill="#47205E" d="M25.633,7.502c0.47,0.381,1.116,0.81,1.752,1.113c-0.139,11.368-3.992,18.45-11.456,21.049
|
||||
c-2.162-0.809-6.773-2.55-9.467-9.133L25.633,7.502z"/>
|
||||
<polygon fill="#47205E" points="15.859,2.275 15.873,1.03 19.133,1.134 19.055,2.386 "/>
|
||||
<polygon fill="#47205E" points="9.572,2.645 9.44,1.406 12.691,1.13 12.759,2.383 "/>
|
||||
<path fill="#47205E" d="M25.162,6.813l0.792-0.753c0,0,0.509,0.646,1.761,1.262c-0.225,0.519-0.274,0.744-0.421,1.017
|
||||
C26.169,7.899,25.162,6.813,25.162,6.813z"/>
|
||||
<path fill="#47205E" d="M6.811,6.91L5.949,6.147c0,0,0.633-0.597,1.17-1.974C7.684,4.36,7.925,4.39,8.226,4.519
|
||||
C7.862,5.745,6.811,6.91,6.811,6.91z"/>
|
||||
<path fill="#47205E" d="M28.582,13.182l-1.203-0.118c0,0,0.137-1.409,0.195-2.846c0.636,0.02,0.811,0.045,1.184,0.039
|
||||
C28.777,11.499,28.582,13.182,28.582,13.182z"/>
|
||||
<path fill="#47205E" d="M3.354,13.223l1.155-0.116c0,0,0.139,1.451,0.355,2.916c-0.602,0.104-0.771,0.112-1.122,0.191
|
||||
C3.488,14.962,3.354,13.223,3.354,13.223z"/>
|
||||
<path fill="#47205E" d="M4.506,19.184l1.097-0.38c0,0,0.443,1.273,0.966,2.541c-0.563,0.238-0.725,0.285-1.048,0.44
|
||||
C5.007,20.717,4.506,19.184,4.506,19.184z"/>
|
||||
<path fill="#47205E" d="M6.997,24.429l0.943-0.676c0,0,0.787,1.095,1.648,2.162c-0.472,0.388-0.614,0.479-0.88,0.72
|
||||
C7.913,25.758,6.997,24.429,6.997,24.429z"/>
|
||||
<path fill="#47205E" d="M10.868,28.585l0.6-0.994c0,0,1.155,0.695,2.368,1.334c-0.28,0.543-0.375,0.683-0.524,1.01
|
||||
C12.234,29.444,10.868,28.585,10.868,28.585z"/>
|
||||
<path fill="#47205E" d="M15.933,31.042l-0.008-1.165c0,0,0.809-0.469,2.113-0.756c0.183,0.208,0.417,0.652,0.651,0.965
|
||||
C17.542,30.478,15.933,31.042,15.933,31.042z"/>
|
||||
<path fill="#47205E" d="M27.435,19.153l-1.171-0.3c0,0,0.35-1.371,0.628-2.783c0.625,0.116,0.793,0.168,1.164,0.219
|
||||
C27.885,17.521,27.435,19.153,27.435,19.153z"/>
|
||||
<path fill="#47205E" d="M25.004,24.356l-1.049-0.601c0,0,0.702-1.229,1.346-2.516c0.572,0.278,0.721,0.374,1.063,0.521
|
||||
C25.873,22.902,25.004,24.356,25.004,24.356z"/>
|
||||
<path fill="#47205E" d="M22.196,2.562l0.098-1.164l2.357,0.245l0.205,2.387c0,0-0.772,0.293-1.036,0.43
|
||||
c-0.226-0.44-0.518-1.785-0.518-1.785L22.196,2.562z"/>
|
||||
<path fill="#47205E" d="M4.727,8.389L4.213,7.368L3.065,7.759l0.053,2.53c0,0,0.834-0.079,1.095-0.052
|
||||
c0.026-0.548,0.026-1.644,0.026-1.644L4.727,8.389z"/>
|
||||
<rect x="7.22" y="23.435" transform="matrix(-0.5176 -0.8556 0.8556 -0.5176 -9.6097 42.8611)" width="0.117" height="1.409"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F3F0E7" d="M22.614,29.94c0.743,0.175,1.18,0.278,1.642,0.382
|
||||
c0.23,0.052,0.402,0.084,0.683,0.099c0.301,0.016,1.077-0.164,1.349-1.067c0.166-0.502,0.205-0.82,0.374-1.339
|
||||
c0.747,0.214,2.292,0.466,2.292,0.466l-0.808-2.173c0,0,1.697-1.132,2.228-1.553c-2.141-0.351-2.71-0.381-3.86-1.027
|
||||
c-1.021-0.522-1.376,0.133-1.431,0.438c-0.049,0.279-0.355,1.188-0.434,1.551c-0.444-0.112-0.994-0.242-1.632-0.364
|
||||
c-0.788-0.155-1.709-0.31-2.725-0.43c-0.508-0.06-1.04-0.111-1.594-0.147c-0.197-0.013-1.54-0.059-1.726-0.059l0,0l0,0
|
||||
c-1.222-0.007,0.32,0.026-0.771,0.005c-0.642-0.013-0.683-0.005-0.683-0.005c-0.299,0-3.034,0.173-3.318,0.207
|
||||
c-1.016,0.12-1.937,0.275-2.726,0.429c-0.747,0.144-1.375,0.298-1.854,0.421C7.507,25.42,7.46,24.444,7.41,24.165
|
||||
C7.356,23.86,7,23.206,5.979,23.728c-1.149,0.646-1.72,0.676-3.86,1.027c0.53,0.421,2.228,1.553,2.228,1.553L3.539,28.48
|
||||
c0,0,1.546-0.252,2.293-0.466c0.169,0.519,0.207,0.837,0.373,1.339c0.272,0.903,1.049,1.083,1.349,1.067
|
||||
c0.28-0.015,0.453-0.047,0.684-0.099c0.462-0.104,0.897-0.207,1.641-0.382c1.489-0.351,3.545-0.751,5.967-0.735
|
||||
C18.297,29.221,18.861,29.055,22.614,29.94z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#47205E" d="M18.236,11.789h-0.633c-0.128,0-0.232-0.104-0.232-0.233v-0.546
|
||||
c0-0.128,0.104-0.233,0.232-0.233h0.633c0.128,0,0.232,0.104,0.232,0.233v0.546C18.469,11.685,18.364,11.789,18.236,11.789z
|
||||
M18.252,10.965h-0.663v0.636h0.663V10.965z M16.942,11.789h-0.677c-0.128,0-0.232-0.104-0.232-0.233v-0.546
|
||||
c0-0.128,0.104-0.233,0.232-0.233h0.677c0.114,0,0.212,0.084,0.229,0.196h-0.924v0.616h0.709v-0.221l-0.338,0
|
||||
c-0.021,0-0.097-0.005-0.146-0.067c-0.037-0.046-0.047-0.083-0.05-0.103h0.75v0.384C17.162,11.699,17.063,11.789,16.942,11.789z
|
||||
M15.703,11.369h0.17v0.17h-0.17V11.369z M15.703,11.021h0.17v0.17h-0.17V11.021z M15.288,11.787h-0.646
|
||||
c-0.126,0-0.23-0.096-0.242-0.219h0.885v-0.181l-0.644,0c-0.127,0-0.23-0.096-0.242-0.219v-0.151c0-0.134,0.108-0.243,0.243-0.243
|
||||
h0.628c0.126,0,0.229,0.096,0.242,0.219h-0.866v0.175h0.645c0.126,0,0.23,0.096,0.241,0.219v0.157
|
||||
C15.531,11.679,15.422,11.787,15.288,11.787z M13.968,11.787h-0.616c-0.135,0-0.244-0.108-0.244-0.243v-0.526
|
||||
c0-0.134,0.109-0.243,0.244-0.243h0.616c0.124,0,0.227,0.093,0.241,0.214V11h-0.831v0.557h0.831v0.012
|
||||
C14.197,11.692,14.093,11.787,13.968,11.787z"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D4D2C9" d="M5.479,23.934c0.482-0.278,0.868-0.427,1.235-0.363
|
||||
s0.542,0.509,0.542,0.509l0.385,1.693l-1.217,0.235c0,0-1.057-0.178-1.199-0.52c-0.143-0.342-0.285-0.513-0.057-0.684
|
||||
c0.228-0.171,0.398-0.171,0.398-0.171L5.479,23.934z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D4D2C9" d="M24.656,25.857l0.385-1.692c0,0,0.176-0.445,0.543-0.509
|
||||
c0.366-0.064,0.752,0.085,1.235,0.363c0.482,0.278,0.502,0.278,0.676,0.321c0.174,0.043,0.637,0.363,0.54,0.684
|
||||
c-0.096,0.321-0.868,3.164-0.868,3.164l-0.587-0.064l0.557-2.437l-1.264,0.406L24.656,25.857z"/>
|
||||
<path fill="#191818" d="M30.426,24.9c-0.453,0.36-1.722,1.214-2.119,1.481l0.754,2.031c0.022,0.06,0.014,0.127-0.021,0.178
|
||||
c-0.036,0.051-0.093,0.076-0.15,0.067c-0.06-0.01-1.386-0.227-2.165-0.43c-0.056,0.186-0.097,0.349-0.136,0.507
|
||||
c-0.052,0.207-0.104,0.422-0.19,0.681c-0.281,0.935-1.052,1.185-1.463,1.185c-0.016,0-0.031,0-0.045-0.001
|
||||
c-0.28-0.015-0.459-0.046-0.708-0.102c-0.479-0.108-0.94-0.217-1.643-0.382c-0.954-0.225-1.703-0.381-2.325-0.49
|
||||
c-1.778,1.089-3.381,1.582-4.305,1.897c-0.847-0.323-2.352-0.801-4.052-1.812c-0.767,0.128-1.438,0.275-1.987,0.405
|
||||
c-0.701,0.166-1.162,0.274-1.642,0.382c-0.25,0.056-0.428,0.087-0.708,0.102c-0.015,0.001-0.029,0.001-0.045,0.001
|
||||
c-0.411,0-1.182-0.251-1.465-1.189c-0.084-0.255-0.138-0.47-0.188-0.677c-0.04-0.158-0.08-0.321-0.136-0.507
|
||||
c-0.78,0.204-2.105,0.42-2.165,0.43c-0.058,0.01-0.115-0.016-0.15-0.067c-0.036-0.051-0.044-0.119-0.022-0.178l0.755-2.031
|
||||
C3.706,26.114,2.438,25.26,1.984,24.9c-0.054-0.042-0.079-0.117-0.063-0.187c0.016-0.071,0.068-0.125,0.134-0.135
|
||||
c0.252-0.042,0.483-0.079,0.696-0.112c1.589-0.255,2.124-0.34,3.114-0.897c0.021-0.011,0.042-0.019,0.063-0.029
|
||||
c-1.983-3.522-3.421-8.651-3.333-16.204c4.007-0.843,4.77-4.133,4.523-5.881c2.461-0.27,5.697-0.711,8.687-0.711
|
||||
c3.096,0,6.406,0.342,8.934,0.62c-0.146,2.379,0.901,4.995,4.458,5.949c0.089,7.437-1.274,12.536-3.186,16.065
|
||||
c0.165,0.031,0.341,0.092,0.527,0.188c0.996,0.56,1.531,0.645,3.12,0.9c0.213,0.034,0.443,0.071,0.696,0.112
|
||||
c0.065,0.011,0.118,0.064,0.133,0.135C30.504,24.783,30.479,24.857,30.426,24.9z M26.194,21.778l-0.87-0.416
|
||||
c-0.383,0.844-0.813,1.633-1.288,2.368l0.823,0.501l0.021-0.082c0-0.006,0.001-0.013,0.002-0.019c0.008-0.046,0.022-0.1,0.043-0.157
|
||||
c0.063-0.171,0.188-0.371,0.396-0.497C25.627,22.949,25.919,22.385,26.194,21.778z M25.063,24.597
|
||||
c-0.053,0.235-0.231,0.993-0.231,0.993c0.159,0.041,0.302,0.079,0.429,0.112c0.284,0.075,0.509,0.134,0.584,0.14
|
||||
c0.031,0.003,0.061,0.005,0.092,0.005c0.532,0,1.221-0.381,1.248-0.69c0.012-0.134-0.021-0.191-0.047-0.223
|
||||
c-0.083-0.101-0.289-0.152-0.613-0.152c-0.183,0-0.407,0.016-0.706,0.049c-0.222,0.025-0.467-0.042-0.65-0.161
|
||||
C25.178,24.692,25.052,24.573,25.063,24.597z M25.604,7.411c-1.828-1.591-2.337-3.456-2.515-4.428
|
||||
c-2.086-0.21-4.739-0.641-7.278-0.641c-2.363,0-4.952,0.243-7.138,0.47C8.588,3.782,8.282,4.898,7.795,5.734
|
||||
c-0.573,0.984-1.63,2.295-3.489,2.873c0.074,5.116,0.82,9.039,1.989,11.906l0.063,0.129c0.809,1.904,1.733,3.449,2.772,4.589
|
||||
c0.019-0.003,0.326-0.093,0.346-0.097c0.789-0.154,1.71-0.309,2.726-0.429c0.284-0.034,3.02-0.207,3.318-0.207
|
||||
c0,0,0.041-0.008,0.683,0.005c1.091,0.021-0.451-0.011,0.771-0.005c0.186,0,1.528,0.046,1.726,0.059
|
||||
c0.554,0.036,1.086,0.087,1.594,0.147c0.799,0.095,1.728,0.256,2.391,0.376c3.225-3.61,4.728-9.258,4.817-16.51
|
||||
c-0.619-0.29-1.32-0.69-1.774-1.055L25.604,7.411z M7.527,24.28l0.086,0.835c0.1,0.133,0.199,0.263,0.3,0.39
|
||||
c0.299-0.074,0.639-0.154,1.018-0.234c-0.369-0.437-0.731-0.913-1.081-1.437l-0.343,0.21c0.009,0.03,0.016,0.059,0.021,0.085
|
||||
C7.536,24.181,7.536,24.231,7.527,24.28z M22.84,25.131c0.005,0.001,0.011,0.002,0.016,0.003c0.379,0.073,0.873,0.189,1.187,0.262
|
||||
c0.257-0.334,0.51-0.687,0.757-1.064l-0.826-0.503C23.664,24.3,23.188,24.707,22.84,25.131z M27.18,19.179l-0.91-0.312
|
||||
c-0.262,0.838-0.562,1.634-0.897,2.387l0.87,0.416C26.583,20.907,26.898,20.079,27.18,19.179z M27.912,16.301l-0.943-0.185
|
||||
c-0.185,0.921-0.405,1.802-0.664,2.64l0.91,0.311C27.479,18.209,27.714,17.291,27.912,16.301z M28.379,13.221l-0.954-0.088
|
||||
c-0.108,0.996-0.252,1.953-0.433,2.869l0.942,0.185C28.116,15.259,28.266,14.271,28.379,13.221z M28.588,10.347l-0.958-0.064
|
||||
c-0.036,0.941-0.101,1.854-0.192,2.733l0.953,0.088C28.482,12.229,28.55,11.313,28.588,10.347z M27.724,7.435l-0.408,0.868
|
||||
c0.103,0.046,0.207,0.092,0.314,0.134l0.037,0.015v0.04c-0.001,0.568-0.013,1.125-0.032,1.673l0.957,0.065
|
||||
c0.029-0.791,0.04-1.61,0.029-2.464C28.304,7.673,28.005,7.561,27.724,7.435z M25.897,6.171L25.188,6.81
|
||||
c0.537,0.561,1.205,1.059,2.021,1.443l0.408-0.868C26.934,7.063,26.362,6.647,25.897,6.171z M24.656,4.216l-0.88,0.347
|
||||
c0.284,0.748,0.72,1.495,1.332,2.16l0.706-0.637C25.288,5.524,24.904,4.883,24.656,4.216z M22.169,2.583
|
||||
c0.389,0.04,0.679,0.207,1.05,0.247l0.049,0.005l0.004,0.049c0.042,0.538,0.255,0.989,0.464,1.57l0.881-0.348
|
||||
c-0.263-0.75-0.44-1.549-0.43-2.275c-0.639-0.071-1.208-0.129-1.948-0.203L22.169,2.583z M19.08,2.32
|
||||
c1.012,0.067,2.015,0.156,2.972,0.251l0.07-0.956c-0.958-0.095-1.978-0.185-3.013-0.253L19.08,2.32z M15.874,2.202
|
||||
c1.013,0.002,2.055,0.044,3.089,0.111l0.03-0.958c-1.045-0.067-2.102-0.11-3.119-0.112V2.202z M12.67,1.367l0.03,0.958
|
||||
c1.032-0.074,2.065-0.122,3.056-0.124V1.243C14.751,1.245,13.705,1.293,12.67,1.367z M9.544,1.65l0.069,0.957
|
||||
c0.96-0.102,1.963-0.199,2.97-0.272l-0.03-0.959C11.519,1.45,10.498,1.549,9.544,1.65z M7.309,4.142L8.2,4.494
|
||||
c0.193-0.564,0.315-1.15,0.349-1.723l0.002-0.05l0.05-0.005c0.293-0.032,0.593-0.065,0.896-0.097L9.427,1.662
|
||||
C8.765,1.733,8.267,1.83,7.69,1.894C7.712,2.507,7.585,3.313,7.309,4.142z M6.108,6.177l0.713,0.643
|
||||
c0.359-0.386,0.632-0.777,0.834-1.125c0.219-0.375,0.399-0.778,0.542-1.191l-0.04,0.101L7.271,4.253
|
||||
C7.032,4.921,6.655,5.592,6.108,6.177z M4.282,7.439l0.409,0.869C5.566,7.935,6.234,7.428,6.74,6.904L6.028,6.262
|
||||
C5.566,6.734,4.989,7.142,4.282,7.439z M3.203,10.227l0.955-0.064c-0.02-0.519-0.029-1.05-0.031-1.597V8.522l0.04-0.014
|
||||
c0.144-0.047,0.281-0.1,0.416-0.155L4.174,7.485C3.864,7.607,3.531,7.71,3.172,7.787C3.162,8.632,3.174,9.444,3.203,10.227z
|
||||
M3.408,13.107l0.948-0.088c-0.092-0.867-0.156-1.78-0.193-2.74l-0.956,0.065C3.245,11.312,3.314,12.23,3.408,13.107z M3.873,16.191
|
||||
l0.931-0.183c-0.177-0.897-0.323-1.853-0.435-2.873L3.42,13.224C3.536,14.275,3.688,15.263,3.873,16.191z M4.605,19.071l0.891-0.305
|
||||
c-0.254-0.818-0.479-1.697-0.67-2.643l-0.931,0.182C4.097,17.295,4.337,18.214,4.605,19.071z M5.593,21.67l0.843-0.404
|
||||
c-0.329-0.73-0.634-1.524-0.906-2.387l-0.889,0.304C4.927,20.081,5.246,20.908,5.593,21.67z M6.463,23.366
|
||||
c0.055-0.007,0.109-0.012,0.161-0.012c0.476,0,0.731,0.313,0.843,0.578l0.318-0.195c-0.461-0.703-0.899-1.487-1.301-2.364
|
||||
l-0.844,0.404C5.901,22.342,6.177,22.87,6.463,23.366z M7.262,24.656c-0.185,0.127-0.439,0.199-0.67,0.174
|
||||
c-0.299-0.034-0.522-0.049-0.705-0.049c-0.324,0-0.531,0.051-0.613,0.152c-0.026,0.031-0.06,0.089-0.048,0.223
|
||||
c0.028,0.309,0.716,0.69,1.249,0.69c0.03,0,0.061-0.001,0.089-0.004c0.078-0.006,0.302-0.065,0.587-0.14
|
||||
c0.067-0.018,0.141-0.038,0.218-0.058C7.347,25.443,7.298,24.993,7.262,24.656z M5.608,27.88l-0.649-2.482
|
||||
c-0.029-0.066-0.048-0.135-0.054-0.207c-0.019-0.204,0.025-0.371,0.129-0.498c0.152-0.187,0.415-0.27,0.853-0.27
|
||||
c0.193,0,0.428,0.017,0.738,0.051c0.021,0.002,0.041,0.004,0.063,0.004c0.214,0,0.42-0.107,0.497-0.209
|
||||
c0.014-0.019,0.03-0.046,0.026-0.069c-0.004-0.02-0.093-0.488-0.587-0.488c-0.178,0-0.386,0.06-0.618,0.179
|
||||
c-1.032,0.58-1.625,0.675-3.209,0.929c-0.091,0.015-0.186,0.03-0.284,0.045c0.689,0.499,1.861,1.281,1.876,1.29
|
||||
c0.068,0.045,0.096,0.139,0.065,0.221l-0.698,1.88C4.196,28.18,5.054,28.024,5.608,27.88z M13.289,29.832l0.196-0.339
|
||||
c-0.239,0.024-0.474,0.05-0.7,0.08C12.956,29.664,13.125,29.75,13.289,29.832z M15.851,29.869c-0.34-0.126-0.741-0.276-1.185-0.462
|
||||
c-0.355,0.017-0.702,0.041-1.037,0.071l-0.233,0.405c1.02,0.494,1.887,0.793,2.455,1.009V29.869z M18.44,29.925l-0.325-0.534
|
||||
c-0.269-0.01-0.531-0.012-0.807-0.011c-0.537,0.225-0.997,0.383-1.34,0.501v1.013C16.558,30.692,17.428,30.406,18.44,29.925z
|
||||
M19.298,29.486c-0.384-0.048-0.721-0.075-1.042-0.089l0.291,0.478C18.79,29.757,19.041,29.627,19.298,29.486z M26.987,25.885
|
||||
c-0.323,0.202-0.736,0.318-1.052,0.318c-0.04,0-0.079-0.002-0.116-0.005c-0.1-0.007-0.301-0.061-0.635-0.149
|
||||
c-0.505-0.133-1.268-0.335-2.236-0.521c-0.913-0.179-1.826-0.323-2.715-0.428c-0.538-0.063-1.072-0.113-1.586-0.147
|
||||
c-0.19-0.013-1.537-0.059-1.716-0.059c-0.129,0-0.228-0.001-0.299,0c-0.02,0.008-0.041,0.013-0.063,0.013
|
||||
c-0.027,0-0.136-0.002-0.413-0.007c-0.519-0.01-0.643-0.007-0.663-0.005c-0.006,0-0.011,0-0.016,0c-0.278,0-2.994,0.169-3.302,0.206
|
||||
c-0.889,0.105-1.802,0.249-2.714,0.428c-0.97,0.187-1.733,0.389-2.238,0.521c-0.334,0.088-0.535,0.142-0.637,0.149
|
||||
c-0.035,0.003-0.073,0.005-0.113,0.005c-0.326,0-0.757-0.125-1.084-0.339l0.533,2.052c0.008,0.011,0.014,0.024,0.019,0.038
|
||||
c0.086,0.264,0.139,0.478,0.19,0.685c0.052,0.209,0.102,0.408,0.183,0.653c0.227,0.753,0.857,0.951,1.16,0.951
|
||||
c0.01,0,0.02,0,0.029-0.001c0.261-0.014,0.42-0.042,0.659-0.096c0.479-0.107,0.938-0.216,1.639-0.381
|
||||
c1.373-0.324,3.5-0.759,6.002-0.739c0.373,0.002,0.702,0,1.006-0.001c0.177-0.001,0.345-0.002,0.508-0.002
|
||||
c1.332,0,2.353,0.05,5.288,0.742c0.701,0.166,1.161,0.274,1.64,0.381c0.238,0.054,0.397,0.082,0.659,0.096
|
||||
c0.009,0.001,0.019,0.001,0.029,0.001c0.302,0,0.933-0.198,1.158-0.945c0.083-0.251,0.132-0.449,0.184-0.659
|
||||
c0.047-0.185,0.095-0.377,0.166-0.604L26.987,25.885z M29.896,24.864c-0.098-0.016-0.192-0.031-0.283-0.045
|
||||
c-1.584-0.254-2.177-0.349-3.215-0.932c-0.227-0.116-0.435-0.176-0.612-0.176c-0.494,0-0.583,0.468-0.587,0.488
|
||||
c-0.004,0.023,0.012,0.05,0.026,0.069c0.076,0.103,0.283,0.209,0.497,0.209c0.021,0,0.042-0.001,0.063-0.004
|
||||
c0.311-0.034,0.545-0.051,0.738-0.051c0.438,0,0.7,0.083,0.853,0.27c0.104,0.126,0.147,0.294,0.129,0.498
|
||||
c-0.007,0.076-0.027,0.15-0.06,0.219l-0.637,2.473c0.555,0.144,1.407,0.298,1.846,0.373l-0.699-1.88
|
||||
c-0.03-0.082-0.002-0.176,0.066-0.221C28.035,26.145,29.207,25.363,29.896,24.864z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#47205E" d="M13.221,6.39c-0.095-0.136-0.18-0.275-0.274-0.411
|
||||
c0.085,0.397,0.207,0.796,0.308,1.19c0.045,0.014,0.057,0.022,0.083,0.058c0.009-0.003,0.018-0.007,0.026-0.011h0.019
|
||||
c-0.025-0.098,0.112,0.063,0.148,0.169c0.015,0.014,0.125,0.067,0.14,0.081c0.018-0.06,0.012-0.164,0.091-0.178
|
||||
c0.043-0.056-0.005-0.106,0.005-0.134C13.621,6.864,13.393,6.644,13.221,6.39z M13.958,7.339c0.016,0.014,0.026,0.026,0.05,0.03
|
||||
c0.018,0.007,0.029-0.007,0.045-0.015c0.006-0.018,0.011-0.036,0.017-0.054c-0.01-0.064-0.039-0.095-0.089-0.095
|
||||
c-0.01,0.006-0.019,0.013-0.027,0.02C13.939,7.264,13.941,7.293,13.958,7.339z M13.209,7.161c-0.082-0.4-0.32-0.899-0.318-1.327
|
||||
c0.006-0.003,0.012-0.007,0.018-0.01c0.098,0.15,0.272,0.42,0.33,0.481l0.58,0.795c0.066-0.041,0.049-0.072,0.099-0.115
|
||||
c0.154-0.135,0.374-0.063,0.535,0c0.033-0.418,0.065-0.837,0.099-1.256c0.029-0.211,0.067-0.468,0.125-0.523
|
||||
c0.136,0.063,0.135,0.24,0.188,0.397l0.384,1.235c0.029,0.003,0.06,0.007,0.089,0.01l0.009-0.01
|
||||
c-0.059-0.539-0.248-0.877-0.401-1.306c-0.03-0.084-0.082-0.278-0.135-0.375c-0.027-0.051-0.08-0.075-0.138-0.073
|
||||
c-0.051,0.002-0.057,0.047-0.081,0.103c-0.146,0.321-0.17,1.333-0.191,1.65c-0.032-0.011-0.065-0.021-0.098-0.031
|
||||
c-0.012-0.06-0.026-0.101-0.038-0.16c-0.004-0.031-0.021-0.056-0.042-0.04c-0.019,0.052-0.031,0.123-0.045,0.188
|
||||
c-0.054,0.003-0.107,0.007-0.161,0.011c-0.019-0.06-0.047-0.142-0.089-0.178c-0.006,0.004-0.012,0.007-0.018,0.011
|
||||
c-0.006,0.073-0.008,0.141-0.002,0.204c-0.015,0.028-0.019,0.03-0.043,0.047c-0.012,0.014-0.023,0.028-0.035,0.042
|
||||
c-0.176-0.382-0.457-0.645-0.672-0.981c-0.069-0.108-0.14-0.323-0.311-0.275c-0.027,0.015-0.029,0.014-0.045,0.042
|
||||
c-0.043,0.074,0.012,0.327,0.036,0.418c0.099,0.345,0.196,0.69,0.295,1.036C13.158,7.171,13.183,7.165,13.209,7.161z M15.06,6.986
|
||||
c0.016,0.03,0.017,0.026,0.044,0.042c0.015-0.051,0.03-0.076,0.063-0.104c-0.014-0.152-0.076-0.277-0.116-0.397
|
||||
c-0.096-0.287-0.14-0.554-0.23-0.824c-0.034-0.104-0.072-0.295-0.129-0.387c-0.109,0.455-0.101,1.187-0.149,1.682
|
||||
c0.032,0.028,0.065,0.056,0.098,0.084c0.019-0.003,0.142,0.066,0.16,0.063C14.82,6.901,14.992,6.871,15.06,6.986z M14.935,7.588
|
||||
c0.009-0.005,0.019-0.01,0.027-0.015c0.013-0.028,0.017-0.043,0.011-0.087c-0.019-0.02-0.024-0.034-0.059-0.034
|
||||
c-0.022,0.017-0.047,0.048-0.024,0.092C14.9,7.571,14.914,7.578,14.935,7.588z M14.508,7.225c0.018,0.058,0.029,0.085,0.078,0.095
|
||||
c0.026-0.017,0.042-0.024,0.051-0.065c0.02-0.071-0.034-0.124-0.081-0.121C14.527,7.162,14.518,7.174,14.508,7.225z M13.312,7.275
|
||||
c-0.009,0.008-0.017,0.017-0.025,0.025c-0.003,0.022-0.009,0.063,0.007,0.094c0.014,0.036,0.036,0.055,0.069,0.059
|
||||
c0.013-0.013,0.027-0.026,0.04-0.039c0.003-0.036,0.006-0.07-0.017-0.099C13.37,7.283,13.347,7.273,13.312,7.275z M17.78,9.266
|
||||
c0.048,0.036,0.077-0.025,0.123-0.031l0.047,0.023c0.004-0.061,0.008-0.122,0.013-0.183c-0.002-0.001-0.003-0.002-0.004-0.004
|
||||
c-0.014,0.005-0.026,0.01-0.039,0.016c-0.071-0.013-0.092-0.11-0.166-0.12c-0.018,0.062,0.027,0.132,0.057,0.167
|
||||
c-0.019,0.038-0.037,0.059-0.034,0.125C17.777,9.26,17.779,9.263,17.78,9.266z M18.025,9.339c0.009-0.001,0.018-0.002,0.027-0.004
|
||||
c0.005-0.01,0.01-0.021,0.016-0.031c0.007-0.019,0-0.039-0.005-0.055c-0.012-0.01-0.019-0.016-0.037-0.02
|
||||
c-0.006,0.002-0.011,0.005-0.017,0.007c-0.006,0.019-0.013,0.037-0.019,0.055c0.003,0.01,0.007,0.021,0.011,0.031
|
||||
C18.01,9.329,18.018,9.334,18.025,9.339z M12.846,6.85c-0.037,0.106-0.005,0.243,0.116,0.23l0.018-0.053
|
||||
C12.964,6.975,12.893,6.868,12.846,6.85z M18.043,8.839c-0.273-0.035-0.547-0.069-0.819-0.104
|
||||
c-0.119-0.012-0.239-0.023-0.359-0.035c-0.138-0.026-0.254,0.001-0.392-0.023c-0.296-0.004-0.593-0.008-0.89-0.012
|
||||
c-0.231,0.005-0.464,0.01-0.696,0.015c-0.207,0.016-0.414,0.031-0.621,0.046c-0.295,0.036-0.59,0.072-0.886,0.108
|
||||
c-0.009,0.018-0.014,0.032-0.015,0.062c0.006,0.007,0.012,0.013,0.017,0.02c0.136,0.032,0.292-0.043,0.433-0.039
|
||||
c0.07-0.008,0.141-0.016,0.21-0.023l0.167-0.007c0.138-0.027,0.271-0.025,0.402-0.05c0.188-0.008,0.377-0.016,0.564-0.023
|
||||
c0.091-0.001,0.182-0.002,0.272-0.003c0.142,0,0.304-0.012,0.429,0.011h0.289c0.164,0.031,0.361,0.019,0.535,0.031v0.003
|
||||
c-0.028,0.029-0.225,0.128-0.275,0.108c-0.08-0.031-0.146-0.103-0.25-0.104c-0.002,0.004-0.004,0.008-0.007,0.012
|
||||
c-0.021,0.07,0.078,0.12,0.104,0.155c-0.029,0.034-0.063,0.046-0.063,0.116c0.007,0.007,0.014,0.015,0.021,0.023
|
||||
c0.077,0.019,0.142-0.072,0.223-0.05c0.075,0.02,0.219,0.128,0.298,0.066c0.005-0.021,0.009-0.043-0.001-0.062
|
||||
c-0.018-0.042-0.082-0.067-0.128-0.074V8.99c0.06-0.025,0.127-0.077,0.151-0.143c-0.005-0.012-0.009-0.023-0.014-0.035
|
||||
c0.089,0,0.192,0.026,0.266,0.023c0.202-0.008,0.445,0.003,0.646,0.042c0.058,0.004,0.115,0.008,0.173,0.011
|
||||
c0.066,0.019,0.13,0.061,0.2,0.035C18.039,8.903,18.041,8.872,18.043,8.839z M13.705,7.688c-0.003,0.033-0.006,0.06,0.012,0.09
|
||||
c0.014,0.029,0.028,0.031,0.051,0.047c0.032-0.005,0.041-0.022,0.059-0.042l0.003-0.028c-0.007-0.065-0.04-0.1-0.089-0.1
|
||||
C13.729,7.666,13.717,7.677,13.705,7.688z M14.863,4.663c0.021-0.047,0.004-0.104-0.022-0.136c-0.038-0.065-0.071-0.105-0.17-0.1
|
||||
c-0.023,0.011-0.069,0.026-0.094,0.037c-0.062,0.035-0.064,0.081-0.087,0.16c-0.002,0.073,0.049,0.141,0.101,0.175
|
||||
C14.734,4.846,14.813,4.789,14.863,4.663z M14.836,4.757c-0.009,0.011-0.018,0.021-0.026,0.032V4.83h0.071
|
||||
c0.024-0.017,0.021-0.015,0.036-0.042C14.894,4.76,14.887,4.758,14.836,4.757z M12.798,5.606c0.079-0.032,0.135,0.052,0.19,0.021
|
||||
c0.01-0.007,0.027-0.007,0.027-0.033c-0.022-0.117-0.124-0.124-0.25-0.115c-0.027,0.01-0.054,0.021-0.08,0.031
|
||||
c-0.035,0.054-0.041,0.085-0.022,0.127c-0.024-0.007-0.031-0.021-0.059-0.002c-0.022,0.026-0.023,0.049-0.016,0.081
|
||||
c0.008,0.043,0.064,0.064,0.105,0.024c0.017-0.009,0.009-0.042-0.005-0.075C12.766,5.663,12.76,5.622,12.798,5.606z M17.713,8.955
|
||||
c-0.003-0.005-0.007-0.01-0.01-0.016c-0.039-0.006-0.128,0.075-0.175,0.097c-0.055-0.031-0.093-0.112-0.159-0.124
|
||||
c-0.021,0.076,0.039,0.11,0.054,0.159c0.013,0.044-0.058,0.079-0.024,0.14c0.006,0.011,0.01,0.012,0.018,0.02
|
||||
c0.038-0.016,0.077-0.031,0.115-0.046c0.058,0.017,0.089,0.094,0.162,0.101c0.047-0.082-0.023-0.131-0.066-0.167V9.114
|
||||
C17.665,9.081,17.715,9.032,17.713,8.955z M15.551,6.599c-0.019-0.073-0.036-0.146-0.054-0.22
|
||||
c-0.006-0.007-0.013-0.014-0.018-0.021h-0.027c-0.028,0.068-0.036,0.126-0.026,0.22c0.032,0.014,0.065,0.028,0.098,0.042
|
||||
C15.532,6.612,15.542,6.605,15.551,6.599z M14.471,4.977c-0.003,0.021-0.006,0.042-0.01,0.063
|
||||
c0.013,0.007,0.024,0.014,0.036,0.021c0.091,0.04,0.105-0.071,0.205-0.042c0.036,0.01,0.062,0.056,0.125,0.042
|
||||
c0.003-0.003,0.006-0.007,0.009-0.011c0.019-0.014,0.036-0.028,0.054-0.042V4.956c-0.058-0.071-0.123-0.1-0.25-0.094
|
||||
C14.564,4.899,14.505,4.891,14.471,4.977z M12.719,5.419c0.076,0.007,0.154-0.027,0.172-0.097c0.013-0.085-0.024-0.186-0.09-0.209
|
||||
c-0.029-0.007-0.059-0.014-0.089-0.021c-0.063-0.007-0.104,0.042-0.134,0.125c-0.009,0.048-0.01,0.088,0.009,0.125
|
||||
C12.612,5.396,12.668,5.397,12.719,5.419z M12.661,5.505c0.006,0,0.019-0.025,0.022-0.032c0-0.017-0.007-0.019-0.007-0.037
|
||||
c-0.007-0.007-0.013-0.014-0.019-0.021h-0.054c-0.023,0.035-0.038,0.055-0.009,0.084C12.618,5.521,12.651,5.51,12.661,5.505z
|
||||
M13.042,5.678c0.015,0.007,0.025,0.022,0.04,0.03c0.03,0.011,0.051-0.007,0.065-0.042c0.008-0.022,0.011-0.052,0-0.08
|
||||
c-0.018-0.033-0.021-0.031-0.063-0.041c-0.034-0.001-0.05,0.042-0.049,0.091c0,0.011,0.006,0.021,0.006,0.031V5.678z
|
||||
M12.962,5.437c0.019-0.019,0.007,0,0.018-0.031v-0.01c-0.021-0.007-0.041-0.014-0.063-0.021
|
||||
c-0.009,0.014-0.018,0.028-0.026,0.042C12.912,5.444,12.925,5.454,12.962,5.437z M14.551,4.841V4.789
|
||||
c-0.027-0.004-0.054-0.007-0.08-0.011c-0.012,0.011-0.024,0.021-0.036,0.032v0.042c0.03,0.007,0.06,0.014,0.089,0.021
|
||||
C14.533,4.861,14.542,4.851,14.551,4.841z M15.254,6.981l0.006,0.051c0.011,0.036,0.028,0.056,0.06,0.062
|
||||
c0.078,0.035,0.104-0.186-0.019-0.175C15.277,6.939,15.267,6.945,15.254,6.981z M16.237,7.038
|
||||
c0.002-0.073-0.024-0.113-0.077-0.114c-0.015,0.012-0.028,0.024-0.042,0.037c-0.017,0.08-0.005,0.125,0.044,0.153
|
||||
c0.015-0.003,0.029-0.006,0.045-0.01C16.217,7.082,16.228,7.06,16.237,7.038z M18.472,7.225c-0.148,0.129-0.31,0.35-0.387,0.576
|
||||
c-0.004,0.003-0.008,0.006-0.012,0.009c-0.009-0.024,0.009-0.094,0.005-0.132c-0.009-0.092-0.043-0.167-0.055-0.246h-0.011
|
||||
c-0.099,0.099-0.094,0.33-0.156,0.484c0,0.003-0.001,0.006-0.001,0.009c-0.04-0.021-0.073-0.047-0.137-0.046l-0.035,0.06
|
||||
c-0.023,0.003-0.018-0.014-0.035-0.023c-0.055-0.027-0.143-0.022-0.205-0.004c-0.002-0.003-0.004-0.006-0.006-0.01
|
||||
c0.044-0.079,0.269-0.404,0.258-0.51c-0.006-0.01-0.001-0.005-0.014-0.01c-0.06-0.011-0.276,0.2-0.33,0.252
|
||||
c-0.027,0.027-0.044,0.08-0.079,0.095c0.015-0.088,0.043-0.17,0.064-0.268c0.021-0.097-0.017-0.458-0.047-0.481
|
||||
c-0.18,0.149-0.329,0.423-0.401,0.712c-0.004,0.003-0.008,0.006-0.012,0.01c-0.04-0.146-0.072-0.34-0.186-0.393h-0.004
|
||||
c-0.049,0.085-0.062,0.236-0.066,0.378c-0.071,0.013-0.176,0.013-0.248,0.015c-0.001-0.003-0.002-0.006-0.003-0.01
|
||||
c0.052-0.109,0.189-0.404,0.158-0.604c-0.005-0.019-0.008-0.022-0.021-0.031c-0.037-0.021-0.098,0.021-0.126,0.041
|
||||
c-0.078,0.055-0.272,0.239-0.31,0.339c-0.01,0.006-0.006,0.004-0.015,0.005c-0.037-0.329-0.063-0.498-0.184-0.723
|
||||
c-0.031-0.059-0.063-0.166-0.119-0.188c-0.058-0.023-0.12,0.11-0.143,0.151c-0.146,0.265-0.161,0.368-0.188,0.78h-0.003
|
||||
c-0.101-0.124-0.281-0.412-0.459-0.41c-0.005,0.009-0.011,0.017-0.017,0.025c-0.022,0.228,0.085,0.478,0.155,0.61v0.015
|
||||
c-0.063-0.001-0.188,0.001-0.247-0.015c-0.02-0.131-0.019-0.269-0.063-0.374c-0.002-0.001-0.005-0.003-0.007-0.005
|
||||
c-0.074,0.024-0.184,0.267-0.183,0.388c-0.002,0.001-0.005,0.003-0.007,0.005c-0.003-0.002-0.005-0.003-0.007-0.005
|
||||
c-0.045-0.166-0.111-0.338-0.192-0.463c-0.068-0.083-0.138-0.168-0.207-0.254c-0.006,0.001-0.012,0.003-0.018,0.005
|
||||
c-0.02,0.275-0.071,0.433,0.031,0.735C14.201,7.725,14.2,7.728,14.199,7.73c-0.032-0.015-0.042-0.06-0.068-0.085
|
||||
c-0.072-0.071-0.259-0.266-0.352-0.262c-0.001,0.003-0.002,0.007-0.002,0.01c0.035,0.208,0.179,0.361,0.257,0.505
|
||||
c0,0.004,0.001,0.009,0.001,0.014c-0.093-0.014-0.174-0.01-0.236,0.032c-0.014-0.021-0.028-0.043-0.042-0.064
|
||||
c-0.061,0-0.104,0.042-0.141,0.042c-0.039-0.143-0.073-0.398-0.148-0.479c-0.008-0.01-0.002-0.005-0.016-0.009
|
||||
c-0.033,0.106-0.074,0.206-0.047,0.377h-0.004c-0.034-0.03-0.053-0.109-0.078-0.156c-0.061-0.11-0.234-0.391-0.327-0.43
|
||||
c0.015,0.098,0.029,0.195,0.043,0.291c0.021,0.066,0.04,0.131,0.061,0.196c-0.02-0.018-0.039-0.035-0.058-0.052
|
||||
c-0.018,0.047,0.16,0.403,0.188,0.445c0,0.001,0,0.003,0.001,0.004c-0.002,0.001-0.004,0.003-0.007,0.005
|
||||
c-0.015-0.003-0.011-0.007-0.015,0.013c0.029,0.049,0.07,0.125,0.116,0.182c0.029,0.037,0.059,0.311,0.038,0.315
|
||||
c-0.044,0.164,0.196,0.1,0.28,0.08c0.223-0.052,0.447-0.039,0.69-0.088c0.079-0.016,0.165,0.002,0.255-0.017
|
||||
c0.089-0.005,0.177-0.011,0.266-0.017c0.17-0.036,0.385-0.032,0.573-0.021c0.063,0.003,0.167,0.018,0.24,0.008
|
||||
c0.078-0.01,0.205,0.011,0.284-0.004h0.371c0.107,0.008,0.215,0.017,0.322,0.025c0.126,0.024,0.291,0,0.414,0.025
|
||||
c0.205,0.024,0.41,0.048,0.614,0.072c0.098,0.021,0.233,0.063,0.326,0.033c0.016-0.024,0.027-0.05,0.033-0.092
|
||||
C18.019,8.62,18.086,8.367,18.1,8.356C18.164,8.3,18.221,8.2,18.266,8.123c-0.002-0.005-0.005-0.009-0.008-0.014
|
||||
c-0.005,0.001-0.01,0.003-0.015,0.005c0.029-0.096,0.201-0.347,0.192-0.445c0.001-0.003,0.001-0.006,0.002-0.009
|
||||
c-0.014,0.009-0.026,0.019-0.04,0.028c-0.007,0.008-0.015,0.016-0.021,0.024h-0.003c0.034-0.137,0.076-0.295,0.104-0.482
|
||||
C18.476,7.229,18.474,7.227,18.472,7.225z M18.045,9.06c-0.01,0.01-0.017,0.012-0.022,0.027c-0.001,0.014-0.001,0.028-0.002,0.042
|
||||
c0.007,0.006,0.014,0.013,0.021,0.02c0.011,0.001,0.022,0.002,0.033,0.004c0.012-0.014,0.019-0.022,0.025-0.043
|
||||
c-0.007-0.022-0.01-0.036-0.027-0.046C18.063,9.063,18.055,9.061,18.045,9.06z M17.411,9.531
|
||||
c-0.348-0.069-0.723-0.046-1.088-0.086c-0.131-0.001-0.261-0.003-0.392-0.004c-0.194-0.029-0.391,0.025-0.599,0
|
||||
c-0.24,0.01-0.481,0.021-0.723,0.031c-0.215,0.021-0.431,0.042-0.646,0.063c-0.192,0.026-0.385,0.052-0.577,0.079
|
||||
c-0.013,0.035,0.008,0.064,0.015,0.102c0.661,0.102,1.367,0.11,2.112,0.11c0.169,0,0.347,0.008,0.514-0.004
|
||||
c0.109-0.003,0.22-0.005,0.329-0.008c0.13-0.023,0.267,0.002,0.386-0.02c0.087-0.001,0.174-0.002,0.262-0.004
|
||||
c0.231-0.022,0.464-0.044,0.696-0.066c0.101-0.008,0.2-0.016,0.301-0.024c0.024-0.014,0.044-0.046,0.076-0.059
|
||||
c0.003-0.007,0.006-0.014,0.009-0.02c-0.051-0.042-0.158-0.022-0.229-0.035C17.709,9.567,17.56,9.549,17.411,9.531z M16.837,7.339
|
||||
c0.037,0.008,0.051-0.006,0.074-0.03c0.008-0.032,0.011-0.063,0.011-0.1c-0.02-0.023-0.026-0.041-0.059-0.05
|
||||
c-0.036,0.026-0.041,0.035-0.063,0.08C16.799,7.295,16.813,7.317,16.837,7.339z M17.691,7.669
|
||||
c-0.006,0.016-0.011,0.032-0.017,0.047c0.005,0.038,0.008,0.061,0.033,0.076c0.018,0.012,0.039,0,0.051-0.014
|
||||
c0.015-0.01,0.021-0.028,0.03-0.047c0.006-0.048-0.004-0.07-0.023-0.09c-0.014-0.001-0.025-0.003-0.039-0.005
|
||||
C17.715,7.647,17.703,7.658,17.691,7.669z M16.491,7.506c-0.002,0.033-0.001,0.051,0.008,0.067
|
||||
c0.011,0.026,0.036,0.042,0.066,0.029c0.027-0.014,0.038-0.034,0.04-0.087c-0.02-0.03-0.037-0.058-0.08-0.059
|
||||
C16.511,7.474,16.502,7.483,16.491,7.506z M18.107,7.314c-0.023,0.028-0.021,0.063-0.018,0.099l0.041,0.04
|
||||
c0.033-0.004,0.055-0.023,0.069-0.059c0.015-0.031,0.01-0.071,0.006-0.094c-0.008-0.008-0.017-0.017-0.024-0.025
|
||||
C18.146,7.273,18.123,7.283,18.107,7.314z M17.586,7.275c-0.008-0.022-0.015-0.043-0.022-0.065l-0.05-0.01
|
||||
c-0.017,0.014-0.025,0.016-0.036,0.04c-0.015,0.02-0.021,0.062-0.013,0.085c0.007,0.027,0.02,0.033,0.039,0.044
|
||||
c0.016-0.005,0.032-0.01,0.048-0.015C17.566,7.331,17.578,7.313,17.586,7.275z M13.45,9.32c0.013-0.004,0.026-0.008,0.04-0.012
|
||||
c0.013-0.022,0.025-0.052,0.008-0.078c-0.008-0.016-0.021-0.021-0.042-0.023c-0.017,0.012-0.026,0.013-0.034,0.035
|
||||
c-0.01,0.019-0.006,0.042,0.005,0.055C13.433,9.309,13.439,9.313,13.45,9.32z M14.746,8.886c-0.007-0.018-0.008-0.022-0.026-0.027
|
||||
c-0.05,0.031-0.158,0.109-0.201,0.124c-0.061,0.021-0.198-0.081-0.252-0.1c-0.016,0.01-0.022,0.01-0.03,0.031
|
||||
c-0.016,0.082,0.106,0.101,0.125,0.159c-0.06,0.017-0.128,0.055-0.108,0.144c0.009,0.005,0.018,0.01,0.026,0.016
|
||||
c0.074,0.021,0.162-0.088,0.228-0.101c0.063-0.013,0.11,0.061,0.173,0.043c0.013-0.007,0.016-0.01,0.021-0.023
|
||||
c0.021-0.051-0.022-0.096-0.046-0.113V9.025C14.696,8.986,14.725,8.948,14.746,8.886z M15.381,8.847l-0.003-0.012
|
||||
c-0.104-0.021-0.205,0.127-0.293,0.104c-0.101-0.026-0.178-0.11-0.282-0.116c-0.009,0.009-0.018,0.018-0.026,0.027
|
||||
c0.006,0.085,0.104,0.117,0.151,0.158c-0.045,0.051-0.126,0.02-0.137,0.116c0.003,0.01,0.006,0.021,0.01,0.031
|
||||
c0.085,0.06,0.217-0.057,0.3-0.07c0.072-0.012,0.148,0.089,0.217,0.05c0.011-0.006,0.011-0.006,0.017-0.02
|
||||
c0.02-0.051-0.028-0.101-0.057-0.112V8.99C15.313,8.975,15.396,8.901,15.381,8.847z M14.144,8.928l-0.132,0.116
|
||||
c-0.059,0.02-0.124-0.075-0.172-0.097c-0.013,0.009-0.017,0.015-0.023,0.031c0.005,0.08,0.058,0.101,0.088,0.151
|
||||
c-0.04,0.05-0.08,0.043-0.08,0.147c0.007,0.008,0.014,0.016,0.021,0.023c0.059-0.025,0.114-0.061,0.158-0.105
|
||||
c0.047,0.009,0.069,0.043,0.119,0.047c0.038-0.06,0-0.096-0.015-0.151c0.029-0.044,0.06-0.08,0.06-0.159
|
||||
C14.158,8.931,14.151,8.929,14.144,8.928z M16.112,8.854V8.832c-0.006-0.004-0.012-0.008-0.017-0.012
|
||||
c-0.065-0.026-0.223,0.082-0.286,0.097c-0.07,0.017-0.272-0.104-0.349-0.127c-0.016,0.01-0.022,0.009-0.03,0.027
|
||||
c-0.013,0.049,0.118,0.142,0.159,0.151c0.004,0.005,0.007,0.01,0.011,0.015c-0.042,0.038-0.117,0.017-0.144,0.074
|
||||
c-0.011,0.014-0.013,0.037-0.003,0.054c0.017,0.039,0.07,0.035,0.113,0.023c0.081-0.023,0.162-0.046,0.243-0.07
|
||||
c0.057,0.01,0.189,0.089,0.236,0.054c0.011-0.007,0.012-0.011,0.017-0.023c-0.001-0.055-0.03-0.091-0.067-0.104
|
||||
c-0.001-0.002-0.002-0.005-0.003-0.008C16.027,8.931,16.081,8.914,16.112,8.854z M17.297,8.917
|
||||
c-0.014-0.12-0.205,0.066-0.275,0.054c-0.082-0.015-0.129-0.119-0.225-0.124c-0.004,0.004-0.007,0.007-0.01,0.011
|
||||
c0.003,0.07,0.05,0.121,0.088,0.151c0.001,0.004,0.001,0.008,0.001,0.012c-0.024,0.033-0.05,0.048-0.049,0.112
|
||||
c0.063,0.078,0.121-0.041,0.203-0.016c0.076,0.023,0.135,0.1,0.231,0.101c0.008-0.012,0.016-0.023,0.023-0.035
|
||||
c-0.001-0.097-0.067-0.094-0.116-0.132V9.048C17.221,9.009,17.266,8.979,17.297,8.917z M13.731,9.457
|
||||
c0.146-0.025,0.331-0.022,0.502-0.055c0.068-0.002,0.136-0.005,0.204-0.008c0.103-0.02,0.217-0.011,0.324-0.023
|
||||
c0.101-0.009,0.201-0.019,0.301-0.027h1.33c0.338,0.025,0.676,0.049,1.013,0.074c0.196,0.029,0.392,0.057,0.588,0.086
|
||||
c0.027-0.03,0.056-0.058,0.077-0.094V9.406c-0.019-0.006-0.038-0.013-0.057-0.02l0.003-0.023
|
||||
c-0.026-0.003-0.042-0.007-0.071-0.012c0.003,0.005,0.005,0.01,0.008,0.016c-0.008,0.007-0.175-0.004-0.197-0.011
|
||||
c-0.154-0.053-0.347-0.033-0.517-0.074c-0.121-0.03-0.278-0.028-0.428-0.051c-0.082-0.004-0.164-0.008-0.247-0.012h-0.26
|
||||
c-0.145-0.031-0.378-0.042-0.537-0.012c-0.097,0.018-0.231,0-0.301-0.016c-0.019,0.003-0.037,0.005-0.057,0.008
|
||||
c-0.049-0.002-0.098-0.005-0.146-0.008C15.242,9.209,15.203,9.2,15.17,9.207c-0.153,0.032-0.323,0.006-0.497,0.023
|
||||
c-0.154,0.015-0.285,0.032-0.428,0.063c-0.104,0.005-0.209,0.01-0.314,0.015c-0.073,0.021-0.166,0.034-0.244,0.051
|
||||
c-0.06,0.012-0.107,0.029-0.155,0.039c-0.06,0.013-0.093-0.038-0.153,0.023c0.007,0.034,0.005,0.052,0.024,0.07
|
||||
C13.51,9.515,13.629,9.474,13.731,9.457z M13.767,8.979c-0.046,0.027-0.103,0.075-0.136,0.12c-0.02-0.005-0.04-0.01-0.06-0.015
|
||||
c0.004,0.062,0.007,0.124,0.01,0.187c0.021-0.004,0.021-0.015,0.034-0.02c0.038-0.014,0.082,0.039,0.115,0.047
|
||||
c0.012-0.008,0.015-0.009,0.021-0.023c0.019-0.039-0.006-0.098-0.027-0.117c0.013-0.064,0.058-0.081,0.06-0.17
|
||||
C13.777,8.983,13.771,8.981,13.767,8.979z M13.478,9.098c-0.013-0.002-0.026-0.005-0.039-0.007
|
||||
c-0.02,0.014-0.027,0.018-0.041,0.039c0,0.006-0.001,0.013-0.001,0.02c0.012,0.015,0.021,0.023,0.036,0.035
|
||||
c0.034-0.002,0.043-0.019,0.055-0.047C13.484,9.125,13.48,9.111,13.478,9.098z M18.741,5.419c0.05-0.021,0.106-0.023,0.132-0.076
|
||||
c0.019-0.037,0.018-0.078,0.009-0.125c-0.03-0.083-0.071-0.132-0.135-0.125c-0.029,0.007-0.06,0.014-0.089,0.021
|
||||
c-0.065,0.023-0.103,0.124-0.089,0.209C18.587,5.392,18.665,5.426,18.741,5.419z M18.417,5.678v-0.01
|
||||
c0-0.011,0.006-0.021,0.006-0.032c0.002-0.049-0.015-0.092-0.049-0.091c-0.04,0.009-0.044,0.008-0.063,0.041
|
||||
c-0.011,0.028-0.007,0.058,0,0.08c0.015,0.035,0.036,0.053,0.065,0.042C18.393,5.7,18.402,5.685,18.417,5.678z M16.65,4.83V4.789
|
||||
c-0.01-0.011-0.019-0.021-0.027-0.032c-0.051,0.001-0.057,0.003-0.08,0.032c0.015,0.026,0.011,0.025,0.036,0.042H16.65z
|
||||
M16.909,4.841c0.009,0.01,0.018,0.021,0.026,0.031c0.03-0.007,0.06-0.014,0.09-0.021V4.81c-0.013-0.011-0.024-0.021-0.036-0.032
|
||||
c-0.026,0.003-0.054,0.007-0.08,0.011V4.841z M16.868,4.799c0.052-0.034,0.104-0.102,0.101-0.175
|
||||
c-0.022-0.079-0.025-0.125-0.087-0.16c-0.023-0.01-0.069-0.026-0.094-0.037c-0.098-0.005-0.131,0.034-0.169,0.1
|
||||
c-0.026,0.031-0.043,0.089-0.022,0.136C16.646,4.789,16.725,4.846,16.868,4.799z M16.819,4.861
|
||||
c-0.126-0.005-0.191,0.023-0.25,0.094v0.053c0.019,0.014,0.036,0.028,0.054,0.042c0.003,0.003,0.006,0.007,0.009,0.011
|
||||
c0.063,0.014,0.09-0.032,0.125-0.042c0.101-0.029,0.114,0.082,0.206,0.042c0.012-0.007,0.023-0.014,0.035-0.021l-0.009-0.063
|
||||
C16.954,4.891,16.896,4.899,16.819,4.861z M18.498,5.437c0.036,0.017,0.049,0.007,0.071-0.021
|
||||
c-0.009-0.014-0.019-0.028-0.027-0.042c-0.021,0.007-0.041,0.014-0.063,0.021v0.01C18.491,5.438,18.479,5.418,18.498,5.437z
|
||||
M18.797,5.638c0.019-0.042,0.012-0.073-0.022-0.127c-0.027-0.01-0.054-0.021-0.08-0.031c-0.126-0.009-0.229-0.001-0.25,0.115
|
||||
c0,0.026,0.018,0.026,0.026,0.033c0.056,0.031,0.111-0.053,0.19-0.021c0.039,0.015,0.033,0.057,0.108,0.059
|
||||
c-0.014,0.033-0.021,0.066-0.004,0.075c0.041,0.041,0.098,0.02,0.105-0.024c0.008-0.032,0.006-0.054-0.017-0.081
|
||||
C18.828,5.617,18.82,5.631,18.797,5.638z M18.801,5.416c-0.006,0.007-0.012,0.014-0.018,0.021c0,0.018-0.008,0.02-0.008,0.037
|
||||
c0.005,0.007,0.017,0.032,0.022,0.032c0.011,0.005,0.044,0.016,0.065-0.005c0.03-0.029,0.015-0.049-0.009-0.084H18.801z
|
||||
M18.613,5.678c-0.17-0.048-0.241,0.167-0.31,0.275c-0.216,0.336-0.496,0.599-0.672,0.981c-0.012-0.014-0.023-0.028-0.036-0.042
|
||||
c-0.023-0.017-0.027-0.019-0.042-0.047c0.005-0.063,0.004-0.131-0.002-0.204c-0.006-0.003-0.012-0.007-0.019-0.011
|
||||
c-0.041,0.036-0.069,0.118-0.089,0.178c-0.054-0.004-0.107-0.007-0.16-0.011c-0.014-0.066-0.027-0.136-0.045-0.188
|
||||
c-0.021-0.017-0.039,0.009-0.043,0.04c-0.012,0.059-0.025,0.1-0.037,0.16c-0.033,0.01-0.065,0.021-0.099,0.031
|
||||
c-0.021-0.316-0.046-1.329-0.19-1.65c-0.025-0.056-0.03-0.101-0.082-0.103c-0.058-0.002-0.109,0.021-0.138,0.073
|
||||
c-0.053,0.097-0.104,0.291-0.135,0.375c-0.152,0.429-0.342,0.767-0.401,1.306l0.009,0.01c0.03-0.003,0.06-0.007,0.09-0.01
|
||||
l0.384-1.235c0.053-0.157,0.051-0.335,0.188-0.397c0.057,0.055,0.095,0.312,0.125,0.523c0.032,0.418,0.065,0.837,0.098,1.256
|
||||
c0.162-0.063,0.382-0.135,0.536,0c0.049,0.043,0.032,0.074,0.098,0.115l0.58-0.795c0.059-0.062,0.233-0.331,0.33-0.481
|
||||
c0.006,0.003,0.013,0.007,0.019,0.01c0.001,0.427-0.236,0.926-0.319,1.327c0.026,0.003,0.051,0.01,0.078,0.013
|
||||
c0.098-0.346,0.196-0.691,0.295-1.036c0.023-0.091,0.079-0.345,0.035-0.418C18.643,5.692,18.642,5.692,18.613,5.678z
|
||||
M18.479,7.027c0.006,0.018,0.012,0.035,0.019,0.053c0.121,0.012,0.153-0.125,0.115-0.23C18.566,6.868,18.495,6.975,18.479,7.027z
|
||||
M16.639,5.701c-0.09,0.271-0.135,0.537-0.229,0.824c-0.04,0.12-0.103,0.246-0.116,0.397c0.033,0.029,0.048,0.053,0.063,0.104
|
||||
c0.027-0.015,0.028-0.011,0.045-0.042c0.066-0.115,0.239-0.084,0.26,0.157c0.018,0.003,0.142-0.066,0.159-0.063
|
||||
c0.033-0.028,0.065-0.056,0.099-0.084c-0.05-0.495-0.041-1.228-0.149-1.682C16.712,5.406,16.674,5.598,16.639,5.701z
|
||||
M16.034,6.578c0.01-0.093,0.001-0.151-0.026-0.22H15.98c-0.006,0.007-0.012,0.014-0.018,0.021
|
||||
c-0.018,0.073-0.036,0.146-0.054,0.22c0.009,0.007,0.018,0.014,0.026,0.021C15.969,6.605,16.001,6.591,16.034,6.578z M18.238,6.39
|
||||
c-0.172,0.254-0.4,0.475-0.544,0.764c0.009,0.028-0.038,0.078,0.004,0.134c0.079,0.015,0.074,0.119,0.091,0.178
|
||||
c0.016-0.014,0.125-0.067,0.14-0.081c0.037-0.105,0.175-0.267,0.149-0.169h0.018c0.009,0.003,0.019,0.007,0.027,0.011
|
||||
c0.025-0.035,0.037-0.044,0.082-0.058c0.102-0.394,0.223-0.793,0.309-1.19C18.418,6.115,18.334,6.253,18.238,6.39z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#878787" d="M22.252,25.024c1.458-1.706,3.202-5.01,3.908-8.258c0.545-2.507,0.913-6.499,0.885-7.781
|
||||
c-0.826-0.285-1.853-1.044-3.051-2.565c-0.812-1.029-1.312-3.135-1.312-3.135s-3.289-0.493-6.695-0.512V2.771
|
||||
c-0.034,0-0.067,0-0.101,0c-0.034,0-0.068,0-0.102,0v0.001C12.379,2.791,9.09,3.284,9.09,3.284S8.589,5.39,7.778,6.419
|
||||
C6.58,7.94,5.554,8.699,4.728,8.984c-0.028,1.283,0.34,5.275,0.885,7.781c0.713,3.278,2.619,6.702,4.102,8.365
|
||||
c0,0-0.399,0.071-0.668,0.11c-1.458-1.721-3.287-4.982-4.019-8.348c-0.557-2.558-0.929-6.569-0.898-7.921l0.009-0.417l0.395-0.136
|
||||
c0.569-0.196,1.513-0.767,2.776-2.37c0.596-0.757,1.067-2.353,1.198-2.903l0.094-0.394l0.4-0.06
|
||||
c0.125-0.019,2.896-0.429,6.006-0.506l-0.003-0.013h0.781l0.062,0h0.038h0.041l0.062,0l0.781,0.001l-0.003,0.012
|
||||
c3.109,0.077,5.88,0.488,6.006,0.506l0.4,0.06l0.093,0.394c0.131,0.55,0.602,2.144,1.199,2.903c1.264,1.603,2.207,2.174,2.776,2.37
|
||||
l0.394,0.136l0.01,0.417c0.03,1.353-0.342,5.363-0.898,7.922c-0.733,3.371-2.462,6.534-3.847,8.253L22.252,25.024z"/>
|
||||
<path fill="#191818" d="M15.887,2.771c-0.034,0-0.068,0-0.102,0v0.001C12.379,2.791,9.09,3.284,9.09,3.284S8.589,5.39,7.778,6.419
|
||||
C6.58,7.94,5.554,8.699,4.728,8.984c-0.028,1.283,0.34,5.275,0.885,7.781c0.713,3.31,2.654,6.698,4.123,8.418l0.153-0.021
|
||||
c-1.416-1.612-3.424-5.024-4.159-8.423c-0.518-2.381-0.896-6.271-0.884-7.671c0.938-0.352,1.957-1.218,3.026-2.576
|
||||
C8.61,5.557,9.085,3.791,9.187,3.391c0.521-0.074,3.531-0.482,6.6-0.5l0.094,0h0.006l0,0h0.007l0.094,0
|
||||
c3.069,0.017,6.078,0.425,6.6,0.5c0.101,0.4,0.576,2.166,1.313,3.103c1.071,1.358,2.089,2.225,3.027,2.576
|
||||
c0.013,1.4-0.366,5.29-0.884,7.671c-0.737,3.39-2.706,6.844-4.074,8.402l0.122,0.043c1.473-1.697,3.346-5.067,4.069-8.42
|
||||
c0.545-2.507,0.913-6.499,0.885-7.781c-0.826-0.285-1.853-1.044-3.051-2.565c-0.812-1.029-1.312-3.135-1.312-3.135
|
||||
s-3.289-0.493-6.695-0.512V2.771C15.953,2.771,15.92,2.771,15.887,2.771 M15.987,2.172l0.781,0.001l-0.003,0.012
|
||||
c3.109,0.077,5.88,0.488,6.006,0.506l0.4,0.06l0.093,0.394c0.131,0.55,0.602,2.144,1.199,2.903c1.264,1.603,2.207,2.174,2.776,2.37
|
||||
l0.394,0.136l0.01,0.417c0.03,1.353-0.342,5.363-0.898,7.922c-0.772,3.552-2.667,6.9-4.1,8.508l0.089,0.08
|
||||
c1.443-1.619,3.351-4.99,4.128-8.563c0.558-2.566,0.931-6.592,0.9-7.95l-0.009-0.417l-0.002-0.083l-0.079-0.027l-0.394-0.136
|
||||
c-0.554-0.191-1.476-0.75-2.722-2.331c-0.584-0.742-1.047-2.314-1.176-2.857l-0.094-0.394L23.27,2.645l-0.08-0.012l-0.4-0.06
|
||||
c-0.115-0.017-2.818-0.417-5.868-0.504l0.004-0.016h-0.156l-0.781-0.001l0,0l0,0h-0.001h-0.061l-0.041,0l-0.038,0h-0.062h-0.781
|
||||
h-0.157l0.005,0.017c-3.05,0.087-5.753,0.487-5.868,0.504l-0.4,0.06l-0.08,0.012L8.484,2.724L8.391,3.118
|
||||
C8.262,3.661,7.797,5.234,7.214,5.975c-1.244,1.58-2.167,2.14-2.721,2.331L4.099,8.441L4.021,8.469L4.019,8.552l-0.01,0.417
|
||||
c-0.03,1.358,0.344,5.384,0.901,7.95c0.764,3.514,2.718,6.917,4.211,8.591l0.089-0.08c-0.027-0.031-0.055-0.063-0.083-0.095
|
||||
c-1.471-1.694-3.354-5.014-4.1-8.442c-0.557-2.558-0.929-6.569-0.898-7.921l0.009-0.417l0.395-0.136
|
||||
c0.569-0.196,1.513-0.767,2.776-2.37c0.596-0.757,1.067-2.353,1.198-2.903l0.094-0.394l0.4-0.06
|
||||
c0.125-0.019,2.896-0.429,6.006-0.506l-0.003-0.013h0.781l0.062,0h0.038h0.041L15.987,2.172"/>
|
||||
<path fill="#F3F0E7" d="M17.003,23.231c-0.468-0.718-0.207-1.492,0.243-1.941c0.023-0.093,0.11-0.101,0.152-0.228
|
||||
c0.138-0.485,0.509-0.732,0.533-0.865c0.033-0.179,0.793,0.217,1.076,0.502c0.246,0.315-0.27,0.951-0.273,1.226
|
||||
c-0.169,0.034-0.218,0.005-0.386,0.039c-0.012,0.078-0.014,0.23-0.024,0.309c0,0.09,0,0.179,0,0.269
|
||||
c0.861-0.186,1.006-1.1,1.235-1.901c-0.201-0.268-0.711-0.68-0.837-0.872c0.078-0.082,0.257-0.156,0.305-0.191
|
||||
c0.622-0.455,1.09-1.119,1.112-1.648c0.017-0.159,0.137-0.199,0.24-0.2c0.093-0.001,0.44-0.102,0.681-0.31
|
||||
c0.102-0.018,0.114-0.155,0.114-0.177c0-0.011,0-0.082,0-0.093c0.001-0.13-0.253-0.119-0.424-0.156
|
||||
c-0.154-0.033-0.39-0.101-0.548-0.168c-0.137-0.058-0.225-0.097-0.372-0.159c-0.055-0.023-0.148-0.102-0.204-0.125
|
||||
c-0.062-0.025-0.14-0.018-0.201-0.043c-0.049-0.021-0.094-0.043-0.138-0.067c0.006-0.002,0.012-0.006,0.019-0.007
|
||||
c0.43-0.069,0.467-0.316,0.356-0.511c-0.034-0.061-0.102-0.086-0.109-0.086c-0.009-0.001-0.001,0.034,0.019,0.095
|
||||
c0.063,0.196,0.037,0.295-0.324,0.386c-0.043,0.011-0.139-0.014-0.177-0.007c-0.086-0.053-0.102-0.101-0.204-0.141
|
||||
c-0.082-0.032-0.328-0.161-0.324-0.222c0-0.014,0.16-0.063,0.366-0.12c0.286-0.08,0.38-0.148,0.468-0.297
|
||||
c0.028-0.047,0.011-0.087,0.009-0.091c-0.003-0.005-0.023,0.016-0.056,0.054c-0.107,0.125-0.164,0.162-0.444,0.211
|
||||
c-0.188,0.033-0.297,0.061-0.292,0.052c0.061-0.103,0.166-0.167,0.274-0.411c0.028-0.059,0.062-0.13,0.104-0.228
|
||||
c0.033-0.079,0.104-0.281,0.106-0.322c0.003-0.048-0.002-0.251-0.057-0.267c-0.021-0.006-0.069,0.171-0.078,0.25
|
||||
c-0.017,0.125-0.046,0.248-0.064,0.292c-0.023,0.054-0.033,0.123-0.061,0.15s-0.053,0.008-0.085-0.021
|
||||
c-0.022-0.021-0.147-0.09-0.139-0.233c0.003-0.031-0.017-0.256-0.031-0.254c-0.055,0.007-0.065,0.235-0.067,0.262
|
||||
c-0.014,0.189,0.143,0.265,0.161,0.282c0.03,0.027,0.014,0.044,0.022,0.062c0.015,0.031,0,0.084-0.049,0.122
|
||||
c-0.045,0.034-0.047,0.137-0.183,0.204c-0.04,0.028-0.052,0.157-0.104,0.181c-0.046,0.001-0.033-0.063-0.082-0.115
|
||||
c-0.074-0.079-0.149-0.135-0.16-0.229c-0.003-0.036,0.042-0.246,0.042-0.283c0-0.101,0.045-0.183,0.073-0.271
|
||||
c0.062-0.194,0.039-0.323,0.051-0.348c0.025-0.056,0.006-0.079-0.033,0.001c-0.029,0.06-0.093,0.19-0.129,0.301
|
||||
c-0.011,0.034-0.023,0.107-0.071,0.102c-0.033-0.003-0.067-0.1-0.075-0.125c0,0.001,0,0.001,0,0.002
|
||||
c0.014,0.044-0.067-0.275-0.101-0.367c-0.009-0.025-0.074-0.2-0.095-0.198c-0.057,0.011-0.028,0.193-0.024,0.219
|
||||
c0.052,0.272,0.186,0.522,0.19,0.701c0.001,0.02,0.038,0.094,0.009,0.106c-0.029,0.012-0.081,0.028-0.176-0.051
|
||||
c-0.092-0.077-0.137-0.155-0.184-0.232c-0.039-0.063-0.143-0.281-0.169-0.27c-0.062,0.026,0.083,0.314,0.108,0.344
|
||||
c0.02,0.022,0.096,0.118,0.183,0.221c-0.024-0.005-0.051-0.008-0.08-0.007c-0.033,0-0.244,0.021-0.245,0.038
|
||||
c-0.008,0.067,0.203,0.051,0.237,0.051c0.154,0,0.248,0.115,0.282,0.151c0.016,0.016,0.029,0.032,0.039,0.046
|
||||
c0.006,0.012,0.011,0.023,0.017,0.034c0.003,0.014-0.001,0.027-0.014,0.039c-0.033,0.034-0.125,0.033-0.192,0.054
|
||||
c-0.058,0.019-0.211,0.027-0.35,0.019c-0.088-0.005-0.253-0.034-0.248,0.055c0.002,0.029,0.194,0.07,0.255,0.08
|
||||
c0.044,0.007,0.287-0.007,0.394-0.038c0.1-0.029,0.189,0.016,0.269,0.004c0.091,0.109,0.182,0.144,0.242,0.185
|
||||
c0.075,0.074,0.403,0.293,0.503,0.417c0.045,0.056-0.037,0.117-0.064,0.069c-0.021,0.015-0.097-0.023-0.226-0.08
|
||||
c-0.467-0.206-0.598-0.092-0.651-0.026c0,0.011,0.042,0.04,0.042,0.05c0.208,0.208,0.391,0.504,0.74,0.404
|
||||
c0.101,0.216-0.001,0.389-0.101,0.572c-0.243,0.447-1.275,0.131-1.915,0.558c-1.043,0.035-1.294,0.02-1.736-0.019
|
||||
c-0.328-0.065-1.21-0.121-1.403-0.042c-0.093,0.037-0.16,0.064-0.16,0.109c-0.194-0.039-0.464-0.02-0.553-0.361
|
||||
c-0.143,0.09-0.039-0.225-0.061-0.236c-0.254,0.27-0.42,0.322-0.402,0.882c0.031,0.152,0.104,0.346,0.181,0.453
|
||||
c0.177,0.946,0.442,0.928,0.565,1.449c-0.126,0.472-0.493,0.613-0.725,0.792c-0.021,0.016-0.065,0.031-0.083,0.048
|
||||
c-0.015,0.014-0.021,0.068-0.033,0.1c-0.109,0.283-0.099,1.518-0.182,1.725c-0.025,0.144,0.087,0.256,0.087,0.368
|
||||
c0.135,0,0.396-0.006,0.53-0.006c0.006-0.14-0.213-0.353-0.219-0.486c-0.021-0.427,0.016-0.791,0.066-1.142
|
||||
c0.008-0.052,0.029-0.157,0.076-0.19c0.165-0.115,0.274-0.162,0.573-0.307c0.058,0.097-0.001,0.108-0.128,0.285
|
||||
c-0.025,0.037-0.115,0.158-0.123,0.205c-0.008,0.052,0.037,0.352,0.051,0.405c0.061,0.234,0.229,0.85,0.323,1.093
|
||||
c0.022,0.034,0.045,0.067,0.067,0.101c0.123,0,0.354-0.021,0.479-0.021c-0.034-0.05-0.142-0.188-0.217-0.276
|
||||
c-0.14-0.164-0.203-0.373-0.241-0.508c-0.052-0.212-0.086-0.506-0.023-0.674c0.043-0.116,0.267-0.436,0.371-0.525
|
||||
c0.351-0.298,0.463-0.322,0.602-0.634c-0.011-0.017,0.409,0.174,0.712,0.152c0.599-0.042,1.574-0.257,1.72-0.219
|
||||
c-0.008,0.632-0.226,1.276-0.305,1.856c0,0.246-0.021,0.452,0.062,0.603c0.044,0.08,0.002,0.171,0.041,0.29c0.155,0,0.312,0,0.467,0
|
||||
C17.027,23.25,16.992,23.254,17.003,23.231z"/>
|
||||
<g>
|
||||
<path fill="#D4D2C9" d="M9.641,28.578c-0.095,0.097-0.213,0.162-0.354,0.194c-0.097,0.022-0.189,0.025-0.277,0.01
|
||||
c-0.087-0.016-0.169-0.052-0.246-0.111c-0.071-0.057-0.139-0.138-0.201-0.244s-0.115-0.24-0.155-0.402
|
||||
c-0.072-0.287-0.077-0.522-0.013-0.706c0.064-0.185,0.198-0.301,0.398-0.347c0.161-0.037,0.31-0.014,0.444,0.069
|
||||
c0.135,0.083,0.267,0.231,0.393,0.443c0.047-0.01,0.093-0.019,0.139-0.029c-0.056-0.249-0.112-0.499-0.168-0.748
|
||||
c-0.047,0.01-0.094,0.019-0.141,0.029c-0.027,0.034-0.055,0.067-0.083,0.101c-0.078-0.02-0.173-0.032-0.283-0.037
|
||||
c-0.11-0.005-0.229,0.006-0.355,0.036c-0.174,0.041-0.331,0.106-0.471,0.197c-0.139,0.091-0.25,0.199-0.333,0.324
|
||||
c-0.084,0.127-0.138,0.265-0.162,0.416s-0.015,0.304,0.028,0.461c0.043,0.158,0.111,0.295,0.205,0.412
|
||||
c0.093,0.117,0.201,0.207,0.324,0.271c0.125,0.065,0.262,0.105,0.41,0.12c0.148,0.015,0.301,0.004,0.457-0.033
|
||||
c0.13-0.03,0.24-0.071,0.329-0.122c0.089-0.051,0.168-0.112,0.237-0.182c0.062-0.063,0.114-0.135,0.156-0.213
|
||||
s0.076-0.165,0.104-0.259c-0.049-0.016-0.099-0.033-0.147-0.048C9.814,28.349,9.736,28.48,9.641,28.578z"/>
|
||||
<path fill="#D4D2C9" d="M24.144,26.965c0.037,0.008,0.085,0.02,0.141,0.034c0.057,0.015,0.101,0.029,0.131,0.043
|
||||
c0.071,0.031,0.136,0.096,0.191,0.193c0.056,0.097,0.09,0.188,0.102,0.273c0.04,0.01,0.079,0.02,0.119,0.029
|
||||
c0.044-0.173,0.086-0.347,0.13-0.52c-0.671-0.167-1.346-0.313-2.022-0.438c-0.007,0.038-0.014,0.076-0.021,0.113
|
||||
c0.025,0.008,0.062,0.021,0.11,0.041c0.049,0.019,0.086,0.037,0.111,0.054c0.041,0.027,0.065,0.053,0.073,0.078
|
||||
c0.007,0.025,0.007,0.055,0,0.09c-0.095,0.484-0.189,0.969-0.284,1.454c-0.007,0.037-0.02,0.065-0.038,0.086
|
||||
c-0.018,0.021-0.047,0.036-0.089,0.044c-0.021,0.003-0.058,0.004-0.107,0s-0.089-0.007-0.117-0.01
|
||||
c-0.008,0.038-0.015,0.076-0.021,0.114c0.673,0.125,1.343,0.271,2.009,0.439c0.067-0.208,0.134-0.416,0.201-0.624
|
||||
c-0.037-0.009-0.074-0.019-0.111-0.028c-0.032,0.043-0.09,0.105-0.175,0.187c-0.084,0.082-0.156,0.14-0.216,0.175
|
||||
c-0.022,0.014-0.054,0.021-0.093,0.022s-0.08-0.001-0.124-0.006c-0.038-0.004-0.082-0.011-0.132-0.021s-0.092-0.02-0.127-0.027
|
||||
c-0.076-0.017-0.136-0.033-0.178-0.049c-0.043-0.015-0.075-0.035-0.097-0.058c-0.021-0.025-0.034-0.057-0.036-0.095
|
||||
s0.004-0.088,0.018-0.15c0.042-0.197,0.084-0.395,0.126-0.592c0.076,0.017,0.151,0.033,0.227,0.05
|
||||
c0.062,0.014,0.114,0.032,0.158,0.055c0.043,0.024,0.078,0.057,0.104,0.099c0.018,0.029,0.032,0.076,0.043,0.143
|
||||
s0.015,0.121,0.012,0.163c0.039,0.009,0.077,0.019,0.116,0.027c0.067-0.284,0.135-0.568,0.202-0.852
|
||||
c-0.04-0.009-0.079-0.019-0.119-0.028c-0.018,0.04-0.045,0.084-0.082,0.135c-0.038,0.05-0.071,0.083-0.1,0.1
|
||||
c-0.047,0.026-0.096,0.041-0.146,0.043c-0.049,0.002-0.103-0.004-0.16-0.017c-0.076-0.017-0.151-0.033-0.228-0.049
|
||||
c0.056-0.264,0.112-0.527,0.169-0.792C23.924,26.916,24.034,26.94,24.144,26.965z"/>
|
||||
<path fill="#D4D2C9" d="M12.92,26.772c-0.08-0.126-0.182-0.23-0.306-0.311c-0.12-0.079-0.26-0.134-0.418-0.166
|
||||
c-0.157-0.032-0.322-0.035-0.495-0.011c-0.173,0.025-0.333,0.076-0.478,0.151c-0.145,0.077-0.264,0.172-0.357,0.287
|
||||
c-0.096,0.117-0.162,0.25-0.2,0.399c-0.039,0.148-0.043,0.307-0.013,0.476c0.029,0.162,0.087,0.303,0.174,0.425
|
||||
c0.086,0.121,0.19,0.218,0.312,0.293c0.123,0.076,0.259,0.128,0.406,0.156c0.148,0.028,0.3,0.03,0.457,0.008
|
||||
c0.195-0.027,0.359-0.078,0.494-0.153c0.134-0.075,0.248-0.17,0.342-0.285c0.09-0.111,0.154-0.237,0.193-0.38
|
||||
s0.051-0.291,0.035-0.443C13.049,27.047,13,26.898,12.92,26.772z M12.453,27.687c-0.007,0.116-0.027,0.221-0.063,0.316
|
||||
c-0.032,0.09-0.082,0.165-0.147,0.224c-0.066,0.059-0.149,0.095-0.25,0.109c-0.104,0.015-0.193,0.003-0.271-0.035
|
||||
c-0.077-0.038-0.146-0.097-0.206-0.176c-0.059-0.079-0.107-0.174-0.146-0.286c-0.04-0.111-0.07-0.232-0.091-0.362
|
||||
c-0.049-0.306-0.037-0.55,0.037-0.733c0.075-0.183,0.211-0.29,0.406-0.317c0.114-0.017,0.214-0.002,0.297,0.041
|
||||
c0.084,0.044,0.154,0.107,0.213,0.19c0.056,0.083,0.101,0.181,0.133,0.293c0.033,0.112,0.058,0.228,0.072,0.349
|
||||
C12.454,27.443,12.46,27.571,12.453,27.687z"/>
|
||||
<path fill="#D4D2C9" d="M15.859,27.141c-0.066-0.04-0.145-0.072-0.234-0.095s-0.176-0.038-0.259-0.042
|
||||
c0-0.01-0.001-0.019-0.001-0.028c0.082-0.021,0.158-0.045,0.23-0.074c0.071-0.029,0.133-0.062,0.184-0.1
|
||||
c0.057-0.041,0.1-0.088,0.13-0.143c0.03-0.054,0.044-0.117,0.043-0.188c-0.003-0.154-0.074-0.269-0.217-0.344
|
||||
c-0.142-0.076-0.372-0.109-0.689-0.095c-0.42,0.019-0.84,0.045-1.259,0.079c0.003,0.039,0.006,0.077,0.01,0.115
|
||||
c0.033,0.002,0.073,0.005,0.118,0.011c0.045,0.005,0.085,0.013,0.119,0.022c0.047,0.015,0.077,0.033,0.091,0.056
|
||||
c0.014,0.023,0.021,0.052,0.024,0.087c0.035,0.492,0.069,0.984,0.104,1.476c0.003,0.038-0.001,0.07-0.014,0.095
|
||||
c-0.012,0.025-0.037,0.046-0.073,0.064c-0.02,0.009-0.053,0.019-0.101,0.028s-0.088,0.018-0.119,0.023
|
||||
c0.003,0.038,0.007,0.077,0.01,0.115c0.376-0.031,0.754-0.055,1.131-0.072c0.162-0.007,0.304-0.022,0.423-0.045
|
||||
c0.12-0.023,0.226-0.058,0.317-0.105c0.086-0.045,0.152-0.104,0.198-0.178s0.067-0.165,0.066-0.271
|
||||
c-0.001-0.089-0.023-0.166-0.066-0.231C15.983,27.237,15.928,27.183,15.859,27.141z M14.714,26.188
|
||||
c0.023-0.002,0.052-0.005,0.085-0.008c0.033-0.003,0.06-0.005,0.081-0.006c0.144-0.007,0.254,0.021,0.328,0.083
|
||||
c0.075,0.062,0.114,0.151,0.118,0.268c0.005,0.127-0.032,0.229-0.111,0.307s-0.204,0.12-0.376,0.129
|
||||
c-0.027,0.001-0.055,0.003-0.083,0.004C14.742,26.707,14.728,26.448,14.714,26.188z M15.369,27.866
|
||||
c-0.074,0.082-0.172,0.125-0.294,0.131c-0.069,0.003-0.128-0.006-0.178-0.029c-0.05-0.022-0.08-0.052-0.092-0.088
|
||||
c-0.014-0.256-0.027-0.512-0.041-0.768c0.016-0.001,0.04-0.004,0.073-0.008c0.033-0.003,0.06-0.005,0.08-0.006
|
||||
c0.174-0.009,0.31,0.025,0.404,0.099c0.096,0.075,0.146,0.185,0.15,0.332C15.478,27.672,15.443,27.784,15.369,27.866z"/>
|
||||
<path fill="#D4D2C9" d="M18.894,27.212c-0.063-0.046-0.137-0.084-0.224-0.116c-0.088-0.032-0.172-0.054-0.255-0.066
|
||||
c0.001-0.009,0.002-0.019,0.002-0.028c0.084-0.013,0.162-0.031,0.236-0.053c0.073-0.022,0.138-0.05,0.192-0.083
|
||||
c0.06-0.036,0.107-0.079,0.142-0.13c0.035-0.051,0.055-0.112,0.061-0.183c0.011-0.153-0.051-0.275-0.186-0.363
|
||||
s-0.36-0.142-0.678-0.156c-0.42-0.019-0.841-0.031-1.261-0.035c0,0.039-0.001,0.077-0.001,0.115
|
||||
c0.033,0.005,0.072,0.013,0.117,0.021c0.044,0.009,0.083,0.021,0.117,0.034c0.045,0.019,0.073,0.04,0.085,0.063
|
||||
c0.011,0.024,0.017,0.054,0.016,0.089c-0.01,0.493-0.019,0.986-0.028,1.479c-0.001,0.038-0.009,0.069-0.022,0.093
|
||||
c-0.015,0.024-0.041,0.043-0.079,0.057c-0.02,0.008-0.054,0.014-0.103,0.02c-0.048,0.005-0.088,0.009-0.12,0.012
|
||||
c0,0.038-0.001,0.077-0.001,0.115c0.377,0.003,0.755,0.014,1.132,0.03c0.163,0.007,0.305,0.005,0.426-0.007
|
||||
s0.229-0.037,0.325-0.076c0.09-0.036,0.161-0.089,0.214-0.159c0.052-0.07,0.083-0.158,0.091-0.264
|
||||
c0.006-0.089-0.009-0.167-0.046-0.235C19.009,27.318,18.958,27.26,18.894,27.212z M17.839,26.16c0.024,0,0.053,0,0.086,0
|
||||
s0.061,0,0.081,0.001c0.145,0.006,0.251,0.043,0.319,0.112c0.069,0.069,0.1,0.162,0.094,0.278
|
||||
c-0.007,0.127-0.054,0.226-0.139,0.296c-0.086,0.07-0.214,0.102-0.386,0.095c-0.028-0.001-0.056-0.002-0.083-0.003
|
||||
C17.82,26.678,17.83,26.419,17.839,26.16z M18.341,27.89c-0.081,0.075-0.183,0.109-0.305,0.104
|
||||
c-0.069-0.003-0.127-0.018-0.175-0.045c-0.047-0.027-0.075-0.059-0.083-0.096c0.01-0.256,0.019-0.513,0.028-0.769
|
||||
c0.016,0,0.04-0.001,0.073-0.001c0.033,0,0.061,0,0.08,0.001c0.174,0.007,0.307,0.053,0.395,0.135
|
||||
c0.089,0.083,0.128,0.198,0.12,0.344C18.467,27.706,18.422,27.814,18.341,27.89z"/>
|
||||
<path fill="#D4D2C9" d="M21.711,28.072c-0.069,0.082-0.133,0.144-0.192,0.186c-0.039,0.026-0.098,0.038-0.176,0.036
|
||||
c-0.078-0.001-0.158-0.009-0.24-0.02c-0.084-0.011-0.148-0.023-0.195-0.035s-0.083-0.028-0.106-0.05
|
||||
c-0.024-0.021-0.039-0.051-0.044-0.089c-0.004-0.038-0.003-0.09,0.006-0.154c0.058-0.457,0.116-0.913,0.174-1.37
|
||||
c0.005-0.034,0.016-0.064,0.033-0.089c0.017-0.025,0.048-0.042,0.091-0.049c0.036-0.005,0.078-0.007,0.126-0.006
|
||||
s0.089,0.002,0.124,0.004c0.005-0.038,0.01-0.076,0.016-0.114c-0.422-0.058-0.845-0.108-1.268-0.151
|
||||
c-0.004,0.039-0.008,0.077-0.012,0.115c0.028,0.006,0.065,0.017,0.111,0.03s0.085,0.028,0.117,0.046
|
||||
c0.043,0.023,0.069,0.047,0.079,0.072c0.009,0.024,0.012,0.054,0.009,0.089c-0.055,0.491-0.108,0.981-0.163,1.472
|
||||
c-0.004,0.039-0.015,0.069-0.031,0.092c-0.018,0.023-0.045,0.04-0.083,0.049c-0.017,0.004-0.049,0.007-0.098,0.008
|
||||
s-0.091,0.001-0.127,0.001c-0.004,0.038-0.008,0.076-0.012,0.114c0.667,0.067,1.332,0.154,1.995,0.262
|
||||
c0.05-0.219,0.101-0.438,0.151-0.657c-0.038-0.006-0.075-0.012-0.113-0.019C21.838,27.915,21.78,27.991,21.711,28.072z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#47205E" d="M9.498,28.5c-0.095,0.097-0.213,0.162-0.354,0.194c-0.097,0.022-0.189,0.025-0.277,0.01
|
||||
c-0.087-0.015-0.169-0.052-0.246-0.11C8.55,28.537,8.482,28.455,8.42,28.35c-0.063-0.106-0.115-0.24-0.155-0.402
|
||||
c-0.072-0.287-0.077-0.522-0.013-0.706c0.064-0.185,0.198-0.301,0.398-0.347c0.161-0.037,0.31-0.014,0.444,0.069
|
||||
s0.267,0.231,0.393,0.443c0.047-0.009,0.093-0.019,0.139-0.028c-0.056-0.25-0.112-0.499-0.168-0.748
|
||||
c-0.047,0.01-0.094,0.02-0.141,0.029c-0.027,0.034-0.055,0.067-0.082,0.101c-0.079-0.02-0.174-0.032-0.284-0.037
|
||||
c-0.11-0.005-0.229,0.007-0.354,0.036c-0.175,0.041-0.332,0.106-0.472,0.197c-0.139,0.091-0.25,0.199-0.333,0.324
|
||||
c-0.084,0.127-0.138,0.266-0.162,0.416C7.605,27.846,7.616,28,7.658,28.157c0.043,0.158,0.111,0.295,0.205,0.412
|
||||
c0.093,0.117,0.201,0.207,0.324,0.271c0.126,0.066,0.262,0.105,0.41,0.12c0.148,0.015,0.301,0.004,0.457-0.033
|
||||
c0.13-0.03,0.239-0.071,0.329-0.122c0.089-0.051,0.168-0.112,0.237-0.182c0.063-0.064,0.114-0.135,0.156-0.214
|
||||
s0.076-0.165,0.104-0.259c-0.049-0.017-0.099-0.033-0.147-0.049C9.672,28.27,9.594,28.402,9.498,28.5z"/>
|
||||
<path fill="#47205E" d="M24.001,26.886c0.037,0.008,0.084,0.02,0.141,0.034c0.058,0.014,0.101,0.028,0.131,0.043
|
||||
c0.071,0.031,0.136,0.096,0.191,0.193c0.057,0.097,0.09,0.188,0.102,0.273c0.04,0.01,0.08,0.02,0.119,0.03
|
||||
c0.044-0.173,0.087-0.347,0.129-0.52c-0.67-0.167-1.344-0.312-2.021-0.438c-0.007,0.038-0.014,0.076-0.021,0.113
|
||||
c0.025,0.008,0.062,0.021,0.11,0.041c0.049,0.019,0.086,0.038,0.111,0.054c0.041,0.027,0.065,0.053,0.073,0.079
|
||||
c0.007,0.025,0.007,0.055,0,0.09c-0.095,0.484-0.189,0.969-0.284,1.454c-0.007,0.037-0.02,0.065-0.038,0.087
|
||||
c-0.018,0.021-0.047,0.035-0.089,0.043c-0.021,0.004-0.058,0.004-0.107,0.001c-0.05-0.004-0.089-0.007-0.117-0.011
|
||||
c-0.007,0.038-0.015,0.076-0.021,0.114c0.673,0.125,1.343,0.271,2.009,0.439c0.066-0.208,0.134-0.416,0.201-0.624
|
||||
c-0.037-0.009-0.074-0.019-0.112-0.028c-0.031,0.043-0.089,0.105-0.174,0.187c-0.084,0.082-0.156,0.14-0.216,0.175
|
||||
c-0.022,0.014-0.054,0.021-0.093,0.022s-0.08-0.001-0.124-0.006c-0.038-0.004-0.082-0.012-0.132-0.022s-0.092-0.02-0.127-0.027
|
||||
c-0.076-0.018-0.136-0.034-0.178-0.049c-0.043-0.016-0.075-0.035-0.097-0.059c-0.021-0.025-0.034-0.057-0.036-0.095
|
||||
c-0.002-0.039,0.004-0.088,0.018-0.15c0.042-0.197,0.084-0.395,0.126-0.592c0.076,0.016,0.151,0.033,0.228,0.049
|
||||
c0.061,0.014,0.113,0.032,0.157,0.056s0.078,0.057,0.104,0.099c0.018,0.028,0.032,0.076,0.043,0.143s0.015,0.121,0.012,0.163
|
||||
c0.039,0.009,0.077,0.018,0.116,0.027c0.067-0.284,0.135-0.568,0.202-0.852c-0.04-0.01-0.079-0.019-0.119-0.028
|
||||
c-0.018,0.04-0.045,0.084-0.082,0.134c-0.038,0.05-0.071,0.083-0.1,0.1c-0.047,0.027-0.095,0.041-0.145,0.043
|
||||
s-0.104-0.003-0.161-0.016c-0.076-0.017-0.151-0.033-0.228-0.05c0.056-0.264,0.112-0.527,0.169-0.792
|
||||
C23.781,26.838,23.892,26.861,24.001,26.886z"/>
|
||||
<path fill="#47205E" d="M12.777,26.694c-0.08-0.126-0.182-0.23-0.306-0.311c-0.121-0.079-0.26-0.134-0.417-0.166
|
||||
c-0.158-0.032-0.323-0.035-0.496-0.011s-0.333,0.075-0.478,0.151s-0.264,0.172-0.357,0.287c-0.096,0.117-0.162,0.25-0.2,0.399
|
||||
c-0.039,0.148-0.043,0.307-0.013,0.476c0.029,0.162,0.087,0.304,0.174,0.425c0.086,0.121,0.19,0.218,0.312,0.293
|
||||
c0.123,0.076,0.259,0.128,0.406,0.156c0.148,0.028,0.3,0.031,0.457,0.008c0.195-0.028,0.359-0.079,0.494-0.154
|
||||
c0.134-0.075,0.248-0.17,0.342-0.285c0.09-0.111,0.154-0.237,0.193-0.38s0.052-0.291,0.035-0.443
|
||||
C12.906,26.969,12.857,26.82,12.777,26.694z M12.311,27.608c-0.007,0.115-0.027,0.221-0.063,0.316
|
||||
c-0.032,0.09-0.081,0.165-0.147,0.224c-0.066,0.059-0.149,0.095-0.25,0.11c-0.104,0.014-0.193,0.003-0.271-0.035
|
||||
c-0.078-0.037-0.146-0.096-0.207-0.176c-0.059-0.079-0.107-0.174-0.146-0.286c-0.04-0.111-0.07-0.232-0.091-0.362
|
||||
c-0.049-0.305-0.037-0.55,0.037-0.733c0.075-0.183,0.211-0.29,0.406-0.317c0.114-0.016,0.214-0.002,0.297,0.041
|
||||
c0.084,0.044,0.155,0.107,0.213,0.19c0.056,0.083,0.101,0.182,0.134,0.293c0.032,0.112,0.057,0.228,0.071,0.349
|
||||
C12.312,27.364,12.317,27.493,12.311,27.608z"/>
|
||||
<path fill="#47205E" d="M15.716,27.063c-0.065-0.041-0.144-0.072-0.233-0.096s-0.176-0.038-0.259-0.042
|
||||
c0-0.01-0.001-0.019-0.001-0.028c0.082-0.021,0.159-0.045,0.23-0.074s0.133-0.062,0.184-0.1c0.057-0.041,0.1-0.088,0.13-0.143
|
||||
c0.03-0.054,0.044-0.117,0.043-0.188c-0.003-0.153-0.074-0.269-0.217-0.344c-0.142-0.076-0.372-0.109-0.689-0.095
|
||||
c-0.42,0.019-0.84,0.045-1.259,0.08c0.003,0.038,0.006,0.076,0.01,0.115c0.033,0.002,0.073,0.005,0.118,0.011
|
||||
c0.045,0.005,0.085,0.013,0.12,0.022c0.046,0.015,0.076,0.033,0.09,0.056c0.014,0.022,0.021,0.052,0.024,0.087
|
||||
c0.035,0.492,0.07,0.984,0.105,1.476c0.002,0.039-0.002,0.07-0.015,0.095c-0.012,0.025-0.037,0.046-0.073,0.064
|
||||
c-0.02,0.009-0.053,0.019-0.101,0.028c-0.048,0.01-0.087,0.018-0.119,0.023c0.004,0.039,0.007,0.077,0.01,0.115
|
||||
c0.377-0.031,0.754-0.055,1.131-0.072c0.162-0.007,0.304-0.022,0.423-0.045c0.12-0.023,0.226-0.058,0.317-0.105
|
||||
c0.086-0.045,0.152-0.104,0.198-0.178s0.068-0.165,0.066-0.271c-0.001-0.089-0.023-0.166-0.066-0.231
|
||||
C15.841,27.158,15.785,27.104,15.716,27.063z M14.571,26.11c0.023-0.002,0.052-0.005,0.085-0.008
|
||||
c0.033-0.003,0.06-0.005,0.081-0.006c0.144-0.007,0.254,0.021,0.328,0.083c0.075,0.062,0.114,0.151,0.118,0.268
|
||||
c0.005,0.127-0.032,0.229-0.111,0.307c-0.079,0.078-0.204,0.12-0.376,0.129c-0.027,0.001-0.055,0.003-0.083,0.004
|
||||
C14.6,26.628,14.585,26.369,14.571,26.11z M15.227,27.788c-0.074,0.082-0.172,0.125-0.294,0.131
|
||||
c-0.068,0.003-0.128-0.006-0.178-0.029c-0.05-0.023-0.08-0.052-0.091-0.088c-0.015-0.256-0.028-0.512-0.042-0.769
|
||||
c0.016-0.001,0.04-0.004,0.073-0.007s0.06-0.005,0.08-0.006c0.174-0.009,0.31,0.025,0.404,0.1c0.097,0.074,0.146,0.185,0.15,0.331
|
||||
C15.335,27.594,15.301,27.706,15.227,27.788z"/>
|
||||
<path fill="#47205E" d="M18.751,27.133c-0.062-0.046-0.137-0.084-0.224-0.116c-0.088-0.031-0.172-0.054-0.254-0.066
|
||||
c0-0.009,0.001-0.019,0.001-0.028c0.084-0.014,0.162-0.031,0.236-0.053c0.073-0.022,0.138-0.05,0.192-0.083
|
||||
c0.06-0.035,0.107-0.079,0.142-0.13c0.035-0.052,0.056-0.113,0.06-0.184c0.012-0.153-0.05-0.274-0.185-0.363
|
||||
c-0.135-0.088-0.36-0.142-0.678-0.156c-0.42-0.019-0.84-0.031-1.261-0.035c0,0.038,0,0.077-0.001,0.115
|
||||
c0.033,0.005,0.072,0.012,0.117,0.021c0.044,0.009,0.083,0.02,0.117,0.033c0.045,0.019,0.073,0.04,0.084,0.064
|
||||
c0.012,0.023,0.018,0.054,0.017,0.089c-0.01,0.493-0.019,0.986-0.028,1.479c-0.001,0.039-0.009,0.069-0.022,0.093
|
||||
c-0.015,0.024-0.041,0.043-0.079,0.058c-0.02,0.007-0.054,0.014-0.103,0.019c-0.048,0.005-0.088,0.009-0.12,0.012
|
||||
c0,0.038-0.001,0.077-0.001,0.115c0.377,0.003,0.755,0.014,1.132,0.03c0.163,0.007,0.305,0.005,0.426-0.007
|
||||
c0.122-0.012,0.229-0.037,0.325-0.076c0.09-0.036,0.161-0.089,0.214-0.159c0.052-0.07,0.082-0.158,0.091-0.264
|
||||
c0.007-0.088-0.009-0.167-0.046-0.235C18.866,27.239,18.815,27.182,18.751,27.133z M17.697,26.081c0.023,0,0.052,0,0.085,0
|
||||
s0.061,0,0.081,0.001c0.145,0.006,0.251,0.043,0.319,0.112c0.069,0.069,0.1,0.162,0.094,0.277c-0.007,0.127-0.054,0.226-0.14,0.296
|
||||
c-0.085,0.071-0.213,0.102-0.385,0.095c-0.028-0.001-0.056-0.002-0.083-0.003C17.679,26.6,17.688,26.34,17.697,26.081z
|
||||
M18.198,27.811c-0.081,0.075-0.183,0.109-0.305,0.104c-0.069-0.003-0.127-0.018-0.175-0.045c-0.047-0.026-0.075-0.059-0.083-0.095
|
||||
c0.01-0.257,0.019-0.513,0.028-0.769c0.016,0,0.04,0,0.073-0.001s0.061,0,0.08,0.001c0.175,0.007,0.307,0.053,0.395,0.136
|
||||
c0.089,0.083,0.128,0.197,0.12,0.343C18.324,27.627,18.279,27.736,18.198,27.811z"/>
|
||||
<path fill="#47205E" d="M21.568,27.993c-0.069,0.082-0.133,0.144-0.193,0.186c-0.038,0.026-0.097,0.038-0.175,0.036
|
||||
c-0.078-0.001-0.158-0.008-0.24-0.02c-0.083-0.011-0.149-0.023-0.195-0.035c-0.047-0.012-0.083-0.028-0.106-0.05
|
||||
c-0.025-0.021-0.039-0.051-0.044-0.089c-0.004-0.038-0.002-0.09,0.006-0.154c0.058-0.457,0.116-0.913,0.174-1.37
|
||||
c0.005-0.034,0.016-0.064,0.033-0.089c0.017-0.025,0.048-0.042,0.092-0.048c0.035-0.005,0.077-0.008,0.125-0.007
|
||||
c0.047,0.001,0.089,0.002,0.124,0.004c0.005-0.038,0.01-0.076,0.016-0.114c-0.422-0.058-0.845-0.108-1.268-0.15
|
||||
c-0.004,0.038-0.008,0.077-0.012,0.115c0.028,0.007,0.065,0.017,0.111,0.03c0.046,0.013,0.085,0.028,0.117,0.045
|
||||
c0.043,0.023,0.069,0.047,0.079,0.072c0.009,0.024,0.012,0.054,0.008,0.09c-0.054,0.491-0.107,0.981-0.162,1.472
|
||||
c-0.004,0.039-0.015,0.069-0.031,0.092c-0.018,0.023-0.045,0.04-0.083,0.049c-0.017,0.004-0.049,0.007-0.098,0.008
|
||||
s-0.091,0.002-0.127,0.001c-0.004,0.038-0.008,0.077-0.012,0.115c0.667,0.066,1.332,0.154,1.995,0.262
|
||||
c0.05-0.219,0.101-0.438,0.151-0.657c-0.038-0.006-0.075-0.012-0.113-0.018C21.695,27.837,21.638,27.912,21.568,27.993z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 213 KiB |
Before Width: | Height: | Size: 212 KiB |
@@ -1,266 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#998C67" cx="16.102" cy="15.996" r="15.387"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5E3C2A" d="M24.516,22.446c-1.043,0.243-1.286,0.208-1.877,0.486
|
||||
c-0.591,0.278-0.765,0.226-1.042-0.139c-0.278-0.365-0.227-0.539-0.07-1.043s0.14-0.539,0.104-0.765
|
||||
c-0.034-0.226-0.069-0.348,0.174-0.66c0.243-0.313,0.504-0.521,0.486-0.973c-0.017-0.452,0.174-0.626-0.243-0.904
|
||||
s-0.504,0.208-0.66-0.521c-0.156-0.729-3.875-5.561-4.345-6.743c-0.469-1.182-0.972-2.672-0.799-3.649
|
||||
c0.101-0.574,0.729-1.147,0.66-1.529s-0.869-0.956-0.729-1.147c0.139-0.191,9.939-1.182,11.261,6.708
|
||||
C28.756,19.457,25.559,22.202,24.516,22.446z M14.854,26.13c0.087,0.678-4.709,1.147-7.021,0.278
|
||||
c-2.312-0.869-2.276-2.224-3.268-5.491c-0.99-3.267,1.061-6.273,1.738-6.569s1.13,0.243,2.085,0.417
|
||||
c0.956,0.174,0.748-0.243,1.529-0.348c0.782-0.104,0.817,0.208,1.772,0.73c0.956,0.521,1.355,1.286,1.564,1.564
|
||||
c0.209,0.278,0.782,0.938,1.217,1.355c0.434,0.417,0.399,0.625,0.625,1.321c0.227,0.695-0.104,0.73-0.277,1.599
|
||||
c-0.174,0.869,0.243,0.678,0.451,1.39c0.209,0.713-0.174,1.373-0.417,2.329C14.61,25.661,14.767,25.452,14.854,26.13z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#281F15" d="M7.115,12.451c0.201-0.128,0.294-0.349,0.294-0.477
|
||||
s0.036-0.128,0.11-0.037c0.073,0.092,0.128,0.128,0.293,0.037s0.349-0.386,0.404-0.514c0.055-0.129-0.147-0.294-0.221-0.404
|
||||
c-0.073-0.11-0.258-0.055-0.331-0.147c-0.072-0.092,0.073-0.331,0-0.441c-0.072-0.11-0.22-0.202-0.366-0.367
|
||||
c-0.147-0.166-0.238,0.055-0.368,0c-0.128-0.055-0.164-0.404-0.513-0.441c-0.349-0.037-0.275,0.606-0.331,0.771
|
||||
c-0.055,0.166,0,0.074,0.146,0.331c0.147,0.257,0.294,0.257,0.404,0.477c0.11,0.221-0.056,0.367-0.184,0.698
|
||||
s0.018,0.293,0.147,0.477C6.729,12.598,6.913,12.58,7.115,12.451z M19.12,7.458c0.11-0.238,0.146-0.11,0.366-0.22
|
||||
c0.221-0.11,0-0.184,0-0.331c0-0.146,0.184-0.202,0.073-0.514c-0.109-0.312-0.312,0.128-0.587-0.037
|
||||
c-0.275-0.166-0.165-0.239-0.221-0.551c-0.055-0.312-0.349-0.238-0.697-0.331c-0.349-0.092-0.55,0.019-0.771,0.184
|
||||
s-0.073,0.11,0,0.331s-0.147,0.128-0.184,0.331c-0.037,0.202,0,0.092,0.33,0.33c0.33,0.239,0.698,0.257,1.065,0.918
|
||||
C18.862,8.229,19.01,7.697,19.12,7.458z M24.736,9.037c0.019-0.22,0.093-0.293,0-0.514c-0.091-0.221-0.146-0.459-0.366-0.661
|
||||
c-0.221-0.202-1.34-0.808-1.249-0.33c0.092,0.477,0.11,0.715,0.11,1.028c0,0.312,0.018,0.184,0.221,0.514
|
||||
c0.201,0.331-0.037,0.551,0.439,0.478c0.479-0.074,0.35,0.165,0.551-0.11C24.646,9.166,24.719,9.258,24.736,9.037z M26.462,15.278
|
||||
c-0.128-0.275-0.221-0.257-0.44-0.22c-0.22,0.037-0.165,0.055-0.367,0.661c-0.201,0.605-0.037,0.275-0.184,0.624
|
||||
c-0.147,0.349,0,0.129,0.073,0.22c0.073,0.092,0.019,0.055,0,0.22c-0.018,0.166-0.11,0.129-0.073,0.367
|
||||
c0.036,0.239,0.073,0.055,0.331-0.11c0.257-0.165,0.055-0.037,0.477-0.293s0.11-0.019,0.331-0.881
|
||||
C26.829,15.003,26.591,15.554,26.462,15.278z M21.665,21.569c-0.238-0.037-0.495-0.203-0.294,0.183
|
||||
c0.202,0.385,0.238,0.477,0.404,0.625c0.165,0.146,0.275-0.019,0.183-0.367C21.867,21.66,21.903,21.605,21.665,21.569z
|
||||
M24.59,17.701c-0.11,0.202-0.367,0.349-0.11,0.478c0.257,0.128,0.33,0.128,0.515,0.037c0.184-0.092,0.293-0.055,0.257-0.331
|
||||
C25.214,17.609,24.699,17.499,24.59,17.701z M9.354,20.271c-0.22-0.239-0.146-0.202-0.44-0.551s-0.386-0.624-0.551-0.991
|
||||
c-0.166-0.367-0.184-0.11-0.221-0.587c-0.036-0.477-0.165-0.587-0.33-0.514c-0.165,0.073-0.386,0.055-0.478,0.367
|
||||
c-0.092,0.312,0,0.459-0.22,0.551c-0.221,0.092-0.258-0.055-0.331,0.367c-0.072,0.422,0,0.422,0.221,0.661
|
||||
c0.221,0.239,0.202,0.569,0.404,0.734c0.201,0.165,0.733,0.073,0.954,0.11c0.22,0.037,0.386,0.239,0.587,0.221
|
||||
C9.152,20.62,9.574,20.51,9.354,20.271z M13.393,25.337c-0.165-0.257-0.349-0.221-0.588-0.184
|
||||
c-0.238,0.037-0.22,0.275-0.293,0.697c-0.073,0.422,0.496,0.184,0.734,0.184s0.11-0.037,0.33-0.293
|
||||
C13.796,25.484,13.558,25.594,13.393,25.337z M9.024,24.016c-0.459,0.22,0.459,0.587,0.66,0.587c0.202,0,0.037-0.018,0.147-0.183
|
||||
c0.11-0.166,0.11-0.184-0.074-0.587C9.574,23.428,9.483,23.795,9.024,24.016z M20.185,8.009c-0.367-0.496-0.331-0.092-0.515,0.11
|
||||
c-0.184,0.202-0.275,0.22-0.514,0.22s-0.238-0.074-0.404,0.11c-0.165,0.183,0.037,0.128,0.294,0.44
|
||||
c0.258,0.312,0.734,0.202,0.845,0.257s0.184,0.055,0.403,0.11c0.221,0.055,0.203,0.037,0.441,0
|
||||
c0.238-0.037,0.018-0.11-0.037-0.294S20.552,8.505,20.185,8.009z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AA998D" d="M18.445,6.784c-0.124-0.143-0.159-0.32-0.249-0.391
|
||||
c-0.089-0.071-0.355,0.017-0.461,0.142c-0.106,0.124-0.035,0.124-0.214,0.319c-0.177,0.195-0.496,0.018-0.496,0.106
|
||||
c0,0,0.319,0.125,0.425,0.178c0.107,0.054,0.107,0.054,0.144,0.143c0.035,0.088-0.036,0.159-0.036,0.249
|
||||
c0,0.087,0.071,0.176,0.071,0.176s0.071,0.036,0.143,0.142c0.069,0.107,0.052,0.107,0.069,0.214
|
||||
c0.019,0.106-0.035,0.124,0.107,0.212c0.141,0.089,0.159,0.036,0.354,0.107c0.195,0.071,0.284-0.195,0.391-0.426
|
||||
c0.105-0.23,0.178-0.71,0.178-0.71l-0.035-0.143C18.836,7.102,18.571,6.925,18.445,6.784z M20.596,7.991
|
||||
c-0.088-0.142-0.158,0-0.142,0.178c0.019,0.177-0.141,0.354-0.354,0.426c-0.214,0.071-0.229-0.196-0.391-0.356
|
||||
c-0.16-0.159-0.124-0.053-0.177,0.072c-0.054,0.125-0.108,0.159-0.143,0.355c-0.035,0.194,0.958,0.728,1.137,0.674
|
||||
c0.177-0.053,0.213-0.23,0.39-0.461c0.177-0.231,0.07-0.231,0.034-0.391C20.916,8.329,20.685,8.133,20.596,7.991z M23.697,8.026
|
||||
c-0.158,0.018-0.408,0.248-0.566,0.461c-0.159,0.213-0.196,0.32-0.319,0.426c-0.125,0.107-0.195,0.071-0.214,0.355
|
||||
c-0.019,0.284,0,0.515,0.036,0.639c0.035,0.124,0.142,0.302,0.248,0.142c0.105-0.159,0.212-0.213,0.212-0.213
|
||||
s0.108-0.07,0.179-0.035c0.071,0.035,0.122,0.106,0.247,0.106c0.124,0,0.249,0.142,0.249-0.106c0-0.249-0.018-0.568,0.071-0.853
|
||||
c0.09-0.283,0.266-0.443,0.178-0.674C23.93,8.043,23.857,8.007,23.697,8.026z M7.513,11.469c0-0.107,0-0.143,0.07-0.249
|
||||
c0.072-0.107,0.019-0.178-0.07-0.213c-0.088-0.035-0.105-0.035-0.247-0.035c-0.143,0-0.161-0.036-0.284-0.143
|
||||
c-0.124-0.107-0.124-0.195-0.354-0.461C6.396,10.102,6.2,10.759,6.2,10.9s0.337,0.267,0.462,0.355
|
||||
c0.123,0.089,0.106,0.16,0.106,0.284c0,0.124-0.302,0.55-0.355,0.745c-0.054,0.196-0.107,0.178,0,0.32
|
||||
c0.106,0.142,0.089,0.213,0.215,0.249c0.121,0.036,0.086,0.071,0.282-0.071c0.194-0.143,0.515-0.479,0.673-0.639
|
||||
c0.161-0.16,0.072-0.319,0.037-0.426C7.583,11.61,7.513,11.575,7.513,11.469z M20.239,24.689
|
||||
c-0.143-0.195-0.213-0.088-0.285-0.035c-0.069,0.054,0.072,0.089-0.036,0.249c-0.104,0.159,0.036,0.212-0.211,0.355
|
||||
c-0.25,0.142-0.284,0.159-0.284,0.283c0,0.125-0.019,0.302,0,0.355c0.018,0.054,0.248-0.071,0.319-0.106s0.052-0.053,0.143,0
|
||||
c0.087,0.054,0.195,0.071,0.247-0.071c0.054-0.142,0.054-0.159,0.107-0.248c0.053-0.088,0.07,0.106,0.213-0.106
|
||||
c0.143-0.213,0.354-0.125,0.105-0.355C20.31,24.779,20.382,24.885,20.239,24.689z M26.608,17.29
|
||||
c-0.194-0.498-0.089-0.089-0.318-0.036c-0.232,0.053-0.25,0.301-0.391,0.567c-0.141,0.267-0.515,0.071-0.64,0.32
|
||||
c-0.124,0.249,0.231,0.284,0.284,0.498c0.053,0.212-0.088,0.231-0.213,0.461c-0.125,0.23-0.035,0.178,0.105,0.284
|
||||
c0.143,0.107,0.035,0.036,0.143,0.178c0.107,0.142,0.088,0.124,0.391,0.07c0.302-0.053,0.392-0.39,0.746-1.064
|
||||
C27.07,17.892,26.804,17.786,26.608,17.29z M8.542,19.986c-0.017,0.107,0.072,0.391,0.249,0.284
|
||||
c0.178-0.106,0.124-0.177,0.32-0.141c0.194,0.035,0.337,0.106,0.532,0.177c0.194,0.071,0.283,0,0.105-0.177
|
||||
c-0.177-0.178-0.285-0.214-0.391-0.533c-0.105-0.319,0.019-0.302-0.105-0.639c-0.125-0.338-0.249-0.355-0.392-0.497
|
||||
c-0.142-0.143-0.265-0.125-0.319,0.071c-0.053,0.195-0.088,0.372-0.249,0.567c-0.158,0.195-0.373,0.195-0.249,0.391
|
||||
c0.126,0.194,0.162,0.301,0.321,0.319C8.525,19.827,8.56,19.879,8.542,19.986z M9.43,23.536c-0.338-0.337-0.088-0.302-0.283-0.532
|
||||
c-0.195-0.231-0.159-0.036-0.641,0.212c-0.478,0.249,1.102,1.296,1.28,1.349c0.176,0.054,0.105,0,0.211-0.213
|
||||
c0.107-0.211,0-0.124-0.07-0.354S9.768,23.873,9.43,23.536z M12.942,25.346c-0.318-0.16-0.211-0.053-0.602,0.248
|
||||
c-0.393,0.302,0.62,0.337,0.922,0.426c0.302,0.089,0.089,0.018,0.071-0.248C13.315,25.506,13.263,25.506,12.942,25.346z
|
||||
M22.302,21.587c-0.147-0.08-0.108,0.026-0.269-0.026c-0.16-0.054-0.055-0.147-0.241-0.027c-0.188,0.12-0.04,0.133,0,0.24
|
||||
c0.039,0.107,0.026,0.013,0.081,0.16c0.054,0.147,0.013,0.054-0.055,0.241c-0.066,0.187-0.12,0.027-0.268,0.133
|
||||
c-0.146,0.107,0.016,0.094,0.135,0.214c0.12,0.12,0.039,0.054,0.429-0.347c0.387-0.4,0.119-0.121,0.319-0.375
|
||||
C22.635,21.548,22.449,21.667,22.302,21.587z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#232323" d="M16.102,0.609c-8.498,0-15.387,6.889-15.387,15.387
|
||||
s6.889,15.387,15.387,15.387s15.387-6.889,15.387-15.387S24.6,0.609,16.102,0.609z M16.258,26.611
|
||||
c-5.811,0-10.521-4.711-10.521-10.521S10.447,5.569,16.258,5.569s10.521,4.71,10.521,10.521S22.068,26.611,16.258,26.611z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F4DA6E" d="M18.469,18.948c-0.109,0-0.21-0.018-0.309-0.055l-0.063-0.023
|
||||
c-0.512-0.193-0.779-0.301-0.779-0.45c0-0.085,0.143-0.208,1.143-0.905c0.283-0.198,0.551-0.385,0.634-0.456
|
||||
c0.212-0.184,0.425-0.295,0.709-0.371c0.206-0.056,0.741-0.175,0.999-0.175c0.077,0,0.16,0.009,0.193,0.066
|
||||
c0.067,0.118,0.085,0.22,0.086,0.225l0.002,0.017l-0.005,0.017c-0.042,0.12-0.415,1.18-0.609,1.344
|
||||
c-0.198,0.168-0.701,0.56-1.108,0.593c-0.129,0.011-0.256,0.046-0.39,0.084C18.811,18.902,18.643,18.948,18.469,18.948z
|
||||
M13.479,18.932c-0.185,0-0.313-0.012-0.394-0.038c-0.218-0.068-0.88-0.276-1.12-0.614c-0.084-0.118-0.205-0.258-0.322-0.395
|
||||
c-0.206-0.238-0.4-0.464-0.462-0.628c-0.103-0.272-0.003-0.493,0.001-0.503l0.004-0.006l0.004-0.006
|
||||
c0.112-0.148,0.348-0.18,0.561-0.197c0.023-0.001,0.052-0.002,0.084-0.002c0.243,0,0.723,0.061,0.983,0.292
|
||||
c0.271,0.24,0.933,0.718,1.142,0.837c0.031,0.018,0.75,0.423,0.848,0.501c0.09,0.071,0.082,0.117,0.048,0.199
|
||||
c-0.007,0.018-0.017,0.04-0.026,0.068c-0.056,0.156-0.323,0.456-0.544,0.456l0,0c-0.049,0-0.136,0.006-0.239,0.013
|
||||
C13.877,18.919,13.668,18.932,13.479,18.932z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D6D6D6" d="M22.645,13.033l-0.467-2.368c-0.711-1.771-3.912-3.572-6.35-3.572
|
||||
c-0.025,0-0.051,0-0.077,0.001l-1.312,0.308c-1.467,0.571-3.507,1.52-4.315,3.149l-0.192,1.004l-0.349,1.663
|
||||
c0.06,0.474,0.282,1.026,0.497,1.561c0.227,0.563,0.441,1.093,0.436,1.473v0.017l-0.23,0.425l0.155,1.479l-0.384,0.766
|
||||
c0.15,0.297,0.301,0.396,0.524,0.545c0.077,0.051,0.163,0.107,0.259,0.18c0.074,0.057,0.145,0.11,0.212,0.161
|
||||
c0.502,0.384,0.805,0.615,1.192,0.615c0.303,0,0.676-0.136,1.287-0.47l0.061-0.033l0.078,0.156l-0.001,0.018
|
||||
c-0.024,0.395-0.208,0.761-0.403,1.148c-0.308,0.612-0.626,1.246-0.308,2.039c0.05,0.048,0.091,0.082,0.129,0.112
|
||||
c0.082,0.067,0.149,0.122,0.229,0.261l0.398-0.239l0.213,0.595c0.049,0.021,0.086,0.03,0.116,0.03c0.051,0,0.091-0.026,0.179-0.085
|
||||
l0.104-0.07l0.034,0.065c0.18,0.34,1.008,0.597,1.926,0.597c0.856,0,1.473-0.229,1.57-0.583L17.88,23.9l0.341,0.17l0.01-0.011
|
||||
l0.006-0.003c0.141-0.09,0.221-0.252,0.242-0.495l0.003-0.037l0.149-0.073l0.293,0.22c0.031-0.039,0.053-0.073,0.072-0.104
|
||||
c0.066-0.106,0.117-0.173,0.307-0.243c0.102-0.645,0.025-1.405-0.197-1.948c-0.056-0.137-0.129-0.258-0.199-0.375
|
||||
c-0.149-0.248-0.305-0.506-0.312-0.934l-0.001-0.104l1.102,0.466c0.078,0.018,0.162,0.027,0.247,0.027
|
||||
c0.938,0,2.009-1.058,2.264-1.557c-0.405-0.72-0.368-0.988-0.245-1.849l0.021-0.147c0.022-0.167-0.049-0.263-0.125-0.365
|
||||
c-0.046-0.063-0.089-0.12-0.107-0.192l-0.005-0.019l0.473-1.575c0.04-0.125,0.096-0.256,0.154-0.394
|
||||
C22.536,13.973,22.723,13.537,22.645,13.033z M14.771,18.318c-0.047,0.133-0.295,0.413-0.481,0.413
|
||||
c-0.186-0.001-0.931,0.077-1.179,0c-0.248-0.079-0.863-0.277-1.086-0.59c-0.223-0.313-0.682-0.761-0.775-1.008
|
||||
c-0.094-0.249,0-0.45,0-0.45c0.094-0.124,0.311-0.155,0.512-0.171c0.202-0.016,0.748,0.033,1.018,0.273
|
||||
c0.27,0.238,0.938,0.722,1.154,0.845c0.217,0.122,0.76,0.433,0.838,0.495C14.849,18.187,14.818,18.187,14.771,18.318z M20.434,18.03
|
||||
c-0.188,0.157-0.684,0.546-1.07,0.576c-0.389,0.031-0.762,0.28-1.172,0.125c-0.411-0.155-0.799-0.296-0.799-0.413
|
||||
c0-0.115,1.521-1.108,1.753-1.31c0.232-0.202,0.45-0.295,0.683-0.357c0.232-0.062,1.055-0.247,1.117-0.139
|
||||
c0.062,0.108,0.077,0.201,0.077,0.201S20.619,17.872,20.434,18.03z"/>
|
||||
<path opacity="0.7" fill="#282621" d="M16.273,24.827c-0.75,0-1.645-0.175-2.03-0.563c-0.384,0.207-0.639-0.097-0.683-0.438
|
||||
l-0.323,0.077c-0.319-0.044-0.306-0.245-0.489-0.427c-0.524-1.226,0.303-2.003,0.596-3.117c-0.686,0.346-1.309,0.486-1.98,0.034
|
||||
c-0.535-0.36-1.332-0.804-1.596-1.414l0.001-0.089l0.397-0.796c-0.089-0.69-0.284-1.298,0.082-1.918
|
||||
c-0.062-1.017-0.875-1.535-0.932-2.781c-0.043-0.933,0.357-1.986,0.534-2.903c0.964-1.975,3.782-3.525,5.966-3.666
|
||||
c2.578,0,5.85,1.864,6.604,3.764c0.156,0.786,0.476,1.737,0.551,2.535c0.152,0.979-0.676,2.253-0.964,3.216
|
||||
c0.046-0.072,0.235,0.537,0.227,0.599c-0.104,0.72-0.157,1.26,0.234,1.903l0.004,0.092c-0.329,0.71-1.098,1.331-1.808,1.626
|
||||
c-0.674,0.279-1.15,0.086-1.771-0.176c0.142,0.515,0.501,0.91,0.614,1.451c0.113,0.533,0.125,1.094,0.029,1.631
|
||||
c-0.201,0.107-0.414,0.283-0.527,0.498l-0.135,0.014l-0.189-0.142c-0.059,0.201-0.183,0.361-0.353,0.479l-0.138,0.047l-0.196-0.098
|
||||
C17.744,24.624,17.125,24.827,16.273,24.827z M14.378,23.949c0.394,0.744,3.178,0.95,3.435,0.021l0.033-0.117l0.363,0.182
|
||||
c0.154-0.133,0.23-0.33,0.229-0.531l0.185-0.09l0.282,0.212c0.107-0.151,0.169-0.253,0.355-0.325
|
||||
c0.104-0.683,0.047-1.489-0.291-2.104c-0.23-0.423-0.443-0.78-0.422-1.283c0.418,0.177,0.92,0.512,1.383,0.512
|
||||
c0.85,0,1.896-0.812,2.248-1.568c-0.416-0.647-0.352-1.224-0.242-1.957c0.034-0.239-0.176-0.336-0.23-0.544
|
||||
c0.259-0.964,1.041-2.365,0.893-3.318c-0.061-0.786-0.314-1.596-0.467-2.37c-0.695-1.745-3.886-3.541-6.314-3.541
|
||||
c-2.108,0.456-4.66,1.38-5.68,3.448c-0.168,0.89-0.352,1.775-0.537,2.662c0.137,1.032,0.949,1.968,0.937,3.016
|
||||
c-0.078,0.16-0.16,0.319-0.245,0.476c0.062,0.474,0.117,0.946,0.167,1.421c-0.131,0.279-0.259,0.56-0.399,0.834
|
||||
c0.325,0.479,1.225,1.076,1.743,1.321c0.603,0.284,1.274-0.124,1.791-0.415c0.04,0.071,0.071,0.146,0.096,0.223
|
||||
c-0.069,1.144-1.206,1.97-0.708,3.186c0.13,0.079,0.256,0.198,0.334,0.328l0.406-0.243l0.234,0.66
|
||||
c0.004-0.031,0.266-0.116,0.332-0.164L14.378,23.949z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#282828" d="M15.73,7.026c2.572-0.043,5.795,1.852,6.499,3.62
|
||||
c0.155,0.791,0.312,1.583,0.468,2.374c0.109,0.708-0.277,1.28-0.429,1.751c-0.155,0.52-0.312,1.038-0.467,1.558
|
||||
c0.044,0.166,0.275,0.284,0.233,0.583c-0.139,0.987-0.202,1.222,0.233,1.985c-0.263,0.566-1.573,1.836-2.607,1.596
|
||||
c-0.337-0.143-0.675-0.285-1.013-0.429c0.01,0.61,0.328,0.851,0.506,1.285c0.239,0.585,0.303,1.388,0.195,2.024
|
||||
c-0.309,0.104-0.248,0.187-0.428,0.389c-0.104-0.078-0.208-0.155-0.312-0.233c-0.026,0.013-0.052,0.025-0.078,0.039
|
||||
c-0.022,0.248-0.105,0.438-0.272,0.544c-0.014,0.014-0.025,0.026-0.039,0.039c-0.104-0.052-0.207-0.104-0.312-0.155
|
||||
c-0.254,0.922-3.219,0.759-3.62,0c-0.176,0.117-0.224,0.171-0.428,0.078c-0.064-0.182-0.13-0.363-0.194-0.545
|
||||
c-0.13,0.078-0.259,0.155-0.39,0.233c-0.129-0.253-0.209-0.252-0.389-0.429c-0.545-1.328,0.638-2.221,0.7-3.229
|
||||
c-0.013-0.026-0.026-0.053-0.039-0.079c-1.472,0.806-1.66,0.522-2.763-0.311c-0.372-0.281-0.601-0.329-0.818-0.778
|
||||
c0.131-0.26,0.26-0.519,0.39-0.778c-0.052-0.493-0.104-0.986-0.155-1.479c0.077-0.143,0.155-0.285,0.232-0.429
|
||||
c0.01-0.72-0.815-2.05-0.934-3.035c0.117-0.558,0.234-1.116,0.35-1.674c0.066-0.338,0.131-0.675,0.195-1.012
|
||||
c0.779-1.579,2.662-2.53,4.359-3.191C14.848,7.234,15.289,7.129,15.73,7.026z M15.846,7.259c-0.479,0.117-0.959,0.233-1.439,0.351
|
||||
c-1.889,0.686-3.345,1.614-4.087,3.464c-0.274,0.684-0.707,1.788-0.351,2.725c0.247,0.7,0.493,1.401,0.74,2.102
|
||||
c0.025-0.013,0.052-0.025,0.078-0.038c0.16-1.139,0.221-1.928-0.117-2.959c0.052,0.039,0.104,0.078,0.156,0.117
|
||||
c0.234,0.612,0.477,2.005,0.155,2.802c-0.169,0.312-0.338,0.623-0.506,0.935c0.038,0.493,0.077,0.986,0.116,1.479
|
||||
c-0.063,0.319-0.266,0.536-0.272,0.817c0.169,0.18,0.308,0.354,0.584,0.429c0-0.014,0-0.026,0-0.039
|
||||
c-0.065-0.168-0.13-0.338-0.194-0.506c0.052,0.026,0.104,0.052,0.155,0.078c0.987,2.605,1.743,0.387,3.659,0.7
|
||||
c0.039,0.052,0.077,0.104,0.116,0.155c0.093,0.303-0.046,0.63-0.272,0.74c0.121-0.228,0.24-0.435,0.117-0.701
|
||||
c-0.159,0.079-0.445,0.121-0.545,0.272c-0.334,0.604-0.686,1.132-0.856,1.868c0.207,0.107,0.181,0.286,0.272,0.507
|
||||
c0.064,0,0.13,0,0.194,0c0.039,0.116,0.077,0.232,0.117,0.35c0.026-0.013,0.052-0.026,0.077-0.039
|
||||
c0.064-0.091,0.131-0.182,0.195-0.271c0.064,0.012,0.13,0.025,0.194,0.038c0.11,0.154,0.177,0.239,0.233,0.468
|
||||
c0.025-0.014,0.053-0.026,0.078-0.039c0.064-0.091,0.129-0.183,0.194-0.273c0.065,0.014,0.13,0.026,0.195,0.039
|
||||
c0.128,0.178,0.216,0.385,0.35,0.584c0.013,0,0.026,0,0.039,0c0.054-0.214,0.141-0.264,0.272-0.389
|
||||
c0.359-0.01,0.438,0.059,0.623,0.194c0.127-0.13,0.363-0.278,0.622-0.155c0.171,0.087,0.201,0.211,0.312,0.35
|
||||
c0.014,0,0.026,0,0.039,0c0.037-0.353,0.191-0.442,0.389-0.623c0.053,0.026,0.104,0.053,0.156,0.078
|
||||
c0.078,0.078,0.156,0.156,0.234,0.234c0.043-0.285,0.141-0.391,0.35-0.506c0.179,0.09,0.215,0.191,0.351,0.311
|
||||
c0.052-0.13,0.104-0.259,0.155-0.39c0.064,0.027,0.13,0.052,0.195,0.079c0-0.336,0.094-0.441,0.232-0.624
|
||||
c-0.383-0.606-0.472-1.383-0.934-1.907c-0.156-0.052-0.312-0.104-0.467-0.155c-0.058,0.097-0.07,0.132-0.078,0.312
|
||||
c0.052,0.13,0.104,0.259,0.156,0.39c-0.053-0.039-0.104-0.078-0.156-0.117c-0.076-0.241-0.121-0.436-0.078-0.739
|
||||
c0.026-0.013,0.053-0.026,0.078-0.039c2.105-0.364,2.518,2.077,3.775-0.817c0.013,0,0.025,0,0.039,0
|
||||
c-0.053,0.194-0.104,0.39-0.156,0.584c0.264-0.068,0.463-0.252,0.584-0.467c-0.09-0.246-0.182-0.493-0.271-0.74
|
||||
c0.039-0.506,0.077-1.012,0.116-1.518c-0.155-0.272-0.312-0.545-0.468-0.817c-0.307-0.641-0.287-2.568,0.234-2.997
|
||||
c-0.216,0.671-0.553,2.329,0,2.958c0.013,0,0.025,0,0.039,0c0.271-0.855,0.545-1.713,0.816-2.569
|
||||
c0.125-0.665-0.139-1.211-0.271-1.635C21.191,8.758,19.036,7.817,15.846,7.259z M19.115,23.217c-0.012-0.22-0.025-0.441-0.038-0.661
|
||||
c0.155,0.12,0.176,0.455,0.194,0.7C19.22,23.243,19.168,23.23,19.115,23.217z M18.648,23.451c-0.04-0.213,0.058-0.464,0.117-0.7
|
||||
c0.202,0.197,0.192,0.468,0.156,0.817C18.83,23.529,18.74,23.49,18.648,23.451z M18.221,23.996c-0.215-0.413-0.33-0.767-0.078-1.207
|
||||
c0.039,0,0.078,0,0.117,0c0.188,0.323,0.133,0.702,0.078,1.13C18.299,23.944,18.26,23.97,18.221,23.996z M17.559,24.268
|
||||
c-0.064-0.013-0.129-0.026-0.193-0.039c-0.09-0.352-0.138-0.551-0.117-0.973c0.077-0.091,0.155-0.182,0.232-0.273
|
||||
c0.039,0,0.078,0,0.117,0c0.099,0.25,0.319,0.723,0.156,1.091C17.689,24.187,17.648,24.19,17.559,24.268z M17.014,24.424
|
||||
c-0.259,0.038-0.519,0.077-0.777,0.116c-0.159-0.325-0.076-0.852,0-1.207c0.09-0.052,0.182-0.104,0.271-0.155
|
||||
c0.065,0.013,0.13,0.026,0.195,0.039c0.158,0.234,0.532,0.674,0.35,1.09C17.04,24.346,17.027,24.385,17.014,24.424z M15.262,24.462
|
||||
c-0.038-0.038-0.077-0.077-0.115-0.116c-0.006-0.607,0.183-0.833,0.428-1.168c0.117,0.026,0.233,0.052,0.35,0.078
|
||||
c0.148,0.266,0.113,0.742,0.156,1.168c0,0.013,0,0.025,0,0.038C15.827,24.581,15.592,24.486,15.262,24.462z M14.718,24.268
|
||||
c-0.078-0.039-0.155-0.078-0.233-0.117c-0.092-0.446,0.006-0.866,0.155-1.168c0.039,0,0.078,0,0.117,0
|
||||
c0.309,0.415,0.224,0.705,0.116,1.246C14.821,24.242,14.77,24.255,14.718,24.268z M13.979,23.996
|
||||
c-0.187-0.348-0.164-0.825-0.039-1.207c0.064,0.014,0.13,0.026,0.194,0.039c0.14,0.506,0.066,0.647-0.077,1.129
|
||||
C14.03,23.97,14.004,23.983,13.979,23.996z M13.316,23.568c-0.041-0.348-0.02-0.577,0.117-0.817
|
||||
c0.064,0.194,0.129,0.389,0.193,0.583C13.535,23.459,13.495,23.518,13.316,23.568z M12.966,23.256c0.04-0.233,0.078-0.468,0.117-0.7
|
||||
c0.097,0.111,0.036,0.39,0.077,0.583c-0.051,0.039-0.104,0.078-0.154,0.117C12.992,23.256,12.979,23.256,12.966,23.256z
|
||||
M15.652,19.13c0.116,0.013,0.232,0.026,0.35,0.039c0.022,0.173,0.03,0.182,0.117,0.272c0.052-0.104,0.104-0.207,0.155-0.312
|
||||
c0.274,0.003,0.349,0.058,0.507,0.156c0.156,0.406,0.572,1.405,0.389,1.867c-0.078,0.091-0.156,0.183-0.233,0.273
|
||||
c-0.065-0.013-0.13-0.026-0.195-0.039c-0.155-0.312-0.312-0.623-0.467-0.934c-0.13,0.024-0.259,0.052-0.39,0.077
|
||||
c-0.088,0.334-0.245,0.754-0.545,0.896c-0.104-0.078-0.207-0.156-0.311-0.234C15.008,20.423,15.277,19.544,15.652,19.13z
|
||||
M11.526,16.368c0.39-0.008,0.934-0.061,1.206,0.077c0.428,0.377,0.857,0.753,1.285,1.129c0.519,0.272,1.037,0.545,1.557,0.817
|
||||
c-0.438-0.023-0.58-0.072-0.779,0.194c-0.609,0.284-0.826,0.696-1.789,0.701c0.012-0.026,0.025-0.052,0.038-0.078
|
||||
c0.356-0.039,0.7-0.145,0.896-0.351c0-0.013,0-0.025,0-0.038c-0.742,0.023-1.469,0.06-1.947-0.273
|
||||
c-0.219-0.233-0.44-0.467-0.661-0.7c0,0.013,0,0.025,0,0.038c0.165,0.435,0.413,0.684,0.584,1.052c-0.013,0-0.026,0-0.038,0
|
||||
c-0.438-0.304-0.732-0.792-0.857-1.401c-0.012-0.233-0.025-0.468-0.038-0.7c-0.067-0.108-0.146-0.043-0.233-0.039
|
||||
c-0.014-0.013-0.026-0.025-0.039-0.039c0-0.013,0-0.025,0-0.039C10.981,16.6,11.254,16.484,11.526,16.368z M11.487,16.639
|
||||
c-0.026,0.013-0.052,0.026-0.078,0.039c0.18,1.13,2.168,2.855,3.23,1.557c-0.013-0.025-0.026-0.052-0.039-0.077
|
||||
c-0.739-0.454-1.479-0.908-2.218-1.362C12.084,16.744,11.785,16.691,11.487,16.639z M19.699,16.368
|
||||
c0.864-0.021,1.299,0.131,1.83,0.35c0,0.026,0,0.053,0,0.078c-0.092,0-0.182,0-0.273,0c0.021,0.981-0.297,1.805-0.934,2.141
|
||||
c0.133-0.356,0.406-0.666,0.584-1.052c-0.013-0.013-0.025-0.025-0.039-0.038c-0.922,0.775-0.885,1.011-2.607,0.974
|
||||
c0.025,0.038,0.052,0.077,0.078,0.116c0.299,0.116,0.596,0.234,0.895,0.351c-0.924,0.022-1.6-0.414-1.984-0.935
|
||||
c-0.195,0.013-0.39,0.025-0.584,0.039c0.013-0.026,0.025-0.052,0.039-0.078C17.978,18.093,18.779,16.997,19.699,16.368z
|
||||
M20.712,16.639c-0.325,0.064-0.649,0.131-0.974,0.195c-0.713,0.467-1.427,0.934-2.141,1.4c0.621,0.797,2.33,0.145,2.725-0.389
|
||||
c0.169-0.39,0.338-0.779,0.506-1.168C20.789,16.666,20.75,16.652,20.712,16.639z M17.326,13.642
|
||||
c-0.004,0.419-1.005,1.074-1.363,1.323c0.053,0.065,0.104,0.131,0.156,0.195c0.195,0.182,0.389,0.363,0.584,0.545
|
||||
c-0.285-0.207-0.572-0.415-0.857-0.623c-0.287,0.204-0.725,0.608-1.051,0.623c0.273-0.26,0.545-0.519,0.818-0.779
|
||||
c-0.247-0.245-0.493-0.492-0.74-0.739c0.014-0.013,0.025-0.026,0.039-0.039c0.272,0.221,0.545,0.442,0.818,0.662
|
||||
C16.25,14.662,16.986,14.024,17.326,13.642z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AA998D" d="M16.193,31.532c-8.609,0-15.588-6.979-15.588-15.587
|
||||
S7.584,0.358,16.193,0.358c8.607,0,15.586,6.979,15.586,15.587S24.801,31.532,16.193,31.532z M16.161,1.039
|
||||
c-8.233,0-14.908,6.675-14.908,14.908s6.675,14.908,14.908,14.908s14.908-6.675,14.908-14.908S24.395,1.039,16.161,1.039z
|
||||
M16.203,30.374c-7.895,0-14.328-6.543-14.328-14.438c0-7.896,6.258-14.47,14.328-14.47s14.232,6.587,14.232,14.482
|
||||
C30.436,23.843,24.1,30.374,16.203,30.374z M16.193,1.979c-7.714,0-13.893,6.252-13.893,13.966s6.179,13.967,13.893,13.967
|
||||
c7.713,0,13.741-6.253,13.741-13.967S23.906,1.979,16.193,1.979z M16.193,26.765c-5.977,0-10.821-4.845-10.821-10.82
|
||||
s4.845-10.82,10.821-10.82c5.976,0,10.82,4.845,10.82,10.82S22.169,26.765,16.193,26.765z M16.171,5.597
|
||||
c-5.716,0-10.35,4.633-10.35,10.349s4.634,10.35,10.35,10.35s10.349-4.634,10.349-10.35S21.887,5.597,16.171,5.597z M21.23,5.147
|
||||
c-0.077,0.243-0.338,0.376-0.58,0.299l-1.189-0.383c-0.242-0.078-0.375-0.339-0.298-0.58l0.331-1.029
|
||||
c0.077-0.241,0.338-0.374,0.58-0.296l1.189,0.382c0.242,0.077,0.376,0.338,0.298,0.58L21.23,5.147z M19.93,3.502l-0.385,1.198
|
||||
l1.248,0.401l0.386-1.198L19.93,3.502z M16.918,4.216l1.393,0.159l0.049-0.435l-0.662-0.075c-0.043-0.005-0.189-0.031-0.271-0.162
|
||||
c-0.063-0.102-0.074-0.175-0.074-0.215l1.472,0.168l-0.085,0.755c-0.05,0.226-0.266,0.38-0.502,0.354l-1.328-0.151
|
||||
c-0.252-0.028-0.435-0.258-0.405-0.511l0.122-1.072c0.029-0.253,0.258-0.436,0.51-0.407l1.328,0.151
|
||||
c0.226,0.026,0.398,0.213,0.408,0.438l-1.814-0.207L16.918,4.216z M15.145,4.645l-1.27,0.148c-0.248,0.029-0.474-0.136-0.525-0.376
|
||||
l1.738-0.202L15.046,3.86l-1.265,0.148c-0.248,0.028-0.474-0.136-0.525-0.375l-0.034-0.297c-0.031-0.262,0.157-0.503,0.421-0.532
|
||||
l1.234-0.144c0.246-0.03,0.473,0.135,0.525,0.373l0.002-0.001l-1.703,0.2l0.04,0.344l1.267-0.147
|
||||
c0.247-0.029,0.473,0.135,0.523,0.374l0.035,0.309C15.598,4.375,15.408,4.615,15.145,4.645z M12.625,5.077l-1.149,0.404
|
||||
c-0.251,0.087-0.524-0.045-0.612-0.295l-0.345-0.983c-0.088-0.25,0.044-0.525,0.294-0.613l1.15-0.401
|
||||
c0.232-0.083,0.484,0.024,0.59,0.24l0.008,0.023l-1.549,0.542l0.364,1.04l1.551-0.544l0.008,0.023
|
||||
C12.992,4.75,12.859,4.995,12.625,5.077z M11.276,28.264l0.688-1.718l-0.263-0.105l0.067-0.167l1.053,0.423
|
||||
c0.367,0.148,0.614,0.348,0.739,0.603c0.124,0.254,0.12,0.546-0.014,0.876c-0.132,0.333-0.332,0.548-0.599,0.647
|
||||
c-0.266,0.097-0.583,0.072-0.951-0.075l-1.052-0.422l0.066-0.167L11.276,28.264z M11.996,28.553
|
||||
c0.214,0.085,0.398,0.081,0.553-0.016c0.155-0.098,0.293-0.296,0.413-0.596c0.117-0.298,0.156-0.535,0.112-0.711
|
||||
c-0.045-0.177-0.175-0.309-0.388-0.395l-0.191-0.076l-0.69,1.718L11.996,28.553z M13.955,27.069l1.133,0.083l-0.013,0.178
|
||||
l-0.281-0.02l-0.079,1.102c-0.021,0.275,0.009,0.47,0.086,0.586c0.077,0.116,0.22,0.182,0.428,0.196
|
||||
c0.202,0.016,0.351-0.029,0.443-0.135c0.094-0.104,0.15-0.292,0.17-0.565l0.079-1.104l-0.28-0.019l0.012-0.18l0.77,0.055
|
||||
l-0.014,0.18l-0.282-0.021l-0.081,1.133c-0.025,0.337-0.115,0.572-0.271,0.704c-0.156,0.133-0.405,0.188-0.749,0.163
|
||||
c-0.342-0.025-0.582-0.115-0.717-0.271c-0.135-0.155-0.191-0.401-0.167-0.737l0.081-1.131l-0.279-0.02L13.955,27.069z
|
||||
M18.061,28.561c-0.061-0.042-0.178-0.072-0.352-0.092l-0.339-0.037c-0.223-0.027-0.382-0.082-0.481-0.168
|
||||
c-0.102-0.086-0.164-0.219-0.188-0.398c-0.026-0.219,0.021-0.396,0.148-0.537c0.129-0.14,0.324-0.226,0.584-0.262
|
||||
c0.128-0.017,0.263-0.024,0.403-0.021c0.143,0.002,0.29,0.017,0.443,0.04l0.066,0.484l-0.188,0.025
|
||||
c-0.048-0.148-0.126-0.25-0.231-0.307c-0.104-0.057-0.244-0.074-0.421-0.051c-0.146,0.02-0.252,0.059-0.318,0.12
|
||||
c-0.067,0.061-0.094,0.14-0.082,0.24c0.013,0.091,0.047,0.157,0.104,0.197c0.058,0.041,0.189,0.073,0.394,0.099l0.339,0.037
|
||||
c0.211,0.023,0.369,0.084,0.475,0.179c0.106,0.096,0.172,0.237,0.197,0.426c0.028,0.222-0.026,0.399-0.163,0.534
|
||||
c-0.138,0.136-0.355,0.223-0.649,0.262c-0.145,0.02-0.288,0.027-0.432,0.02c-0.144-0.005-0.292-0.024-0.445-0.055l-0.068-0.519
|
||||
l0.187-0.024c0.051,0.16,0.135,0.273,0.249,0.34c0.117,0.069,0.269,0.089,0.454,0.064c0.154-0.02,0.265-0.064,0.336-0.132
|
||||
c0.072-0.068,0.101-0.159,0.085-0.271C18.156,28.667,18.122,28.602,18.061,28.561z M20.858,26.756l-0.187,0.069l-0.118-0.329
|
||||
l-0.574,0.208l0.621,1.718l0.276-0.1l0.061,0.168l-1.091,0.395l-0.061-0.169l0.275-0.099l-0.621-1.721l-0.569,0.207l0.118,0.329
|
||||
L18.8,27.5l-0.189-0.519l2.061-0.745L20.858,26.756z"/>
|
||||
<path fill="#5B4D35" d="M16.12,30.957c-8.248,0-14.958-6.71-14.958-14.958S7.872,1.041,16.12,1.041s14.958,6.71,14.958,14.958
|
||||
S24.368,30.957,16.12,30.957z M16.12,1.14c-8.192,0-14.858,6.666-14.858,14.858S7.928,30.857,16.12,30.857
|
||||
s14.858-6.666,14.858-14.858S24.313,1.14,16.12,1.14z M16.162,30.475c-3.824,0-7.434-1.518-10.16-4.272
|
||||
c-2.72-2.749-4.217-6.377-4.217-10.215c0-3.86,1.474-7.494,4.151-10.231c2.706-2.766,6.337-4.288,10.226-4.288
|
||||
c3.883,0,7.497,1.525,10.179,4.296c2.646,2.733,4.104,6.369,4.104,10.236C30.444,23.982,24.037,30.475,16.162,30.475z M16.162,1.568
|
||||
c-7.873,0-14.277,6.469-14.277,14.42c0,7.934,6.404,14.388,14.277,14.388c7.82,0,14.183-6.448,14.183-14.375
|
||||
C30.345,7.908,24.115,1.568,16.162,1.568z M16.152,30.013c-3.74,0-7.246-1.458-9.875-4.105c-2.623-2.643-4.066-6.162-4.066-9.911
|
||||
s1.443-7.269,4.066-9.911c2.629-2.646,6.135-4.104,9.875-4.104c3.73,0,7.21,1.458,9.799,4.105c2.574,2.633,3.992,6.152,3.992,9.91
|
||||
s-1.418,7.278-3.992,9.911C23.362,28.555,19.883,30.013,16.152,30.013z M16.152,2.081c-7.633,0-13.842,6.243-13.842,13.916
|
||||
c0,7.674,6.209,13.917,13.842,13.917c7.678,0,13.691-6.113,13.691-13.917S23.83,2.081,16.152,2.081z M16.152,26.667
|
||||
c-5.885,0-10.67-4.786-10.67-10.67s4.785-10.67,10.67-10.67c5.883,0,10.669,4.786,10.669,10.67S22.035,26.667,16.152,26.667z
|
||||
M16.152,5.458c-5.812,0-10.539,4.729-10.539,10.539s4.728,10.539,10.539,10.539c5.811,0,10.538-4.729,10.538-10.539
|
||||
S21.963,5.458,16.152,5.458z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 231 KiB |
Before Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 214 KiB |
Before Width: | Height: | Size: 210 KiB |
Before Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 212 KiB |
@@ -1,877 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_5_copy_10">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B62025" d="M28.327,1.022L3.847,1.011l0.285,19.666
|
||||
c-0.004,0.105-0.007,0.211-0.007,0.317c0,5.585,5.459,9.971,12.194,9.971c6.531,0,11.862-4.117,12.179-9.467h0.028L28.327,1.022z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M6.525,9.676c-0.745,0.536-1.596,1.148-2.526,1.818l0.007,0.455c0.895-0.645,1.72-1.238,2.452-1.766
|
||||
L6.525,9.676z"/>
|
||||
<path fill="#010101" d="M6.682,15.186c-0.812,0.584-1.685,1.213-2.603,1.874l0.007,0.454c0.905-0.652,1.77-1.274,2.577-1.855
|
||||
L6.682,15.186z"/>
|
||||
<path fill="#010101" d="M6.559,12.463c-0.771,0.555-1.617,1.164-2.52,1.813l0.006,0.455c0.879-0.633,1.708-1.229,2.468-1.777
|
||||
L6.559,12.463z"/>
|
||||
<path fill="#010101" d="M7.175,17.642c-0.956,0.688-1.982,1.428-3.055,2.2l0.006,0.454c1.109-0.798,2.171-1.563,3.16-2.274
|
||||
L7.175,17.642z"/>
|
||||
<path fill="#010101" d="M10.208,24.514c-0.749,1.313-1.479,2.597-2.176,3.819c0.099,0.076,0.201,0.148,0.303,0.22
|
||||
c0.679-1.191,1.391-2.44,2.12-3.719L10.208,24.514z"/>
|
||||
<path fill="#010101" d="M9.585,23.802l-0.194-0.339c-1.07,1.157-2.095,2.268-3.047,3.297c0.082,0.095,0.164,0.188,0.249,0.28
|
||||
C7.528,26.028,8.536,24.938,9.585,23.802z"/>
|
||||
<path fill="#010101" d="M7.984,19.871c-1.16,0.834-2.411,1.735-3.715,2.675c0.025,0.133,0.055,0.265,0.086,0.396
|
||||
c1.282-0.923,2.516-1.811,3.662-2.636L7.984,19.871z"/>
|
||||
<path fill="#010101" d="M10.614,26.783c-0.198,0.938-0.394,1.865-0.585,2.772c0.114,0.056,0.23,0.108,0.346,0.162
|
||||
c0.195-0.921,0.394-1.862,0.595-2.815L10.614,26.783z"/>
|
||||
<path fill="#010101" d="M8.629,22.196L8.52,21.799c-1.235,1.069-2.409,2.085-3.482,3.014c0.057,0.114,0.118,0.226,0.18,0.337
|
||||
C6.269,24.239,7.418,23.245,8.629,22.196z"/>
|
||||
<polygon fill="#010101" points="7.714,8.814 18.546,1.018 17.908,1.017 7.497,8.512 "/>
|
||||
<polygon fill="#010101" points="6.382,6.962 14.643,1.016 14.005,1.015 6.164,6.66 "/>
|
||||
<polygon fill="#010101" points="9.047,10.666 22.448,1.019 21.811,1.019 8.83,10.364 "/>
|
||||
<polygon fill="#010101" points="8.412,5.506 3.959,8.712 3.965,9.167 8.63,5.809 "/>
|
||||
<polygon fill="#010101" points="10.38,12.518 26.351,1.021 25.713,1.021 10.163,12.215 "/>
|
||||
<polygon fill="#010101" points="7.011,1.012 3.88,3.267 3.886,3.721 7.648,1.013 "/>
|
||||
<polygon fill="#010101" points="10.914,1.014 3.92,6.049 3.927,6.503 11.551,1.014 "/>
|
||||
<path fill="#010101" d="M23.21,18.807c1.813-1.091,3.593-2.163,5.259-3.166l-0.004-0.432c-1.698,1.022-3.519,2.118-5.376,3.236
|
||||
L23.21,18.807z"/>
|
||||
<path fill="#010101" d="M22.39,17.653c2.124-1.684,4.194-3.326,6.053-4.8l-0.005-0.472c-1.897,1.505-4.027,3.194-6.215,4.929
|
||||
L22.39,17.653z"/>
|
||||
<path fill="#010101" d="M23.563,20.053c1.686-0.624,3.348-1.239,4.931-1.825l-0.004-0.396c-1.621,0.6-3.325,1.231-5.056,1.871
|
||||
L23.563,20.053z"/>
|
||||
<polygon fill="#010101" points="17.888,18.148 28.419,10.566 28.415,10.11 17.67,17.846 "/>
|
||||
<polygon fill="#010101" points="16.555,16.296 28.393,7.775 28.388,7.319 16.337,15.994 "/>
|
||||
<path fill="#010101" d="M12.497,27.38c-0.06,1.031-0.118,2.048-0.176,3.043c0.122,0.034,0.244,0.069,0.368,0.1
|
||||
c0.057-0.976,0.114-1.973,0.172-2.984L12.497,27.38z"/>
|
||||
<polygon fill="#010101" points="13.671,12.291 13.889,12.593 28.338,2.191 28.334,1.735 "/>
|
||||
<polygon fill="#010101" points="15.222,14.445 28.365,4.982 28.361,4.527 15.004,14.142 "/>
|
||||
<path fill="#010101" d="M23.838,21.441c1.596-0.33,3.169-0.656,4.678-0.967l-0.003-0.38c-1.518,0.314-3.103,0.642-4.711,0.974
|
||||
L23.838,21.441z"/>
|
||||
<path fill="#010101" d="M24.738,22.667c1.196,0.119,2.377,0.235,3.529,0.35c0.03-0.121,0.055-0.244,0.08-0.366
|
||||
c-1.139-0.113-2.308-0.229-3.491-0.346L24.738,22.667z"/>
|
||||
<path fill="#010101" d="M18.717,28.223c0.4,0.793,0.791,1.567,1.169,2.315c0.124-0.03,0.246-0.063,0.368-0.097
|
||||
c-0.379-0.751-0.771-1.527-1.174-2.325L18.717,28.223z"/>
|
||||
<path fill="#010101" d="M16.639,27.706c0.289,1.092,0.573,2.168,0.85,3.214c0.126-0.009,0.251-0.022,0.376-0.036
|
||||
c-0.28-1.055-0.566-2.14-0.858-3.242L16.639,27.706z"/>
|
||||
<path fill="#010101" d="M14.39,27.779c0.138,1.053,0.274,2.093,0.406,3.107c0.126,0.012,0.252,0.025,0.38,0.034
|
||||
c-0.134-1.021-0.27-2.067-0.409-3.127L14.39,27.779z"/>
|
||||
<path fill="#010101" d="M20.513,28.1c0.495,0.592,0.981,1.176,1.459,1.748c0.12-0.05,0.236-0.104,0.353-0.158
|
||||
c-0.489-0.586-0.989-1.185-1.497-1.793L20.513,28.1z"/>
|
||||
<path fill="#010101" d="M23.988,24.341c1.166,0.27,2.318,0.537,3.443,0.797c0.063-0.113,0.124-0.226,0.181-0.341
|
||||
c-1.13-0.261-2.288-0.529-3.46-0.801L23.988,24.341z"/>
|
||||
<path fill="#010101" d="M21.887,27.255c0.755,0.479,1.504,0.955,2.242,1.422c0.112-0.076,0.222-0.153,0.33-0.231
|
||||
c-0.769-0.488-1.55-0.984-2.338-1.484L21.887,27.255z"/>
|
||||
<path fill="#010101" d="M22.938,25.776c1.027,0.452,2.044,0.9,3.041,1.339c0.09-0.095,0.18-0.192,0.266-0.29
|
||||
c-1.032-0.455-2.089-0.92-3.156-1.39L22.938,25.776z"/>
|
||||
</g>
|
||||
<g id="Shape_5_copy_9">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#18224E" d="M27.133,2.252l-22.07-0.01l0.258,18.053
|
||||
c-0.003,0.098-0.006,0.195-0.006,0.292c0,5.126,4.921,9.153,10.993,9.153c5.888,0,10.694-3.779,10.979-8.691l0.025,0L27.133,2.252
|
||||
z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0C1118" d="M27.035,6.403l-0.077-4.22L26.22,2.18L16,12.443L5.752,2.162
|
||||
l-0.67,0.005l0.086,4.44l8.333,8.333c0,0-4.266,4.298-7.785,7.817c0.216,1.189,1.008,1.934,1.749,3.189
|
||||
C11.054,22.357,16,17.439,16,17.439s5.166,5.168,8.744,8.747c0.534-0.654,1.746-1.57,1.912-3.037
|
||||
c-3.563-3.563-8.158-8.208-8.158-8.208L27.035,6.403z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_5_copy_15">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0C1529" d="M26.956,2.212L5.094,2.202l0.255,17.934
|
||||
c-0.003,0.097-0.006,0.193-0.006,0.291c0,5.092,4.875,9.092,10.89,9.092c5.833,0,10.594-3.754,10.877-8.634h0.024L26.956,2.212z
|
||||
M16.229,29.15c-5.836,0-10.567-4.025-10.567-8.904c0-0.093,0.002-0.186,0.005-0.278L5.421,2.541l21.214,0.01L26.8,20.793
|
||||
C26.525,25.468,21.889,29.15,16.229,29.15z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_5_copy_16">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFE4B1" d="M27.131,1.992L4.916,1.982l0.259,18.224
|
||||
c-0.003,0.098-0.006,0.196-0.006,0.295c0,5.174,4.954,9.239,11.065,9.239c5.927,0,10.79-3.782,11.078-8.74v-0.033L27.131,1.992z
|
||||
M16.231,29.364c-5.93,0-10.737-4.09-10.737-9.048c0-0.094,0.002-0.188,0.005-0.282L5.248,2.326l21.557,0.01l0.167,18.537
|
||||
C26.693,25.623,21.982,29.364,16.231,29.364z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_5_copy_17">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFE4B1" d="M28.587,0.703L3.548,0.691L3.84,20.836
|
||||
c-0.004,0.108-0.007,0.217-0.007,0.326c0,5.72,5.584,10.213,12.472,10.213c6.68,0,12.162-4.181,12.486-9.661v-0.037L28.587,0.703z
|
||||
M16.301,30.96c-6.684,0-12.103-4.521-12.103-10.001c0-0.104,0.003-0.208,0.007-0.312L3.922,1.071l24.297,0.011l0.188,20.492
|
||||
C28.094,26.825,22.783,30.96,16.301,30.96z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#E2CCA8" d="M24.619,15.825c-0.096-0.134-0.233-0.019-0.214-0.326c0.019-0.306,0.23-1.15,0.25-1.495
|
||||
c0.019-0.345-0.036-0.53-0.189-0.99c-0.153-0.46-0.472-0.511-0.741-0.703c-0.269-0.191-1.293,0.313-1.293,0.313l-1.82,0.996
|
||||
c0,0-0.077-0.115,0.027-0.271c0.104-0.156,0.088-0.399,0.146-0.553s-0.093-0.46-0.189-0.537c-0.086-0.069-0.694-0.234-0.813-0.292
|
||||
c0.002-0.002,0.004-0.003,0.004-0.003s-0.004,0-0.011,0c-0.01-0.005-0.016-0.008-0.016-0.008s-0.048-0.098-0.048-0.29
|
||||
c0-0.192,0.405-0.531,0.405-0.531l0.543-0.205L20.3,11.57l0.255,0.396c0,0,0.249,0.083,0.383,0.102
|
||||
c0.134,0.02,0.46-0.204,0.46-0.204l0.189-0.218l0.297-0.754l-0.055-0.053l0.106-0.087c0,0-0.365-0.402-0.709-0.422
|
||||
c-0.345-0.019-1.169,0.096-1.361,0.307c-0.192,0.21-0.469,0.383-0.469,0.651c0,0.082-0.072,0.16-0.058,0.268l0.077,0.422
|
||||
l-0.288,0.102c-0.117,0.031-0.23,0.073-0.277,0.128c-0.115,0.134-0.115-0.096-0.115-0.096l-0.146-0.053
|
||||
c-0.006-0.032-0.006-0.095,0.012-0.219c0.056-0.161,0.119-0.393,0.096-0.571c-0.039-0.307-0.077-0.748-0.153-0.843
|
||||
c-0.077-0.096-0.264-0.202-0.412-0.307c-0.048-0.034-0.146-0.053-0.23-0.077c-0.033-0.018-0.076,0.005-0.108-0.006
|
||||
c-0.123-0.043-0.27-0.046-0.419-0.03c-0.032-0.001-0.064-0.002-0.096-0.002c-0.271,0-0.617,0.18-0.693,0.221
|
||||
c-0.002-0.008-0.016-0.058-0.035-0.13c-0.029-0.203-0.091-0.574-0.173-0.723c-0.025-0.046-0.059-0.095-0.094-0.144
|
||||
c-0.099-0.19-0.215-0.38-0.215-0.38s-0.024,0.024-0.058,0.061c-0.01-0.01-0.016-0.016-0.016-0.016s-0.024,0.039-0.059,0.098
|
||||
c-0.084,0.096-0.189,0.224-0.251,0.336c-0.115,0.211-0.202,0.939-0.202,0.939s-0.383-0.204-0.69-0.204
|
||||
c-0.306,0-0.586-0.009-0.734,0.096c-0.149,0.105-0.268,0.172-0.345,0.269c-0.045,0.056-0.122,0.224-0.186,0.414
|
||||
c-0.116,0.242-0.174,0.509-0.121,0.755c0.134,0.613,0.039,0.537,0.039,0.537l-0.03,0.039l-0.065-0.006c0,0,0.004,0.04,0.005,0.085
|
||||
l-0.061,0.081l-0.143-0.082c-0.046-0.029-0.1-0.059-0.155-0.088l-0.215-0.123L12.678,11.5c0,0-0.003-0.015-0.008-0.038
|
||||
c0.005-0.061,0.008-0.12,0.008-0.173c0-0.158-0.113-0.256-0.246-0.353c-0.03-0.035-0.063-0.065-0.1-0.088
|
||||
c-0.028-0.017-0.058-0.036-0.089-0.055c-0.029-0.025-0.058-0.051-0.083-0.079c-0.065-0.071-0.191-0.12-0.342-0.153
|
||||
c-0.149-0.066-0.301-0.115-0.444-0.115c-0.326,0-0.805,0.115-0.805,0.115l-0.392,0.376l0.296,0.754l0.173,0.402
|
||||
c0,0,0.345,0.115,0.479,0.096c0.135-0.02,0.501-0.217,0.501-0.217l0.194-0.35l-0.388-0.544l0.537,0.172c0,0,0.383,0.268,0.383,0.46
|
||||
c0,0.086-0.01,0.153-0.021,0.201c-0.029,0.009-0.054,0.008-0.054,0.008s0.016,0.015,0.042,0.04
|
||||
c-0.009,0.027,0.033,0.135,0.033,0.135s-0.748,0.249-0.843,0.326s-0.287,0.269-0.23,0.421c0.058,0.153,0.042,0.396,0.146,0.553
|
||||
c0.104,0.157-0.082,0.22-0.082,0.22l-1.738-0.881c0,0-0.895-0.466-1.163-0.274c-0.269,0.191-0.594,0.153-0.748,0.613
|
||||
c-0.153,0.459-0.307,0.632-0.288,0.977c0.019,0.345,0.23,1.188,0.249,1.495s-0.115,0.23-0.21,0.364s-0.134,0.459-0.058,0.613
|
||||
c0.077,0.153,0.077,0.421,0.287,0.652c0.211,0.23,0.825,0.843,0.997,1.016c0.172,0.173,1.208,1.667,1.361,2.319
|
||||
c0.153,0.651,0.038,1.571,0.038,1.571l0.143-0.215l-0.009,0.542c0,0,0.096,0.92,0.288,1.13c0.191,0.211,0.46,0.748,0.651,0.92
|
||||
c0.192,0.172,0.402,0.287,0.479,0.44c0.077,0.154,0.096,0.441,0.039,0.518c-0.058,0.077-0.153-0.134-0.153-0.134
|
||||
s-0.032-0.258-0.121-0.264c-0.089-0.005-0.152-0.017-0.294,0.037c-0.141,0.054-0.275,0.175-0.237,0.418
|
||||
c0.031,0.193,0.058,0.307,0.153,0.383c0.096,0.077,0.471,0.316,0.563,0.268s0.339,0.02,0.396-0.057
|
||||
c0.058-0.077,0.192-0.288,0.269-0.479c0.076-0.191,0.287-0.533,0.287-0.533l0.733-0.037c0,0-0.197,0.321-0.197,0.513
|
||||
s0.173,0.556,0.288,0.613c0.115,0.057,0.364,0.172,0.498,0.153c0.135-0.019,0.556-0.096,0.652-0.172
|
||||
c0.096-0.076,0.383-0.191,0.421-0.402c0.038-0.211,0.326-0.499,0.326-0.499s0.159,0.313,0.313,0.332
|
||||
c0.052,0.006,0.32,0.006,0.371,0.025c-0.16,0.224-0.016,0.69,0.081,0.576c0.013,0.014,0.025,0.028,0.038,0.043
|
||||
c0.098,0.116,0.153,0.181,0.317,0.043c0.165-0.138,0.241-0.291,0.222-0.425c-0.017-0.117-0.134-0.19-0.165-0.27
|
||||
c0.064-0.024,0.167,0.033,0.235,0.027c0.255-0.025,0.332-0.358,0.332-0.358s0.112,0.25,0.151,0.46
|
||||
c0.038,0.211,0.328,0.307,0.424,0.383s0.543,0.147,0.677,0.166c0.134,0.02,0.355-0.07,0.47-0.127C18.828,26.041,19,25.676,19,25.485
|
||||
s-0.246-0.652-0.246-0.652l0.817,0.128c0,0,0.089,0.358,0.166,0.549c0.077,0.192,0.173,0.256,0.23,0.333s0.332,0.191,0.562,0.128
|
||||
c0.1-0.028,0.39-0.128,0.485-0.205c0.096-0.077,0.186-0.271,0.211-0.495c0.022-0.195-0.108-0.32-0.249-0.374
|
||||
c-0.142-0.054-0.213,0.07-0.303,0.076c-0.09,0.005-0.122,0.263-0.122,0.263s-0.096,0.211-0.153,0.134s-0.122-0.416-0.045-0.569
|
||||
s0.374-0.287,0.565-0.46c0.192-0.172,0.458-0.639,0.649-0.85c0.191-0.21,0.288-1.131,0.288-1.131l-0.008-0.541l0.143,0.215
|
||||
c0,0-0.074-0.904,0.079-1.556s1.138-2.233,1.31-2.406s0.76-0.728,0.971-0.958s0.205-0.499,0.281-0.651
|
||||
C24.708,16.311,24.714,15.959,24.619,15.825z M16.543,10.96c0,0,0.792-0.118,0.881-0.118s0.077,0.04,0.196,0.098
|
||||
c0.119,0.06,0.136,0.283,0.174,0.466c0.039,0.184-0.013,0.315-0.051,0.434c-0.039,0.118-0.665,0.394-0.652,0.341
|
||||
c0.013-0.053-0.013-0.289-0.077-0.42c-0.063-0.132-0.166-0.145-0.243-0.158s-0.358,0.079-0.358,0.079L16.543,10.96z M14.431,11.194
|
||||
c0,0,0.17-0.238,0.234-0.263c0.063-0.025,0.498,0.154,0.613,0.103c0.115-0.051,0.23-0.064,0.23-0.064l0.089,0.703
|
||||
c0,0-0.294-0.026-0.371,0.013s-0.189,0.182-0.21,0.206c-0.02,0.024-0.02,0.382-0.02,0.382l-0.601-0.294c0,0-0.051-0.32-0.051-0.422
|
||||
S14.431,11.194,14.431,11.194z M10.576,18.406c-0.063-0.205-0.613-1.495-0.613-1.495l-0.191-0.166l-0.254-0.051l-0.22,0.073
|
||||
L9.03,17.026l-0.179,0.281l-0.217-0.204L8.378,16.63c0,0,0.218-0.153,0.282-0.192c0.064-0.038,0.038-0.077,0.038-0.269
|
||||
c0-0.191-0.064-0.038-0.192-0.166c-0.127-0.127-0.23-0.153-0.23-0.153s0.002-0.276,0.141-0.23c0.192,0.064,0.601,0.013,0.818-0.025
|
||||
c0.217-0.039,0.345-0.141,0.447-0.243c0,0,0.409,0.575,0.728,0.792c0.212,0.144,0.46,0.192,0.46,0.192l0.089,2.108
|
||||
c0,0-0.013,0.459-0.115,0.434C10.742,18.853,10.64,18.611,10.576,18.406z M10.774,21.927c0.006-0.205,0.115-0.314,0.236-0.448
|
||||
c0.122-0.134,0.416-0.172,0.435-0.179c0.02-0.006,0.108,0.07,0.153,0.096c0.045,0.026,0.205,0.333,0.205,0.403
|
||||
c0,0-0.856,0.511-0.914,0.517C10.832,22.322,10.768,22.13,10.774,21.927z M16.032,25.51c0.025-0.025,0.122-0.287,0.051-0.498
|
||||
c-0.071-0.211,0.121-0.02,0.223-0.039s-0.006,0.141,0.006,0.269s0.083,0.288,0.083,0.288L16.032,25.51z M21.271,21.843
|
||||
c-0.025,0.166-0.046,0.261-0.093,0.277c-0.048,0.017-0.188-0.175-0.418-0.265c-0.23-0.089-0.462-0.212-0.462-0.212
|
||||
c-0.036-0.043-0.023-0.057,0.143-0.286c0.166-0.23,0.294-0.077,0.332-0.077c0.039,0,0.281-0.205,0.37,0.063
|
||||
C21.232,21.613,21.296,21.677,21.271,21.843z M23.737,15.736c0,0-0.332,0.051-0.357,0.128c-0.026,0.076-0.077,0.204-0.051,0.242
|
||||
c0.025,0.039,0.115,0.217,0.204,0.23c0.089,0.013,0.153,0.077,0.153,0.077l-0.217,0.434c0,0-0.14,0.256-0.204,0.256
|
||||
s-0.243-0.269-0.281-0.345c-0.039-0.077-0.179-0.217-0.293-0.23c-0.115-0.013-0.093-0.036-0.243-0.013
|
||||
c-0.13,0.02-0.245,0.278-0.352,0.362c-0.108,0.084-0.364,0.736-0.453,0.954c-0.089,0.217-0.248,0.705-0.354,0.806
|
||||
c-0.07,0.067-0.122-0.005-0.148-0.062c-0.014,0.236-0.025,0.397-0.035,0.431c-0.049,0.18-0.276,0.632-0.409,0.704
|
||||
c-0.132,0.071-0.246,0.569-0.358,0.664c-0.112,0.095-0.07,0.479-0.051,0.652c0.02,0.172-0.231,0.392-0.281,0.498
|
||||
c-0.049,0.106-0.191,0.108-0.307,0.166c-0.115,0.058-0.124,0.383-0.143,0.441c-0.02,0.058,0.057,0.23,0.096,0.307
|
||||
c0.016,0.031,0.279,0.219,0.558,0.089c0.192-0.089,0.085-0.419,0.205-0.358c0.754,0.39,0.625,1.024,0.563,1.08
|
||||
c-0.044,0.039-0.543-0.262-0.78-0.122c-0.16,0.096-0.313,0.447,0.198,0.748c0.072,0.042-0.242,0.286-0.319,0.255
|
||||
c-0.409-0.16-0.709-0.313-1.15-0.332c-0.337-0.015-0.728-0.054-0.792-0.013c-0.211,0.134-0.045-0.179-0.045-0.179
|
||||
s-0.021-0.238-0.307-0.281c-0.285-0.042-0.587,0.306-0.587,0.306s-0.25-0.268-0.46-0.306c-0.21-0.039-0.46,0.268-0.46,0.268
|
||||
s-0.031,0.091-0.08,0.222c-0.006-0.123-0.008-0.205-0.008-0.205s-0.212-0.381-0.423-0.343c-0.211,0.039-0.4,0.363-0.4,0.363
|
||||
s-0.157-0.308-0.445-0.33c-0.547-0.04-0.395,0.626-0.395,0.626s-0.2-0.014-0.446-0.06c-1.259-0.237-1.985,0.484-2.121,0.383
|
||||
c-0.04-0.029-0.38-0.293-0.275-0.313c0.511-0.096,0.379-0.368,0.364-0.524c-0.016-0.166-0.307-0.179-0.364-0.223
|
||||
c-0.054-0.042-0.366,0.278-0.537,0.204c-0.155-0.067-0.205-0.632,0.435-1.022c0.154-0.095,0.394,0.33,0.428,0.326
|
||||
c0.249-0.032,0.364-0.14,0.402-0.217c0.039-0.077,0.116-0.25,0.097-0.307c-0.02-0.057-0.039-0.191-0.154-0.249
|
||||
c-0.115-0.058-0.284-0.133-0.333-0.24c-0.05-0.106-0.273-0.553-0.254-0.726c0.019-0.172,0.218-0.399,0.105-0.493
|
||||
c-0.112-0.095-0.384-0.489-0.516-0.56s-0.225-0.018-0.275-0.198c-0.05-0.18-0.203-4.473-0.203-4.473s0.063-0.961,0.137-0.931
|
||||
s1.377,0.414,1.569,0.395c0.191-0.019,0.958-0.383,1.092-0.575c0.134-0.191,0.326-0.575,0.441-0.671
|
||||
c0.115-0.096,0.268,0.096,0.46,0.077c0.176-0.018,0.351-0.163,0.377-0.187c-0.012,0.012-0.027,0.049,0.168,0.094c0,0,0,0,0.001,0
|
||||
c0.023,0.022,0.046,0.042,0.066,0.057c0.054,0.04,0.106,0.028,0.164,0.002c0.106,0.03,0.169,0.052,0.169,0.052l0.434,0.039
|
||||
c0,0,0.055-0.024,0.131-0.053c0.012,0.005,0.02,0.009,0.02,0.009l0.434-0.039c0,0,0.021-0.007,0.057-0.019
|
||||
c0.104,0.049,0.188,0.117,0.276,0.054c0.061-0.044,0.136-0.126,0.218-0.198c0.007-0.004,0.013-0.009,0.016-0.013
|
||||
c0.006-0.005,0.013-0.01,0.019-0.016c0.054,0.044,0.207,0.158,0.361,0.173c0.191,0.019,0.345-0.172,0.46-0.077
|
||||
c0.115,0.096,0.306,0.479,0.44,0.671c0.135,0.191,0.968,0.358,1.159,0.377s1.498-0.366,1.571-0.396
|
||||
c0.074-0.03,0.154,1.112,0.154,1.112s-0.021,0.651-0.048,1.417l0.023-0.42c0,0,0.498-0.127,0.651-0.255
|
||||
c0.153-0.127,0.485-0.652,0.485-0.652s0.997,0.256,1.329,0.205C24.043,15.416,23.737,15.736,23.737,15.736z"/>
|
||||
<g id="Color_Fill_6">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#194795" d="M21.113,14.092c0,0-0.544,0.192-0.676,0.236
|
||||
c-0.132,0.044-0.879,0.121-1.021,0.121s-0.934-0.264-0.978-0.319s-0.396-0.769-0.396-0.769l-0.209-0.132l-0.439-0.176
|
||||
l-0.203,0.132c0,0-0.176,0.354-0.319,0.354c-0.143,0-0.379-0.08-0.379-0.08s-0.121,0.121-0.187,0.099s-0.402-0.013-0.489,0
|
||||
c-0.219,0.033-0.313-0.121-0.313-0.121s-0.296,0-0.385,0c-0.088,0-0.329-0.198-0.329-0.198s-0.739,0.195-0.815,0.371
|
||||
c-0.077,0.176-0.451,0.675-0.451,0.675s-0.565,0.348-0.785,0.363c-0.574,0.039-1.728-0.343-1.728-0.343l-0.044,0.066
|
||||
c0,0-0.066,1.921-0.066,2.131c0,0.208,0.044,2.724,0.11,2.943s0.088,0.308,0.088,0.308s0.198,0.099,0.252,0.154
|
||||
c0.055,0.055,0.252,0.318,0.252,0.318s0.264,0.176,0.264,0.242s-0.011,0.417-0.011,0.417l-0.231,0.308l0.331,0.148l0.001,0.39
|
||||
h0.206c0,0,0.363,0.307,0.385,0.362c0.022,0.055-0.055,0.341-0.055,0.341l-0.11,0.132c0,0,0.231,0.087,0.33,0.187
|
||||
c0.099,0.099,0.944,0.846,0.944,0.846l0.648,0.275c0,0,0.286,0.077,0.318,0.121c0.033,0.044-0.109-0.23-0.099-0.363
|
||||
c0.011-0.131,0.143-0.286,0.143-0.286s0.253-0.099,0.318-0.011c0.066,0.088,0.374,0.296,0.374,0.296s0.143-0.33,0.307-0.34
|
||||
s0.297,0.044,0.297,0.044l0.143,0.143l0.132,0.143c0,0,0.219-0.351,0.352-0.329c0.132,0.022,0.34,0.121,0.34,0.121l0.176,0.264
|
||||
l0.044,0.143l0.176-0.363c0,0,0.11-0.154,0.296-0.121c0.187,0.033,0.341,0.154,0.341,0.154l0.129,0.061l1.305-0.917l0.167-0.258
|
||||
c0,0-0.085-0.39-0.041-0.488s0.211-0.209,0.211-0.209l0.261-0.176l0.302-0.483c0,0-0.096-0.252-0.042-0.494
|
||||
c0.055-0.242,0.398-0.801,0.398-0.801l0.5-0.745l0.027-3.111l0.052-0.863L21.113,14.092z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_5">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B62025" d="M21.047,14.092l-0.955,0.264c0,0-0.544,0.115-0.906,0.066
|
||||
c-0.363-0.049-0.775-0.215-0.808-0.313s-0.214-0.922-0.214-0.922s-0.395,0.099-0.577,0.049c-0.181-0.049-0.412-0.214-0.412-0.214
|
||||
s0,0.313-0.082,0.362c-0.083,0.05-0.23,0.132-0.313,0.099c-0.082-0.033-0.296-0.033-0.296-0.033s-0.198,0.165-0.264,0.148
|
||||
c-0.007-0.002-0.019-0.004-0.033-0.007v4.735H10.94c0.004,0.453,0.009,0.857,0.023,0.923c0.033,0.148,0.115,0.461,0.115,0.461
|
||||
s0.214,0.033,0.28,0.132s0.132,0.313,0.23,0.378c0.099,0.066,0.28,0.198,0.28,0.198l-0.065,0.51l-0.231,0.297l0.29,0.106
|
||||
l0.067,0.345l0.088,0.01l0.23,0.05l0.297,0.329v0.247l-0.149,0.231l0.445,0.362l0.791,0.643l0.527,0.264l0.363,0.115
|
||||
c0,0-0.099-0.379,0.017-0.527c0.115-0.148,0.313-0.132,0.378-0.099c0.066,0.033,0.429,0.28,0.429,0.28s0.181-0.28,0.313-0.313
|
||||
c0.131-0.033,0.33,0.017,0.379,0.099c0.034,0.056,0.106,0.174,0.148,0.243v-5.269h4.943v-1.12l0.082-1.417v-1.071L21.047,14.092z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#6E563E" d="M18.281,11.341c0.136,0.092,0.1,0.086,0.073,0.256
|
||||
c-0.024,0-0.049,0-0.073,0C18.281,11.512,18.281,11.426,18.281,11.341z M24.734,13.981c-0.092,0.555-0.189,0.97-0.22,1.503
|
||||
c0.013,0,0.025,0,0.037,0c0-0.024,0-0.049,0-0.073c0.024-0.073,0.049-0.146,0.073-0.22c0.012,0,0.024,0,0.037,0
|
||||
c0.008,0.555,0.118,1.171-0.073,1.613c-0.257,0.594-0.883,0.905-1.247,1.393c-0.342,0.563-0.685,1.125-1.027,1.687
|
||||
c-0.356,0.701-0.079,1.689-0.293,2.236c-0.024-0.049-0.049-0.098-0.073-0.146c0.033,1.392-0.73,2.226-1.614,2.896
|
||||
c0.024,0.098,0.049,0.196,0.073,0.293c0.087-0.01,0.046,0.008,0.147-0.037c0.042-0.184,0.08-0.189,0.183-0.293
|
||||
c0.11,0.012,0.22,0.024,0.33,0.037c0.074,0.073,0.147,0.146,0.221,0.22c0.013,0.439-0.149,0.714-0.44,0.843
|
||||
c-0.14,0.09-0.493,0.168-0.697,0.073c-0.457-0.18-0.456-0.564-0.66-0.99c-0.191-0.058-0.309-0.07-0.587-0.11
|
||||
c-0.024,0.012-0.049,0.024-0.073,0.037c0.192,0.276,0.266,0.56,0.22,0.917c-0.647,0.706-1.673,0.314-2.09-0.331
|
||||
c-0.159,0.049-0.258,0.093-0.426,0.092c0.223,0.125,0.179,0.442,0.023,0.642c-0.118,0.069-0.263,0.115-0.385,0.106
|
||||
c-0.408-0.149-0.378-0.312-0.312-0.766c-0.267,0.032-0.372-0.018-0.55-0.147c-0.008-0.013-0.012-0.058-0.034-0.091l-0.156,0.181
|
||||
c-0.308,0.674-1.637,1.278-2.121,0.314c0.026-0.312,0.096-0.595,0.257-0.844c-0.315-0.007-0.488,0.044-0.697,0.11
|
||||
c-0.147,0.565-0.274,1.065-0.99,1.063c-0.462-0.132-0.777-0.316-0.77-0.917c0.06-0.117,0.068-0.153,0.183-0.22
|
||||
c0.09-0.077,0.272-0.104,0.404-0.037c0.085,0.11,0.171,0.22,0.256,0.33c0-0.024,0-0.049,0-0.073c0.155-0.224,0.01-0.365-0.11-0.513
|
||||
c-0.799-0.296-1.442-1.631-1.393-2.604c-0.037,0.037-0.074,0.073-0.11,0.11c0.013-0.416,0.024-0.832,0.037-1.247
|
||||
C9.9,20.14,9.452,19.36,9.004,18.711c-0.582-0.844-2.204-1.637-1.54-3.337c0.024,0.122,0.049,0.244,0.073,0.367
|
||||
c0.012,0,0.024,0,0.037,0c-0.019-0.563-0.116-0.967-0.22-1.503c-0.095-0.488,0.154-0.993,0.33-1.247
|
||||
c1.111-1.606,2.641,0.362,3.667,0.55c-0.597-1.255,0.507-1.105,0.953-1.54c0.066-0.214-0.076-0.438-0.183-0.587
|
||||
c-0.208-0.098-0.37-0.186-0.578-0.284c0.129,0.164,0.228,0.213,0.268,0.437c0.003,0.007,0.006,0.014,0.007,0.021
|
||||
c0.002,0.009,0.002,0.021,0.002,0.034c0.003,0.023,0.005,0.049,0.007,0.076c-0.002,0-0.007,0-0.013,0.001
|
||||
c-0.006,0.056-0.015,0.109-0.015,0.109s-0.06,0.069-0.088,0.115c0.022,0.014-0.058,0.11-0.068,0.15c-0.36,0.244-0.705,0.255-1.063,0
|
||||
c-0.128-0.5-0.648-1.151-0.477-1.247c0.886-0.967,2.991-0.255,2.677,1.21c0.146,0.073,0.293,0.146,0.44,0.22
|
||||
c0.024-0.012,0.049-0.024,0.073-0.037c0.057-0.103,0.054-0.085,0.146-0.146c-0.355-1.536,0.575-2.505,2.053-1.907
|
||||
c0.018-0.612,0.208-1.034,0.514-1.393c0.381,0.265,0.481,0.812,0.586,1.356c0.512-0.33,1.5-0.254,1.833,0.146
|
||||
c0,0.012,0,0.024,0,0.037c-0.012,0-0.024,0-0.037,0c-0.073-0.037-0.146-0.073-0.22-0.11c-0.024-0.012-0.049-0.024-0.074-0.037
|
||||
c0,0.012,0,0.024,0,0.037c0.025,0,0.049,0,0.074,0c0.049,0.061,0.098,0.122,0.146,0.184c-0.061,0-0.123,0-0.183,0
|
||||
c0.164,0.068,0.199,0.118,0.256,0.293c-0.11-0.062-0.22-0.123-0.33-0.184c0.152,0.205,0.355,0.396,0.256,0.66
|
||||
c-0.012,0-0.024,0-0.037,0c-0.06-0.445-0.326-0.374-0.55-0.624c-0.024,0.024-0.049,0.049-0.073,0.073c0,0.012,0,0.025,0,0.037
|
||||
c0.312,0.031,0.463,0.182,0.514,0.477c-0.012,0-0.024,0-0.037,0c0-0.024,0-0.049,0-0.073c-0.14-0.123-0.37-0.449-0.587-0.257
|
||||
c0.138,0.007,0.313,0.054,0.403,0.22c0.079,0.101,0.1,0.307,0.11,0.476c-0.013,0-0.025,0-0.037,0
|
||||
c-0.039-0.318-0.147-0.452-0.404-0.55c0.116,0.11,0.159,0.232,0.22,0.44c0.012-0.061,0.024-0.122,0.037-0.183
|
||||
c0.067,0.237-0.011,0.514-0.11,0.66c-0.22,0.159-0.44,0.317-0.66,0.476c0,0.013,0,0.024,0,0.037c0.012,0,0.024,0,0.037,0
|
||||
c0.159-0.086,0.317-0.171,0.476-0.257c-0.093,0.17-0.277,0.268-0.476,0.33c0,0.012,0,0.024,0,0.037
|
||||
c0.297-0.041,0.436-0.155,0.623-0.293c-0.013,0.049-0.025,0.098-0.037,0.146c-0.171,0.098-0.342,0.196-0.513,0.293
|
||||
c0.22-0.11,0.439-0.22,0.66-0.33c-0.07,0.15-0.138,0.195-0.293,0.257c0,0.013,0,0.024,0,0.037c1.04-0.122,1.181-1.322,0.88-2.236
|
||||
c0.049,0.037,0.093,0.06,0.133,0.176c0.167,0.313,0.166,1.092-0.013,1.495c0.155,0.005,0.203,0.064,0.283,0.125
|
||||
c0.146-0.073,0.294-0.146,0.44-0.22c-0.433-1.44,1.814-2.179,2.676-1.247c-0.053,0.776-0.467,1.55-1.393,1.43
|
||||
c-0.032-0.052-0.065-0.104-0.098-0.156c-0.07-0.056-0.172-0.135-0.196-0.174c-0.028-0.046-0.046-0.193-0.028-0.257
|
||||
c0.006-0.019,0.016-0.04,0.028-0.061c0-0.017,0-0.033,0-0.049c0.083-0.201,0.165-0.262,0.293-0.403
|
||||
c-0.466,0.121-0.898,0.387-0.807,0.953c0.381,0.034,0.664,0.171,0.917,0.33c0.117,0.338,0.205,0.77,0.037,1.137
|
||||
c1.01-0.375,2.572-2.115,3.667-0.623C24.581,13.048,24.813,13.509,24.734,13.981z M17.988,10.498
|
||||
c0.012-0.012,0.024-0.024,0.037-0.037c-0.074-0.037-0.147-0.073-0.221-0.11c-0.012,0.024-0.024,0.049-0.036,0.073
|
||||
C17.841,10.449,17.914,10.473,17.988,10.498z M24.587,15.888c-0.049-0.012-0.098-0.024-0.147-0.037
|
||||
c0.049,0.073,0.098,0.146,0.147,0.22C24.587,16.01,24.587,15.949,24.587,15.888z M24.221,17.098
|
||||
c0.024-0.012,0.049-0.024,0.073-0.037c0.032-0.159-0.003-0.301,0.037-0.44c0.037,0.062,0.073,0.123,0.11,0.184
|
||||
c0-0.024,0-0.049,0-0.073c-0.012-0.11-0.024-0.22-0.037-0.33c0.012,0,0.024,0,0.037,0c0.024,0.049,0.049,0.098,0.073,0.147
|
||||
c0-0.061,0-0.122,0-0.184c-0.172-0.421-0.243-0.615-0.88-0.586c-0.085,0.049-0.171,0.098-0.256,0.146
|
||||
c0.024,0.11,0.049,0.22,0.073,0.33C23.914,16.39,24.237,16.47,24.221,17.098z M21.324,15.154c0.47-0.179,0.443-0.608,0.733-0.954
|
||||
c0.013,0.061,0.025,0.122,0.037,0.184c0.012-0.135,0.024-0.269,0.036-0.403c-0.073,0-0.146,0-0.22,0
|
||||
C21.953,14.504,21.613,14.851,21.324,15.154z M21.397,14.091c-0.048,0.078-0.045,0.053-0.073,0.183c0.012,0,0.024,0,0.037,0
|
||||
c0-0.024,0-0.049,0-0.073C21.411,14.122,21.428,14.181,21.397,14.091z M21.288,14.751c0.012,0,0.024,0,0.037,0
|
||||
c0-0.024,0-0.049,0-0.073c0.144-0.115,0.355-0.469,0.293-0.66C21.491,14.297,21.313,14.377,21.288,14.751z M21.397,15.447
|
||||
c0.117-0.124,0.667-0.632,0.55-0.806c-0.17,0.332-0.432,0.467-0.697,0.696c0.012,0.049,0.024,0.098,0.037,0.146
|
||||
C21.324,15.472,21.361,15.459,21.397,15.447z M21.288,15.667c0.049-0.024,0.098-0.049,0.146-0.074
|
||||
c0.268-0.073,0.675-0.448,0.55-0.77C21.825,15.208,21.439,15.33,21.288,15.667z M21.288,15.007c0.248-0.063,0.656-0.832,0.513-0.99
|
||||
C21.678,14.413,21.377,14.647,21.288,15.007z M21.581,15.778c0.224-0.086,0.647-0.514,0.477-0.733
|
||||
c-0.097,0.351-0.388,0.63-0.77,0.696c0.012,0.11,0.024,0.22,0.037,0.33c0.037,0,0.073,0,0.11,0c0.413-0.156,0.785-0.412,0.843-0.917
|
||||
c-0.024-0.012-0.048-0.024-0.073-0.037c-0.072,0.363-0.37,0.661-0.697,0.77C21.532,15.851,21.556,15.814,21.581,15.778z
|
||||
M21.324,16.217c-0.037,0.819-0.073,1.638-0.11,2.457c0.025-0.012,0.049-0.024,0.074-0.037c0.115-0.624,0.586-1.942,1.136-2.163
|
||||
c0.476,0.029,0.672,0.227,0.807,0.587c0.037-0.012,0.073-0.024,0.11-0.037c0.098-0.208,0.195-0.415,0.293-0.623
|
||||
c-0.024,0-0.049,0-0.073,0c-0.153-0.107-0.186-0.141-0.293-0.293c0.024-0.085,0.049-0.171,0.073-0.256
|
||||
c0.11-0.049,0.22-0.098,0.33-0.146c-0.012-0.074-0.024-0.147-0.037-0.221c-0.511,0.077-0.909-0.036-1.283-0.146
|
||||
C22.163,15.832,21.864,16.081,21.324,16.217z M23.487,17.391c0.134-0.067,0.201-0.147,0.22-0.22
|
||||
C23.634,17.244,23.561,17.317,23.487,17.391z M23.744,16.474c-0.012,0.037-0.024,0.074-0.037,0.11
|
||||
C23.757,16.505,23.774,16.564,23.744,16.474z M23.67,16.987c-0.098,0.098-0.195,0.196-0.293,0.293
|
||||
C23.513,17.255,23.755,17.085,23.67,16.987z M23.414,17.098c0.17-0.071,0.291-0.246,0.256-0.403
|
||||
c-0.122,0.159-0.244,0.318-0.366,0.477C23.341,17.146,23.377,17.122,23.414,17.098z M24,16.951
|
||||
c-0.012,0.049-0.024,0.098-0.037,0.147C24.02,17.014,24.031,17.053,24,16.951z M21.911,21.718c0.043-0.426-0.254-0.646-0.216-0.697
|
||||
c0.046-0.101,0.147,0.174,0.179,0.055c0.024-0.09-0.194-0.281-0.147-0.385c0.029-0.069,0.155,0.179,0.179,0.151
|
||||
c0.042-0.128-0.147-0.312-0.105-0.371c0.03-0.05,0.13,0.151,0.147,0.11c0.044-0.085-0.123-0.299-0.074-0.367
|
||||
c0.012,0,0.024,0,0.037,0c0.07,0.139,0.016,0.075,0.11,0.11c0.058-0.473,0.363-0.573,0.256-1.026
|
||||
c0.109,0.084,0.085,0.088,0.184,0.11c0.012-0.11,0.024-0.22,0.036-0.33c0.025,0.037,0.049,0.073,0.074,0.11
|
||||
c0.037-0.073,0.073-0.146,0.11-0.22c-0.024-0.073-0.049-0.146-0.073-0.22c0.132,0.036,0.103,0.046,0.22,0.037
|
||||
c0-0.012,0-0.024,0-0.037c-0.049-0.061-0.098-0.122-0.146-0.183c0.012-0.012,0.024-0.025,0.037-0.037
|
||||
c0.061,0.037,0.122,0.073,0.183,0.109c-0.012-0.073-0.024-0.146-0.037-0.22c0.037,0.024,0.073,0.049,0.11,0.073
|
||||
c-0.012-0.098-0.024-0.196-0.037-0.293c0.012,0,0.025,0,0.037,0c0.024,0.085,0.049,0.171,0.073,0.257c0-0.024,0-0.048,0-0.073
|
||||
c0.072-0.113,0.035-0.211,0-0.403c0.013,0,0.024,0,0.037,0c0.037,0.073,0.073,0.146,0.11,0.22c0.025-0.012,0.049-0.024,0.074-0.037
|
||||
c-0.012-0.134-0.024-0.269-0.037-0.403c0.012,0,0.024,0,0.037,0c0.059,0.136,0.053,0.016,0.22,0.146
|
||||
c0.055-0.265,0.245-0.191,0.44-0.44c-0.16,0-0.318,0-0.477,0c-0.291-0.174-0.467-0.61-0.66-0.879c-0.11-0.012-0.22-0.025-0.33-0.037
|
||||
c-0.049,0.037-0.098,0.073-0.147,0.109c0.035,0.054,0.117,0.057,0.037,0.074c-0.085,0.049-0.171,0.098-0.256,0.146
|
||||
c0.159,0,0.317,0,0.477,0c0,0.012,0,0.024,0,0.037c-0.171,0.024-0.342,0.049-0.514,0.073c0,0.012,0,0.025,0,0.037
|
||||
c0.073,0,0.147,0,0.22,0c-0.012,0.025-0.024,0.049-0.036,0.074c-0.132,0.032-0.32,0.141-0.33,0.403
|
||||
c0.073,0.012,0.486-0.058,0.458,0.055c-0.291,0.003-0.447,0.022-0.532,0.166c0.053,0.049,0.152,0.027,0.111,0.11
|
||||
c-0.211,0.039-0.182,0.059-0.257,0.22c0.198,0.614-1.569,1.902-1.283,2.97c0.024-0.037,0.049-0.074,0.073-0.11
|
||||
c-0.022-0.105-0.098-0.06,0-0.11c0.438-0.253,1.316,0.512,1.394,0.917C21.886,21.718,21.898,21.718,21.911,21.718z M20.297,21.644
|
||||
c0.024,0,0.049,0,0.073,0c0.352,0.123,0.583,0.263,0.807,0.477c0-0.024,0-0.049,0-0.073c0.104-0.232-0.026-0.534-0.111-0.696
|
||||
c-0.334,0.032-0.442-0.107-0.733-0.184c-0.085,0.146-0.171,0.293-0.257,0.44c0.037,0,0.073,0,0.11,0
|
||||
c0.024-0.012,0.049-0.025,0.073-0.037c0.048-0.189,0.066-0.239,0.257-0.293c0,0.012,0,0.024,0,0.037
|
||||
C20.444,21.424,20.371,21.534,20.297,21.644z M21.031,21.241c-0.098-0.098-0.196-0.195-0.293-0.293
|
||||
C20.789,21.138,20.853,21.181,21.031,21.241z M21.251,22.194c0.037,0.037,0.073,0.074,0.11,0.11c0.012,0,0.024,0,0.037,0
|
||||
c0-0.049,0-0.098,0-0.146c-0.024-0.024-0.049-0.049-0.073-0.073C21.3,22.121,21.243,22.13,21.251,22.194z M21.544,22.561
|
||||
c0.037-0.025,0.073-0.049,0.11-0.074c0.069-0.331,0.164-0.688-0.037-0.953C21.68,21.957,21.652,22.228,21.544,22.561z
|
||||
M21.581,22.304c-0.04-0.231-0.012-0.587-0.146-0.807c0.031,0.308,0,0.714,0.037,0.954C21.507,22.402,21.544,22.353,21.581,22.304z
|
||||
M21.801,22.34c-0.074,0.099-0.147,0.196-0.22,0.294c0.049,0.073,0.098,0.146,0.146,0.22c0-0.024,0-0.049,0-0.073
|
||||
C21.811,22.674,21.874,22.498,21.801,22.34z M21.434,23.074c-0.037-0.098-0.073-0.196-0.11-0.293c0,0.11,0,0.22,0,0.33
|
||||
C21.361,23.099,21.397,23.086,21.434,23.074z M21.324,23.221c0,0.037,0,0.073,0,0.11c0.012-0.037,0.024-0.073,0.037-0.11
|
||||
C21.349,23.221,21.336,23.221,21.324,23.221z M21.507,23.221c-0.061,0.098-0.122,0.195-0.183,0.293c-0.012,0-0.024,0-0.037,0
|
||||
c0-0.049,0-0.098,0-0.146c-0.012,0.036-0.024,0.073-0.037,0.11c0.024,0.036,0.049,0.073,0.073,0.109
|
||||
c0.024-0.012,0.049-0.024,0.073-0.036c0.061-0.086,0.122-0.171,0.183-0.257c0.043-0.857-0.754-1.627-1.687-1.613
|
||||
c-0.098,0.073-0.196,0.146-0.293,0.22c0,0.098,0,0.195,0,0.293c0.012,0,0.024,0,0.037,0c0.111-0.143,0.147-0.178,0.331-0.256
|
||||
c0.243,0.026,0.496,0.122,0.586,0.22c0.037,0.049,0.073,0.098,0.11,0.146c0.099-0.014,0.567,0.267,0.587,0.293
|
||||
C21.417,22.735,21.499,22.922,21.507,23.221z M20.114,23.514c0-0.012,0-0.024,0-0.036c-0.017-0.146,0.232-0.226,0.183-0.367
|
||||
c-0.073,0.061-0.147,0.122-0.22,0.183c-0.001,0.24,0.031,0.327,0.147,0.44c0.012,0,0.024,0,0.037,0c0-0.012,0-0.025,0-0.038
|
||||
c-0.095-0.188-0.036-0.334,0.293-0.366c0-0.012,0-0.024,0-0.037C20.286,23.234,20.24,23.394,20.114,23.514z M20.518,23.221
|
||||
c0-0.012,0-0.024,0-0.037c-0.049-0.024-0.098-0.049-0.147-0.073C20.442,23.248,20.354,23.171,20.518,23.221z M20.334,23.514
|
||||
c0.037-0.024,0.073-0.049,0.11-0.073c-0.025,0-0.049,0-0.074,0C20.358,23.465,20.346,23.49,20.334,23.514z M20.444,23.624
|
||||
c-0.037,0.037-0.074,0.073-0.11,0.11c0.024,0.024,0.049,0.049,0.073,0.073c0.081-0.076,0.069-0.051,0.11-0.184
|
||||
C20.493,23.624,20.469,23.624,20.444,23.624z M20.334,23.881c-0.195-0.058-0.263-0.104-0.33-0.294
|
||||
c-0.083-0.185-0.003-0.322,0.073-0.439c0.098-0.037,0.196-0.073,0.293-0.11c0.184,0.061,0.367,0.122,0.55,0.183
|
||||
c0.024-0.024,0.049-0.049,0.073-0.073c-0.012-0.11-0.024-0.22-0.037-0.33c-0.104-0.26-0.327-0.446-0.55-0.587
|
||||
c-0.046,0.21-0.081,0.286-0.257,0.367c-0.223,0.061-0.322-0.019-0.513-0.073c-0.412,0.567-0.999,0.745-1.503,1.21
|
||||
c0.826-0.021,1.415,0.114,1.943,0.366c0.086-0.061,0.171-0.122,0.257-0.183C20.334,23.905,20.334,23.893,20.334,23.881z
|
||||
M20.15,22.414c0-0.012,0-0.024,0-0.037c-0.024-0.086-0.048-0.171-0.073-0.257c-0.012,0.098-0.024,0.195-0.036,0.293
|
||||
c-0.037-0.024-0.073-0.049-0.11-0.074c-0.041-0.04-0.069,0.034-0.22-0.073c-0.011,0.067,0.023,0.177,0.101,0.215
|
||||
C19.908,22.542,20.073,22.506,20.15,22.414z M21.031,22.708c0.049,0.098,0.098,0.195,0.147,0.293c0-0.061,0-0.122,0-0.183
|
||||
C21.129,22.781,21.08,22.744,21.031,22.708z M21.067,23.257c-0.012,0.024-0.024,0.049-0.036,0.073
|
||||
c0.036,0.025,0.074,0.049,0.11,0.073c0.024-0.048,0.049-0.097,0.073-0.146C21.165,23.257,21.116,23.257,21.067,23.257z
|
||||
M20.188,25.971c0.71,0.046,1.253-0.469,0.843-1.027c-0.037-0.012-0.074-0.024-0.11-0.037c-0.126,0.06-0.178,0.032-0.256,0.147
|
||||
c-0.074,0.138-0.085,0.23-0.073,0.366c-0.351,0.064-0.372,0.234-0.733,0.22C19.956,25.78,20.073,25.853,20.188,25.971z
|
||||
M19.784,25.201c0.024-0.012,0.049-0.024,0.073-0.037c0-0.085,0-0.171,0-0.257c0.012,0,0.024,0,0.037,0
|
||||
c-0.005,0.286,0.043,0.438,0.11,0.623c0.012,0,0.024,0,0.037,0c-0.042-0.256-0.064-0.456-0.037-0.733c0.012,0,0.024,0,0.037,0
|
||||
c-0.008,0.26,0.009,0.492,0.073,0.66c0.049,0,0.098,0,0.146,0c0-0.012,0-0.024,0-0.037c-0.124-0.25-0.229-0.581,0-0.807
|
||||
c-0.069,0.229-0.068,0.432,0,0.66c0.012,0,0.024,0,0.037,0c-0.03-0.299,0.005-0.463,0.147-0.66c0.53-0.207,1.161-0.847,0.439-1.283
|
||||
c-0.049,0-0.098,0-0.146,0c-0.088,0.808-0.986,0.783-1.063,1.613C19.757,25.062,19.77,24.947,19.784,25.201z M19.784,24.395
|
||||
c0.012,0,0.024,0,0.036,0c-0.05-0.149-0.036-0.109-0.146-0.184C19.71,24.272,19.747,24.333,19.784,24.395z M19.234,24.21
|
||||
c0.101,0.137,0.31,0.191,0.513,0.22c-0.024-0.036-0.049-0.074-0.073-0.11C19.527,24.284,19.381,24.247,19.234,24.21z M18.611,26.044
|
||||
c0.012,0,0.024,0,0.037,0c0.116-0.094,0.153-0.139,0.183-0.33c0.093,0.09,0.02,0.044,0.11,0.073
|
||||
c-0.012-0.171-0.024-0.342-0.037-0.514c-0.089-0.222-0.201-0.408-0.403-0.477c-0.123,0-0.239,0.006-0.373,0.037
|
||||
c-0.098,0.102-0.13,0.18-0.14,0.293c0.152,0.169,0.19,0.277,0.513,0.293c-0.016,0.157-0.034,0.386-0.11,0.55
|
||||
c0.098-0.085,0.196-0.171,0.293-0.256C18.66,25.824,18.635,25.934,18.611,26.044z M18.317,25.677
|
||||
c0.012-0.012,0.024-0.025,0.037-0.037c0-0.049,0-0.098,0-0.146c-0.085-0.025-0.171-0.049-0.257-0.074
|
||||
C18.128,25.623,18.136,25.627,18.317,25.677z M17.768,26.117c0.217,0.035,0.298,0.053,0.403-0.11c-0.155,0.078-0.242,0.071-0.403,0
|
||||
C17.768,26.044,17.768,26.081,17.768,26.117z M17.511,25.934c-0.107-0.177-0.217-0.288-0.256-0.55
|
||||
c0.141,0.136,0.493,0.491,0.917,0.55c-0.138-0.125-0.263-0.161-0.367-0.33c0.013-0.013,0.024-0.025,0.037-0.037
|
||||
c0.085,0.061,0.171,0.123,0.256,0.184c-0.127-0.267-0.378-0.806,0-0.99c0.494-0.129,1.005,0.216,1.467,0.11
|
||||
c-0.244-0.098-0.489-0.196-0.733-0.293c0.024-0.013,0.049-0.025,0.073-0.037c0.22,0.061,0.44,0.122,0.66,0.183
|
||||
c0.012-0.024,0.024-0.049,0.037-0.073c-0.024-0.025-0.049-0.049-0.073-0.073c-0.244-0.061-0.489-0.122-0.733-0.183
|
||||
c0.322-0.057,0.612,0.086,0.88,0.183c0-0.013,0-0.025,0-0.037c-0.17-0.154-0.983-0.303-0.88-0.477
|
||||
c0.195,0.037,0.392,0.073,0.587,0.11c-0.066-0.075,0-0.026-0.11-0.073c0-0.012,0-0.024,0-0.037c0.232,0.049,0.464,0.098,0.697,0.146
|
||||
c0-0.012,0-0.024,0-0.037c-0.436-0.324-1.159-0.333-1.797-0.366c-0.165,0.26-0.226,0.433-0.66,0.439
|
||||
c0.024,0.16,0.049,0.318,0.073,0.477c-0.172,0.195-0.286,0.275-0.587,0.256C17.144,25.364,17.133,25.709,17.511,25.934z
|
||||
M17.841,23.478c-0.12-0.052-0.303-0.08-0.41-0.013c-0.107,0.131-0.141,0.142-0.168,0.376c-0.006,0.149,0.092,0.263,0.205,0.293
|
||||
c0.119,0.052,0.265,0.022,0.446-0.144C18.035,23.815,18.008,23.559,17.841,23.478z M17.453,24.651
|
||||
c0.06-0.182,0.005-0.298-0.088-0.404c-0.058-0.04-0.162-0.064-0.235-0.076c-0.153,0-0.309,0.076-0.37,0.327
|
||||
c-0.009,0.043,0.006,0.104,0.006,0.116c0.061,0.086,0.098,0.135,0.159,0.22C17.057,24.933,17.352,24.941,17.453,24.651z
|
||||
M15.207,24.085c0.483,0.075,0.448,0.314,0.456,0.565c0.049,0.012,0.113,0.061,0.162,0.073c-0.046-0.156-0.046-0.309,0-0.44
|
||||
c-0.253-0.076-0.358-0.2-0.513-0.366C15.287,23.979,15.265,24.052,15.207,24.085z M15.261,23.688
|
||||
c-0.104-0.209-0.245-0.287-0.416-0.344c-0.119-0.008-0.205,0.065-0.285,0.229c-0.001,0.17-0.063,0.195,0.063,0.395
|
||||
c0.089,0.062,0.227,0.13,0.337,0.106C15.083,24.049,15.224,23.931,15.261,23.688z M15.458,23.917c0.052,0.093,0.13,0.15,0.367,0.22
|
||||
c-0.024-0.061-0.049-0.122-0.074-0.183c0.142,0.076,0.105,0.166,0.22,0.073c0.128-0.06,0.081-0.036,0.146-0.146
|
||||
c0.049-0.115,0.04-0.241-0.07-0.431c-0.08-0.067-0.25-0.119-0.407-0.046C15.496,23.531,15.323,23.726,15.458,23.917z M16.142,24.171
|
||||
c-0.162-0.018-0.218,0.073-0.25,0.195c-0.021,0.143,0.006,0.247,0.03,0.389c0.049,0.067,0.096,0.118,0.273,0.163
|
||||
c0.177-0.013,0.288-0.146,0.335-0.335c0.026-0.143-0.03-0.208-0.098-0.303C16.337,24.23,16.255,24.176,16.142,24.171z
|
||||
M16.279,25.031c0.016-0.074-0.11-0.006-0.143-0.042c0.052,0.181,0.029,0.312-0.019,0.468c0.062,0.012,0.083,0,0.144,0.012
|
||||
c0-0.012,0.046-0.006,0.046-0.018C16.245,25.349,16.254,25.147,16.279,25.031z M16.558,24.797c0.061,0,0.122,0,0.183,0
|
||||
c-0.024-0.184-0.034-0.337-0.059-0.521c-0.049-0.012-0.112-0.054-0.161-0.066c0.037,0.049,0.067,0.156,0.104,0.205
|
||||
C16.637,24.602,16.628,24.672,16.558,24.797z M16.337,23.917c0.081,0.127,0.089,0.167,0.257,0.22
|
||||
c-0.012-0.037-0.024-0.073-0.037-0.11c0.094,0.055,0.091,0.054,0.146,0.146c0.185-0.041,0.213-0.103,0.33-0.22
|
||||
c0.048-0.145,0.008-0.273-0.116-0.456c-0.024-0.012-0.08-0.046-0.104-0.058c-0.085-0.04-0.162-0.067-0.271-0.027
|
||||
c-0.077,0.061-0.129,0.113-0.178,0.174C16.307,23.674,16.301,23.791,16.337,23.917z M16.885,25.387
|
||||
c0.09-0.203,0.036-0.323-0.051-0.44c-0.017-0.014-0.091-0.029-0.101-0.034c-0.068-0.034-0.186-0.031-0.251,0.003
|
||||
c-0.206,0.178-0.187,0.442,0.048,0.589C16.604,25.524,16.785,25.544,16.885,25.387z M15.963,26.062
|
||||
c0.023,0.045,0.024,0.083,0.086,0.137c0.125,0.059,0.193,0.07,0.317,0.043c0.107-0.046,0.112-0.047,0.172-0.137
|
||||
c0.023-0.08,0.067-0.122,0.047-0.227c-0.098-0.237-0.2-0.287-0.494-0.288c-0.073,0.062-0.083,0.046-0.137,0.138
|
||||
C15.899,25.826,15.915,25.949,15.963,26.062z M15.54,25.513c0.012,0,0.073,0,0.084,0c-0.04-0.037-0.117-0.112-0.099-0.124
|
||||
c0.032-0.012,0.133,0.11,0.189,0.112c0.112,0.003,0.224,0.008,0.303-0.102c0.049-0.09,0.061-0.196,0.052-0.3
|
||||
c-0.025-0.125-0.152-0.255-0.38-0.29c-0.079-0.011-0.186,0.014-0.256,0.101c-0.056,0.059-0.082,0.167-0.079,0.313
|
||||
C15.368,25.325,15.416,25.428,15.54,25.513z M15.549,24.669c0.012-0.085-0.03-0.211-0.018-0.297
|
||||
c-0.056-0.127-0.178-0.151-0.33-0.198c-0.162,0.037-0.236,0.111-0.288,0.214c0.002,0.238-0.021,0.27,0.104,0.373
|
||||
c0.012,0,0.025,0,0.037,0c0-0.012,0-0.024,0-0.037c-0.024-0.049-0.049-0.098-0.073-0.146c0.085,0.073,0.17,0.254,0.331,0.25
|
||||
C15.396,24.724,15.439,24.689,15.549,24.669z M13.991,26.154c0.159,0.138,0.446-0.054,0.367-0.11c-0.134,0.106-0.31,0.07-0.44,0.11
|
||||
C13.942,26.154,13.966,26.154,13.991,26.154z M13.881,25.751c0.049-0.074,0.098-0.147,0.146-0.221
|
||||
c-0.024-0.012-0.049-0.024-0.073-0.036c-0.08,0.064-0.098,0.064-0.257,0.073c0.012,0.061,0.024,0.123,0.037,0.184
|
||||
C13.783,25.751,13.832,25.751,13.881,25.751z M13.221,25.934c0.016-0.096-0.036-0.02,0.037-0.11c0.041,0.189,0.094,0.235,0.22,0.33
|
||||
c-0.024-0.11-0.049-0.22-0.073-0.33c0.012,0,0.024,0,0.037,0c0.055,0.17,0.103,0.135,0.256,0.22c-0.077-0.161-0.112-0.281-0.11-0.55
|
||||
c0.085-0.013,0.171-0.025,0.256-0.037c0.086-0.085,0.171-0.171,0.257-0.256c-0.026-0.19-0.046-0.219-0.184-0.293
|
||||
c-0.098,0-0.196,0-0.293,0C13.355,25.001,12.899,25.538,13.221,25.934z M12.414,24.688c0.012,0,0.024,0,0.037,0
|
||||
c0.257-0.15,0.544-0.244,0.88-0.22c0,0.012,0,0.024,0,0.036c-0.292,0.042-0.687,0.103-0.844,0.293
|
||||
c0.024,0.024,0.049,0.049,0.074,0.073c0.174-0.092,0.432-0.274,0.624-0.22c0.024,0,0.049,0,0.073,0
|
||||
c-0.012,0.024-0.024,0.049-0.037,0.073c-0.286,0.033-0.571,0.133-0.697,0.33c0.438-0.18,1.256-0.356,1.65-0.11
|
||||
c0.033,0.374-0.057,0.59-0.184,0.88c0.098-0.061,0.196-0.123,0.293-0.184c-0.07,0.216-0.212,0.245-0.367,0.367
|
||||
c0.442-0.092,0.743-0.39,0.917-0.55c-0.05,0.262-0.133,0.321-0.22,0.514c0.037-0.024,0.073-0.049,0.11-0.073
|
||||
c0.116-0.231,0.19-0.396,0.334-0.626l0.193-0.234c0.007-0.045,0.016-0.09,0.029-0.132c-0.238-0.001-0.325-0.064-0.41-0.217
|
||||
c-0.05-0.092,0.015-0.42,0-0.44c-0.386-0.517-2.344-0.4-2.75,0.073c0,0.012,0,0.025,0,0.037c0.256-0.073,0.513-0.146,0.77-0.22
|
||||
c0,0.012,0,0.024,0,0.037c-0.024,0-0.049,0-0.073,0c-0.049,0.024-0.098,0.049-0.146,0.073c0,0.012,0,0.025,0,0.037
|
||||
c0.012,0,0.024,0,0.037,0c0.172-0.061,0.488-0.142,0.66-0.073c-0.16,0.009-0.784,0.284-0.954,0.44
|
||||
C12.414,24.663,12.414,24.675,12.414,24.688z M11.974,22.23c-0.004,0.163-0.066,0.252,0.037,0.294
|
||||
c0.073,0.059,0.051,0.047,0.184,0.073c0.084-0.073,0.122-0.076,0.183-0.183c-0.164,0.06-0.155,0.037-0.202,0.037
|
||||
c-0.037,0.024-0.092,0.048-0.128,0.073c-0.012,0-0.024,0-0.037,0C12.022,22.345,12.05,22.344,11.974,22.23z M12.011,22.781
|
||||
c-0.153-0.121-0.25-0.301-0.403-0.403c-0.159,0.184-0.317,0.367-0.477,0.55c0,0.135,0,0.269,0,0.403
|
||||
c0.024,0.012,0.049,0.025,0.074,0.037c0.159-0.074,0.317-0.147,0.476-0.22c0.172,0.063,0.316,0.104,0.403,0.256
|
||||
c0.012,0.086,0.024,0.171,0.037,0.257c-0.089,0.202-0.181,0.327-0.404,0.293c0.037,0.049,0.074,0.098,0.11,0.146
|
||||
c0.062,0.037,0.123,0.073,0.184,0.11c0.281-0.11,0.563-0.22,0.843-0.33c0.367-0.037,0.733-0.073,1.1-0.11
|
||||
c-0.687-0.218-1.044-0.739-1.54-1.137C12.28,22.683,12.146,22.732,12.011,22.781z M11.827,23.844
|
||||
c0.049-0.024,0.098-0.049,0.147-0.073c0.012-0.062,0.024-0.123,0.037-0.184c-0.13,0.019-0.257-0.141-0.289-0.091
|
||||
c-0.017,0.061,0.09,0.099,0.215,0.165C11.901,23.722,11.864,23.783,11.827,23.844z M11.681,23.771c-0.037,0-0.073,0-0.11,0
|
||||
c0.012,0.049,0.024,0.098,0.037,0.146c0.049-0.012,0.098-0.024,0.146-0.037C11.729,23.844,11.705,23.808,11.681,23.771z
|
||||
M12.011,23.551c-0.012-0.073-0.024-0.147-0.037-0.22c-0.024-0.012-0.049-0.024-0.073-0.037c-0.11-0.012-0.22-0.024-0.33-0.037
|
||||
C11.661,23.337,11.875,23.459,12.011,23.551z M12.231,24.431c0.012,0.012,0.024,0.025,0.037,0.037
|
||||
c0.037-0.037,0.197-0.073,0.174-0.106c-0.027-0.042-0.114,0.014-0.151,0.014C12.278,24.4,12.243,24.407,12.231,24.431z
|
||||
M12.341,24.541c0.038,0.067,0.379-0.15,0.586-0.211c0-0.012,0.055-0.029,0.055-0.041c-0.035-0.046-0.185,0.027-0.293,0.064
|
||||
C12.567,24.426,12.303,24.509,12.341,24.541z M11.498,25.53c-0.004-0.132-0.03-0.319-0.132-0.425
|
||||
c-0.112-0.059-0.173-0.051-0.272-0.051c-0.061,0.061-0.122,0.122-0.183,0.183c-0.006,0.384,0.106,0.521,0.256,0.733
|
||||
c0.208,0.049,0.416,0.098,0.624,0.146c0.186-0.114,0.33-0.131,0.403-0.366C11.873,25.776,11.795,25.624,11.498,25.53z
|
||||
M11.791,25.384c0.024-0.012,0.049-0.025,0.073-0.037c0-0.183,0-0.367,0-0.55c0.024,0.012,0.049,0.024,0.073,0.037
|
||||
c0.05,0.309,0.005,0.485-0.11,0.696c0.025,0.025,0.049,0.049,0.074,0.074c0.037-0.025,0.073-0.049,0.11-0.074
|
||||
c0.024-0.207,0.049-0.415,0.073-0.623c0,0.22,0,0.44,0,0.66c0.024-0.012,0.049-0.025,0.073-0.037
|
||||
c0.024-0.171,0.049-0.342,0.074-0.513c0.007,0.158,0.009,0.177,0.073,0.257c0.104-0.951-0.329-0.722-0.807-1.356
|
||||
c-0.073-0.159-0.146-0.318-0.22-0.477c-0.258,0.149-0.418,0.233-0.44,0.624C11.179,24.513,11.868,24.638,11.791,25.384z
|
||||
M10.874,23.368c0,0.048,0,0.097,0,0.146c0.134-0.039,0.108-0.029,0.183-0.11C10.996,23.392,10.935,23.379,10.874,23.368z
|
||||
M10.984,23.111c-0.012-0.049-0.024-0.098-0.037-0.147c-0.012,0.061-0.024,0.123-0.037,0.184
|
||||
C10.935,23.135,10.96,23.123,10.984,23.111z M10.508,23.44c0.085,0.098,0.171,0.195,0.256,0.294c0.012,0,0.024,0,0.037,0
|
||||
c0.012-0.038,0.024-0.074,0.037-0.11c-0.012-0.037-0.024-0.073-0.037-0.11c-0.012,0-0.024,0-0.037,0
|
||||
c0.012,0.037,0.024,0.073,0.037,0.11c-0.201-0.065-0.228-0.173-0.22-0.44c0.073-0.159,0.146-0.318,0.22-0.477
|
||||
c0.248-0.08,0.296-0.069,0.587-0.367c-0.049,0.086-0.098,0.172-0.146,0.257c0.473-0.362,0.457-0.696,1.246-0.33
|
||||
c0-0.062,0-0.123,0-0.184c-0.121-0.212-0.216-0.218-0.477-0.293C11.348,22.071,10.328,22.486,10.508,23.44z M10.764,23.184
|
||||
c-0.012-0.085-0.024-0.171-0.037-0.257c-0.024,0.098-0.049,0.196-0.073,0.293c0.012,0,0.024,0,0.037,0
|
||||
C10.715,23.208,10.74,23.196,10.764,23.184z M10.984,21.57c-0.109,0.176-0.126,0.456-0.073,0.697c0.012,0,0.024,0,0.037,0
|
||||
c0.282-0.184,0.563-0.367,0.844-0.55c-0.153-0.075-0.185-0.14-0.22-0.331c0.209,0.073,0.194,0.199,0.33,0.331
|
||||
c-0.023-0.206-0.092-0.369-0.257-0.44C11.46,21.463,11.135,21.437,10.984,21.57z M11.314,21.241c0-0.061,0-0.122,0-0.183
|
||||
c-0.061,0.098-0.122,0.195-0.184,0.293C11.192,21.314,11.253,21.277,11.314,21.241z M10.837,22.34
|
||||
c-0.024-0.037-0.049-0.073-0.073-0.11c-0.024,0-0.049,0-0.073,0c0,0.073,0,0.147,0,0.221c0.012,0,0.024,0,0.037,0
|
||||
C10.764,22.414,10.801,22.377,10.837,22.34z M10.581,22.597c0.012,0,0.024,0,0.037,0c0.011-0.114,0.025-0.148-0.037-0.257
|
||||
c0-0.171,0-0.342,0-0.513C10.511,22.125,10.489,22.297,10.581,22.597z M10.435,21.681c-0.134,0.32-0.137,0.813,0.11,1.026
|
||||
C10.448,22.406,10.515,21.981,10.435,21.681z M10.654,21.718c0.012-0.049,0.024-0.099,0.037-0.147
|
||||
c-0.012-0.012-0.024-0.024-0.037-0.036c-0.012,0.061-0.024,0.122-0.037,0.184C10.63,21.718,10.642,21.718,10.654,21.718z M10.361,23
|
||||
c0.024-0.012,0.049-0.024,0.074-0.037c0.024-0.073,0.049-0.146,0.073-0.22c-0.086-0.074-0.171-0.147-0.257-0.22
|
||||
C10.288,22.683,10.324,22.842,10.361,23z M8.454,17.941c0.149-0.026,0.043-0.074,0.147,0.037c0.001,0.112-0.035,0.051,0.037,0.146
|
||||
c0-0.024,0-0.049,0-0.073c0.037-0.049,0.073-0.098,0.11-0.146c0.037,0.159,0.073,0.317,0.11,0.477
|
||||
c0.037-0.025,0.073-0.049,0.11-0.074c0.024-0.085,0.049-0.171,0.073-0.256c0.013,0,0.024,0,0.037,0
|
||||
c-0.037,0.134-0.073,0.269-0.11,0.403c0.037,0.049,0.073,0.098,0.11,0.146c0.012-0.073,0.025-0.146,0.037-0.22
|
||||
c0.013,0,0.024,0,0.037,0c0,0.098,0,0.195,0,0.293c0.037-0.049,0.073-0.098,0.11-0.146c-0.037,0.085-0.073,0.171-0.11,0.256
|
||||
c0.085-0.037,0.171-0.073,0.256-0.11c0,0.037,0,0.073,0,0.11c-0.097,0.073-0.072,0.041-0.11,0.183
|
||||
c0.061-0.012,0.108-0.088,0.183-0.037c-0.069,0.206-0.037,0.21,0.037,0.403c0.037-0.037,0.037-0.174,0.11-0.11c0,0.11,0,0.22,0,0.33
|
||||
c0.086-0.01,0.05-0.115,0.147-0.037c-0.044,0.295,0.186,0.718,0.33,0.991c0.037-0.049,0.037-0.208,0.11-0.147
|
||||
c-0.024,0.122-0.049,0.245-0.073,0.367c0.049-0.037,0.093-0.188,0.146-0.11c-0.037,0.11-0.073,0.22-0.11,0.33
|
||||
c0.012,0,0.024,0,0.037,0c0.049-0.037,0.084-0.183,0.146-0.11c-0.049,0.134-0.098,0.269-0.146,0.403
|
||||
c0.049-0.024,0.093-0.126,0.146-0.073c-0.113,0.143-0.157,0.395-0.183,0.697c0.012,0,0.024,0,0.037,0
|
||||
c0.11-0.523,0.849-1.044,1.466-0.954c0,0.073,0,0.147,0,0.22c0.065-0.267,0.085-0.374,0.037-0.697
|
||||
c-0.299-0.128-0.304-0.552-0.697-0.623c0.091-0.191-0.694-1.805-0.879-1.833c0.086-0.131,0.09-0.075,0.073-0.256
|
||||
c-0.158-0.008-0.177-0.01-0.257-0.074c0.191-0.016,0.146,0.024,0.22-0.11c-0.18-0.213-0.18-0.174-0.367-0.366
|
||||
c0.074,0.012,0.147,0.024,0.22,0.037c-0.124-0.126-0.293-0.107-0.477-0.184c0.024,0,0.049,0,0.073,0c0.122,0,0.245,0,0.367,0
|
||||
c-0.11-0.049-0.22-0.098-0.33-0.146c0.049-0.024,0.098-0.049,0.146-0.073c-0.098-0.037-0.195-0.073-0.293-0.11
|
||||
c-0.073,0.024-0.146,0.049-0.22,0.073c-0.22,0.306-0.44,0.611-0.66,0.917c-0.159-0.012-0.318-0.024-0.477-0.037
|
||||
C8.259,17.746,8.356,17.843,8.454,17.941z M10.397,14.164c0.073,0.268,0.222,0.566,0.403,0.733c0.012-0.061,0.024-0.122,0.037-0.183
|
||||
C10.691,14.531,10.544,14.347,10.397,14.164z M10.801,14.458c-0.048-0.126-0.037-0.151-0.146-0.22
|
||||
C10.703,14.311,10.752,14.384,10.801,14.458z M10.764,15.851c-0.482-0.071-0.515-0.42-0.807-0.66c0.07,0.408,0.297,0.523,0.513,0.77
|
||||
c-0.287-0.1-0.521-0.375-0.586-0.697c-0.024,0.012-0.049,0.024-0.074,0.037c-0.012,0.024-0.024,0.049-0.036,0.073
|
||||
c0.208,0.446,0.47,0.744,0.99,0.88C10.764,16.12,10.764,15.985,10.764,15.851z M10.801,15.814c-0.091-0.238-0.613-0.566-0.77-0.88
|
||||
C10.077,15.402,10.39,15.709,10.801,15.814z M9.994,14.531c0.012,0,0.024,0,0.037,0c0.013-0.061,0.024-0.122,0.037-0.184
|
||||
c0,0.025,0,0.049,0,0.074c0.156,0.233,0.224,0.462,0.371,0.642c-0.139-0.148-0.282-0.298-0.408-0.459
|
||||
c0.116,0.419,0.366,0.726,0.697,0.935c0.012,0,0.024,0.055,0.037,0.055c0.012-0.037,0.024-0.073,0.037-0.11
|
||||
c-0.084-0.116-0.183-0.228-0.286-0.339c0.065,0.061,0.146,0.113,0.249,0.156c-0.284-0.306-0.558-0.529-0.586-1.1
|
||||
c0.024,0.012,0.049,0.024,0.073,0.037c0.082,0.393,0.245,0.677,0.477,0.917c0.024-0.012,0.049-0.024,0.073-0.037
|
||||
c0-0.012,0-0.024,0-0.037c-0.148-0.318-0.39-0.6-0.55-0.954c-0.098,0-0.196,0-0.293,0C9.97,14.262,9.982,14.396,9.994,14.531z
|
||||
M10.764,16.364c-0.661-0.167-0.681-0.531-1.1-0.88c-0.297,0.201-0.73,0.256-1.21,0.184c-0.018,0.148-0.023,0.137-0.073,0.22
|
||||
c0.215,0.038,0.275,0.108,0.403,0.22c-0.012,0.122-0.024,0.245-0.037,0.367c-0.098,0.037-0.195,0.074-0.293,0.11
|
||||
c0,0.012,0,0.024,0,0.036c0.13,0.247,0.181,0.472,0.403,0.624c0-0.024,0-0.049,0-0.073c0.202-0.227,0.42-0.715,0.953-0.477
|
||||
c0.512,0.218,0.833,1.545,0.99,2.09c0.024,0,0.049,0,0.073,0C10.837,17.978,10.801,17.171,10.764,16.364z M8.674,17.391
|
||||
c-0.085-0.049-0.171-0.098-0.257-0.146c0.061,0.073,0.123,0.146,0.184,0.22c0.037,0,0.073,0,0.11,0
|
||||
c0.024-0.061,0.049-0.122,0.073-0.183c-0.304-0.142-0.297-0.493-0.477-0.624c0.063,0.376,0.254,0.479,0.403,0.733
|
||||
C8.699,17.391,8.687,17.391,8.674,17.391z M7.684,16.987c0.024-0.024,0.049-0.049,0.073-0.073c-0.027,0.229-0.009,0.313,0.147,0.44
|
||||
c-0.134-0.788,0.417-0.542,0.733-0.99c0.091-0.107,0.044-0.202,0-0.256c-0.138-0.152-0.352-0.161-0.66-0.146
|
||||
c-0.091,0.082-0.155,0.104-0.22,0.22c-0.073,0.171-0.146,0.343-0.22,0.514C7.654,16.785,7.547,16.821,7.684,16.987z M7.464,16.144
|
||||
c0,0.037,0,0.073,0,0.11c0.012,0.012,0.024,0.024,0.037,0.037c0.024-0.012,0.049-0.024,0.073-0.037
|
||||
c0.04-0.124,0.073-0.136,0.037-0.256C7.562,16.046,7.513,16.095,7.464,16.144z M7.501,13.688c0.036,0.514,0.37,0.501,0.586,0.806
|
||||
c-0.012,0-0.024,0-0.037,0c-0.134-0.073-0.269-0.147-0.403-0.22c0.119,0.198,0.285,0.251,0.44,0.404
|
||||
c-0.061-0.012-0.122-0.024-0.183-0.037c0.061,0.073,0.122,0.146,0.183,0.22c0,0.012,0,0.024,0,0.037
|
||||
c-0.171-0.085-0.342-0.171-0.513-0.256c0.154,0.261,0.295,0.456,0.66,0.513c0,0.012,0,0.024,0,0.037c-0.073,0-0.147,0-0.22,0
|
||||
c-0.146-0.11-0.293-0.22-0.44-0.33c0.126,0.205,0.288,0.332,0.55,0.403c0,0.012,0,0.024,0,0.037c-0.061,0-0.122,0-0.183,0
|
||||
c-0.085-0.061-0.171-0.122-0.257-0.183c0.475,0.65,1.593,0.656,2.09,0.073c-0.013-0.024-0.025-0.049-0.037-0.073
|
||||
c-0.049,0-0.098,0-0.146,0c0.024-0.012,0.049-0.024,0.073-0.037c0.061-0.049,0.122-0.098,0.184-0.147
|
||||
c0.11-0.64-0.1-1.216-0.771-1.209C8.534,14.501,7.997,14.247,7.501,13.688z M8.234,14.018c-0.012-0.11-0.024-0.22-0.037-0.33
|
||||
c-0.012,0.085-0.025,0.171-0.037,0.256C8.186,13.969,8.21,13.993,8.234,14.018z M7.978,13.761c-0.024-0.012-0.049-0.024-0.073-0.037
|
||||
C7.892,13.7,7.88,13.675,7.868,13.651c0,0.049,0,0.098,0,0.147C7.904,13.786,7.941,13.773,7.978,13.761z M10.664,10.553
|
||||
c-0.214,0.137-0.327,0.238-0.486,0.385c0.223,0.335,0.36,0.724,0.565,1.105c0.421,0.161,0.625,0.133,0.883-0.07l0.082-0.164
|
||||
c0,0,0.025-0.088,0.034-0.17c-0.057-0.268-0.218-0.36-0.391-0.517c-0.208,0.002-0.235,0.01-0.331,0.11c0,0.012,0,0.024,0,0.037
|
||||
c0.086,0.012,0.172,0.024,0.257,0.037c-0.037,0.061-0.073,0.122-0.111,0.183c-0.122-0.012-0.244-0.024-0.366-0.037
|
||||
c-0.012-0.024-0.024-0.049-0.037-0.073c0.06-0.117,0.068-0.153,0.183-0.22c0.359-0.353,1.195-0.081,1.43,0.293
|
||||
c0.037,0.196,0.074,0.392,0.11,0.587c0-0.024,0-0.049,0-0.073c0.074-0.203-0.073-0.639-0.146-0.843
|
||||
c0.061,0.049,0.122,0.098,0.184,0.146C12.266,10.575,11.236,10.403,10.664,10.553z M10.874,11.268
|
||||
c-0.012,0.024-0.024,0.049-0.037,0.073c0.098,0.012,0.196,0.024,0.293,0.037c0-0.012,0-0.024,0-0.037
|
||||
C11.045,11.316,10.959,11.292,10.874,11.268z M12.487,12.111c-0.389,0.153-0.733,0.242-1.036,0.431
|
||||
c-0.089,0.288-0.113,0.528-0.027,0.852c0.314,0.197,0.702,0.404,1.063,0.183c-0.049-0.024-0.098-0.048-0.146-0.073
|
||||
c0-0.012,0-0.024,0-0.037c0.098-0.012,0.196-0.024,0.293-0.037c-0.073-0.037-0.147-0.073-0.22-0.11
|
||||
c0.196,0.014,0.175,0.045,0.293-0.073c0-0.012,0-0.024,0-0.037c-0.25-0.08-0.354-0.274-0.513-0.44
|
||||
c-0.181-0.005-0.277,0.002-0.367,0.073c0.311-0.009,0.431,0.042,0.55,0.22c-0.199-0.087-0.291-0.149-0.624-0.147
|
||||
c0,0.037,0,0.073,0,0.11c0.158-0.012,0.2-0.031,0.33,0.037c-0.11,0.012-0.22,0.024-0.33,0.037c0,0.061,0,0.122,0,0.183
|
||||
c0.098,0.085,0.196,0.171,0.293,0.256c-0.049,0-0.098,0-0.146,0c-0.085-0.037-0.171-0.073-0.257-0.11c0-0.183,0-0.366,0-0.55
|
||||
c0.139-0.205,0.48-0.557,0.843-0.403c0.294,0.127,0.365,0.423,0.403,0.697c-0.118,0.259-0.261,0.497-0.55,0.587
|
||||
c-1.614,0.435-3.305-2.278-4.547-0.807c0.159-0.073,0.318-0.146,0.477-0.22c-0.024,0.037-0.049,0.073-0.073,0.11
|
||||
c-0.3,0.045-0.426,0.185-0.477,0.477c0.012,0,0.024,0,0.037,0c0.052-0.178,0.069-0.181,0.257-0.22
|
||||
c-0.073,0.122-0.146,0.244-0.22,0.366c0.013,0,0.024,0,0.037,0c0.082-0.095,0.108-0.148,0.22-0.22
|
||||
c-0.037,0.085-0.073,0.171-0.11,0.256c0.211-0.159,0.336-0.256,0.66-0.33c-0.012,0.024-0.024,0.049-0.037,0.073
|
||||
c-0.289,0.077-0.404,0.193-0.55,0.403c0,0.049,0,0.098,0,0.147c0.024-0.012,0.049-0.024,0.073-0.037
|
||||
c0.042-0.165,0.034-0.191,0.184-0.257c0.062,0.117-0.019,0.042,0.11,0.073c0,0.16,0,0.318,0,0.477c0.012,0,0.024,0,0.037,0
|
||||
c0.061-0.024,0.123-0.049,0.184-0.073c-0.002-0.173,0.005-0.244,0.073-0.33c0.012,0.086,0.024,0.171,0.037,0.257
|
||||
c0.159-0.122,0.318-0.244,0.477-0.367c0.992,0.335,3.519,1.708,4.399,0.55c0-0.012,0-0.024,0-0.037
|
||||
c-0.061,0.012-0.122,0.024-0.183,0.037c0.159-0.203,0.309-0.265,0.366-0.587c-0.012,0-0.024,0-0.037,0
|
||||
c-0.024,0.012-0.049,0.025-0.073,0.037c-0.068,0.196-0.144,0.316-0.366,0.367c0.157-0.227,0.331-0.383,0.366-0.733
|
||||
c-0.012,0-0.024,0-0.037,0c0,0.024,0,0.049,0,0.073c-0.111,0.196-0.132,0.259-0.33,0.366C13.583,12.92,13.512,12.089,12.487,12.111z
|
||||
M12.561,12.991c-0.083-0.191-0.208-0.286-0.44-0.33C12.268,12.771,12.414,12.881,12.561,12.991z M14.504,12.881
|
||||
c-0.012,0-0.024,0-0.036,0c-0.075,0.133-0.119,0.15-0.293,0.184c0-0.012,0-0.024,0-0.037c0.024-0.013,0.049-0.024,0.073-0.037
|
||||
c0.049-0.037,0.098-0.073,0.146-0.11c-0.012-0.024-0.024-0.049-0.037-0.073c-0.061,0-0.122,0-0.183,0
|
||||
c-0.078,0.065-0.089,0.049-0.147,0.146c0,0.037,0,0.074,0,0.11c0.012,0.049,0.025,0.098,0.037,0.146
|
||||
c0.098,0.012,0.196,0.024,0.293,0.037c0.086-0.073,0.171-0.146,0.257-0.22c-0.085,0.049-0.171,0.098-0.257,0.146
|
||||
c0-0.037,0-0.073,0-0.11C14.473,12.998,14.452,13.011,14.504,12.881z M14.174,12.661c0-0.012,0-0.024,0-0.037
|
||||
c-0.205,0.018-0.298,0.072-0.404,0c0.049-0.037,0.098-0.073,0.147-0.11c-0.085,0-0.171,0-0.257,0
|
||||
c-0.024,0.012-0.049,0.024-0.073,0.037c0.012,0.062,0.024,0.123,0.037,0.184c0.061,0.037,0.122,0.073,0.184,0.11
|
||||
C13.93,12.783,14.052,12.722,14.174,12.661z M13.404,12.221c-0.037,0.037-0.073,0.073-0.11,0.11c0.024,0,0.049,0,0.073,0
|
||||
c0.037,0,0.073,0,0.11,0c0.049-0.024,0.098-0.049,0.146-0.073c-0.012-0.012-0.024-0.024-0.037-0.037
|
||||
C13.526,12.221,13.465,12.221,13.404,12.221z M14.284,10.424c-0.012,0-0.043,0.022-0.055,0.022
|
||||
c-0.077,0.034-0.196,0.084-0.165,0.125c0.086-0.025,0.171-0.049,0.257-0.074C14.309,10.473,14.296,10.449,14.284,10.424z
|
||||
M14.354,10.667c0,0-0.527,0.172-0.547,0.601c-0.028,0.033-0.067,0.022-0.07-0.025c0-0.012-0.003-0.036-0.003-0.048
|
||||
c0.035-0.247,0.057-0.375,0.229-0.528c0.06-0.053,0.072-0.079,0.067-0.091c-0.02-0.039-0.052-0.025-0.275,0.153
|
||||
c-0.081,0.057-0.099-0.017-0.005-0.111c0.119-0.102,0.398-0.275,0.387-0.304c-0.05-0.081-0.241,0.127-0.363,0.176
|
||||
c-0.009,0.003-0.019-0.001-0.006-0.038c0.046-0.048,0.16-0.132,0.211-0.166c0.01-0.015,0.006-0.036-0.025-0.045
|
||||
c-1.002,0.706-0.296,1.977,0.403,2.42c0.049-0.012,0.098-0.024,0.146-0.037c-0.024,0-0.08-0.018-0.11-0.037
|
||||
c-0.101-0.097-0.266-0.238-0.22-0.257c0.04-0.04,0.266,0.245,0.477,0.257c-0.147-0.11-0.461-0.348-0.413-0.373
|
||||
c0.095-0.043,0.4,0.299,0.632,0.299c0.064,0.003,0.015-0.049-0.037-0.073c-0.177-0.068-0.406-0.189-0.366-0.257
|
||||
c0.021-0.024,0.314,0.187,0.513,0.22c0.098,0.003,0.019-0.083-0.064-0.107c-0.281-0.102-0.598-0.278-0.669-0.406
|
||||
c-0.151-0.238-0.08-0.63,0-0.624c0.052,0.021-0.037,0.244,0.037,0.22c0.05-0.465,0.273-0.45,0.22-0.513
|
||||
c-0.241-0.039-0.396,0.232-0.44,0.586c-0.012,0-0.024,0-0.037,0c0.025-0.146,0.049-0.293,0.074-0.439
|
||||
c0.101-0.189,0.305-0.31,0.513-0.184c0.066,0.015,0.027-0.121-0.069-0.141c-0.35,0.019-0.394,0.126-0.529,0.281
|
||||
c-0.062,0.09-0.094,0.013-0.057-0.05c0.122-0.17,0.449-0.356,0.449-0.356L14.354,10.667z M14.688,12.587
|
||||
c0.061,0.037,0.122,0.074,0.183,0.11C14.798,12.601,14.83,12.625,14.688,12.587z M15.274,13.101
|
||||
c-0.049,0.073-0.099,0.146-0.146,0.22c0.012,0,0.023,0,0.036,0c0.086-0.061,0.171-0.122,0.257-0.183
|
||||
C15.372,13.125,15.323,13.113,15.274,13.101z M15.494,13.064c-0.077-0.062-0.072-0.057-0.22-0.074
|
||||
C15.348,13.015,15.421,13.04,15.494,13.064z M15.128,12.844c-0.037,0.024-0.074,0.049-0.111,0.073
|
||||
c-0.012,0.086-0.024,0.171-0.037,0.257c0.024-0.012,0.049-0.024,0.073-0.037C15.126,12.979,15.211,12.961,15.128,12.844z
|
||||
M15.458,10.754c0.003-0.181-0.037-0.335-0.153-0.461c-0.024-0.034-0.076-0.006-0.067,0.021c0.015,0.077,0.11,0.178,0.079,0.22
|
||||
c-0.024,0.028-0.073,0.034-0.104-0.024c-0.051-0.114-0.136-0.25-0.196-0.232c-0.07,0.012,0.141,0.229,0.111,0.257
|
||||
c-0.071,0.052-0.272-0.296-0.331-0.257c-0.067,0.027,0.116,0.196,0.073,0.22c-0.085,0.021-0.333-0.413-0.403-0.367
|
||||
c-0.04,0.04,0.146,0.22,0.22,0.33c0.034,0.077,0.012,0.138-0.037,0.11c-0.073-0.098-0.147-0.196-0.22-0.294c0,0.049,0,0.098,0,0.147
|
||||
c0.151,0.187,0.263,0.319,0.44,0.477c0.28,0.011,0.437-0.017,0.587-0.11C15.458,10.779,15.458,10.767,15.458,10.754z M15.421,11.048
|
||||
c-0.049,0.012-0.098,0.024-0.146,0.037c-0.196-0.037-0.392-0.073-0.587-0.11c-0.085,0.074-0.171,0.147-0.257,0.22
|
||||
c-0.032,0.273-0.029,0.543,0.037,0.77c0.159,0.085,0.317,0.171,0.476,0.256c-0.076-0.243-0.009-0.363,0.147-0.476
|
||||
c0.095-0.146,0.188-0.157,0.44-0.147C15.494,11.414,15.458,11.231,15.421,11.048z M16.028,9.043
|
||||
c-0.463,0.432-0.526,1.78-0.204,2.812c-0.013,0.012-0.024,0.024-0.037,0.037c-0.324-0.232-0.46-0.248-0.77,0
|
||||
c0,0.049,0,0.098,0,0.146c0.074,0.11,0.147,0.22,0.221,0.33c-0.074,0.11-0.147,0.22-0.221,0.33c0.061,0.037,0.123,0.073,0.184,0.11
|
||||
c0.161-0.009,0.276,0.054,0.439,0.11c0.065-0.476-0.182-0.582-0.366-0.88c0.024-0.012,0.049-0.024,0.073-0.037
|
||||
c0.324,0.051,0.541,0.152,0.477,0.586c0.037-0.024,0.073-0.049,0.11-0.073c-0.006-0.303-0.098-0.378-0.22-0.55
|
||||
c0.086,0.049,0.171,0.098,0.257,0.146c-0.056-0.185-0.024-0.397,0.037-0.55c0.036,0.024,0.073,0.049,0.109,0.073
|
||||
c0.013,0.135,0.025,0.27,0.037,0.404c0.073-0.037,0.146-0.073,0.22-0.11c-0.129,0.184-0.213,0.258-0.22,0.586
|
||||
c0.037,0.012,0.073,0.024,0.11,0.037c-0.017-0.305,0.026-0.506,0.33-0.586c-0.061,0.073-0.123,0.146-0.184,0.22
|
||||
c0.156-0.115,0.23-0.2,0.403-0.11c-0.154,0.174-0.262,0.307-0.403,0.513c0.025,0.11,0.049,0.22,0.074,0.33
|
||||
c0.024-0.012,0.049-0.024,0.073-0.037c0.097-0.172,0.291-0.151,0.513-0.183c-0.067-0.208-0.159-0.188-0.22-0.404
|
||||
c0.073-0.146,0.146-0.293,0.22-0.439c-0.062-0.073-0.122-0.146-0.184-0.221c-0.32-0.014-0.348,0.107-0.623,0.184
|
||||
C16.441,11.216,16.641,9.554,16.028,9.043z M15.897,13.321c-0.122-0.073-0.245-0.146-0.367-0.22
|
||||
c0.103,0.166,0.092,0.204,0.146,0.403c0.297,0.017,0.499,0.03,0.733-0.037c0.037-0.134,0.074-0.269,0.11-0.403
|
||||
C16.383,13.235,16.185,13.298,15.897,13.321z M16.374,12.991c-0.073-0.11-0.146-0.22-0.22-0.33
|
||||
c-0.062-0.012-0.122-0.024-0.184-0.037c-0.104,0.127-0.153,0.224-0.22,0.404c0.037,0.024,0.074,0.049,0.11,0.073
|
||||
C16.063,13.236,16.254,13.143,16.374,12.991z M16.887,13.394c-0.11-0.012-0.22-0.024-0.33-0.037c0.037,0.037,0.073,0.073,0.11,0.11
|
||||
c0.073-0.012,0.146-0.024,0.22-0.037C16.887,13.418,16.887,13.406,16.887,13.394z M16.924,13.284
|
||||
c-0.048-0.172-0.048-0.171-0.22-0.22c0,0.049,0,0.098,0,0.146C16.777,13.235,16.851,13.26,16.924,13.284z M17.73,10.131
|
||||
c-0.061,0.049-0.122,0.098-0.183,0.146c-0.037,0.074-0.073,0.147-0.11,0.22c-0.012,0-0.024,0-0.037,0c0-0.012,0-0.024,0-0.037
|
||||
c0.061-0.135,0.122-0.269,0.183-0.403c-0.122,0.122-0.244,0.244-0.366,0.367c0.024-0.073,0.049-0.147,0.073-0.22
|
||||
c-0.098,0.085-0.196,0.171-0.294,0.257c0.024-0.085,0.049-0.171,0.074-0.257c-0.037,0.024-0.074,0.049-0.11,0.073
|
||||
c-0.036,0.074-0.073,0.147-0.11,0.22c-0.012-0.049-0.024-0.098-0.037-0.146c0.012-0.025,0.024-0.049,0.037-0.074
|
||||
c-0.073,0.049-0.146,0.098-0.22,0.147c0,0.012,0,0.024,0,0.037c0,0.232,0.031,0.278,0.11,0.403c0.012,0,0.024,0,0.037,0
|
||||
C17.394,10.872,17.582,10.576,17.73,10.131z M17.181,12.147c0.209-0.086,0.555-0.259,0.477-0.514
|
||||
c0.055-0.19,0.009-0.373-0.037-0.549c-0.085-0.117-0.159-0.098-0.293-0.184c-0.165,0.108-0.47,0.089-0.697,0.147
|
||||
c-0.024,0.171-0.049,0.342-0.073,0.513C16.955,11.506,17.196,11.679,17.181,12.147z M16.851,12.808
|
||||
c-0.061,0.024-0.122,0.049-0.183,0.073c0,0.012,0,0.024,0,0.037c0.3,0.021,0.28,0.118,0.44,0.257
|
||||
C17.105,12.909,17.065,12.859,16.851,12.808z M17.272,13.248c0,0-0.018,0.238-0.248,0.33c-0.229,0.092-0.504-0.009-0.504-0.009
|
||||
s-0.166,0.12-0.275,0.11c-0.11-0.009-0.32-0.11-0.467-0.073s-0.257-0.055-0.257-0.055s-0.119,0.172-0.398,0.111
|
||||
c-0.192-0.042-0.239-0.251-0.239-0.251s-0.077,0.13-0.27,0.231c-0.193,0.101-0.468-0.046-0.468-0.046s-0.174,0.376-0.413,0.596
|
||||
c-0.238,0.221-0.651,0.486-0.999,0.523s-1.595-0.302-1.595-0.302s-0.046,0.055-0.055,0.11c-0.009,0.055-0.138,3.785,0,4.565
|
||||
c0.094,0.532,0.072,0.576,0.061,0.572c-0.007-0.012-0.004-0.002,0,0c0.001,0.001,0.002,0.003,0.004,0.005
|
||||
c0.037,0.064,0.21,0.092,0.312,0.238c0.101,0.147,0.119,0.257,0.174,0.321c0.055,0.064,0.221,0.101,0.221,0.101
|
||||
s0.155,0.138,0.11,0.413c-0.046,0.274-0.128,0.486-0.128,0.486s0.174,0.174,0.202,0.274c0.027,0.101,0.027,0.202,0.027,0.202
|
||||
s0.037-0.119,0.256,0.083c0.22,0.202,0.275,0.312,0.275,0.312l0.009,0.22c0,0,0.009,0.046-0.027,0.12
|
||||
c-0.037,0.073-0.083,0.128-0.083,0.128s0.21,0.119,0.394,0.302c0.183,0.184,0.468,0.422,0.669,0.541s0.568,0.34,0.696,0.386
|
||||
c0.128,0.045,0.22,0.055,0.22,0.055s-0.11-0.358,0.119-0.522c0.229-0.165,0.477-0.037,0.477-0.037l0.285,0.248
|
||||
c0,0,0.101-0.192,0.192-0.248c0.092-0.055,0.248-0.101,0.422-0.036c0.174,0.064,0.238,0.293,0.238,0.293s0.101-0.147,0.238-0.248
|
||||
s0.266-0.073,0.422-0.009c0.156,0.064,0.293,0.33,0.293,0.33s0.083-0.174,0.211-0.266c0.128-0.092,0.357-0.073,0.44-0.064
|
||||
c0.083,0.009,0.174,0.128,0.174,0.128s0.586-0.293,0.724-0.385c0.138-0.091,0.761-0.623,0.789-0.696
|
||||
c0.027-0.073-0.019-0.238-0.019-0.293c0-0.055,0.019-0.21,0.019-0.21s0.137-0.193,0.229-0.22c0.091-0.028,0.22-0.138,0.22-0.138
|
||||
l0.256-0.458c0,0-0.083-0.503,0.027-0.733c0.11-0.229,0.385-0.559,0.532-0.788c0.146-0.229,0.274-0.504,0.274-0.504
|
||||
s0.009-1.302,0.027-1.659c0.019-0.358,0.046-1.128,0.046-1.128s0.101-0.733,0.083-1.063c-0.018-0.331-0.138-0.963-0.138-0.963
|
||||
s-0.046,0-0.303,0.119c-0.256,0.12-0.825,0.257-1.118,0.257c-0.293,0-1.182-0.184-1.311-0.367c-0.128-0.184-0.339-0.807-0.339-0.807
|
||||
s-0.092-0.028-0.294-0.019C17.492,13.367,17.272,13.248,17.272,13.248z M17.768,12.734c0.021,0.111,0.067,0.125,0.146,0.256
|
||||
c-0.098-0.037-0.196-0.073-0.293-0.11c0.063,0.138,0.104,0.253,0.11,0.257c0.012,0.012,0.024,0.024,0.037,0.037
|
||||
c0.061-0.024,0.122-0.049,0.183-0.073c0.013-0.049,0.024-0.098,0.037-0.147c0-0.012,0-0.024,0-0.037
|
||||
c-0.037-0.061-0.074-0.122-0.11-0.183C17.841,12.734,17.804,12.734,17.768,12.734z M18.171,12.441
|
||||
c0.049,0.024,0.098,0.049,0.146,0.073c0,0.024,0,0.049,0,0.073c-0.203-0.024-0.289-0.084-0.403,0
|
||||
c0.098,0.025,0.196,0.049,0.293,0.074c0.024,0.037,0.049,0.073,0.073,0.11c0.073-0.085,0.146-0.171,0.22-0.257
|
||||
c-0.024-0.024-0.049-0.049-0.074-0.073C18.342,12.441,18.256,12.441,18.171,12.441z M18.647,12.147
|
||||
c-0.049-0.012-0.098-0.024-0.146-0.037c-0.013,0.037-0.024,0.073-0.037,0.11c0.086,0.024,0.171,0.049,0.257,0.073
|
||||
c0.012-0.024,0.024-0.049,0.037-0.073C18.721,12.196,18.684,12.172,18.647,12.147z M19.564,11.231
|
||||
c-0.063,0.049-0.112,0.164-0.073,0.293c0.012,0,0.061-0.037,0.073-0.037C19.564,11.402,19.564,11.316,19.564,11.231z M21.324,11.268
|
||||
c0,0.012,0,0.024,0,0.037c-0.275,0.053-0.404,0.073-0.514-0.146c0.256-0.017,0.239-0.011,0.22-0.146
|
||||
c-0.086-0.013-0.171-0.025-0.257-0.037c-0.229,0.189-0.304,0.286-0.435,0.541c-0.002,0.044,0,0.091,0.013,0.128
|
||||
c0.037,0.101,0.083,0.192,0.12,0.22c0.275,0.183,0.524,0.162,0.736,0.029c0.002,0,0.004-0.001,0.006-0.001
|
||||
c0.001-0.001,0.002-0.002,0.003-0.004c0.35-0.226,0.591-0.757,0.657-1.169c-0.147-0.123-0.275-0.18-0.467-0.266
|
||||
c-0.696-0.119-1.488-0.025-1.806,0.632c0.156,0.06-0.021,0.548,0,0.843c0.012,0,0.024,0,0.037,0
|
||||
C19.603,11.007,20.958,10.412,21.324,11.268z M21.141,11.158c-0.061,0.024-0.123,0.049-0.184,0.073c0,0.012,0,0.024,0,0.037
|
||||
c0.074,0,0.147,0,0.221,0c0.024-0.012,0.049-0.024,0.073-0.037c0-0.012,0-0.024,0-0.037c-0.012-0.012-0.024-0.024-0.037-0.037
|
||||
C21.19,11.158,21.165,11.158,21.141,11.158z M24.294,12.771c-1.359-1.624-3.382,1.814-4.693,0.806
|
||||
c-0.223-0.102-0.31-0.282-0.403-0.513c0.011-0.36,0.146-0.583,0.403-0.697c0.381-0.118,0.735,0.166,0.844,0.44
|
||||
c0.054,0.176,0.031,0.379-0.037,0.513c-0.122,0.037-0.244,0.073-0.366,0.11c0.012-0.024,0.024-0.049,0.036-0.073
|
||||
c0.086-0.073,0.171-0.146,0.257-0.22c0-0.061,0-0.123,0-0.184c-0.122,0.012-0.244,0.024-0.366,0.037
|
||||
c0.078-0.073,0.276-0.091,0.366-0.146c-0.122-0.012-0.244-0.024-0.366-0.037c-0.074,0.037-0.147,0.073-0.221,0.11
|
||||
c0.037-0.049,0.073-0.098,0.11-0.146c0.122-0.024,0.245-0.049,0.367-0.073c-0.024-0.024-0.049-0.049-0.074-0.074
|
||||
c-0.394,0.118-0.503,0.289-0.77,0.514c0.1,0.101,0.075,0.093,0.22,0.073c0.012,0.012,0.024,0.024,0.037,0.037
|
||||
c-0.084,0.102-0.077,0.051-0.073,0.11c0.061,0,0.122,0,0.183,0c-0.051,0.079-0.083,0.087-0.146,0.146c0.024,0,0.049,0,0.073,0
|
||||
c0.208,0.012,0.416,0.025,0.624,0.037c0.134-0.11,0.269-0.22,0.403-0.33c0.03-0.36-0.012-0.59-0.073-0.88
|
||||
c-1.169-0.438-2.49-0.43-1.833,1.21c-0.227-0.129-0.243-0.242-0.367-0.476c0.03,0.423,0.277,0.593,0.477,0.843
|
||||
c-0.308-0.116-0.366-0.328-0.586-0.514c0,0.037,0,0.073,0,0.11c0.1,0.25,0.236,0.315,0.367,0.514c-0.061,0-0.122,0-0.183,0
|
||||
c0.024,0.037,0.049,0.073,0.073,0.11c1.115,0.53,1.806,0.125,2.933-0.22c0.232-0.012,0.464-0.024,0.697-0.037
|
||||
c0.225-0.13,0.263-0.335,0.696-0.514c0.159,0.122,0.318,0.245,0.477,0.367c0.012-0.086,0.024-0.171,0.037-0.257
|
||||
c0.024,0.012,0.049,0.024,0.073,0.037c-0.007,0.272,0.009,0.281,0.183,0.367c0.012,0,0.024,0,0.037,0c0-0.183,0-0.367,0-0.55
|
||||
c0.024,0.012,0.049,0.024,0.073,0.037c0.049-0.012,0.098-0.024,0.147-0.037c0.048,0.085,0.098,0.171,0.146,0.256
|
||||
c0-0.037,0-0.073,0-0.11c-0.173-0.251-0.382-0.296-0.624-0.477c0.35,0.046,0.486,0.166,0.697,0.33
|
||||
c-0.037-0.073-0.073-0.146-0.11-0.22c0.013-0.012,0.025-0.024,0.037-0.037c0.061,0.061,0.122,0.122,0.183,0.183
|
||||
c-0.034-0.171-0.062-0.215-0.183-0.293c0.012-0.024,0.024-0.049,0.036-0.073c0.086,0.073,0.171,0.147,0.257,0.22
|
||||
c-0.112-0.352-0.311-0.345-0.55-0.55C23.976,12.624,24.135,12.698,24.294,12.771z M19.491,12.917
|
||||
c-0.012,0.024-0.024,0.049-0.037,0.073c0.024,0,0.049,0,0.073,0C19.515,12.966,19.503,12.942,19.491,12.917z M20.041,12.514
|
||||
c-0.049,0-0.098,0-0.147,0c-0.146,0.126-0.265,0.192-0.367,0.367C19.698,12.759,19.87,12.637,20.041,12.514z M23.854,13.504
|
||||
c0,0.11,0,0.221,0,0.331c0.024-0.012,0.049-0.024,0.074-0.037c0-0.061,0-0.123,0-0.184C23.903,13.577,23.878,13.541,23.854,13.504z
|
||||
M24.11,13.577c0.037,0,0.074,0,0.11,0c0-0.048,0-0.098,0-0.146c-0.012,0-0.024,0-0.037,0C24.16,13.479,24.135,13.529,24.11,13.577z
|
||||
M24.514,13.248c0,0.037,0,0.073,0,0.11c0.013-0.037,0.025-0.073,0.037-0.11C24.539,13.248,24.526,13.248,24.514,13.248z
|
||||
M24.514,13.394c-0.012,0.098-0.024,0.196-0.036,0.294c-0.123,0.11-0.245,0.22-0.367,0.33c-0.627,0.008-0.945-0.437-1.21-0.44
|
||||
c-0.233-0.026-0.377,0.125-0.55,0.257c-0.065,0.294-0.175,0.566-0.11,0.917c0.085,0.073,0.171,0.146,0.256,0.22
|
||||
c-0.049,0-0.098,0-0.146,0c0.012,0.061,0.024,0.123,0.037,0.184c0.532,0.274,1.423,0.456,1.87-0.11
|
||||
c-0.098,0.024-0.195,0.049-0.293,0.073c0.012-0.024,0.024-0.049,0.037-0.073c0.254-0.055,0.403-0.206,0.513-0.403
|
||||
c-0.206,0.178-0.283,0.344-0.66,0.366c0.012-0.024,0.024-0.049,0.037-0.073c0.315-0.037,0.49-0.225,0.587-0.477
|
||||
c-0.147,0.086-0.293,0.171-0.44,0.257c-0.012-0.037-0.024-0.073-0.037-0.11c0.086-0.061,0.171-0.122,0.257-0.183
|
||||
c-0.107,0.04-0.162,0.067-0.257,0.037c0-0.012,0-0.024,0-0.037c0.22-0.052,0.356-0.179,0.44-0.367
|
||||
c-0.146,0.073-0.293,0.146-0.44,0.22c0.245-0.246,0.551-0.301,0.587-0.77C24.563,13.467,24.539,13.431,24.514,13.394z
|
||||
M19.454,14.054c0.037,0,0.073,0,0.11,0c0,0.012,0,0.024,0,0.037c-0.049,0.012-0.098,0.024-0.146,0.037
|
||||
C19.43,14.103,19.442,14.079,19.454,14.054z M18.977,13.504c-0.024-0.061-0.049-0.122-0.073-0.183
|
||||
c0.085,0.073,0.171,0.146,0.256,0.22c-0.036,0-0.073,0-0.109,0C19.026,13.529,19.001,13.516,18.977,13.504z M21.067,11.891
|
||||
c0.038-0.037,0.074-0.073,0.111-0.11c-0.171,0.044-0.237,0.095-0.367,0c0.122-0.024,0.244-0.049,0.367-0.073
|
||||
c0-0.012,0-0.025,0-0.037c-0.22,0.005-0.3-0.011-0.404-0.111c0.215,0.031,0.382,0.072,0.477-0.11
|
||||
c-0.188,0.059-0.331,0.043-0.44-0.073c0.183,0,0.367,0,0.55,0c0,0.26-0.053,0.36-0.144,0.51c-0.003,0.002-0.006,0.003-0.009,0.005
|
||||
c-0.047,0.012-0.094,0.023-0.141,0.035C21.067,11.916,21.067,11.903,21.067,11.891z M16.008,10.864
|
||||
c-0.127-0.399-0.099-1.227,0.033-1.649c0.142,0.464,0.232,1.46-0.033,1.722C16.008,10.913,16.008,10.889,16.008,10.864z
|
||||
M16.117,11.377c-0.024,0.012-0.049,0.024-0.073,0.037c-0.024-0.012-0.049-0.024-0.073-0.037c0-0.049,0-0.098,0-0.146
|
||||
c0.049,0,0.098,0,0.146,0C16.117,11.28,16.117,11.329,16.117,11.377z M13.917,11.487c-0.024-0.012-0.049-0.024-0.074-0.037
|
||||
c0-0.012,0-0.024,0-0.037c0.013-0.073,0.027-0.236,0.046-0.232C13.96,11.215,13.905,11.39,13.917,11.487z M13.697,11.634
|
||||
c0.012-0.073,0.024-0.146,0.037-0.22c0.078,0.076,0.068,0.095,0.074,0.257c-0.013,0-0.024,0-0.037,0
|
||||
C13.746,11.659,13.722,11.646,13.697,11.634z M12.927,13.651c0.061-0.074,0.122-0.147,0.184-0.22c0.017,0.1,0.007,0.083-0.038,0.183
|
||||
C13.025,13.626,12.976,13.639,12.927,13.651z M12.524,14.164c0.037,0,0.073,0,0.11,0c0,0.012,0,0.024,0,0.037
|
||||
c-0.037,0.012-0.073,0.024-0.11,0.037C12.524,14.213,12.524,14.188,12.524,14.164z M11.262,11.535
|
||||
c0.061,0.026,0.064,0.037-0.005,0.079c-0.014,0.022-0.285,0.009-0.419,0.021c0.012,0.025,0.024,0.049,0.037,0.074
|
||||
c0.048,0.055,0.35-0.02,0.425,0.037c-0.025,0,0.014,0.052-0.016,0.073c-0.085,0.037-0.218-0.016-0.304,0.021
|
||||
c0.024,0,0.038,0.068,0.063,0.068c0.089-0.002,0.163,0.018,0.247,0.005c0.068-0.004,0.1,0.077,0.016,0.094
|
||||
c-0.388,0.024-0.278,0.068-0.54-0.115c-0.012-0.024-0.019-0.033-0.031-0.058c-0.058-0.098-0.105-0.28-0.026-0.32
|
||||
C10.774,11.486,11.162,11.526,11.262,11.535z M10.438,15.063c0.025,0.027,0.051,0.055,0.077,0.082
|
||||
C10.486,15.119,10.462,15.091,10.438,15.063z M12.891,24.101c0.037-0.012,0.073-0.024,0.11-0.037c0.037,0,0.073,0,0.111,0
|
||||
c0,0.012,0,0.024,0,0.037C12.948,24.131,12.999,24.174,12.891,24.101z M18.208,11.377c-0.024-0.024-0.049-0.049-0.073-0.073
|
||||
c0.012-0.061,0.024-0.122,0.037-0.183C18.221,11.214,18.234,11.293,18.208,11.377z M10.031,23.074
|
||||
c-0.07-0.232-0.113-0.458-0.11-0.807c0.181,0.308,0.179,0.698,0.367,0.953C10.202,23.172,10.117,23.123,10.031,23.074z M21.911,23
|
||||
c-0.037,0.024-0.074,0.049-0.11,0.074c0.199-0.276,0.218-0.542,0.33-0.954C22.285,22.44,22.113,22.893,21.911,23z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#E2CCA8" d="M8.085,4.204H7.369c-0.059,0-0.107,0.048-0.107,0.107v0.024c0,0.03,0.012,0.058,0.033,0.079
|
||||
c0.02,0.019,0.046,0.029,0.074,0.029c0.002,0,0.004,0,0.005,0c0.008,0,0.015,0,0.022,0c0.028,0,0.044,0.003,0.051,0.005
|
||||
c0.004,0.013,0.015,0.054,0.015,0.156v1.811c0,0.084-0.007,0.124-0.012,0.14C7.439,6.558,7.415,6.563,7.369,6.563
|
||||
c-0.059,0-0.107,0.048-0.107,0.107v0.024c0,0.06,0.048,0.107,0.107,0.107h0.716c0.06,0,0.107-0.048,0.107-0.107V6.67
|
||||
c0-0.028-0.011-0.056-0.031-0.076c-0.02-0.021-0.047-0.032-0.076-0.032c-0.067,0-0.087-0.008-0.088-0.009
|
||||
C7.995,6.553,7.994,6.552,7.993,6.551c-0.002-0.013-0.006-0.049-0.006-0.14V4.583c0-0.071,0.003-0.108,0.005-0.127
|
||||
c0.002-0.001,0.004-0.002,0.007-0.003c0.024-0.007,0.046-0.011,0.065-0.011c0.004,0,0.008,0,0.012,0c0.003,0,0.007,0,0.01,0
|
||||
c0.027,0,0.053-0.01,0.072-0.028c0.022-0.021,0.035-0.049,0.035-0.08V4.312C8.192,4.252,8.145,4.204,8.085,4.204z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E2CCA8" d="M11.476,4.204h-0.52c-0.059,0-0.107,0.048-0.107,0.107v0.024c0,0.06,0.048,0.108,0.107,0.108
|
||||
c0.033,0,0.06,0.004,0.08,0.012c0.003,0.009,0.008,0.032,0.008,0.076v1.432l-1.831-1.73c-0.02-0.019-0.047-0.029-0.074-0.029
|
||||
H8.634c-0.059,0-0.107,0.048-0.107,0.107v0.024c0,0.029,0.012,0.058,0.033,0.078c0.02,0.019,0.046,0.03,0.074,0.03
|
||||
c0.001,0,0.003,0,0.005,0c0.009,0,0.019,0,0.027,0c0.097,0,0.157,0.022,0.179,0.065C8.882,4.582,8.9,4.683,8.9,4.806v1.612
|
||||
c0,0.081-0.007,0.12-0.011,0.137C8.877,6.558,8.851,6.563,8.802,6.563c-0.06,0-0.107,0.048-0.107,0.107v0.024
|
||||
c0,0.06,0.048,0.107,0.107,0.107h0.516c0.059,0,0.107-0.048,0.107-0.107V6.67c0-0.054-0.04-0.099-0.093-0.106
|
||||
C9.281,6.557,9.254,6.551,9.24,6.548C9.236,6.535,9.232,6.511,9.232,6.461V4.948l1.961,1.853c0.021,0.019,0.046,0.029,0.073,0.029
|
||||
c0.015,0,0.029-0.003,0.043-0.009c0.039-0.017,0.064-0.056,0.064-0.099V4.554c0-0.07,0.011-0.093,0.013-0.097l0,0
|
||||
c0.002,0,0.025-0.012,0.092-0.014c0.058-0.001,0.104-0.049,0.104-0.108V4.312C11.583,4.252,11.535,4.204,11.476,4.204z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E2CCA8" d="M13.718,4.204h-1.699c-0.059,0-0.107,0.048-0.107,0.107v0.024c0,0.06,0.048,0.108,0.107,0.108
|
||||
c0.05,0,0.067,0.009,0.07,0.01c0,0.001,0.012,0.024,0.012,0.097V6.51c0,0.022-0.002,0.037-0.006,0.045
|
||||
c-0.009,0.003-0.032,0.007-0.076,0.007c-0.059,0-0.107,0.048-0.107,0.107v0.024c0,0.06,0.048,0.107,0.107,0.107h0.706
|
||||
c0.059,0,0.107-0.048,0.107-0.107V6.67c0-0.059-0.048-0.107-0.107-0.107c-0.063,0-0.085-0.01-0.09-0.013
|
||||
c0.001-0.001-0.009-0.025-0.009-0.091V5.616h0.764c0.006,0,0.012,0,0.017,0c0.012,0.046,0.054,0.083,0.104,0.083h0.027
|
||||
c0.06,0,0.108-0.049,0.108-0.108V5.363c0-0.059-0.048-0.107-0.108-0.107H13.51c-0.048,0-0.089,0.031-0.103,0.075
|
||||
c-0.016,0.002-0.042,0.004-0.083,0.004h-0.699V4.5h0.758c0.099,0,0.142,0.012,0.159,0.019c0,0,0.019,0.012,0.038,0.074
|
||||
c0,0.003,0.001,0.007,0.002,0.01c0.005,0.054,0.051,0.096,0.106,0.096h0.027c0.06,0,0.107-0.048,0.107-0.107v-0.28
|
||||
C13.825,4.252,13.777,4.204,13.718,4.204z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E2CCA8" d="M16.034,6.26h-0.027c-0.052,0-0.097,0.038-0.106,0.089c-0.016,0.097-0.035,0.119-0.036,0.12
|
||||
c-0.014,0.013-0.032,0.022-0.055,0.027c-0.016,0.003-0.073,0.011-0.267,0.011h-0.473c-0.116,0-0.174-0.008-0.203-0.015
|
||||
c-0.016-0.004-0.028-0.011-0.039-0.034c-0.009-0.02-0.024-0.07-0.024-0.195V5.635h0.736c0.033,0,0.054,0.001,0.065,0.003
|
||||
c0.015,0.043,0.056,0.076,0.103,0.076h0.027c0.059,0,0.108-0.048,0.108-0.108V5.382c0-0.059-0.049-0.107-0.108-0.107h-0.027
|
||||
c-0.048,0-0.088,0.031-0.103,0.075c-0.016,0.002-0.042,0.004-0.087,0.004h-0.715V4.5h0.778c0.07,0,0.102,0.006,0.114,0.009
|
||||
c0.006,0.011,0.026,0.053,0.058,0.161c0.014,0.045,0.056,0.077,0.104,0.077h0.027c0.059,0,0.107-0.048,0.107-0.107V4.312
|
||||
c0-0.06-0.048-0.107-0.107-0.107h-1.688c-0.059,0-0.107,0.048-0.107,0.107v0.028c0,0.059,0.048,0.107,0.107,0.107
|
||||
c0.039,0,0.061,0.003,0.072,0.006c0.005,0.018,0.01,0.055,0.01,0.124V6.5c0,0.025-0.002,0.041-0.004,0.049
|
||||
c-0.014,0.005-0.039,0.011-0.083,0.013c-0.057,0.003-0.102,0.05-0.102,0.107v0.024c0,0.06,0.048,0.107,0.107,0.107h1.836
|
||||
c0.059,0,0.107-0.048,0.107-0.107V6.368C16.142,6.308,16.093,6.26,16.034,6.26z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E2CCA8" d="M19.399,6.492c-0.01-0.03-0.033-0.054-0.062-0.065c-0.013-0.005-0.026-0.008-0.04-0.008
|
||||
c-0.017,0-0.034,0.004-0.05,0.013c-0.101,0.053-0.188,0.08-0.26,0.08c-0.074,0-0.153-0.021-0.235-0.061
|
||||
c-0.057-0.028-0.168-0.116-0.377-0.372c-0.175-0.215-0.283-0.354-0.322-0.415l-0.122-0.167c0.112-0.071,0.205-0.154,0.275-0.247
|
||||
c0.096-0.128,0.144-0.267,0.144-0.41c0-0.126-0.029-0.235-0.085-0.325c-0.057-0.09-0.141-0.162-0.25-0.213
|
||||
c-0.102-0.048-0.203-0.076-0.302-0.085c-0.09-0.008-0.23-0.012-0.428-0.012h-0.762c-0.06,0-0.107,0.048-0.107,0.107v0.024
|
||||
c0,0.06,0.047,0.107,0.106,0.108c0.042,0,0.064,0.006,0.073,0.009c0.009,0.025,0.014,0.058,0.014,0.098v1.893
|
||||
c0,0.063-0.006,0.095-0.01,0.108c-0.011,0.003-0.035,0.009-0.08,0.01c-0.058,0.002-0.104,0.05-0.104,0.107v0.024
|
||||
c0,0.06,0.048,0.107,0.107,0.107h0.693c0.059,0,0.107-0.048,0.107-0.107V6.67c0-0.059-0.048-0.107-0.107-0.107
|
||||
c-0.042,0-0.063-0.005-0.072-0.007c-0.004-0.011-0.011-0.038-0.011-0.09V5.662h0.11l0.186-0.006l0.232,0.318
|
||||
c0.003,0.004,0.006,0.009,0.009,0.013v0c0.286,0.378,0.484,0.605,0.605,0.694c0.13,0.095,0.287,0.143,0.464,0.143
|
||||
c0.255,0,0.468-0.06,0.631-0.179c0.038-0.027,0.054-0.077,0.039-0.121L19.399,6.492z M17.134,4.482h0.114
|
||||
c0.23,0,0.389,0.052,0.472,0.156c0.091,0.112,0.135,0.226,0.135,0.349c0,0.12-0.041,0.213-0.124,0.285
|
||||
c-0.086,0.075-0.229,0.113-0.422,0.113h-0.174V4.482z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E2CCA8" d="M22.246,4.204h-0.52c-0.06,0-0.107,0.048-0.107,0.107v0.024c0,0.06,0.048,0.108,0.107,0.108
|
||||
c0.032,0,0.06,0.004,0.079,0.012c0.004,0.009,0.009,0.032,0.009,0.076v1.432l-1.832-1.73c-0.02-0.019-0.046-0.029-0.073-0.029
|
||||
h-0.505c-0.059,0-0.107,0.048-0.107,0.107v0.024c0,0.029,0.012,0.058,0.033,0.078c0.02,0.019,0.046,0.03,0.074,0.03
|
||||
c0.001,0,0.003,0,0.004,0c0.009,0,0.019,0,0.027,0c0.097,0,0.158,0.022,0.179,0.065c0.037,0.074,0.055,0.174,0.055,0.298v1.612
|
||||
c0,0.081-0.006,0.12-0.011,0.137c-0.013,0.003-0.039,0.008-0.088,0.008c-0.059,0-0.107,0.048-0.107,0.107v0.024
|
||||
c0,0.06,0.048,0.107,0.107,0.107h0.516c0.06,0,0.107-0.048,0.107-0.107V6.67c0-0.054-0.04-0.099-0.093-0.106
|
||||
c-0.051-0.007-0.078-0.012-0.092-0.016c-0.004-0.013-0.008-0.037-0.008-0.086V4.948l1.961,1.853
|
||||
c0.021,0.019,0.047,0.029,0.074,0.029c0.015,0,0.029-0.003,0.042-0.009c0.04-0.017,0.065-0.056,0.065-0.099V4.554
|
||||
c0-0.069,0.011-0.093,0.013-0.097c0.001,0,0.025-0.012,0.092-0.014c0.058-0.001,0.104-0.049,0.104-0.108V4.312
|
||||
C22.354,4.252,22.305,4.204,22.246,4.204z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#E2CCA8" d="M25.104,4.461c-0.258-0.22-0.593-0.331-0.994-0.331c-0.333,0-0.625,0.073-0.871,0.218
|
||||
c-0.246,0.145-0.433,0.335-0.556,0.567c-0.122,0.229-0.184,0.458-0.184,0.678c0,0.333,0.131,0.62,0.39,0.856
|
||||
C23.146,6.682,23.477,6.8,23.875,6.8c0.484,0,0.881-0.145,1.177-0.431C25.35,6.082,25.5,5.724,25.5,5.304
|
||||
C25.5,4.968,25.367,4.685,25.104,4.461z M24.061,6.498c-0.303,0-0.57-0.116-0.817-0.354c-0.246-0.237-0.365-0.502-0.365-0.813
|
||||
c0-0.232,0.094-0.422,0.286-0.58c0.199-0.163,0.414-0.242,0.657-0.242c0.171,0,0.362,0.05,0.568,0.149
|
||||
c0.205,0.099,0.374,0.236,0.501,0.41c0.126,0.171,0.188,0.356,0.188,0.565c0,0.141-0.046,0.281-0.137,0.416
|
||||
c-0.092,0.138-0.221,0.247-0.382,0.327C24.396,6.458,24.228,6.498,24.061,6.498z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.6">
|
||||
<path fill="#0C1118" d="M8.085,4.204c0.06,0,0.107,0.048,0.107,0.107v0.024c0,0.031-0.013,0.06-0.035,0.08
|
||||
c-0.02,0.018-0.045,0.028-0.072,0.028c-0.003,0-0.007,0-0.01,0c-0.004,0-0.008,0-0.012,0c-0.019,0-0.041,0.004-0.065,0.011
|
||||
C7.996,4.454,7.993,4.455,7.991,4.456C7.989,4.475,7.986,4.512,7.986,4.583v1.829c0,0.09,0.004,0.126,0.006,0.14
|
||||
c0.001,0,0.002,0.001,0.004,0.002c0,0,0.021,0.009,0.088,0.009c0.029,0,0.056,0.011,0.076,0.032c0.02,0.02,0.031,0.047,0.031,0.076
|
||||
v0.024c0,0.06-0.048,0.107-0.107,0.107H7.369c-0.059,0-0.107-0.048-0.107-0.107V6.67c0-0.059,0.048-0.107,0.107-0.107
|
||||
c0.046,0,0.07-0.004,0.082-0.008c0.005-0.016,0.012-0.056,0.012-0.14V4.604c0-0.102-0.011-0.143-0.015-0.156
|
||||
C7.44,4.446,7.424,4.443,7.396,4.443c-0.007,0-0.014,0-0.022,0c-0.001,0-0.003,0-0.005,0c-0.027,0-0.054-0.01-0.074-0.029
|
||||
C7.273,4.394,7.262,4.366,7.262,4.335V4.312c0-0.06,0.048-0.107,0.107-0.107H8.085 M8.085,4.051H7.369
|
||||
c-0.144,0-0.26,0.117-0.26,0.261v0.024c0,0.072,0.029,0.141,0.081,0.189c0.034,0.032,0.075,0.054,0.12,0.065
|
||||
c0,0.004,0,0.009,0,0.014v1.811c0,0,0,0.001,0,0.002c-0.115,0.027-0.2,0.13-0.2,0.253v0.024c0,0.144,0.117,0.261,0.26,0.261h0.716
|
||||
c0.144,0,0.261-0.117,0.261-0.261V6.67c0-0.068-0.028-0.136-0.076-0.184C8.234,6.45,8.188,6.426,8.14,6.415
|
||||
c0-0.001,0-0.002,0-0.003V4.591C8.185,4.581,8.226,4.56,8.26,4.529c0.054-0.049,0.085-0.12,0.085-0.193V4.312
|
||||
C8.346,4.168,8.229,4.051,8.085,4.051L8.085,4.051z"/>
|
||||
<path fill="#0C1118" d="M11.476,4.204c0.059,0,0.107,0.048,0.107,0.107v0.024c0,0.059-0.046,0.106-0.104,0.108
|
||||
c-0.067,0.002-0.09,0.014-0.092,0.014l0,0c-0.002,0.004-0.013,0.027-0.013,0.097v2.169c0,0.043-0.025,0.082-0.064,0.099
|
||||
c-0.014,0.006-0.028,0.009-0.043,0.009c-0.027,0-0.053-0.01-0.073-0.029L9.232,4.948v1.513c0,0.05,0.004,0.074,0.008,0.086
|
||||
c0.014,0.003,0.041,0.009,0.092,0.016C9.385,6.571,9.425,6.616,9.425,6.67v0.024c0,0.06-0.048,0.107-0.107,0.107H8.802
|
||||
c-0.06,0-0.107-0.048-0.107-0.107V6.67c0-0.059,0.048-0.107,0.107-0.107c0.049,0,0.075-0.004,0.087-0.008
|
||||
C8.894,6.538,8.9,6.499,8.9,6.418V4.806c0-0.124-0.019-0.224-0.055-0.298C8.823,4.465,8.763,4.443,8.666,4.443
|
||||
c-0.009,0-0.018,0-0.027,0c-0.001,0-0.003,0-0.005,0c-0.027,0-0.054-0.011-0.074-0.03c-0.021-0.02-0.033-0.049-0.033-0.078V4.312
|
||||
c0-0.06,0.048-0.107,0.107-0.107h0.505c0.027,0,0.054,0.011,0.074,0.029l1.831,1.73V4.532c0-0.044-0.005-0.067-0.008-0.076
|
||||
c-0.02-0.008-0.047-0.012-0.08-0.012c-0.059,0-0.107-0.048-0.107-0.108V4.312c0-0.06,0.048-0.107,0.107-0.107H11.476 M11.476,4.051
|
||||
h-0.52c-0.144,0-0.26,0.117-0.26,0.261v0.024c0,0.122,0.083,0.224,0.195,0.253v1.02L9.318,4.122
|
||||
C9.27,4.076,9.206,4.051,9.139,4.051H8.634c-0.144,0-0.261,0.117-0.261,0.261v0.024c0,0.071,0.029,0.14,0.08,0.188
|
||||
c0.049,0.047,0.113,0.073,0.181,0.073h0.004l0.008,0c0.006,0,0.013,0,0.02,0c0.025,0,0.042,0.001,0.052,0.003
|
||||
c0.015,0.04,0.029,0.105,0.029,0.207v1.609C8.629,6.44,8.542,6.545,8.542,6.67v0.024c0,0.144,0.117,0.261,0.26,0.261h0.516
|
||||
c0.144,0,0.26-0.117,0.26-0.261V6.67c0-0.119-0.081-0.222-0.193-0.251V5.304l1.702,1.608c0.049,0.046,0.113,0.071,0.179,0.071
|
||||
c0.036,0,0.07-0.007,0.103-0.021c0.097-0.042,0.158-0.136,0.158-0.24V4.592c0.121-0.023,0.209-0.128,0.209-0.256V4.312
|
||||
C11.736,4.168,11.62,4.051,11.476,4.051L11.476,4.051z"/>
|
||||
<path fill="#0C1118" d="M13.718,4.204c0.06,0,0.107,0.048,0.107,0.107v0.28c0,0.06-0.048,0.107-0.107,0.107H13.69
|
||||
c-0.055,0-0.101-0.042-0.106-0.096c-0.001-0.003-0.002-0.007-0.002-0.01c-0.02-0.062-0.038-0.074-0.038-0.074
|
||||
C13.526,4.512,13.483,4.5,13.384,4.5h-0.758v0.835h0.699c0.042,0,0.067-0.002,0.083-0.004c0.014-0.044,0.055-0.075,0.103-0.075
|
||||
h0.027c0.06,0,0.108,0.048,0.108,0.107v0.228c0,0.059-0.048,0.108-0.108,0.108H13.51c-0.049,0-0.091-0.036-0.104-0.083
|
||||
c-0.004,0-0.01,0-0.017,0h-0.764v0.843c0,0.065,0.01,0.089,0.009,0.091c0.005,0.003,0.027,0.013,0.09,0.013
|
||||
c0.059,0,0.107,0.048,0.107,0.107v0.024c0,0.06-0.048,0.107-0.107,0.107h-0.706c-0.059,0-0.107-0.048-0.107-0.107V6.67
|
||||
c0-0.059,0.048-0.107,0.107-0.107c0.044,0,0.066-0.004,0.076-0.007c0.004-0.009,0.006-0.023,0.006-0.045V4.551
|
||||
c0-0.073-0.012-0.096-0.012-0.097c-0.003-0.001-0.02-0.01-0.07-0.01c-0.059,0-0.107-0.048-0.107-0.108V4.312
|
||||
c0-0.06,0.048-0.107,0.107-0.107H13.718 M13.718,4.051h-1.699c-0.144,0-0.261,0.117-0.261,0.261v0.024
|
||||
c0,0.12,0.081,0.22,0.19,0.251v1.833c-0.109,0.031-0.19,0.131-0.19,0.25v0.024c0,0.144,0.117,0.261,0.261,0.261h0.706
|
||||
c0.144,0,0.26-0.117,0.26-0.261V6.67c0-0.125-0.088-0.229-0.206-0.255V5.77h0.542c0.048,0.051,0.116,0.082,0.189,0.082h0.027
|
||||
c0.144,0,0.261-0.117,0.261-0.261V5.363c0-0.144-0.117-0.26-0.261-0.26H13.51c-0.073,0-0.14,0.029-0.188,0.079h-0.543V4.653h0.605
|
||||
c0.022,0,0.04,0,0.053,0.001c0.029,0.115,0.132,0.197,0.253,0.197h0.027c0.144,0,0.261-0.117,0.261-0.261v-0.28
|
||||
C13.979,4.168,13.862,4.051,13.718,4.051L13.718,4.051z"/>
|
||||
<path fill="#0C1118" d="M15.887,4.204c0.059,0,0.107,0.048,0.107,0.107V4.64c0,0.059-0.048,0.107-0.107,0.107h-0.027
|
||||
c-0.048,0-0.09-0.031-0.104-0.077c-0.032-0.108-0.052-0.15-0.058-0.161C15.686,4.506,15.653,4.5,15.583,4.5h-0.778v0.854h0.715
|
||||
c0.044,0,0.071-0.002,0.087-0.004c0.014-0.044,0.055-0.075,0.103-0.075h0.027c0.059,0,0.108,0.048,0.108,0.107v0.225
|
||||
c0,0.06-0.049,0.108-0.108,0.108h-0.027c-0.046,0-0.087-0.033-0.103-0.076c-0.012-0.002-0.032-0.003-0.065-0.003h-0.736v0.628
|
||||
c0,0.125,0.015,0.175,0.024,0.195c0.01,0.023,0.022,0.03,0.039,0.034c0.028,0.007,0.087,0.015,0.203,0.015h0.473
|
||||
c0.194,0,0.251-0.007,0.267-0.011c0.022-0.005,0.041-0.014,0.055-0.027c0-0.001,0.02-0.023,0.036-0.12
|
||||
c0.009-0.052,0.054-0.089,0.106-0.089h0.027c0.059,0,0.107,0.048,0.107,0.108v0.326c0,0.06-0.048,0.107-0.107,0.107h-1.836
|
||||
c-0.059,0-0.107-0.048-0.107-0.107V6.67c0-0.057,0.044-0.104,0.102-0.107c0.044-0.002,0.069-0.008,0.083-0.013
|
||||
C14.278,6.542,14.28,6.526,14.28,6.5V4.577c0-0.069-0.005-0.105-0.01-0.124c-0.011-0.003-0.033-0.006-0.072-0.006
|
||||
c-0.059,0-0.107-0.048-0.107-0.107V4.312c0-0.06,0.048-0.107,0.107-0.107H15.887 M15.887,4.051h-1.688
|
||||
c-0.144,0-0.26,0.117-0.26,0.261v0.028c0,0.119,0.08,0.22,0.189,0.25v1.83c-0.11,0.031-0.189,0.132-0.189,0.25v0.024
|
||||
c0,0.144,0.117,0.261,0.26,0.261h1.836c0.144,0,0.26-0.117,0.26-0.261V6.368c0-0.144-0.117-0.261-0.26-0.261h-0.027
|
||||
c-0.127,0-0.235,0.091-0.257,0.217c-0.002,0.01-0.003,0.019-0.005,0.026c-0.033,0.003-0.093,0.005-0.201,0.005h-0.473
|
||||
c-0.048,0-0.083-0.001-0.109-0.003c-0.002-0.021-0.003-0.049-0.003-0.087V5.789h0.565c0.048,0.05,0.115,0.08,0.186,0.08h0.027
|
||||
c0.144,0,0.261-0.117,0.261-0.261V5.382c0-0.144-0.117-0.261-0.261-0.261h-0.027c-0.073,0-0.14,0.03-0.188,0.08
|
||||
c0,0-0.001,0-0.002,0h-0.562V4.653h0.625c0.002,0,0.004,0,0.006,0c0.006,0.019,0.013,0.039,0.019,0.061
|
||||
c0.033,0.109,0.135,0.186,0.25,0.186h0.027c0.144,0,0.26-0.117,0.26-0.26V4.312C16.147,4.168,16.03,4.051,15.887,4.051
|
||||
L15.887,4.051z"/>
|
||||
<path fill="#0C1118" d="M17.286,4.204c0.198,0,0.338,0.004,0.428,0.012c0.099,0.009,0.2,0.037,0.302,0.085
|
||||
c0.109,0.051,0.193,0.124,0.25,0.213c0.057,0.09,0.085,0.199,0.085,0.325c0,0.144-0.048,0.282-0.144,0.41
|
||||
c-0.07,0.093-0.163,0.176-0.275,0.247l0.122,0.167c0.039,0.061,0.147,0.2,0.322,0.415c0.209,0.256,0.32,0.344,0.377,0.372
|
||||
c0.082,0.04,0.161,0.061,0.235,0.061c0.072,0,0.16-0.027,0.26-0.08c0.016-0.008,0.033-0.013,0.05-0.013
|
||||
c0.014,0,0.027,0.003,0.04,0.008c0.029,0.012,0.052,0.036,0.062,0.065l0.011,0.032c0.015,0.044-0.001,0.094-0.039,0.121
|
||||
c-0.163,0.119-0.376,0.179-0.631,0.179c-0.178,0-0.334-0.048-0.464-0.143c-0.121-0.089-0.319-0.315-0.605-0.694v0
|
||||
c-0.003-0.004-0.006-0.008-0.009-0.013L17.43,5.656l-0.186,0.006h-0.11v0.803c0,0.053,0.007,0.079,0.011,0.09
|
||||
c0.009,0.002,0.03,0.007,0.072,0.007c0.059,0,0.107,0.048,0.107,0.107v0.024c0,0.06-0.048,0.107-0.107,0.107h-0.693
|
||||
c-0.06,0-0.107-0.048-0.107-0.107V6.67c0-0.058,0.046-0.105,0.104-0.107c0.045-0.001,0.069-0.007,0.08-0.01
|
||||
c0.003-0.014,0.01-0.045,0.01-0.108V4.551c0-0.04-0.004-0.073-0.014-0.098c-0.009-0.003-0.031-0.009-0.073-0.009
|
||||
c-0.06,0-0.106-0.048-0.106-0.108V4.312c0-0.06,0.048-0.107,0.107-0.107H17.286 M17.134,5.385h0.174
|
||||
c0.193,0,0.336-0.038,0.422-0.113c0.083-0.072,0.124-0.165,0.124-0.285c0-0.123-0.044-0.236-0.135-0.349
|
||||
c-0.083-0.104-0.242-0.156-0.472-0.156h-0.114V5.385 M17.286,4.051h-0.762c-0.144,0-0.261,0.117-0.261,0.261v0.024
|
||||
c0,0.121,0.082,0.222,0.193,0.252v1.83c-0.112,0.03-0.193,0.131-0.193,0.252v0.024c0,0.144,0.117,0.261,0.261,0.261h0.693
|
||||
c0.144,0,0.26-0.117,0.26-0.261V6.67c0-0.119-0.08-0.22-0.189-0.25V5.813l0.066-0.002L17.44,5.93l-0.003,0.001l0.111,0.148
|
||||
c0.299,0.396,0.502,0.626,0.638,0.725c0.157,0.114,0.344,0.172,0.555,0.172c0.288,0,0.531-0.07,0.721-0.208
|
||||
c0.093-0.067,0.13-0.186,0.094-0.294l-0.011-0.032c-0.024-0.072-0.079-0.13-0.15-0.159c-0.03-0.012-0.063-0.019-0.096-0.019
|
||||
c-0.042,0-0.084,0.01-0.122,0.03c-0.103,0.054-0.162,0.062-0.188,0.062c-0.05,0-0.106-0.015-0.167-0.045
|
||||
c-0.016-0.008-0.106-0.061-0.327-0.331c-0.213-0.263-0.287-0.363-0.311-0.401L18.18,5.577l-0.003-0.004l-0.03-0.042
|
||||
c0.07-0.058,0.131-0.121,0.183-0.189c0.117-0.155,0.175-0.324,0.175-0.502c0-0.155-0.037-0.292-0.11-0.407
|
||||
c-0.073-0.116-0.179-0.206-0.314-0.27c-0.118-0.055-0.237-0.089-0.354-0.099C17.632,4.055,17.488,4.051,17.286,4.051L17.286,4.051z
|
||||
M17.287,5.232V4.636c0.155,0.005,0.266,0.04,0.313,0.099c0.069,0.085,0.101,0.166,0.101,0.253c0,0.076-0.021,0.126-0.07,0.169
|
||||
c-0.057,0.049-0.171,0.076-0.322,0.076H17.287L17.287,5.232z"/>
|
||||
<path fill="#0C1118" d="M22.246,4.204c0.059,0,0.107,0.048,0.107,0.107v0.024c0,0.059-0.046,0.106-0.104,0.108
|
||||
c-0.067,0.002-0.09,0.014-0.092,0.014c-0.002,0.004-0.013,0.028-0.013,0.097v2.169c0,0.043-0.025,0.082-0.065,0.099
|
||||
c-0.014,0.006-0.028,0.009-0.042,0.009c-0.027,0-0.053-0.01-0.074-0.029l-1.961-1.853v1.513c0,0.05,0.004,0.074,0.008,0.086
|
||||
c0.014,0.003,0.041,0.009,0.092,0.016c0.053,0.007,0.093,0.053,0.093,0.106v0.024c0,0.06-0.048,0.107-0.107,0.107h-0.516
|
||||
c-0.059,0-0.107-0.048-0.107-0.107V6.67c0-0.059,0.048-0.107,0.107-0.107c0.049,0,0.075-0.004,0.088-0.008
|
||||
c0.004-0.017,0.011-0.056,0.011-0.137V4.806c0-0.124-0.019-0.224-0.055-0.298c-0.021-0.043-0.082-0.065-0.179-0.065
|
||||
c-0.009,0-0.018,0-0.027,0c-0.001,0-0.003,0-0.004,0c-0.028,0-0.054-0.011-0.074-0.03c-0.021-0.02-0.033-0.049-0.033-0.078V4.312
|
||||
c0-0.06,0.048-0.107,0.107-0.107h0.505c0.027,0,0.054,0.011,0.073,0.029l1.832,1.73V4.532c0-0.044-0.005-0.067-0.009-0.076
|
||||
c-0.02-0.008-0.047-0.012-0.079-0.012c-0.06,0-0.107-0.048-0.107-0.108V4.312c0-0.06,0.048-0.107,0.107-0.107H22.246 M22.246,4.051
|
||||
h-0.52c-0.144,0-0.261,0.117-0.261,0.261v0.024c0,0.122,0.083,0.224,0.195,0.253v1.02l-1.573-1.486
|
||||
c-0.049-0.046-0.112-0.071-0.179-0.071h-0.505c-0.144,0-0.261,0.117-0.261,0.261v0.024c0,0.071,0.029,0.14,0.08,0.188
|
||||
c0.049,0.047,0.113,0.073,0.181,0.073h0.004l0.008,0c0.006,0,0.013,0,0.02,0c0.025,0,0.042,0.002,0.052,0.003
|
||||
c0.015,0.04,0.029,0.105,0.029,0.207v1.609C19.4,6.44,19.312,6.545,19.312,6.67v0.024c0,0.144,0.117,0.261,0.26,0.261h0.516
|
||||
c0.144,0,0.261-0.117,0.261-0.261V6.67c0-0.119-0.081-0.222-0.193-0.251V5.304l1.703,1.608c0.048,0.046,0.111,0.071,0.179,0.071
|
||||
c0.035,0,0.07-0.007,0.103-0.021c0.096-0.042,0.158-0.136,0.158-0.24V4.592c0.12-0.023,0.209-0.128,0.209-0.256V4.312
|
||||
C22.507,4.168,22.39,4.051,22.246,4.051L22.246,4.051z"/>
|
||||
<path fill="#0C1118" d="M24.11,4.13c0.401,0,0.735,0.111,0.994,0.331C25.367,4.685,25.5,4.968,25.5,5.304
|
||||
c0,0.42-0.15,0.778-0.448,1.065C24.756,6.655,24.359,6.8,23.875,6.8c-0.398,0-0.729-0.118-0.986-0.351
|
||||
c-0.259-0.236-0.39-0.524-0.39-0.856c0-0.22,0.062-0.448,0.184-0.678c0.123-0.231,0.31-0.422,0.556-0.567
|
||||
C23.484,4.204,23.777,4.13,24.11,4.13 M24.061,6.498c0.167,0,0.335-0.041,0.5-0.121c0.162-0.08,0.291-0.189,0.382-0.327
|
||||
c0.091-0.135,0.137-0.275,0.137-0.416c0-0.209-0.062-0.394-0.188-0.565c-0.128-0.174-0.296-0.312-0.501-0.41
|
||||
C24.185,4.56,23.993,4.51,23.822,4.51c-0.243,0-0.458,0.079-0.657,0.242c-0.192,0.158-0.286,0.348-0.286,0.58
|
||||
c0,0.31,0.119,0.576,0.365,0.813C23.49,6.382,23.757,6.498,24.061,6.498 M24.11,3.977c-0.36,0-0.68,0.081-0.949,0.239
|
||||
c-0.271,0.16-0.477,0.371-0.614,0.627c-0.134,0.252-0.202,0.504-0.202,0.75c0,0.377,0.148,0.703,0.441,0.97
|
||||
c0.285,0.259,0.651,0.391,1.089,0.391c0.525,0,0.958-0.16,1.284-0.474c0.328-0.317,0.495-0.713,0.495-1.176
|
||||
c0-0.383-0.152-0.706-0.451-0.959C24.916,4.101,24.548,3.977,24.11,3.977L24.11,3.977z M24.061,6.344
|
||||
c-0.262,0-0.494-0.102-0.71-0.31c-0.216-0.209-0.318-0.432-0.318-0.702c0-0.186,0.073-0.333,0.23-0.461
|
||||
c0.17-0.14,0.353-0.208,0.56-0.208c0.147,0,0.316,0.045,0.502,0.134c0.182,0.088,0.332,0.21,0.444,0.363
|
||||
c0.106,0.144,0.158,0.299,0.158,0.474c0,0.11-0.037,0.221-0.11,0.331c-0.077,0.115-0.186,0.207-0.323,0.273
|
||||
C24.35,6.309,24.205,6.344,24.061,6.344L24.061,6.344z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 212 KiB |
@@ -1,179 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_22_copy_11">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F3D581" d="M27.927,4.968l-23.46,0c-0.251,0-0.455,0.204-0.455,0.455v12.119
|
||||
c0.026,0.408,0.525,0.91,0.525,0.91s11.196,11.242,11.334,11.381c0.139,0.138,0.434,0.207,0.647-0.006
|
||||
c0.212-0.213,11.408-11.374,11.408-11.374s0.454-0.474,0.454-0.91V5.422C28.381,5.171,28.179,4.968,27.927,4.968z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_22_copy_11_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546070" d="M6.66,18.03c0,0,9.406,9.807,9.477,9.885
|
||||
c0.122,0.135,0.383,0.201,0.57-0.006c0.108-0.12,9.532-9.897,9.532-9.897L6.66,18.03z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_56_copy_11">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#93381F" d="M11.423,9.847v3.431h9.61V9.847H11.423z M20.267,8.927
|
||||
c0.072,0,0.079-0.02,0.02-0.052c-0.299-0.164-1.205-0.662-1.205-0.662s-0.906,0.498-1.206,0.662
|
||||
c-0.059,0.032-0.053,0.052,0.021,0.052C18.323,8.927,19.836,8.927,20.267,8.927z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_56_copy_11_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F3D581" d="M15.215,13.29l-1.432-2.209l-1.431,2.209h-0.34v4.315h8.432
|
||||
V13.29H15.215z M19.613,11.763l0.533-0.43V8.944h-2.09v2.354l0.611,0.457L19.613,11.763z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_56_copy_10">
|
||||
<g>
|
||||
<rect x="10.952" y="14.862" fill-rule="evenodd" clip-rule="evenodd" fill="#93381F" width="10.536" height="1.086"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_56_copy_12">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#373E48" points="11.423,21.287 11.423,23.042 13.38,25.031
|
||||
19.444,25.031 21.033,23.412 21.033,21.287 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_56_copy_15">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#6B7480" d="M12.013,18.02v3.324h0.34l1.431,2.302l1.432-2.302h5.229V18.02
|
||||
H12.013z M18.668,23.017l-0.611,0.457v2.354h0.686l1.404-1.481v-0.908l-0.533-0.43L18.668,23.017z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_56_copy_12_2_">
|
||||
<g>
|
||||
<rect x="10.957" y="18.71" fill-rule="evenodd" clip-rule="evenodd" fill="#373E48" width="10.526" height="1.132"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_22_copy_12">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M28.167,3.424L4.672,3.423c-0.581,0-0.818,0.42-0.818,0.692
|
||||
v12.876c0,0.914,0.541,1.575,0.541,1.575S15.847,30.78,16.016,30.93s0.529,0.225,0.789-0.007
|
||||
c0.261-0.232,11.713-12.356,11.713-12.356s0.468-0.682,0.468-1.413V4.116C28.985,3.843,28.684,3.424,28.167,3.424z M27.805,17.142
|
||||
c0,0.43-0.425,0.896-0.425,0.896S16.919,29.023,16.72,29.233s-0.475,0.142-0.604,0.006S5.525,18.038,5.525,18.038
|
||||
s-0.467-0.495-0.491-0.896V5.213c0-0.247,0.19-0.448,0.425-0.448l21.921,0c0.235,0,0.425,0.201,0.425,0.447V17.142z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FEC932" d="M28.085,3.326H4.94c-0.862,0-1.377,0.637-1.377,1.252v12.685
|
||||
c0,1.091,0.635,1.879,0.662,1.913l0.012,0.015l0.013,0.014c3.398,3.624,11.318,12.066,11.486,12.215
|
||||
c0.202,0.18,0.483,0.283,0.771,0.283c0.283,0,0.555-0.103,0.765-0.29c0.262-0.233,9.688-10.209,11.574-12.207l0.03-0.033
|
||||
l0.024-0.037c0.059-0.083,0.562-0.843,0.562-1.714V4.578C29.462,3.986,28.897,3.326,28.085,3.326z M28.731,17.428
|
||||
c0,0.822-0.476,1.539-0.529,1.618l-0.024,0.034l-0.028,0.031c-1.78,1.885-10.674,11.298-10.921,11.518
|
||||
c-0.197,0.177-0.454,0.274-0.722,0.274c-0.271,0-0.536-0.098-0.728-0.267c-0.157-0.141-7.631-8.107-10.837-11.526l-0.012-0.013
|
||||
l-0.013-0.014c-0.024-0.031-0.624-0.775-0.624-1.805V5.308c0-0.58,0.486-1.181,1.3-1.181h21.838c0.766,0,1.3,0.623,1.3,1.181V17.428
|
||||
z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B74A26" d="M16.507,30.563c-0.007,0-0.015-0.002-0.021-0.003
|
||||
c-0.535-0.55-8.344-8.872-11.386-12.116c-0.055-0.074-0.396-0.559-0.396-1.181V4.583c0.003-0.02,0.033-0.117,0.236-0.117h23.145
|
||||
c0.16,0,0.223,0.107,0.236,0.136v12.82c0,0.413-0.231,0.866-0.34,1.037c-3.098,3.28-11.06,11.701-11.47,12.103
|
||||
C16.511,30.562,16.51,30.563,16.507,30.563z M26.809,17.946c0.108-0.12,0.267-0.374,0.267-0.495V5.904H5.784v11.521
|
||||
c0.016,0.102,0.175,0.353,0.326,0.517c0.098,0.103,9.161,9.688,10.315,10.908C17.558,27.661,26.547,18.221,26.809,17.946z"/>
|
||||
<g id="Shape_22_copy_12_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M28.085,3.896H4.94c-0.574,0-0.807,0.413-0.807,0.682v12.685
|
||||
c0,0.9,0.532,1.551,0.532,1.551s11.283,12.031,11.449,12.18c0.167,0.148,0.521,0.222,0.777-0.007
|
||||
c0.256-0.228,11.538-12.173,11.538-12.173s0.461-0.671,0.461-1.392V4.578C28.892,4.309,28.594,3.896,28.085,3.896z M27.646,17.451
|
||||
c0,0.423-0.418,0.882-0.418,0.882S16.921,29.156,16.725,29.362c-0.195,0.207-0.467,0.141-0.594,0.006
|
||||
C16.003,29.234,5.697,18.333,5.697,18.333s-0.459-0.486-0.483-0.882V5.774c0-0.243,0.188-0.441,0.418-0.441h21.596
|
||||
c0.23,0,0.418,0.198,0.418,0.441V17.451z"/>
|
||||
</g>
|
||||
</g>
|
||||
<image overflow="visible" width="511" height="193" id="Shape_71_xA0_Image_2_" xlink:href="data:image/png;base64,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
|
||||
aAAAAABJRU5ErkJggg==" transform="matrix(0.0347 0 0 0.0347 7.8184 0.2778)">
|
||||
</image>
|
||||
<path fill="#B74A26" d="M25.473,5.234c0,0.896-0.776,1.622-1.735,1.622h-14.1c-0.959,0-1.735-0.726-1.735-1.622V1.99
|
||||
c0-0.896,0.776-1.622,1.735-1.622h14.1c0.959,0,1.735,0.727,1.735,1.623V5.234z"/>
|
||||
<path fill="#343A38" d="M9.575,6.421c-0.644,0-1.167-0.493-1.167-1.099V1.903c0-0.606,0.523-1.1,1.167-1.1H23.8
|
||||
c0.644,0,1.167,0.494,1.167,1.1v3.419c0,0.606-0.523,1.1-1.167,1.1L9.575,6.421z"/>
|
||||
<g id="lake">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FEC932" d="M10.975,1.851h-0.661v2.33h2.026V3.754h-1.365V1.851z
|
||||
M14.2,1.851l-1.074,2.33h0.702l0.198-0.46h1.19l0.22,0.46h0.711l-1.181-2.33H14.2z M14.202,3.313l0.39-0.906l0.432,0.906H14.202z
|
||||
M19.387,1.851h-0.729L17.813,2.9V1.851h-0.661v2.33h0.661V3.088l1.054,1.092h0.828l-1.174-1.234L19.387,1.851z M21.328,3.754
|
||||
V3.193l1.213,0V2.767h-1.213V2.278H22.6V1.851h-1.934v2.33h1.96V3.754H21.328z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FEC932" d="M18.114,4.875h-0.631c-0.138,0-0.25,0.112-0.25,0.249v0.54
|
||||
c0,0.138,0.112,0.249,0.25,0.249h0.631c0.13,0,0.235-0.097,0.248-0.223V5.678h-0.851v-0.57h0.851V5.094
|
||||
C18.348,4.972,18.242,4.875,18.114,4.875z M19.47,5.279h-0.66V5.1h0.888c-0.014-0.125-0.12-0.224-0.248-0.224h-0.644
|
||||
c-0.138,0-0.249,0.112-0.249,0.249v0.154c0.012,0.126,0.118,0.225,0.248,0.225l0.659,0v0.186h-0.906
|
||||
c0.012,0.126,0.118,0.225,0.248,0.225h0.662c0.138,0,0.249-0.111,0.249-0.249V5.503C19.706,5.377,19.6,5.279,19.47,5.279z
|
||||
M22.519,4.867h-0.647c-0.132,0-0.239,0.107-0.239,0.239v0.56c0,0.131,0.107,0.238,0.239,0.238h0.647
|
||||
c0.131,0,0.238-0.107,0.238-0.238v-0.56C22.757,4.974,22.649,4.867,22.519,4.867z M22.534,5.712h-0.68V5.061h0.68V5.712z
|
||||
M20.713,5.404c0.05,0.064,0.127,0.069,0.148,0.069h0.346v0.226h-0.726V5.068h0.947c-0.02-0.116-0.119-0.201-0.236-0.201h-0.693
|
||||
c-0.131,0-0.237,0.107-0.237,0.239v0.56c0,0.131,0.106,0.239,0.237,0.239h0.693c0.123,0,0.226-0.092,0.237-0.211V5.299h-0.769
|
||||
C20.664,5.319,20.675,5.357,20.713,5.404z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 12 KiB |
@@ -1,199 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_1_copy_20">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#15576F" points="16.028,0.921 0.298,12.349 6.307,30.841 25.75,30.841
|
||||
31.758,12.349 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_21">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#07A5C2" points="16.028,1.12 0.508,12.396 6.437,30.642 25.62,30.642
|
||||
31.547,12.396 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_20">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#15576F" d="M8.108,30.673h1.665v-0.545H8.108V30.673z M11.563,30.674h1.665
|
||||
v-0.546h-1.665V30.674z M15.339,30.674h1.665v-0.546h-1.665V30.674z M18.795,30.674h1.665v-0.546h-1.665V30.674z M22.539,30.674
|
||||
h1.665v-0.546h-1.665V30.674z M25.635,28.918l0.519,0.167l0.513-1.584l-0.52-0.167L25.635,28.918z M26.699,25.63l0.52,0.168
|
||||
l0.512-1.584l-0.52-0.168L26.699,25.63z M27.862,22.037l0.52,0.168l0.512-1.584l-0.519-0.169L27.862,22.037z M28.926,18.75
|
||||
l0.519,0.167l0.513-1.584l-0.519-0.167L28.926,18.75z M30.591,13.604l-0.512,1.584l0.52,0.169l0.513-1.585L30.591,13.604z
|
||||
M5.423,27.613l0.514,1.584l0.519-0.169l-0.513-1.584L5.423,27.613z M4.357,24.325l0.514,1.584l0.52-0.169l-0.513-1.583
|
||||
L4.357,24.325z M3.194,20.734l0.513,1.583l0.52-0.168l-0.514-1.584L3.194,20.734z M2.129,17.446l0.513,1.583l0.519-0.168
|
||||
l-0.513-1.583L2.129,17.446z M0.975,13.884l0.513,1.585l0.52-0.169l-0.513-1.584L0.975,13.884z M3.266,11.04l-0.32-0.442
|
||||
l-1.348,0.976l0.32,0.443L3.266,11.04z M6.065,9.014l-0.32-0.441L4.396,9.549l0.32,0.441L6.065,9.014z M8.804,6.358L7.456,7.334
|
||||
l0.32,0.443l1.349-0.977L8.804,6.358z M11.604,4.333l-1.349,0.976l0.321,0.442l1.349-0.977L11.604,4.333z M13.289,3.114
|
||||
l0.32,0.442l1.349-0.976l-0.321-0.443L13.289,3.114z M28.944,10.482l-0.32,0.441l1.347,0.979l0.321-0.442L28.944,10.482z
|
||||
M27.495,9.431l-1.347-0.979l-0.321,0.442l1.348,0.977L27.495,9.431z M22.771,6.676l1.347,0.979l0.32-0.442l-1.347-0.978
|
||||
L22.771,6.676z M19.975,4.646l1.348,0.979l0.32-0.442l-1.348-0.979L19.975,4.646z M16.945,2.445l1.347,0.979l0.321-0.441
|
||||
l-1.347-0.978L16.945,2.445z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_20_1_">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#07A5C2" points="15.992,1.825 1.076,12.663 6.773,30.198 25.211,30.198
|
||||
30.909,12.663 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_22">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#C6C5C5" points="15.992,2.688 1.983,12.867 7.334,29.336 24.65,29.336
|
||||
30.001,12.867 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_20_2_">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#AE2324" points="15.992,3.176 2.431,13.027 7.611,28.971 24.374,28.971
|
||||
29.553,13.027 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_25">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#6B100F" points="15.992,3.176 16.119,28.971 24.374,28.971
|
||||
29.553,13.027 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DEDEDD" d="M10.069,26.302l0.543-0.711h0.367v1.917h-0.421v-1.197l-0.457,0.602h-0.063l-0.456-0.602v1.197H9.161
|
||||
v-1.917h0.365L10.069,26.302z"/>
|
||||
<path fill="#DEDEDD" d="M11.85,25.591v1.917h-0.421v-1.917H11.85z"/>
|
||||
<path fill="#DEDEDD" d="M12.301,25.591h0.756c0.164,0,0.297,0.054,0.399,0.16c0.102,0.108,0.154,0.238,0.154,0.392
|
||||
c0,0.211-0.097,0.367-0.291,0.469c0.084,0.043,0.166,0.161,0.243,0.353c0.075,0.192,0.149,0.374,0.221,0.544h-0.462
|
||||
c-0.028-0.063-0.076-0.184-0.144-0.36c-0.069-0.178-0.128-0.292-0.176-0.343c-0.049-0.05-0.101-0.075-0.157-0.075h-0.121v0.778
|
||||
h-0.421V25.591z M12.723,25.941v0.437h0.223c0.071,0,0.127-0.019,0.169-0.057c0.042-0.037,0.062-0.092,0.062-0.162
|
||||
c0-0.146-0.08-0.218-0.241-0.218H12.723z"/>
|
||||
<path fill="#DEDEDD" d="M15.092,25.591l0.751,1.917H15.39l-0.14-0.379h-0.757l-0.126,0.379h-0.446l0.683-1.917H15.092z
|
||||
M15.127,26.794l-0.274-0.745l-0.248,0.745H15.127z"/>
|
||||
<path fill="#DEDEDD" d="M17.527,25.723v0.42c-0.216-0.118-0.426-0.178-0.632-0.178c-0.198,0-0.352,0.058-0.458,0.17
|
||||
c-0.107,0.114-0.161,0.259-0.161,0.434c0,0.169,0.053,0.306,0.161,0.409c0.107,0.104,0.249,0.156,0.423,0.156
|
||||
c0.093,0,0.186-0.021,0.28-0.067v-0.225h-0.245v-0.351h0.667v0.783c-0.066,0.076-0.168,0.138-0.305,0.187
|
||||
c-0.137,0.048-0.272,0.072-0.407,0.072c-0.294,0-0.536-0.093-0.725-0.276c-0.189-0.185-0.284-0.419-0.284-0.704
|
||||
c0-0.292,0.094-0.528,0.284-0.713c0.189-0.183,0.434-0.273,0.735-0.273C17.108,25.566,17.331,25.618,17.527,25.723z"/>
|
||||
<path fill="#DEDEDD" d="M19.242,27.156v0.352h-1.247v-1.917h1.229v0.351h-0.808v0.402h0.771v0.352h-0.771v0.461H19.242z"/>
|
||||
</g>
|
||||
<g id="Shape_18">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#30B14A" points="22.595,26.201 21.786,26.131 21.489,25.397
|
||||
21.192,26.131 20.383,26.201 21.009,26.696 20.806,27.501 21.489,27.045 22.172,27.501 21.97,26.696 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_21">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#5A0F0F" points="24.267,16.688 24.064,11.535 24.315,11.535
|
||||
24.315,11.152 24.049,11.152 24.028,10.592 21.004,10.592 20.981,11.152 20.587,11.152 20.587,11.535 20.966,11.535
|
||||
20.764,16.688 18.54,16.672 18.349,10.448 18.667,10.448 18.667,10.063 18.338,10.063 18.316,9.345 14.716,9.345 14.692,10.063
|
||||
14.284,10.063 14.284,10.448 14.679,10.448 14.476,16.672 12.701,16.672 12.512,11.535 12.796,11.535 12.796,11.152
|
||||
12.497,11.152 12.476,10.576 9.42,10.576 9.401,11.152 9.068,11.152 9.068,11.535 9.388,11.535 9.212,16.672 8.493,16.672
|
||||
8.493,17.071 24.78,17.056 24.78,16.688 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_21_copy">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#56A5B3" points="23.851,16.271 23.649,11.12 23.9,11.12 23.9,10.735
|
||||
23.634,10.735 23.611,10.176 20.587,10.176 20.566,10.735 20.172,10.735 20.172,11.12 20.55,11.12 20.348,16.271 18.124,16.256
|
||||
17.934,10.032 18.251,10.032 18.251,9.647 17.922,9.647 17.899,8.928 14.3,8.928 14.277,9.647 13.868,9.647 13.868,10.032
|
||||
14.264,10.032 14.061,16.256 12.284,16.256 12.095,11.12 12.38,11.12 12.38,10.735 12.082,10.735 12.06,10.159 9.005,10.159
|
||||
8.985,10.735 8.653,10.735 8.653,11.12 8.972,11.12 8.796,16.256 8.076,16.256 8.076,16.656 24.364,16.64 24.364,16.271 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_22">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#3F3F3F" d="M9.708,12.384h0.256V11.76H9.708V12.384z M11.18,12.384h0.256
|
||||
V11.76H11.18V12.384z M10.444,12.384h0.256V11.76h-0.256V12.384z M15.18,11.199h0.256v-0.623H15.18V11.199z M16.652,11.199h0.256
|
||||
v-0.623h-0.256V11.199z M15.916,11.199h0.256v-0.623h-0.256V11.199z M21.292,12.384h0.256V11.76h-0.256V12.384z M22.764,11.76
|
||||
v0.624h0.256V11.76H22.764z M22.028,12.384h0.256V11.76h-0.256V12.384z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_23">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#BFC25A" d="M14.208,21.103c-0.086-0.204-0.457-0.653-0.777-1.054
|
||||
c-0.333-0.401-0.615-0.758-0.808-0.825c-0.078,0.187,0.09,0.63,0.394,1.07c0.291,0.438,0.719,0.875,0.884,0.986
|
||||
c0.12,0.084,0.265,0.166,0.364,0.219c-0.25-0.011-0.501-0.027-0.751-0.05c-0.029-0.093-0.086-0.276-0.125-0.388
|
||||
c-0.071-0.2-0.393-0.648-0.669-1.05c-0.288-0.404-0.532-0.762-0.71-0.836c-0.083,0.179,0.05,0.615,0.311,1.053
|
||||
c0.25,0.436,0.626,0.872,0.775,0.988c0.106,0.084,0.237,0.169,0.328,0.225c-0.239-0.024-0.478-0.053-0.715-0.087
|
||||
c-0.023-0.089-0.066-0.267-0.098-0.375c-0.057-0.194-0.332-0.638-0.569-1.038c-0.247-0.402-0.457-0.761-0.62-0.84
|
||||
c-0.086,0.171,0.015,0.599,0.236,1.031c0.209,0.43,0.54,0.863,0.673,0.981c0.095,0.085,0.211,0.172,0.293,0.228
|
||||
c-0.228-0.033-0.454-0.072-0.679-0.117c-0.017-0.087-0.049-0.258-0.071-0.361c-0.147-0.393-0.774-1.709-1.015-1.859
|
||||
c-0.238,0.308,0.449,1.721,0.747,1.977c0.083,0.084,0.187,0.171,0.26,0.229c-0.198-0.039-0.396-0.085-0.592-0.132
|
||||
c-0.012-0.084-0.034-0.248-0.05-0.35c-0.12-0.379-0.642-1.677-0.866-1.833c-0.238,0.295,0.34,1.68,0.608,1.936
|
||||
c0.075,0.084,0.168,0.17,0.233,0.229c-0.189-0.048-0.377-0.1-0.564-0.153c-0.008-0.082-0.021-0.239-0.031-0.337
|
||||
c-0.093-0.366-0.521-1.64-0.727-1.8c-0.236,0.28,0.238,1.632,0.48,1.889c0.066,0.083,0.148,0.168,0.208,0.226
|
||||
c-0.186-0.055-0.37-0.113-0.552-0.176c-0.003-0.077-0.007-0.229-0.013-0.32c-0.068-0.354-0.407-1.6-0.597-1.763
|
||||
c-0.234,0.268,0.146,1.584,0.361,1.838c0.057,0.081,0.13,0.164,0.182,0.223c-0.162-0.056-0.323-0.116-0.483-0.177
|
||||
c0-0.076,0.004-0.22,0.003-0.309c-0.046-0.344-0.31-1.559-0.485-1.721c-0.231,0.255,0.066,1.536,0.258,1.785
|
||||
c0.05,0.079,0.114,0.162,0.162,0.219c-0.164-0.063-0.326-0.131-0.487-0.202c0.004-0.072,0.015-0.208,0.019-0.295
|
||||
c-0.026-0.328-0.215-1.508-0.376-1.672c-0.229,0.241-0.011,1.485,0.158,1.729c0.043,0.076,0.1,0.157,0.141,0.213
|
||||
c-0.159-0.069-0.316-0.142-0.473-0.219c-0.041-0.036-0.09-0.078-0.139-0.118c-0.228-0.121-1.946-1.255-2.563-1.557
|
||||
c0.203,0.483,2.064,1.655,2.453,1.693c0.042,0.012,0.094,0.023,0.145,0.033c0.172,0.086,0.347,0.168,0.522,0.247
|
||||
c-0.082,0.001-0.2,0.003-0.309,0.011c-0.293,0.058-2.064,0.269-2.416,0.433c0.406,0.214,2.155-0.045,2.472-0.25
|
||||
c0.094-0.047,0.237-0.127,0.311-0.168c0.163,0.072,0.326,0.141,0.49,0.206c-0.085,0.005-0.209,0.013-0.322,0.023
|
||||
c-0.304,0.073-2.115,0.372-2.461,0.565c0.431,0.209,2.219-0.145,2.534-0.372c0.095-0.054,0.238-0.146,0.312-0.192
|
||||
c0.162,0.064,0.324,0.125,0.487,0.183c-0.089,0.009-0.218,0.021-0.336,0.038c-0.313,0.087-2.165,0.476-2.504,0.698
|
||||
c0.458,0.206,2.286-0.25,2.596-0.499c0.095-0.062,0.239-0.163,0.311-0.215c0.185,0.064,0.37,0.125,0.557,0.182
|
||||
c-0.093,0.013-0.229,0.032-0.351,0.055c-0.325,0.104-2.22,0.597-2.552,0.854c0.486,0.196,2.357-0.372,2.664-0.648
|
||||
c0.095-0.067,0.237-0.182,0.309-0.24c0.189,0.057,0.379,0.109,0.569,0.157c-0.097,0.019-0.239,0.044-0.367,0.073
|
||||
c-0.33,0.123-2.273,0.724-2.598,1.016c0.517,0.188,2.43-0.5,2.733-0.802c0.095-0.077,0.236-0.204,0.307-0.268
|
||||
c0.199,0.05,0.397,0.096,0.597,0.137c-0.101,0.023-0.249,0.058-0.383,0.094c-0.34,0.142-2.329,0.859-2.645,1.188
|
||||
c0.548,0.175,2.506-0.64,2.804-0.972c0.095-0.085,0.234-0.225,0.304-0.294c0.227,0.046,0.455,0.086,0.683,0.122
|
||||
c-0.105,0.029-0.261,0.071-0.4,0.117c-0.353,0.166-2.392,1.019-2.695,1.39c0.585,0.159,2.592-0.805,2.883-1.168
|
||||
c0.094-0.094,0.231-0.25,0.299-0.326c0.239,0.035,0.479,0.066,0.72,0.09c-0.11,0.035-0.274,0.091-0.42,0.146
|
||||
c-0.364,0.191-2.454,1.191-2.746,1.604c0.625,0.142,2.682-0.984,2.964-1.38c0.092-0.105,0.227-0.276,0.292-0.36
|
||||
c0.252,0.023,0.505,0.042,0.757,0.054c-0.115,0.043-0.287,0.109-0.439,0.175c-0.375,0.221-2.517,1.381-2.794,1.837
|
||||
c0.669,0.119,2.775-1.183,3.047-1.612c0.09-0.116,0.221-0.305,0.284-0.396c0.307,0.013,0.614,0.018,0.921,0.012
|
||||
c0.004-0.03,0.01-0.072,0.011-0.124c-0.306,0.006-0.61,0.004-0.914-0.007C14.328,21.408,14.257,21.218,14.208,21.103z
|
||||
M24.083,20.056c0.389-0.038,2.25-1.21,2.453-1.693c-0.617,0.302-2.336,1.436-2.564,1.557c-0.049,0.04-0.098,0.082-0.138,0.118
|
||||
c-0.156,0.077-0.314,0.149-0.473,0.219c0.041-0.056,0.098-0.137,0.141-0.213c0.168-0.243,0.387-1.487,0.158-1.729
|
||||
c-0.161,0.164-0.351,1.344-0.377,1.673c0.005,0.086,0.015,0.222,0.02,0.294c-0.161,0.071-0.323,0.139-0.486,0.202
|
||||
c0.046-0.057,0.111-0.14,0.162-0.219c0.191-0.249,0.489-1.53,0.258-1.785c-0.175,0.162-0.438,1.377-0.486,1.721
|
||||
c0,0.089,0.003,0.232,0.005,0.309c-0.161,0.061-0.322,0.121-0.484,0.177c0.053-0.059,0.125-0.142,0.183-0.223
|
||||
c0.215-0.254,0.594-1.57,0.361-1.838c-0.19,0.163-0.529,1.409-0.598,1.763c-0.004,0.092-0.008,0.243-0.012,0.32
|
||||
c-0.183,0.063-0.367,0.121-0.553,0.176c0.059-0.058,0.142-0.143,0.208-0.226c0.242-0.257,0.716-1.608,0.481-1.889
|
||||
c-0.206,0.16-0.634,1.434-0.728,1.8c-0.01,0.098-0.022,0.255-0.03,0.337c-0.188,0.054-0.376,0.105-0.565,0.153
|
||||
c0.066-0.06,0.158-0.146,0.233-0.229c0.268-0.256,0.846-1.641,0.609-1.936c-0.224,0.156-0.747,1.454-0.866,1.833
|
||||
c-0.017,0.102-0.038,0.266-0.051,0.35c-0.196,0.048-0.394,0.093-0.592,0.132c0.073-0.058,0.176-0.145,0.261-0.229
|
||||
c0.298-0.256,0.985-1.669,0.747-1.977c-0.241,0.15-0.868,1.467-1.014,1.859c-0.023,0.104-0.055,0.274-0.072,0.361
|
||||
c-0.226,0.045-0.452,0.084-0.679,0.117c0.081-0.056,0.198-0.143,0.292-0.228c0.133-0.118,0.463-0.552,0.674-0.981
|
||||
c0.22-0.433,0.321-0.86,0.235-1.031c-0.164,0.079-0.373,0.438-0.621,0.84c-0.237,0.4-0.512,0.844-0.569,1.038
|
||||
c-0.03,0.108-0.075,0.286-0.098,0.375c-0.238,0.034-0.476,0.063-0.715,0.087c0.09-0.056,0.22-0.141,0.327-0.225
|
||||
c0.149-0.116,0.526-0.553,0.775-0.988c0.26-0.438,0.394-0.874,0.311-1.053c-0.178,0.074-0.422,0.432-0.71,0.836
|
||||
c-0.277,0.401-0.598,0.85-0.669,1.05c-0.039,0.111-0.095,0.295-0.125,0.388c-0.25,0.022-0.501,0.039-0.752,0.05
|
||||
c0.1-0.053,0.245-0.135,0.365-0.219c0.166-0.111,0.593-0.547,0.885-0.986c0.304-0.44,0.471-0.884,0.395-1.07
|
||||
c-0.193,0.067-0.476,0.424-0.809,0.825c-0.32,0.4-0.69,0.85-0.777,1.054c-0.048,0.115-0.119,0.306-0.155,0.399
|
||||
c-0.305,0.011-0.609,0.013-0.914,0.007c0.001,0.052,0.006,0.094,0.011,0.124c0.307,0.006,0.613,0.001,0.92-0.012
|
||||
c0.063,0.091,0.193,0.279,0.284,0.396c0.272,0.43,2.378,1.731,3.047,1.612c-0.277-0.456-2.419-1.616-2.795-1.837
|
||||
c-0.152-0.065-0.324-0.132-0.439-0.175c0.253-0.012,0.506-0.03,0.757-0.054c0.066,0.084,0.2,0.255,0.292,0.36
|
||||
c0.283,0.396,2.338,1.521,2.964,1.38c-0.292-0.413-2.38-1.413-2.746-1.604c-0.146-0.055-0.309-0.11-0.419-0.146
|
||||
c0.24-0.023,0.48-0.055,0.72-0.09c0.067,0.076,0.206,0.232,0.299,0.326c0.292,0.363,2.298,1.327,2.882,1.168
|
||||
c-0.304-0.371-2.342-1.224-2.695-1.39c-0.139-0.046-0.295-0.088-0.401-0.117c0.229-0.036,0.457-0.076,0.684-0.122
|
||||
c0.069,0.069,0.21,0.209,0.304,0.294c0.299,0.332,2.256,1.146,2.804,0.972c-0.315-0.329-2.303-1.047-2.645-1.188
|
||||
c-0.133-0.036-0.281-0.07-0.382-0.094c0.2-0.041,0.398-0.087,0.596-0.137c0.071,0.063,0.212,0.19,0.308,0.268
|
||||
c0.303,0.302,2.217,0.989,2.732,0.802c-0.325-0.292-2.268-0.893-2.598-1.016c-0.128-0.029-0.27-0.055-0.366-0.073
|
||||
c0.19-0.048,0.379-0.101,0.569-0.157c0.071,0.059,0.214,0.173,0.309,0.24c0.307,0.276,2.177,0.845,2.664,0.648
|
||||
c-0.332-0.258-2.227-0.75-2.551-0.854c-0.124-0.022-0.258-0.042-0.351-0.055c0.187-0.057,0.372-0.117,0.556-0.182
|
||||
c0.073,0.052,0.216,0.153,0.312,0.215c0.309,0.249,2.137,0.705,2.595,0.499c-0.34-0.223-2.191-0.611-2.505-0.698
|
||||
c-0.118-0.018-0.247-0.029-0.335-0.038c0.163-0.058,0.326-0.118,0.487-0.183c0.073,0.047,0.217,0.139,0.312,0.192
|
||||
c0.315,0.228,2.104,0.581,2.534,0.372c-0.346-0.193-2.158-0.492-2.461-0.565c-0.114-0.011-0.237-0.019-0.323-0.023
|
||||
c0.165-0.065,0.328-0.134,0.49-0.206c0.073,0.041,0.217,0.121,0.312,0.168c0.316,0.205,2.065,0.464,2.472,0.25
|
||||
c-0.352-0.163-2.123-0.375-2.416-0.433c-0.109-0.007-0.227-0.01-0.309-0.011c0.175-0.079,0.349-0.161,0.522-0.247
|
||||
C23.988,20.079,24.041,20.067,24.083,20.056z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#DEDEDD" d="M12.83,17.813h1.107l0-0.017c-0.02-0.16-0.156-0.284-0.322-0.284
|
||||
h-0.822c-0.179,0-0.324,0.145-0.324,0.324v0.702c0,0.179,0.145,0.324,0.324,0.324h0.822c0.168,0,0.306-0.127,0.323-0.29v-0.018
|
||||
H12.83V17.813z M15.38,18.037h-0.86v-0.233h1.155c-0.017-0.163-0.155-0.291-0.323-0.291h-0.837c-0.179,0-0.324,0.145-0.324,0.324
|
||||
v0.2c0.016,0.165,0.154,0.292,0.322,0.292h0.859v0.241h-1.18c0.016,0.165,0.154,0.293,0.322,0.293h0.862
|
||||
c0.179,0,0.324-0.146,0.324-0.324v-0.21C15.686,18.166,15.548,18.037,15.38,18.037z M19.347,17.5h-0.843
|
||||
c-0.171,0-0.311,0.14-0.311,0.312v0.729c0,0.171,0.14,0.311,0.311,0.311h0.843c0.172,0,0.311-0.14,0.311-0.311v-0.729
|
||||
C19.658,17.64,19.519,17.5,19.347,17.5z M19.368,18.601h-0.884v-0.848h0.884V18.601z M16.997,18.201
|
||||
c0.065,0.081,0.166,0.088,0.194,0.088h0.45v0.295h-0.944v-0.822h1.232c-0.024-0.149-0.154-0.262-0.307-0.262H16.72
|
||||
c-0.171,0-0.31,0.141-0.31,0.312v0.729c0,0.171,0.139,0.311,0.31,0.311h0.902c0.161,0,0.293-0.119,0.309-0.275v-0.511h-1
|
||||
C16.934,18.09,16.948,18.138,16.997,18.201z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 211 KiB |
@@ -1,712 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_10">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#140F21" cx="15.882" cy="16.224" r="15.039"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_3_2_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#92B5BD" cx="15.882" cy="16.224" r="14.491"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_3">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#9FDCF0" cx="15.882" cy="16.223" r="14.384"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.017,2.581l0.432,0.684c0.033,0.054,0.086,0.085,0.148,0.088
|
||||
c0.063,0.004,0.118-0.021,0.158-0.069l0.507-0.63c0.042-0.053,0.102-0.077,0.168-0.069c0.066,0.007,0.119,0.045,0.148,0.104
|
||||
l0.351,0.729c0.027,0.056,0.075,0.093,0.138,0.104c0.062,0.011,0.12-0.008,0.164-0.052l0.576-0.567
|
||||
c0.048-0.048,0.11-0.065,0.175-0.05c0.065,0.015,0.114,0.059,0.135,0.121l0.266,0.764c0.021,0.06,0.064,0.102,0.125,0.119
|
||||
s0.12,0.006,0.169-0.032l0.637-0.499c0.052-0.041,0.117-0.051,0.179-0.029c0.063,0.022,0.106,0.071,0.121,0.136l0.177,0.79
|
||||
c0.014,0.061,0.053,0.107,0.111,0.132c0.058,0.025,0.118,0.02,0.171-0.013l0.689-0.423c0.057-0.035,0.122-0.038,0.182-0.008
|
||||
c0.06,0.029,0.097,0.082,0.104,0.147l0.086,0.805c0.006,0.063,0.04,0.113,0.095,0.145c0.054,0.03,0.115,0.033,0.172,0.007
|
||||
l0.733-0.342c0.06-0.028,0.125-0.024,0.182,0.013c0.056,0.035,0.087,0.093,0.086,0.159l-0.007,0.81
|
||||
c0,0.063,0.027,0.117,0.078,0.153c0.051,0.037,0.111,0.046,0.17,0.026l0.768-0.256c0.063-0.021,0.127-0.01,0.179,0.033
|
||||
c0.052,0.042,0.076,0.102,0.068,0.169L24.56,6.582c-0.007,0.062,0.014,0.119,0.06,0.161c0.047,0.043,0.105,0.059,0.167,0.046
|
||||
l0.792-0.167c0.065-0.014,0.128,0.005,0.174,0.053c0.046,0.048,0.063,0.111,0.048,0.176L25.61,7.637
|
||||
c-0.015,0.062,0,0.12,0.041,0.168c0.041,0.047,0.098,0.07,0.16,0.063l0.804-0.075c0.067-0.006,0.127,0.021,0.167,0.073
|
||||
c0.041,0.052,0.05,0.117,0.028,0.179l-0.278,0.761c-0.021,0.059-0.014,0.118,0.021,0.17c0.036,0.053,0.089,0.081,0.151,0.083
|
||||
l0.809,0.017c0.066,0.001,0.124,0.034,0.158,0.091c0.035,0.057,0.037,0.122,0.007,0.182l-0.362,0.723
|
||||
c-0.028,0.057-0.027,0.117,0.002,0.173s0.079,0.091,0.141,0.099l0.801,0.109c0.066,0.009,0.119,0.048,0.146,0.108
|
||||
c0.027,0.06,0.022,0.126-0.014,0.181l-0.442,0.678c-0.035,0.052-0.041,0.112-0.019,0.171c0.023,0.059,0.068,0.099,0.129,0.114
|
||||
l0.784,0.199c0.065,0.018,0.112,0.062,0.133,0.125c0.021,0.063,0.008,0.128-0.034,0.178l-0.517,0.623
|
||||
c-0.04,0.048-0.053,0.107-0.037,0.168s0.057,0.106,0.115,0.128l0.756,0.288c0.062,0.023,0.104,0.073,0.118,0.139
|
||||
c0.013,0.064-0.006,0.128-0.055,0.173l-0.584,0.56c-0.045,0.044-0.065,0.102-0.056,0.163c0.009,0.063,0.044,0.111,0.1,0.141
|
||||
l0.718,0.372c0.059,0.03,0.095,0.085,0.101,0.151s-0.021,0.126-0.074,0.166l-0.644,0.489c-0.05,0.037-0.077,0.092-0.075,0.155
|
||||
c0.002,0.063,0.031,0.115,0.083,0.15l0.671,0.451c0.055,0.038,0.085,0.096,0.083,0.162c-0.001,0.066-0.035,0.122-0.092,0.157
|
||||
l-0.696,0.412c-0.054,0.032-0.086,0.083-0.091,0.146s0.018,0.119,0.065,0.16l0.615,0.524c0.05,0.044,0.074,0.104,0.064,0.171
|
||||
c-0.009,0.065-0.048,0.117-0.109,0.145l-0.738,0.33c-0.057,0.025-0.095,0.073-0.107,0.135c-0.013,0.062,0.003,0.12,0.046,0.165
|
||||
l0.552,0.592c0.045,0.049,0.061,0.112,0.044,0.177c-0.017,0.064-0.062,0.111-0.125,0.132l-0.771,0.244
|
||||
c-0.06,0.02-0.103,0.062-0.123,0.121s-0.01,0.12,0.027,0.171l0.48,0.649c0.04,0.055,0.048,0.119,0.024,0.181
|
||||
c-0.024,0.063-0.075,0.104-0.14,0.117l-0.794,0.154c-0.062,0.012-0.109,0.049-0.136,0.106c-0.025,0.058-0.023,0.117,0.008,0.173
|
||||
l0.403,0.7c0.033,0.058,0.035,0.124,0.004,0.183c-0.031,0.059-0.086,0.095-0.152,0.1l-0.806,0.063
|
||||
c-0.063,0.005-0.114,0.037-0.147,0.091c-0.032,0.054-0.036,0.114-0.011,0.172l0.32,0.742c0.026,0.062,0.02,0.126-0.018,0.182
|
||||
c-0.038,0.055-0.096,0.084-0.162,0.081l-0.808-0.029c-0.063-0.001-0.118,0.024-0.156,0.074c-0.038,0.05-0.049,0.109-0.031,0.17
|
||||
l0.234,0.773c0.019,0.063,0.005,0.128-0.039,0.178c-0.043,0.051-0.104,0.073-0.17,0.063l-0.8-0.122
|
||||
c-0.062-0.009-0.12,0.01-0.163,0.056c-0.044,0.045-0.062,0.103-0.051,0.165l0.145,0.796c0.012,0.065-0.009,0.127-0.059,0.172
|
||||
c-0.049,0.045-0.112,0.061-0.176,0.044l-0.78-0.213c-0.061-0.016-0.12-0.003-0.168,0.037c-0.049,0.039-0.074,0.095-0.069,0.157
|
||||
l0.053,0.807c0.004,0.066-0.023,0.126-0.077,0.165c-0.054,0.039-0.119,0.047-0.181,0.023l-0.751-0.3
|
||||
c-0.058-0.023-0.119-0.018-0.171,0.017c-0.053,0.033-0.083,0.087-0.086,0.148l-0.04,0.809c-0.003,0.066-0.038,0.122-0.096,0.154
|
||||
c-0.058,0.033-0.124,0.034-0.182,0.002l-0.712-0.383c-0.056-0.029-0.116-0.031-0.172-0.003c-0.056,0.028-0.092,0.077-0.103,0.138
|
||||
l-0.131,0.799c-0.011,0.065-0.051,0.117-0.113,0.143c-0.061,0.026-0.126,0.019-0.181-0.019l-0.664-0.462
|
||||
c-0.052-0.036-0.112-0.044-0.171-0.022c-0.059,0.021-0.101,0.065-0.118,0.126l-0.222,0.777c-0.018,0.064-0.064,0.11-0.128,0.129
|
||||
s-0.128,0.005-0.178-0.039l-0.607-0.534c-0.047-0.042-0.106-0.057-0.167-0.042c-0.061,0.014-0.107,0.054-0.132,0.111l-0.309,0.747
|
||||
c-0.025,0.062-0.076,0.103-0.142,0.114c-0.066,0.011-0.128-0.01-0.172-0.06l-0.543-0.601c-0.042-0.046-0.099-0.067-0.161-0.061
|
||||
c-0.062,0.007-0.113,0.041-0.143,0.096l-0.392,0.707c-0.033,0.059-0.087,0.094-0.154,0.097c-0.066,0.004-0.125-0.024-0.164-0.078
|
||||
l-0.47-0.657c-0.037-0.052-0.09-0.079-0.153-0.079c-0.063,0-0.117,0.027-0.153,0.079l-0.47,0.657
|
||||
c-0.039,0.054-0.098,0.082-0.164,0.078c-0.066-0.003-0.122-0.038-0.154-0.097l-0.392-0.707c-0.031-0.055-0.082-0.089-0.144-0.096
|
||||
c-0.063-0.007-0.119,0.015-0.161,0.061l-0.542,0.601c-0.044,0.05-0.106,0.07-0.172,0.06c-0.065-0.012-0.117-0.053-0.142-0.114
|
||||
l-0.31-0.747c-0.024-0.058-0.07-0.098-0.131-0.111c-0.061-0.015-0.12,0-0.167,0.042l-0.607,0.534
|
||||
c-0.05,0.044-0.114,0.058-0.178,0.039c-0.064-0.019-0.11-0.064-0.128-0.129l-0.222-0.777c-0.017-0.061-0.059-0.105-0.118-0.126
|
||||
c-0.059-0.021-0.12-0.014-0.171,0.022l-0.664,0.462c-0.055,0.037-0.12,0.045-0.181,0.019c-0.061-0.025-0.102-0.077-0.113-0.143
|
||||
l-0.132-0.799c-0.01-0.061-0.046-0.109-0.103-0.138s-0.117-0.026-0.172,0.003l-0.712,0.383c-0.059,0.032-0.124,0.031-0.182-0.002
|
||||
c-0.058-0.032-0.092-0.088-0.096-0.154l-0.04-0.809c-0.003-0.062-0.034-0.115-0.087-0.148c-0.052-0.034-0.113-0.04-0.171-0.017
|
||||
l-0.751,0.3c-0.063,0.023-0.127,0.016-0.181-0.023s-0.082-0.099-0.078-0.165l0.053-0.807c0.004-0.063-0.02-0.118-0.069-0.157
|
||||
c-0.048-0.04-0.108-0.053-0.168-0.037l-0.78,0.213c-0.064,0.017-0.128,0.001-0.177-0.044c-0.049-0.045-0.07-0.106-0.059-0.172
|
||||
l0.144-0.796c0.012-0.063-0.006-0.12-0.05-0.165C6.52,25.276,6.462,25.258,6.4,25.267l-0.8,0.122
|
||||
c-0.065,0.01-0.127-0.013-0.17-0.063c-0.043-0.05-0.057-0.114-0.038-0.178l0.234-0.773c0.018-0.061,0.007-0.12-0.031-0.17
|
||||
s-0.093-0.075-0.156-0.074L4.63,24.159c-0.066,0.003-0.125-0.026-0.163-0.081c-0.037-0.056-0.043-0.12-0.017-0.182l0.321-0.742
|
||||
c0.024-0.058,0.021-0.118-0.012-0.172s-0.084-0.086-0.146-0.091l-0.807-0.063c-0.066-0.005-0.121-0.041-0.152-0.1
|
||||
c-0.031-0.059-0.03-0.125,0.003-0.183l0.403-0.7c0.031-0.056,0.034-0.115,0.008-0.173c-0.026-0.058-0.074-0.095-0.135-0.106
|
||||
L3.14,21.413C3.075,21.399,3.024,21.358,3,21.296c-0.024-0.062-0.016-0.126,0.024-0.181l0.48-0.649
|
||||
c0.038-0.051,0.047-0.111,0.028-0.171S3.47,20.193,3.41,20.174L2.639,19.93c-0.063-0.021-0.109-0.067-0.125-0.132
|
||||
c-0.017-0.064-0.001-0.128,0.044-0.177l0.551-0.592c0.042-0.045,0.06-0.104,0.047-0.165s-0.05-0.109-0.108-0.135l-0.738-0.33
|
||||
c-0.061-0.027-0.1-0.079-0.109-0.145c-0.009-0.067,0.014-0.127,0.064-0.171L2.88,17.56c0.047-0.041,0.07-0.098,0.065-0.16
|
||||
c-0.005-0.063-0.037-0.113-0.091-0.146l-0.696-0.412c-0.057-0.035-0.09-0.091-0.092-0.157c-0.001-0.066,0.028-0.124,0.083-0.162
|
||||
l0.671-0.451c0.052-0.035,0.081-0.088,0.083-0.15c0.002-0.063-0.024-0.118-0.075-0.155l-0.644-0.489
|
||||
c-0.053-0.04-0.079-0.1-0.074-0.166c0.006-0.066,0.042-0.121,0.101-0.151l0.718-0.372c0.056-0.029,0.091-0.078,0.1-0.141
|
||||
c0.009-0.062-0.011-0.119-0.056-0.163l-0.584-0.56c-0.048-0.045-0.068-0.108-0.055-0.173c0.013-0.065,0.056-0.115,0.118-0.139
|
||||
l0.756-0.288c0.059-0.021,0.099-0.067,0.115-0.128s0.003-0.12-0.037-0.168L2.77,12.205c-0.042-0.05-0.055-0.115-0.034-0.178
|
||||
c0.021-0.063,0.068-0.107,0.133-0.125l0.784-0.199c0.061-0.016,0.106-0.056,0.129-0.114c0.022-0.059,0.016-0.119-0.018-0.171
|
||||
L3.321,10.74c-0.037-0.055-0.042-0.121-0.014-0.181c0.027-0.061,0.08-0.1,0.146-0.108l0.801-0.109
|
||||
c0.062-0.008,0.112-0.043,0.141-0.099s0.03-0.116,0.002-0.173L4.035,9.348c-0.03-0.06-0.027-0.125,0.007-0.182
|
||||
s0.091-0.09,0.157-0.091l0.809-0.017c0.063-0.002,0.116-0.03,0.151-0.083c0.036-0.052,0.043-0.111,0.022-0.17L4.903,8.045
|
||||
C4.881,7.983,4.891,7.918,4.932,7.866c0.04-0.053,0.1-0.079,0.167-0.073l0.805,0.075c0.063,0.007,0.119-0.017,0.16-0.063
|
||||
c0.041-0.048,0.055-0.106,0.041-0.168L5.915,6.851C5.899,6.786,5.917,6.723,5.963,6.675C6.01,6.627,6.072,6.608,6.137,6.622
|
||||
l0.792,0.167c0.062,0.013,0.12-0.003,0.167-0.046c0.046-0.042,0.067-0.1,0.06-0.161L7.056,5.779
|
||||
C7.048,5.712,7.072,5.652,7.124,5.61c0.051-0.043,0.116-0.055,0.179-0.033L8.07,5.833c0.06,0.02,0.119,0.011,0.17-0.026
|
||||
c0.051-0.036,0.078-0.091,0.078-0.153l-0.006-0.81c0-0.066,0.031-0.124,0.087-0.159C8.454,4.647,8.519,4.644,8.58,4.672
|
||||
l0.733,0.342C9.369,5.04,9.43,5.037,9.485,5.007C9.54,4.976,9.573,4.925,9.579,4.862l0.086-0.805C9.672,3.992,9.71,3.939,9.77,3.91
|
||||
c0.06-0.03,0.125-0.027,0.182,0.008l0.689,0.423c0.054,0.032,0.114,0.038,0.172,0.013c0.058-0.024,0.097-0.071,0.11-0.132
|
||||
l0.177-0.79c0.015-0.064,0.058-0.113,0.121-0.136c0.063-0.021,0.127-0.012,0.18,0.029l0.636,0.499
|
||||
c0.049,0.038,0.109,0.05,0.169,0.032c0.061-0.018,0.104-0.06,0.125-0.119l0.266-0.764c0.022-0.063,0.071-0.106,0.135-0.121
|
||||
c0.065-0.016,0.128,0.002,0.175,0.05l0.575,0.567c0.045,0.044,0.103,0.063,0.165,0.052c0.062-0.011,0.11-0.048,0.137-0.104
|
||||
l0.352-0.729c0.029-0.06,0.082-0.098,0.148-0.104c0.066-0.008,0.127,0.017,0.168,0.069l0.507,0.63
|
||||
c0.04,0.049,0.095,0.073,0.158,0.069c0.063-0.003,0.115-0.034,0.148-0.088l0.432-0.684c0.035-0.056,0.093-0.087,0.159-0.087
|
||||
C15.924,2.494,15.981,2.525,16.017,2.581L16.017,2.581z M15.857,4.822c3.167,0,6.034,1.283,8.109,3.358
|
||||
c2.075,2.076,3.359,4.943,3.359,8.109c0,3.168-1.284,6.034-3.359,8.109s-4.943,3.359-8.109,3.359s-6.034-1.284-8.109-3.359
|
||||
c-2.076-2.075-3.359-4.941-3.359-8.109c0-3.166,1.283-6.033,3.359-8.109C9.823,6.105,12.69,4.822,15.857,4.822L15.857,4.822z"/>
|
||||
<path fill="#92B5BD" d="M15.857,2.494c0.067,0,0.124,0.031,0.16,0.087l0.432,0.684c0.033,0.054,0.086,0.085,0.148,0.088
|
||||
c0.004,0,0.008,0,0.012,0c0.058,0,0.109-0.023,0.146-0.069l0.507-0.63c0.037-0.046,0.088-0.071,0.146-0.071
|
||||
c0.007,0,0.015,0.001,0.023,0.002c0.066,0.007,0.119,0.045,0.148,0.104l0.351,0.729c0.027,0.056,0.075,0.093,0.138,0.104
|
||||
c0.011,0.002,0.023,0.003,0.034,0.003c0.049,0,0.094-0.019,0.13-0.055l0.576-0.567c0.037-0.036,0.082-0.056,0.13-0.056
|
||||
c0.015,0,0.03,0.002,0.045,0.006c0.065,0.015,0.114,0.059,0.135,0.121l0.266,0.764c0.021,0.06,0.064,0.102,0.125,0.119
|
||||
c0.019,0.006,0.037,0.008,0.055,0.008c0.041,0,0.08-0.013,0.114-0.04l0.637-0.499c0.034-0.026,0.074-0.041,0.114-0.041
|
||||
c0.021,0,0.043,0.004,0.065,0.012c0.063,0.022,0.106,0.071,0.121,0.136l0.177,0.79c0.014,0.061,0.053,0.107,0.111,0.132
|
||||
c0.024,0.011,0.049,0.017,0.074,0.017c0.034,0,0.067-0.01,0.098-0.029l0.689-0.423c0.031-0.019,0.064-0.028,0.098-0.028
|
||||
c0.028,0,0.056,0.006,0.083,0.021c0.06,0.029,0.097,0.082,0.104,0.147l0.086,0.805c0.006,0.063,0.04,0.113,0.095,0.145
|
||||
c0.029,0.017,0.061,0.024,0.092,0.024c0.026,0,0.054-0.005,0.08-0.018l0.733-0.342c0.026-0.013,0.053-0.018,0.08-0.018
|
||||
c0.035,0,0.07,0.01,0.102,0.03c0.056,0.035,0.087,0.093,0.086,0.159l-0.007,0.81c0,0.063,0.027,0.117,0.078,0.153
|
||||
c0.033,0.023,0.071,0.036,0.109,0.036c0.02,0,0.041-0.003,0.061-0.01l0.768-0.256c0.021-0.007,0.041-0.011,0.062-0.011
|
||||
c0.042,0,0.083,0.016,0.117,0.044c0.052,0.042,0.076,0.102,0.068,0.169L24.56,6.582c-0.007,0.062,0.014,0.119,0.06,0.161
|
||||
c0.036,0.033,0.08,0.05,0.126,0.05c0.013,0,0.027-0.002,0.041-0.004l0.792-0.167c0.014-0.003,0.027-0.005,0.041-0.005
|
||||
c0.05,0,0.097,0.021,0.133,0.058c0.046,0.048,0.063,0.111,0.048,0.176L25.61,7.637c-0.015,0.062,0,0.12,0.041,0.168
|
||||
c0.037,0.042,0.085,0.064,0.141,0.064c0.006,0,0.013,0,0.02-0.001l0.804-0.075c0.007-0.001,0.013-0.001,0.02-0.001
|
||||
c0.059,0,0.111,0.025,0.148,0.074c0.041,0.052,0.05,0.117,0.028,0.179l-0.278,0.761c-0.021,0.059-0.014,0.118,0.021,0.17
|
||||
c0.036,0.053,0.089,0.081,0.151,0.083l0.809,0.017c0.066,0.001,0.124,0.034,0.158,0.091c0.035,0.057,0.037,0.122,0.007,0.182
|
||||
l-0.362,0.723c-0.028,0.057-0.027,0.117,0.002,0.173s0.079,0.091,0.141,0.099l0.801,0.109c0.066,0.009,0.119,0.048,0.146,0.108
|
||||
c0.027,0.06,0.022,0.126-0.014,0.181l-0.442,0.678c-0.035,0.052-0.041,0.112-0.019,0.171c0.023,0.059,0.068,0.099,0.129,0.114
|
||||
l0.784,0.199c0.065,0.018,0.112,0.062,0.133,0.125c0.021,0.063,0.008,0.128-0.034,0.178l-0.517,0.623
|
||||
c-0.04,0.048-0.053,0.107-0.037,0.168s0.057,0.106,0.115,0.128l0.756,0.288c0.062,0.023,0.104,0.073,0.118,0.139
|
||||
c0.013,0.064-0.006,0.128-0.055,0.173l-0.584,0.56c-0.045,0.044-0.065,0.102-0.056,0.163c0.009,0.063,0.044,0.111,0.1,0.141
|
||||
l0.718,0.372c0.059,0.03,0.095,0.085,0.101,0.151s-0.021,0.126-0.074,0.166l-0.644,0.489c-0.05,0.037-0.077,0.092-0.075,0.155
|
||||
c0.002,0.063,0.031,0.115,0.083,0.15l0.671,0.451c0.055,0.038,0.085,0.096,0.083,0.162c-0.001,0.066-0.035,0.122-0.092,0.157
|
||||
l-0.696,0.412c-0.054,0.032-0.086,0.083-0.091,0.146s0.018,0.119,0.065,0.16l0.615,0.524c0.05,0.044,0.074,0.104,0.064,0.171
|
||||
c-0.009,0.065-0.048,0.117-0.109,0.145l-0.738,0.33c-0.057,0.025-0.095,0.073-0.107,0.135c-0.013,0.062,0.003,0.12,0.046,0.165
|
||||
l0.552,0.592c0.045,0.049,0.061,0.112,0.044,0.177c-0.017,0.064-0.062,0.111-0.125,0.132l-0.771,0.244
|
||||
c-0.06,0.02-0.103,0.062-0.123,0.121s-0.01,0.12,0.027,0.171l0.48,0.649c0.04,0.055,0.048,0.119,0.024,0.181
|
||||
c-0.024,0.063-0.075,0.104-0.14,0.117l-0.794,0.154c-0.062,0.012-0.109,0.049-0.136,0.106c-0.025,0.058-0.023,0.117,0.008,0.173
|
||||
l0.403,0.7c0.033,0.058,0.035,0.124,0.004,0.183c-0.031,0.059-0.086,0.095-0.152,0.1l-0.806,0.063
|
||||
c-0.063,0.005-0.114,0.037-0.147,0.091c-0.032,0.054-0.036,0.114-0.011,0.172l0.32,0.742c0.026,0.062,0.02,0.126-0.018,0.182
|
||||
c-0.036,0.053-0.091,0.082-0.155,0.082c-0.002,0-0.005-0.001-0.007-0.001l-0.808-0.029c-0.003,0-0.005,0-0.008,0
|
||||
c-0.06,0-0.112,0.026-0.148,0.074c-0.038,0.05-0.049,0.109-0.031,0.17l0.234,0.773c0.019,0.063,0.005,0.128-0.039,0.178
|
||||
c-0.037,0.043-0.086,0.065-0.14,0.065c-0.01,0-0.02-0.001-0.03-0.002l-0.8-0.122c-0.01-0.001-0.02-0.001-0.03-0.001
|
||||
c-0.05,0-0.097,0.02-0.133,0.057c-0.044,0.045-0.062,0.103-0.051,0.165l0.145,0.796c0.012,0.065-0.009,0.127-0.059,0.172
|
||||
c-0.035,0.033-0.079,0.05-0.125,0.05c-0.017,0-0.034-0.002-0.051-0.006l-0.78-0.213c-0.017-0.004-0.035-0.007-0.051-0.007
|
||||
c-0.042,0-0.083,0.015-0.117,0.044c-0.049,0.039-0.074,0.095-0.069,0.157l0.053,0.807c0.004,0.066-0.023,0.126-0.077,0.165
|
||||
c-0.034,0.024-0.071,0.036-0.11,0.036c-0.023,0-0.047-0.004-0.071-0.013l-0.751-0.3c-0.023-0.01-0.047-0.014-0.071-0.014
|
||||
c-0.035,0-0.069,0.01-0.101,0.03c-0.053,0.033-0.083,0.087-0.086,0.148l-0.04,0.809c-0.003,0.066-0.038,0.122-0.096,0.154
|
||||
c-0.029,0.017-0.061,0.025-0.092,0.025c-0.031,0-0.061-0.008-0.09-0.023l-0.712-0.383c-0.028-0.015-0.059-0.023-0.089-0.023
|
||||
c-0.028,0-0.056,0.008-0.083,0.021c-0.056,0.028-0.092,0.077-0.103,0.138l-0.131,0.799c-0.011,0.065-0.051,0.117-0.113,0.143
|
||||
c-0.024,0.011-0.05,0.016-0.075,0.016c-0.037,0-0.074-0.012-0.106-0.034l-0.664-0.462c-0.033-0.022-0.069-0.034-0.106-0.034
|
||||
c-0.021,0-0.043,0.003-0.064,0.012c-0.059,0.021-0.101,0.065-0.118,0.126l-0.222,0.777c-0.018,0.064-0.064,0.11-0.128,0.129
|
||||
c-0.019,0.006-0.037,0.008-0.055,0.008c-0.044,0-0.087-0.016-0.123-0.047l-0.607-0.534c-0.035-0.031-0.078-0.048-0.122-0.048
|
||||
c-0.015,0-0.029,0.002-0.045,0.006c-0.061,0.014-0.107,0.054-0.132,0.111l-0.309,0.747c-0.025,0.062-0.076,0.103-0.142,0.114
|
||||
c-0.012,0.001-0.023,0.002-0.034,0.002c-0.053,0-0.102-0.021-0.138-0.062l-0.543-0.601c-0.037-0.041-0.084-0.063-0.138-0.063
|
||||
c-0.008,0-0.016,0.001-0.023,0.002c-0.062,0.007-0.113,0.041-0.143,0.096l-0.392,0.707c-0.033,0.059-0.087,0.094-0.154,0.097
|
||||
c-0.004,0-0.008,0-0.012,0c-0.062,0-0.116-0.027-0.152-0.078l-0.47-0.657c-0.037-0.052-0.09-0.079-0.153-0.079
|
||||
c-0.063,0-0.117,0.027-0.153,0.079l-0.47,0.657c-0.036,0.051-0.091,0.078-0.152,0.078c-0.004,0-0.008,0-0.012,0
|
||||
c-0.066-0.003-0.122-0.038-0.154-0.097l-0.392-0.707c-0.031-0.055-0.082-0.089-0.144-0.096c-0.008-0.001-0.016-0.002-0.023-0.002
|
||||
c-0.053,0-0.101,0.021-0.138,0.063l-0.542,0.601c-0.037,0.041-0.085,0.062-0.138,0.062c-0.011,0-0.023-0.001-0.034-0.002
|
||||
c-0.065-0.012-0.117-0.053-0.142-0.114l-0.31-0.747c-0.024-0.058-0.07-0.098-0.131-0.111c-0.015-0.004-0.03-0.006-0.045-0.006
|
||||
c-0.044,0-0.087,0.017-0.122,0.048l-0.607,0.534c-0.036,0.031-0.078,0.047-0.123,0.047c-0.018,0-0.037-0.002-0.055-0.008
|
||||
c-0.064-0.019-0.11-0.064-0.128-0.129l-0.222-0.777c-0.017-0.061-0.059-0.105-0.118-0.126c-0.022-0.009-0.043-0.012-0.065-0.012
|
||||
c-0.037,0-0.073,0.012-0.106,0.034l-0.664,0.462c-0.033,0.022-0.07,0.034-0.106,0.034c-0.025,0-0.05-0.005-0.075-0.016
|
||||
c-0.061-0.025-0.102-0.077-0.113-0.143l-0.132-0.799c-0.01-0.061-0.046-0.109-0.103-0.138c-0.027-0.013-0.056-0.021-0.083-0.021
|
||||
c-0.03,0-0.061,0.009-0.089,0.023l-0.712,0.383c-0.029,0.016-0.06,0.023-0.09,0.023c-0.031,0-0.063-0.009-0.092-0.025
|
||||
c-0.058-0.032-0.092-0.088-0.096-0.154l-0.04-0.809c-0.003-0.062-0.034-0.115-0.087-0.148c-0.031-0.021-0.065-0.03-0.101-0.03
|
||||
c-0.023,0-0.047,0.004-0.071,0.014l-0.751,0.3c-0.024,0.009-0.048,0.013-0.071,0.013c-0.039,0-0.076-0.012-0.109-0.036
|
||||
c-0.054-0.039-0.082-0.099-0.078-0.165l0.053-0.807c0.004-0.063-0.02-0.118-0.069-0.157c-0.035-0.029-0.075-0.044-0.117-0.044
|
||||
c-0.017,0-0.034,0.003-0.051,0.007l-0.78,0.213c-0.018,0.004-0.035,0.006-0.052,0.006c-0.046,0-0.09-0.017-0.125-0.05
|
||||
c-0.049-0.045-0.07-0.106-0.059-0.172l0.144-0.796c0.012-0.063-0.006-0.12-0.05-0.165c-0.036-0.037-0.083-0.057-0.133-0.057
|
||||
c-0.01,0-0.02,0-0.03,0.001l-0.8,0.122c-0.01,0.001-0.021,0.002-0.03,0.002c-0.054,0-0.104-0.022-0.14-0.065
|
||||
c-0.043-0.05-0.057-0.114-0.038-0.178l0.234-0.773c0.018-0.061,0.007-0.12-0.031-0.17c-0.037-0.048-0.089-0.074-0.148-0.074
|
||||
c-0.002,0-0.005,0-0.008,0L4.63,24.159c-0.002,0-0.005,0.001-0.007,0.001c-0.063,0-0.119-0.029-0.155-0.082
|
||||
c-0.037-0.056-0.043-0.12-0.017-0.182l0.321-0.742c0.024-0.058,0.021-0.118-0.012-0.172s-0.084-0.086-0.146-0.091l-0.807-0.063
|
||||
c-0.066-0.005-0.121-0.041-0.152-0.1c-0.031-0.059-0.03-0.125,0.003-0.183l0.403-0.7c0.031-0.056,0.034-0.115,0.008-0.173
|
||||
c-0.026-0.058-0.074-0.095-0.135-0.106L3.14,21.413C3.075,21.399,3.024,21.358,3,21.296c-0.024-0.062-0.016-0.126,0.024-0.181
|
||||
l0.48-0.649c0.038-0.051,0.047-0.111,0.028-0.171S3.47,20.193,3.41,20.174L2.639,19.93c-0.063-0.021-0.109-0.067-0.125-0.132
|
||||
c-0.017-0.064-0.001-0.128,0.044-0.177l0.551-0.592c0.042-0.045,0.06-0.104,0.047-0.165s-0.05-0.109-0.108-0.135l-0.738-0.33
|
||||
c-0.061-0.027-0.1-0.079-0.109-0.145c-0.009-0.067,0.014-0.127,0.064-0.171L2.88,17.56c0.047-0.041,0.07-0.098,0.065-0.16
|
||||
c-0.005-0.063-0.037-0.113-0.091-0.146l-0.696-0.412c-0.057-0.035-0.09-0.091-0.092-0.157c-0.001-0.066,0.028-0.124,0.083-0.162
|
||||
l0.671-0.451c0.052-0.035,0.081-0.088,0.083-0.15c0.002-0.063-0.024-0.118-0.075-0.155l-0.644-0.489
|
||||
c-0.053-0.04-0.079-0.1-0.074-0.166c0.006-0.066,0.042-0.121,0.101-0.151l0.718-0.372c0.056-0.029,0.091-0.078,0.1-0.141
|
||||
c0.009-0.062-0.011-0.119-0.056-0.163l-0.584-0.56c-0.048-0.045-0.068-0.108-0.055-0.173c0.013-0.065,0.056-0.115,0.118-0.139
|
||||
l0.756-0.288c0.059-0.021,0.099-0.067,0.115-0.128s0.003-0.12-0.037-0.168L2.77,12.205c-0.042-0.05-0.055-0.115-0.034-0.178
|
||||
c0.021-0.063,0.068-0.107,0.133-0.125l0.784-0.199c0.061-0.016,0.106-0.056,0.129-0.114c0.022-0.059,0.016-0.119-0.018-0.171
|
||||
L3.321,10.74c-0.037-0.055-0.042-0.121-0.014-0.181c0.027-0.061,0.08-0.1,0.146-0.108l0.801-0.109
|
||||
c0.062-0.008,0.112-0.043,0.141-0.099s0.03-0.116,0.002-0.173L4.035,9.348c-0.03-0.06-0.027-0.125,0.007-0.182
|
||||
s0.091-0.09,0.157-0.091l0.809-0.017c0.063-0.002,0.116-0.03,0.151-0.083c0.036-0.052,0.043-0.111,0.022-0.17L4.903,8.045
|
||||
C4.881,7.983,4.891,7.918,4.932,7.866c0.036-0.049,0.089-0.074,0.147-0.074c0.006,0,0.013,0,0.019,0.001l0.805,0.075
|
||||
C5.91,7.869,5.917,7.869,5.922,7.869c0.055,0,0.104-0.022,0.141-0.064c0.041-0.048,0.055-0.106,0.041-0.168L5.915,6.851
|
||||
C5.899,6.786,5.917,6.723,5.963,6.675C6,6.638,6.046,6.617,6.096,6.617c0.013,0,0.027,0.002,0.041,0.005l0.792,0.167
|
||||
c0.014,0.002,0.027,0.004,0.041,0.004c0.046,0,0.089-0.017,0.125-0.05c0.046-0.042,0.067-0.1,0.06-0.161L7.056,5.779
|
||||
C7.048,5.712,7.072,5.652,7.124,5.61c0.035-0.028,0.076-0.044,0.117-0.044c0.021,0,0.042,0.004,0.062,0.011L8.07,5.833
|
||||
C8.09,5.84,8.11,5.843,8.131,5.843c0.039,0,0.076-0.013,0.109-0.036c0.051-0.036,0.078-0.091,0.078-0.153l-0.006-0.81
|
||||
c0-0.066,0.031-0.124,0.087-0.159c0.032-0.021,0.066-0.03,0.101-0.03c0.027,0,0.054,0.005,0.081,0.018l0.733,0.342
|
||||
c0.026,0.013,0.053,0.018,0.08,0.018c0.031,0,0.063-0.008,0.092-0.024C9.54,4.976,9.573,4.925,9.579,4.862l0.086-0.805
|
||||
C9.672,3.992,9.71,3.939,9.77,3.91C9.797,3.896,9.825,3.89,9.854,3.89c0.033,0,0.067,0.01,0.098,0.028l0.689,0.423
|
||||
c0.03,0.02,0.064,0.029,0.098,0.029c0.025,0,0.05-0.006,0.074-0.017c0.058-0.024,0.097-0.071,0.11-0.132l0.177-0.79
|
||||
c0.015-0.064,0.058-0.113,0.121-0.136c0.021-0.008,0.043-0.012,0.065-0.012c0.041,0,0.081,0.015,0.115,0.041l0.636,0.499
|
||||
c0.035,0.027,0.074,0.04,0.114,0.04c0.018,0,0.037-0.002,0.055-0.008c0.061-0.018,0.104-0.06,0.125-0.119l0.266-0.764
|
||||
c0.022-0.063,0.071-0.106,0.135-0.121c0.015-0.004,0.03-0.006,0.044-0.006c0.049,0,0.094,0.02,0.131,0.056l0.575,0.567
|
||||
c0.037,0.036,0.082,0.055,0.131,0.055c0.011,0,0.022-0.001,0.034-0.003c0.062-0.011,0.11-0.048,0.137-0.104l0.352-0.729
|
||||
c0.029-0.06,0.082-0.098,0.148-0.104c0.008-0.001,0.016-0.002,0.023-0.002c0.057,0,0.108,0.025,0.145,0.071l0.507,0.63
|
||||
c0.037,0.046,0.088,0.069,0.146,0.069c0.004,0,0.008,0,0.012,0c0.063-0.003,0.115-0.034,0.148-0.088l0.432-0.684
|
||||
C15.733,2.525,15.791,2.494,15.857,2.494 M15.857,27.759c3.167,0,6.034-1.284,8.109-3.359s3.359-4.941,3.359-8.109
|
||||
c0-3.166-1.284-6.033-3.359-8.109c-2.075-2.075-4.943-3.358-8.109-3.358S9.823,6.105,7.748,8.181
|
||||
c-2.076,2.076-3.359,4.943-3.359,8.109c0,3.168,1.283,6.034,3.359,8.109C9.823,26.475,12.69,27.759,15.857,27.759 M15.857,2.337
|
||||
c-0.121,0-0.227,0.059-0.292,0.161l-0.432,0.684c-0.007,0.01-0.013,0.014-0.024,0.015c-0.001,0-0.002,0-0.003,0
|
||||
c-0.009,0-0.016-0.002-0.023-0.012l-0.507-0.63c-0.066-0.083-0.162-0.13-0.267-0.13c-0.014,0-0.028,0.001-0.041,0.003
|
||||
c-0.12,0.014-0.219,0.084-0.272,0.193L13.643,3.35c-0.005,0.011-0.01,0.015-0.023,0.017c-0.003,0.001-0.005,0.001-0.007,0.001
|
||||
c-0.006,0-0.012-0.001-0.021-0.009L13.018,2.79c-0.065-0.064-0.151-0.101-0.241-0.101c-0.026,0-0.053,0.004-0.08,0.01
|
||||
c-0.118,0.027-0.208,0.108-0.249,0.223l-0.266,0.764c-0.004,0.012-0.009,0.017-0.021,0.02c-0.004,0.002-0.008,0.002-0.011,0.002
|
||||
c-0.004,0-0.009-0.001-0.017-0.007l-0.637-0.498c-0.062-0.049-0.135-0.074-0.211-0.074c-0.04,0-0.08,0.007-0.118,0.02
|
||||
c-0.114,0.041-0.194,0.132-0.221,0.251L10.77,4.187c-0.002,0.013-0.007,0.018-0.018,0.022c-0.005,0.002-0.009,0.004-0.013,0.004
|
||||
c-0.002,0-0.007,0-0.016-0.006l-0.689-0.424C9.978,3.75,9.916,3.732,9.854,3.732C9.8,3.732,9.749,3.744,9.7,3.769
|
||||
C9.592,3.822,9.522,3.921,9.509,4.042L9.423,4.846C9.422,4.858,9.418,4.863,9.407,4.87l0,0l0,0
|
||||
C9.399,4.875,9.394,4.875,9.393,4.875c-0.004,0-0.009-0.002-0.014-0.004L8.646,4.529C8.599,4.508,8.55,4.497,8.499,4.497
|
||||
c-0.065,0-0.13,0.019-0.186,0.055c-0.102,0.065-0.16,0.172-0.159,0.293l0.006,0.809c0,0.013-0.003,0.02-0.013,0.026
|
||||
C8.14,5.685,8.135,5.686,8.131,5.686c-0.003,0-0.007,0-0.012-0.002L7.352,5.429c-0.036-0.013-0.074-0.02-0.111-0.02
|
||||
c-0.079,0-0.154,0.028-0.217,0.079C6.931,5.565,6.885,5.678,6.9,5.798l0.099,0.803C7,6.613,6.997,6.619,6.988,6.628
|
||||
C6.98,6.635,6.975,6.636,6.969,6.636c-0.003,0-0.005,0-0.009-0.001L6.169,6.468C6.145,6.463,6.12,6.46,6.096,6.46
|
||||
c-0.093,0-0.18,0.038-0.246,0.105C5.766,6.652,5.734,6.77,5.762,6.888l0.189,0.786c0.003,0.012,0.001,0.019-0.007,0.027
|
||||
S5.931,7.712,5.922,7.712c-0.001,0-0.002,0-0.004,0L5.113,7.637C5.102,7.636,5.09,7.635,5.079,7.635
|
||||
c-0.107,0-0.206,0.049-0.272,0.135C4.733,7.865,4.714,7.985,4.756,8.1l0.277,0.759C5.038,8.87,5.037,8.877,5.03,8.887
|
||||
C5.023,8.897,5.017,8.9,5.005,8.901L4.196,8.918C4.076,8.92,3.97,8.981,3.908,9.085l0,0l0,0C3.845,9.188,3.841,9.31,3.895,9.418
|
||||
l0.362,0.723c0.006,0.011,0.006,0.019,0,0.028c-0.006,0.012-0.012,0.016-0.023,0.018l-0.801,0.108
|
||||
c-0.12,0.017-0.218,0.089-0.268,0.199s-0.041,0.231,0.025,0.332l0.442,0.678c0.006,0.01,0.007,0.017,0.003,0.028
|
||||
c-0.004,0.011-0.01,0.016-0.021,0.019l-0.784,0.2c-0.117,0.029-0.206,0.112-0.243,0.228c-0.038,0.115-0.015,0.235,0.063,0.328
|
||||
l0.517,0.622c0.007,0.009,0.009,0.016,0.006,0.027v0.001l0,0c-0.003,0.011-0.008,0.017-0.019,0.021l-0.756,0.287
|
||||
C2.284,13.309,2.205,13.4,2.181,13.52s0.012,0.234,0.1,0.318l0.584,0.56c0.009,0.008,0.011,0.015,0.009,0.026
|
||||
c-0.002,0.013-0.006,0.019-0.017,0.023L2.14,14.819c-0.107,0.056-0.175,0.156-0.185,0.277l0,0l0,0
|
||||
c-0.01,0.121,0.039,0.231,0.135,0.305l0.645,0.488c0.009,0.008,0.012,0.015,0.012,0.025v0.001l0,0c0,0.012-0.003,0.019-0.014,0.025
|
||||
l-0.671,0.451c-0.101,0.067-0.156,0.176-0.153,0.296c0.003,0.121,0.065,0.226,0.169,0.288l0.695,0.412
|
||||
c0.011,0.006,0.015,0.013,0.016,0.024s-0.001,0.02-0.011,0.026l-0.615,0.524c-0.092,0.079-0.135,0.193-0.118,0.313
|
||||
c0.018,0.119,0.091,0.217,0.201,0.266l0.739,0.33C2.996,18.878,3,18.883,3.002,18.896c0.002,0.012,0,0.019-0.008,0.027
|
||||
l-0.551,0.592c-0.083,0.088-0.112,0.206-0.081,0.323s0.114,0.205,0.229,0.241l0.771,0.244c0.012,0.004,0.017,0.009,0.021,0.02
|
||||
c0.004,0.013,0.003,0.02-0.004,0.029l-0.48,0.65c-0.072,0.098-0.088,0.219-0.044,0.331s0.137,0.19,0.256,0.213l0.793,0.154
|
||||
c0.012,0.003,0.018,0.008,0.022,0.019c0.005,0.012,0.004,0.019-0.001,0.028l0,0v0.001l-0.403,0.7
|
||||
c-0.061,0.104-0.063,0.227-0.006,0.334c0.057,0.106,0.158,0.173,0.279,0.183l0.806,0.063c0.012,0.001,0.019,0.004,0.024,0.015
|
||||
c0.006,0.01,0.007,0.019,0.002,0.028l-0.32,0.743c-0.048,0.11-0.036,0.232,0.032,0.332l0,0c0.065,0.096,0.169,0.149,0.285,0.149
|
||||
c0.004,0,0.009,0,0.013,0l0.808-0.029c0.001,0,0.001,0,0.002,0c0.01,0,0.016,0.002,0.024,0.013c0.007,0.01,0.009,0.017,0.005,0.028
|
||||
l-0.234,0.773c-0.035,0.116-0.01,0.235,0.069,0.327c0.067,0.077,0.159,0.119,0.259,0.119c0.018,0,0.036-0.001,0.054-0.004
|
||||
l0.8-0.122c0.002,0,0.005,0,0.007,0c0.005,0,0.012,0,0.021,0.01c0.008,0.009,0.01,0.016,0.008,0.028l-0.144,0.795
|
||||
c-0.021,0.119,0.018,0.234,0.106,0.316c0.064,0.059,0.146,0.091,0.231,0.091c0.031,0,0.062-0.004,0.093-0.013l0.78-0.211
|
||||
c0.003-0.001,0.007-0.002,0.01-0.002c0.004,0,0.01,0.001,0.018,0.008c0.009,0.007,0.012,0.015,0.012,0.025l-0.053,0.808
|
||||
c-0.008,0.121,0.043,0.23,0.142,0.302c0.06,0.044,0.13,0.066,0.202,0.066c0.044,0,0.087-0.008,0.129-0.024l0.751-0.3
|
||||
c0.005-0.001,0.009-0.002,0.013-0.002c0.002,0,0.007,0,0.016,0.005c0.011,0.007,0.014,0.014,0.015,0.025l0.04,0.808
|
||||
c0.006,0.121,0.07,0.225,0.176,0.283c0.052,0.03,0.111,0.046,0.169,0.046c0.057,0,0.112-0.015,0.164-0.042l0.712-0.383
|
||||
c0.005-0.003,0.01-0.005,0.014-0.005s0.009,0.001,0.014,0.004c0.011,0.005,0.015,0.012,0.017,0.023l0.132,0.798
|
||||
c0.02,0.119,0.095,0.215,0.207,0.262c0.044,0.019,0.089,0.028,0.136,0.028c0.069,0,0.137-0.021,0.196-0.063l0.664-0.462
|
||||
c0.008-0.005,0.014-0.006,0.017-0.006c0.003,0,0.007,0.001,0.012,0.002c0.011,0.004,0.016,0.01,0.02,0.021l0,0l0,0l0.222,0.778
|
||||
c0.033,0.116,0.119,0.202,0.235,0.237c0.033,0.01,0.066,0.014,0.099,0.014c0.084,0,0.162-0.03,0.227-0.087l0.607-0.533
|
||||
c0.008-0.008,0.014-0.009,0.019-0.009c0.003,0,0.006,0,0.009,0.001c0.012,0.003,0.017,0.008,0.022,0.019l0.309,0.747
|
||||
c0.046,0.112,0.142,0.188,0.26,0.209c0.021,0.004,0.042,0.005,0.062,0.005c0.098,0,0.188-0.04,0.254-0.114l0.542-0.6
|
||||
c0.008-0.009,0.014-0.011,0.021-0.011c0.002,0,0.004,0,0.006,0c0.012,0.002,0.018,0.007,0.024,0.018l0.392,0.706
|
||||
c0.059,0.106,0.161,0.171,0.282,0.178c0.007,0,0.014,0,0.021,0c0.113,0,0.215-0.052,0.28-0.145l0.47-0.657
|
||||
c0.007-0.011,0.013-0.013,0.025-0.013s0.019,0.002,0.026,0.012l0.47,0.658c0.065,0.093,0.168,0.145,0.28,0.145
|
||||
c0.007,0,0.014,0,0.021,0c0.121-0.007,0.224-0.071,0.283-0.178l0.392-0.706c0.006-0.011,0.012-0.016,0.024-0.018
|
||||
c0.001,0,0.003,0,0.005,0c0.007,0,0.014,0.002,0.021,0.011l0.542,0.6l0,0c0.066,0.074,0.157,0.114,0.255,0.114
|
||||
c0.02,0,0.04-0.001,0.061-0.005c0.119-0.021,0.214-0.097,0.261-0.208l0.309-0.748c0.004-0.011,0.01-0.016,0.021-0.019
|
||||
c0.004-0.001,0.007-0.001,0.01-0.001c0.005,0,0.01,0.001,0.019,0.009l0.607,0.533c0.064,0.057,0.143,0.087,0.227,0.087
|
||||
c0.033,0,0.067-0.004,0.099-0.014c0.116-0.035,0.202-0.121,0.235-0.237l0.222-0.778c0.003-0.011,0.008-0.017,0.02-0.021
|
||||
c0.004-0.001,0.008-0.002,0.012-0.002c0.002,0,0.008,0,0.017,0.006l0.664,0.462c0.059,0.041,0.127,0.063,0.196,0.063
|
||||
c0.047,0,0.092-0.01,0.136-0.028c0.111-0.047,0.187-0.143,0.206-0.262l0.132-0.798c0.002-0.012,0.006-0.019,0.017-0.023
|
||||
c0.005-0.003,0.01-0.004,0.014-0.004s0.009,0.002,0.015,0.005l0.712,0.383c0.052,0.027,0.107,0.042,0.164,0.042
|
||||
c0.059,0,0.117-0.016,0.17-0.046c0.105-0.06,0.169-0.162,0.175-0.284l0.04-0.807c0.001-0.013,0.004-0.019,0.015-0.025
|
||||
c0.007-0.005,0.013-0.005,0.016-0.005c0.004,0,0.008,0.001,0.013,0.002l0.751,0.3c0.042,0.017,0.085,0.024,0.129,0.024
|
||||
c0.072,0,0.142-0.022,0.202-0.066c0.098-0.071,0.149-0.181,0.142-0.302l-0.052-0.808c-0.001-0.011,0.001-0.019,0.011-0.025l0,0
|
||||
v-0.001c0.008-0.006,0.013-0.007,0.018-0.007c0.003,0,0.006,0.001,0.01,0.002l0.781,0.211c0.031,0.009,0.062,0.013,0.092,0.013
|
||||
c0.085,0,0.167-0.032,0.232-0.091c0.089-0.082,0.127-0.197,0.106-0.316l-0.144-0.796c-0.002-0.012,0-0.019,0.008-0.027
|
||||
c0.008-0.01,0.015-0.01,0.02-0.01c0.002,0,0.004,0,0.006,0l0.8,0.122c0.018,0.003,0.036,0.004,0.054,0.004
|
||||
c0.1,0,0.192-0.042,0.259-0.119c0.079-0.092,0.104-0.211,0.069-0.327l-0.234-0.773c-0.003-0.012-0.002-0.019,0.005-0.028
|
||||
c0.009-0.011,0.015-0.013,0.024-0.013c0,0,0.001,0,0.002,0l0.808,0.029c0.004,0,0.009,0,0.013,0c0.116,0,0.219-0.054,0.284-0.149
|
||||
l0,0c0.068-0.1,0.081-0.222,0.033-0.332l-0.321-0.743c-0.005-0.01-0.004-0.019,0.002-0.028c0.006-0.011,0.012-0.014,0.024-0.015
|
||||
l0.806-0.063c0.121-0.01,0.223-0.076,0.279-0.183c0.057-0.107,0.054-0.229-0.006-0.334l-0.403-0.7
|
||||
c-0.006-0.011-0.006-0.018-0.001-0.029c0.005-0.011,0.011-0.016,0.023-0.019l0.793-0.154c0.119-0.022,0.212-0.101,0.256-0.213
|
||||
s0.028-0.233-0.044-0.331l-0.48-0.65c-0.007-0.01-0.008-0.017-0.004-0.028c0.003-0.012,0.009-0.017,0.021-0.021l0.771-0.244
|
||||
c0.116-0.036,0.2-0.124,0.23-0.241c0.03-0.116,0.001-0.234-0.082-0.323l-0.551-0.592c-0.009-0.009-0.01-0.016-0.008-0.027v-0.001
|
||||
l0,0c0.003-0.012,0.007-0.017,0.018-0.021l0.738-0.33c0.11-0.05,0.184-0.146,0.201-0.267c0.017-0.119-0.026-0.233-0.118-0.313
|
||||
l-0.615-0.524c-0.009-0.008-0.012-0.015-0.011-0.026s0.005-0.019,0.016-0.024l0.695-0.412c0.104-0.063,0.166-0.167,0.169-0.288
|
||||
c0.003-0.12-0.052-0.229-0.153-0.296l-0.671-0.451c-0.01-0.007-0.013-0.014-0.014-0.026c0-0.011,0.003-0.018,0.013-0.025
|
||||
l0.644-0.488c0.096-0.073,0.146-0.184,0.135-0.305c-0.01-0.121-0.078-0.222-0.185-0.278l-0.718-0.371
|
||||
c-0.011-0.005-0.015-0.011-0.017-0.023c-0.001-0.012,0.001-0.019,0.009-0.026l0.584-0.56c0.087-0.084,0.124-0.2,0.1-0.318
|
||||
c-0.024-0.119-0.103-0.211-0.216-0.255l-0.756-0.287c-0.011-0.004-0.016-0.01-0.019-0.021c-0.003-0.012-0.001-0.02,0.006-0.028
|
||||
l0.517-0.622c0.077-0.093,0.101-0.212,0.063-0.328c-0.038-0.115-0.126-0.198-0.244-0.228l-0.784-0.2
|
||||
c-0.012-0.003-0.017-0.008-0.021-0.019c-0.004-0.012-0.003-0.019,0.003-0.028l0.442-0.678c0.066-0.101,0.076-0.223,0.025-0.333
|
||||
c-0.05-0.109-0.147-0.182-0.268-0.198l-0.801-0.108c-0.012-0.002-0.018-0.006-0.024-0.017c-0.005-0.011-0.005-0.019,0-0.029
|
||||
l0.362-0.723c0.055-0.108,0.05-0.229-0.013-0.333c-0.063-0.104-0.167-0.165-0.289-0.167l-0.809-0.017
|
||||
C26.697,8.9,26.69,8.897,26.684,8.888V8.887l0,0c-0.006-0.01-0.007-0.017-0.003-0.028L26.958,8.1
|
||||
C27,7.985,26.981,7.865,26.907,7.77c-0.066-0.086-0.165-0.135-0.272-0.135c-0.011,0-0.022,0.001-0.034,0.002l-0.804,0.075
|
||||
c-0.002,0-0.003,0-0.005,0c-0.008,0-0.014-0.002-0.022-0.011c-0.007-0.009-0.009-0.016-0.006-0.027l0.189-0.786
|
||||
c0.028-0.118-0.003-0.235-0.088-0.322l0,0C25.798,6.498,25.71,6.46,25.618,6.46c-0.024,0-0.049,0.003-0.073,0.008l-0.791,0.167
|
||||
c-0.003,0.001-0.006,0.001-0.008,0.001c-0.005,0-0.011-0.001-0.02-0.008c-0.009-0.009-0.011-0.015-0.01-0.027l0.099-0.803
|
||||
c0.015-0.12-0.031-0.232-0.125-0.31c-0.063-0.051-0.138-0.079-0.217-0.079c-0.037,0-0.075,0.007-0.111,0.02l-0.767,0.255
|
||||
c-0.004,0.002-0.008,0.002-0.011,0.002c-0.002,0-0.008,0-0.018-0.006c-0.009-0.007-0.013-0.014-0.013-0.026l0,0l0.006-0.809
|
||||
c0.001-0.121-0.057-0.228-0.159-0.293c-0.056-0.036-0.121-0.055-0.186-0.055c-0.05,0-0.1,0.011-0.146,0.032L22.335,4.87
|
||||
c-0.005,0.003-0.01,0.005-0.014,0.005c-0.002,0-0.007,0-0.015-0.005c-0.011-0.006-0.014-0.012-0.016-0.024l-0.086-0.804
|
||||
c-0.013-0.121-0.083-0.22-0.191-0.273c-0.049-0.024-0.1-0.036-0.153-0.036c-0.063,0-0.125,0.018-0.18,0.051l-0.689,0.424
|
||||
c-0.009,0.006-0.014,0.006-0.016,0.006c-0.004,0-0.008-0.002-0.013-0.004l0,0h0c-0.011-0.005-0.016-0.011-0.018-0.022l-0.177-0.788
|
||||
c-0.026-0.118-0.107-0.21-0.221-0.251c-0.039-0.013-0.078-0.02-0.118-0.02c-0.076,0-0.149,0.025-0.211,0.074L19.58,3.7
|
||||
c-0.009,0.007-0.015,0.007-0.017,0.007c-0.003,0-0.006,0-0.011-0.002c-0.012-0.003-0.017-0.008-0.021-0.02l-0.266-0.764
|
||||
c-0.04-0.114-0.13-0.195-0.248-0.223c-0.026-0.006-0.054-0.01-0.081-0.01c-0.09,0-0.175,0.036-0.24,0.101l-0.576,0.568
|
||||
c-0.009,0.008-0.015,0.009-0.02,0.009c-0.002,0-0.004,0-0.007-0.001c-0.012-0.002-0.018-0.006-0.023-0.017L17.72,2.621
|
||||
c-0.053-0.109-0.151-0.179-0.272-0.193c-0.014-0.002-0.028-0.003-0.041-0.003c-0.104,0-0.202,0.047-0.268,0.13l-0.506,0.63
|
||||
c-0.008,0.01-0.015,0.012-0.024,0.012c-0.001,0-0.002,0-0.003,0c-0.012-0.001-0.018-0.005-0.025-0.015l-0.432-0.684
|
||||
C16.085,2.396,15.978,2.337,15.857,2.337L15.857,2.337z M15.857,27.602c-3.021,0-5.862-1.177-7.998-3.313s-3.313-4.976-3.313-7.998
|
||||
c0-3.021,1.177-5.861,3.313-7.997c2.136-2.137,4.977-3.313,7.998-3.313c3.021,0,5.862,1.177,7.998,3.313s3.313,4.977,3.313,7.997
|
||||
c0,3.021-1.177,5.861-3.313,7.998S18.878,27.602,15.857,27.602L15.857,27.602z"/>
|
||||
</g>
|
||||
<g id="Shape_10_copy">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#CFCCCC" cx="15.882" cy="16.224" r="12.215"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_2_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#919191" cx="15.882" cy="16.223" r="12.087"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_4_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#CFCCCC" cx="15.882" cy="16.224" r="11.48"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_4">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#140F21" cx="15.882" cy="16.223" r="11.341"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_4_2_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#1D536C" cx="15.882" cy="16.223" r="11.026"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#EDE730" d="M12.818,16.058c0.002-0.544,0.152-1.052,0.411-1.487c0.259-0.437,0.627-0.8,1.067-1.052l0,0
|
||||
c0,0,0,0,0-0.001c0.003-0.001,0.006-0.003,0.009-0.005c0.002-0.003,0.006-0.005,0.008-0.006c0.003-0.003,0.005-0.006,0.007-0.009
|
||||
c0.002-0.002,0.005-0.005,0.007-0.008c0.002-0.003,0.004-0.006,0.006-0.01c0.001-0.002,0.003-0.004,0.004-0.007
|
||||
c0.002-0.004,0.003-0.008,0.004-0.012c0.001-0.003,0.002-0.005,0.003-0.008c0.001-0.004,0.002-0.008,0.002-0.013
|
||||
c0-0.003,0.001-0.004,0.001-0.007c0-0.005,0-0.01,0-0.015c0-0.002,0-0.004,0-0.006c0-0.006-0.001-0.011-0.003-0.016
|
||||
c0-0.001-0.001-0.003-0.001-0.005c-0.002-0.005-0.004-0.01-0.007-0.015c0-0.002-0.001-0.003-0.001-0.005h0l0,0l0,0l-3.574-6.19
|
||||
c-0.014-0.023-0.037-0.042-0.064-0.05c-0.026-0.007-0.056-0.002-0.08,0.011c-1.542,0.89-2.831,2.168-3.735,3.699
|
||||
C5.979,12.376,5.46,14.162,5.46,16.07c0,0.028,0.011,0.055,0.031,0.074c0.02,0.021,0.046,0.031,0.074,0.031l7.147-0.014
|
||||
C12.771,16.162,12.818,16.115,12.818,16.058z M13.924,14.975c-0.199,0.333-0.302,0.715-0.302,1.099c0,0.119,0.01,0.239,0.03,0.357
|
||||
c0.083,0.486,0.337,0.934,0.71,1.256c0.378,0.327,0.865,0.513,1.365,0.52l0,0c0.01,0,0.02,0,0.031,0c0.501,0,0.991-0.178,1.375-0.5
|
||||
c0.377-0.316,0.637-0.761,0.727-1.245c0.023-0.129,0.036-0.259,0.036-0.388c0-0.374-0.098-0.747-0.287-1.073
|
||||
c-0.245-0.424-0.634-0.755-1.092-0.929c-0.243-0.092-0.5-0.138-0.758-0.138c-0.248,0-0.496,0.042-0.73,0.128
|
||||
C14.568,14.229,14.175,14.555,13.924,14.975z M20.073,23.338l0.873,1.507c0.014,0.024,0.018,0.053,0.011,0.08
|
||||
s-0.025,0.05-0.049,0.064c-1.621,0.936-3.393,1.382-5.14,1.382c-1.812,0-3.599-0.479-5.167-1.385
|
||||
c-0.024-0.015-0.042-0.037-0.049-0.063c-0.007-0.028-0.003-0.057,0.011-0.081l0.904-1.566L20.073,23.338z M18.288,20.258
|
||||
l-0.926-1.596c-0.029-0.051-0.093-0.067-0.144-0.039c-0.43,0.247-0.927,0.388-1.459,0.388c-0.539,0-1.043-0.146-1.478-0.398
|
||||
c-0.024-0.015-0.053-0.019-0.08-0.011c-0.027,0.007-0.05,0.024-0.064,0.049l-0.934,1.617L18.288,20.258z M24.708,11.007
|
||||
c-0.875-1.55-2.162-2.893-3.814-3.846c-0.024-0.015-0.053-0.019-0.08-0.011c-0.027,0.008-0.05,0.024-0.064,0.05l-3.554,6.182
|
||||
c-0.029,0.05-0.012,0.114,0.039,0.145c0.438,0.254,0.804,0.618,1.062,1.056c0.257,0.436,0.404,0.944,0.404,1.488
|
||||
c0,0.001,0,0.009,0,0.02c0,0.028,0.011,0.055,0.031,0.074s0.047,0.031,0.075,0.031h7.134c0.028,0,0.055-0.012,0.075-0.031
|
||||
c0.02-0.02,0.031-0.046,0.031-0.074C26.044,14.31,25.582,12.556,24.708,11.007z"/>
|
||||
<path fill="#1F4654" d="M10.67,7.131c0.009,0,0.018,0.001,0.027,0.003c0.027,0.008,0.05,0.026,0.064,0.05l3.574,6.19l0,0l0,0h0
|
||||
c0,0.002,0.001,0.003,0.001,0.005c0.002,0.005,0.005,0.01,0.007,0.015c0,0.002,0.001,0.004,0.001,0.005
|
||||
c0.001,0.005,0.002,0.01,0.003,0.016c0,0.002,0,0.004,0,0.006c0,0.005,0,0.01,0,0.015c0,0.003-0.001,0.004-0.001,0.007
|
||||
c0,0.005-0.001,0.009-0.002,0.013c-0.001,0.003-0.002,0.005-0.003,0.008c-0.001,0.004-0.002,0.008-0.004,0.012
|
||||
c-0.001,0.003-0.003,0.005-0.004,0.007c-0.002,0.004-0.004,0.007-0.006,0.01c-0.002,0.003-0.005,0.006-0.007,0.008
|
||||
c-0.002,0.003-0.004,0.006-0.007,0.009c-0.002,0.001-0.006,0.003-0.008,0.006c-0.003,0.002-0.006,0.004-0.009,0.005
|
||||
c0,0.001,0,0.001,0,0.001l0,0c-0.44,0.252-0.809,0.615-1.067,1.052c-0.259,0.436-0.409,0.943-0.411,1.487
|
||||
c0,0.058-0.048,0.104-0.106,0.104l-7.147,0.014l0,0c-0.028,0-0.055-0.012-0.074-0.031c-0.02-0.02-0.031-0.046-0.031-0.074
|
||||
c0-1.908,0.519-3.694,1.422-5.227c0.904-1.531,2.193-2.81,3.735-3.699C10.633,7.136,10.651,7.131,10.67,7.131 M20.841,7.146
|
||||
c0.018,0,0.037,0.005,0.053,0.015c1.652,0.953,2.939,2.296,3.814,3.846c0.875,1.549,1.336,3.303,1.336,5.083
|
||||
c0,0.028-0.011,0.055-0.031,0.074c-0.02,0.02-0.047,0.031-0.075,0.031h-7.134c-0.027,0-0.055-0.012-0.075-0.031
|
||||
s-0.031-0.046-0.031-0.074c0-0.011,0-0.019,0-0.02c0-0.544-0.147-1.053-0.404-1.488c-0.257-0.438-0.624-0.802-1.062-1.056
|
||||
c-0.05-0.03-0.067-0.095-0.039-0.145L20.749,7.2c0.014-0.025,0.037-0.042,0.064-0.05C20.823,7.148,20.832,7.146,20.841,7.146
|
||||
M15.758,13.934c0.258,0,0.516,0.046,0.758,0.138c0.458,0.174,0.847,0.505,1.092,0.929c0.189,0.326,0.287,0.699,0.287,1.073
|
||||
c0,0.129-0.012,0.259-0.036,0.388c-0.09,0.484-0.35,0.929-0.727,1.245c-0.383,0.322-0.874,0.5-1.375,0.5c-0.011,0-0.021,0-0.031,0
|
||||
l0,0c-0.5-0.007-0.987-0.192-1.365-0.52c-0.373-0.322-0.627-0.77-0.71-1.256c-0.021-0.118-0.03-0.238-0.03-0.357
|
||||
c0-0.384,0.103-0.766,0.302-1.099c0.251-0.42,0.645-0.746,1.104-0.913C15.263,13.976,15.511,13.934,15.758,13.934 M14.228,18.598
|
||||
c0.019,0,0.037,0.005,0.053,0.015c0.435,0.253,0.939,0.398,1.478,0.398c0.532,0,1.029-0.141,1.459-0.388
|
||||
c0.017-0.009,0.035-0.014,0.052-0.014c0.037,0,0.072,0.019,0.092,0.053l0.926,1.596l-5.085,0.01l0.934-1.617
|
||||
c0.014-0.024,0.037-0.042,0.064-0.049C14.209,18.599,14.219,18.598,14.228,18.598 M11.466,23.275l8.607,0.063l0.873,1.507
|
||||
c0.014,0.024,0.018,0.053,0.011,0.08s-0.025,0.05-0.049,0.064c-1.621,0.936-3.393,1.382-5.14,1.382
|
||||
c-1.812,0-3.599-0.479-5.167-1.385c-0.024-0.015-0.042-0.037-0.049-0.063c-0.007-0.028-0.003-0.057,0.011-0.081L11.466,23.275
|
||||
M10.67,6.966c-0.048,0-0.094,0.013-0.135,0.037c-1.564,0.902-2.875,2.202-3.793,3.758c-0.465,0.787-0.824,1.632-1.067,2.512
|
||||
c-0.251,0.907-0.378,1.849-0.378,2.798c0,0.071,0.029,0.14,0.08,0.19s0.119,0.079,0.19,0.079l0,0h0l7.147-0.014
|
||||
c0.148,0,0.269-0.12,0.27-0.269c0.002-0.495,0.136-0.98,0.388-1.403c0.242-0.407,0.585-0.747,0.994-0.985l0,0l0.015-0.009
|
||||
c0,0,0,0,0.001,0l0.017-0.01l0,0l0.033-0.019l0.005-0.015c0.002-0.003,0.005-0.005,0.006-0.008c0.004-0.004,0.01-0.01,0.017-0.019
|
||||
l0-0.001l0,0c0.007-0.01,0.012-0.019,0.016-0.023c0.002-0.005,0.007-0.012,0.012-0.021c0.005-0.011,0.008-0.021,0.011-0.026
|
||||
c0.002-0.004,0.005-0.012,0.007-0.022c0.004-0.012,0.005-0.022,0.006-0.029c0.001-0.005,0.002-0.012,0.003-0.02
|
||||
c0.001-0.015,0.001-0.025,0-0.033c0-0.006,0-0.012-0.001-0.02v-0.001l0,0c-0.002-0.014-0.004-0.024-0.007-0.034
|
||||
c0-0.005-0.002-0.011-0.005-0.019l0,0v-0.019l-0.017-0.024L14.45,13.21h-0.02l-3.527-6.108c-0.036-0.062-0.096-0.107-0.164-0.126
|
||||
C10.717,6.97,10.693,6.966,10.67,6.966L10.67,6.966z M20.841,6.982c-0.023,0-0.047,0.003-0.07,0.01
|
||||
c-0.069,0.019-0.128,0.063-0.164,0.126l-3.554,6.183c-0.074,0.127-0.029,0.293,0.099,0.367c0.413,0.239,0.76,0.585,1.002,0.997
|
||||
c0.25,0.424,0.381,0.909,0.381,1.403v0.001c0,0.003,0,0.011,0,0.021c0,0.07,0.029,0.141,0.079,0.19
|
||||
c0.05,0.051,0.119,0.079,0.19,0.079h7.134c0.071,0,0.141-0.029,0.191-0.079s0.079-0.12,0.079-0.19c0-1.806-0.47-3.592-1.358-5.164
|
||||
c-0.449-0.797-1.001-1.53-1.642-2.181c-0.66-0.671-1.411-1.251-2.233-1.727C20.935,6.995,20.888,6.982,20.841,6.982L20.841,6.982z
|
||||
M15.758,13.77L15.758,13.77L15.758,13.77c-0.271,0-0.535,0.046-0.786,0.138c-0.496,0.18-0.918,0.529-1.19,0.983
|
||||
c-0.212,0.355-0.325,0.764-0.325,1.183c0,0.129,0.011,0.259,0.032,0.385c0.089,0.523,0.361,1.004,0.765,1.354
|
||||
c0.408,0.353,0.93,0.551,1.47,0.56h0.001h0c0.011,0,0.021,0,0.032,0c0.542,0,1.066-0.192,1.48-0.539
|
||||
c0.408-0.343,0.686-0.82,0.783-1.342c0.025-0.136,0.038-0.277,0.038-0.417c0-0.407-0.107-0.807-0.309-1.156
|
||||
c-0.265-0.457-0.683-0.813-1.175-1C16.315,13.819,16.041,13.77,15.758,13.77L15.758,13.77z M14.228,18.434
|
||||
c-0.023,0-0.047,0.003-0.069,0.009c-0.07,0.019-0.128,0.063-0.165,0.126l-0.933,1.616l-0.143,0.247h0.285l5.084-0.01h0.285
|
||||
l-0.143-0.246l-0.926-1.597c-0.048-0.082-0.138-0.134-0.234-0.134c-0.046,0-0.093,0.013-0.134,0.035
|
||||
c-0.418,0.239-0.894,0.366-1.378,0.366c-0.491,0-0.973-0.131-1.395-0.377C14.322,18.446,14.275,18.434,14.228,18.434L14.228,18.434
|
||||
z M11.372,23.11l-0.048,0.083L10.42,24.76c-0.036,0.062-0.045,0.136-0.027,0.205c0.019,0.068,0.064,0.128,0.126,0.163
|
||||
c1.594,0.921,3.409,1.407,5.25,1.407c0.898,0,1.793-0.116,2.659-0.346c0.894-0.236,1.755-0.592,2.563-1.059
|
||||
c0.063-0.036,0.107-0.094,0.125-0.164c0.019-0.069,0.009-0.142-0.027-0.205l-0.874-1.506l-0.047-0.081l-0.093-0.001l-8.607-0.063
|
||||
L11.372,23.11L11.372,23.11z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#1D536C" d="M22.25,13.139h-0.48v-0.341h0.345c0.237,0,0.429-0.192,0.429-0.428v-1.037
|
||||
c0-0.236-0.192-0.429-0.429-0.429h-0.345v-0.176h0.398c0.237,0,0.429-0.191,0.429-0.429V9.21c0-0.237-0.192-0.429-0.429-0.429
|
||||
h-2.064c-0.112,0-0.214,0.044-0.291,0.114c-0.079-0.072-0.182-0.114-0.291-0.114h-1.162c-0.104,0-0.201,0.037-0.276,0.101
|
||||
c-0.074-0.063-0.171-0.101-0.275-0.101h-1.238c-0.174,0-0.323,0.104-0.391,0.252c-0.067-0.148-0.216-0.252-0.39-0.252H14.55
|
||||
c-0.063,0-0.124,0.015-0.178,0.039c-0.054-0.024-0.114-0.039-0.177-0.039h-1.238c-0.174,0-0.323,0.104-0.391,0.252
|
||||
c-0.067-0.148-0.216-0.252-0.39-0.252h-1.035c-0.143,0-0.27,0.07-0.348,0.178c-0.078-0.109-0.206-0.178-0.347-0.178H9.411
|
||||
c-0.237,0-0.429,0.191-0.429,0.429v5.447c0,0.237,0.192,0.429,0.429,0.429h1.035c0.128,0,0.244-0.057,0.322-0.146
|
||||
c0.079,0.091,0.195,0.146,0.322,0.146h1.085c0.237,0,0.429-0.191,0.429-0.429v-0.723c0.043,0.167,0.113,0.328,0.209,0.482
|
||||
c0.15,0.24,0.373,0.435,0.662,0.577c0.276,0.137,0.593,0.206,0.943,0.206c0.32,0,0.608-0.06,0.854-0.178
|
||||
c0.26-0.126,0.472-0.312,0.63-0.552c0.112-0.171,0.191-0.342,0.238-0.514v0.7c0,0.237,0.192,0.429,0.429,0.429h1.238
|
||||
c0.094,0,0.18-0.03,0.251-0.081c0.07,0.051,0.157,0.081,0.25,0.081h1.28c0.094,0,0.183-0.031,0.256-0.086
|
||||
c0.072,0.054,0.162,0.086,0.258,0.086h2.147c0.237,0,0.429-0.191,0.429-0.429v-1.09C22.678,13.33,22.486,13.139,22.25,13.139z
|
||||
M12.176,14.657H11.09l-0.644-2.477v2.477H9.411V9.21h1.035l0.694,2.453V9.21h1.035V14.657z M15.789,12.851
|
||||
c0,0.412-0.012,0.703-0.036,0.87s-0.093,0.338-0.208,0.515c-0.116,0.176-0.268,0.309-0.458,0.4
|
||||
c-0.189,0.091-0.412,0.136-0.669,0.136c-0.285,0-0.536-0.054-0.753-0.161c-0.218-0.107-0.38-0.248-0.488-0.421
|
||||
c-0.107-0.173-0.171-0.354-0.191-0.546c-0.02-0.192-0.029-0.596-0.029-1.21V9.21h1.238v4.085c0,0.237,0.011,0.39,0.034,0.456
|
||||
c0.022,0.066,0.068,0.099,0.137,0.099c0.078,0,0.129-0.036,0.151-0.108c0.022-0.073,0.034-0.245,0.034-0.518V9.21h1.238V12.851z
|
||||
M18.309,14.657l-0.501-2.335v2.335h-1.238V9.21h1.238v2.116l0.551-2.116h1.162l-0.71,2.459l0.778,2.988H18.309z M22.25,14.657
|
||||
h-2.147V9.21h2.064v1.09h-0.826v1.033h0.773v1.037h-0.773v1.197h0.909V14.657z"/>
|
||||
<polygon fill="#F0EFEF" points="11.141,11.663 10.446,9.21 9.411,9.21 9.411,14.657 10.446,14.657 10.446,12.181 11.09,14.657
|
||||
12.176,14.657 12.176,9.21 11.141,9.21 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#F0EFEF" d="M14.55,13.224c0,0.272-0.011,0.444-0.034,0.518c-0.022,0.072-0.073,0.108-0.151,0.108
|
||||
c-0.069,0-0.115-0.032-0.137-0.099c-0.023-0.066-0.034-0.219-0.034-0.456V9.21h-1.238v3.224c0,0.614,0.01,1.018,0.029,1.21
|
||||
c0.02,0.191,0.083,0.373,0.191,0.546c0.108,0.173,0.271,0.313,0.488,0.421c0.217,0.107,0.468,0.161,0.753,0.161
|
||||
c0.257,0,0.48-0.045,0.669-0.136c0.189-0.092,0.342-0.225,0.458-0.4c0.115-0.177,0.185-0.348,0.208-0.515s0.036-0.458,0.036-0.87
|
||||
V9.21H14.55V13.224z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#F0EFEF" points="19.521,9.21 18.359,9.21 17.808,11.326 17.808,9.21 16.569,9.21 16.569,14.657 17.808,14.657
|
||||
17.808,12.322 18.309,14.657 19.588,14.657 18.811,11.669 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#F0EFEF" points="21.341,13.567 21.341,12.37 22.114,12.37 22.114,11.333 21.341,11.333 21.341,10.3 22.167,10.3
|
||||
22.167,9.21 20.103,9.21 20.103,14.657 22.25,14.657 22.25,13.567 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#010101" cx="8.699" cy="21.521" r="0.107"/>
|
||||
<path fill="#1D4654" d="M8.699,21.771c-0.138,0-0.25-0.111-0.25-0.249c0-0.139,0.112-0.251,0.25-0.251
|
||||
c0.138,0,0.25,0.112,0.25,0.251C8.949,21.659,8.837,21.771,8.699,21.771z M8.699,21.486c-0.02,0-0.036,0.016-0.036,0.035
|
||||
c0,0.019,0.016,0.034,0.036,0.034s0.035-0.016,0.035-0.034C8.734,21.502,8.719,21.486,8.699,21.486z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M10.958,21.1c-0.188,0-0.346,0.058-0.474,0.172c-0.128,0.115-0.207,0.263-0.238,0.441
|
||||
c-0.033,0.193-0.002,0.343,0.091,0.452c0.093,0.108,0.23,0.163,0.409,0.163c0.146,0,0.276-0.037,0.39-0.111
|
||||
c0.113-0.074,0.192-0.183,0.236-0.325l-0.304-0.017c-0.055,0.149-0.147,0.226-0.279,0.226c-0.081,0-0.139-0.027-0.175-0.08
|
||||
c-0.036-0.054-0.041-0.154-0.016-0.305c0.044-0.259,0.149-0.388,0.314-0.388c0.145,0,0.205,0.084,0.181,0.252l0.335-0.019
|
||||
C11.439,21.254,11.282,21.1,10.958,21.1L10.958,21.1z"/>
|
||||
<path fill="#1D4654" d="M10.746,22.472c-0.222,0-0.396-0.072-0.517-0.213c-0.122-0.143-0.164-0.334-0.124-0.569
|
||||
c0.036-0.212,0.131-0.388,0.283-0.524c0.154-0.139,0.346-0.208,0.569-0.208c0.207,0,0.365,0.056,0.471,0.166
|
||||
c0.102,0.104,0.149,0.255,0.143,0.443c-0.003,0.074-0.062,0.134-0.135,0.138l-0.335,0.019c-0.043,0.002-0.084-0.015-0.113-0.046
|
||||
c-0.029-0.032-0.042-0.074-0.036-0.117c0.008-0.055,0.001-0.078-0.001-0.084c-0.005-0.002-0.017-0.005-0.038-0.005
|
||||
c-0.031,0-0.128,0-0.173,0.27c-0.026,0.149-0.009,0.196-0.006,0.201c0.003,0.005,0.014,0.016,0.056,0.016
|
||||
c0.034,0,0.097,0,0.145-0.131c0.021-0.059,0.079-0.097,0.142-0.094l0.305,0.017c0.043,0.002,0.084,0.025,0.109,0.061
|
||||
c0.025,0.037,0.033,0.082,0.019,0.125c-0.054,0.174-0.153,0.31-0.294,0.402C11.077,22.426,10.92,22.472,10.746,22.472z
|
||||
M10.55,21.405c-0.087,0.089-0.141,0.198-0.164,0.332c-0.025,0.15-0.006,0.259,0.059,0.335c0.022,0.025,0.047,0.046,0.077,0.063
|
||||
c-0.01-0.012-0.019-0.022-0.027-0.034c-0.059-0.087-0.07-0.217-0.038-0.409C10.477,21.576,10.507,21.481,10.55,21.405z
|
||||
M11.154,21.275c0.004,0.004,0.008,0.008,0.011,0.012c0.034,0.039,0.056,0.087,0.067,0.142l0.042-0.002
|
||||
c-0.01-0.045-0.028-0.08-0.053-0.106C11.205,21.302,11.182,21.287,11.154,21.275z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#010101" points="12.754,21.118 11.787,21.118 11.584,22.31 12.551,22.31 12.591,22.074 11.947,22.074
|
||||
11.991,21.814 12.498,21.814 12.536,21.59 12.029,21.59 12.071,21.345 12.715,21.345 "/>
|
||||
<path fill="#1D4654" d="M12.551,22.453h-0.966c-0.042,0-0.082-0.019-0.109-0.051c-0.027-0.032-0.039-0.074-0.031-0.116
|
||||
l0.203-1.191c0.012-0.068,0.071-0.119,0.141-0.119h0.967c0.042,0,0.082,0.019,0.109,0.051c0.027,0.031,0.039,0.074,0.031,0.116
|
||||
l-0.039,0.226c-0.011,0.069-0.071,0.119-0.141,0.119h-0.079c0.003,0.004,0.006,0.007,0.009,0.01
|
||||
c0.027,0.032,0.039,0.075,0.032,0.116l-0.038,0.226c-0.007,0.038-0.029,0.071-0.06,0.093h0.012c0.042,0,0.082,0.019,0.109,0.051
|
||||
s0.039,0.074,0.032,0.116l-0.04,0.235C12.68,22.402,12.621,22.453,12.551,22.453z M11.753,22.167h0.085c0,0,0,0,0-0.001
|
||||
c-0.027-0.032-0.039-0.074-0.032-0.115l0.044-0.261c0.007-0.045,0.036-0.082,0.075-0.103c-0.001-0.002-0.003-0.004-0.005-0.006
|
||||
c-0.027-0.032-0.039-0.074-0.031-0.116l0.042-0.245c0.003-0.021,0.013-0.042,0.025-0.06h-0.047L11.753,22.167z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M14.014,21.374c-0.05-0.089-0.113-0.153-0.189-0.194c-0.075-0.041-0.198-0.062-0.366-0.062h-0.413
|
||||
l-0.203,1.191h0.465c0.201,0,0.368-0.057,0.501-0.171c0.134-0.114,0.215-0.257,0.244-0.428
|
||||
C14.078,21.575,14.063,21.463,14.014,21.374z M13.729,21.704c-0.018,0.103-0.061,0.192-0.13,0.268
|
||||
c-0.069,0.076-0.161,0.113-0.276,0.113h-0.131l0.127-0.747h0.134c0.066,0,0.121,0.011,0.165,0.036
|
||||
c0.044,0.024,0.076,0.068,0.098,0.13C13.737,21.564,13.742,21.632,13.729,21.704z"/>
|
||||
<path fill="#1D4654" d="M13.309,22.453h-0.465c-0.042,0-0.083-0.019-0.109-0.051s-0.039-0.074-0.032-0.116l0.203-1.191
|
||||
c0.012-0.068,0.071-0.119,0.141-0.119h0.413c0.194,0,0.336,0.025,0.434,0.079c0.099,0.053,0.181,0.138,0.245,0.249
|
||||
c0.067,0.118,0.086,0.263,0.058,0.432c-0.035,0.203-0.133,0.376-0.292,0.512C13.744,22.384,13.543,22.453,13.309,22.453z
|
||||
M13.012,22.167h0.063c-0.021-0.03-0.03-0.068-0.023-0.105l0.127-0.748c0.003-0.02,0.01-0.037,0.02-0.053h-0.033L13.012,22.167z
|
||||
M13.764,21.31c0.037,0.039,0.066,0.088,0.086,0.146c0.03,0.085,0.037,0.176,0.02,0.272c-0.015,0.087-0.045,0.168-0.09,0.239
|
||||
c0.071-0.08,0.115-0.172,0.133-0.28c0.017-0.103,0.009-0.184-0.024-0.242C13.854,21.382,13.813,21.338,13.764,21.31z
|
||||
M13.44,21.479l-0.078,0.461c0.055-0.006,0.098-0.027,0.132-0.064c0.05-0.057,0.082-0.12,0.095-0.195
|
||||
c0.008-0.049,0.005-0.091-0.008-0.13c-0.005-0.016-0.017-0.044-0.033-0.053c-0.021-0.012-0.053-0.019-0.094-0.019H13.44z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M15.083,21.118h-0.367l-0.637,1.191h0.278l0.127-0.245h0.438l0.042,0.245h0.34L15.083,21.118z
|
||||
M14.597,21.845l0.216-0.418l0.071,0.418H14.597z"/>
|
||||
<path fill="#1D4654" d="M15.303,22.453h-0.34c-0.07,0-0.129-0.051-0.141-0.119L14.8,22.208h-0.23l-0.086,0.168
|
||||
c-0.024,0.047-0.074,0.077-0.127,0.077h-0.278c-0.05,0-0.097-0.027-0.123-0.069c-0.025-0.044-0.027-0.097-0.003-0.142l0.637-1.191
|
||||
c0.025-0.046,0.073-0.075,0.126-0.075h0.367c0.068,0,0.128,0.049,0.141,0.116l0.22,1.192c0.008,0.042-0.003,0.084-0.03,0.117
|
||||
C15.386,22.435,15.346,22.453,15.303,22.453z M15.083,22.167h0.048l-0.167-0.906h-0.163l-0.013,0.024
|
||||
c0.015-0.003,0.031-0.003,0.046,0c0.061,0.01,0.109,0.057,0.119,0.117l0.071,0.418c0.007,0.042-0.005,0.085-0.032,0.116
|
||||
c-0.001,0.001-0.002,0.002-0.003,0.003c0.037,0.021,0.064,0.057,0.072,0.102L15.083,22.167z M14.463,21.895l-0.018,0.032
|
||||
c0.01-0.002,0.021-0.004,0.032-0.005c-0.001-0.001-0.002-0.002-0.002-0.003C14.47,21.911,14.466,21.902,14.463,21.895z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.751,21.275c-0.034-0.061-0.082-0.102-0.145-0.123
|
||||
c-0.063-0.023-0.148-0.034-0.258-0.034h-0.595l-0.202,1.191h0.318l0.081-0.472h0.227l0.127,0.472h0.35l-0.16-0.526
|
||||
c0.167-0.063,0.263-0.165,0.288-0.308C16.795,21.401,16.784,21.335,16.751,21.275z M16.455,21.477
|
||||
c-0.006,0.035-0.022,0.066-0.05,0.094c-0.027,0.026-0.055,0.044-0.085,0.053c-0.03,0.008-0.077,0.011-0.141,0.011h-0.194
|
||||
l0.051-0.304h0.188c0.073,0,0.122,0.003,0.147,0.009c0.025,0.007,0.047,0.022,0.065,0.049S16.46,21.444,16.455,21.477z"/>
|
||||
<path fill="#1D4654" d="M16.655,22.453h-0.35c-0.064,0-0.121-0.044-0.138-0.105l-0.097-0.361l-0.059,0.348
|
||||
c-0.012,0.068-0.072,0.119-0.142,0.119h-0.318c-0.042,0-0.082-0.019-0.109-0.051s-0.039-0.074-0.032-0.116l0.204-1.191
|
||||
c0.012-0.068,0.071-0.119,0.14-0.119h0.595c0.127,0,0.228,0.013,0.307,0.041c0.096,0.035,0.17,0.098,0.221,0.188
|
||||
c0.05,0.089,0.065,0.188,0.047,0.294c-0.019,0.112-0.08,0.257-0.256,0.359l0.125,0.41c0.013,0.043,0.005,0.09-0.022,0.127
|
||||
C16.743,22.432,16.7,22.453,16.655,22.453z M16.414,22.167h0.048l-0.104-0.343c-0.006-0.021-0.008-0.043-0.004-0.063
|
||||
c-0.015,0.004-0.032,0.008-0.05,0.01c0.005,0.01,0.009,0.02,0.012,0.029L16.414,22.167z M15.719,22.167h0.03l0.06-0.354
|
||||
c0.007-0.04,0.03-0.072,0.061-0.094c-0.023-0.031-0.033-0.071-0.026-0.109l0.052-0.304c0.003-0.017,0.009-0.032,0.016-0.046
|
||||
h-0.038L15.719,22.167z M16.531,21.278c0.008,0.009,0.016,0.018,0.023,0.028c0.04,0.058,0.054,0.124,0.042,0.194
|
||||
c-0.004,0.026-0.012,0.052-0.023,0.075c0.048-0.043,0.063-0.09,0.069-0.125c0.007-0.042,0.002-0.075-0.016-0.106
|
||||
c-0.017-0.03-0.037-0.048-0.067-0.059C16.551,21.283,16.542,21.28,16.531,21.278z M16.154,21.491h0.025
|
||||
c0.072,0,0.098-0.005,0.104-0.007c0.003-0.001,0.008-0.004,0.015-0.01c-0.017-0.001-0.042-0.002-0.075-0.002h-0.066L16.154,21.491
|
||||
z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M18.344,21.1c-0.188,0-0.345,0.058-0.473,0.172c-0.128,0.115-0.208,0.263-0.238,0.441
|
||||
c-0.032,0.193-0.002,0.343,0.092,0.452c0.093,0.108,0.229,0.163,0.409,0.163c0.146,0,0.276-0.037,0.389-0.111
|
||||
c0.114-0.074,0.192-0.183,0.236-0.325l-0.304-0.017c-0.055,0.149-0.148,0.226-0.279,0.226c-0.081,0-0.14-0.027-0.176-0.08
|
||||
c-0.036-0.054-0.041-0.154-0.015-0.305c0.044-0.259,0.148-0.388,0.314-0.388c0.145,0,0.205,0.084,0.181,0.252l0.335-0.019
|
||||
C18.826,21.254,18.669,21.1,18.344,21.1L18.344,21.1z"/>
|
||||
<path fill="#1D4654" d="M18.133,22.472c-0.222,0-0.396-0.072-0.518-0.213c-0.122-0.143-0.164-0.334-0.124-0.569
|
||||
c0.036-0.212,0.131-0.388,0.283-0.524c0.155-0.139,0.346-0.208,0.569-0.208c0.207,0,0.365,0.056,0.471,0.166
|
||||
c0.102,0.104,0.149,0.255,0.143,0.443c-0.003,0.074-0.061,0.134-0.135,0.138l-0.335,0.019c-0.043,0.002-0.084-0.015-0.113-0.046
|
||||
c-0.029-0.032-0.042-0.074-0.036-0.117c0.008-0.055,0.001-0.078-0.001-0.084c-0.005-0.002-0.017-0.005-0.039-0.005
|
||||
c-0.031,0-0.127,0-0.173,0.27c-0.026,0.149-0.008,0.196-0.006,0.201c0.004,0.005,0.014,0.016,0.057,0.016
|
||||
c0.034,0,0.097,0,0.144-0.131c0.022-0.059,0.08-0.097,0.142-0.094l0.305,0.017c0.044,0.002,0.084,0.025,0.109,0.061
|
||||
c0.025,0.037,0.032,0.082,0.02,0.125c-0.054,0.174-0.153,0.31-0.295,0.402C18.464,22.426,18.307,22.472,18.133,22.472z
|
||||
M17.937,21.405c-0.087,0.089-0.141,0.198-0.164,0.332c-0.025,0.15-0.006,0.259,0.059,0.335c0.022,0.025,0.047,0.046,0.077,0.063
|
||||
c-0.011-0.012-0.02-0.022-0.027-0.034c-0.059-0.087-0.071-0.217-0.039-0.409C17.863,21.576,17.894,21.481,17.937,21.405z
|
||||
M18.541,21.275c0.004,0.004,0.007,0.008,0.011,0.012c0.034,0.039,0.056,0.087,0.067,0.142l0.042-0.002
|
||||
c-0.01-0.045-0.028-0.08-0.053-0.106C18.591,21.302,18.568,21.287,18.541,21.275z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M20.171,21.275c-0.033-0.061-0.082-0.102-0.144-0.123c-0.063-0.023-0.148-0.034-0.259-0.034h-0.595
|
||||
l-0.203,1.191h0.319l0.08-0.472h0.227l0.127,0.472h0.35l-0.16-0.526c0.167-0.063,0.263-0.165,0.287-0.308
|
||||
C20.215,21.401,20.205,21.335,20.171,21.275z M19.875,21.477c-0.006,0.035-0.022,0.066-0.049,0.094
|
||||
c-0.027,0.026-0.056,0.044-0.085,0.053c-0.03,0.008-0.077,0.011-0.141,0.011h-0.194l0.052-0.304h0.188
|
||||
c0.073,0,0.122,0.003,0.147,0.009c0.025,0.007,0.047,0.022,0.065,0.049C19.875,21.414,19.881,21.444,19.875,21.477z"/>
|
||||
<path fill="#1D4654" d="M20.075,22.453h-0.35c-0.064,0-0.121-0.044-0.138-0.105l-0.097-0.361l-0.059,0.348
|
||||
c-0.012,0.068-0.071,0.119-0.141,0.119h-0.319c-0.042,0-0.082-0.019-0.109-0.051c-0.027-0.032-0.039-0.074-0.032-0.116
|
||||
l0.203-1.191c0.012-0.068,0.071-0.119,0.141-0.119h0.595c0.128,0,0.228,0.013,0.307,0.041c0.096,0.035,0.17,0.098,0.221,0.188
|
||||
c0.05,0.089,0.066,0.188,0.048,0.294c-0.02,0.112-0.081,0.257-0.256,0.359l0.124,0.41c0.013,0.043,0.005,0.09-0.021,0.127
|
||||
C20.163,22.432,20.121,22.453,20.075,22.453z M19.835,22.167h0.048l-0.104-0.343c-0.007-0.021-0.008-0.043-0.004-0.063
|
||||
c-0.015,0.004-0.032,0.008-0.051,0.01c0.005,0.01,0.009,0.02,0.012,0.029L19.835,22.167z M19.14,22.167h0.03l0.06-0.354
|
||||
c0.007-0.04,0.029-0.072,0.061-0.094c-0.023-0.031-0.033-0.071-0.026-0.109l0.052-0.304c0.003-0.017,0.008-0.032,0.016-0.046
|
||||
h-0.038L19.14,22.167z M19.952,21.278c0.008,0.009,0.015,0.018,0.022,0.028c0.04,0.058,0.054,0.124,0.042,0.194
|
||||
c-0.004,0.026-0.012,0.052-0.023,0.075c0.048-0.043,0.063-0.09,0.069-0.125c0.007-0.042,0.002-0.075-0.016-0.106
|
||||
c-0.016-0.03-0.037-0.048-0.067-0.059C19.972,21.283,19.963,21.28,19.952,21.278z M19.575,21.491H19.6
|
||||
c0.071,0,0.098-0.005,0.104-0.007c0.003-0.001,0.008-0.004,0.015-0.01c-0.017-0.001-0.041-0.002-0.074-0.002h-0.067L19.575,21.491
|
||||
z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#010101" points="21.577,21.118 20.61,21.118 20.407,22.31 21.374,22.31 21.414,22.074 20.77,22.074 20.814,21.814
|
||||
21.32,21.814 21.358,21.59 20.852,21.59 20.894,21.345 21.538,21.345 "/>
|
||||
<path fill="#1D4654" d="M21.374,22.453h-0.966c-0.042,0-0.082-0.019-0.109-0.051s-0.039-0.074-0.032-0.116l0.203-1.191
|
||||
c0.012-0.068,0.071-0.119,0.141-0.119h0.967c0.042,0,0.082,0.019,0.109,0.051c0.027,0.031,0.039,0.074,0.032,0.116l-0.039,0.226
|
||||
c-0.012,0.069-0.071,0.119-0.141,0.119h-0.079c0.003,0.004,0.006,0.007,0.009,0.01c0.027,0.032,0.039,0.075,0.032,0.116
|
||||
l-0.039,0.226c-0.006,0.038-0.029,0.071-0.06,0.093h0.012c0.042,0,0.082,0.019,0.109,0.051c0.027,0.032,0.039,0.074,0.031,0.116
|
||||
l-0.04,0.235C21.503,22.402,21.443,22.453,21.374,22.453z M20.576,22.167h0.085c0,0,0,0-0.001-0.001
|
||||
c-0.027-0.032-0.039-0.074-0.032-0.115l0.044-0.261c0.008-0.045,0.036-0.082,0.075-0.103c-0.001-0.002-0.003-0.004-0.005-0.006
|
||||
c-0.027-0.032-0.039-0.074-0.032-0.116l0.042-0.245c0.004-0.021,0.013-0.042,0.026-0.06H20.73L20.576,22.167z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#010101" points="22.835,21.118 21.868,21.118 21.666,22.31 22.632,22.31 22.672,22.074 22.028,22.074
|
||||
22.072,21.814 22.579,21.814 22.617,21.59 22.11,21.59 22.152,21.345 22.797,21.345 "/>
|
||||
<path fill="#1D4654" d="M22.632,22.453h-0.967c-0.042,0-0.082-0.019-0.109-0.051c-0.027-0.032-0.039-0.074-0.032-0.116
|
||||
l0.203-1.191c0.012-0.068,0.071-0.119,0.141-0.119h0.967c0.042,0,0.082,0.019,0.109,0.051c0.027,0.031,0.039,0.074,0.032,0.116
|
||||
l-0.039,0.226c-0.012,0.069-0.072,0.119-0.141,0.119h-0.08c0.003,0.004,0.006,0.007,0.009,0.01
|
||||
c0.027,0.032,0.039,0.075,0.032,0.116l-0.039,0.226c-0.006,0.038-0.028,0.071-0.059,0.093h0.012c0.042,0,0.082,0.019,0.109,0.051
|
||||
c0.027,0.032,0.039,0.074,0.031,0.116l-0.041,0.235C22.761,22.402,22.702,22.453,22.632,22.453z M21.834,22.167h0.085
|
||||
c0,0,0,0,0-0.001c-0.027-0.032-0.039-0.074-0.032-0.115l0.044-0.261c0.008-0.045,0.037-0.082,0.075-0.103
|
||||
c-0.002-0.002-0.003-0.004-0.005-0.006c-0.027-0.032-0.039-0.074-0.031-0.116l0.042-0.245c0.004-0.021,0.013-0.042,0.025-0.06
|
||||
h-0.047L21.834,22.167z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon fill="#010101" points="23.127,21.118 22.924,22.31 23.235,22.31 23.282,22.036 23.513,21.792 23.695,22.31
|
||||
24.044,22.31 23.769,21.544 24.166,21.118 23.863,21.118 23.343,21.679 23.438,21.118 "/>
|
||||
<path fill="#1D4654" d="M24.044,22.453L24.044,22.453h-0.349c-0.061,0-0.115-0.038-0.135-0.096l-0.104-0.297l-0.041,0.042
|
||||
l-0.04,0.231c-0.011,0.068-0.071,0.119-0.141,0.119h-0.312c-0.042,0-0.082-0.019-0.109-0.051
|
||||
c-0.027-0.032-0.039-0.074-0.032-0.116l0.203-1.191c0.012-0.068,0.071-0.119,0.141-0.119h0.312c0.042,0,0.082,0.019,0.109,0.051
|
||||
c0.027,0.031,0.039,0.074,0.032,0.116l-0.015,0.088l0.194-0.21c0.027-0.028,0.065-0.045,0.105-0.045h0.303
|
||||
c0.057,0,0.108,0.033,0.131,0.086c0.022,0.052,0.013,0.112-0.026,0.153l-0.338,0.362l0.244,0.678
|
||||
c0.006,0.017,0.011,0.035,0.011,0.055C24.188,22.389,24.124,22.453,24.044,22.453z M23.796,22.167h0.045l-0.208-0.575
|
||||
c-0.001-0.005-0.002-0.009-0.004-0.014l-0.072,0.078c0.042,0.015,0.076,0.046,0.091,0.089L23.796,22.167z M23.093,22.167h0.021
|
||||
l0.026-0.154c0.004-0.027,0.018-0.054,0.037-0.074l0.119-0.125c-0.006-0.003-0.011-0.004-0.017-0.007
|
||||
c-0.057-0.028-0.088-0.09-0.078-0.153l0.067-0.393h-0.021L23.093,22.167z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M9.466,22.581c-0.271,0.245-0.976,0.266-1.419-0.273
|
||||
c0.012-0.131,0.049-0.223,0.097-0.324c0.021,0.04,0.064,0.103,0.09,0.133c0.114,0.137,0.569,0.668,1.165,0.353
|
||||
c0.2-0.105,0.293-0.419,0.34-0.551c0.01-0.028,0.021-0.023,0.021-0.001C9.75,22.048,9.725,22.347,9.466,22.581z"/>
|
||||
<path fill="#1D4654" d="M8.952,22.889c-0.389,0-0.759-0.179-1.016-0.491c-0.024-0.029-0.036-0.066-0.032-0.104
|
||||
c0.015-0.158,0.063-0.269,0.11-0.37c0.023-0.049,0.072-0.081,0.126-0.082c0.054-0.002,0.105,0.028,0.13,0.076
|
||||
C8.285,21.946,8.322,22,8.343,22.024c0.275,0.331,0.521,0.4,0.681,0.4c0.102,0,0.206-0.028,0.308-0.082
|
||||
c0.132-0.07,0.217-0.315,0.258-0.434c0.005-0.014,0.009-0.027,0.014-0.039c0.039-0.106,0.124-0.114,0.149-0.114
|
||||
c0.041,0,0.079,0.017,0.107,0.046c0.021,0.022,0.045,0.063,0.042,0.125c-0.007,0.118-0.03,0.479-0.339,0.76
|
||||
C9.42,22.815,9.197,22.889,8.952,22.889z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M9.491,20.786c0.053,0.083,0.07,0.124,0.098,0.188
|
||||
c0.039,0.084,0.006,0.063-0.022,0.019c-0.042-0.065-0.076-0.108-0.15-0.19C9.44,20.794,9.469,20.788,9.491,20.786z"/>
|
||||
<path fill="#1D4654" d="M9.604,21.175c-0.09,0-0.141-0.08-0.157-0.105c-0.035-0.056-0.063-0.092-0.135-0.171
|
||||
c-0.032-0.036-0.044-0.085-0.032-0.131c0.011-0.046,0.045-0.084,0.09-0.1c0.033-0.012,0.073-0.021,0.108-0.024
|
||||
c0.054-0.005,0.106,0.02,0.135,0.066c0.053,0.083,0.074,0.131,0.099,0.188l0.008,0.019c0.019,0.041,0.054,0.119,0.006,0.192
|
||||
C9.699,21.15,9.653,21.175,9.604,21.175z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M9.28,20.478c-0.342-0.368-0.918-0.34-1.259-0.094c-0.348,0.25-0.513,0.711-0.313,1.293
|
||||
c0.053-0.122,0.143-0.299,0.266-0.451c-0.015-0.252,0.021-0.372,0.121-0.514c0.26-0.365,0.707-0.404,0.99-0.199
|
||||
C9.153,20.494,9.247,20.483,9.28,20.478z"/>
|
||||
<path fill="#1D4654" d="M7.708,21.819c-0.002,0-0.004,0-0.005,0c-0.059-0.002-0.111-0.04-0.13-0.097
|
||||
c-0.105-0.306-0.122-0.594-0.051-0.854c0.067-0.245,0.21-0.453,0.416-0.601c0.186-0.134,0.432-0.212,0.676-0.212
|
||||
c0.304,0,0.578,0.116,0.771,0.323c0.037,0.039,0.048,0.096,0.03,0.146s-0.061,0.086-0.113,0.094
|
||||
c-0.006,0.001-0.014,0.002-0.023,0.004c-0.038,0.005-0.108,0.015-0.156,0.027c-0.042,0.012-0.086,0.003-0.122-0.022
|
||||
c-0.085-0.063-0.194-0.097-0.305-0.097c-0.189,0-0.366,0.096-0.484,0.264c-0.077,0.107-0.109,0.194-0.095,0.422
|
||||
c0.002,0.036-0.009,0.071-0.031,0.099c-0.125,0.154-0.208,0.328-0.246,0.418C7.817,21.786,7.765,21.819,7.708,21.819z
|
||||
M8.043,20.548c-0.202,0.176-0.296,0.427-0.276,0.721c0.02-0.029,0.04-0.059,0.062-0.088c-0.008-0.239,0.033-0.388,0.15-0.552
|
||||
C8,20.601,8.021,20.574,8.043,20.548z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M8.926,22.494c0.072-0.05,0.108-0.091,0.165-0.131
|
||||
c0.038-0.027,0.051-0.059-0.019-0.011c-0.063,0.044-0.11,0.078-0.193,0.123C8.891,22.483,8.912,22.492,8.926,22.494z"/>
|
||||
<path fill="#1D4654" d="M8.926,22.637c-0.006,0-0.012,0-0.018-0.001c-0.045-0.005-0.089-0.028-0.113-0.046
|
||||
c-0.04-0.028-0.061-0.075-0.058-0.125c0.004-0.049,0.032-0.093,0.075-0.116c0.066-0.035,0.106-0.063,0.157-0.099l0.022-0.015
|
||||
c0.044-0.03,0.083-0.051,0.128-0.051c0.064,0,0.12,0.041,0.139,0.102c0.013,0.041,0.02,0.12-0.084,0.193
|
||||
c-0.021,0.016-0.039,0.03-0.06,0.048c-0.029,0.025-0.061,0.053-0.107,0.085C8.983,22.628,8.955,22.637,8.926,22.637z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M9.821,20.665c-0.241-0.282-1.185-0.117-1.694,0.53
|
||||
c-0.51,0.646-0.628,1.273-0.229,1.555c0.192,0.136,0.413,0.106,0.652-0.01c-0.044-0.021-0.089-0.031-0.148-0.067
|
||||
c-0.185,0.045-0.289,0.015-0.386-0.146c-0.197-0.322,0.179-0.907,0.451-1.187c0.185-0.188,0.96-0.816,1.32-0.58
|
||||
c0.118,0.077,0.13,0.245,0.113,0.387c-0.012,0.092,0,0.092,0.021,0.005C9.957,21.007,9.948,20.813,9.821,20.665z"/>
|
||||
<path fill="#1D4654" d="M8.181,22.983c-0.134,0-0.257-0.039-0.365-0.116c-0.161-0.113-0.262-0.278-0.291-0.479
|
||||
c-0.052-0.359,0.121-0.814,0.489-1.282c0.176-0.224,0.413-0.41,0.685-0.539c0.242-0.114,0.5-0.178,0.726-0.178
|
||||
c0.228,0,0.402,0.063,0.504,0.183c0.137,0.16,0.186,0.39,0.13,0.613c-0.006,0.026-0.012,0.047-0.018,0.063
|
||||
c-0.037,0.1-0.112,0.11-0.144,0.11l0,0c-0.041,0-0.08-0.019-0.108-0.049c-0.048-0.055-0.04-0.121-0.032-0.181
|
||||
c0.016-0.126-0.003-0.22-0.049-0.251c-0.03-0.02-0.067-0.028-0.115-0.028c-0.32,0-0.856,0.417-1.025,0.59
|
||||
c-0.114,0.117-0.272,0.32-0.374,0.537c-0.097,0.208-0.117,0.377-0.057,0.476c0.055,0.09,0.089,0.096,0.131,0.096
|
||||
c0.027,0,0.06-0.005,0.101-0.015c0.036-0.009,0.074-0.002,0.106,0.017c0.026,0.015,0.048,0.024,0.075,0.034
|
||||
c0.021,0.008,0.041,0.017,0.064,0.027c0.049,0.025,0.079,0.075,0.079,0.129c0,0.055-0.032,0.104-0.08,0.128
|
||||
C8.454,22.945,8.313,22.983,8.181,22.983z M9.036,20.741c-0.277,0.088-0.578,0.266-0.797,0.542
|
||||
c-0.314,0.399-0.471,0.787-0.431,1.064c0.005,0.032,0.013,0.063,0.023,0.093c-0.034-0.163,0.001-0.361,0.105-0.583
|
||||
c0.099-0.213,0.259-0.442,0.429-0.616c0.093-0.096,0.289-0.26,0.5-0.396C8.923,20.807,8.98,20.771,9.036,20.741z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" cx="8.699" cy="21.521" r="0.107"/>
|
||||
</g>
|
||||
<path fill="#C52A29" d="M10.958,21.1c-0.188,0-0.346,0.058-0.474,0.172c-0.128,0.115-0.207,0.263-0.238,0.441
|
||||
c-0.033,0.193-0.002,0.343,0.091,0.452c0.093,0.108,0.23,0.163,0.409,0.163c0.146,0,0.276-0.037,0.39-0.111
|
||||
c0.113-0.074,0.192-0.183,0.236-0.325l-0.304-0.017c-0.055,0.149-0.147,0.226-0.279,0.226c-0.081,0-0.139-0.027-0.175-0.08
|
||||
c-0.036-0.054-0.041-0.154-0.016-0.305c0.044-0.259,0.149-0.388,0.314-0.388c0.145,0,0.205,0.084,0.181,0.252l0.335-0.019
|
||||
C11.439,21.254,11.282,21.1,10.958,21.1L10.958,21.1z"/>
|
||||
<polygon fill="#C52A29" points="12.754,21.118 11.787,21.118 11.584,22.31 12.551,22.31 12.591,22.074 11.947,22.074
|
||||
11.991,21.814 12.498,21.814 12.536,21.59 12.029,21.59 12.071,21.345 12.715,21.345 "/>
|
||||
<path fill="#C52A29" d="M14.014,21.374c-0.05-0.089-0.113-0.153-0.189-0.194c-0.075-0.041-0.198-0.062-0.366-0.062h-0.413
|
||||
l-0.203,1.191h0.465c0.201,0,0.368-0.057,0.501-0.171c0.134-0.114,0.215-0.257,0.244-0.428
|
||||
C14.078,21.575,14.063,21.463,14.014,21.374z M13.729,21.704c-0.018,0.103-0.061,0.192-0.13,0.268
|
||||
c-0.069,0.076-0.161,0.113-0.276,0.113h-0.131l0.127-0.747h0.134c0.066,0,0.121,0.011,0.165,0.036
|
||||
c0.044,0.024,0.076,0.068,0.098,0.13C13.737,21.564,13.742,21.632,13.729,21.704z"/>
|
||||
<path fill="#C52A29" d="M15.083,21.118h-0.367l-0.637,1.191h0.278l0.127-0.245h0.438l0.042,0.245h0.34L15.083,21.118z
|
||||
M14.597,21.845l0.216-0.418l0.071,0.418H14.597z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M16.751,21.275c-0.034-0.061-0.082-0.102-0.145-0.123
|
||||
c-0.063-0.023-0.148-0.034-0.258-0.034h-0.595l-0.202,1.191h0.318l0.081-0.472h0.227l0.127,0.472h0.35l-0.16-0.526
|
||||
c0.167-0.063,0.263-0.165,0.288-0.308C16.795,21.401,16.784,21.335,16.751,21.275z M16.455,21.477
|
||||
c-0.006,0.035-0.022,0.066-0.05,0.094c-0.027,0.026-0.055,0.044-0.085,0.053c-0.03,0.008-0.077,0.011-0.141,0.011h-0.194
|
||||
l0.051-0.304h0.188c0.073,0,0.122,0.003,0.147,0.009c0.025,0.007,0.047,0.022,0.065,0.049S16.46,21.444,16.455,21.477z"/>
|
||||
<path fill="#C52A29" d="M18.344,21.1c-0.188,0-0.345,0.058-0.473,0.172c-0.128,0.115-0.208,0.263-0.238,0.441
|
||||
c-0.032,0.193-0.002,0.343,0.092,0.452c0.093,0.108,0.229,0.163,0.409,0.163c0.146,0,0.276-0.037,0.389-0.111
|
||||
c0.114-0.074,0.192-0.183,0.236-0.325l-0.304-0.017c-0.055,0.149-0.148,0.226-0.279,0.226c-0.081,0-0.14-0.027-0.176-0.08
|
||||
c-0.036-0.054-0.041-0.154-0.015-0.305c0.044-0.259,0.148-0.388,0.314-0.388c0.145,0,0.205,0.084,0.181,0.252l0.335-0.019
|
||||
C18.826,21.254,18.669,21.1,18.344,21.1L18.344,21.1z"/>
|
||||
<path fill="#C52A29" d="M20.171,21.275c-0.033-0.061-0.082-0.102-0.144-0.123c-0.063-0.023-0.148-0.034-0.259-0.034h-0.595
|
||||
l-0.203,1.191h0.319l0.08-0.472h0.227l0.127,0.472h0.35l-0.16-0.526c0.167-0.063,0.263-0.165,0.287-0.308
|
||||
C20.215,21.401,20.205,21.335,20.171,21.275z M19.875,21.477c-0.006,0.035-0.022,0.066-0.049,0.094
|
||||
c-0.027,0.026-0.056,0.044-0.085,0.053c-0.03,0.008-0.077,0.011-0.141,0.011h-0.194l0.052-0.304h0.188
|
||||
c0.073,0,0.122,0.003,0.147,0.009c0.025,0.007,0.047,0.022,0.065,0.049C19.875,21.414,19.881,21.444,19.875,21.477z"/>
|
||||
<polygon fill="#C52A29" points="21.577,21.118 20.61,21.118 20.407,22.31 21.374,22.31 21.414,22.074 20.77,22.074 20.814,21.814
|
||||
21.32,21.814 21.358,21.59 20.852,21.59 20.894,21.345 21.538,21.345 "/>
|
||||
<polygon fill="#C52A29" points="22.835,21.118 21.868,21.118 21.666,22.31 22.632,22.31 22.672,22.074 22.028,22.074
|
||||
22.072,21.814 22.579,21.814 22.617,21.59 22.11,21.59 22.152,21.345 22.797,21.345 "/>
|
||||
<g>
|
||||
<polygon fill="#C52A29" points="23.127,21.118 22.924,22.31 23.235,22.31 23.282,22.036 23.513,21.792 23.695,22.31 24.044,22.31
|
||||
23.769,21.544 24.166,21.118 23.863,21.118 23.343,21.679 23.438,21.118 "/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M9.466,22.581c-0.271,0.245-0.976,0.266-1.419-0.273
|
||||
c0.012-0.131,0.049-0.223,0.097-0.324c0.021,0.04,0.064,0.103,0.09,0.133c0.114,0.137,0.569,0.668,1.165,0.353
|
||||
c0.2-0.105,0.293-0.419,0.34-0.551c0.01-0.028,0.021-0.023,0.021-0.001C9.75,22.048,9.725,22.347,9.466,22.581z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M9.491,20.786c0.053,0.083,0.07,0.124,0.098,0.188
|
||||
c0.039,0.084,0.006,0.063-0.022,0.019c-0.042-0.065-0.076-0.108-0.15-0.19C9.44,20.794,9.469,20.788,9.491,20.786z"/>
|
||||
<path fill="#C52A29" d="M9.28,20.478c-0.342-0.368-0.918-0.34-1.259-0.094c-0.348,0.25-0.513,0.711-0.313,1.293
|
||||
c0.053-0.122,0.143-0.299,0.266-0.451c-0.015-0.252,0.021-0.372,0.121-0.514c0.26-0.365,0.707-0.404,0.99-0.199
|
||||
C9.153,20.494,9.247,20.483,9.28,20.478z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M8.926,22.494c0.072-0.05,0.108-0.091,0.165-0.131
|
||||
c0.038-0.027,0.051-0.059-0.019-0.011c-0.063,0.044-0.11,0.078-0.193,0.123C8.891,22.483,8.912,22.492,8.926,22.494z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M9.821,20.665c-0.241-0.282-1.185-0.117-1.694,0.53
|
||||
c-0.51,0.646-0.628,1.273-0.229,1.555c0.192,0.136,0.413,0.106,0.652-0.01c-0.044-0.021-0.089-0.031-0.148-0.067
|
||||
c-0.185,0.045-0.289,0.015-0.386-0.146c-0.197-0.322,0.179-0.907,0.451-1.187c0.185-0.188,0.96-0.816,1.32-0.58
|
||||
c0.118,0.077,0.13,0.245,0.113,0.387c-0.012,0.092,0,0.092,0.021,0.005C9.957,21.007,9.948,20.813,9.821,20.665z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 69 KiB |
@@ -1,321 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_24_copy">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#1F2020" cx="15.9" cy="17.047" r="12.96"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_24_copy_6">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C02026" d="M4.346,20.894c1.772,5.365,6.235,7.872,11.713,7.872
|
||||
c5.479,0,10.102-2.619,11.874-7.802L4.346,20.894z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_24">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1F2020" d="M16.059,0.727c-8.487,0-15.367,6.881-15.367,15.369
|
||||
s6.88,15.369,15.367,15.369c8.488,0,15.368-6.881,15.368-15.369S24.547,0.727,16.059,0.727z M16.059,27.673
|
||||
c-6.395,0-11.577-5.184-11.577-11.578S9.664,4.517,16.059,4.517s11.578,5.184,11.578,11.578S22.453,27.673,16.059,27.673z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_24_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1F2020" d="M16.059,1.155c-8.251,0-14.939,6.689-14.939,14.94
|
||||
s6.688,14.94,14.939,14.94c8.252,0,14.939-6.689,14.939-14.94S24.311,1.155,16.059,1.155z M16.059,30.764
|
||||
c-8.102,0-14.668-6.567-14.668-14.668S7.957,1.427,16.059,1.427s14.669,6.567,14.669,14.668S24.16,30.764,16.059,30.764z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.2">
|
||||
<path fill="#010101" d="M16.217,4.068V1.61h-0.503v2.466c0.149-0.005,0.299-0.008,0.449-0.008
|
||||
C16.181,4.067,16.199,4.068,16.217,4.068z"/>
|
||||
<path fill="#010101" d="M10.745,2.554l-0.466,0.188l0.961,2.376c0.151-0.068,0.306-0.134,0.462-0.196L10.745,2.554z"/>
|
||||
<path fill="#010101" d="M8.081,3.915L7.664,4.193l1.439,2.165c0.135-0.099,0.271-0.193,0.412-0.286L8.081,3.915z"/>
|
||||
<path fill="#010101" d="M21.963,2.846L21.501,2.65l-0.952,2.243c0.156,0.061,0.311,0.125,0.464,0.193L21.963,2.846z"/>
|
||||
<path fill="#010101" d="M3.916,7.963L3.641,8.382l2.238,1.475c0.088-0.143,0.177-0.284,0.271-0.423L3.916,7.963z"/>
|
||||
<path fill="#010101" d="M24.831,7.759l1.677-1.677l-0.354-0.355l-1.678,1.677C24.597,7.52,24.716,7.639,24.831,7.759z"/>
|
||||
<path fill="#010101" d="M30.281,13.587l-0.101-0.492l-2.26,0.465c0.035,0.163,0.066,0.327,0.094,0.493L30.281,13.587z"/>
|
||||
<path fill="#010101" d="M28.182,16.502h2.358V16h-2.353c0,0.031,0,0.062,0,0.093C28.188,16.229,28.186,16.366,28.182,16.502z"/>
|
||||
<path fill="#010101" d="M2.657,10.211l-0.196,0.462l2.493,1.058c0.061-0.156,0.125-0.311,0.191-0.464L2.657,10.211z"/>
|
||||
<path fill="#010101" d="M24.232,4.193l-0.418-0.276l-1.296,1.966c0.143,0.088,0.282,0.181,0.42,0.274L24.232,4.193z"/>
|
||||
<path fill="#010101" d="M28.255,8.385l-0.277-0.418l-1.927,1.281c0.096,0.138,0.188,0.277,0.277,0.418L28.255,8.385z"/>
|
||||
<path fill="#010101" d="M29.604,10.998l-0.188-0.466l-2.174,0.878c0.064,0.154,0.127,0.31,0.186,0.467L29.604,10.998z"/>
|
||||
<path fill="#010101" d="M13.25,1.887l-0.491,0.101l0.5,2.433c0.162-0.04,0.325-0.077,0.49-0.111L13.25,1.887z"/>
|
||||
<path fill="#010101" d="M23.789,28.445l0.418-0.278L22.833,26.1c-0.139,0.093-0.28,0.183-0.424,0.271L23.789,28.445z"/>
|
||||
<path fill="#010101" d="M27.961,24.404l0.277-0.419l-2.004-1.319c-0.092,0.14-0.187,0.278-0.283,0.414L27.961,24.404z"/>
|
||||
<path fill="#010101" d="M21.187,29.747l0.466-0.188l-0.941-2.331c-0.154,0.063-0.312,0.123-0.469,0.18L21.187,29.747z"/>
|
||||
<path fill="#010101" d="M18.628,30.515l0.492-0.101l-0.523-2.542c-0.164,0.033-0.329,0.063-0.495,0.09L18.628,30.515z"/>
|
||||
<path fill="#010101" d="M29.27,22.055l0.195-0.462l-2.179-0.925c-0.063,0.155-0.131,0.308-0.2,0.46L29.27,22.055z"/>
|
||||
<path fill="#010101" d="M30.155,19.283l0.099-0.492l-2.274-0.458c-0.031,0.165-0.065,0.329-0.104,0.491L30.155,19.283z"/>
|
||||
<path fill="#010101" d="M10.119,29.458l0.462,0.196l1.03-2.427c-0.154-0.063-0.309-0.13-0.46-0.2L10.119,29.458z"/>
|
||||
<path fill="#010101" d="M2.412,21.44L2.6,21.906l2.531-1.022C5.063,20.73,5,20.576,4.939,20.419L2.412,21.44z"/>
|
||||
<path fill="#010101" d="M1.654,18.965l0.101,0.492l2.713-0.558c-0.039-0.163-0.075-0.326-0.106-0.491L1.654,18.965z"/>
|
||||
<path fill="#010101" d="M3.726,24.093l0.278,0.417l2.301-1.53c-0.096-0.138-0.188-0.276-0.279-0.417L3.726,24.093z"/>
|
||||
<path fill="#010101" d="M1.703,13.044l-0.1,0.492l2.703,0.544c0.027-0.166,0.06-0.33,0.094-0.493L1.703,13.044z"/>
|
||||
<path fill="#010101" d="M7.792,28.239l0.42,0.276l1.498-2.274c-0.142-0.09-0.28-0.183-0.419-0.279L7.792,28.239z"/>
|
||||
<path fill="#010101" d="M12.891,30.393l0.492,0.099l0.521-2.586c-0.166-0.031-0.329-0.066-0.492-0.104L12.891,30.393z"/>
|
||||
<path fill="#010101" d="M19.129,1.94l-0.493-0.099l-0.48,2.391c0.165,0.028,0.33,0.059,0.493,0.093L19.129,1.94z"/>
|
||||
<path fill="#010101" d="M7.475,24.406L5.56,26.321l0.354,0.355l1.916-1.915C7.708,24.646,7.591,24.527,7.475,24.406z"/>
|
||||
<path fill="#010101" d="M24.354,24.896l1.734,1.733l0.354-0.355l-1.729-1.728C24.597,24.665,24.478,24.782,24.354,24.896z"/>
|
||||
<path fill="#010101" d="M7.709,7.541L5.85,5.681L5.494,6.035l1.865,1.866C7.474,7.779,7.591,7.658,7.709,7.541z"/>
|
||||
<path fill="#010101" d="M4.14,16H1.417v0.502h2.729c-0.005-0.136-0.007-0.272-0.007-0.41C4.139,16.062,4.139,16.031,4.14,16z"/>
|
||||
<path fill="#010101" d="M15.714,28.109v2.625h0.503v-2.616c-0.018,0-0.036,0-0.054,0C16.013,28.118,15.863,28.115,15.714,28.109z"
|
||||
/>
|
||||
<path fill="#010101" d="M7.83,24.762c0.454,0.437,0.943,0.838,1.461,1.2l5.142-7.804L7.83,24.762z"/>
|
||||
<path fill="#010101" d="M6.305,22.98c0.354,0.505,0.744,0.981,1.17,1.426l6.577-6.578L6.305,22.98z"/>
|
||||
<path fill="#010101" d="M13.903,27.905c0.589,0.112,1.194,0.181,1.811,0.204v-9.202L13.903,27.905z"/>
|
||||
<path fill="#010101" d="M11.611,27.227c0.579,0.236,1.181,0.43,1.8,0.574l1.842-9.151L11.611,27.227z"/>
|
||||
<path fill="#010101" d="M9.71,26.241c0.46,0.293,0.941,0.556,1.441,0.786l3.553-8.367L9.71,26.241z"/>
|
||||
<path fill="#010101" d="M26.234,22.665c0.32-0.489,0.604-1.002,0.852-1.537l-8.956-3.803L26.234,22.665z"/>
|
||||
<path fill="#010101" d="M16.217,28.118c0.641-0.003,1.271-0.056,1.885-0.156l-1.885-9.168V28.118z"/>
|
||||
<path fill="#010101" d="M27.286,20.668c0.244-0.593,0.442-1.209,0.59-1.845l-9.379-1.887L27.286,20.668z"/>
|
||||
<path fill="#010101" d="M24.715,24.546c0.449-0.455,0.864-0.945,1.236-1.467l-7.919-5.217L24.715,24.546z"/>
|
||||
<path fill="#010101" d="M18.885,16.502l9.095,1.831c0.112-0.596,0.181-1.208,0.202-1.831H18.885z"/>
|
||||
<path fill="#010101" d="M5.131,20.883c0.254,0.585,0.555,1.147,0.895,1.68l7.82-5.2L5.131,20.883z"/>
|
||||
<path fill="#010101" d="M18.597,27.872c0.563-0.116,1.112-0.272,1.646-0.463l-3.549-8.787L18.597,27.872z"/>
|
||||
<path fill="#010101" d="M20.711,27.228c0.591-0.242,1.159-0.529,1.698-0.858l-5.21-7.835L20.711,27.228z"/>
|
||||
<path fill="#010101" d="M22.833,26.1c0.54-0.36,1.049-0.763,1.521-1.204l-6.931-6.931L22.833,26.1z"/>
|
||||
<path fill="#010101" d="M4.468,18.898c0.124,0.521,0.283,1.028,0.472,1.521l8.163-3.297L4.468,18.898z"/>
|
||||
<path fill="#010101" d="M22.519,5.883c-0.48-0.3-0.983-0.566-1.506-0.797l-3.684,8.675L22.519,5.883z"/>
|
||||
<path fill="#010101" d="M18.155,4.232c-0.631-0.105-1.278-0.161-1.938-0.164v9.799L18.155,4.232z"/>
|
||||
<path fill="#010101" d="M20.549,4.893c-0.611-0.239-1.245-0.431-1.9-0.568l-1.93,9.588L20.549,4.893z"/>
|
||||
<path fill="#010101" d="M24.477,7.404C24,6.948,23.486,6.531,22.938,6.157l-5.374,8.158L24.477,7.404z"/>
|
||||
<path fill="#010101" d="M15.714,4.076c-0.671,0.025-1.326,0.104-1.965,0.234l1.965,9.552V4.076z"/>
|
||||
<path fill="#010101" d="M13.259,4.421c-0.534,0.132-1.054,0.301-1.557,0.502l3.384,8.378L13.259,4.421z"/>
|
||||
<path fill="#010101" d="M9.104,6.357c-0.495,0.359-0.96,0.755-1.395,1.184l6.506,6.505L9.104,6.357z"/>
|
||||
<path fill="#010101" d="M26.051,9.248c-0.366-0.529-0.774-1.026-1.22-1.489l-6.86,6.861L26.051,9.248z"/>
|
||||
<path fill="#010101" d="M7.359,7.901C6.916,8.377,6.512,8.89,6.149,9.434l8.04,5.296L7.359,7.901z"/>
|
||||
<path fill="#010101" d="M4.307,14.08C4.201,14.705,4.144,15.346,4.14,16h9.706L4.307,14.08z"/>
|
||||
<path fill="#010101" d="M4.954,11.731c-0.233,0.597-0.418,1.217-0.554,1.856l9.361,1.884L4.954,11.731z"/>
|
||||
<path fill="#010101" d="M4.146,16.502c0.022,0.649,0.095,1.286,0.216,1.905l9.261-1.905H4.146z"/>
|
||||
<path fill="#010101" d="M5.879,9.857c-0.273,0.451-0.52,0.922-0.733,1.41l8.087,3.433L5.879,9.857z"/>
|
||||
<path fill="#010101" d="M27.921,13.561c-0.124-0.578-0.29-1.14-0.493-1.684l-9.007,3.638L27.921,13.561z"/>
|
||||
<path fill="#010101" d="M11.24,5.119c-0.604,0.271-1.18,0.59-1.725,0.952l5.371,8.078L11.24,5.119z"/>
|
||||
<path fill="#010101" d="M27.242,11.41c-0.258-0.608-0.564-1.191-0.914-1.744L18.23,15.05L27.242,11.41z"/>
|
||||
<path fill="#010101" d="M28.188,16c-0.005-0.663-0.063-1.313-0.173-1.947L18.554,16H28.188z"/>
|
||||
</g>
|
||||
<g id="Shape_24_copy_5">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#570F0F" d="M27.076,11.346L4.955,11.305
|
||||
c-0.805,1.852-0.914,2.68-0.914,4.791c0,1.669,0.41,3.383,0.995,4.843l21.936,0.086c0.641-1.515,0.995-3.181,0.995-4.929
|
||||
C27.967,13.985,27.989,13.096,27.076,11.346z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_24_copy_4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#131414" d="M16.059,4.13C9.45,4.13,4.094,9.487,4.094,16.095
|
||||
S9.45,28.061,16.059,28.061s11.966-5.357,11.966-11.965S22.667,4.13,16.059,4.13z M16.059,27.645
|
||||
c-6.378,0-11.55-5.171-11.55-11.55s5.172-11.55,11.55-11.55c6.379,0,11.55,5.171,11.55,11.55
|
||||
C27.608,22.474,22.438,27.645,16.059,27.645z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_24_copy_11">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFCD05" d="M16.059,3.886C9.315,3.886,3.85,9.353,3.85,16.095
|
||||
s5.466,12.209,12.209,12.209s12.21-5.467,12.21-12.209S22.802,3.886,16.059,3.886z M16.059,27.88
|
||||
c-6.509,0-11.784-5.276-11.784-11.785S9.55,4.311,16.059,4.311s11.785,5.276,11.785,11.785S22.567,27.88,16.059,27.88z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_24_copy_11_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFCD05" d="M16.059,0.661c-8.523,0-15.434,6.911-15.434,15.435
|
||||
S7.535,31.53,16.059,31.53c8.524,0,15.436-6.911,15.436-15.435S24.583,0.661,16.059,0.661z M16.059,30.993
|
||||
c-8.228,0-14.897-6.67-14.897-14.898S7.831,1.197,16.059,1.197c8.228,0,14.898,6.67,14.898,14.898S24.286,30.993,16.059,30.993z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_24_copy_10">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.059,1.122c-8.27,0-14.973,6.704-14.973,14.974
|
||||
s6.703,14.973,14.973,14.973c8.271,0,14.973-6.703,14.973-14.973S24.329,1.122,16.059,1.122z M16.059,30.548
|
||||
c-7.981,0-14.452-6.47-14.452-14.453S8.077,1.643,16.059,1.643c7.982,0,14.453,6.47,14.453,14.453S24.041,30.548,16.059,30.548z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_25">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFCD05" d="M16.941,17.746l0.375,5.965h6.064l-2.245-5.965H16.941z
|
||||
M8.493,23.711h6.098l0.349-5.965h-4.197L8.493,23.711z M6.192,13.133v3.118H7.5v1.155h1.016v-1.155h6.977v1.155h1.016v-1.155
|
||||
h7.227v1.155h1.016v-1.155h1.174v-3.118H6.192z M19.179,12.443l-1.827-4.528h-1.14l0.327,4.528H19.179z M15.667,7.915h-1.141
|
||||
l-1.828,4.528h2.654L15.667,7.915z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#1F2020" d="M8.36,15.833c-0.267,0-0.473-0.086-0.619-0.259c-0.145-0.173-0.219-0.382-0.219-0.627
|
||||
c0-0.25,0.075-0.458,0.223-0.625c0.147-0.167,0.357-0.251,0.631-0.251c0.276,0,0.483,0.089,0.625,0.268
|
||||
c0.14,0.179,0.211,0.382,0.211,0.611c0,0.248-0.073,0.458-0.219,0.627C8.85,15.748,8.639,15.833,8.36,15.833z M8.373,14.398
|
||||
c-0.243,0-0.364,0.184-0.364,0.553c0,0.37,0.121,0.555,0.364,0.555c0.235,0,0.353-0.185,0.353-0.554
|
||||
C8.726,14.583,8.608,14.398,8.373,14.398z"/>
|
||||
<path fill="#1F2020" d="M11.52,14.098l-0.599,1.709h-0.497l-0.595-1.709h0.493l0.396,1.222l0.412-1.222H11.52z"/>
|
||||
<path fill="#1F2020" d="M13.645,14.423h-0.942v0.351h0.74v0.322h-0.74v0.373h0.942v0.338h-1.413v-1.709h1.413V14.423z"/>
|
||||
<path fill="#1F2020" d="M14.923,15.129v0.678h-0.466v-1.709h0.869c0.159,0,0.289,0.016,0.386,0.048
|
||||
c0.098,0.032,0.178,0.091,0.242,0.177c0.063,0.085,0.095,0.181,0.095,0.287c0,0.205-0.113,0.352-0.343,0.441l0.365,0.756h-0.513
|
||||
l-0.304-0.678H14.923z M14.923,14.402v0.436h0.284c0.093,0,0.16-0.005,0.202-0.017c0.042-0.011,0.079-0.036,0.112-0.075
|
||||
c0.032-0.039,0.049-0.083,0.049-0.133c0-0.047-0.017-0.09-0.049-0.127c-0.033-0.038-0.068-0.061-0.106-0.069
|
||||
c-0.039-0.009-0.112-0.013-0.218-0.013H14.923z"/>
|
||||
<path fill="#1F2020" d="M17.412,15.172v0.635h-0.471v-1.709h0.779c0.174,0,0.307,0.016,0.399,0.047
|
||||
c0.093,0.033,0.175,0.09,0.247,0.172s0.108,0.185,0.108,0.305c0,0.084-0.019,0.166-0.058,0.247
|
||||
c-0.039,0.08-0.094,0.143-0.164,0.189c-0.07,0.046-0.139,0.076-0.205,0.091s-0.17,0.022-0.311,0.022H17.412z M17.396,14.861h0.302
|
||||
c0.115,0,0.195-0.022,0.242-0.068c0.047-0.046,0.069-0.099,0.069-0.158c0-0.07-0.025-0.125-0.077-0.166
|
||||
c-0.053-0.041-0.13-0.062-0.236-0.062h-0.3V14.861z"/>
|
||||
<path fill="#1F2020" d="M20.238,14.098l0.619,1.709h-0.498l-0.121-0.352h-0.64l-0.125,0.352h-0.405l0.634-1.709H20.238z
|
||||
M19.709,15.14h0.419l-0.208-0.6L19.709,15.14z"/>
|
||||
<path fill="#1F2020" d="M22.971,14.473l-0.395,0.114c-0.053-0.135-0.165-0.203-0.336-0.203c-0.184,0-0.275,0.052-0.275,0.154
|
||||
c0,0.041,0.017,0.075,0.053,0.104c0.034,0.028,0.11,0.053,0.231,0.074c0.201,0.035,0.35,0.07,0.442,0.106
|
||||
c0.094,0.036,0.173,0.093,0.237,0.173c0.064,0.079,0.096,0.168,0.096,0.267c0,0.154-0.069,0.288-0.206,0.401
|
||||
c-0.138,0.112-0.342,0.168-0.611,0.168c-0.203,0-0.376-0.04-0.518-0.119c-0.143-0.08-0.237-0.198-0.281-0.355l0.429-0.084
|
||||
c0.047,0.16,0.182,0.239,0.401,0.239c0.105,0,0.186-0.018,0.237-0.053c0.052-0.036,0.078-0.078,0.078-0.127
|
||||
c0-0.051-0.023-0.089-0.07-0.117c-0.048-0.027-0.14-0.053-0.274-0.077c-0.252-0.045-0.431-0.107-0.539-0.185
|
||||
c-0.106-0.078-0.159-0.192-0.159-0.343c0-0.151,0.063-0.28,0.191-0.384c0.128-0.104,0.302-0.157,0.521-0.157
|
||||
C22.611,14.071,22.86,14.206,22.971,14.473z"/>
|
||||
<path fill="#1F2020" d="M25.228,14.473l-0.394,0.114c-0.053-0.135-0.166-0.203-0.337-0.203c-0.184,0-0.274,0.052-0.274,0.154
|
||||
c0,0.041,0.017,0.075,0.051,0.104c0.035,0.028,0.112,0.053,0.233,0.074c0.201,0.035,0.349,0.07,0.441,0.106
|
||||
c0.094,0.036,0.173,0.093,0.237,0.173c0.064,0.079,0.097,0.168,0.097,0.267c0,0.154-0.069,0.288-0.207,0.401
|
||||
c-0.137,0.112-0.342,0.168-0.611,0.168c-0.203,0-0.376-0.04-0.518-0.119c-0.143-0.08-0.236-0.198-0.282-0.355l0.43-0.084
|
||||
c0.047,0.16,0.183,0.239,0.401,0.239c0.106,0,0.186-0.018,0.237-0.053c0.052-0.036,0.078-0.078,0.078-0.127
|
||||
c0-0.051-0.023-0.089-0.07-0.117c-0.048-0.027-0.139-0.053-0.274-0.077c-0.251-0.045-0.431-0.107-0.538-0.185
|
||||
c-0.106-0.078-0.16-0.192-0.16-0.343c0-0.151,0.064-0.28,0.191-0.384c0.128-0.104,0.302-0.157,0.521-0.157
|
||||
C24.867,14.071,25.117,14.206,25.228,14.473z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#C02026" d="M8.789,14.101c-0.141-0.178-0.349-0.267-0.625-0.267c-0.273,0-0.483,0.083-0.631,0.25
|
||||
c-0.147,0.167-0.222,0.375-0.222,0.625c0,0.246,0.073,0.455,0.218,0.627c0.146,0.173,0.354,0.259,0.619,0.259
|
||||
c0.278,0,0.49-0.085,0.635-0.255C8.927,15.17,9,14.96,9,14.713C9,14.483,8.929,14.279,8.789,14.101z M8.162,15.269
|
||||
c-0.244,0-0.364-0.185-0.364-0.555c0-0.369,0.12-0.553,0.364-0.553c0.234,0,0.352,0.185,0.352,0.554S8.396,15.269,8.162,15.269z"
|
||||
/>
|
||||
<path fill="#FEECA0" d="M8.164,13.834c0.276,0,0.484,0.089,0.625,0.267C8.929,14.279,9,14.483,9,14.713
|
||||
c0,0.248-0.073,0.457-0.217,0.627c-0.145,0.17-0.356,0.255-0.635,0.255c-0.266,0-0.473-0.086-0.619-0.259
|
||||
c-0.145-0.173-0.218-0.382-0.218-0.627c0-0.25,0.074-0.458,0.222-0.625C7.681,13.917,7.891,13.834,8.164,13.834 M8.162,15.269
|
||||
c0.234,0,0.352-0.185,0.352-0.554s-0.117-0.554-0.352-0.554c-0.244,0-0.364,0.185-0.364,0.553
|
||||
C7.798,15.083,7.918,15.269,8.162,15.269 M8.164,13.754c-0.295,0-0.528,0.093-0.69,0.277c-0.16,0.181-0.241,0.409-0.241,0.677
|
||||
c0,0.264,0.079,0.492,0.237,0.678c0.161,0.191,0.39,0.288,0.679,0.288c0.301,0,0.535-0.096,0.694-0.283
|
||||
C9,15.207,9.078,14.979,9.078,14.713c0-0.247-0.075-0.469-0.227-0.661C8.695,13.854,8.464,13.754,8.164,13.754L8.164,13.754z
|
||||
M8.162,15.189c-0.079,0-0.285,0-0.285-0.476c0-0.474,0.206-0.474,0.285-0.474c0.073,0,0.272,0,0.272,0.475
|
||||
C8.435,15.189,8.235,15.189,8.162,15.189L8.162,15.189z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#C02026" points="10.507,15.082 10.111,13.86 9.618,13.86 10.212,15.569 10.711,15.569 11.308,13.86 10.919,13.86
|
||||
"/>
|
||||
<path fill="#FEECA0" d="M11.308,13.86l-0.597,1.708h-0.499L9.618,13.86h0.493l0.396,1.222l0.412-1.222H11.308 M11.42,13.781
|
||||
h-0.112h-0.389h-0.057l-0.018,0.054l-0.336,0.994l-0.322-0.993l-0.018-0.055h-0.058H9.618H9.506l0.038,0.105l0.594,1.708
|
||||
l0.018,0.054h0.057h0.499h0.056l0.019-0.053l0.597-1.709L11.42,13.781L11.42,13.781z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#C02026" points="12.021,15.569 13.433,15.569 13.433,15.231 12.49,15.231 12.49,14.858 13.23,14.858 13.23,14.536
|
||||
12.49,14.536 12.49,14.186 13.433,14.186 13.433,13.86 12.021,13.86 "/>
|
||||
<path fill="#FEECA0" d="M13.433,13.86v0.325H12.49v0.351h0.74v0.322h-0.74v0.373h0.942v0.338h-1.412V13.86H13.433 M13.512,13.781
|
||||
h-0.079h-1.412h-0.08v0.08v1.708v0.08h0.08h1.412h0.079v-0.08v-0.338v-0.08h-0.079H12.57v-0.214h0.66h0.08v-0.08v-0.322v-0.079
|
||||
h-0.08h-0.66v-0.192h0.862h0.079v-0.08V13.86V13.781L13.512,13.781z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#C02026" d="M15.838,14.372c0-0.105-0.032-0.201-0.096-0.287c-0.063-0.086-0.145-0.145-0.241-0.177
|
||||
c-0.098-0.032-0.227-0.048-0.387-0.048h-0.869v1.708h0.467v-0.677h0.331l0.305,0.677h0.512l-0.365-0.755
|
||||
C15.724,14.725,15.838,14.577,15.838,14.372z M15.311,14.508c-0.033,0.039-0.07,0.064-0.112,0.075S15.089,14.6,14.996,14.6h-0.284
|
||||
v-0.436h0.273c0.106,0,0.179,0.004,0.218,0.013c0.038,0.009,0.074,0.032,0.107,0.07c0.033,0.037,0.05,0.08,0.05,0.127
|
||||
C15.36,14.424,15.344,14.469,15.311,14.508z"/>
|
||||
<path fill="#FEECA0" d="M15.114,13.86c0.16,0,0.289,0.016,0.387,0.048c0.097,0.032,0.178,0.091,0.241,0.177
|
||||
c0.063,0.085,0.096,0.181,0.096,0.287c0,0.205-0.114,0.353-0.344,0.441l0.365,0.755h-0.512l-0.305-0.677h-0.331v0.677h-0.467
|
||||
V13.86H15.114 M14.712,14.6h0.284c0.093,0,0.16-0.006,0.202-0.017s0.079-0.036,0.112-0.075c0.033-0.039,0.05-0.083,0.05-0.133
|
||||
c0-0.048-0.017-0.09-0.05-0.127c-0.033-0.038-0.069-0.061-0.107-0.07c-0.039-0.009-0.111-0.013-0.218-0.013h-0.273V14.6
|
||||
M15.114,13.781h-0.869h-0.079v0.08v1.708v0.08h0.079h0.467h0.079v-0.08v-0.598h0.201l0.282,0.63l0.021,0.047h0.052h0.512h0.127
|
||||
l-0.056-0.114l-0.33-0.682c0.259-0.13,0.316-0.33,0.316-0.48c0-0.122-0.038-0.235-0.111-0.334s-0.167-0.168-0.279-0.206
|
||||
C15.42,13.798,15.285,13.781,15.114,13.781L15.114,13.781z M14.791,14.244h0.194c0.124,0,0.178,0.006,0.2,0.011
|
||||
c0.021,0.004,0.044,0.02,0.065,0.044c0.02,0.023,0.029,0.048,0.029,0.076c0,0.032-0.01,0.058-0.03,0.082
|
||||
c-0.022,0.026-0.046,0.043-0.072,0.05c-0.024,0.007-0.075,0.015-0.182,0.015h-0.205V14.244L14.791,14.244z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#C02026" d="M17.908,13.909c-0.092-0.033-0.225-0.048-0.399-0.048h-0.779v1.708H17.2v-0.635h0.326
|
||||
c0.142,0,0.245-0.007,0.312-0.022c0.065-0.015,0.134-0.045,0.204-0.091c0.071-0.046,0.125-0.109,0.164-0.189
|
||||
s0.059-0.162,0.059-0.247c0-0.12-0.036-0.221-0.109-0.304C18.083,13.998,18.001,13.94,17.908,13.909z M17.728,14.555
|
||||
c-0.047,0.046-0.126,0.069-0.241,0.069h-0.302V14.17h0.301c0.104,0,0.184,0.021,0.235,0.062c0.051,0.041,0.076,0.096,0.076,0.166
|
||||
C17.797,14.457,17.774,14.509,17.728,14.555z"/>
|
||||
<path fill="#FEECA0" d="M17.509,13.86c0.175,0,0.308,0.016,0.399,0.048c0.093,0.032,0.175,0.089,0.247,0.171
|
||||
c0.073,0.083,0.109,0.185,0.109,0.304c0,0.085-0.02,0.167-0.059,0.247s-0.093,0.143-0.164,0.189
|
||||
c-0.07,0.046-0.139,0.077-0.204,0.091c-0.066,0.015-0.17,0.022-0.312,0.022H17.2v0.635h-0.471V13.86H17.509 M17.185,14.624h0.302
|
||||
c0.115,0,0.194-0.022,0.241-0.069c0.047-0.046,0.069-0.098,0.069-0.157c0-0.069-0.025-0.125-0.076-0.166
|
||||
c-0.052-0.041-0.131-0.062-0.235-0.062h-0.301V14.624 M17.509,13.781h-0.779H16.65v0.08v1.708v0.08h0.079H17.2h0.079v-0.08v-0.555
|
||||
h0.247c0.148,0,0.257-0.008,0.328-0.024c0.076-0.017,0.153-0.052,0.231-0.103c0.082-0.054,0.146-0.128,0.192-0.221
|
||||
c0.043-0.091,0.065-0.186,0.065-0.282c0-0.14-0.044-0.259-0.128-0.356c-0.082-0.093-0.177-0.158-0.281-0.195
|
||||
C17.833,13.798,17.693,13.781,17.509,13.781L17.509,13.781z M17.264,14.25h0.222c0.085,0,0.149,0.015,0.186,0.044
|
||||
c0.033,0.026,0.048,0.058,0.048,0.104c0,0.038-0.015,0.07-0.046,0.101c-0.021,0.021-0.07,0.046-0.187,0.046h-0.223V14.25
|
||||
L17.264,14.25z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#C02026" d="M19.49,13.86l-0.634,1.708h0.406l0.124-0.352h0.64l0.121,0.352h0.498l-0.619-1.708H19.49z M19.498,14.901
|
||||
l0.21-0.6l0.209,0.6H19.498z"/>
|
||||
<path fill="#FEECA0" d="M20.026,13.86l0.619,1.708h-0.498l-0.121-0.352h-0.64l-0.124,0.352h-0.406l0.634-1.708H20.026
|
||||
M19.498,14.901h0.419l-0.209-0.6L19.498,14.901 M20.082,13.781h-0.056H19.49h-0.055l-0.02,0.051l-0.634,1.709l-0.039,0.107h0.113
|
||||
h0.406h0.056l0.019-0.053l0.105-0.299h0.527l0.104,0.298l0.019,0.054h0.056h0.498h0.113l-0.038-0.106l-0.62-1.709L20.082,13.781
|
||||
L20.082,13.781z M19.609,14.823l0.099-0.28l0.097,0.28H19.609L19.609,14.823z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#C02026" d="M22.48,14.585c-0.094-0.036-0.241-0.072-0.442-0.107c-0.122-0.021-0.198-0.045-0.232-0.074
|
||||
c-0.034-0.029-0.052-0.063-0.052-0.104c0-0.103,0.092-0.154,0.274-0.154c0.172,0,0.283,0.067,0.337,0.203l0.395-0.114
|
||||
c-0.111-0.268-0.36-0.401-0.749-0.401c-0.219,0-0.393,0.052-0.52,0.156c-0.128,0.104-0.192,0.232-0.192,0.384
|
||||
c0,0.15,0.054,0.264,0.161,0.343c0.106,0.078,0.286,0.139,0.538,0.184c0.135,0.024,0.226,0.05,0.273,0.078
|
||||
c0.047,0.027,0.07,0.066,0.07,0.117c0,0.049-0.025,0.091-0.078,0.126c-0.052,0.035-0.13,0.054-0.236,0.054
|
||||
c-0.22,0-0.354-0.08-0.402-0.239l-0.429,0.084c0.046,0.157,0.139,0.275,0.281,0.355c0.143,0.08,0.315,0.119,0.518,0.119
|
||||
c0.271,0,0.475-0.056,0.611-0.169c0.138-0.113,0.207-0.246,0.207-0.4c0-0.099-0.032-0.188-0.097-0.267
|
||||
C22.652,14.679,22.574,14.621,22.48,14.585z"/>
|
||||
<path fill="#FEECA0" d="M22.011,13.834c0.389,0,0.638,0.134,0.749,0.401l-0.395,0.114c-0.054-0.135-0.165-0.203-0.337-0.203
|
||||
c-0.183,0-0.274,0.051-0.274,0.154c0,0.041,0.018,0.075,0.052,0.104c0.034,0.028,0.11,0.053,0.232,0.074
|
||||
c0.201,0.035,0.349,0.071,0.442,0.107c0.094,0.036,0.172,0.093,0.236,0.173c0.064,0.079,0.097,0.168,0.097,0.267
|
||||
c0,0.154-0.069,0.288-0.207,0.4c-0.137,0.113-0.341,0.169-0.611,0.169c-0.202,0-0.375-0.04-0.518-0.119
|
||||
c-0.143-0.08-0.235-0.198-0.281-0.355l0.429-0.084c0.049,0.159,0.183,0.239,0.402,0.239c0.106,0,0.185-0.019,0.236-0.054
|
||||
c0.053-0.035,0.078-0.078,0.078-0.126c0-0.05-0.023-0.089-0.07-0.117c-0.048-0.028-0.139-0.054-0.273-0.078
|
||||
c-0.252-0.045-0.432-0.106-0.538-0.184c-0.107-0.079-0.161-0.193-0.161-0.343c0-0.152,0.064-0.28,0.192-0.384
|
||||
C21.618,13.886,21.792,13.834,22.011,13.834 M22.011,13.754c-0.236,0-0.429,0.059-0.569,0.174c-0.147,0.12-0.222,0.27-0.222,0.446
|
||||
s0.065,0.313,0.193,0.407c0.118,0.086,0.304,0.151,0.571,0.199c0.163,0.029,0.225,0.055,0.248,0.068
|
||||
c0.025,0.015,0.03,0.029,0.03,0.048c0,0.008,0,0.032-0.043,0.061c-0.027,0.018-0.081,0.04-0.192,0.04
|
||||
c-0.244,0-0.303-0.104-0.327-0.183l-0.021-0.069l-0.07,0.014l-0.429,0.084l-0.085,0.017l0.024,0.083
|
||||
c0.051,0.177,0.158,0.313,0.318,0.402c0.154,0.086,0.341,0.13,0.557,0.13c0.288,0,0.511-0.063,0.662-0.187
|
||||
c0.156-0.128,0.235-0.284,0.235-0.462c0-0.117-0.039-0.224-0.113-0.317c-0.073-0.09-0.164-0.157-0.271-0.198
|
||||
c-0.1-0.039-0.249-0.074-0.457-0.111c-0.153-0.026-0.19-0.052-0.195-0.057c-0.02-0.017-0.023-0.03-0.023-0.042
|
||||
c0-0.05,0.065-0.075,0.195-0.075c0.182,0,0.238,0.087,0.264,0.153l0.026,0.067l0.069-0.021l0.394-0.113l0.086-0.025l-0.034-0.082
|
||||
C22.709,13.906,22.433,13.754,22.011,13.754L22.011,13.754z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#C02026" d="M24.974,14.759c-0.064-0.08-0.143-0.138-0.235-0.173c-0.095-0.036-0.242-0.072-0.443-0.107
|
||||
c-0.121-0.021-0.198-0.045-0.232-0.074c-0.035-0.029-0.051-0.063-0.051-0.104c0-0.103,0.091-0.154,0.273-0.154
|
||||
c0.173,0,0.284,0.067,0.338,0.203l0.393-0.114c-0.109-0.268-0.359-0.401-0.748-0.401c-0.218,0-0.393,0.052-0.52,0.156
|
||||
c-0.128,0.104-0.192,0.232-0.192,0.384c0,0.15,0.054,0.264,0.161,0.343c0.106,0.078,0.286,0.139,0.538,0.184
|
||||
c0.136,0.024,0.227,0.05,0.273,0.078c0.048,0.027,0.07,0.066,0.07,0.117c0,0.049-0.025,0.091-0.078,0.126
|
||||
c-0.052,0.035-0.13,0.054-0.236,0.054c-0.22,0-0.354-0.08-0.402-0.239l-0.429,0.084c0.045,0.157,0.139,0.275,0.281,0.355
|
||||
c0.143,0.08,0.315,0.119,0.518,0.119c0.271,0,0.475-0.056,0.611-0.169c0.139-0.113,0.207-0.246,0.207-0.4
|
||||
C25.07,14.927,25.038,14.838,24.974,14.759z"/>
|
||||
<path fill="#FEECA0" d="M24.268,13.834c0.389,0,0.639,0.134,0.748,0.401l-0.393,0.114c-0.054-0.135-0.165-0.203-0.338-0.203
|
||||
c-0.183,0-0.273,0.051-0.273,0.154c0,0.041,0.016,0.075,0.051,0.104c0.034,0.028,0.111,0.053,0.232,0.074
|
||||
c0.201,0.035,0.349,0.071,0.443,0.107c0.093,0.036,0.171,0.093,0.235,0.173c0.064,0.079,0.097,0.168,0.097,0.267
|
||||
c0,0.154-0.068,0.288-0.207,0.4c-0.137,0.113-0.34,0.169-0.611,0.169c-0.202,0-0.375-0.04-0.518-0.119
|
||||
c-0.143-0.08-0.236-0.198-0.281-0.355l0.429-0.084c0.049,0.159,0.183,0.239,0.402,0.239c0.106,0,0.185-0.019,0.236-0.054
|
||||
c0.053-0.035,0.078-0.078,0.078-0.126c0-0.05-0.022-0.089-0.07-0.117c-0.047-0.028-0.138-0.054-0.273-0.078
|
||||
c-0.252-0.045-0.432-0.106-0.538-0.184c-0.107-0.079-0.161-0.193-0.161-0.343c0-0.152,0.064-0.28,0.192-0.384
|
||||
C23.875,13.886,24.05,13.834,24.268,13.834 M24.268,13.754c-0.235,0-0.428,0.059-0.57,0.174c-0.146,0.12-0.221,0.27-0.221,0.446
|
||||
s0.065,0.313,0.193,0.407c0.118,0.086,0.305,0.151,0.57,0.199c0.164,0.029,0.227,0.055,0.247,0.068
|
||||
c0.027,0.015,0.032,0.029,0.032,0.048c0,0.008,0,0.032-0.043,0.061c-0.026,0.018-0.081,0.04-0.192,0.04
|
||||
c-0.243,0-0.302-0.104-0.326-0.183l-0.021-0.069l-0.069,0.014l-0.429,0.084l-0.085,0.017l0.023,0.083
|
||||
c0.051,0.177,0.158,0.313,0.318,0.402c0.154,0.086,0.342,0.13,0.557,0.13c0.288,0,0.511-0.063,0.662-0.187
|
||||
c0.156-0.128,0.235-0.284,0.235-0.462c0-0.117-0.039-0.224-0.113-0.317c-0.073-0.09-0.164-0.157-0.271-0.198
|
||||
c-0.1-0.039-0.249-0.074-0.457-0.111c-0.153-0.026-0.189-0.052-0.195-0.057c-0.02-0.017-0.023-0.03-0.023-0.042
|
||||
c0-0.05,0.065-0.075,0.195-0.075c0.183,0,0.238,0.087,0.263,0.153l0.027,0.067l0.069-0.021l0.395-0.113l0.084-0.025l-0.033-0.082
|
||||
C24.966,13.906,24.689,13.754,24.268,13.754L24.268,13.754z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_copy_5">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFCD05" d="M20.252,9.237h-0.646c-0.14,0-0.254,0.114-0.254,0.255v0.552
|
||||
c0,0.14,0.114,0.254,0.254,0.254h0.646c0.132,0,0.241-0.1,0.254-0.228v-0.013h-0.87V9.474h0.87V9.461
|
||||
C20.49,9.335,20.382,9.237,20.252,9.237z M21.637,9.65h-0.674V9.466h0.906c-0.013-0.129-0.122-0.229-0.254-0.229h-0.657
|
||||
c-0.141,0-0.254,0.114-0.254,0.255v0.158c0.013,0.128,0.12,0.229,0.253,0.229h0.674v0.189h-0.926
|
||||
c0.013,0.128,0.121,0.229,0.253,0.229h0.677c0.141,0,0.255-0.114,0.255-0.254V9.879C21.878,9.75,21.77,9.65,21.637,9.65z
|
||||
M24.752,9.228H24.09c-0.135,0-0.244,0.109-0.244,0.244v0.573c0,0.134,0.109,0.244,0.244,0.244h0.662
|
||||
c0.135,0,0.244-0.109,0.244-0.244V9.472C24.996,9.337,24.887,9.228,24.752,9.228z M24.77,10.091h-0.695V9.426h0.695V10.091z
|
||||
M22.906,9.777c0.053,0.065,0.13,0.07,0.153,0.07l0.354,0v0.231h-0.742V9.434h0.968c-0.019-0.118-0.121-0.206-0.242-0.206h-0.707
|
||||
c-0.135,0-0.243,0.109-0.243,0.244v0.572c0,0.134,0.108,0.244,0.243,0.244h0.707c0.127,0,0.23-0.094,0.243-0.216V9.67h-0.785
|
||||
C22.858,9.691,22.868,9.729,22.906,9.777z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 208 KiB |
@@ -1,196 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_25_copy_18">
|
||||
<g>
|
||||
|
||||
<rect x="5.077" y="5.189" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -6.6776 15.961)" fill-rule="evenodd" clip-rule="evenodd" fill="#262218" width="21.704" height="21.705"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_25_copy_20">
|
||||
<g>
|
||||
|
||||
<rect x="5.417" y="5.529" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -6.6776 15.9617)" fill-rule="evenodd" clip-rule="evenodd" fill="#D2DE26" width="21.024" height="21.025"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_25_copy_18_1_">
|
||||
<g>
|
||||
|
||||
<rect x="6.909" y="7" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -6.6713 15.9761)" fill-rule="evenodd" clip-rule="evenodd" fill="#D1DF5B" width="18.083" height="18.084"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_25_copy_18_2_">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#C1C5AC" points="15.95,3.396 3.124,16.041 28.776,16.041 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_49_copy_6">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#888A6C" d="M27.841,15.121h-4.17l-0.023-0.897c0,0,0.595,0.001,0.8,0.001
|
||||
c0.308,0,0.09-0.158,0.091-0.157c-0.765-0.772-6.921-6.979-8.298-8.366c-0.081-0.083-0.146-0.146-0.191-0.194
|
||||
c-0.029-0.029-0.102-0.063-0.181,0.019c-0.023,0.024-0.052,0.052-0.084,0.085c-1.178,1.177-7.647,7.639-8.446,8.439
|
||||
c-0.005,0.003-0.163,0.162,0.048,0.162c0.251,0,0.776,0.012,0.776,0.012l-0.015,0.897H3.904l-0.841,0.803l4.042,4.425h17.391
|
||||
l4.307-4.336L27.841,15.121z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_52_copy_3">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#302F2F" cx="15.977" cy="12.77" r="3.52"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_52_copy_3_1_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#515151" cx="15.977" cy="12.77" r="2.005"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_53_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C3C3C3" d="M17.245,10.887l0.179,0.138l0.544-0.707l-0.179-0.137
|
||||
L17.245,10.887z M13.919,15.208l0.179,0.138l0.545-0.708l-0.18-0.137L13.919,15.208z M18.994,11.886l-0.069-0.214l-0.849,0.277
|
||||
l0.069,0.213L18.994,11.886z M12.894,13.64l0.068,0.215l0.849-0.277l-0.069-0.215L12.894,13.64z M18.045,13.654l0.837,0.308
|
||||
l0.079-0.212l-0.839-0.307L18.045,13.654z M12.926,11.774l0.838,0.309l0.078-0.212l-0.838-0.307L12.926,11.774z M17.187,14.677
|
||||
l0.522,0.724l0.183-0.132l-0.522-0.724L17.187,14.677z M13.994,10.258l0.521,0.722l0.184-0.13l-0.523-0.724L13.994,10.258z
|
||||
M15.83,10.481h0.226V9.591H15.83V10.481z M15.83,15.936h0.226v-0.894H15.83V15.936z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="_x30_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.582,8.225c0.068-0.192,0.104-0.369,0.104-0.531
|
||||
c0-0.33-0.073-0.602-0.22-0.814c-0.147-0.214-0.325-0.32-0.53-0.32c-0.213,0-0.392,0.11-0.539,0.33
|
||||
c-0.147,0.222-0.221,0.484-0.221,0.79c0,0.311,0.075,0.576,0.226,0.797c0.148,0.221,0.325,0.331,0.526,0.331
|
||||
c0.122,0,0.244-0.048,0.366-0.146C16.417,8.562,16.511,8.416,16.582,8.225z M16.135,7.855c-0.007,0.412-0.027,0.654-0.063,0.729
|
||||
c-0.034,0.076-0.085,0.113-0.151,0.113c-0.045,0-0.08-0.014-0.106-0.043c-0.025-0.028-0.048-0.106-0.068-0.233
|
||||
c-0.019-0.126-0.029-0.349-0.029-0.664c0-0.413,0.015-0.698,0.041-0.855c0.028-0.157,0.086-0.236,0.174-0.236
|
||||
c0.073,0,0.127,0.06,0.161,0.18c0.034,0.121,0.051,0.305,0.051,0.553L16.135,7.855z M17.102,17.142
|
||||
c-0.032,0.041-0.05,0.087-0.05,0.138c0,0.065,0.021,0.122,0.064,0.17c0.042,0.048,0.103,0.072,0.181,0.072
|
||||
c0.079,0,0.143-0.026,0.191-0.078c0.05-0.052,0.073-0.112,0.073-0.181c0-0.119-0.058-0.227-0.17-0.324
|
||||
c-0.114-0.096-0.273-0.146-0.478-0.146c-0.242,0-0.443,0.069-0.604,0.206c-0.16,0.138-0.24,0.308-0.24,0.511
|
||||
c0,0.207,0.079,0.37,0.237,0.492c0.158,0.12,0.342,0.182,0.549,0.182c0.118,0,0.258-0.026,0.416-0.076l-0.02,0.481h-0.673
|
||||
c-0.144,0-0.238,0.029-0.285,0.088c-0.046,0.058-0.079,0.213-0.1,0.464h0.099c0.015-0.054,0.028-0.084,0.04-0.09
|
||||
c0.011-0.006,0.032-0.01,0.062-0.01h0.891c0.033,0,0.051-0.005,0.057-0.018c0.007-0.012,0.012-0.042,0.013-0.093l0.03-0.872
|
||||
c0.003-0.038,0.002-0.063-0.002-0.075c-0.003-0.012-0.013-0.017-0.031-0.017l-0.146,0.056c-0.061,0.021-0.129,0.033-0.206,0.033
|
||||
c-0.246,0-0.368-0.204-0.368-0.611c0-0.36,0.113-0.541,0.341-0.541c0.071,0,0.142,0.013,0.209,0.035
|
||||
c0.066,0.022,0.102,0.05,0.102,0.08c0,0.023-0.021,0.039-0.065,0.048C17.174,17.076,17.136,17.102,17.102,17.142z M15.027,16.793
|
||||
c-0.124,0-0.249,0.051-0.373,0.149c-0.123,0.101-0.221,0.248-0.291,0.443c-0.071,0.195-0.106,0.377-0.106,0.542
|
||||
c0,0.335,0.075,0.611,0.223,0.829c0.149,0.216,0.331,0.324,0.541,0.324c0.216,0,0.398-0.112,0.549-0.337
|
||||
c0.148-0.223,0.224-0.491,0.224-0.803c0-0.315-0.076-0.586-0.229-0.812C15.411,16.905,15.233,16.793,15.027,16.793z
|
||||
M15.199,18.731c-0.026,0.16-0.085,0.24-0.175,0.24c-0.075,0-0.13-0.062-0.165-0.183c-0.035-0.122-0.052-0.31-0.052-0.563
|
||||
l0.009-0.464c0.008-0.419,0.028-0.666,0.063-0.743c0.036-0.077,0.087-0.116,0.154-0.116c0.046,0,0.082,0.016,0.109,0.045
|
||||
c0.025,0.029,0.049,0.108,0.067,0.236c0.021,0.13,0.029,0.355,0.029,0.677C15.24,18.282,15.228,18.571,15.199,18.731z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_72_copy_5">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#D1DF5B" points="24.2,19.526 23.705,20.384 23.211,19.526 22.716,20.384
|
||||
22.222,19.526 21.727,20.384 21.232,19.526 20.738,20.384 20.243,19.526 19.766,20.354 19.288,19.526 18.793,20.384
|
||||
18.299,19.526 17.805,20.384 17.31,19.526 16.815,20.384 16.32,19.526 15.844,20.354 15.365,19.526 14.888,20.354 14.41,19.526
|
||||
13.915,20.384 13.421,19.526 12.927,20.384 12.432,19.526 11.938,20.384 11.442,19.526 10.948,20.384 10.454,19.526 9.977,20.354
|
||||
9.499,19.526 9.003,20.384 8.509,19.526 8.014,20.384 7.521,19.526 7.133,20.199 7.52,20.637 7.869,20.637 8.16,20.637
|
||||
8.857,20.637 9.149,20.637 9.813,20.637 10.139,20.637 10.803,20.637 11.094,20.637 11.791,20.637 12.083,20.637 12.781,20.637
|
||||
13.072,20.637 13.77,20.637 14.062,20.637 14.725,20.637 15.052,20.637 15.68,20.637 16.006,20.637 16.669,20.637 16.961,20.637
|
||||
17.658,20.637 17.949,20.637 18.648,20.637 18.939,20.637 19.603,20.637 19.929,20.637 20.592,20.637 20.883,20.637
|
||||
21.582,20.637 21.873,20.637 22.57,20.637 22.862,20.637 23.559,20.637 23.851,20.637 24.268,20.637 24.628,20.269 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_25_copy_18_3_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#262218" d="M15.912,2.199L2.097,16.015l13.815,13.814l13.814-13.815
|
||||
L15.912,2.199z M3.324,16.031L15.928,3.427l12.604,12.604L15.928,28.636L3.324,16.031z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_72">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E3E0D0" d="M2.905,16.589l0.138,0.138L3.5,16.27l-0.138-0.138L2.905,16.589z
|
||||
M3.683,17.366l0.137,0.138l0.458-0.457L4.14,16.909L3.683,17.366z M4.444,18.129l0.138,0.137l0.457-0.458l-0.137-0.136
|
||||
L4.444,18.129z M5.223,18.906l0.138,0.138l0.456-0.458L5.68,18.449L5.223,18.906z M5.984,19.668l0.139,0.139l0.456-0.458
|
||||
l-0.138-0.138L5.984,19.668z M6.747,20.431l0.137,0.138l0.457-0.458l-0.137-0.137L6.747,20.431z M7.525,21.209l0.136,0.137
|
||||
l0.458-0.458l-0.137-0.137L7.525,21.209z M8.301,21.985l0.138,0.137l0.458-0.456L8.76,21.528L8.301,21.985z M9.063,22.747
|
||||
l0.138,0.138l0.457-0.456L9.521,22.29L9.063,22.747z M9.826,23.51l0.137,0.138l0.458-0.457l-0.137-0.138L9.826,23.51z
|
||||
M10.604,24.288l0.137,0.137l0.457-0.457l-0.138-0.137L10.604,24.288z M11.381,25.065l0.138,0.137l0.457-0.458l-0.137-0.136
|
||||
L11.381,25.065z M12.144,25.827l0.138,0.138l0.457-0.458l-0.138-0.138L12.144,25.827z M12.906,26.59l0.137,0.137l0.458-0.457
|
||||
l-0.138-0.138L12.906,26.59z M13.685,27.367l0.136,0.138l0.457-0.458l-0.137-0.137L13.685,27.367z M14.461,28.145l0.137,0.137
|
||||
l0.458-0.457l-0.137-0.137L14.461,28.145z M15.223,28.907l0.138,0.137l0.458-0.457l-0.138-0.138L15.223,28.907z M28.355,16.27
|
||||
l0.457,0.457l0.138-0.138l-0.456-0.457L28.355,16.27z M27.578,17.046l0.458,0.458l0.137-0.138l-0.457-0.457L27.578,17.046z
|
||||
M26.816,17.808l0.458,0.458l0.137-0.137l-0.458-0.457L26.816,17.808z M26.039,18.586l0.457,0.458l0.138-0.138l-0.458-0.457
|
||||
L26.039,18.586z M25.276,19.349l0.457,0.458l0.139-0.139l-0.458-0.457L25.276,19.349z M24.515,20.11l0.457,0.458l0.138-0.138
|
||||
l-0.458-0.457L24.515,20.11z M23.737,20.888l0.457,0.457l0.137-0.136l-0.457-0.458L23.737,20.888z M22.96,21.666l0.457,0.456
|
||||
l0.138-0.137l-0.458-0.457L22.96,21.666z M22.197,22.429l0.457,0.456l0.138-0.138l-0.457-0.457L22.197,22.429z M21.435,23.19
|
||||
l0.458,0.457l0.137-0.138l-0.457-0.457L21.435,23.19z M20.657,23.968l0.457,0.457l0.137-0.137l-0.456-0.457L20.657,23.968z
|
||||
M19.88,24.744l0.458,0.458l0.137-0.137l-0.458-0.457L19.88,24.744z M19.117,25.507l0.458,0.458l0.137-0.138l-0.457-0.458
|
||||
L19.117,25.507z M18.354,26.269l0.459,0.458l0.137-0.137l-0.458-0.458L18.354,26.269z M17.578,27.047l0.457,0.458l0.137-0.138
|
||||
l-0.457-0.457L17.578,27.047z M16.801,27.824l0.457,0.457l0.137-0.137l-0.457-0.457L16.801,27.824z M16.038,28.587l0.457,0.457
|
||||
l0.138-0.137l-0.457-0.458L16.038,28.587z M2.905,15.443l0.457,0.459L3.5,15.765l-0.457-0.457L2.905,15.443z M3.683,14.668
|
||||
l0.457,0.457l0.138-0.139L3.819,14.53L3.683,14.668z M4.444,13.905l0.458,0.457l0.137-0.138l-0.457-0.457L4.444,13.905z
|
||||
M5.223,13.127l0.457,0.457l0.137-0.137L5.36,12.989L5.223,13.127z M5.984,12.364l0.457,0.458l0.138-0.138l-0.456-0.457
|
||||
L5.984,12.364z M6.747,11.603l0.457,0.457l0.137-0.137l-0.457-0.458L6.747,11.603z M7.525,10.825l0.457,0.457l0.137-0.137
|
||||
l-0.458-0.458L7.525,10.825z M8.301,10.047l0.459,0.458l0.137-0.137L8.438,9.909L8.301,10.047z M9.063,9.285l0.458,0.457
|
||||
l0.137-0.137L9.201,9.148L9.063,9.285z M9.826,8.523l0.458,0.457l0.137-0.138L9.963,8.386L9.826,8.523z M10.604,7.746l0.456,0.457
|
||||
l0.138-0.138l-0.457-0.457L10.604,7.746z M11.381,6.969l0.458,0.456l0.137-0.137L11.519,6.83L11.381,6.969z M12.144,6.206
|
||||
l0.457,0.456l0.138-0.137l-0.457-0.457L12.144,6.206z M12.906,5.444L13.363,5.9l0.138-0.138l-0.458-0.456L12.906,5.444z
|
||||
M13.685,4.666l0.456,0.457l0.137-0.137L13.82,4.528L13.685,4.666z M14.461,3.889l0.458,0.458l0.137-0.139l-0.458-0.457
|
||||
L14.461,3.889z M15.223,3.126l0.458,0.458l0.138-0.138L15.36,2.989L15.223,3.126z M28.95,15.443l-0.138-0.136l-0.457,0.457
|
||||
l0.139,0.138L28.95,15.443z M27.578,14.986l0.138,0.138l0.457-0.457l-0.137-0.137L27.578,14.986z M26.816,14.224l0.137,0.138
|
||||
l0.458-0.456l-0.137-0.138L26.816,14.224z M26.039,13.447l0.137,0.137l0.458-0.457l-0.138-0.138L26.039,13.447z M25.276,12.685
|
||||
l0.138,0.138l0.458-0.458l-0.139-0.137L25.276,12.685z M24.515,11.923l0.137,0.137l0.458-0.457l-0.138-0.138L24.515,11.923z
|
||||
M23.737,11.146l0.137,0.137l0.457-0.457l-0.137-0.138L23.737,11.146z M22.96,10.368l0.137,0.137l0.458-0.458l-0.138-0.138
|
||||
L22.96,10.368z M22.197,9.605l0.138,0.137l0.457-0.458l-0.138-0.136L22.197,9.605z M21.435,8.843l0.138,0.138l0.457-0.458
|
||||
l-0.137-0.137L21.435,8.843z M20.657,8.065l0.138,0.138l0.456-0.457l-0.137-0.138L20.657,8.065z M19.88,7.288l0.137,0.137
|
||||
l0.458-0.456L20.338,6.83L19.88,7.288z M19.117,6.525l0.138,0.137l0.457-0.456l-0.137-0.138L19.117,6.525z M18.354,5.763
|
||||
L18.492,5.9l0.458-0.456l-0.137-0.138L18.354,5.763z M17.578,4.986l0.137,0.137l0.457-0.457l-0.137-0.138L17.578,4.986z
|
||||
M16.801,4.208l0.137,0.139l0.457-0.458l-0.137-0.138L16.801,4.208z M16.038,3.446l0.138,0.138l0.457-0.458l-0.138-0.137
|
||||
L16.038,3.446z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="safehouse">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#262218" d="M16.188,26.474c-0.083-0.015-0.161-0.013-0.233,0.006
|
||||
s-0.164,0.051-0.271,0.098c-0.107,0.044-0.182,0.067-0.221,0.067c-0.04,0-0.071-0.01-0.093-0.033
|
||||
c-0.028-0.028-0.038-0.064-0.027-0.109c0.009-0.045,0.038-0.091,0.085-0.138c0.082-0.081,0.226-0.156,0.432-0.225l-0.226-0.226
|
||||
c-0.182,0.063-0.328,0.152-0.439,0.263c-0.121,0.119-0.186,0.246-0.197,0.378c-0.011,0.134,0.033,0.249,0.131,0.348
|
||||
c0.078,0.076,0.157,0.123,0.238,0.139c0.082,0.017,0.158,0.015,0.23-0.005c0.071-0.019,0.161-0.052,0.269-0.099
|
||||
c0.109-0.047,0.184-0.069,0.226-0.068s0.075,0.014,0.1,0.038c0.069,0.07,0.055,0.156-0.048,0.259
|
||||
c-0.059,0.061-0.128,0.104-0.204,0.135c-0.077,0.029-0.176,0.053-0.298,0.07l0.248,0.248c0.195-0.047,0.357-0.134,0.485-0.263
|
||||
c0.119-0.119,0.185-0.247,0.193-0.384c0.011-0.136-0.038-0.257-0.145-0.364C16.348,26.534,16.27,26.49,16.188,26.474z
|
||||
M16.356,25.045l0.731,1.568l0.272-0.273l-0.149-0.305l0.465-0.465l0.313,0.143l0.277-0.277l-1.61-0.691L16.356,25.045z
|
||||
M17.399,25.445l-0.32,0.32l-0.294-0.6L17.399,25.445z M18.902,23.855l-0.212-0.211l-0.455,0.456l-0.258-0.257l0.456-0.455
|
||||
l-0.21-0.212l-0.715,0.714l1.15,1.151l0.259-0.259l-0.472-0.472L18.902,23.855z M19.902,23.378l-0.276-0.277l0.472-0.472
|
||||
l-0.211-0.212l-0.473,0.474l-0.241-0.241l0.495-0.496l-0.209-0.211l-0.754,0.754l1.149,1.15l0.765-0.765l-0.212-0.21
|
||||
L19.902,23.378z M20.715,20.684l0.463,0.463l-0.517,0.517L20.199,21.2l-0.259,0.259l1.15,1.15l0.259-0.258l-0.466-0.466
|
||||
l0.517-0.517l0.467,0.466l0.257-0.258l-1.15-1.151L20.715,20.684z M22.621,19.104c-0.228-0.009-0.43,0.075-0.606,0.251
|
||||
c-0.177,0.178-0.261,0.38-0.253,0.607s0.092,0.421,0.248,0.578c0.162,0.16,0.354,0.244,0.582,0.25
|
||||
c0.227,0.005,0.428-0.079,0.603-0.255c0.174-0.174,0.258-0.374,0.251-0.603c-0.005-0.228-0.088-0.421-0.247-0.58
|
||||
C23.041,19.196,22.85,19.113,22.621,19.104z M22.956,20.297c-0.1,0.1-0.211,0.146-0.335,0.142
|
||||
c-0.125-0.005-0.239-0.06-0.344-0.163c-0.104-0.106-0.161-0.222-0.164-0.346c-0.005-0.124,0.042-0.236,0.142-0.334
|
||||
c0.098-0.099,0.208-0.146,0.333-0.141c0.124,0.005,0.238,0.06,0.344,0.165c0.105,0.104,0.16,0.219,0.164,0.343
|
||||
C23.101,20.089,23.054,20.2,22.956,20.297z M24.11,17.29l-0.259,0.258l0.643,0.643c0.091,0.091,0.137,0.184,0.139,0.281
|
||||
c0.001,0.097-0.037,0.186-0.117,0.266c-0.076,0.077-0.163,0.114-0.258,0.113c-0.096-0.001-0.185-0.041-0.264-0.122l-0.66-0.661
|
||||
l-0.26,0.259l0.654,0.655c0.165,0.165,0.337,0.245,0.515,0.242c0.18-0.003,0.351-0.087,0.515-0.251
|
||||
c0.166-0.166,0.251-0.338,0.254-0.514c0.002-0.176-0.08-0.348-0.248-0.516L24.11,17.29z M25.939,16.723
|
||||
c-0.082-0.016-0.159-0.014-0.233,0.006c-0.072,0.019-0.162,0.051-0.271,0.096c-0.108,0.046-0.183,0.068-0.221,0.068
|
||||
c-0.04,0.001-0.071-0.012-0.093-0.032c-0.029-0.029-0.038-0.066-0.028-0.11c0.011-0.045,0.039-0.091,0.085-0.137
|
||||
c0.082-0.082,0.226-0.157,0.433-0.227l-0.225-0.225c-0.184,0.063-0.33,0.151-0.441,0.262c-0.118,0.121-0.186,0.248-0.196,0.38
|
||||
s0.033,0.247,0.133,0.347c0.075,0.076,0.154,0.122,0.236,0.139c0.081,0.015,0.158,0.015,0.229-0.004
|
||||
c0.072-0.019,0.162-0.053,0.271-0.1s0.183-0.068,0.225-0.067c0.041,0.001,0.074,0.013,0.099,0.037
|
||||
c0.071,0.071,0.056,0.157-0.046,0.259c-0.06,0.059-0.128,0.104-0.205,0.135c-0.077,0.029-0.177,0.053-0.298,0.07l0.248,0.248
|
||||
c0.195-0.046,0.356-0.135,0.486-0.263c0.118-0.119,0.183-0.247,0.193-0.383c0.009-0.137-0.039-0.258-0.146-0.364
|
||||
C26.101,16.783,26.021,16.737,25.939,16.723z M27.508,15.772l-0.506,0.506l-0.277-0.277l0.473-0.472l-0.211-0.211l-0.473,0.473
|
||||
l-0.242-0.241l0.497-0.496l-0.211-0.211l-0.754,0.755l1.149,1.15l0.765-0.766L27.508,15.772z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_copy_4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C1C5AC" d="M5.118,15.81H4.563c-0.121,0-0.219,0.098-0.219,0.219v0.475
|
||||
c0,0.12,0.098,0.219,0.219,0.219h0.555c0.113,0,0.207-0.086,0.218-0.195v-0.013H4.588v-0.5h0.748v-0.013
|
||||
C5.322,15.894,5.229,15.81,5.118,15.81z M6.309,16.164h-0.58v-0.158h0.78c-0.013-0.11-0.105-0.196-0.219-0.196H5.726
|
||||
c-0.121,0-0.22,0.098-0.22,0.219v0.136c0.011,0.11,0.104,0.198,0.218,0.198l0.58-0.001v0.163H5.507
|
||||
c0.011,0.11,0.104,0.197,0.219,0.197h0.582c0.12,0,0.218-0.099,0.218-0.219v-0.142C6.516,16.251,6.422,16.164,6.309,16.164z
|
||||
M8.987,15.802H8.418c-0.116,0-0.209,0.094-0.209,0.21v0.492c0,0.115,0.093,0.21,0.209,0.21h0.569c0.115,0,0.21-0.095,0.21-0.21
|
||||
v-0.492C9.197,15.896,9.103,15.802,8.987,15.802z M9.002,16.545H8.404v-0.573h0.598V16.545z M7.4,16.274
|
||||
c0.045,0.056,0.111,0.061,0.132,0.061h0.304v0.198H7.197v-0.556h0.832c-0.016-0.1-0.104-0.176-0.208-0.176H7.214
|
||||
c-0.115,0-0.21,0.094-0.21,0.21v0.492c0,0.115,0.095,0.21,0.21,0.21h0.607c0.109,0,0.199-0.081,0.209-0.186v-0.347H7.356
|
||||
C7.358,16.199,7.367,16.232,7.4,16.274z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 214 KiB |
@@ -1,266 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#998C67" cx="16.102" cy="15.996" r="15.387"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5E3C2A" d="M24.516,22.446c-1.043,0.243-1.286,0.208-1.877,0.486
|
||||
c-0.591,0.278-0.765,0.226-1.042-0.139c-0.278-0.365-0.227-0.539-0.07-1.043s0.14-0.539,0.104-0.765
|
||||
c-0.034-0.226-0.069-0.348,0.174-0.66c0.243-0.313,0.504-0.521,0.486-0.973c-0.017-0.452,0.174-0.626-0.243-0.904
|
||||
s-0.504,0.208-0.66-0.521c-0.156-0.729-3.875-5.561-4.345-6.743c-0.469-1.182-0.972-2.672-0.799-3.649
|
||||
c0.101-0.574,0.729-1.147,0.66-1.529s-0.869-0.956-0.729-1.147c0.139-0.191,9.939-1.182,11.261,6.708
|
||||
C28.756,19.457,25.559,22.202,24.516,22.446z M14.854,26.13c0.087,0.678-4.709,1.147-7.021,0.278
|
||||
c-2.312-0.869-2.276-2.224-3.268-5.491c-0.99-3.267,1.061-6.273,1.738-6.569s1.13,0.243,2.085,0.417
|
||||
c0.956,0.174,0.748-0.243,1.529-0.348c0.782-0.104,0.817,0.208,1.772,0.73c0.956,0.521,1.355,1.286,1.564,1.564
|
||||
c0.209,0.278,0.782,0.938,1.217,1.355c0.434,0.417,0.399,0.625,0.625,1.321c0.227,0.695-0.104,0.73-0.277,1.599
|
||||
c-0.174,0.869,0.243,0.678,0.451,1.39c0.209,0.713-0.174,1.373-0.417,2.329C14.61,25.661,14.767,25.452,14.854,26.13z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#281F15" d="M7.115,12.451c0.201-0.128,0.294-0.349,0.294-0.477
|
||||
s0.036-0.128,0.11-0.037c0.073,0.092,0.128,0.128,0.293,0.037s0.349-0.386,0.404-0.514c0.055-0.129-0.147-0.294-0.221-0.404
|
||||
c-0.073-0.11-0.258-0.055-0.331-0.147c-0.072-0.092,0.073-0.331,0-0.441c-0.072-0.11-0.22-0.202-0.366-0.367
|
||||
c-0.147-0.166-0.238,0.055-0.368,0c-0.128-0.055-0.164-0.404-0.513-0.441c-0.349-0.037-0.275,0.606-0.331,0.771
|
||||
c-0.055,0.166,0,0.074,0.146,0.331c0.147,0.257,0.294,0.257,0.404,0.477c0.11,0.221-0.056,0.367-0.184,0.698
|
||||
s0.018,0.293,0.147,0.477C6.729,12.598,6.913,12.58,7.115,12.451z M19.12,7.458c0.11-0.238,0.146-0.11,0.366-0.22
|
||||
c0.221-0.11,0-0.184,0-0.331c0-0.146,0.184-0.202,0.073-0.514c-0.109-0.312-0.312,0.128-0.587-0.037
|
||||
c-0.275-0.166-0.165-0.239-0.221-0.551c-0.055-0.312-0.349-0.238-0.697-0.331c-0.349-0.092-0.55,0.019-0.771,0.184
|
||||
s-0.073,0.11,0,0.331s-0.147,0.128-0.184,0.331c-0.037,0.202,0,0.092,0.33,0.33c0.33,0.239,0.698,0.257,1.065,0.918
|
||||
C18.862,8.229,19.01,7.697,19.12,7.458z M24.736,9.037c0.019-0.22,0.093-0.293,0-0.514c-0.091-0.221-0.146-0.459-0.366-0.661
|
||||
c-0.221-0.202-1.34-0.808-1.249-0.33c0.092,0.477,0.11,0.715,0.11,1.028c0,0.312,0.018,0.184,0.221,0.514
|
||||
c0.201,0.331-0.037,0.551,0.439,0.478c0.479-0.074,0.35,0.165,0.551-0.11C24.646,9.166,24.719,9.258,24.736,9.037z M26.462,15.278
|
||||
c-0.128-0.275-0.221-0.257-0.44-0.22c-0.22,0.037-0.165,0.055-0.367,0.661c-0.201,0.605-0.037,0.275-0.184,0.624
|
||||
c-0.147,0.349,0,0.129,0.073,0.22c0.073,0.092,0.019,0.055,0,0.22c-0.018,0.166-0.11,0.129-0.073,0.367
|
||||
c0.036,0.239,0.073,0.055,0.331-0.11c0.257-0.165,0.055-0.037,0.477-0.293s0.11-0.019,0.331-0.881
|
||||
C26.829,15.003,26.591,15.554,26.462,15.278z M21.665,21.569c-0.238-0.037-0.495-0.203-0.294,0.183
|
||||
c0.202,0.385,0.238,0.477,0.404,0.625c0.165,0.146,0.275-0.019,0.183-0.367C21.867,21.66,21.903,21.605,21.665,21.569z
|
||||
M24.59,17.701c-0.11,0.202-0.367,0.349-0.11,0.478c0.257,0.128,0.33,0.128,0.515,0.037c0.184-0.092,0.293-0.055,0.257-0.331
|
||||
C25.214,17.609,24.699,17.499,24.59,17.701z M9.354,20.271c-0.22-0.239-0.146-0.202-0.44-0.551s-0.386-0.624-0.551-0.991
|
||||
c-0.166-0.367-0.184-0.11-0.221-0.587c-0.036-0.477-0.165-0.587-0.33-0.514c-0.165,0.073-0.386,0.055-0.478,0.367
|
||||
c-0.092,0.312,0,0.459-0.22,0.551c-0.221,0.092-0.258-0.055-0.331,0.367c-0.072,0.422,0,0.422,0.221,0.661
|
||||
c0.221,0.239,0.202,0.569,0.404,0.734c0.201,0.165,0.733,0.073,0.954,0.11c0.22,0.037,0.386,0.239,0.587,0.221
|
||||
C9.152,20.62,9.574,20.51,9.354,20.271z M13.393,25.337c-0.165-0.257-0.349-0.221-0.588-0.184
|
||||
c-0.238,0.037-0.22,0.275-0.293,0.697c-0.073,0.422,0.496,0.184,0.734,0.184s0.11-0.037,0.33-0.293
|
||||
C13.796,25.484,13.558,25.594,13.393,25.337z M9.024,24.016c-0.459,0.22,0.459,0.587,0.66,0.587c0.202,0,0.037-0.018,0.147-0.183
|
||||
c0.11-0.166,0.11-0.184-0.074-0.587C9.574,23.428,9.483,23.795,9.024,24.016z M20.185,8.009c-0.367-0.496-0.331-0.092-0.515,0.11
|
||||
c-0.184,0.202-0.275,0.22-0.514,0.22s-0.238-0.074-0.404,0.11c-0.165,0.183,0.037,0.128,0.294,0.44
|
||||
c0.258,0.312,0.734,0.202,0.845,0.257s0.184,0.055,0.403,0.11c0.221,0.055,0.203,0.037,0.441,0
|
||||
c0.238-0.037,0.018-0.11-0.037-0.294S20.552,8.505,20.185,8.009z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AA998D" d="M18.445,6.784c-0.124-0.143-0.159-0.32-0.249-0.391
|
||||
c-0.089-0.071-0.355,0.017-0.461,0.142c-0.106,0.124-0.035,0.124-0.214,0.319c-0.177,0.195-0.496,0.018-0.496,0.106
|
||||
c0,0,0.319,0.125,0.425,0.178c0.107,0.054,0.107,0.054,0.144,0.143c0.035,0.088-0.036,0.159-0.036,0.249
|
||||
c0,0.087,0.071,0.176,0.071,0.176s0.071,0.036,0.143,0.142c0.069,0.107,0.052,0.107,0.069,0.214
|
||||
c0.019,0.106-0.035,0.124,0.107,0.212c0.141,0.089,0.159,0.036,0.354,0.107c0.195,0.071,0.284-0.195,0.391-0.426
|
||||
c0.105-0.23,0.178-0.71,0.178-0.71l-0.035-0.143C18.836,7.102,18.571,6.925,18.445,6.784z M20.596,7.991
|
||||
c-0.088-0.142-0.158,0-0.142,0.178c0.019,0.177-0.141,0.354-0.354,0.426c-0.214,0.071-0.229-0.196-0.391-0.356
|
||||
c-0.16-0.159-0.124-0.053-0.177,0.072c-0.054,0.125-0.108,0.159-0.143,0.355c-0.035,0.194,0.958,0.728,1.137,0.674
|
||||
c0.177-0.053,0.213-0.23,0.39-0.461c0.177-0.231,0.07-0.231,0.034-0.391C20.916,8.329,20.685,8.133,20.596,7.991z M23.697,8.026
|
||||
c-0.158,0.018-0.408,0.248-0.566,0.461c-0.159,0.213-0.196,0.32-0.319,0.426c-0.125,0.107-0.195,0.071-0.214,0.355
|
||||
c-0.019,0.284,0,0.515,0.036,0.639c0.035,0.124,0.142,0.302,0.248,0.142c0.105-0.159,0.212-0.213,0.212-0.213
|
||||
s0.108-0.07,0.179-0.035c0.071,0.035,0.122,0.106,0.247,0.106c0.124,0,0.249,0.142,0.249-0.106c0-0.249-0.018-0.568,0.071-0.853
|
||||
c0.09-0.283,0.266-0.443,0.178-0.674C23.93,8.043,23.857,8.007,23.697,8.026z M7.513,11.469c0-0.107,0-0.143,0.07-0.249
|
||||
c0.072-0.107,0.019-0.178-0.07-0.213c-0.088-0.035-0.105-0.035-0.247-0.035c-0.143,0-0.161-0.036-0.284-0.143
|
||||
c-0.124-0.107-0.124-0.195-0.354-0.461C6.396,10.102,6.2,10.759,6.2,10.9s0.337,0.267,0.462,0.355
|
||||
c0.123,0.089,0.106,0.16,0.106,0.284c0,0.124-0.302,0.55-0.355,0.745c-0.054,0.196-0.107,0.178,0,0.32
|
||||
c0.106,0.142,0.089,0.213,0.215,0.249c0.121,0.036,0.086,0.071,0.282-0.071c0.194-0.143,0.515-0.479,0.673-0.639
|
||||
c0.161-0.16,0.072-0.319,0.037-0.426C7.583,11.61,7.513,11.575,7.513,11.469z M20.239,24.689
|
||||
c-0.143-0.195-0.213-0.088-0.285-0.035c-0.069,0.054,0.072,0.089-0.036,0.249c-0.104,0.159,0.036,0.212-0.211,0.355
|
||||
c-0.25,0.142-0.284,0.159-0.284,0.283c0,0.125-0.019,0.302,0,0.355c0.018,0.054,0.248-0.071,0.319-0.106s0.052-0.053,0.143,0
|
||||
c0.087,0.054,0.195,0.071,0.247-0.071c0.054-0.142,0.054-0.159,0.107-0.248c0.053-0.088,0.07,0.106,0.213-0.106
|
||||
c0.143-0.213,0.354-0.125,0.105-0.355C20.31,24.779,20.382,24.885,20.239,24.689z M26.608,17.29
|
||||
c-0.194-0.498-0.089-0.089-0.318-0.036c-0.232,0.053-0.25,0.301-0.391,0.567c-0.141,0.267-0.515,0.071-0.64,0.32
|
||||
c-0.124,0.249,0.231,0.284,0.284,0.498c0.053,0.212-0.088,0.231-0.213,0.461c-0.125,0.23-0.035,0.178,0.105,0.284
|
||||
c0.143,0.107,0.035,0.036,0.143,0.178c0.107,0.142,0.088,0.124,0.391,0.07c0.302-0.053,0.392-0.39,0.746-1.064
|
||||
C27.07,17.892,26.804,17.786,26.608,17.29z M8.542,19.986c-0.017,0.107,0.072,0.391,0.249,0.284
|
||||
c0.178-0.106,0.124-0.177,0.32-0.141c0.194,0.035,0.337,0.106,0.532,0.177c0.194,0.071,0.283,0,0.105-0.177
|
||||
c-0.177-0.178-0.285-0.214-0.391-0.533c-0.105-0.319,0.019-0.302-0.105-0.639c-0.125-0.338-0.249-0.355-0.392-0.497
|
||||
c-0.142-0.143-0.265-0.125-0.319,0.071c-0.053,0.195-0.088,0.372-0.249,0.567c-0.158,0.195-0.373,0.195-0.249,0.391
|
||||
c0.126,0.194,0.162,0.301,0.321,0.319C8.525,19.827,8.56,19.879,8.542,19.986z M9.43,23.536c-0.338-0.337-0.088-0.302-0.283-0.532
|
||||
c-0.195-0.231-0.159-0.036-0.641,0.212c-0.478,0.249,1.102,1.296,1.28,1.349c0.176,0.054,0.105,0,0.211-0.213
|
||||
c0.107-0.211,0-0.124-0.07-0.354S9.768,23.873,9.43,23.536z M12.942,25.346c-0.318-0.16-0.211-0.053-0.602,0.248
|
||||
c-0.393,0.302,0.62,0.337,0.922,0.426c0.302,0.089,0.089,0.018,0.071-0.248C13.315,25.506,13.263,25.506,12.942,25.346z
|
||||
M22.302,21.587c-0.147-0.08-0.108,0.026-0.269-0.026c-0.16-0.054-0.055-0.147-0.241-0.027c-0.188,0.12-0.04,0.133,0,0.24
|
||||
c0.039,0.107,0.026,0.013,0.081,0.16c0.054,0.147,0.013,0.054-0.055,0.241c-0.066,0.187-0.12,0.027-0.268,0.133
|
||||
c-0.146,0.107,0.016,0.094,0.135,0.214c0.12,0.12,0.039,0.054,0.429-0.347c0.387-0.4,0.119-0.121,0.319-0.375
|
||||
C22.635,21.548,22.449,21.667,22.302,21.587z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#232323" d="M16.102,0.609c-8.498,0-15.387,6.889-15.387,15.387
|
||||
s6.889,15.387,15.387,15.387s15.387-6.889,15.387-15.387S24.6,0.609,16.102,0.609z M16.258,26.611
|
||||
c-5.811,0-10.521-4.711-10.521-10.521S10.447,5.569,16.258,5.569s10.521,4.71,10.521,10.521S22.068,26.611,16.258,26.611z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F4DA6E" d="M18.469,18.948c-0.109,0-0.21-0.018-0.309-0.055l-0.063-0.023
|
||||
c-0.512-0.193-0.779-0.301-0.779-0.45c0-0.085,0.143-0.208,1.143-0.905c0.283-0.198,0.551-0.385,0.634-0.456
|
||||
c0.212-0.184,0.425-0.295,0.709-0.371c0.206-0.056,0.741-0.175,0.999-0.175c0.077,0,0.16,0.009,0.193,0.066
|
||||
c0.067,0.118,0.085,0.22,0.086,0.225l0.002,0.017l-0.005,0.017c-0.042,0.12-0.415,1.18-0.609,1.344
|
||||
c-0.198,0.168-0.701,0.56-1.108,0.593c-0.129,0.011-0.256,0.046-0.39,0.084C18.811,18.902,18.643,18.948,18.469,18.948z
|
||||
M13.479,18.932c-0.185,0-0.313-0.012-0.394-0.038c-0.218-0.068-0.88-0.276-1.12-0.614c-0.084-0.118-0.205-0.258-0.322-0.395
|
||||
c-0.206-0.238-0.4-0.464-0.462-0.628c-0.103-0.272-0.003-0.493,0.001-0.503l0.004-0.006l0.004-0.006
|
||||
c0.112-0.148,0.348-0.18,0.561-0.197c0.023-0.001,0.052-0.002,0.084-0.002c0.243,0,0.723,0.061,0.983,0.292
|
||||
c0.271,0.24,0.933,0.718,1.142,0.837c0.031,0.018,0.75,0.423,0.848,0.501c0.09,0.071,0.082,0.117,0.048,0.199
|
||||
c-0.007,0.018-0.017,0.04-0.026,0.068c-0.056,0.156-0.323,0.456-0.544,0.456l0,0c-0.049,0-0.136,0.006-0.239,0.013
|
||||
C13.877,18.919,13.668,18.932,13.479,18.932z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D6D6D6" d="M22.645,13.033l-0.467-2.368c-0.711-1.771-3.912-3.572-6.35-3.572
|
||||
c-0.025,0-0.051,0-0.077,0.001l-1.312,0.308c-1.467,0.571-3.507,1.52-4.315,3.149l-0.192,1.004l-0.349,1.663
|
||||
c0.06,0.474,0.282,1.026,0.497,1.561c0.227,0.563,0.441,1.093,0.436,1.473v0.017l-0.23,0.425l0.155,1.479l-0.384,0.766
|
||||
c0.15,0.297,0.301,0.396,0.524,0.545c0.077,0.051,0.163,0.107,0.259,0.18c0.074,0.057,0.145,0.11,0.212,0.161
|
||||
c0.502,0.384,0.805,0.615,1.192,0.615c0.303,0,0.676-0.136,1.287-0.47l0.061-0.033l0.078,0.156l-0.001,0.018
|
||||
c-0.024,0.395-0.208,0.761-0.403,1.148c-0.308,0.612-0.626,1.246-0.308,2.039c0.05,0.048,0.091,0.082,0.129,0.112
|
||||
c0.082,0.067,0.149,0.122,0.229,0.261l0.398-0.239l0.213,0.595c0.049,0.021,0.086,0.03,0.116,0.03c0.051,0,0.091-0.026,0.179-0.085
|
||||
l0.104-0.07l0.034,0.065c0.18,0.34,1.008,0.597,1.926,0.597c0.856,0,1.473-0.229,1.57-0.583L17.88,23.9l0.341,0.17l0.01-0.011
|
||||
l0.006-0.003c0.141-0.09,0.221-0.252,0.242-0.495l0.003-0.037l0.149-0.073l0.293,0.22c0.031-0.039,0.053-0.073,0.072-0.104
|
||||
c0.066-0.106,0.117-0.173,0.307-0.243c0.102-0.645,0.025-1.405-0.197-1.948c-0.056-0.137-0.129-0.258-0.199-0.375
|
||||
c-0.149-0.248-0.305-0.506-0.312-0.934l-0.001-0.104l1.102,0.466c0.078,0.018,0.162,0.027,0.247,0.027
|
||||
c0.938,0,2.009-1.058,2.264-1.557c-0.405-0.72-0.368-0.988-0.245-1.849l0.021-0.147c0.022-0.167-0.049-0.263-0.125-0.365
|
||||
c-0.046-0.063-0.089-0.12-0.107-0.192l-0.005-0.019l0.473-1.575c0.04-0.125,0.096-0.256,0.154-0.394
|
||||
C22.536,13.973,22.723,13.537,22.645,13.033z M14.771,18.318c-0.047,0.133-0.295,0.413-0.481,0.413
|
||||
c-0.186-0.001-0.931,0.077-1.179,0c-0.248-0.079-0.863-0.277-1.086-0.59c-0.223-0.313-0.682-0.761-0.775-1.008
|
||||
c-0.094-0.249,0-0.45,0-0.45c0.094-0.124,0.311-0.155,0.512-0.171c0.202-0.016,0.748,0.033,1.018,0.273
|
||||
c0.27,0.238,0.938,0.722,1.154,0.845c0.217,0.122,0.76,0.433,0.838,0.495C14.849,18.187,14.818,18.187,14.771,18.318z M20.434,18.03
|
||||
c-0.188,0.157-0.684,0.546-1.07,0.576c-0.389,0.031-0.762,0.28-1.172,0.125c-0.411-0.155-0.799-0.296-0.799-0.413
|
||||
c0-0.115,1.521-1.108,1.753-1.31c0.232-0.202,0.45-0.295,0.683-0.357c0.232-0.062,1.055-0.247,1.117-0.139
|
||||
c0.062,0.108,0.077,0.201,0.077,0.201S20.619,17.872,20.434,18.03z"/>
|
||||
<path opacity="0.7" fill="#282621" d="M16.273,24.827c-0.75,0-1.645-0.175-2.03-0.563c-0.384,0.207-0.639-0.097-0.683-0.438
|
||||
l-0.323,0.077c-0.319-0.044-0.306-0.245-0.489-0.427c-0.524-1.226,0.303-2.003,0.596-3.117c-0.686,0.346-1.309,0.486-1.98,0.034
|
||||
c-0.535-0.36-1.332-0.804-1.596-1.414l0.001-0.089l0.397-0.796c-0.089-0.69-0.284-1.298,0.082-1.918
|
||||
c-0.062-1.017-0.875-1.535-0.932-2.781c-0.043-0.933,0.357-1.986,0.534-2.903c0.964-1.975,3.782-3.525,5.966-3.666
|
||||
c2.578,0,5.85,1.864,6.604,3.764c0.156,0.786,0.476,1.737,0.551,2.535c0.152,0.979-0.676,2.253-0.964,3.216
|
||||
c0.046-0.072,0.235,0.537,0.227,0.599c-0.104,0.72-0.157,1.26,0.234,1.903l0.004,0.092c-0.329,0.71-1.098,1.331-1.808,1.626
|
||||
c-0.674,0.279-1.15,0.086-1.771-0.176c0.142,0.515,0.501,0.91,0.614,1.451c0.113,0.533,0.125,1.094,0.029,1.631
|
||||
c-0.201,0.107-0.414,0.283-0.527,0.498l-0.135,0.014l-0.189-0.142c-0.059,0.201-0.183,0.361-0.353,0.479l-0.138,0.047l-0.196-0.098
|
||||
C17.744,24.624,17.125,24.827,16.273,24.827z M14.378,23.949c0.394,0.744,3.178,0.95,3.435,0.021l0.033-0.117l0.363,0.182
|
||||
c0.154-0.133,0.23-0.33,0.229-0.531l0.185-0.09l0.282,0.212c0.107-0.151,0.169-0.253,0.355-0.325
|
||||
c0.104-0.683,0.047-1.489-0.291-2.104c-0.23-0.423-0.443-0.78-0.422-1.283c0.418,0.177,0.92,0.512,1.383,0.512
|
||||
c0.85,0,1.896-0.812,2.248-1.568c-0.416-0.647-0.352-1.224-0.242-1.957c0.034-0.239-0.176-0.336-0.23-0.544
|
||||
c0.259-0.964,1.041-2.365,0.893-3.318c-0.061-0.786-0.314-1.596-0.467-2.37c-0.695-1.745-3.886-3.541-6.314-3.541
|
||||
c-2.108,0.456-4.66,1.38-5.68,3.448c-0.168,0.89-0.352,1.775-0.537,2.662c0.137,1.032,0.949,1.968,0.937,3.016
|
||||
c-0.078,0.16-0.16,0.319-0.245,0.476c0.062,0.474,0.117,0.946,0.167,1.421c-0.131,0.279-0.259,0.56-0.399,0.834
|
||||
c0.325,0.479,1.225,1.076,1.743,1.321c0.603,0.284,1.274-0.124,1.791-0.415c0.04,0.071,0.071,0.146,0.096,0.223
|
||||
c-0.069,1.144-1.206,1.97-0.708,3.186c0.13,0.079,0.256,0.198,0.334,0.328l0.406-0.243l0.234,0.66
|
||||
c0.004-0.031,0.266-0.116,0.332-0.164L14.378,23.949z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#282828" d="M15.73,7.026c2.572-0.043,5.795,1.852,6.499,3.62
|
||||
c0.155,0.791,0.312,1.583,0.468,2.374c0.109,0.708-0.277,1.28-0.429,1.751c-0.155,0.52-0.312,1.038-0.467,1.558
|
||||
c0.044,0.166,0.275,0.284,0.233,0.583c-0.139,0.987-0.202,1.222,0.233,1.985c-0.263,0.566-1.573,1.836-2.607,1.596
|
||||
c-0.337-0.143-0.675-0.285-1.013-0.429c0.01,0.61,0.328,0.851,0.506,1.285c0.239,0.585,0.303,1.388,0.195,2.024
|
||||
c-0.309,0.104-0.248,0.187-0.428,0.389c-0.104-0.078-0.208-0.155-0.312-0.233c-0.026,0.013-0.052,0.025-0.078,0.039
|
||||
c-0.022,0.248-0.105,0.438-0.272,0.544c-0.014,0.014-0.025,0.026-0.039,0.039c-0.104-0.052-0.207-0.104-0.312-0.155
|
||||
c-0.254,0.922-3.219,0.759-3.62,0c-0.176,0.117-0.224,0.171-0.428,0.078c-0.064-0.182-0.13-0.363-0.194-0.545
|
||||
c-0.13,0.078-0.259,0.155-0.39,0.233c-0.129-0.253-0.209-0.252-0.389-0.429c-0.545-1.328,0.638-2.221,0.7-3.229
|
||||
c-0.013-0.026-0.026-0.053-0.039-0.079c-1.472,0.806-1.66,0.522-2.763-0.311c-0.372-0.281-0.601-0.329-0.818-0.778
|
||||
c0.131-0.26,0.26-0.519,0.39-0.778c-0.052-0.493-0.104-0.986-0.155-1.479c0.077-0.143,0.155-0.285,0.232-0.429
|
||||
c0.01-0.72-0.815-2.05-0.934-3.035c0.117-0.558,0.234-1.116,0.35-1.674c0.066-0.338,0.131-0.675,0.195-1.012
|
||||
c0.779-1.579,2.662-2.53,4.359-3.191C14.848,7.234,15.289,7.129,15.73,7.026z M15.846,7.259c-0.479,0.117-0.959,0.233-1.439,0.351
|
||||
c-1.889,0.686-3.345,1.614-4.087,3.464c-0.274,0.684-0.707,1.788-0.351,2.725c0.247,0.7,0.493,1.401,0.74,2.102
|
||||
c0.025-0.013,0.052-0.025,0.078-0.038c0.16-1.139,0.221-1.928-0.117-2.959c0.052,0.039,0.104,0.078,0.156,0.117
|
||||
c0.234,0.612,0.477,2.005,0.155,2.802c-0.169,0.312-0.338,0.623-0.506,0.935c0.038,0.493,0.077,0.986,0.116,1.479
|
||||
c-0.063,0.319-0.266,0.536-0.272,0.817c0.169,0.18,0.308,0.354,0.584,0.429c0-0.014,0-0.026,0-0.039
|
||||
c-0.065-0.168-0.13-0.338-0.194-0.506c0.052,0.026,0.104,0.052,0.155,0.078c0.987,2.605,1.743,0.387,3.659,0.7
|
||||
c0.039,0.052,0.077,0.104,0.116,0.155c0.093,0.303-0.046,0.63-0.272,0.74c0.121-0.228,0.24-0.435,0.117-0.701
|
||||
c-0.159,0.079-0.445,0.121-0.545,0.272c-0.334,0.604-0.686,1.132-0.856,1.868c0.207,0.107,0.181,0.286,0.272,0.507
|
||||
c0.064,0,0.13,0,0.194,0c0.039,0.116,0.077,0.232,0.117,0.35c0.026-0.013,0.052-0.026,0.077-0.039
|
||||
c0.064-0.091,0.131-0.182,0.195-0.271c0.064,0.012,0.13,0.025,0.194,0.038c0.11,0.154,0.177,0.239,0.233,0.468
|
||||
c0.025-0.014,0.053-0.026,0.078-0.039c0.064-0.091,0.129-0.183,0.194-0.273c0.065,0.014,0.13,0.026,0.195,0.039
|
||||
c0.128,0.178,0.216,0.385,0.35,0.584c0.013,0,0.026,0,0.039,0c0.054-0.214,0.141-0.264,0.272-0.389
|
||||
c0.359-0.01,0.438,0.059,0.623,0.194c0.127-0.13,0.363-0.278,0.622-0.155c0.171,0.087,0.201,0.211,0.312,0.35
|
||||
c0.014,0,0.026,0,0.039,0c0.037-0.353,0.191-0.442,0.389-0.623c0.053,0.026,0.104,0.053,0.156,0.078
|
||||
c0.078,0.078,0.156,0.156,0.234,0.234c0.043-0.285,0.141-0.391,0.35-0.506c0.179,0.09,0.215,0.191,0.351,0.311
|
||||
c0.052-0.13,0.104-0.259,0.155-0.39c0.064,0.027,0.13,0.052,0.195,0.079c0-0.336,0.094-0.441,0.232-0.624
|
||||
c-0.383-0.606-0.472-1.383-0.934-1.907c-0.156-0.052-0.312-0.104-0.467-0.155c-0.058,0.097-0.07,0.132-0.078,0.312
|
||||
c0.052,0.13,0.104,0.259,0.156,0.39c-0.053-0.039-0.104-0.078-0.156-0.117c-0.076-0.241-0.121-0.436-0.078-0.739
|
||||
c0.026-0.013,0.053-0.026,0.078-0.039c2.105-0.364,2.518,2.077,3.775-0.817c0.013,0,0.025,0,0.039,0
|
||||
c-0.053,0.194-0.104,0.39-0.156,0.584c0.264-0.068,0.463-0.252,0.584-0.467c-0.09-0.246-0.182-0.493-0.271-0.74
|
||||
c0.039-0.506,0.077-1.012,0.116-1.518c-0.155-0.272-0.312-0.545-0.468-0.817c-0.307-0.641-0.287-2.568,0.234-2.997
|
||||
c-0.216,0.671-0.553,2.329,0,2.958c0.013,0,0.025,0,0.039,0c0.271-0.855,0.545-1.713,0.816-2.569
|
||||
c0.125-0.665-0.139-1.211-0.271-1.635C21.191,8.758,19.036,7.817,15.846,7.259z M19.115,23.217c-0.012-0.22-0.025-0.441-0.038-0.661
|
||||
c0.155,0.12,0.176,0.455,0.194,0.7C19.22,23.243,19.168,23.23,19.115,23.217z M18.648,23.451c-0.04-0.213,0.058-0.464,0.117-0.7
|
||||
c0.202,0.197,0.192,0.468,0.156,0.817C18.83,23.529,18.74,23.49,18.648,23.451z M18.221,23.996c-0.215-0.413-0.33-0.767-0.078-1.207
|
||||
c0.039,0,0.078,0,0.117,0c0.188,0.323,0.133,0.702,0.078,1.13C18.299,23.944,18.26,23.97,18.221,23.996z M17.559,24.268
|
||||
c-0.064-0.013-0.129-0.026-0.193-0.039c-0.09-0.352-0.138-0.551-0.117-0.973c0.077-0.091,0.155-0.182,0.232-0.273
|
||||
c0.039,0,0.078,0,0.117,0c0.099,0.25,0.319,0.723,0.156,1.091C17.689,24.187,17.648,24.19,17.559,24.268z M17.014,24.424
|
||||
c-0.259,0.038-0.519,0.077-0.777,0.116c-0.159-0.325-0.076-0.852,0-1.207c0.09-0.052,0.182-0.104,0.271-0.155
|
||||
c0.065,0.013,0.13,0.026,0.195,0.039c0.158,0.234,0.532,0.674,0.35,1.09C17.04,24.346,17.027,24.385,17.014,24.424z M15.262,24.462
|
||||
c-0.038-0.038-0.077-0.077-0.115-0.116c-0.006-0.607,0.183-0.833,0.428-1.168c0.117,0.026,0.233,0.052,0.35,0.078
|
||||
c0.148,0.266,0.113,0.742,0.156,1.168c0,0.013,0,0.025,0,0.038C15.827,24.581,15.592,24.486,15.262,24.462z M14.718,24.268
|
||||
c-0.078-0.039-0.155-0.078-0.233-0.117c-0.092-0.446,0.006-0.866,0.155-1.168c0.039,0,0.078,0,0.117,0
|
||||
c0.309,0.415,0.224,0.705,0.116,1.246C14.821,24.242,14.77,24.255,14.718,24.268z M13.979,23.996
|
||||
c-0.187-0.348-0.164-0.825-0.039-1.207c0.064,0.014,0.13,0.026,0.194,0.039c0.14,0.506,0.066,0.647-0.077,1.129
|
||||
C14.03,23.97,14.004,23.983,13.979,23.996z M13.316,23.568c-0.041-0.348-0.02-0.577,0.117-0.817
|
||||
c0.064,0.194,0.129,0.389,0.193,0.583C13.535,23.459,13.495,23.518,13.316,23.568z M12.966,23.256c0.04-0.233,0.078-0.468,0.117-0.7
|
||||
c0.097,0.111,0.036,0.39,0.077,0.583c-0.051,0.039-0.104,0.078-0.154,0.117C12.992,23.256,12.979,23.256,12.966,23.256z
|
||||
M15.652,19.13c0.116,0.013,0.232,0.026,0.35,0.039c0.022,0.173,0.03,0.182,0.117,0.272c0.052-0.104,0.104-0.207,0.155-0.312
|
||||
c0.274,0.003,0.349,0.058,0.507,0.156c0.156,0.406,0.572,1.405,0.389,1.867c-0.078,0.091-0.156,0.183-0.233,0.273
|
||||
c-0.065-0.013-0.13-0.026-0.195-0.039c-0.155-0.312-0.312-0.623-0.467-0.934c-0.13,0.024-0.259,0.052-0.39,0.077
|
||||
c-0.088,0.334-0.245,0.754-0.545,0.896c-0.104-0.078-0.207-0.156-0.311-0.234C15.008,20.423,15.277,19.544,15.652,19.13z
|
||||
M11.526,16.368c0.39-0.008,0.934-0.061,1.206,0.077c0.428,0.377,0.857,0.753,1.285,1.129c0.519,0.272,1.037,0.545,1.557,0.817
|
||||
c-0.438-0.023-0.58-0.072-0.779,0.194c-0.609,0.284-0.826,0.696-1.789,0.701c0.012-0.026,0.025-0.052,0.038-0.078
|
||||
c0.356-0.039,0.7-0.145,0.896-0.351c0-0.013,0-0.025,0-0.038c-0.742,0.023-1.469,0.06-1.947-0.273
|
||||
c-0.219-0.233-0.44-0.467-0.661-0.7c0,0.013,0,0.025,0,0.038c0.165,0.435,0.413,0.684,0.584,1.052c-0.013,0-0.026,0-0.038,0
|
||||
c-0.438-0.304-0.732-0.792-0.857-1.401c-0.012-0.233-0.025-0.468-0.038-0.7c-0.067-0.108-0.146-0.043-0.233-0.039
|
||||
c-0.014-0.013-0.026-0.025-0.039-0.039c0-0.013,0-0.025,0-0.039C10.981,16.6,11.254,16.484,11.526,16.368z M11.487,16.639
|
||||
c-0.026,0.013-0.052,0.026-0.078,0.039c0.18,1.13,2.168,2.855,3.23,1.557c-0.013-0.025-0.026-0.052-0.039-0.077
|
||||
c-0.739-0.454-1.479-0.908-2.218-1.362C12.084,16.744,11.785,16.691,11.487,16.639z M19.699,16.368
|
||||
c0.864-0.021,1.299,0.131,1.83,0.35c0,0.026,0,0.053,0,0.078c-0.092,0-0.182,0-0.273,0c0.021,0.981-0.297,1.805-0.934,2.141
|
||||
c0.133-0.356,0.406-0.666,0.584-1.052c-0.013-0.013-0.025-0.025-0.039-0.038c-0.922,0.775-0.885,1.011-2.607,0.974
|
||||
c0.025,0.038,0.052,0.077,0.078,0.116c0.299,0.116,0.596,0.234,0.895,0.351c-0.924,0.022-1.6-0.414-1.984-0.935
|
||||
c-0.195,0.013-0.39,0.025-0.584,0.039c0.013-0.026,0.025-0.052,0.039-0.078C17.978,18.093,18.779,16.997,19.699,16.368z
|
||||
M20.712,16.639c-0.325,0.064-0.649,0.131-0.974,0.195c-0.713,0.467-1.427,0.934-2.141,1.4c0.621,0.797,2.33,0.145,2.725-0.389
|
||||
c0.169-0.39,0.338-0.779,0.506-1.168C20.789,16.666,20.75,16.652,20.712,16.639z M17.326,13.642
|
||||
c-0.004,0.419-1.005,1.074-1.363,1.323c0.053,0.065,0.104,0.131,0.156,0.195c0.195,0.182,0.389,0.363,0.584,0.545
|
||||
c-0.285-0.207-0.572-0.415-0.857-0.623c-0.287,0.204-0.725,0.608-1.051,0.623c0.273-0.26,0.545-0.519,0.818-0.779
|
||||
c-0.247-0.245-0.493-0.492-0.74-0.739c0.014-0.013,0.025-0.026,0.039-0.039c0.272,0.221,0.545,0.442,0.818,0.662
|
||||
C16.25,14.662,16.986,14.024,17.326,13.642z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#AA998D" d="M16.193,31.532c-8.609,0-15.588-6.979-15.588-15.587
|
||||
S7.584,0.358,16.193,0.358c8.607,0,15.586,6.979,15.586,15.587S24.801,31.532,16.193,31.532z M16.161,1.039
|
||||
c-8.233,0-14.908,6.675-14.908,14.908s6.675,14.908,14.908,14.908s14.908-6.675,14.908-14.908S24.395,1.039,16.161,1.039z
|
||||
M16.203,30.374c-7.895,0-14.328-6.543-14.328-14.438c0-7.896,6.258-14.47,14.328-14.47s14.232,6.587,14.232,14.482
|
||||
C30.436,23.843,24.1,30.374,16.203,30.374z M16.193,1.979c-7.714,0-13.893,6.252-13.893,13.966s6.179,13.967,13.893,13.967
|
||||
c7.713,0,13.741-6.253,13.741-13.967S23.906,1.979,16.193,1.979z M16.193,26.765c-5.977,0-10.821-4.845-10.821-10.82
|
||||
s4.845-10.82,10.821-10.82c5.976,0,10.82,4.845,10.82,10.82S22.169,26.765,16.193,26.765z M16.171,5.597
|
||||
c-5.716,0-10.35,4.633-10.35,10.349s4.634,10.35,10.35,10.35s10.349-4.634,10.349-10.35S21.887,5.597,16.171,5.597z M21.23,5.147
|
||||
c-0.077,0.243-0.338,0.376-0.58,0.299l-1.189-0.383c-0.242-0.078-0.375-0.339-0.298-0.58l0.331-1.029
|
||||
c0.077-0.241,0.338-0.374,0.58-0.296l1.189,0.382c0.242,0.077,0.376,0.338,0.298,0.58L21.23,5.147z M19.93,3.502l-0.385,1.198
|
||||
l1.248,0.401l0.386-1.198L19.93,3.502z M16.918,4.216l1.393,0.159l0.049-0.435l-0.662-0.075c-0.043-0.005-0.189-0.031-0.271-0.162
|
||||
c-0.063-0.102-0.074-0.175-0.074-0.215l1.472,0.168l-0.085,0.755c-0.05,0.226-0.266,0.38-0.502,0.354l-1.328-0.151
|
||||
c-0.252-0.028-0.435-0.258-0.405-0.511l0.122-1.072c0.029-0.253,0.258-0.436,0.51-0.407l1.328,0.151
|
||||
c0.226,0.026,0.398,0.213,0.408,0.438l-1.814-0.207L16.918,4.216z M15.145,4.645l-1.27,0.148c-0.248,0.029-0.474-0.136-0.525-0.376
|
||||
l1.738-0.202L15.046,3.86l-1.265,0.148c-0.248,0.028-0.474-0.136-0.525-0.375l-0.034-0.297c-0.031-0.262,0.157-0.503,0.421-0.532
|
||||
l1.234-0.144c0.246-0.03,0.473,0.135,0.525,0.373l0.002-0.001l-1.703,0.2l0.04,0.344l1.267-0.147
|
||||
c0.247-0.029,0.473,0.135,0.523,0.374l0.035,0.309C15.598,4.375,15.408,4.615,15.145,4.645z M12.625,5.077l-1.149,0.404
|
||||
c-0.251,0.087-0.524-0.045-0.612-0.295l-0.345-0.983c-0.088-0.25,0.044-0.525,0.294-0.613l1.15-0.401
|
||||
c0.232-0.083,0.484,0.024,0.59,0.24l0.008,0.023l-1.549,0.542l0.364,1.04l1.551-0.544l0.008,0.023
|
||||
C12.992,4.75,12.859,4.995,12.625,5.077z M11.276,28.264l0.688-1.718l-0.263-0.105l0.067-0.167l1.053,0.423
|
||||
c0.367,0.148,0.614,0.348,0.739,0.603c0.124,0.254,0.12,0.546-0.014,0.876c-0.132,0.333-0.332,0.548-0.599,0.647
|
||||
c-0.266,0.097-0.583,0.072-0.951-0.075l-1.052-0.422l0.066-0.167L11.276,28.264z M11.996,28.553
|
||||
c0.214,0.085,0.398,0.081,0.553-0.016c0.155-0.098,0.293-0.296,0.413-0.596c0.117-0.298,0.156-0.535,0.112-0.711
|
||||
c-0.045-0.177-0.175-0.309-0.388-0.395l-0.191-0.076l-0.69,1.718L11.996,28.553z M13.955,27.069l1.133,0.083l-0.013,0.178
|
||||
l-0.281-0.02l-0.079,1.102c-0.021,0.275,0.009,0.47,0.086,0.586c0.077,0.116,0.22,0.182,0.428,0.196
|
||||
c0.202,0.016,0.351-0.029,0.443-0.135c0.094-0.104,0.15-0.292,0.17-0.565l0.079-1.104l-0.28-0.019l0.012-0.18l0.77,0.055
|
||||
l-0.014,0.18l-0.282-0.021l-0.081,1.133c-0.025,0.337-0.115,0.572-0.271,0.704c-0.156,0.133-0.405,0.188-0.749,0.163
|
||||
c-0.342-0.025-0.582-0.115-0.717-0.271c-0.135-0.155-0.191-0.401-0.167-0.737l0.081-1.131l-0.279-0.02L13.955,27.069z
|
||||
M18.061,28.561c-0.061-0.042-0.178-0.072-0.352-0.092l-0.339-0.037c-0.223-0.027-0.382-0.082-0.481-0.168
|
||||
c-0.102-0.086-0.164-0.219-0.188-0.398c-0.026-0.219,0.021-0.396,0.148-0.537c0.129-0.14,0.324-0.226,0.584-0.262
|
||||
c0.128-0.017,0.263-0.024,0.403-0.021c0.143,0.002,0.29,0.017,0.443,0.04l0.066,0.484l-0.188,0.025
|
||||
c-0.048-0.148-0.126-0.25-0.231-0.307c-0.104-0.057-0.244-0.074-0.421-0.051c-0.146,0.02-0.252,0.059-0.318,0.12
|
||||
c-0.067,0.061-0.094,0.14-0.082,0.24c0.013,0.091,0.047,0.157,0.104,0.197c0.058,0.041,0.189,0.073,0.394,0.099l0.339,0.037
|
||||
c0.211,0.023,0.369,0.084,0.475,0.179c0.106,0.096,0.172,0.237,0.197,0.426c0.028,0.222-0.026,0.399-0.163,0.534
|
||||
c-0.138,0.136-0.355,0.223-0.649,0.262c-0.145,0.02-0.288,0.027-0.432,0.02c-0.144-0.005-0.292-0.024-0.445-0.055l-0.068-0.519
|
||||
l0.187-0.024c0.051,0.16,0.135,0.273,0.249,0.34c0.117,0.069,0.269,0.089,0.454,0.064c0.154-0.02,0.265-0.064,0.336-0.132
|
||||
c0.072-0.068,0.101-0.159,0.085-0.271C18.156,28.667,18.122,28.602,18.061,28.561z M20.858,26.756l-0.187,0.069l-0.118-0.329
|
||||
l-0.574,0.208l0.621,1.718l0.276-0.1l0.061,0.168l-1.091,0.395l-0.061-0.169l0.275-0.099l-0.621-1.721l-0.569,0.207l0.118,0.329
|
||||
L18.8,27.5l-0.189-0.519l2.061-0.745L20.858,26.756z"/>
|
||||
<path fill="#5B4D35" d="M16.12,30.957c-8.248,0-14.958-6.71-14.958-14.958S7.872,1.041,16.12,1.041s14.958,6.71,14.958,14.958
|
||||
S24.368,30.957,16.12,30.957z M16.12,1.14c-8.192,0-14.858,6.666-14.858,14.858S7.928,30.857,16.12,30.857
|
||||
s14.858-6.666,14.858-14.858S24.313,1.14,16.12,1.14z M16.162,30.475c-3.824,0-7.434-1.518-10.16-4.272
|
||||
c-2.72-2.749-4.217-6.377-4.217-10.215c0-3.86,1.474-7.494,4.151-10.231c2.706-2.766,6.337-4.288,10.226-4.288
|
||||
c3.883,0,7.497,1.525,10.179,4.296c2.646,2.733,4.104,6.369,4.104,10.236C30.444,23.982,24.037,30.475,16.162,30.475z M16.162,1.568
|
||||
c-7.873,0-14.277,6.469-14.277,14.42c0,7.934,6.404,14.388,14.277,14.388c7.82,0,14.183-6.448,14.183-14.375
|
||||
C30.345,7.908,24.115,1.568,16.162,1.568z M16.152,30.013c-3.74,0-7.246-1.458-9.875-4.105c-2.623-2.643-4.066-6.162-4.066-9.911
|
||||
s1.443-7.269,4.066-9.911c2.629-2.646,6.135-4.104,9.875-4.104c3.73,0,7.21,1.458,9.799,4.105c2.574,2.633,3.992,6.152,3.992,9.91
|
||||
s-1.418,7.278-3.992,9.911C23.362,28.555,19.883,30.013,16.152,30.013z M16.152,2.081c-7.633,0-13.842,6.243-13.842,13.916
|
||||
c0,7.674,6.209,13.917,13.842,13.917c7.678,0,13.691-6.113,13.691-13.917S23.83,2.081,16.152,2.081z M16.152,26.667
|
||||
c-5.885,0-10.67-4.786-10.67-10.67s4.785-10.67,10.67-10.67c5.883,0,10.669,4.786,10.669,10.67S22.035,26.667,16.152,26.667z
|
||||
M16.152,5.458c-5.812,0-10.539,4.729-10.539,10.539s4.728,10.539,10.539,10.539c5.811,0,10.538-4.729,10.538-10.539
|
||||
S21.963,5.458,16.152,5.458z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 27 KiB |
@@ -1,712 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_10">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#140F21" cx="15.882" cy="16.224" r="15.039"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_3_2_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#92B5BD" cx="15.882" cy="16.224" r="14.491"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_3">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#9FDCF0" cx="15.882" cy="16.223" r="14.384"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.017,2.581l0.432,0.684c0.033,0.054,0.086,0.085,0.148,0.088
|
||||
c0.063,0.004,0.118-0.021,0.158-0.069l0.507-0.63c0.042-0.053,0.102-0.077,0.168-0.069c0.066,0.007,0.119,0.045,0.148,0.104
|
||||
l0.351,0.729c0.027,0.056,0.075,0.093,0.138,0.104c0.062,0.011,0.12-0.008,0.164-0.052l0.576-0.567
|
||||
c0.048-0.048,0.11-0.065,0.175-0.05c0.065,0.015,0.114,0.059,0.135,0.121l0.266,0.764c0.021,0.06,0.064,0.102,0.125,0.119
|
||||
s0.12,0.006,0.169-0.032l0.637-0.499c0.052-0.041,0.117-0.051,0.179-0.029c0.063,0.022,0.106,0.071,0.121,0.136l0.177,0.79
|
||||
c0.014,0.061,0.053,0.107,0.111,0.132c0.058,0.025,0.118,0.02,0.171-0.013l0.689-0.423c0.057-0.035,0.122-0.038,0.182-0.008
|
||||
c0.06,0.029,0.097,0.082,0.104,0.147l0.086,0.805c0.006,0.063,0.04,0.113,0.095,0.145c0.054,0.03,0.115,0.033,0.172,0.007
|
||||
l0.733-0.342c0.06-0.028,0.125-0.024,0.182,0.013c0.056,0.035,0.087,0.093,0.086,0.159l-0.007,0.81
|
||||
c0,0.063,0.027,0.117,0.078,0.153c0.051,0.037,0.111,0.046,0.17,0.026l0.768-0.256c0.063-0.021,0.127-0.01,0.179,0.033
|
||||
c0.052,0.042,0.076,0.102,0.068,0.169L24.56,6.582c-0.007,0.062,0.014,0.119,0.06,0.161c0.047,0.043,0.105,0.059,0.167,0.046
|
||||
l0.792-0.167c0.065-0.014,0.128,0.005,0.174,0.053c0.046,0.048,0.063,0.111,0.048,0.176L25.61,7.637
|
||||
c-0.015,0.062,0,0.12,0.041,0.168c0.041,0.047,0.098,0.07,0.16,0.063l0.804-0.075c0.067-0.006,0.127,0.021,0.167,0.073
|
||||
c0.041,0.052,0.05,0.117,0.028,0.179l-0.278,0.761c-0.021,0.059-0.014,0.118,0.021,0.17c0.036,0.053,0.089,0.081,0.151,0.083
|
||||
l0.809,0.017c0.066,0.001,0.124,0.034,0.158,0.091c0.035,0.057,0.037,0.122,0.007,0.182l-0.362,0.723
|
||||
c-0.028,0.057-0.027,0.117,0.002,0.173s0.079,0.091,0.141,0.099l0.801,0.109c0.066,0.009,0.119,0.048,0.146,0.108
|
||||
c0.027,0.06,0.022,0.126-0.014,0.181l-0.442,0.678c-0.035,0.052-0.041,0.112-0.019,0.171c0.023,0.059,0.068,0.099,0.129,0.114
|
||||
l0.784,0.199c0.065,0.018,0.112,0.062,0.133,0.125c0.021,0.063,0.008,0.128-0.034,0.178l-0.517,0.623
|
||||
c-0.04,0.048-0.053,0.107-0.037,0.168s0.057,0.106,0.115,0.128l0.756,0.288c0.062,0.023,0.104,0.073,0.118,0.139
|
||||
c0.013,0.064-0.006,0.128-0.055,0.173l-0.584,0.56c-0.045,0.044-0.065,0.102-0.056,0.163c0.009,0.063,0.044,0.111,0.1,0.141
|
||||
l0.718,0.372c0.059,0.03,0.095,0.085,0.101,0.151s-0.021,0.126-0.074,0.166l-0.644,0.489c-0.05,0.037-0.077,0.092-0.075,0.155
|
||||
c0.002,0.063,0.031,0.115,0.083,0.15l0.671,0.451c0.055,0.038,0.085,0.096,0.083,0.162c-0.001,0.066-0.035,0.122-0.092,0.157
|
||||
l-0.696,0.412c-0.054,0.032-0.086,0.083-0.091,0.146s0.018,0.119,0.065,0.16l0.615,0.524c0.05,0.044,0.074,0.104,0.064,0.171
|
||||
c-0.009,0.065-0.048,0.117-0.109,0.145l-0.738,0.33c-0.057,0.025-0.095,0.073-0.107,0.135c-0.013,0.062,0.003,0.12,0.046,0.165
|
||||
l0.552,0.592c0.045,0.049,0.061,0.112,0.044,0.177c-0.017,0.064-0.062,0.111-0.125,0.132l-0.771,0.244
|
||||
c-0.06,0.02-0.103,0.062-0.123,0.121s-0.01,0.12,0.027,0.171l0.48,0.649c0.04,0.055,0.048,0.119,0.024,0.181
|
||||
c-0.024,0.063-0.075,0.104-0.14,0.117l-0.794,0.154c-0.062,0.012-0.109,0.049-0.136,0.106c-0.025,0.058-0.023,0.117,0.008,0.173
|
||||
l0.403,0.7c0.033,0.058,0.035,0.124,0.004,0.183c-0.031,0.059-0.086,0.095-0.152,0.1l-0.806,0.063
|
||||
c-0.063,0.005-0.114,0.037-0.147,0.091c-0.032,0.054-0.036,0.114-0.011,0.172l0.32,0.742c0.026,0.062,0.02,0.126-0.018,0.182
|
||||
c-0.038,0.055-0.096,0.084-0.162,0.081l-0.808-0.029c-0.063-0.001-0.118,0.024-0.156,0.074c-0.038,0.05-0.049,0.109-0.031,0.17
|
||||
l0.234,0.773c0.019,0.063,0.005,0.128-0.039,0.178c-0.043,0.051-0.104,0.073-0.17,0.063l-0.8-0.122
|
||||
c-0.062-0.009-0.12,0.01-0.163,0.056c-0.044,0.045-0.062,0.103-0.051,0.165l0.145,0.796c0.012,0.065-0.009,0.127-0.059,0.172
|
||||
c-0.049,0.045-0.112,0.061-0.176,0.044l-0.78-0.213c-0.061-0.016-0.12-0.003-0.168,0.037c-0.049,0.039-0.074,0.095-0.069,0.157
|
||||
l0.053,0.807c0.004,0.066-0.023,0.126-0.077,0.165c-0.054,0.039-0.119,0.047-0.181,0.023l-0.751-0.3
|
||||
c-0.058-0.023-0.119-0.018-0.171,0.017c-0.053,0.033-0.083,0.087-0.086,0.148l-0.04,0.809c-0.003,0.066-0.038,0.122-0.096,0.154
|
||||
c-0.058,0.033-0.124,0.034-0.182,0.002l-0.712-0.383c-0.056-0.029-0.116-0.031-0.172-0.003c-0.056,0.028-0.092,0.077-0.103,0.138
|
||||
l-0.131,0.799c-0.011,0.065-0.051,0.117-0.113,0.143c-0.061,0.026-0.126,0.019-0.181-0.019l-0.664-0.462
|
||||
c-0.052-0.036-0.112-0.044-0.171-0.022c-0.059,0.021-0.101,0.065-0.118,0.126l-0.222,0.777c-0.018,0.064-0.064,0.11-0.128,0.129
|
||||
s-0.128,0.005-0.178-0.039l-0.607-0.534c-0.047-0.042-0.106-0.057-0.167-0.042c-0.061,0.014-0.107,0.054-0.132,0.111l-0.309,0.747
|
||||
c-0.025,0.062-0.076,0.103-0.142,0.114c-0.066,0.011-0.128-0.01-0.172-0.06l-0.543-0.601c-0.042-0.046-0.099-0.067-0.161-0.061
|
||||
c-0.062,0.007-0.113,0.041-0.143,0.096l-0.392,0.707c-0.033,0.059-0.087,0.094-0.154,0.097c-0.066,0.004-0.125-0.024-0.164-0.078
|
||||
l-0.47-0.657c-0.037-0.052-0.09-0.079-0.153-0.079c-0.063,0-0.117,0.027-0.153,0.079l-0.47,0.657
|
||||
c-0.039,0.054-0.098,0.082-0.164,0.078c-0.066-0.003-0.122-0.038-0.154-0.097l-0.392-0.707c-0.031-0.055-0.082-0.089-0.144-0.096
|
||||
c-0.063-0.007-0.119,0.015-0.161,0.061l-0.542,0.601c-0.044,0.05-0.106,0.07-0.172,0.06c-0.065-0.012-0.117-0.053-0.142-0.114
|
||||
l-0.31-0.747c-0.024-0.058-0.07-0.098-0.131-0.111c-0.061-0.015-0.12,0-0.167,0.042l-0.607,0.534
|
||||
c-0.05,0.044-0.114,0.058-0.178,0.039c-0.064-0.019-0.11-0.064-0.128-0.129l-0.222-0.777c-0.017-0.061-0.059-0.105-0.118-0.126
|
||||
c-0.059-0.021-0.12-0.014-0.171,0.022l-0.664,0.462c-0.055,0.037-0.12,0.045-0.181,0.019c-0.061-0.025-0.102-0.077-0.113-0.143
|
||||
l-0.132-0.799c-0.01-0.061-0.046-0.109-0.103-0.138s-0.117-0.026-0.172,0.003l-0.712,0.383c-0.059,0.032-0.124,0.031-0.182-0.002
|
||||
c-0.058-0.032-0.092-0.088-0.096-0.154l-0.04-0.809c-0.003-0.062-0.034-0.115-0.087-0.148c-0.052-0.034-0.113-0.04-0.171-0.017
|
||||
l-0.751,0.3c-0.063,0.023-0.127,0.016-0.181-0.023s-0.082-0.099-0.078-0.165l0.053-0.807c0.004-0.063-0.02-0.118-0.069-0.157
|
||||
c-0.048-0.04-0.108-0.053-0.168-0.037l-0.78,0.213c-0.064,0.017-0.128,0.001-0.177-0.044c-0.049-0.045-0.07-0.106-0.059-0.172
|
||||
l0.144-0.796c0.012-0.063-0.006-0.12-0.05-0.165C6.52,25.276,6.462,25.258,6.4,25.267l-0.8,0.122
|
||||
c-0.065,0.01-0.127-0.013-0.17-0.063c-0.043-0.05-0.057-0.114-0.038-0.178l0.234-0.773c0.018-0.061,0.007-0.12-0.031-0.17
|
||||
s-0.093-0.075-0.156-0.074L4.63,24.159c-0.066,0.003-0.125-0.026-0.163-0.081c-0.037-0.056-0.043-0.12-0.017-0.182l0.321-0.742
|
||||
c0.024-0.058,0.021-0.118-0.012-0.172s-0.084-0.086-0.146-0.091l-0.807-0.063c-0.066-0.005-0.121-0.041-0.152-0.1
|
||||
c-0.031-0.059-0.03-0.125,0.003-0.183l0.403-0.7c0.031-0.056,0.034-0.115,0.008-0.173c-0.026-0.058-0.074-0.095-0.135-0.106
|
||||
L3.14,21.413C3.075,21.399,3.024,21.358,3,21.296c-0.024-0.062-0.016-0.126,0.024-0.181l0.48-0.649
|
||||
c0.038-0.051,0.047-0.111,0.028-0.171S3.47,20.193,3.41,20.174L2.639,19.93c-0.063-0.021-0.109-0.067-0.125-0.132
|
||||
c-0.017-0.064-0.001-0.128,0.044-0.177l0.551-0.592c0.042-0.045,0.06-0.104,0.047-0.165s-0.05-0.109-0.108-0.135l-0.738-0.33
|
||||
c-0.061-0.027-0.1-0.079-0.109-0.145c-0.009-0.067,0.014-0.127,0.064-0.171L2.88,17.56c0.047-0.041,0.07-0.098,0.065-0.16
|
||||
c-0.005-0.063-0.037-0.113-0.091-0.146l-0.696-0.412c-0.057-0.035-0.09-0.091-0.092-0.157c-0.001-0.066,0.028-0.124,0.083-0.162
|
||||
l0.671-0.451c0.052-0.035,0.081-0.088,0.083-0.15c0.002-0.063-0.024-0.118-0.075-0.155l-0.644-0.489
|
||||
c-0.053-0.04-0.079-0.1-0.074-0.166c0.006-0.066,0.042-0.121,0.101-0.151l0.718-0.372c0.056-0.029,0.091-0.078,0.1-0.141
|
||||
c0.009-0.062-0.011-0.119-0.056-0.163l-0.584-0.56c-0.048-0.045-0.068-0.108-0.055-0.173c0.013-0.065,0.056-0.115,0.118-0.139
|
||||
l0.756-0.288c0.059-0.021,0.099-0.067,0.115-0.128s0.003-0.12-0.037-0.168L2.77,12.205c-0.042-0.05-0.055-0.115-0.034-0.178
|
||||
c0.021-0.063,0.068-0.107,0.133-0.125l0.784-0.199c0.061-0.016,0.106-0.056,0.129-0.114c0.022-0.059,0.016-0.119-0.018-0.171
|
||||
L3.321,10.74c-0.037-0.055-0.042-0.121-0.014-0.181c0.027-0.061,0.08-0.1,0.146-0.108l0.801-0.109
|
||||
c0.062-0.008,0.112-0.043,0.141-0.099s0.03-0.116,0.002-0.173L4.035,9.348c-0.03-0.06-0.027-0.125,0.007-0.182
|
||||
s0.091-0.09,0.157-0.091l0.809-0.017c0.063-0.002,0.116-0.03,0.151-0.083c0.036-0.052,0.043-0.111,0.022-0.17L4.903,8.045
|
||||
C4.881,7.983,4.891,7.918,4.932,7.866c0.04-0.053,0.1-0.079,0.167-0.073l0.805,0.075c0.063,0.007,0.119-0.017,0.16-0.063
|
||||
c0.041-0.048,0.055-0.106,0.041-0.168L5.915,6.851C5.899,6.786,5.917,6.723,5.963,6.675C6.01,6.627,6.072,6.608,6.137,6.622
|
||||
l0.792,0.167c0.062,0.013,0.12-0.003,0.167-0.046c0.046-0.042,0.067-0.1,0.06-0.161L7.056,5.779
|
||||
C7.048,5.712,7.072,5.652,7.124,5.61c0.051-0.043,0.116-0.055,0.179-0.033L8.07,5.833c0.06,0.02,0.119,0.011,0.17-0.026
|
||||
c0.051-0.036,0.078-0.091,0.078-0.153l-0.006-0.81c0-0.066,0.031-0.124,0.087-0.159C8.454,4.647,8.519,4.644,8.58,4.672
|
||||
l0.733,0.342C9.369,5.04,9.43,5.037,9.485,5.007C9.54,4.976,9.573,4.925,9.579,4.862l0.086-0.805C9.672,3.992,9.71,3.939,9.77,3.91
|
||||
c0.06-0.03,0.125-0.027,0.182,0.008l0.689,0.423c0.054,0.032,0.114,0.038,0.172,0.013c0.058-0.024,0.097-0.071,0.11-0.132
|
||||
l0.177-0.79c0.015-0.064,0.058-0.113,0.121-0.136c0.063-0.021,0.127-0.012,0.18,0.029l0.636,0.499
|
||||
c0.049,0.038,0.109,0.05,0.169,0.032c0.061-0.018,0.104-0.06,0.125-0.119l0.266-0.764c0.022-0.063,0.071-0.106,0.135-0.121
|
||||
c0.065-0.016,0.128,0.002,0.175,0.05l0.575,0.567c0.045,0.044,0.103,0.063,0.165,0.052c0.062-0.011,0.11-0.048,0.137-0.104
|
||||
l0.352-0.729c0.029-0.06,0.082-0.098,0.148-0.104c0.066-0.008,0.127,0.017,0.168,0.069l0.507,0.63
|
||||
c0.04,0.049,0.095,0.073,0.158,0.069c0.063-0.003,0.115-0.034,0.148-0.088l0.432-0.684c0.035-0.056,0.093-0.087,0.159-0.087
|
||||
C15.924,2.494,15.981,2.525,16.017,2.581L16.017,2.581z M15.857,4.822c3.167,0,6.034,1.283,8.109,3.358
|
||||
c2.075,2.076,3.359,4.943,3.359,8.109c0,3.168-1.284,6.034-3.359,8.109s-4.943,3.359-8.109,3.359s-6.034-1.284-8.109-3.359
|
||||
c-2.076-2.075-3.359-4.941-3.359-8.109c0-3.166,1.283-6.033,3.359-8.109C9.823,6.105,12.69,4.822,15.857,4.822L15.857,4.822z"/>
|
||||
<path fill="#92B5BD" d="M15.857,2.494c0.067,0,0.124,0.031,0.16,0.087l0.432,0.684c0.033,0.054,0.086,0.085,0.148,0.088
|
||||
c0.004,0,0.008,0,0.012,0c0.058,0,0.109-0.023,0.146-0.069l0.507-0.63c0.037-0.046,0.088-0.071,0.146-0.071
|
||||
c0.007,0,0.015,0.001,0.023,0.002c0.066,0.007,0.119,0.045,0.148,0.104l0.351,0.729c0.027,0.056,0.075,0.093,0.138,0.104
|
||||
c0.011,0.002,0.023,0.003,0.034,0.003c0.049,0,0.094-0.019,0.13-0.055l0.576-0.567c0.037-0.036,0.082-0.056,0.13-0.056
|
||||
c0.015,0,0.03,0.002,0.045,0.006c0.065,0.015,0.114,0.059,0.135,0.121l0.266,0.764c0.021,0.06,0.064,0.102,0.125,0.119
|
||||
c0.019,0.006,0.037,0.008,0.055,0.008c0.041,0,0.08-0.013,0.114-0.04l0.637-0.499c0.034-0.026,0.074-0.041,0.114-0.041
|
||||
c0.021,0,0.043,0.004,0.065,0.012c0.063,0.022,0.106,0.071,0.121,0.136l0.177,0.79c0.014,0.061,0.053,0.107,0.111,0.132
|
||||
c0.024,0.011,0.049,0.017,0.074,0.017c0.034,0,0.067-0.01,0.098-0.029l0.689-0.423c0.031-0.019,0.064-0.028,0.098-0.028
|
||||
c0.028,0,0.056,0.006,0.083,0.021c0.06,0.029,0.097,0.082,0.104,0.147l0.086,0.805c0.006,0.063,0.04,0.113,0.095,0.145
|
||||
c0.029,0.017,0.061,0.024,0.092,0.024c0.026,0,0.054-0.005,0.08-0.018l0.733-0.342c0.026-0.013,0.053-0.018,0.08-0.018
|
||||
c0.035,0,0.07,0.01,0.102,0.03c0.056,0.035,0.087,0.093,0.086,0.159l-0.007,0.81c0,0.063,0.027,0.117,0.078,0.153
|
||||
c0.033,0.023,0.071,0.036,0.109,0.036c0.02,0,0.041-0.003,0.061-0.01l0.768-0.256c0.021-0.007,0.041-0.011,0.062-0.011
|
||||
c0.042,0,0.083,0.016,0.117,0.044c0.052,0.042,0.076,0.102,0.068,0.169L24.56,6.582c-0.007,0.062,0.014,0.119,0.06,0.161
|
||||
c0.036,0.033,0.08,0.05,0.126,0.05c0.013,0,0.027-0.002,0.041-0.004l0.792-0.167c0.014-0.003,0.027-0.005,0.041-0.005
|
||||
c0.05,0,0.097,0.021,0.133,0.058c0.046,0.048,0.063,0.111,0.048,0.176L25.61,7.637c-0.015,0.062,0,0.12,0.041,0.168
|
||||
c0.037,0.042,0.085,0.064,0.141,0.064c0.006,0,0.013,0,0.02-0.001l0.804-0.075c0.007-0.001,0.013-0.001,0.02-0.001
|
||||
c0.059,0,0.111,0.025,0.148,0.074c0.041,0.052,0.05,0.117,0.028,0.179l-0.278,0.761c-0.021,0.059-0.014,0.118,0.021,0.17
|
||||
c0.036,0.053,0.089,0.081,0.151,0.083l0.809,0.017c0.066,0.001,0.124,0.034,0.158,0.091c0.035,0.057,0.037,0.122,0.007,0.182
|
||||
l-0.362,0.723c-0.028,0.057-0.027,0.117,0.002,0.173s0.079,0.091,0.141,0.099l0.801,0.109c0.066,0.009,0.119,0.048,0.146,0.108
|
||||
c0.027,0.06,0.022,0.126-0.014,0.181l-0.442,0.678c-0.035,0.052-0.041,0.112-0.019,0.171c0.023,0.059,0.068,0.099,0.129,0.114
|
||||
l0.784,0.199c0.065,0.018,0.112,0.062,0.133,0.125c0.021,0.063,0.008,0.128-0.034,0.178l-0.517,0.623
|
||||
c-0.04,0.048-0.053,0.107-0.037,0.168s0.057,0.106,0.115,0.128l0.756,0.288c0.062,0.023,0.104,0.073,0.118,0.139
|
||||
c0.013,0.064-0.006,0.128-0.055,0.173l-0.584,0.56c-0.045,0.044-0.065,0.102-0.056,0.163c0.009,0.063,0.044,0.111,0.1,0.141
|
||||
l0.718,0.372c0.059,0.03,0.095,0.085,0.101,0.151s-0.021,0.126-0.074,0.166l-0.644,0.489c-0.05,0.037-0.077,0.092-0.075,0.155
|
||||
c0.002,0.063,0.031,0.115,0.083,0.15l0.671,0.451c0.055,0.038,0.085,0.096,0.083,0.162c-0.001,0.066-0.035,0.122-0.092,0.157
|
||||
l-0.696,0.412c-0.054,0.032-0.086,0.083-0.091,0.146s0.018,0.119,0.065,0.16l0.615,0.524c0.05,0.044,0.074,0.104,0.064,0.171
|
||||
c-0.009,0.065-0.048,0.117-0.109,0.145l-0.738,0.33c-0.057,0.025-0.095,0.073-0.107,0.135c-0.013,0.062,0.003,0.12,0.046,0.165
|
||||
l0.552,0.592c0.045,0.049,0.061,0.112,0.044,0.177c-0.017,0.064-0.062,0.111-0.125,0.132l-0.771,0.244
|
||||
c-0.06,0.02-0.103,0.062-0.123,0.121s-0.01,0.12,0.027,0.171l0.48,0.649c0.04,0.055,0.048,0.119,0.024,0.181
|
||||
c-0.024,0.063-0.075,0.104-0.14,0.117l-0.794,0.154c-0.062,0.012-0.109,0.049-0.136,0.106c-0.025,0.058-0.023,0.117,0.008,0.173
|
||||
l0.403,0.7c0.033,0.058,0.035,0.124,0.004,0.183c-0.031,0.059-0.086,0.095-0.152,0.1l-0.806,0.063
|
||||
c-0.063,0.005-0.114,0.037-0.147,0.091c-0.032,0.054-0.036,0.114-0.011,0.172l0.32,0.742c0.026,0.062,0.02,0.126-0.018,0.182
|
||||
c-0.036,0.053-0.091,0.082-0.155,0.082c-0.002,0-0.005-0.001-0.007-0.001l-0.808-0.029c-0.003,0-0.005,0-0.008,0
|
||||
c-0.06,0-0.112,0.026-0.148,0.074c-0.038,0.05-0.049,0.109-0.031,0.17l0.234,0.773c0.019,0.063,0.005,0.128-0.039,0.178
|
||||
c-0.037,0.043-0.086,0.065-0.14,0.065c-0.01,0-0.02-0.001-0.03-0.002l-0.8-0.122c-0.01-0.001-0.02-0.001-0.03-0.001
|
||||
c-0.05,0-0.097,0.02-0.133,0.057c-0.044,0.045-0.062,0.103-0.051,0.165l0.145,0.796c0.012,0.065-0.009,0.127-0.059,0.172
|
||||
c-0.035,0.033-0.079,0.05-0.125,0.05c-0.017,0-0.034-0.002-0.051-0.006l-0.78-0.213c-0.017-0.004-0.035-0.007-0.051-0.007
|
||||
c-0.042,0-0.083,0.015-0.117,0.044c-0.049,0.039-0.074,0.095-0.069,0.157l0.053,0.807c0.004,0.066-0.023,0.126-0.077,0.165
|
||||
c-0.034,0.024-0.071,0.036-0.11,0.036c-0.023,0-0.047-0.004-0.071-0.013l-0.751-0.3c-0.023-0.01-0.047-0.014-0.071-0.014
|
||||
c-0.035,0-0.069,0.01-0.101,0.03c-0.053,0.033-0.083,0.087-0.086,0.148l-0.04,0.809c-0.003,0.066-0.038,0.122-0.096,0.154
|
||||
c-0.029,0.017-0.061,0.025-0.092,0.025c-0.031,0-0.061-0.008-0.09-0.023l-0.712-0.383c-0.028-0.015-0.059-0.023-0.089-0.023
|
||||
c-0.028,0-0.056,0.008-0.083,0.021c-0.056,0.028-0.092,0.077-0.103,0.138l-0.131,0.799c-0.011,0.065-0.051,0.117-0.113,0.143
|
||||
c-0.024,0.011-0.05,0.016-0.075,0.016c-0.037,0-0.074-0.012-0.106-0.034l-0.664-0.462c-0.033-0.022-0.069-0.034-0.106-0.034
|
||||
c-0.021,0-0.043,0.003-0.064,0.012c-0.059,0.021-0.101,0.065-0.118,0.126l-0.222,0.777c-0.018,0.064-0.064,0.11-0.128,0.129
|
||||
c-0.019,0.006-0.037,0.008-0.055,0.008c-0.044,0-0.087-0.016-0.123-0.047l-0.607-0.534c-0.035-0.031-0.078-0.048-0.122-0.048
|
||||
c-0.015,0-0.029,0.002-0.045,0.006c-0.061,0.014-0.107,0.054-0.132,0.111l-0.309,0.747c-0.025,0.062-0.076,0.103-0.142,0.114
|
||||
c-0.012,0.001-0.023,0.002-0.034,0.002c-0.053,0-0.102-0.021-0.138-0.062l-0.543-0.601c-0.037-0.041-0.084-0.063-0.138-0.063
|
||||
c-0.008,0-0.016,0.001-0.023,0.002c-0.062,0.007-0.113,0.041-0.143,0.096l-0.392,0.707c-0.033,0.059-0.087,0.094-0.154,0.097
|
||||
c-0.004,0-0.008,0-0.012,0c-0.062,0-0.116-0.027-0.152-0.078l-0.47-0.657c-0.037-0.052-0.09-0.079-0.153-0.079
|
||||
c-0.063,0-0.117,0.027-0.153,0.079l-0.47,0.657c-0.036,0.051-0.091,0.078-0.152,0.078c-0.004,0-0.008,0-0.012,0
|
||||
c-0.066-0.003-0.122-0.038-0.154-0.097l-0.392-0.707c-0.031-0.055-0.082-0.089-0.144-0.096c-0.008-0.001-0.016-0.002-0.023-0.002
|
||||
c-0.053,0-0.101,0.021-0.138,0.063l-0.542,0.601c-0.037,0.041-0.085,0.062-0.138,0.062c-0.011,0-0.023-0.001-0.034-0.002
|
||||
c-0.065-0.012-0.117-0.053-0.142-0.114l-0.31-0.747c-0.024-0.058-0.07-0.098-0.131-0.111c-0.015-0.004-0.03-0.006-0.045-0.006
|
||||
c-0.044,0-0.087,0.017-0.122,0.048l-0.607,0.534c-0.036,0.031-0.078,0.047-0.123,0.047c-0.018,0-0.037-0.002-0.055-0.008
|
||||
c-0.064-0.019-0.11-0.064-0.128-0.129l-0.222-0.777c-0.017-0.061-0.059-0.105-0.118-0.126c-0.022-0.009-0.043-0.012-0.065-0.012
|
||||
c-0.037,0-0.073,0.012-0.106,0.034l-0.664,0.462c-0.033,0.022-0.07,0.034-0.106,0.034c-0.025,0-0.05-0.005-0.075-0.016
|
||||
c-0.061-0.025-0.102-0.077-0.113-0.143l-0.132-0.799c-0.01-0.061-0.046-0.109-0.103-0.138c-0.027-0.013-0.056-0.021-0.083-0.021
|
||||
c-0.03,0-0.061,0.009-0.089,0.023l-0.712,0.383c-0.029,0.016-0.06,0.023-0.09,0.023c-0.031,0-0.063-0.009-0.092-0.025
|
||||
c-0.058-0.032-0.092-0.088-0.096-0.154l-0.04-0.809c-0.003-0.062-0.034-0.115-0.087-0.148c-0.031-0.021-0.065-0.03-0.101-0.03
|
||||
c-0.023,0-0.047,0.004-0.071,0.014l-0.751,0.3c-0.024,0.009-0.048,0.013-0.071,0.013c-0.039,0-0.076-0.012-0.109-0.036
|
||||
c-0.054-0.039-0.082-0.099-0.078-0.165l0.053-0.807c0.004-0.063-0.02-0.118-0.069-0.157c-0.035-0.029-0.075-0.044-0.117-0.044
|
||||
c-0.017,0-0.034,0.003-0.051,0.007l-0.78,0.213c-0.018,0.004-0.035,0.006-0.052,0.006c-0.046,0-0.09-0.017-0.125-0.05
|
||||
c-0.049-0.045-0.07-0.106-0.059-0.172l0.144-0.796c0.012-0.063-0.006-0.12-0.05-0.165c-0.036-0.037-0.083-0.057-0.133-0.057
|
||||
c-0.01,0-0.02,0-0.03,0.001l-0.8,0.122c-0.01,0.001-0.021,0.002-0.03,0.002c-0.054,0-0.104-0.022-0.14-0.065
|
||||
c-0.043-0.05-0.057-0.114-0.038-0.178l0.234-0.773c0.018-0.061,0.007-0.12-0.031-0.17c-0.037-0.048-0.089-0.074-0.148-0.074
|
||||
c-0.002,0-0.005,0-0.008,0L4.63,24.159c-0.002,0-0.005,0.001-0.007,0.001c-0.063,0-0.119-0.029-0.155-0.082
|
||||
c-0.037-0.056-0.043-0.12-0.017-0.182l0.321-0.742c0.024-0.058,0.021-0.118-0.012-0.172s-0.084-0.086-0.146-0.091l-0.807-0.063
|
||||
c-0.066-0.005-0.121-0.041-0.152-0.1c-0.031-0.059-0.03-0.125,0.003-0.183l0.403-0.7c0.031-0.056,0.034-0.115,0.008-0.173
|
||||
c-0.026-0.058-0.074-0.095-0.135-0.106L3.14,21.413C3.075,21.399,3.024,21.358,3,21.296c-0.024-0.062-0.016-0.126,0.024-0.181
|
||||
l0.48-0.649c0.038-0.051,0.047-0.111,0.028-0.171S3.47,20.193,3.41,20.174L2.639,19.93c-0.063-0.021-0.109-0.067-0.125-0.132
|
||||
c-0.017-0.064-0.001-0.128,0.044-0.177l0.551-0.592c0.042-0.045,0.06-0.104,0.047-0.165s-0.05-0.109-0.108-0.135l-0.738-0.33
|
||||
c-0.061-0.027-0.1-0.079-0.109-0.145c-0.009-0.067,0.014-0.127,0.064-0.171L2.88,17.56c0.047-0.041,0.07-0.098,0.065-0.16
|
||||
c-0.005-0.063-0.037-0.113-0.091-0.146l-0.696-0.412c-0.057-0.035-0.09-0.091-0.092-0.157c-0.001-0.066,0.028-0.124,0.083-0.162
|
||||
l0.671-0.451c0.052-0.035,0.081-0.088,0.083-0.15c0.002-0.063-0.024-0.118-0.075-0.155l-0.644-0.489
|
||||
c-0.053-0.04-0.079-0.1-0.074-0.166c0.006-0.066,0.042-0.121,0.101-0.151l0.718-0.372c0.056-0.029,0.091-0.078,0.1-0.141
|
||||
c0.009-0.062-0.011-0.119-0.056-0.163l-0.584-0.56c-0.048-0.045-0.068-0.108-0.055-0.173c0.013-0.065,0.056-0.115,0.118-0.139
|
||||
l0.756-0.288c0.059-0.021,0.099-0.067,0.115-0.128s0.003-0.12-0.037-0.168L2.77,12.205c-0.042-0.05-0.055-0.115-0.034-0.178
|
||||
c0.021-0.063,0.068-0.107,0.133-0.125l0.784-0.199c0.061-0.016,0.106-0.056,0.129-0.114c0.022-0.059,0.016-0.119-0.018-0.171
|
||||
L3.321,10.74c-0.037-0.055-0.042-0.121-0.014-0.181c0.027-0.061,0.08-0.1,0.146-0.108l0.801-0.109
|
||||
c0.062-0.008,0.112-0.043,0.141-0.099s0.03-0.116,0.002-0.173L4.035,9.348c-0.03-0.06-0.027-0.125,0.007-0.182
|
||||
s0.091-0.09,0.157-0.091l0.809-0.017c0.063-0.002,0.116-0.03,0.151-0.083c0.036-0.052,0.043-0.111,0.022-0.17L4.903,8.045
|
||||
C4.881,7.983,4.891,7.918,4.932,7.866c0.036-0.049,0.089-0.074,0.147-0.074c0.006,0,0.013,0,0.019,0.001l0.805,0.075
|
||||
C5.91,7.869,5.917,7.869,5.922,7.869c0.055,0,0.104-0.022,0.141-0.064c0.041-0.048,0.055-0.106,0.041-0.168L5.915,6.851
|
||||
C5.899,6.786,5.917,6.723,5.963,6.675C6,6.638,6.046,6.617,6.096,6.617c0.013,0,0.027,0.002,0.041,0.005l0.792,0.167
|
||||
c0.014,0.002,0.027,0.004,0.041,0.004c0.046,0,0.089-0.017,0.125-0.05c0.046-0.042,0.067-0.1,0.06-0.161L7.056,5.779
|
||||
C7.048,5.712,7.072,5.652,7.124,5.61c0.035-0.028,0.076-0.044,0.117-0.044c0.021,0,0.042,0.004,0.062,0.011L8.07,5.833
|
||||
C8.09,5.84,8.11,5.843,8.131,5.843c0.039,0,0.076-0.013,0.109-0.036c0.051-0.036,0.078-0.091,0.078-0.153l-0.006-0.81
|
||||
c0-0.066,0.031-0.124,0.087-0.159c0.032-0.021,0.066-0.03,0.101-0.03c0.027,0,0.054,0.005,0.081,0.018l0.733,0.342
|
||||
c0.026,0.013,0.053,0.018,0.08,0.018c0.031,0,0.063-0.008,0.092-0.024C9.54,4.976,9.573,4.925,9.579,4.862l0.086-0.805
|
||||
C9.672,3.992,9.71,3.939,9.77,3.91C9.797,3.896,9.825,3.89,9.854,3.89c0.033,0,0.067,0.01,0.098,0.028l0.689,0.423
|
||||
c0.03,0.02,0.064,0.029,0.098,0.029c0.025,0,0.05-0.006,0.074-0.017c0.058-0.024,0.097-0.071,0.11-0.132l0.177-0.79
|
||||
c0.015-0.064,0.058-0.113,0.121-0.136c0.021-0.008,0.043-0.012,0.065-0.012c0.041,0,0.081,0.015,0.115,0.041l0.636,0.499
|
||||
c0.035,0.027,0.074,0.04,0.114,0.04c0.018,0,0.037-0.002,0.055-0.008c0.061-0.018,0.104-0.06,0.125-0.119l0.266-0.764
|
||||
c0.022-0.063,0.071-0.106,0.135-0.121c0.015-0.004,0.03-0.006,0.044-0.006c0.049,0,0.094,0.02,0.131,0.056l0.575,0.567
|
||||
c0.037,0.036,0.082,0.055,0.131,0.055c0.011,0,0.022-0.001,0.034-0.003c0.062-0.011,0.11-0.048,0.137-0.104l0.352-0.729
|
||||
c0.029-0.06,0.082-0.098,0.148-0.104c0.008-0.001,0.016-0.002,0.023-0.002c0.057,0,0.108,0.025,0.145,0.071l0.507,0.63
|
||||
c0.037,0.046,0.088,0.069,0.146,0.069c0.004,0,0.008,0,0.012,0c0.063-0.003,0.115-0.034,0.148-0.088l0.432-0.684
|
||||
C15.733,2.525,15.791,2.494,15.857,2.494 M15.857,27.759c3.167,0,6.034-1.284,8.109-3.359s3.359-4.941,3.359-8.109
|
||||
c0-3.166-1.284-6.033-3.359-8.109c-2.075-2.075-4.943-3.358-8.109-3.358S9.823,6.105,7.748,8.181
|
||||
c-2.076,2.076-3.359,4.943-3.359,8.109c0,3.168,1.283,6.034,3.359,8.109C9.823,26.475,12.69,27.759,15.857,27.759 M15.857,2.337
|
||||
c-0.121,0-0.227,0.059-0.292,0.161l-0.432,0.684c-0.007,0.01-0.013,0.014-0.024,0.015c-0.001,0-0.002,0-0.003,0
|
||||
c-0.009,0-0.016-0.002-0.023-0.012l-0.507-0.63c-0.066-0.083-0.162-0.13-0.267-0.13c-0.014,0-0.028,0.001-0.041,0.003
|
||||
c-0.12,0.014-0.219,0.084-0.272,0.193L13.643,3.35c-0.005,0.011-0.01,0.015-0.023,0.017c-0.003,0.001-0.005,0.001-0.007,0.001
|
||||
c-0.006,0-0.012-0.001-0.021-0.009L13.018,2.79c-0.065-0.064-0.151-0.101-0.241-0.101c-0.026,0-0.053,0.004-0.08,0.01
|
||||
c-0.118,0.027-0.208,0.108-0.249,0.223l-0.266,0.764c-0.004,0.012-0.009,0.017-0.021,0.02c-0.004,0.002-0.008,0.002-0.011,0.002
|
||||
c-0.004,0-0.009-0.001-0.017-0.007l-0.637-0.498c-0.062-0.049-0.135-0.074-0.211-0.074c-0.04,0-0.08,0.007-0.118,0.02
|
||||
c-0.114,0.041-0.194,0.132-0.221,0.251L10.77,4.187c-0.002,0.013-0.007,0.018-0.018,0.022c-0.005,0.002-0.009,0.004-0.013,0.004
|
||||
c-0.002,0-0.007,0-0.016-0.006l-0.689-0.424C9.978,3.75,9.916,3.732,9.854,3.732C9.8,3.732,9.749,3.744,9.7,3.769
|
||||
C9.592,3.822,9.522,3.921,9.509,4.042L9.423,4.846C9.422,4.858,9.418,4.863,9.407,4.87l0,0l0,0
|
||||
C9.399,4.875,9.394,4.875,9.393,4.875c-0.004,0-0.009-0.002-0.014-0.004L8.646,4.529C8.599,4.508,8.55,4.497,8.499,4.497
|
||||
c-0.065,0-0.13,0.019-0.186,0.055c-0.102,0.065-0.16,0.172-0.159,0.293l0.006,0.809c0,0.013-0.003,0.02-0.013,0.026
|
||||
C8.14,5.685,8.135,5.686,8.131,5.686c-0.003,0-0.007,0-0.012-0.002L7.352,5.429c-0.036-0.013-0.074-0.02-0.111-0.02
|
||||
c-0.079,0-0.154,0.028-0.217,0.079C6.931,5.565,6.885,5.678,6.9,5.798l0.099,0.803C7,6.613,6.997,6.619,6.988,6.628
|
||||
C6.98,6.635,6.975,6.636,6.969,6.636c-0.003,0-0.005,0-0.009-0.001L6.169,6.468C6.145,6.463,6.12,6.46,6.096,6.46
|
||||
c-0.093,0-0.18,0.038-0.246,0.105C5.766,6.652,5.734,6.77,5.762,6.888l0.189,0.786c0.003,0.012,0.001,0.019-0.007,0.027
|
||||
S5.931,7.712,5.922,7.712c-0.001,0-0.002,0-0.004,0L5.113,7.637C5.102,7.636,5.09,7.635,5.079,7.635
|
||||
c-0.107,0-0.206,0.049-0.272,0.135C4.733,7.865,4.714,7.985,4.756,8.1l0.277,0.759C5.038,8.87,5.037,8.877,5.03,8.887
|
||||
C5.023,8.897,5.017,8.9,5.005,8.901L4.196,8.918C4.076,8.92,3.97,8.981,3.908,9.085l0,0l0,0C3.845,9.188,3.841,9.31,3.895,9.418
|
||||
l0.362,0.723c0.006,0.011,0.006,0.019,0,0.028c-0.006,0.012-0.012,0.016-0.023,0.018l-0.801,0.108
|
||||
c-0.12,0.017-0.218,0.089-0.268,0.199s-0.041,0.231,0.025,0.332l0.442,0.678c0.006,0.01,0.007,0.017,0.003,0.028
|
||||
c-0.004,0.011-0.01,0.016-0.021,0.019l-0.784,0.2c-0.117,0.029-0.206,0.112-0.243,0.228c-0.038,0.115-0.015,0.235,0.063,0.328
|
||||
l0.517,0.622c0.007,0.009,0.009,0.016,0.006,0.027v0.001l0,0c-0.003,0.011-0.008,0.017-0.019,0.021l-0.756,0.287
|
||||
C2.284,13.309,2.205,13.4,2.181,13.52s0.012,0.234,0.1,0.318l0.584,0.56c0.009,0.008,0.011,0.015,0.009,0.026
|
||||
c-0.002,0.013-0.006,0.019-0.017,0.023L2.14,14.819c-0.107,0.056-0.175,0.156-0.185,0.277l0,0l0,0
|
||||
c-0.01,0.121,0.039,0.231,0.135,0.305l0.645,0.488c0.009,0.008,0.012,0.015,0.012,0.025v0.001l0,0c0,0.012-0.003,0.019-0.014,0.025
|
||||
l-0.671,0.451c-0.101,0.067-0.156,0.176-0.153,0.296c0.003,0.121,0.065,0.226,0.169,0.288l0.695,0.412
|
||||
c0.011,0.006,0.015,0.013,0.016,0.024s-0.001,0.02-0.011,0.026l-0.615,0.524c-0.092,0.079-0.135,0.193-0.118,0.313
|
||||
c0.018,0.119,0.091,0.217,0.201,0.266l0.739,0.33C2.996,18.878,3,18.883,3.002,18.896c0.002,0.012,0,0.019-0.008,0.027
|
||||
l-0.551,0.592c-0.083,0.088-0.112,0.206-0.081,0.323s0.114,0.205,0.229,0.241l0.771,0.244c0.012,0.004,0.017,0.009,0.021,0.02
|
||||
c0.004,0.013,0.003,0.02-0.004,0.029l-0.48,0.65c-0.072,0.098-0.088,0.219-0.044,0.331s0.137,0.19,0.256,0.213l0.793,0.154
|
||||
c0.012,0.003,0.018,0.008,0.022,0.019c0.005,0.012,0.004,0.019-0.001,0.028l0,0v0.001l-0.403,0.7
|
||||
c-0.061,0.104-0.063,0.227-0.006,0.334c0.057,0.106,0.158,0.173,0.279,0.183l0.806,0.063c0.012,0.001,0.019,0.004,0.024,0.015
|
||||
c0.006,0.01,0.007,0.019,0.002,0.028l-0.32,0.743c-0.048,0.11-0.036,0.232,0.032,0.332l0,0c0.065,0.096,0.169,0.149,0.285,0.149
|
||||
c0.004,0,0.009,0,0.013,0l0.808-0.029c0.001,0,0.001,0,0.002,0c0.01,0,0.016,0.002,0.024,0.013c0.007,0.01,0.009,0.017,0.005,0.028
|
||||
l-0.234,0.773c-0.035,0.116-0.01,0.235,0.069,0.327c0.067,0.077,0.159,0.119,0.259,0.119c0.018,0,0.036-0.001,0.054-0.004
|
||||
l0.8-0.122c0.002,0,0.005,0,0.007,0c0.005,0,0.012,0,0.021,0.01c0.008,0.009,0.01,0.016,0.008,0.028l-0.144,0.795
|
||||
c-0.021,0.119,0.018,0.234,0.106,0.316c0.064,0.059,0.146,0.091,0.231,0.091c0.031,0,0.062-0.004,0.093-0.013l0.78-0.211
|
||||
c0.003-0.001,0.007-0.002,0.01-0.002c0.004,0,0.01,0.001,0.018,0.008c0.009,0.007,0.012,0.015,0.012,0.025l-0.053,0.808
|
||||
c-0.008,0.121,0.043,0.23,0.142,0.302c0.06,0.044,0.13,0.066,0.202,0.066c0.044,0,0.087-0.008,0.129-0.024l0.751-0.3
|
||||
c0.005-0.001,0.009-0.002,0.013-0.002c0.002,0,0.007,0,0.016,0.005c0.011,0.007,0.014,0.014,0.015,0.025l0.04,0.808
|
||||
c0.006,0.121,0.07,0.225,0.176,0.283c0.052,0.03,0.111,0.046,0.169,0.046c0.057,0,0.112-0.015,0.164-0.042l0.712-0.383
|
||||
c0.005-0.003,0.01-0.005,0.014-0.005s0.009,0.001,0.014,0.004c0.011,0.005,0.015,0.012,0.017,0.023l0.132,0.798
|
||||
c0.02,0.119,0.095,0.215,0.207,0.262c0.044,0.019,0.089,0.028,0.136,0.028c0.069,0,0.137-0.021,0.196-0.063l0.664-0.462
|
||||
c0.008-0.005,0.014-0.006,0.017-0.006c0.003,0,0.007,0.001,0.012,0.002c0.011,0.004,0.016,0.01,0.02,0.021l0,0l0,0l0.222,0.778
|
||||
c0.033,0.116,0.119,0.202,0.235,0.237c0.033,0.01,0.066,0.014,0.099,0.014c0.084,0,0.162-0.03,0.227-0.087l0.607-0.533
|
||||
c0.008-0.008,0.014-0.009,0.019-0.009c0.003,0,0.006,0,0.009,0.001c0.012,0.003,0.017,0.008,0.022,0.019l0.309,0.747
|
||||
c0.046,0.112,0.142,0.188,0.26,0.209c0.021,0.004,0.042,0.005,0.062,0.005c0.098,0,0.188-0.04,0.254-0.114l0.542-0.6
|
||||
c0.008-0.009,0.014-0.011,0.021-0.011c0.002,0,0.004,0,0.006,0c0.012,0.002,0.018,0.007,0.024,0.018l0.392,0.706
|
||||
c0.059,0.106,0.161,0.171,0.282,0.178c0.007,0,0.014,0,0.021,0c0.113,0,0.215-0.052,0.28-0.145l0.47-0.657
|
||||
c0.007-0.011,0.013-0.013,0.025-0.013s0.019,0.002,0.026,0.012l0.47,0.658c0.065,0.093,0.168,0.145,0.28,0.145
|
||||
c0.007,0,0.014,0,0.021,0c0.121-0.007,0.224-0.071,0.283-0.178l0.392-0.706c0.006-0.011,0.012-0.016,0.024-0.018
|
||||
c0.001,0,0.003,0,0.005,0c0.007,0,0.014,0.002,0.021,0.011l0.542,0.6l0,0c0.066,0.074,0.157,0.114,0.255,0.114
|
||||
c0.02,0,0.04-0.001,0.061-0.005c0.119-0.021,0.214-0.097,0.261-0.208l0.309-0.748c0.004-0.011,0.01-0.016,0.021-0.019
|
||||
c0.004-0.001,0.007-0.001,0.01-0.001c0.005,0,0.01,0.001,0.019,0.009l0.607,0.533c0.064,0.057,0.143,0.087,0.227,0.087
|
||||
c0.033,0,0.067-0.004,0.099-0.014c0.116-0.035,0.202-0.121,0.235-0.237l0.222-0.778c0.003-0.011,0.008-0.017,0.02-0.021
|
||||
c0.004-0.001,0.008-0.002,0.012-0.002c0.002,0,0.008,0,0.017,0.006l0.664,0.462c0.059,0.041,0.127,0.063,0.196,0.063
|
||||
c0.047,0,0.092-0.01,0.136-0.028c0.111-0.047,0.187-0.143,0.206-0.262l0.132-0.798c0.002-0.012,0.006-0.019,0.017-0.023
|
||||
c0.005-0.003,0.01-0.004,0.014-0.004s0.009,0.002,0.015,0.005l0.712,0.383c0.052,0.027,0.107,0.042,0.164,0.042
|
||||
c0.059,0,0.117-0.016,0.17-0.046c0.105-0.06,0.169-0.162,0.175-0.284l0.04-0.807c0.001-0.013,0.004-0.019,0.015-0.025
|
||||
c0.007-0.005,0.013-0.005,0.016-0.005c0.004,0,0.008,0.001,0.013,0.002l0.751,0.3c0.042,0.017,0.085,0.024,0.129,0.024
|
||||
c0.072,0,0.142-0.022,0.202-0.066c0.098-0.071,0.149-0.181,0.142-0.302l-0.052-0.808c-0.001-0.011,0.001-0.019,0.011-0.025l0,0
|
||||
v-0.001c0.008-0.006,0.013-0.007,0.018-0.007c0.003,0,0.006,0.001,0.01,0.002l0.781,0.211c0.031,0.009,0.062,0.013,0.092,0.013
|
||||
c0.085,0,0.167-0.032,0.232-0.091c0.089-0.082,0.127-0.197,0.106-0.316l-0.144-0.796c-0.002-0.012,0-0.019,0.008-0.027
|
||||
c0.008-0.01,0.015-0.01,0.02-0.01c0.002,0,0.004,0,0.006,0l0.8,0.122c0.018,0.003,0.036,0.004,0.054,0.004
|
||||
c0.1,0,0.192-0.042,0.259-0.119c0.079-0.092,0.104-0.211,0.069-0.327l-0.234-0.773c-0.003-0.012-0.002-0.019,0.005-0.028
|
||||
c0.009-0.011,0.015-0.013,0.024-0.013c0,0,0.001,0,0.002,0l0.808,0.029c0.004,0,0.009,0,0.013,0c0.116,0,0.219-0.054,0.284-0.149
|
||||
l0,0c0.068-0.1,0.081-0.222,0.033-0.332l-0.321-0.743c-0.005-0.01-0.004-0.019,0.002-0.028c0.006-0.011,0.012-0.014,0.024-0.015
|
||||
l0.806-0.063c0.121-0.01,0.223-0.076,0.279-0.183c0.057-0.107,0.054-0.229-0.006-0.334l-0.403-0.7
|
||||
c-0.006-0.011-0.006-0.018-0.001-0.029c0.005-0.011,0.011-0.016,0.023-0.019l0.793-0.154c0.119-0.022,0.212-0.101,0.256-0.213
|
||||
s0.028-0.233-0.044-0.331l-0.48-0.65c-0.007-0.01-0.008-0.017-0.004-0.028c0.003-0.012,0.009-0.017,0.021-0.021l0.771-0.244
|
||||
c0.116-0.036,0.2-0.124,0.23-0.241c0.03-0.116,0.001-0.234-0.082-0.323l-0.551-0.592c-0.009-0.009-0.01-0.016-0.008-0.027v-0.001
|
||||
l0,0c0.003-0.012,0.007-0.017,0.018-0.021l0.738-0.33c0.11-0.05,0.184-0.146,0.201-0.267c0.017-0.119-0.026-0.233-0.118-0.313
|
||||
l-0.615-0.524c-0.009-0.008-0.012-0.015-0.011-0.026s0.005-0.019,0.016-0.024l0.695-0.412c0.104-0.063,0.166-0.167,0.169-0.288
|
||||
c0.003-0.12-0.052-0.229-0.153-0.296l-0.671-0.451c-0.01-0.007-0.013-0.014-0.014-0.026c0-0.011,0.003-0.018,0.013-0.025
|
||||
l0.644-0.488c0.096-0.073,0.146-0.184,0.135-0.305c-0.01-0.121-0.078-0.222-0.185-0.278l-0.718-0.371
|
||||
c-0.011-0.005-0.015-0.011-0.017-0.023c-0.001-0.012,0.001-0.019,0.009-0.026l0.584-0.56c0.087-0.084,0.124-0.2,0.1-0.318
|
||||
c-0.024-0.119-0.103-0.211-0.216-0.255l-0.756-0.287c-0.011-0.004-0.016-0.01-0.019-0.021c-0.003-0.012-0.001-0.02,0.006-0.028
|
||||
l0.517-0.622c0.077-0.093,0.101-0.212,0.063-0.328c-0.038-0.115-0.126-0.198-0.244-0.228l-0.784-0.2
|
||||
c-0.012-0.003-0.017-0.008-0.021-0.019c-0.004-0.012-0.003-0.019,0.003-0.028l0.442-0.678c0.066-0.101,0.076-0.223,0.025-0.333
|
||||
c-0.05-0.109-0.147-0.182-0.268-0.198l-0.801-0.108c-0.012-0.002-0.018-0.006-0.024-0.017c-0.005-0.011-0.005-0.019,0-0.029
|
||||
l0.362-0.723c0.055-0.108,0.05-0.229-0.013-0.333c-0.063-0.104-0.167-0.165-0.289-0.167l-0.809-0.017
|
||||
C26.697,8.9,26.69,8.897,26.684,8.888V8.887l0,0c-0.006-0.01-0.007-0.017-0.003-0.028L26.958,8.1
|
||||
C27,7.985,26.981,7.865,26.907,7.77c-0.066-0.086-0.165-0.135-0.272-0.135c-0.011,0-0.022,0.001-0.034,0.002l-0.804,0.075
|
||||
c-0.002,0-0.003,0-0.005,0c-0.008,0-0.014-0.002-0.022-0.011c-0.007-0.009-0.009-0.016-0.006-0.027l0.189-0.786
|
||||
c0.028-0.118-0.003-0.235-0.088-0.322l0,0C25.798,6.498,25.71,6.46,25.618,6.46c-0.024,0-0.049,0.003-0.073,0.008l-0.791,0.167
|
||||
c-0.003,0.001-0.006,0.001-0.008,0.001c-0.005,0-0.011-0.001-0.02-0.008c-0.009-0.009-0.011-0.015-0.01-0.027l0.099-0.803
|
||||
c0.015-0.12-0.031-0.232-0.125-0.31c-0.063-0.051-0.138-0.079-0.217-0.079c-0.037,0-0.075,0.007-0.111,0.02l-0.767,0.255
|
||||
c-0.004,0.002-0.008,0.002-0.011,0.002c-0.002,0-0.008,0-0.018-0.006c-0.009-0.007-0.013-0.014-0.013-0.026l0,0l0.006-0.809
|
||||
c0.001-0.121-0.057-0.228-0.159-0.293c-0.056-0.036-0.121-0.055-0.186-0.055c-0.05,0-0.1,0.011-0.146,0.032L22.335,4.87
|
||||
c-0.005,0.003-0.01,0.005-0.014,0.005c-0.002,0-0.007,0-0.015-0.005c-0.011-0.006-0.014-0.012-0.016-0.024l-0.086-0.804
|
||||
c-0.013-0.121-0.083-0.22-0.191-0.273c-0.049-0.024-0.1-0.036-0.153-0.036c-0.063,0-0.125,0.018-0.18,0.051l-0.689,0.424
|
||||
c-0.009,0.006-0.014,0.006-0.016,0.006c-0.004,0-0.008-0.002-0.013-0.004l0,0h0c-0.011-0.005-0.016-0.011-0.018-0.022l-0.177-0.788
|
||||
c-0.026-0.118-0.107-0.21-0.221-0.251c-0.039-0.013-0.078-0.02-0.118-0.02c-0.076,0-0.149,0.025-0.211,0.074L19.58,3.7
|
||||
c-0.009,0.007-0.015,0.007-0.017,0.007c-0.003,0-0.006,0-0.011-0.002c-0.012-0.003-0.017-0.008-0.021-0.02l-0.266-0.764
|
||||
c-0.04-0.114-0.13-0.195-0.248-0.223c-0.026-0.006-0.054-0.01-0.081-0.01c-0.09,0-0.175,0.036-0.24,0.101l-0.576,0.568
|
||||
c-0.009,0.008-0.015,0.009-0.02,0.009c-0.002,0-0.004,0-0.007-0.001c-0.012-0.002-0.018-0.006-0.023-0.017L17.72,2.621
|
||||
c-0.053-0.109-0.151-0.179-0.272-0.193c-0.014-0.002-0.028-0.003-0.041-0.003c-0.104,0-0.202,0.047-0.268,0.13l-0.506,0.63
|
||||
c-0.008,0.01-0.015,0.012-0.024,0.012c-0.001,0-0.002,0-0.003,0c-0.012-0.001-0.018-0.005-0.025-0.015l-0.432-0.684
|
||||
C16.085,2.396,15.978,2.337,15.857,2.337L15.857,2.337z M15.857,27.602c-3.021,0-5.862-1.177-7.998-3.313s-3.313-4.976-3.313-7.998
|
||||
c0-3.021,1.177-5.861,3.313-7.997c2.136-2.137,4.977-3.313,7.998-3.313c3.021,0,5.862,1.177,7.998,3.313s3.313,4.977,3.313,7.997
|
||||
c0,3.021-1.177,5.861-3.313,7.998S18.878,27.602,15.857,27.602L15.857,27.602z"/>
|
||||
</g>
|
||||
<g id="Shape_10_copy">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#CFCCCC" cx="15.882" cy="16.224" r="12.215"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_2_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#919191" cx="15.882" cy="16.223" r="12.087"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_4_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#CFCCCC" cx="15.882" cy="16.224" r="11.48"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_4">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#140F21" cx="15.882" cy="16.223" r="11.341"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_10_copy_4_2_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#1D536C" cx="15.882" cy="16.223" r="11.026"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#EDE730" d="M12.818,16.058c0.002-0.544,0.152-1.052,0.411-1.487c0.259-0.437,0.627-0.8,1.067-1.052l0,0
|
||||
c0,0,0,0,0-0.001c0.003-0.001,0.006-0.003,0.009-0.005c0.002-0.003,0.006-0.005,0.008-0.006c0.003-0.003,0.005-0.006,0.007-0.009
|
||||
c0.002-0.002,0.005-0.005,0.007-0.008c0.002-0.003,0.004-0.006,0.006-0.01c0.001-0.002,0.003-0.004,0.004-0.007
|
||||
c0.002-0.004,0.003-0.008,0.004-0.012c0.001-0.003,0.002-0.005,0.003-0.008c0.001-0.004,0.002-0.008,0.002-0.013
|
||||
c0-0.003,0.001-0.004,0.001-0.007c0-0.005,0-0.01,0-0.015c0-0.002,0-0.004,0-0.006c0-0.006-0.001-0.011-0.003-0.016
|
||||
c0-0.001-0.001-0.003-0.001-0.005c-0.002-0.005-0.004-0.01-0.007-0.015c0-0.002-0.001-0.003-0.001-0.005h0l0,0l0,0l-3.574-6.19
|
||||
c-0.014-0.023-0.037-0.042-0.064-0.05c-0.026-0.007-0.056-0.002-0.08,0.011c-1.542,0.89-2.831,2.168-3.735,3.699
|
||||
C5.979,12.376,5.46,14.162,5.46,16.07c0,0.028,0.011,0.055,0.031,0.074c0.02,0.021,0.046,0.031,0.074,0.031l7.147-0.014
|
||||
C12.771,16.162,12.818,16.115,12.818,16.058z M13.924,14.975c-0.199,0.333-0.302,0.715-0.302,1.099c0,0.119,0.01,0.239,0.03,0.357
|
||||
c0.083,0.486,0.337,0.934,0.71,1.256c0.378,0.327,0.865,0.513,1.365,0.52l0,0c0.01,0,0.02,0,0.031,0c0.501,0,0.991-0.178,1.375-0.5
|
||||
c0.377-0.316,0.637-0.761,0.727-1.245c0.023-0.129,0.036-0.259,0.036-0.388c0-0.374-0.098-0.747-0.287-1.073
|
||||
c-0.245-0.424-0.634-0.755-1.092-0.929c-0.243-0.092-0.5-0.138-0.758-0.138c-0.248,0-0.496,0.042-0.73,0.128
|
||||
C14.568,14.229,14.175,14.555,13.924,14.975z M20.073,23.338l0.873,1.507c0.014,0.024,0.018,0.053,0.011,0.08
|
||||
s-0.025,0.05-0.049,0.064c-1.621,0.936-3.393,1.382-5.14,1.382c-1.812,0-3.599-0.479-5.167-1.385
|
||||
c-0.024-0.015-0.042-0.037-0.049-0.063c-0.007-0.028-0.003-0.057,0.011-0.081l0.904-1.566L20.073,23.338z M18.288,20.258
|
||||
l-0.926-1.596c-0.029-0.051-0.093-0.067-0.144-0.039c-0.43,0.247-0.927,0.388-1.459,0.388c-0.539,0-1.043-0.146-1.478-0.398
|
||||
c-0.024-0.015-0.053-0.019-0.08-0.011c-0.027,0.007-0.05,0.024-0.064,0.049l-0.934,1.617L18.288,20.258z M24.708,11.007
|
||||
c-0.875-1.55-2.162-2.893-3.814-3.846c-0.024-0.015-0.053-0.019-0.08-0.011c-0.027,0.008-0.05,0.024-0.064,0.05l-3.554,6.182
|
||||
c-0.029,0.05-0.012,0.114,0.039,0.145c0.438,0.254,0.804,0.618,1.062,1.056c0.257,0.436,0.404,0.944,0.404,1.488
|
||||
c0,0.001,0,0.009,0,0.02c0,0.028,0.011,0.055,0.031,0.074s0.047,0.031,0.075,0.031h7.134c0.028,0,0.055-0.012,0.075-0.031
|
||||
c0.02-0.02,0.031-0.046,0.031-0.074C26.044,14.31,25.582,12.556,24.708,11.007z"/>
|
||||
<path fill="#1F4654" d="M10.67,7.131c0.009,0,0.018,0.001,0.027,0.003c0.027,0.008,0.05,0.026,0.064,0.05l3.574,6.19l0,0l0,0h0
|
||||
c0,0.002,0.001,0.003,0.001,0.005c0.002,0.005,0.005,0.01,0.007,0.015c0,0.002,0.001,0.004,0.001,0.005
|
||||
c0.001,0.005,0.002,0.01,0.003,0.016c0,0.002,0,0.004,0,0.006c0,0.005,0,0.01,0,0.015c0,0.003-0.001,0.004-0.001,0.007
|
||||
c0,0.005-0.001,0.009-0.002,0.013c-0.001,0.003-0.002,0.005-0.003,0.008c-0.001,0.004-0.002,0.008-0.004,0.012
|
||||
c-0.001,0.003-0.003,0.005-0.004,0.007c-0.002,0.004-0.004,0.007-0.006,0.01c-0.002,0.003-0.005,0.006-0.007,0.008
|
||||
c-0.002,0.003-0.004,0.006-0.007,0.009c-0.002,0.001-0.006,0.003-0.008,0.006c-0.003,0.002-0.006,0.004-0.009,0.005
|
||||
c0,0.001,0,0.001,0,0.001l0,0c-0.44,0.252-0.809,0.615-1.067,1.052c-0.259,0.436-0.409,0.943-0.411,1.487
|
||||
c0,0.058-0.048,0.104-0.106,0.104l-7.147,0.014l0,0c-0.028,0-0.055-0.012-0.074-0.031c-0.02-0.02-0.031-0.046-0.031-0.074
|
||||
c0-1.908,0.519-3.694,1.422-5.227c0.904-1.531,2.193-2.81,3.735-3.699C10.633,7.136,10.651,7.131,10.67,7.131 M20.841,7.146
|
||||
c0.018,0,0.037,0.005,0.053,0.015c1.652,0.953,2.939,2.296,3.814,3.846c0.875,1.549,1.336,3.303,1.336,5.083
|
||||
c0,0.028-0.011,0.055-0.031,0.074c-0.02,0.02-0.047,0.031-0.075,0.031h-7.134c-0.027,0-0.055-0.012-0.075-0.031
|
||||
s-0.031-0.046-0.031-0.074c0-0.011,0-0.019,0-0.02c0-0.544-0.147-1.053-0.404-1.488c-0.257-0.438-0.624-0.802-1.062-1.056
|
||||
c-0.05-0.03-0.067-0.095-0.039-0.145L20.749,7.2c0.014-0.025,0.037-0.042,0.064-0.05C20.823,7.148,20.832,7.146,20.841,7.146
|
||||
M15.758,13.934c0.258,0,0.516,0.046,0.758,0.138c0.458,0.174,0.847,0.505,1.092,0.929c0.189,0.326,0.287,0.699,0.287,1.073
|
||||
c0,0.129-0.012,0.259-0.036,0.388c-0.09,0.484-0.35,0.929-0.727,1.245c-0.383,0.322-0.874,0.5-1.375,0.5c-0.011,0-0.021,0-0.031,0
|
||||
l0,0c-0.5-0.007-0.987-0.192-1.365-0.52c-0.373-0.322-0.627-0.77-0.71-1.256c-0.021-0.118-0.03-0.238-0.03-0.357
|
||||
c0-0.384,0.103-0.766,0.302-1.099c0.251-0.42,0.645-0.746,1.104-0.913C15.263,13.976,15.511,13.934,15.758,13.934 M14.228,18.598
|
||||
c0.019,0,0.037,0.005,0.053,0.015c0.435,0.253,0.939,0.398,1.478,0.398c0.532,0,1.029-0.141,1.459-0.388
|
||||
c0.017-0.009,0.035-0.014,0.052-0.014c0.037,0,0.072,0.019,0.092,0.053l0.926,1.596l-5.085,0.01l0.934-1.617
|
||||
c0.014-0.024,0.037-0.042,0.064-0.049C14.209,18.599,14.219,18.598,14.228,18.598 M11.466,23.275l8.607,0.063l0.873,1.507
|
||||
c0.014,0.024,0.018,0.053,0.011,0.08s-0.025,0.05-0.049,0.064c-1.621,0.936-3.393,1.382-5.14,1.382
|
||||
c-1.812,0-3.599-0.479-5.167-1.385c-0.024-0.015-0.042-0.037-0.049-0.063c-0.007-0.028-0.003-0.057,0.011-0.081L11.466,23.275
|
||||
M10.67,6.966c-0.048,0-0.094,0.013-0.135,0.037c-1.564,0.902-2.875,2.202-3.793,3.758c-0.465,0.787-0.824,1.632-1.067,2.512
|
||||
c-0.251,0.907-0.378,1.849-0.378,2.798c0,0.071,0.029,0.14,0.08,0.19s0.119,0.079,0.19,0.079l0,0h0l7.147-0.014
|
||||
c0.148,0,0.269-0.12,0.27-0.269c0.002-0.495,0.136-0.98,0.388-1.403c0.242-0.407,0.585-0.747,0.994-0.985l0,0l0.015-0.009
|
||||
c0,0,0,0,0.001,0l0.017-0.01l0,0l0.033-0.019l0.005-0.015c0.002-0.003,0.005-0.005,0.006-0.008c0.004-0.004,0.01-0.01,0.017-0.019
|
||||
l0-0.001l0,0c0.007-0.01,0.012-0.019,0.016-0.023c0.002-0.005,0.007-0.012,0.012-0.021c0.005-0.011,0.008-0.021,0.011-0.026
|
||||
c0.002-0.004,0.005-0.012,0.007-0.022c0.004-0.012,0.005-0.022,0.006-0.029c0.001-0.005,0.002-0.012,0.003-0.02
|
||||
c0.001-0.015,0.001-0.025,0-0.033c0-0.006,0-0.012-0.001-0.02v-0.001l0,0c-0.002-0.014-0.004-0.024-0.007-0.034
|
||||
c0-0.005-0.002-0.011-0.005-0.019l0,0v-0.019l-0.017-0.024L14.45,13.21h-0.02l-3.527-6.108c-0.036-0.062-0.096-0.107-0.164-0.126
|
||||
C10.717,6.97,10.693,6.966,10.67,6.966L10.67,6.966z M20.841,6.982c-0.023,0-0.047,0.003-0.07,0.01
|
||||
c-0.069,0.019-0.128,0.063-0.164,0.126l-3.554,6.183c-0.074,0.127-0.029,0.293,0.099,0.367c0.413,0.239,0.76,0.585,1.002,0.997
|
||||
c0.25,0.424,0.381,0.909,0.381,1.403v0.001c0,0.003,0,0.011,0,0.021c0,0.07,0.029,0.141,0.079,0.19
|
||||
c0.05,0.051,0.119,0.079,0.19,0.079h7.134c0.071,0,0.141-0.029,0.191-0.079s0.079-0.12,0.079-0.19c0-1.806-0.47-3.592-1.358-5.164
|
||||
c-0.449-0.797-1.001-1.53-1.642-2.181c-0.66-0.671-1.411-1.251-2.233-1.727C20.935,6.995,20.888,6.982,20.841,6.982L20.841,6.982z
|
||||
M15.758,13.77L15.758,13.77L15.758,13.77c-0.271,0-0.535,0.046-0.786,0.138c-0.496,0.18-0.918,0.529-1.19,0.983
|
||||
c-0.212,0.355-0.325,0.764-0.325,1.183c0,0.129,0.011,0.259,0.032,0.385c0.089,0.523,0.361,1.004,0.765,1.354
|
||||
c0.408,0.353,0.93,0.551,1.47,0.56h0.001h0c0.011,0,0.021,0,0.032,0c0.542,0,1.066-0.192,1.48-0.539
|
||||
c0.408-0.343,0.686-0.82,0.783-1.342c0.025-0.136,0.038-0.277,0.038-0.417c0-0.407-0.107-0.807-0.309-1.156
|
||||
c-0.265-0.457-0.683-0.813-1.175-1C16.315,13.819,16.041,13.77,15.758,13.77L15.758,13.77z M14.228,18.434
|
||||
c-0.023,0-0.047,0.003-0.069,0.009c-0.07,0.019-0.128,0.063-0.165,0.126l-0.933,1.616l-0.143,0.247h0.285l5.084-0.01h0.285
|
||||
l-0.143-0.246l-0.926-1.597c-0.048-0.082-0.138-0.134-0.234-0.134c-0.046,0-0.093,0.013-0.134,0.035
|
||||
c-0.418,0.239-0.894,0.366-1.378,0.366c-0.491,0-0.973-0.131-1.395-0.377C14.322,18.446,14.275,18.434,14.228,18.434L14.228,18.434
|
||||
z M11.372,23.11l-0.048,0.083L10.42,24.76c-0.036,0.062-0.045,0.136-0.027,0.205c0.019,0.068,0.064,0.128,0.126,0.163
|
||||
c1.594,0.921,3.409,1.407,5.25,1.407c0.898,0,1.793-0.116,2.659-0.346c0.894-0.236,1.755-0.592,2.563-1.059
|
||||
c0.063-0.036,0.107-0.094,0.125-0.164c0.019-0.069,0.009-0.142-0.027-0.205l-0.874-1.506l-0.047-0.081l-0.093-0.001l-8.607-0.063
|
||||
L11.372,23.11L11.372,23.11z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#1D536C" d="M22.25,13.139h-0.48v-0.341h0.345c0.237,0,0.429-0.192,0.429-0.428v-1.037
|
||||
c0-0.236-0.192-0.429-0.429-0.429h-0.345v-0.176h0.398c0.237,0,0.429-0.191,0.429-0.429V9.21c0-0.237-0.192-0.429-0.429-0.429
|
||||
h-2.064c-0.112,0-0.214,0.044-0.291,0.114c-0.079-0.072-0.182-0.114-0.291-0.114h-1.162c-0.104,0-0.201,0.037-0.276,0.101
|
||||
c-0.074-0.063-0.171-0.101-0.275-0.101h-1.238c-0.174,0-0.323,0.104-0.391,0.252c-0.067-0.148-0.216-0.252-0.39-0.252H14.55
|
||||
c-0.063,0-0.124,0.015-0.178,0.039c-0.054-0.024-0.114-0.039-0.177-0.039h-1.238c-0.174,0-0.323,0.104-0.391,0.252
|
||||
c-0.067-0.148-0.216-0.252-0.39-0.252h-1.035c-0.143,0-0.27,0.07-0.348,0.178c-0.078-0.109-0.206-0.178-0.347-0.178H9.411
|
||||
c-0.237,0-0.429,0.191-0.429,0.429v5.447c0,0.237,0.192,0.429,0.429,0.429h1.035c0.128,0,0.244-0.057,0.322-0.146
|
||||
c0.079,0.091,0.195,0.146,0.322,0.146h1.085c0.237,0,0.429-0.191,0.429-0.429v-0.723c0.043,0.167,0.113,0.328,0.209,0.482
|
||||
c0.15,0.24,0.373,0.435,0.662,0.577c0.276,0.137,0.593,0.206,0.943,0.206c0.32,0,0.608-0.06,0.854-0.178
|
||||
c0.26-0.126,0.472-0.312,0.63-0.552c0.112-0.171,0.191-0.342,0.238-0.514v0.7c0,0.237,0.192,0.429,0.429,0.429h1.238
|
||||
c0.094,0,0.18-0.03,0.251-0.081c0.07,0.051,0.157,0.081,0.25,0.081h1.28c0.094,0,0.183-0.031,0.256-0.086
|
||||
c0.072,0.054,0.162,0.086,0.258,0.086h2.147c0.237,0,0.429-0.191,0.429-0.429v-1.09C22.678,13.33,22.486,13.139,22.25,13.139z
|
||||
M12.176,14.657H11.09l-0.644-2.477v2.477H9.411V9.21h1.035l0.694,2.453V9.21h1.035V14.657z M15.789,12.851
|
||||
c0,0.412-0.012,0.703-0.036,0.87s-0.093,0.338-0.208,0.515c-0.116,0.176-0.268,0.309-0.458,0.4
|
||||
c-0.189,0.091-0.412,0.136-0.669,0.136c-0.285,0-0.536-0.054-0.753-0.161c-0.218-0.107-0.38-0.248-0.488-0.421
|
||||
c-0.107-0.173-0.171-0.354-0.191-0.546c-0.02-0.192-0.029-0.596-0.029-1.21V9.21h1.238v4.085c0,0.237,0.011,0.39,0.034,0.456
|
||||
c0.022,0.066,0.068,0.099,0.137,0.099c0.078,0,0.129-0.036,0.151-0.108c0.022-0.073,0.034-0.245,0.034-0.518V9.21h1.238V12.851z
|
||||
M18.309,14.657l-0.501-2.335v2.335h-1.238V9.21h1.238v2.116l0.551-2.116h1.162l-0.71,2.459l0.778,2.988H18.309z M22.25,14.657
|
||||
h-2.147V9.21h2.064v1.09h-0.826v1.033h0.773v1.037h-0.773v1.197h0.909V14.657z"/>
|
||||
<polygon fill="#F0EFEF" points="11.141,11.663 10.446,9.21 9.411,9.21 9.411,14.657 10.446,14.657 10.446,12.181 11.09,14.657
|
||||
12.176,14.657 12.176,9.21 11.141,9.21 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#F0EFEF" d="M14.55,13.224c0,0.272-0.011,0.444-0.034,0.518c-0.022,0.072-0.073,0.108-0.151,0.108
|
||||
c-0.069,0-0.115-0.032-0.137-0.099c-0.023-0.066-0.034-0.219-0.034-0.456V9.21h-1.238v3.224c0,0.614,0.01,1.018,0.029,1.21
|
||||
c0.02,0.191,0.083,0.373,0.191,0.546c0.108,0.173,0.271,0.313,0.488,0.421c0.217,0.107,0.468,0.161,0.753,0.161
|
||||
c0.257,0,0.48-0.045,0.669-0.136c0.189-0.092,0.342-0.225,0.458-0.4c0.115-0.177,0.185-0.348,0.208-0.515s0.036-0.458,0.036-0.87
|
||||
V9.21H14.55V13.224z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#F0EFEF" points="19.521,9.21 18.359,9.21 17.808,11.326 17.808,9.21 16.569,9.21 16.569,14.657 17.808,14.657
|
||||
17.808,12.322 18.309,14.657 19.588,14.657 18.811,11.669 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#F0EFEF" points="21.341,13.567 21.341,12.37 22.114,12.37 22.114,11.333 21.341,11.333 21.341,10.3 22.167,10.3
|
||||
22.167,9.21 20.103,9.21 20.103,14.657 22.25,14.657 22.25,13.567 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#010101" cx="8.699" cy="21.521" r="0.107"/>
|
||||
<path fill="#1D4654" d="M8.699,21.771c-0.138,0-0.25-0.111-0.25-0.249c0-0.139,0.112-0.251,0.25-0.251
|
||||
c0.138,0,0.25,0.112,0.25,0.251C8.949,21.659,8.837,21.771,8.699,21.771z M8.699,21.486c-0.02,0-0.036,0.016-0.036,0.035
|
||||
c0,0.019,0.016,0.034,0.036,0.034s0.035-0.016,0.035-0.034C8.734,21.502,8.719,21.486,8.699,21.486z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M10.958,21.1c-0.188,0-0.346,0.058-0.474,0.172c-0.128,0.115-0.207,0.263-0.238,0.441
|
||||
c-0.033,0.193-0.002,0.343,0.091,0.452c0.093,0.108,0.23,0.163,0.409,0.163c0.146,0,0.276-0.037,0.39-0.111
|
||||
c0.113-0.074,0.192-0.183,0.236-0.325l-0.304-0.017c-0.055,0.149-0.147,0.226-0.279,0.226c-0.081,0-0.139-0.027-0.175-0.08
|
||||
c-0.036-0.054-0.041-0.154-0.016-0.305c0.044-0.259,0.149-0.388,0.314-0.388c0.145,0,0.205,0.084,0.181,0.252l0.335-0.019
|
||||
C11.439,21.254,11.282,21.1,10.958,21.1L10.958,21.1z"/>
|
||||
<path fill="#1D4654" d="M10.746,22.472c-0.222,0-0.396-0.072-0.517-0.213c-0.122-0.143-0.164-0.334-0.124-0.569
|
||||
c0.036-0.212,0.131-0.388,0.283-0.524c0.154-0.139,0.346-0.208,0.569-0.208c0.207,0,0.365,0.056,0.471,0.166
|
||||
c0.102,0.104,0.149,0.255,0.143,0.443c-0.003,0.074-0.062,0.134-0.135,0.138l-0.335,0.019c-0.043,0.002-0.084-0.015-0.113-0.046
|
||||
c-0.029-0.032-0.042-0.074-0.036-0.117c0.008-0.055,0.001-0.078-0.001-0.084c-0.005-0.002-0.017-0.005-0.038-0.005
|
||||
c-0.031,0-0.128,0-0.173,0.27c-0.026,0.149-0.009,0.196-0.006,0.201c0.003,0.005,0.014,0.016,0.056,0.016
|
||||
c0.034,0,0.097,0,0.145-0.131c0.021-0.059,0.079-0.097,0.142-0.094l0.305,0.017c0.043,0.002,0.084,0.025,0.109,0.061
|
||||
c0.025,0.037,0.033,0.082,0.019,0.125c-0.054,0.174-0.153,0.31-0.294,0.402C11.077,22.426,10.92,22.472,10.746,22.472z
|
||||
M10.55,21.405c-0.087,0.089-0.141,0.198-0.164,0.332c-0.025,0.15-0.006,0.259,0.059,0.335c0.022,0.025,0.047,0.046,0.077,0.063
|
||||
c-0.01-0.012-0.019-0.022-0.027-0.034c-0.059-0.087-0.07-0.217-0.038-0.409C10.477,21.576,10.507,21.481,10.55,21.405z
|
||||
M11.154,21.275c0.004,0.004,0.008,0.008,0.011,0.012c0.034,0.039,0.056,0.087,0.067,0.142l0.042-0.002
|
||||
c-0.01-0.045-0.028-0.08-0.053-0.106C11.205,21.302,11.182,21.287,11.154,21.275z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#010101" points="12.754,21.118 11.787,21.118 11.584,22.31 12.551,22.31 12.591,22.074 11.947,22.074
|
||||
11.991,21.814 12.498,21.814 12.536,21.59 12.029,21.59 12.071,21.345 12.715,21.345 "/>
|
||||
<path fill="#1D4654" d="M12.551,22.453h-0.966c-0.042,0-0.082-0.019-0.109-0.051c-0.027-0.032-0.039-0.074-0.031-0.116
|
||||
l0.203-1.191c0.012-0.068,0.071-0.119,0.141-0.119h0.967c0.042,0,0.082,0.019,0.109,0.051c0.027,0.031,0.039,0.074,0.031,0.116
|
||||
l-0.039,0.226c-0.011,0.069-0.071,0.119-0.141,0.119h-0.079c0.003,0.004,0.006,0.007,0.009,0.01
|
||||
c0.027,0.032,0.039,0.075,0.032,0.116l-0.038,0.226c-0.007,0.038-0.029,0.071-0.06,0.093h0.012c0.042,0,0.082,0.019,0.109,0.051
|
||||
s0.039,0.074,0.032,0.116l-0.04,0.235C12.68,22.402,12.621,22.453,12.551,22.453z M11.753,22.167h0.085c0,0,0,0,0-0.001
|
||||
c-0.027-0.032-0.039-0.074-0.032-0.115l0.044-0.261c0.007-0.045,0.036-0.082,0.075-0.103c-0.001-0.002-0.003-0.004-0.005-0.006
|
||||
c-0.027-0.032-0.039-0.074-0.031-0.116l0.042-0.245c0.003-0.021,0.013-0.042,0.025-0.06h-0.047L11.753,22.167z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M14.014,21.374c-0.05-0.089-0.113-0.153-0.189-0.194c-0.075-0.041-0.198-0.062-0.366-0.062h-0.413
|
||||
l-0.203,1.191h0.465c0.201,0,0.368-0.057,0.501-0.171c0.134-0.114,0.215-0.257,0.244-0.428
|
||||
C14.078,21.575,14.063,21.463,14.014,21.374z M13.729,21.704c-0.018,0.103-0.061,0.192-0.13,0.268
|
||||
c-0.069,0.076-0.161,0.113-0.276,0.113h-0.131l0.127-0.747h0.134c0.066,0,0.121,0.011,0.165,0.036
|
||||
c0.044,0.024,0.076,0.068,0.098,0.13C13.737,21.564,13.742,21.632,13.729,21.704z"/>
|
||||
<path fill="#1D4654" d="M13.309,22.453h-0.465c-0.042,0-0.083-0.019-0.109-0.051s-0.039-0.074-0.032-0.116l0.203-1.191
|
||||
c0.012-0.068,0.071-0.119,0.141-0.119h0.413c0.194,0,0.336,0.025,0.434,0.079c0.099,0.053,0.181,0.138,0.245,0.249
|
||||
c0.067,0.118,0.086,0.263,0.058,0.432c-0.035,0.203-0.133,0.376-0.292,0.512C13.744,22.384,13.543,22.453,13.309,22.453z
|
||||
M13.012,22.167h0.063c-0.021-0.03-0.03-0.068-0.023-0.105l0.127-0.748c0.003-0.02,0.01-0.037,0.02-0.053h-0.033L13.012,22.167z
|
||||
M13.764,21.31c0.037,0.039,0.066,0.088,0.086,0.146c0.03,0.085,0.037,0.176,0.02,0.272c-0.015,0.087-0.045,0.168-0.09,0.239
|
||||
c0.071-0.08,0.115-0.172,0.133-0.28c0.017-0.103,0.009-0.184-0.024-0.242C13.854,21.382,13.813,21.338,13.764,21.31z
|
||||
M13.44,21.479l-0.078,0.461c0.055-0.006,0.098-0.027,0.132-0.064c0.05-0.057,0.082-0.12,0.095-0.195
|
||||
c0.008-0.049,0.005-0.091-0.008-0.13c-0.005-0.016-0.017-0.044-0.033-0.053c-0.021-0.012-0.053-0.019-0.094-0.019H13.44z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M15.083,21.118h-0.367l-0.637,1.191h0.278l0.127-0.245h0.438l0.042,0.245h0.34L15.083,21.118z
|
||||
M14.597,21.845l0.216-0.418l0.071,0.418H14.597z"/>
|
||||
<path fill="#1D4654" d="M15.303,22.453h-0.34c-0.07,0-0.129-0.051-0.141-0.119L14.8,22.208h-0.23l-0.086,0.168
|
||||
c-0.024,0.047-0.074,0.077-0.127,0.077h-0.278c-0.05,0-0.097-0.027-0.123-0.069c-0.025-0.044-0.027-0.097-0.003-0.142l0.637-1.191
|
||||
c0.025-0.046,0.073-0.075,0.126-0.075h0.367c0.068,0,0.128,0.049,0.141,0.116l0.22,1.192c0.008,0.042-0.003,0.084-0.03,0.117
|
||||
C15.386,22.435,15.346,22.453,15.303,22.453z M15.083,22.167h0.048l-0.167-0.906h-0.163l-0.013,0.024
|
||||
c0.015-0.003,0.031-0.003,0.046,0c0.061,0.01,0.109,0.057,0.119,0.117l0.071,0.418c0.007,0.042-0.005,0.085-0.032,0.116
|
||||
c-0.001,0.001-0.002,0.002-0.003,0.003c0.037,0.021,0.064,0.057,0.072,0.102L15.083,22.167z M14.463,21.895l-0.018,0.032
|
||||
c0.01-0.002,0.021-0.004,0.032-0.005c-0.001-0.001-0.002-0.002-0.002-0.003C14.47,21.911,14.466,21.902,14.463,21.895z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.751,21.275c-0.034-0.061-0.082-0.102-0.145-0.123
|
||||
c-0.063-0.023-0.148-0.034-0.258-0.034h-0.595l-0.202,1.191h0.318l0.081-0.472h0.227l0.127,0.472h0.35l-0.16-0.526
|
||||
c0.167-0.063,0.263-0.165,0.288-0.308C16.795,21.401,16.784,21.335,16.751,21.275z M16.455,21.477
|
||||
c-0.006,0.035-0.022,0.066-0.05,0.094c-0.027,0.026-0.055,0.044-0.085,0.053c-0.03,0.008-0.077,0.011-0.141,0.011h-0.194
|
||||
l0.051-0.304h0.188c0.073,0,0.122,0.003,0.147,0.009c0.025,0.007,0.047,0.022,0.065,0.049S16.46,21.444,16.455,21.477z"/>
|
||||
<path fill="#1D4654" d="M16.655,22.453h-0.35c-0.064,0-0.121-0.044-0.138-0.105l-0.097-0.361l-0.059,0.348
|
||||
c-0.012,0.068-0.072,0.119-0.142,0.119h-0.318c-0.042,0-0.082-0.019-0.109-0.051s-0.039-0.074-0.032-0.116l0.204-1.191
|
||||
c0.012-0.068,0.071-0.119,0.14-0.119h0.595c0.127,0,0.228,0.013,0.307,0.041c0.096,0.035,0.17,0.098,0.221,0.188
|
||||
c0.05,0.089,0.065,0.188,0.047,0.294c-0.019,0.112-0.08,0.257-0.256,0.359l0.125,0.41c0.013,0.043,0.005,0.09-0.022,0.127
|
||||
C16.743,22.432,16.7,22.453,16.655,22.453z M16.414,22.167h0.048l-0.104-0.343c-0.006-0.021-0.008-0.043-0.004-0.063
|
||||
c-0.015,0.004-0.032,0.008-0.05,0.01c0.005,0.01,0.009,0.02,0.012,0.029L16.414,22.167z M15.719,22.167h0.03l0.06-0.354
|
||||
c0.007-0.04,0.03-0.072,0.061-0.094c-0.023-0.031-0.033-0.071-0.026-0.109l0.052-0.304c0.003-0.017,0.009-0.032,0.016-0.046
|
||||
h-0.038L15.719,22.167z M16.531,21.278c0.008,0.009,0.016,0.018,0.023,0.028c0.04,0.058,0.054,0.124,0.042,0.194
|
||||
c-0.004,0.026-0.012,0.052-0.023,0.075c0.048-0.043,0.063-0.09,0.069-0.125c0.007-0.042,0.002-0.075-0.016-0.106
|
||||
c-0.017-0.03-0.037-0.048-0.067-0.059C16.551,21.283,16.542,21.28,16.531,21.278z M16.154,21.491h0.025
|
||||
c0.072,0,0.098-0.005,0.104-0.007c0.003-0.001,0.008-0.004,0.015-0.01c-0.017-0.001-0.042-0.002-0.075-0.002h-0.066L16.154,21.491
|
||||
z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M18.344,21.1c-0.188,0-0.345,0.058-0.473,0.172c-0.128,0.115-0.208,0.263-0.238,0.441
|
||||
c-0.032,0.193-0.002,0.343,0.092,0.452c0.093,0.108,0.229,0.163,0.409,0.163c0.146,0,0.276-0.037,0.389-0.111
|
||||
c0.114-0.074,0.192-0.183,0.236-0.325l-0.304-0.017c-0.055,0.149-0.148,0.226-0.279,0.226c-0.081,0-0.14-0.027-0.176-0.08
|
||||
c-0.036-0.054-0.041-0.154-0.015-0.305c0.044-0.259,0.148-0.388,0.314-0.388c0.145,0,0.205,0.084,0.181,0.252l0.335-0.019
|
||||
C18.826,21.254,18.669,21.1,18.344,21.1L18.344,21.1z"/>
|
||||
<path fill="#1D4654" d="M18.133,22.472c-0.222,0-0.396-0.072-0.518-0.213c-0.122-0.143-0.164-0.334-0.124-0.569
|
||||
c0.036-0.212,0.131-0.388,0.283-0.524c0.155-0.139,0.346-0.208,0.569-0.208c0.207,0,0.365,0.056,0.471,0.166
|
||||
c0.102,0.104,0.149,0.255,0.143,0.443c-0.003,0.074-0.061,0.134-0.135,0.138l-0.335,0.019c-0.043,0.002-0.084-0.015-0.113-0.046
|
||||
c-0.029-0.032-0.042-0.074-0.036-0.117c0.008-0.055,0.001-0.078-0.001-0.084c-0.005-0.002-0.017-0.005-0.039-0.005
|
||||
c-0.031,0-0.127,0-0.173,0.27c-0.026,0.149-0.008,0.196-0.006,0.201c0.004,0.005,0.014,0.016,0.057,0.016
|
||||
c0.034,0,0.097,0,0.144-0.131c0.022-0.059,0.08-0.097,0.142-0.094l0.305,0.017c0.044,0.002,0.084,0.025,0.109,0.061
|
||||
c0.025,0.037,0.032,0.082,0.02,0.125c-0.054,0.174-0.153,0.31-0.295,0.402C18.464,22.426,18.307,22.472,18.133,22.472z
|
||||
M17.937,21.405c-0.087,0.089-0.141,0.198-0.164,0.332c-0.025,0.15-0.006,0.259,0.059,0.335c0.022,0.025,0.047,0.046,0.077,0.063
|
||||
c-0.011-0.012-0.02-0.022-0.027-0.034c-0.059-0.087-0.071-0.217-0.039-0.409C17.863,21.576,17.894,21.481,17.937,21.405z
|
||||
M18.541,21.275c0.004,0.004,0.007,0.008,0.011,0.012c0.034,0.039,0.056,0.087,0.067,0.142l0.042-0.002
|
||||
c-0.01-0.045-0.028-0.08-0.053-0.106C18.591,21.302,18.568,21.287,18.541,21.275z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M20.171,21.275c-0.033-0.061-0.082-0.102-0.144-0.123c-0.063-0.023-0.148-0.034-0.259-0.034h-0.595
|
||||
l-0.203,1.191h0.319l0.08-0.472h0.227l0.127,0.472h0.35l-0.16-0.526c0.167-0.063,0.263-0.165,0.287-0.308
|
||||
C20.215,21.401,20.205,21.335,20.171,21.275z M19.875,21.477c-0.006,0.035-0.022,0.066-0.049,0.094
|
||||
c-0.027,0.026-0.056,0.044-0.085,0.053c-0.03,0.008-0.077,0.011-0.141,0.011h-0.194l0.052-0.304h0.188
|
||||
c0.073,0,0.122,0.003,0.147,0.009c0.025,0.007,0.047,0.022,0.065,0.049C19.875,21.414,19.881,21.444,19.875,21.477z"/>
|
||||
<path fill="#1D4654" d="M20.075,22.453h-0.35c-0.064,0-0.121-0.044-0.138-0.105l-0.097-0.361l-0.059,0.348
|
||||
c-0.012,0.068-0.071,0.119-0.141,0.119h-0.319c-0.042,0-0.082-0.019-0.109-0.051c-0.027-0.032-0.039-0.074-0.032-0.116
|
||||
l0.203-1.191c0.012-0.068,0.071-0.119,0.141-0.119h0.595c0.128,0,0.228,0.013,0.307,0.041c0.096,0.035,0.17,0.098,0.221,0.188
|
||||
c0.05,0.089,0.066,0.188,0.048,0.294c-0.02,0.112-0.081,0.257-0.256,0.359l0.124,0.41c0.013,0.043,0.005,0.09-0.021,0.127
|
||||
C20.163,22.432,20.121,22.453,20.075,22.453z M19.835,22.167h0.048l-0.104-0.343c-0.007-0.021-0.008-0.043-0.004-0.063
|
||||
c-0.015,0.004-0.032,0.008-0.051,0.01c0.005,0.01,0.009,0.02,0.012,0.029L19.835,22.167z M19.14,22.167h0.03l0.06-0.354
|
||||
c0.007-0.04,0.029-0.072,0.061-0.094c-0.023-0.031-0.033-0.071-0.026-0.109l0.052-0.304c0.003-0.017,0.008-0.032,0.016-0.046
|
||||
h-0.038L19.14,22.167z M19.952,21.278c0.008,0.009,0.015,0.018,0.022,0.028c0.04,0.058,0.054,0.124,0.042,0.194
|
||||
c-0.004,0.026-0.012,0.052-0.023,0.075c0.048-0.043,0.063-0.09,0.069-0.125c0.007-0.042,0.002-0.075-0.016-0.106
|
||||
c-0.016-0.03-0.037-0.048-0.067-0.059C19.972,21.283,19.963,21.28,19.952,21.278z M19.575,21.491H19.6
|
||||
c0.071,0,0.098-0.005,0.104-0.007c0.003-0.001,0.008-0.004,0.015-0.01c-0.017-0.001-0.041-0.002-0.074-0.002h-0.067L19.575,21.491
|
||||
z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#010101" points="21.577,21.118 20.61,21.118 20.407,22.31 21.374,22.31 21.414,22.074 20.77,22.074 20.814,21.814
|
||||
21.32,21.814 21.358,21.59 20.852,21.59 20.894,21.345 21.538,21.345 "/>
|
||||
<path fill="#1D4654" d="M21.374,22.453h-0.966c-0.042,0-0.082-0.019-0.109-0.051s-0.039-0.074-0.032-0.116l0.203-1.191
|
||||
c0.012-0.068,0.071-0.119,0.141-0.119h0.967c0.042,0,0.082,0.019,0.109,0.051c0.027,0.031,0.039,0.074,0.032,0.116l-0.039,0.226
|
||||
c-0.012,0.069-0.071,0.119-0.141,0.119h-0.079c0.003,0.004,0.006,0.007,0.009,0.01c0.027,0.032,0.039,0.075,0.032,0.116
|
||||
l-0.039,0.226c-0.006,0.038-0.029,0.071-0.06,0.093h0.012c0.042,0,0.082,0.019,0.109,0.051c0.027,0.032,0.039,0.074,0.031,0.116
|
||||
l-0.04,0.235C21.503,22.402,21.443,22.453,21.374,22.453z M20.576,22.167h0.085c0,0,0,0-0.001-0.001
|
||||
c-0.027-0.032-0.039-0.074-0.032-0.115l0.044-0.261c0.008-0.045,0.036-0.082,0.075-0.103c-0.001-0.002-0.003-0.004-0.005-0.006
|
||||
c-0.027-0.032-0.039-0.074-0.032-0.116l0.042-0.245c0.004-0.021,0.013-0.042,0.026-0.06H20.73L20.576,22.167z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#010101" points="22.835,21.118 21.868,21.118 21.666,22.31 22.632,22.31 22.672,22.074 22.028,22.074
|
||||
22.072,21.814 22.579,21.814 22.617,21.59 22.11,21.59 22.152,21.345 22.797,21.345 "/>
|
||||
<path fill="#1D4654" d="M22.632,22.453h-0.967c-0.042,0-0.082-0.019-0.109-0.051c-0.027-0.032-0.039-0.074-0.032-0.116
|
||||
l0.203-1.191c0.012-0.068,0.071-0.119,0.141-0.119h0.967c0.042,0,0.082,0.019,0.109,0.051c0.027,0.031,0.039,0.074,0.032,0.116
|
||||
l-0.039,0.226c-0.012,0.069-0.072,0.119-0.141,0.119h-0.08c0.003,0.004,0.006,0.007,0.009,0.01
|
||||
c0.027,0.032,0.039,0.075,0.032,0.116l-0.039,0.226c-0.006,0.038-0.028,0.071-0.059,0.093h0.012c0.042,0,0.082,0.019,0.109,0.051
|
||||
c0.027,0.032,0.039,0.074,0.031,0.116l-0.041,0.235C22.761,22.402,22.702,22.453,22.632,22.453z M21.834,22.167h0.085
|
||||
c0,0,0,0,0-0.001c-0.027-0.032-0.039-0.074-0.032-0.115l0.044-0.261c0.008-0.045,0.037-0.082,0.075-0.103
|
||||
c-0.002-0.002-0.003-0.004-0.005-0.006c-0.027-0.032-0.039-0.074-0.031-0.116l0.042-0.245c0.004-0.021,0.013-0.042,0.025-0.06
|
||||
h-0.047L21.834,22.167z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon fill="#010101" points="23.127,21.118 22.924,22.31 23.235,22.31 23.282,22.036 23.513,21.792 23.695,22.31
|
||||
24.044,22.31 23.769,21.544 24.166,21.118 23.863,21.118 23.343,21.679 23.438,21.118 "/>
|
||||
<path fill="#1D4654" d="M24.044,22.453L24.044,22.453h-0.349c-0.061,0-0.115-0.038-0.135-0.096l-0.104-0.297l-0.041,0.042
|
||||
l-0.04,0.231c-0.011,0.068-0.071,0.119-0.141,0.119h-0.312c-0.042,0-0.082-0.019-0.109-0.051
|
||||
c-0.027-0.032-0.039-0.074-0.032-0.116l0.203-1.191c0.012-0.068,0.071-0.119,0.141-0.119h0.312c0.042,0,0.082,0.019,0.109,0.051
|
||||
c0.027,0.031,0.039,0.074,0.032,0.116l-0.015,0.088l0.194-0.21c0.027-0.028,0.065-0.045,0.105-0.045h0.303
|
||||
c0.057,0,0.108,0.033,0.131,0.086c0.022,0.052,0.013,0.112-0.026,0.153l-0.338,0.362l0.244,0.678
|
||||
c0.006,0.017,0.011,0.035,0.011,0.055C24.188,22.389,24.124,22.453,24.044,22.453z M23.796,22.167h0.045l-0.208-0.575
|
||||
c-0.001-0.005-0.002-0.009-0.004-0.014l-0.072,0.078c0.042,0.015,0.076,0.046,0.091,0.089L23.796,22.167z M23.093,22.167h0.021
|
||||
l0.026-0.154c0.004-0.027,0.018-0.054,0.037-0.074l0.119-0.125c-0.006-0.003-0.011-0.004-0.017-0.007
|
||||
c-0.057-0.028-0.088-0.09-0.078-0.153l0.067-0.393h-0.021L23.093,22.167z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M9.466,22.581c-0.271,0.245-0.976,0.266-1.419-0.273
|
||||
c0.012-0.131,0.049-0.223,0.097-0.324c0.021,0.04,0.064,0.103,0.09,0.133c0.114,0.137,0.569,0.668,1.165,0.353
|
||||
c0.2-0.105,0.293-0.419,0.34-0.551c0.01-0.028,0.021-0.023,0.021-0.001C9.75,22.048,9.725,22.347,9.466,22.581z"/>
|
||||
<path fill="#1D4654" d="M8.952,22.889c-0.389,0-0.759-0.179-1.016-0.491c-0.024-0.029-0.036-0.066-0.032-0.104
|
||||
c0.015-0.158,0.063-0.269,0.11-0.37c0.023-0.049,0.072-0.081,0.126-0.082c0.054-0.002,0.105,0.028,0.13,0.076
|
||||
C8.285,21.946,8.322,22,8.343,22.024c0.275,0.331,0.521,0.4,0.681,0.4c0.102,0,0.206-0.028,0.308-0.082
|
||||
c0.132-0.07,0.217-0.315,0.258-0.434c0.005-0.014,0.009-0.027,0.014-0.039c0.039-0.106,0.124-0.114,0.149-0.114
|
||||
c0.041,0,0.079,0.017,0.107,0.046c0.021,0.022,0.045,0.063,0.042,0.125c-0.007,0.118-0.03,0.479-0.339,0.76
|
||||
C9.42,22.815,9.197,22.889,8.952,22.889z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M9.491,20.786c0.053,0.083,0.07,0.124,0.098,0.188
|
||||
c0.039,0.084,0.006,0.063-0.022,0.019c-0.042-0.065-0.076-0.108-0.15-0.19C9.44,20.794,9.469,20.788,9.491,20.786z"/>
|
||||
<path fill="#1D4654" d="M9.604,21.175c-0.09,0-0.141-0.08-0.157-0.105c-0.035-0.056-0.063-0.092-0.135-0.171
|
||||
c-0.032-0.036-0.044-0.085-0.032-0.131c0.011-0.046,0.045-0.084,0.09-0.1c0.033-0.012,0.073-0.021,0.108-0.024
|
||||
c0.054-0.005,0.106,0.02,0.135,0.066c0.053,0.083,0.074,0.131,0.099,0.188l0.008,0.019c0.019,0.041,0.054,0.119,0.006,0.192
|
||||
C9.699,21.15,9.653,21.175,9.604,21.175z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#010101" d="M9.28,20.478c-0.342-0.368-0.918-0.34-1.259-0.094c-0.348,0.25-0.513,0.711-0.313,1.293
|
||||
c0.053-0.122,0.143-0.299,0.266-0.451c-0.015-0.252,0.021-0.372,0.121-0.514c0.26-0.365,0.707-0.404,0.99-0.199
|
||||
C9.153,20.494,9.247,20.483,9.28,20.478z"/>
|
||||
<path fill="#1D4654" d="M7.708,21.819c-0.002,0-0.004,0-0.005,0c-0.059-0.002-0.111-0.04-0.13-0.097
|
||||
c-0.105-0.306-0.122-0.594-0.051-0.854c0.067-0.245,0.21-0.453,0.416-0.601c0.186-0.134,0.432-0.212,0.676-0.212
|
||||
c0.304,0,0.578,0.116,0.771,0.323c0.037,0.039,0.048,0.096,0.03,0.146s-0.061,0.086-0.113,0.094
|
||||
c-0.006,0.001-0.014,0.002-0.023,0.004c-0.038,0.005-0.108,0.015-0.156,0.027c-0.042,0.012-0.086,0.003-0.122-0.022
|
||||
c-0.085-0.063-0.194-0.097-0.305-0.097c-0.189,0-0.366,0.096-0.484,0.264c-0.077,0.107-0.109,0.194-0.095,0.422
|
||||
c0.002,0.036-0.009,0.071-0.031,0.099c-0.125,0.154-0.208,0.328-0.246,0.418C7.817,21.786,7.765,21.819,7.708,21.819z
|
||||
M8.043,20.548c-0.202,0.176-0.296,0.427-0.276,0.721c0.02-0.029,0.04-0.059,0.062-0.088c-0.008-0.239,0.033-0.388,0.15-0.552
|
||||
C8,20.601,8.021,20.574,8.043,20.548z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M8.926,22.494c0.072-0.05,0.108-0.091,0.165-0.131
|
||||
c0.038-0.027,0.051-0.059-0.019-0.011c-0.063,0.044-0.11,0.078-0.193,0.123C8.891,22.483,8.912,22.492,8.926,22.494z"/>
|
||||
<path fill="#1D4654" d="M8.926,22.637c-0.006,0-0.012,0-0.018-0.001c-0.045-0.005-0.089-0.028-0.113-0.046
|
||||
c-0.04-0.028-0.061-0.075-0.058-0.125c0.004-0.049,0.032-0.093,0.075-0.116c0.066-0.035,0.106-0.063,0.157-0.099l0.022-0.015
|
||||
c0.044-0.03,0.083-0.051,0.128-0.051c0.064,0,0.12,0.041,0.139,0.102c0.013,0.041,0.02,0.12-0.084,0.193
|
||||
c-0.021,0.016-0.039,0.03-0.06,0.048c-0.029,0.025-0.061,0.053-0.107,0.085C8.983,22.628,8.955,22.637,8.926,22.637z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M9.821,20.665c-0.241-0.282-1.185-0.117-1.694,0.53
|
||||
c-0.51,0.646-0.628,1.273-0.229,1.555c0.192,0.136,0.413,0.106,0.652-0.01c-0.044-0.021-0.089-0.031-0.148-0.067
|
||||
c-0.185,0.045-0.289,0.015-0.386-0.146c-0.197-0.322,0.179-0.907,0.451-1.187c0.185-0.188,0.96-0.816,1.32-0.58
|
||||
c0.118,0.077,0.13,0.245,0.113,0.387c-0.012,0.092,0,0.092,0.021,0.005C9.957,21.007,9.948,20.813,9.821,20.665z"/>
|
||||
<path fill="#1D4654" d="M8.181,22.983c-0.134,0-0.257-0.039-0.365-0.116c-0.161-0.113-0.262-0.278-0.291-0.479
|
||||
c-0.052-0.359,0.121-0.814,0.489-1.282c0.176-0.224,0.413-0.41,0.685-0.539c0.242-0.114,0.5-0.178,0.726-0.178
|
||||
c0.228,0,0.402,0.063,0.504,0.183c0.137,0.16,0.186,0.39,0.13,0.613c-0.006,0.026-0.012,0.047-0.018,0.063
|
||||
c-0.037,0.1-0.112,0.11-0.144,0.11l0,0c-0.041,0-0.08-0.019-0.108-0.049c-0.048-0.055-0.04-0.121-0.032-0.181
|
||||
c0.016-0.126-0.003-0.22-0.049-0.251c-0.03-0.02-0.067-0.028-0.115-0.028c-0.32,0-0.856,0.417-1.025,0.59
|
||||
c-0.114,0.117-0.272,0.32-0.374,0.537c-0.097,0.208-0.117,0.377-0.057,0.476c0.055,0.09,0.089,0.096,0.131,0.096
|
||||
c0.027,0,0.06-0.005,0.101-0.015c0.036-0.009,0.074-0.002,0.106,0.017c0.026,0.015,0.048,0.024,0.075,0.034
|
||||
c0.021,0.008,0.041,0.017,0.064,0.027c0.049,0.025,0.079,0.075,0.079,0.129c0,0.055-0.032,0.104-0.08,0.128
|
||||
C8.454,22.945,8.313,22.983,8.181,22.983z M9.036,20.741c-0.277,0.088-0.578,0.266-0.797,0.542
|
||||
c-0.314,0.399-0.471,0.787-0.431,1.064c0.005,0.032,0.013,0.063,0.023,0.093c-0.034-0.163,0.001-0.361,0.105-0.583
|
||||
c0.099-0.213,0.259-0.442,0.429-0.616c0.093-0.096,0.289-0.26,0.5-0.396C8.923,20.807,8.98,20.771,9.036,20.741z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" cx="8.699" cy="21.521" r="0.107"/>
|
||||
</g>
|
||||
<path fill="#C52A29" d="M10.958,21.1c-0.188,0-0.346,0.058-0.474,0.172c-0.128,0.115-0.207,0.263-0.238,0.441
|
||||
c-0.033,0.193-0.002,0.343,0.091,0.452c0.093,0.108,0.23,0.163,0.409,0.163c0.146,0,0.276-0.037,0.39-0.111
|
||||
c0.113-0.074,0.192-0.183,0.236-0.325l-0.304-0.017c-0.055,0.149-0.147,0.226-0.279,0.226c-0.081,0-0.139-0.027-0.175-0.08
|
||||
c-0.036-0.054-0.041-0.154-0.016-0.305c0.044-0.259,0.149-0.388,0.314-0.388c0.145,0,0.205,0.084,0.181,0.252l0.335-0.019
|
||||
C11.439,21.254,11.282,21.1,10.958,21.1L10.958,21.1z"/>
|
||||
<polygon fill="#C52A29" points="12.754,21.118 11.787,21.118 11.584,22.31 12.551,22.31 12.591,22.074 11.947,22.074
|
||||
11.991,21.814 12.498,21.814 12.536,21.59 12.029,21.59 12.071,21.345 12.715,21.345 "/>
|
||||
<path fill="#C52A29" d="M14.014,21.374c-0.05-0.089-0.113-0.153-0.189-0.194c-0.075-0.041-0.198-0.062-0.366-0.062h-0.413
|
||||
l-0.203,1.191h0.465c0.201,0,0.368-0.057,0.501-0.171c0.134-0.114,0.215-0.257,0.244-0.428
|
||||
C14.078,21.575,14.063,21.463,14.014,21.374z M13.729,21.704c-0.018,0.103-0.061,0.192-0.13,0.268
|
||||
c-0.069,0.076-0.161,0.113-0.276,0.113h-0.131l0.127-0.747h0.134c0.066,0,0.121,0.011,0.165,0.036
|
||||
c0.044,0.024,0.076,0.068,0.098,0.13C13.737,21.564,13.742,21.632,13.729,21.704z"/>
|
||||
<path fill="#C52A29" d="M15.083,21.118h-0.367l-0.637,1.191h0.278l0.127-0.245h0.438l0.042,0.245h0.34L15.083,21.118z
|
||||
M14.597,21.845l0.216-0.418l0.071,0.418H14.597z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M16.751,21.275c-0.034-0.061-0.082-0.102-0.145-0.123
|
||||
c-0.063-0.023-0.148-0.034-0.258-0.034h-0.595l-0.202,1.191h0.318l0.081-0.472h0.227l0.127,0.472h0.35l-0.16-0.526
|
||||
c0.167-0.063,0.263-0.165,0.288-0.308C16.795,21.401,16.784,21.335,16.751,21.275z M16.455,21.477
|
||||
c-0.006,0.035-0.022,0.066-0.05,0.094c-0.027,0.026-0.055,0.044-0.085,0.053c-0.03,0.008-0.077,0.011-0.141,0.011h-0.194
|
||||
l0.051-0.304h0.188c0.073,0,0.122,0.003,0.147,0.009c0.025,0.007,0.047,0.022,0.065,0.049S16.46,21.444,16.455,21.477z"/>
|
||||
<path fill="#C52A29" d="M18.344,21.1c-0.188,0-0.345,0.058-0.473,0.172c-0.128,0.115-0.208,0.263-0.238,0.441
|
||||
c-0.032,0.193-0.002,0.343,0.092,0.452c0.093,0.108,0.229,0.163,0.409,0.163c0.146,0,0.276-0.037,0.389-0.111
|
||||
c0.114-0.074,0.192-0.183,0.236-0.325l-0.304-0.017c-0.055,0.149-0.148,0.226-0.279,0.226c-0.081,0-0.14-0.027-0.176-0.08
|
||||
c-0.036-0.054-0.041-0.154-0.015-0.305c0.044-0.259,0.148-0.388,0.314-0.388c0.145,0,0.205,0.084,0.181,0.252l0.335-0.019
|
||||
C18.826,21.254,18.669,21.1,18.344,21.1L18.344,21.1z"/>
|
||||
<path fill="#C52A29" d="M20.171,21.275c-0.033-0.061-0.082-0.102-0.144-0.123c-0.063-0.023-0.148-0.034-0.259-0.034h-0.595
|
||||
l-0.203,1.191h0.319l0.08-0.472h0.227l0.127,0.472h0.35l-0.16-0.526c0.167-0.063,0.263-0.165,0.287-0.308
|
||||
C20.215,21.401,20.205,21.335,20.171,21.275z M19.875,21.477c-0.006,0.035-0.022,0.066-0.049,0.094
|
||||
c-0.027,0.026-0.056,0.044-0.085,0.053c-0.03,0.008-0.077,0.011-0.141,0.011h-0.194l0.052-0.304h0.188
|
||||
c0.073,0,0.122,0.003,0.147,0.009c0.025,0.007,0.047,0.022,0.065,0.049C19.875,21.414,19.881,21.444,19.875,21.477z"/>
|
||||
<polygon fill="#C52A29" points="21.577,21.118 20.61,21.118 20.407,22.31 21.374,22.31 21.414,22.074 20.77,22.074 20.814,21.814
|
||||
21.32,21.814 21.358,21.59 20.852,21.59 20.894,21.345 21.538,21.345 "/>
|
||||
<polygon fill="#C52A29" points="22.835,21.118 21.868,21.118 21.666,22.31 22.632,22.31 22.672,22.074 22.028,22.074
|
||||
22.072,21.814 22.579,21.814 22.617,21.59 22.11,21.59 22.152,21.345 22.797,21.345 "/>
|
||||
<g>
|
||||
<polygon fill="#C52A29" points="23.127,21.118 22.924,22.31 23.235,22.31 23.282,22.036 23.513,21.792 23.695,22.31 24.044,22.31
|
||||
23.769,21.544 24.166,21.118 23.863,21.118 23.343,21.679 23.438,21.118 "/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M9.466,22.581c-0.271,0.245-0.976,0.266-1.419-0.273
|
||||
c0.012-0.131,0.049-0.223,0.097-0.324c0.021,0.04,0.064,0.103,0.09,0.133c0.114,0.137,0.569,0.668,1.165,0.353
|
||||
c0.2-0.105,0.293-0.419,0.34-0.551c0.01-0.028,0.021-0.023,0.021-0.001C9.75,22.048,9.725,22.347,9.466,22.581z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M9.491,20.786c0.053,0.083,0.07,0.124,0.098,0.188
|
||||
c0.039,0.084,0.006,0.063-0.022,0.019c-0.042-0.065-0.076-0.108-0.15-0.19C9.44,20.794,9.469,20.788,9.491,20.786z"/>
|
||||
<path fill="#C52A29" d="M9.28,20.478c-0.342-0.368-0.918-0.34-1.259-0.094c-0.348,0.25-0.513,0.711-0.313,1.293
|
||||
c0.053-0.122,0.143-0.299,0.266-0.451c-0.015-0.252,0.021-0.372,0.121-0.514c0.26-0.365,0.707-0.404,0.99-0.199
|
||||
C9.153,20.494,9.247,20.483,9.28,20.478z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M8.926,22.494c0.072-0.05,0.108-0.091,0.165-0.131
|
||||
c0.038-0.027,0.051-0.059-0.019-0.011c-0.063,0.044-0.11,0.078-0.193,0.123C8.891,22.483,8.912,22.492,8.926,22.494z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#C52A29" d="M9.821,20.665c-0.241-0.282-1.185-0.117-1.694,0.53
|
||||
c-0.51,0.646-0.628,1.273-0.229,1.555c0.192,0.136,0.413,0.106,0.652-0.01c-0.044-0.021-0.089-0.031-0.148-0.067
|
||||
c-0.185,0.045-0.289,0.015-0.386-0.146c-0.197-0.322,0.179-0.907,0.451-1.187c0.185-0.188,0.96-0.816,1.32-0.58
|
||||
c0.118,0.077,0.13,0.245,0.113,0.387c-0.012,0.092,0,0.092,0.021,0.005C9.957,21.007,9.948,20.813,9.821,20.665z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 69 KiB |
@@ -1,308 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<path fill="#D3D2CF" d="M29.802,12.938h-1.52L16.815,1.461c-0.191-0.192-0.447-0.298-0.72-0.298c-0.271,0-0.528,0.106-0.721,0.298
|
||||
L3.936,12.938H2.452c-0.955,0-1.73,0.776-1.73,1.73v5.121c0,0.954,0.775,1.73,1.73,1.73H4.89h1.349l9.139,9.139
|
||||
c0.191,0.191,0.447,0.297,0.72,0.297c0.271,0,0.528-0.105,0.721-0.297l9.137-9.139h1.349h2.499c0.955,0,1.73-0.776,1.73-1.73v-5.121
|
||||
C31.532,13.714,30.757,12.938,29.802,12.938z"/>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D3D2CF" d="M30.221,16.29c0.163-0.163,0.163-0.427,0-0.59L16.392,1.87
|
||||
c-0.163-0.163-0.428-0.163-0.59,0L1.972,15.699c-0.162,0.163-0.162,0.428,0,0.59H30.221z"/>
|
||||
<path fill="#404A9E" d="M16.097,2.658l12.867,12.866H3.23L16.097,2.658 M16.097,1.749c-0.106,0-0.213,0.04-0.295,0.122
|
||||
L1.972,15.699c-0.162,0.163-0.162,0.428,0,0.59h28.249c0.163-0.163,0.163-0.427,0-0.59L16.392,1.87
|
||||
C16.311,1.789,16.204,1.749,16.097,1.749L16.097,1.749z"/>
|
||||
</g>
|
||||
<path fill="#404A9E" d="M30.221,16.314L16.392,30.144c-0.081,0.081-0.188,0.122-0.295,0.122c-0.106,0-0.213-0.041-0.295-0.122
|
||||
L1.972,16.314c-0.162-0.163-0.162-0.427,0-0.59h28.249C30.384,15.887,30.384,16.151,30.221,16.314z"/>
|
||||
<path fill="#2E3678" d="M5.653,19.119l10.443,10.236l10.247-10.018L5.653,19.119z M8.237,20.082l8.354-0.012l0.349,7.902
|
||||
l-0.495,0.318L8.237,20.082z M17.716,26.361l-0.044-0.342l0.121-0.004l-0.182-1.578l0.12-0.004l-0.18-1.543l0.12-0.006l-0.175-1.422
|
||||
l0.115-0.001l-0.17-1.41l6.56-0.005L17.716,26.361z"/>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A09F9F" d="M17.946,6.085c-0.229-0.326-1.288-0.82-1.733-0.542
|
||||
c-0.236,0.147-0.401,0.036-0.692,0.473c-0.143-0.243-0.359-0.905-0.912-0.563c-0.039,0.024-0.078,0.05-0.118,0.076l-1.216-0.157
|
||||
l-8.258,8.362h0.64c0,0,2.681-2.72,2.671-2.66c-0.062,0.385-0.113,0.757-0.113,0.757c-0.037,0.425,0.02,0.691,0.02,0.691
|
||||
l0.418-1.064l0.156,0.424l0.187-0.797L9.34,11.42l-0.017-0.619c0,0,0.328,0.282,0.295,0.229s0.188-0.69,0.188-0.69l0.585-0.321
|
||||
l0.37,0.069l-0.016-0.567l0.296,0.282l0.103-0.39l0.243,0.07c-0.934,1.056-1.617,2.802-1.652,2.918
|
||||
c-0.043,0.138,0.776-0.809,0.776-0.809l0.172,0.581l0.208-0.557l0.272,0.254l-0.019-0.563l0.436,0.409l0.204-0.827l0.285,0.357
|
||||
c-0.026,0.017-0.044,0.027-0.044,0.027l0.146,0.147l-0.32,0.152c0,0-0.232,0.71-0.27,1.19c-0.035,0.481,0.062,1.1,0.103,1.24
|
||||
c0.039,0.141,0.131,0.581,0.131,0.581s0.126-0.475,0.339-1.006c0.214-0.532,0.927-1.25,0.927-1.25l0.083-0.172
|
||||
c0,0,0.341-0.252,0.627-0.733c0.038-0.063,0.072-0.125,0.105-0.188c-0.003,0.092,0.004,0.146,0.004,0.146l-0.064,0.143
|
||||
c0,0,0.289,0.971,0.179,1.426c-0.111,0.456,0.642,1.02,0.642,1.02s-0.267-0.531-0.225-0.636c0.044-0.112,0.042-0.376,0.075-0.593
|
||||
c0.059-0.384,0.359-0.824,0.359-0.824L14.49,11.3l0.47,0.349c0,0-0.076-0.375-0.132-0.438c-0.055-0.064,0.031-0.09,0.031-0.09
|
||||
l0.209,0.108c-0.016,0.028-0.027,0.048-0.027,0.048l0.137,0.064l-0.161,0.119c0,0,0.041,0.389,0.131,0.622
|
||||
c0.09,0.233,0.279,0.498,0.331,0.553c0.054,0.056,0.316,0.141,0.316,0.141s-0.157-0.156-0.167-0.458
|
||||
c-0.008-0.301,0.349,0.985,0.349,0.985l0.567,0.57l0.69-0.094l-0.173-2.703c0,0,0-0.178,0.002-0.29
|
||||
c0.104,0.14,0.305,0.428,0.361,0.641c0.078,0.291-0.028,0.486-0.028,0.486s0.229-0.157,0.262-0.226
|
||||
c0.022-0.042,0.069-0.172,0.107-0.324c0.086,0.104,0.146,0.161,0.146,0.161l0.056,0.159c0,0,0.574,0.713,0.703,1.194
|
||||
c0.128,0.481-0.048,0.803-0.048,0.803s0.375-0.26,0.433-0.373c0.058-0.113,0.232-0.621,0.264-1.033
|
||||
c0.032-0.412-0.09-1.046-0.09-1.046l-0.72-0.263l0.596-0.017c0,0-0.326-0.256-0.413-0.273c-0.086-0.017-0.042-0.093-0.042-0.093
|
||||
l0.207-0.041c0.126,0.111,0.215,0.223,0.243,0.272c0.062,0.108,0.218-0.307,0.218-0.307l0.111,0.322l0.199-0.169l0.11,0.544
|
||||
l0.2-0.23l0.196,0.598l0.216-0.399l0.371,0.744l0.337-0.445l0.102,0.529l0.211-0.276l0.319,0.491l0.044-0.567
|
||||
c0,0,0.997,0.767,0.926,0.644c-0.07-0.123-1.423-1.664-2.729-2.423c-0.236-0.137-0.493-0.255-0.753-0.356l0.454-0.224l0.557,0.615
|
||||
l0.375-0.214l0.207,0.352l0.21-0.34l0.142,0.548l0.343-0.152l0.657,0.173c0,0,0.394,0.563,0.376,0.621
|
||||
c-0.019,0.059,0.223-0.289,0.223-0.289l0.155,0.6l0.244-0.402l0.403,0.724l0.033-0.444l0.704,0.926c0,0-0.021-0.268-0.174-0.668
|
||||
c-0.153-0.4-0.597-0.897-1.221-1.841c-0.374-0.564-0.733-0.966-1.332-1.218L17.946,6.085z M11.787,9.092l0.142-0.284l0.196,0.044
|
||||
c-0.065,0.041-0.13,0.083-0.192,0.127C11.884,9.015,11.835,9.053,11.787,9.092z M12.499,11.035
|
||||
c-0.068,0.002-0.294,0.133-0.407,0.199l0.058-0.615l0.198,0.164c-0.054,0.018-0.087,0.029-0.087,0.029l0.296,0.123
|
||||
C12.557,10.936,12.591,11.032,12.499,11.035z M13.18,10.531c-0.049-0.004-0.534,0.153-0.78,0.235l-0.012-0.52l0.236,0.144
|
||||
l0.001-0.006C12.688,10.4,13.242,10.538,13.18,10.531z M13.486,10.307l-0.861,0.075l0.038-0.342c0,0,0.194-0.342,0.232-0.463
|
||||
c0.03-0.095,0.367-0.231,0.697-0.337c-0.405,0.447-0.568,0.773-0.568,0.773L13.486,10.307z M15.185,11.073
|
||||
c-0.023,0.013-0.061,0.066-0.091,0.115c-0.087-0.184-0.312-0.655-0.348-0.688c-0.041-0.037,0.345,0.23,0.433,0.291
|
||||
c-0.05,0.075-0.121,0.214-0.121,0.214l0.183-0.017C15.24,10.988,15.232,11.049,15.185,11.073z M15.274,10.44l-0.049,0.093
|
||||
l-0.077,0.181c0,0,0.029,0.026,0.056,0.043c-0.008,0.007-0.014,0.017-0.022,0.028l-0.476-0.605l0.488,0.165
|
||||
c0,0,0.094-0.31,0.122-1.013c0.075,0.112,0.146,0.238,0.208,0.388C15.313,10.205,15.274,10.44,15.274,10.44z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#DCB622" d="M16.557,7.957c0.004,0.063,0.007,0.104,0.009,0.154C16.563,8.063,16.561,8.012,16.557,7.957z"/>
|
||||
<path fill="#DCB622" d="M16.588,8.619c0.004,0.074,0.007,0.233,0.01,0.347c0.007,0,0.015,0,0.021,0
|
||||
c-0.02-0.319-0.031-0.512-0.048-0.772c-0.288,0-0.576-0.001-0.864-0.001c-0.017,0.26-0.028,0.454-0.051,0.772
|
||||
c0.009,0,0.017,0,0.024,0c0.004-0.113,0.008-0.272,0.014-0.347C15.992,8.618,16.29,8.619,16.588,8.619z"/>
|
||||
<path fill="#DCB622" d="M16.649,10.014c-0.007-0.125-0.014-0.231-0.021-0.331c-0.107-0.001-0.283-0.024-0.517-0.028
|
||||
c-0.263-0.004-0.425,0.008-0.465,0.012c-0.007,0.104-0.014,0.214-0.022,0.347C15.966,10.014,16.309,10.014,16.649,10.014z"/>
|
||||
<path fill="#DCB622" d="M16.629,10.274c-0.327,0-0.655-0.001-0.983-0.001c0.002-0.034,0.004-0.063,0.006-0.088
|
||||
c-0.021,0.325-0.034,0.537-0.059,0.911c0.363,0,0.726,0.001,1.088,0.001C16.658,10.757,16.646,10.551,16.629,10.274z"/>
|
||||
<path fill="#DCB622" d="M15.623,11.252c0.002-0.045,0.005-0.088,0.009-0.147C15.628,11.157,15.625,11.206,15.623,11.252z"/>
|
||||
<path fill="#DCB622" d="M16.642,11.106c0,0.018,0.002,0.035,0.002,0.05C16.643,11.14,16.642,11.123,16.642,11.106z"/>
|
||||
<path fill="#DCB622" d="M16.656,11.365c-0.347,0-0.693,0-1.042-0.001c-0.017,0.287-0.031,0.499-0.053,0.85
|
||||
c0.383,0,0.765,0,1.148,0.001C16.688,11.864,16.674,11.651,16.656,11.365z"/>
|
||||
<path fill="#DCB622" d="M16.82,19.795c0,0.004,0,0.007,0,0.012c0.018,0,0.035,0,0.052,0c-0.029-0.55-0.052-0.863-0.081-1.4
|
||||
c0.007,0.127,0.01,0.189,0.018,0.316c-0.453,0-0.905,0-1.359-0.001c-0.017,0.364-0.027,0.65-0.052,1.083c0.018,0,0.035,0,0.052,0
|
||||
c0-0.004,0-0.008,0-0.012C15.906,19.794,16.363,19.794,16.82,19.795z"/>
|
||||
<path fill="#B69F4F" d="M16.82,19.604c0,0.004,0,0.008,0,0.012c0.018,0,0.035,0,0.052,0c-0.029-0.549-0.052-0.862-0.081-1.4
|
||||
c0.007,0.127,0.01,0.19,0.018,0.317c-0.453-0.001-0.905-0.001-1.359-0.002c-0.017,0.365-0.027,0.651-0.052,1.083
|
||||
c0.018,0,0.035,0,0.052,0c0-0.004,0-0.008,0-0.012C15.906,19.603,16.363,19.603,16.82,19.604z"/>
|
||||
<path fill="#DCB622" d="M16.817,22.668c0.019,0,0.075,0,0.095,0c-0.022-0.464-0.063-0.75-0.093-1.131
|
||||
c-0.463-0.002-0.925-0.002-1.387-0.002c-0.028,0.381-0.063,0.668-0.087,1.131c0.017,0,0.07,0,0.085,0v0.001
|
||||
C15.893,22.668,16.354,22.668,16.817,22.668C16.817,22.668,16.817,22.668,16.817,22.668z"/>
|
||||
<path fill="#DCB622" d="M16.863,27.371c0.019,0,0.08,0,0.102,0c-0.022-0.508-0.063-0.828-0.093-1.24c-0.5,0-1-0.001-1.5-0.002
|
||||
c-0.028,0.414-0.064,0.732-0.089,1.24c0.019,0,0.076,0,0.094,0c0,0.004,0,0.008-0.001,0.012c0.496,0,0.991,0,1.487,0.001
|
||||
C16.863,27.378,16.863,27.375,16.863,27.371z"/>
|
||||
<path fill="#DCB622" d="M16.886,27.778c-0.511-0.001-1.022-0.001-1.533-0.001c-0.029,0.416-0.066,0.738-0.09,1.26
|
||||
c0.266,0,0.597,0.582,0.862,0.582c0.305,0,0.544-0.581,0.849-0.581C16.951,28.518,16.915,28.195,16.886,27.778z"/>
|
||||
<path fill="#DCB622" d="M16.833,21.196C16.833,21.197,16.833,21.197,16.833,21.196c0.021,0.001,0.044,0.001,0.056,0.001
|
||||
c-0.024-0.465-0.061-0.727-0.089-1.102c-0.447-0.001-0.894-0.002-1.341-0.002c-0.03,0.377-0.068,0.637-0.094,1.103
|
||||
c0.011,0,0.032,0,0.054,0c0-0.001,0-0.001,0-0.001C15.891,21.195,16.362,21.195,16.833,21.196z"/>
|
||||
<path fill="#DCB622" d="M16.833,24.161c0.02,0,0.078,0,0.099,0c-0.023-0.466-0.063-0.761-0.092-1.14c-0.477,0-0.953,0-1.431-0.001
|
||||
c-0.028,0.378-0.062,0.674-0.086,1.14c0.017,0,0.072,0,0.09,0c0,0.003,0,0.006,0,0.009c0.474,0.001,0.947,0.001,1.42,0.001
|
||||
C16.833,24.168,16.833,24.164,16.833,24.161z"/>
|
||||
<path fill="#DCB622" d="M16.849,25.748c0.02,0,0.08,0,0.101,0c-0.023-0.495-0.063-0.805-0.094-1.211
|
||||
c-0.489,0-0.977-0.001-1.464-0.001c-0.029,0.405-0.065,0.715-0.089,1.211c0.018,0,0.074,0,0.091,0c0,0.001,0,0.001,0,0.001
|
||||
C15.879,25.748,16.364,25.748,16.849,25.748L16.849,25.748z"/>
|
||||
<path fill="#B69F4F" d="M15.707,8.192L15.707,8.192c0.005-0.072,0.011-0.149,0.015-0.236C15.716,8.051,15.713,8.097,15.707,8.192z"
|
||||
/>
|
||||
<path fill="#B69F4F" d="M16.571,8.193c-0.002-0.031-0.003-0.057-0.006-0.082C16.568,8.139,16.57,8.166,16.571,8.193L16.571,8.193z"
|
||||
/>
|
||||
<path fill="#B69F4F" d="M16.565,8.111c-0.002-0.049-0.005-0.091-0.009-0.154c-0.277,0-0.556,0-0.835-0.001
|
||||
c-0.004,0.087-0.01,0.164-0.015,0.236c0.288,0,0.576,0,0.864,0.001C16.57,8.166,16.568,8.139,16.565,8.111z"/>
|
||||
<path fill="#B69F4F" d="M16.586,8.974c0.017,0.29,0.028,0.478,0.043,0.709c0.003,0,0.009,0,0.011,0c0-0.253-0.042-0.479-0.039-0.63
|
||||
C16.6,9.03,16.598,9,16.598,8.965c-0.307,0-0.611,0-0.917-0.001c-0.002,0.035-0.003,0.065-0.006,0.088
|
||||
c-0.017,0.271-0.038,0.615-0.038,0.615s0.004,0,0.011-0.001c0.014-0.225,0.025-0.411,0.045-0.694
|
||||
C15.99,8.973,16.288,8.974,16.586,8.974z"/>
|
||||
<path fill="#B69F4F" d="M16.588,8.619c-0.298,0-0.596,0-0.894-0.001c-0.006,0.075-0.01,0.233-0.014,0.347
|
||||
c0.306,0,0.61,0.001,0.917,0.001C16.595,8.852,16.592,8.693,16.588,8.619z"/>
|
||||
<path fill="#B69F4F" d="M16.112,9.655c0.233,0.004,0.409,0.026,0.517,0.028c-0.015-0.231-0.026-0.42-0.043-0.709
|
||||
c-0.298,0-0.596,0-0.894,0c-0.02,0.283-0.031,0.469-0.045,0.694C15.688,9.663,15.85,9.651,16.112,9.655z"/>
|
||||
<path fill="#B69F4F" d="M16.629,10.274c-0.006-0.101-0.01-0.151-0.016-0.251C16.619,10.115,16.625,10.197,16.629,10.274
|
||||
L16.629,10.274z"/>
|
||||
<path fill="#B69F4F" d="M15.651,10.185c0.003-0.051,0.006-0.105,0.009-0.163C15.656,10.088,15.654,10.133,15.651,10.185z"/>
|
||||
<path fill="#B69F4F" d="M16.629,10.274c-0.004-0.077-0.01-0.159-0.016-0.251c-0.317,0-0.635,0-0.953-0.001
|
||||
c-0.003,0.058-0.006,0.111-0.009,0.163c-0.002,0.026-0.004,0.054-0.006,0.088C15.974,10.273,16.302,10.273,16.629,10.274z"/>
|
||||
<path fill="#B69F4F" d="M15.614,11.364L15.614,11.364c0.003-0.036,0.007-0.072,0.009-0.111
|
||||
C15.621,11.286,15.617,11.32,15.614,11.364z"/>
|
||||
<path fill="#B69F4F" d="M16.657,11.365c-0.006-0.085-0.008-0.136-0.014-0.208C16.649,11.231,16.653,11.3,16.657,11.365
|
||||
C16.656,11.365,16.656,11.365,16.657,11.365z"/>
|
||||
<path fill="#B69F4F" d="M16.644,11.156c0-0.016-0.002-0.032-0.002-0.05c-0.337,0-0.674,0-1.01-0.001
|
||||
c-0.004,0.06-0.007,0.102-0.009,0.147c-0.002,0.039-0.006,0.076-0.009,0.111c0.349,0,0.695,0.001,1.042,0.001
|
||||
C16.653,11.3,16.649,11.231,16.644,11.156z"/>
|
||||
<path fill="#B69F4F" d="M15.449,18.722L15.449,18.722c0.006-0.099,0.011-0.202,0.019-0.316
|
||||
C15.46,18.531,15.456,18.596,15.449,18.722z"/>
|
||||
<path fill="#B69F4F" d="M16.791,18.406c-0.441,0-0.883-0.001-1.323-0.001c-0.008,0.114-0.013,0.218-0.019,0.316
|
||||
c0.454,0.001,0.906,0.001,1.359,0.001C16.801,18.596,16.798,18.533,16.791,18.406z"/>
|
||||
<path fill="#B69F4F" d="M16.82,19.795c-0.457-0.001-0.914-0.001-1.371-0.002c0,0.004,0,0.008,0,0.012
|
||||
c0.457,0,0.914,0.001,1.371,0.002C16.82,19.802,16.82,19.799,16.82,19.795z"/>
|
||||
<path fill="#B69F4F" d="M16.781,19.789c-0.434,0-0.868,0-1.303-0.001c-0.006,0.112-0.013,0.213-0.02,0.306
|
||||
c0.447,0,0.894,0.001,1.341,0.002C16.794,20.002,16.788,19.902,16.781,19.789z"/>
|
||||
<path fill="#B69F4F" d="M16.797,21.197c0.008,0,0.022,0,0.036,0c0,0,0,0,0-0.001c-0.471-0.001-0.942-0.001-1.414-0.001
|
||||
c0,0,0,0,0,0.001c0.015,0,0.028,0,0.035,0c-0.007,0.124-0.014,0.234-0.021,0.339c0.462,0,0.924,0,1.387,0.002
|
||||
C16.812,21.433,16.805,21.322,16.797,21.197z"/>
|
||||
<path fill="#B69F4F" d="M16.817,22.669c-0.463-0.001-0.925-0.001-1.387-0.001c-0.006,0.129-0.013,0.244-0.021,0.353
|
||||
c0.478,0.001,0.954,0.001,1.431,0.001C16.831,22.913,16.824,22.798,16.817,22.669z"/>
|
||||
<path fill="#DCB622" d="M16.656,13.377c0.016,0,0.059,0,0.073,0c-0.018-0.355-0.048-0.575-0.071-0.866
|
||||
c-0.354-0.001-0.709-0.001-1.063-0.001c-0.022,0.292-0.048,0.511-0.066,0.867c0.013,0,0.055,0,0.065,0l0,0
|
||||
c0.354,0,0.708,0.001,1.063,0.002V13.377z"/>
|
||||
<path fill="#DCB622" d="M16.669,12.249C16.669,12.25,16.669,12.25,16.669,12.249c0.016,0.001,0.034,0.001,0.042,0.001
|
||||
c-0.019-0.357-0.046-0.557-0.068-0.845c-0.343,0-0.685-0.001-1.027-0.001c-0.022,0.289-0.053,0.489-0.072,0.845
|
||||
c0.008,0,0.025,0,0.041,0v0C15.946,12.249,16.308,12.249,16.669,12.249z"/>
|
||||
<path fill="#B69F4F" d="M16.641,12.25c0.006,0,0.018,0,0.028,0c0,0,0-0.001,0-0.001c-0.361,0-0.723,0-1.085,0v0
|
||||
c0.012,0,0.021,0,0.027,0c-0.006,0.095-0.01,0.18-0.017,0.26c0.354,0,0.709,0,1.063,0.001
|
||||
C16.652,12.431,16.646,12.346,16.641,12.25z"/>
|
||||
<path fill="#B69F4F" d="M16.656,13.378c-0.354,0-0.709-0.001-1.063-0.001c-0.005,0.099-0.01,0.188-0.017,0.271
|
||||
c0.365,0,0.731,0.001,1.097,0.001C16.667,13.565,16.662,13.478,16.656,13.378z"/>
|
||||
<path fill="#B69F4F" d="M16.833,24.17c-0.473,0-0.946,0-1.42-0.001c-0.007,0.134-0.016,0.254-0.021,0.367
|
||||
c0.487,0,0.975,0.001,1.464,0.001C16.847,24.425,16.839,24.305,16.833,24.17z"/>
|
||||
<path fill="#B69F4F" d="M16.849,25.749c-0.484-0.001-0.97-0.001-1.455-0.001c-0.006,0.139-0.015,0.264-0.021,0.381
|
||||
c0.5,0.001,1,0.002,1.5,0.002C16.863,26.014,16.855,25.889,16.849,25.749z"/>
|
||||
<path fill="#B69F4F" d="M16.863,27.382c-0.496-0.001-0.991-0.001-1.487-0.001c-0.006,0.145-0.014,0.273-0.023,0.396
|
||||
c0.089,0,0.176,0,0.263,0c0.155,0,0.312,0,0.468,0c0.193,0,0.387,0,0.58,0.001c0.074,0,0.148,0,0.223,0
|
||||
C16.877,27.656,16.869,27.527,16.863,27.382z"/>
|
||||
</g>
|
||||
<rect x="24.566" y="8.86" transform="matrix(0.708 -0.7062 0.7062 0.708 -1.053 20.9758)" fill-rule="evenodd" clip-rule="evenodd" fill="#A09F9F" width="0.546" height="5.802"/>
|
||||
<polygon fill="#B69F4F" points="16.104,28.303 15.366,27.564 15.353,27.781 16.104,28.533 16.884,27.755 16.872,27.551 "/>
|
||||
<path fill="#404A9E" d="M30.221,16.314c0.163-0.163,0.163-0.427,0-0.59H1.972c-0.162,0.163-0.162,0.427,0,0.59l13.83,13.829
|
||||
c0.082,0.081,0.136,0.122,0.295,0.122c0.158,0,0.277-0.105,0.277-0.105L30.221,16.314z M16.097,28.431L5.081,17.415h22.031
|
||||
L16.097,28.431z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D3D2CF" d="M30.282,19.778c0,0.391-0.316,0.708-0.707,0.708H2.68
|
||||
c-0.392,0-0.708-0.317-0.708-0.708v-5.036c0-0.391,0.316-0.708,0.708-0.708h26.896c0.391,0,0.707,0.317,0.707,0.708V19.778z"/>
|
||||
<path fill="#404A9E" d="M29.802,20.951H2.452c-0.623,0-1.13-0.508-1.13-1.131V14.7c0-0.623,0.507-1.129,1.13-1.129h27.35
|
||||
c0.623,0,1.13,0.506,1.13,1.129v5.121C30.932,20.443,30.425,20.951,29.802,20.951z M2.452,14.389c-0.171,0-0.31,0.14-0.31,0.311
|
||||
v5.121c0,0.172,0.139,0.311,0.31,0.311h27.35c0.172,0,0.311-0.139,0.311-0.311V14.7c0-0.171-0.139-0.311-0.311-0.311H2.452z"/>
|
||||
<rect x="7.907" y="18.254" fill="#F4F4E6" width="1.729" height="0.692"/>
|
||||
<rect x="7.907" y="17.789" fill="#F4F4E6" width="1.729" height="0.693"/>
|
||||
<path fill="#F4F4E6" d="M26.245,19.158c-1.504,0-1.706-0.948-1.706-1.877c0-0.923,0.211-1.867,1.778-1.867
|
||||
c0.84,0,1.306,0.315,1.428,0.962l0.05,0.261l-0.979-0.009l-0.054-0.139c-0.036-0.095-0.084-0.12-0.44-0.12
|
||||
c-0.606,0-0.709,0.228-0.709,0.912c0,0.654,0.058,0.92,0.633,0.92c0.4,0,0.413-0.053,0.433-0.131l0.039-0.159l1.021-0.044
|
||||
l-0.007,0.235C27.714,18.613,27.313,19.158,26.245,19.158z"/>
|
||||
<path fill="#F4F4E6" d="M22.737,19.197l-0.817-1.338h-0.29l0.007,1.337h-1.076l0.007-3.812h1.729c0.813,0,1.379,0.438,1.379,1.066
|
||||
c0,0.409-0.078,0.95-0.68,1.2l1.109,1.547H22.737z M22.17,16.875c0.416,0,0.497-0.155,0.497-0.422c0-0.075,0-0.232-0.631-0.232
|
||||
H21.64v0.654H22.17z"/>
|
||||
<path fill="#F4F4E6" d="M18.724,19.181l-0.217-0.669h-0.685l-0.185,0.669h-1.137l1.225-3.788h0.838l1.254,3.788H18.724z
|
||||
M18.182,17.555l-0.03-0.097l-0.025,0.097H18.182z"/>
|
||||
<polygon fill="#F4F4E6" points="12.663,15.431 13.596,15.431 14.289,16.518 14.982,15.431 15.922,15.431 15.946,19.145
|
||||
14.873,19.143 14.872,17.497 14.282,18.511 13.696,17.431 13.712,19.143 12.64,19.145 "/>
|
||||
<polygon fill="#F4F4E6" points="8.292,17.949 8.292,16.432 7.495,16.423 7.495,15.412 10.086,15.412 10.086,16.423 9.292,16.432
|
||||
9.292,17.949 "/>
|
||||
<path fill="#F4F4E6" d="M5.308,19.158c-0.545,0-0.95-0.131-1.205-0.39c-0.195-0.199-0.297-0.472-0.291-0.789l0.003-0.228
|
||||
l1.006,0.061l0.033,0.164c0.039,0.193,0.056,0.273,0.504,0.273c0.499,0,0.499-0.118,0.499-0.267c0-0.175,0-0.356-0.701-0.356h-0.01
|
||||
c-0.848,0-1.295-0.406-1.295-1.174c0-1.04,1.108-1.04,1.473-1.04c0.608,0,0.998,0.115,1.228,0.361
|
||||
c0.157,0.168,0.228,0.389,0.208,0.656l-0.014,0.205l-0.898-0.009l-0.054-0.14c-0.044-0.118-0.075-0.204-0.487-0.204
|
||||
c-0.281,0-0.451,0.111-0.477,0.159c0.002,0.026,0.003,0.052,0.005,0.077c0.005,0.102,0.01,0.109,0.021,0.117
|
||||
c0.033,0.024,0.159,0.078,0.589,0.079c0.877,0,1.443,0.518,1.443,1.318C6.888,18.552,6.475,19.158,5.308,19.158z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#404A9E" d="M5.444,16.933c-0.9-0.001-0.81-0.221-0.833-0.48c-0.019-0.196,0.292-0.388,0.694-0.388
|
||||
c0.462,0,0.603,0.108,0.692,0.345l0.543,0.005c0.042-0.592-0.456-0.783-1.218-0.783c-0.77,0-1.256,0.2-1.256,0.821
|
||||
c0,0.473,0.188,0.956,1.078,0.956c0.657-0.001,0.929,0.15,0.929,0.575c0,0.386-0.246,0.485-0.717,0.485
|
||||
c-0.477,0-0.646-0.091-0.718-0.449l-0.61-0.036c-0.009,0.53,0.321,0.957,1.278,0.957c0.908,0,1.361-0.401,1.361-0.908
|
||||
C6.669,17.292,6.143,16.933,5.444,16.933z M7.714,16.208l0.796,0.008v1.515h0.563v-1.515l0.794-0.008v-0.577H7.714V16.208z
|
||||
M15.102,15.648l-0.813,1.276l-0.812-1.276h-0.597l-0.021,3.277l0.632-0.001l-0.021-2.37l0.819,1.511l0.8-1.377l0.002,2.237
|
||||
l0.635,0.001l-0.021-3.277H15.102z M17.885,15.611l-1.084,3.352h0.671l0.185-0.67h1.009l0.217,0.67h0.633l-1.109-3.352H17.885z
|
||||
M17.842,17.772l0.298-1.116l0.335,1.116H17.842z M23.456,16.451c0-0.503-0.476-0.848-1.16-0.848h-1.511l-0.006,3.375h0.638
|
||||
l-0.005-1.338h0.631l0.816,1.338h0.82l-1.041-1.449C23.327,17.395,23.456,16.956,23.456,16.451z M21.421,17.094v-1.091h0.615
|
||||
c0.571,0,0.85,0.125,0.85,0.451c0,0.433-0.229,0.64-0.716,0.64H21.421z M26.245,18.42c-0.829,0-0.852-0.559-0.852-1.139
|
||||
c0-0.646,0.085-1.129,0.928-1.129c0.336,0,0.548,0.009,0.645,0.26l0.565,0.005c-0.082-0.441-0.348-0.785-1.214-0.785
|
||||
c-1.326,0-1.562,0.7-1.562,1.649c0,0.958,0.226,1.659,1.489,1.659c0.93,0,1.253-0.435,1.267-0.845l-0.621,0.026
|
||||
C26.828,18.375,26.641,18.42,26.245,18.42z M8.126,18.264h1.292v-0.256H8.126V18.264z M8.126,18.729h1.292v-0.258H8.126V18.729z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#F4F4E6" d="M29.802,14.389H2.452c-0.171,0-0.31,0.14-0.31,0.311v5.121c0,0.172,0.139,0.311,0.31,0.311h27.35
|
||||
c0.172,0,0.311-0.139,0.311-0.311V14.7C30.112,14.528,29.974,14.389,29.802,14.389z M29.894,19.82c0,0.052-0.04,0.093-0.092,0.093
|
||||
H2.452c-0.051,0-0.093-0.041-0.093-0.093V14.7c0-0.051,0.042-0.092,0.093-0.092h27.35c0.052,0,0.092,0.041,0.092,0.092V19.82z"/>
|
||||
<g>
|
||||
<path fill="#59763E" d="M19.426,7.479c-0.188,0.033-0.97-0.893-0.709-0.358c0.435,0.887,0.493,1.685,0.5,1.856
|
||||
c0.015,0.315,0.028,0.538,0.037,0.704l0.207,0.214c0,0,0.033,0.818-0.019,0.872c-0.053,0.055,0.384-0.195,0.384-0.195l-0.214,0.733
|
||||
l0.471-0.308l-0.055,0.998l0.3-0.464l0.042,0.538c0,0,0.203-0.006,0.328,0c0.095-0.516-0.05-1.267-0.072-2.621
|
||||
c-0.008-0.393-0.034-0.741-0.106-1.064C20.146,8.003,19.577,7.452,19.426,7.479z"/>
|
||||
</g>
|
||||
<rect x="14.653" y="3.242" transform="matrix(0.7071 0.7071 -0.7071 0.7071 8.0374 -10.0138)" fill-rule="evenodd" clip-rule="evenodd" fill="#A0A0A0" width="2.907" height="2.907"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#618A41" d="M24.751,6.581c-0.424-0.236-0.789-0.463-1.291-0.655
|
||||
c0.559-0.052,0.923-0.078,0.923-0.078l0.294-0.367l0.886,0.683l0.111-0.682l0.813,1.136l-0.031-0.875l1.188,0.604
|
||||
c0,0-1.321-1.405-2.337-2.214c-1.245-0.991-2.922-1.115-5.418-0.664c-0.918,0.166-1.621,0.475-2.162,0.827
|
||||
c-0.248-0.372-1.392-0.935-1.874-0.621c-0.255,0.167-0.432,0.04-0.746,0.535c-0.156-0.276-0.394-1.029-0.987-0.641
|
||||
c-0.041,0.027-0.413-0.146-0.455-0.116c-0.616-0.429-1.058-0.461-1.897-0.486C9.084,2.885,8.128,3.755,7.474,4.608
|
||||
C7.043,5.17,6.93,5.306,6.901,5.335l0.849-0.39L7.544,5.632l0.765-0.847L8.23,5.341l0.742-0.495l0.114,0.32
|
||||
c0,0,0.7-0.099,1.558-0.003c-0.091,0.015-0.181,0.032-0.276,0.051C8.756,5.546,7.723,6.431,6.943,7.035
|
||||
C6.163,7.64,5.541,8.283,5.229,8.827C4.915,9.369,4.915,9.369,4.915,9.369s0.947-0.162,1.118-0.263
|
||||
C6.204,9.005,6.17,8.463,6.17,8.463l0.173,0.563l0.492-0.925l0.177,0.703l0.337-0.945c0,0,0.115,0.984,0.113,0.904
|
||||
s0.571-1.187,0.571-1.187L8.194,7.79C8.091,7.995,8.006,8.212,7.937,8.44c-0.362,1.206-0.672,1.87-0.71,2.353
|
||||
c-0.038,0.482,0.023,0.783,0.023,0.783l0.449-1.206l0.17,0.482l0.199-0.905l0.375,0.381L8.422,9.625c0,0,0.357,0.321,0.32,0.261
|
||||
C8.706,9.825,8.945,9.102,8.945,9.102l0.63-0.362l0.401,0.08L9.958,8.176l0.321,0.321l0.107-0.443l0.263,0.081
|
||||
c-1.005,1.196-1.738,3.177-1.777,3.309c-0.046,0.156,0.839-0.916,0.839-0.916l0.186,0.66l0.224-0.632l0.295,0.288l-0.021-0.64
|
||||
l0.471,0.465l0.218-0.938l0.311,0.407c-0.029,0.019-0.048,0.031-0.048,0.031l0.662,0.149l-0.851,0.19c0,0-0.248,0.806-0.287,1.352
|
||||
c-0.037,0.546,0.068,1.249,0.113,1.408c0.044,0.16,0.145,0.66,0.145,0.66s0.133-0.539,0.363-1.142
|
||||
c0.229-0.603,0.996-1.417,0.996-1.417l0.091-0.195c0,0,0.366-0.286,0.675-0.831c0.04-0.071,0.077-0.143,0.111-0.213
|
||||
c-0.001,0.104,0.007,0.166,0.007,0.166l-0.069,0.162c0,0,0.316,1.103,0.197,1.62c0.287,0,0.416-0.01,0.503-0.01
|
||||
c0.007-0.094,0.015-0.137,0.027-0.228c0.063-0.436,0.387-0.935,0.387-0.935l-0.407-0.701l0.508,0.397c0,0-0.084-0.425-0.144-0.498
|
||||
c-0.06-0.072,0.033-0.101,0.033-0.101l0.226,0.123c-0.017,0.032-0.029,0.055-0.029,0.055l0.147,0.074l-0.172,0.135
|
||||
c0,0,0.045,0.442,0.142,0.707c0.098,0.265,0.305,0.564,0.361,0.627c0.058,0.063,0.342,0.161,0.342,0.161s-0.171-0.177-0.183-0.52
|
||||
c-0.011-0.342,0.214-0.923,0.214-0.923l0.005-0.115l0.05-0.28c0,0,0.074-0.04,0.094-0.128c0.383-0.13,0.936-0.127,1.184,0.041
|
||||
c0.002-0.09,0-0.201,0.002-0.328c0.111,0.159,0.33,0.486,0.393,0.728c0.085,0.331-0.029,0.552-0.029,0.552s0.244-0.179,0.282-0.256
|
||||
c0.022-0.047,0.073-0.195,0.114-0.367c0.093,0.119,0.158,0.183,0.158,0.183l0.062,0.18c0,0,0.622,0.812,0.762,1.358
|
||||
c0.142,0.547-0.049,0.912-0.049,0.912s0.405-0.294,0.468-0.423c0.061-0.128,0.249-0.704,0.281-1.171
|
||||
c0.033-0.467-0.1-1.188-0.1-1.188l-0.778-0.299l0.643-0.018c0,0-0.353-0.292-0.446-0.311s-0.045-0.106-0.045-0.106l0.223-0.046
|
||||
c0.135,0.125,0.231,0.253,0.264,0.31c0.066,0.122,0.234-0.349,0.234-0.349l0.12,0.367l0.216-0.191l0.119,0.619l0.217-0.261
|
||||
l0.214,0.68l0.231-0.453l0.404,0.846l0.362-0.504l0.111,0.601l0.227-0.313l0.347,0.558l0.045-0.645c0,0,1.08,0.874,1.004,0.735
|
||||
c-0.077-0.14-1.541-1.894-2.957-2.76c-0.255-0.157-0.532-0.291-0.813-0.406l0.489-0.253l0.604,0.7L20.568,8.4l0.225,0.399
|
||||
l0.227-0.385l0.154,0.623l0.368-0.171l0.711,0.199c0,0,0.428,0.64,0.409,0.707c-0.02,0.066,0.24-0.327,0.24-0.327l0.17,0.682
|
||||
l0.262-0.457l0.437,0.824l0.036-0.505l0.763,1.054c0,0-0.022-0.305-0.188-0.76c-0.167-0.455-0.646-1.02-1.325-2.094
|
||||
c-0.406-0.642-0.795-1.098-1.443-1.386c0.973,0.007,2.019,0.72,2.019,0.72l0.136-0.262c0,0,0.766,1.012,0.777,1.092
|
||||
c0.013,0.079-0.049-0.906-0.049-0.906l0.502,0.885l0.05-0.716l0.652,0.845l0.071-0.577c0,0,0.063,0.539,0.25,0.615
|
||||
c0.186,0.077,1.362,0.8,1.362,0.8s-0.207-0.691-0.614-1.184C26.362,7.622,25.632,7.071,24.751,6.581z M11.237,7.565
|
||||
c-0.052,0.04-0.105,0.082-0.157,0.127l0.153-0.322l0.211,0.051C11.374,7.467,11.305,7.515,11.237,7.565z M11.854,9.9
|
||||
c-0.072,0.002-0.316,0.149-0.438,0.225l0.062-0.698l0.214,0.186c-0.058,0.021-0.095,0.033-0.095,0.033l0.32,0.14
|
||||
C11.917,9.787,11.954,9.897,11.854,9.9z M12.59,9.33c-0.054-0.006-0.577,0.172-0.843,0.264l-0.014-0.589l0.256,0.164l0.002-0.007
|
||||
C12.058,9.179,12.657,9.337,12.59,9.33z M12.921,9.076l-0.93,0.083l0.038-0.388c0,0,0.209-0.388,0.25-0.525
|
||||
c0.032-0.108,0.396-0.261,0.753-0.381c-0.438,0.507-0.611,0.876-0.611,0.876L12.921,9.076z M14.759,9.951
|
||||
c-0.026,0.014-0.066,0.075-0.101,0.13c-0.093-0.209-0.337-0.746-0.376-0.783c-0.044-0.042,0.373,0.263,0.468,0.332
|
||||
c-0.055,0.085-0.129,0.243-0.129,0.243l0.196-0.02C14.817,9.854,14.809,9.923,14.759,9.951z M14.853,9.233l-0.052,0.105
|
||||
l-0.084,0.205c0,0,0.032,0.03,0.06,0.05c-0.007,0.008-0.014,0.019-0.022,0.032l-0.516-0.689l0.527,0.189c0,0,0.101-0.352,0.129-1.15
|
||||
c0.081,0.128,0.159,0.271,0.227,0.441C14.895,8.965,14.853,9.233,14.853,9.233z M21.776,5.536l0.045-0.899l0.383,0.973L21.776,5.536
|
||||
z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#DCB622" d="M15.745,9.314c-0.029,0.339-0.08,0.495-0.185,0.856
|
||||
c0.396,0.001,0.791,0.001,1.187,0.001c-0.03-0.346-0.045-0.518-0.074-0.857c-0.235,0-0.484,0.624-0.721,0.624
|
||||
C15.843,9.939,15.856,9.314,15.745,9.314z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B69F4F" d="M16.753,10.282c0-0.234-0.051-0.444-0.047-0.584
|
||||
c-0.008-0.091,0.001-0.25-0.006-0.34c-0.092-0.233-0.391-0.456-0.391-0.456s-0.033,0.313-0.082,0.456
|
||||
c-0.08,0.188-0.139,0.408-0.26,0.539c-0.109-0.142-0.151-0.338-0.202-0.52c-0.024,0,0.005-0.203,0.005-0.203
|
||||
s-0.044,0.012-0.064,0.012c-0.008,0.09-0.019,0.406-0.025,0.497c-0.026,0.313-0.109,0.306-0.134,0.584c0,0,0.005-0.002,0.009-0.007
|
||||
c0,0.002,0,0.003-0.001,0.004c0.39,0,0.778,0.001,1.166,0.001c-0.001-0.012-0.001-0.023-0.003-0.034
|
||||
C16.729,10.264,16.74,10.282,16.753,10.282z M16.259,10.034c0.088-0.214,0.179-0.507,0.234-0.504
|
||||
c0.088,0.004,0.136,0.288,0.178,0.505C16.534,10.034,16.396,10.034,16.259,10.034z"/>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M15.239,5.698c0,0-0.216-0.515-1.078-0.668
|
||||
c-0.049-0.009,0.027-0.314,0.027-0.314s-0.203,0.125-0.325,0.277c-0.76-0.073-3.27-0.085-4.706,0.606
|
||||
c0.374,0.047,1.101,0.023,1.354,0.054c1.626-0.427,3.065-0.303,3.917-0.148c0.064,0.011,0.193-0.182,0.251-0.17
|
||||
c0.068,0.014,0.065,0.232,0.123,0.246C15.083,5.645,15.239,5.698,15.239,5.698z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M21.687,5.507c0,0-0.672-0.358-1.658-0.496
|
||||
c-0.052-0.208-0.089-0.797-0.089-0.797s-0.237,0.487-0.289,0.762c-0.867-0.053-1.306,0.097-2.501,0.694
|
||||
c0.829-0.218,1.582-0.326,2.234-0.354C20.779,5.254,21.687,5.507,21.687,5.507z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M13.892,6.902c-0.045,0.018-0.48-0.03-0.48-0.03
|
||||
s0.234,0.14,0.178,0.168c-0.352,0.18-0.911,0.505-1.26,1.141c0.258-0.162,0.535-0.326,0.703-0.316
|
||||
c0.266-0.209,1.088-0.624,1.088-0.624l-0.205-0.109c0,0,0.416,0.054,0.511-0.007c0.649-0.417,1.061-0.366,1.061-0.366
|
||||
S14.968,6.465,13.892,6.902z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M18.76,7.5l-0.504,0.355c0,0-0.484-0.142-0.573-0.164
|
||||
c-0.41-0.099-0.022-0.11-0.619-0.164c1.095,0.573,1.179,1.078,1.724,1.788c-0.032-0.363-0.158-0.804-0.213-0.986
|
||||
c0.143,0.077,0.35,0.171,0.665,0.294c0.039,0.016,0.258-0.056,0.299-0.04c0.049,0.019-0.007,0.153,0.041,0.171
|
||||
c0.354,0.13,0.711,0.245,0.935,0.285c-0.35-0.396-1.564-0.945-1.864-1.054C18.597,7.868,18.76,7.5,18.76,7.5z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M15.591,3.785c0,0-0.47,0.179-0.484,0.425
|
||||
c0.146,0.251,0.449,0.496,0.664,0.929c0.124,0.246,0.086-0.085-0.006-0.389C15.493,3.854,15.591,3.785,15.591,3.785z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M9.412,6.843L9.343,6.53c0,0-0.057,0.185-0.11,0.37
|
||||
C9.084,6.957,8.938,7.035,8.797,7.14L8.661,6.899L8.617,7.293C8.286,7.61,8.23,7.697,7.937,8.44
|
||||
c0.299-0.284,0.654-0.552,1.041-0.786C9.008,7.636,9.044,7.317,9.074,7.3c0.027-0.016,0.05,0.268,0.075,0.253
|
||||
C9.32,7.457,9.493,7.369,9.67,7.288c0.034-0.016,0.071-0.265,0.104-0.279c0.036-0.015,0.068,0.203,0.104,0.188
|
||||
c0.873-0.362,1.774-0.51,2.428-0.274c0.332-0.222,0.7-0.378,2.028-0.615C12.385,5.37,10.395,6.586,9.412,6.843z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M17.212,9.363l-0.266,0.089l0.122-0.396l-0.47,0.132l0.189,0.446
|
||||
c0,0,0.301,0.351,0.421,1.04c0.14-0.32,0.159-0.607,0.159-0.607L17.136,9.69L17.212,9.363z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M14.889,7.873c-0.036,0-0.428,0.146-0.637,0.291
|
||||
s-0.5,0.237-0.5,0.237s0.135,0.012,0.181,0.083c0.034,0.052,0.02,0.137-0.135,0.272c-0.023,0.021-0.046,0.043-0.066,0.068
|
||||
C13.647,8.81,13.483,8.81,13.483,8.81s0.169,0.146,0.15,0.191c-0.159,0.378-0.219,0.937-0.219,0.937s-0.101,0.183-0.166,0.881
|
||||
c-0.025,0.271-0.058,0.74,0.109,1.251c0.063,0.414,0.329,0.898,0.329,0.898s0.513-1.758,0.729-2.061
|
||||
c-0.109-0.31-0.341-0.624-0.341-0.624l0.425,0.307c0.005-0.181-0.103-0.49-0.084-0.521c0.042-0.072,0.209,0.072,0.209,0.072
|
||||
l0.051-0.087L14.405,9.53l-0.144-0.256l0.143,0.106l0.038-0.172l-0.204-0.273l0.527,0.189c0,0,0.133-0.705,0.112-0.831
|
||||
C14.858,8.167,14.926,7.873,14.889,7.873z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M16.781,4.497c-0.169,0.312-0.109,0.655,0.068,0.382
|
||||
c0.15-0.23,0.672-0.488,0.831-0.563c0.028-0.014,0.046-0.021,0.046-0.021s-0.33-0.11-0.515-0.092
|
||||
c-0.131,0.012-0.234,0.068-0.31,0.139c-0.028,0.025-0.285-0.146-0.285-0.146S16.795,4.473,16.781,4.497z"/>
|
||||
</g>
|
||||
<path fill="#59763E" d="M24.381,10.282c-0.167-0.455-0.646-1.02-1.325-2.094c-0.027-0.042-0.054-0.084-0.081-0.125v0
|
||||
c-0.367-0.762-1.083-1.113-1.362-1.261c-0.066-0.035-1.239-0.054-1.311-0.083c-0.156-0.063,0.065-0.393-0.026-0.429
|
||||
c-0.036-0.015-0.268,0.356-0.306,0.342c-0.506-0.186-1.146-0.298-1.924-0.202c0.635,0.058,1.436,0.366,2.211,0.745
|
||||
c0.176,0.112,0.334,0.229,0.476,0.344c0.044,0.036,0.176-0.208,0.216-0.173c0.038,0.033-0.014,0.347,0.021,0.38
|
||||
c0.361,0.334,0.567,0.625,0.626,0.712c0.166,0.246,0.285,0.418,0.375,0.548l0.283,0.079c0,0,0.428,0.64,0.409,0.707
|
||||
c-0.02,0.066,0.24-0.327,0.24-0.327l0.17,0.682l0.262-0.457l0.437,0.824l0.036-0.505l0.763,1.054
|
||||
C24.569,11.042,24.547,10.737,24.381,10.282z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#59763E" d="M15.621,9.2c-0.01-0.027-0.041-0.247,0.073-0.583
|
||||
c0.113-0.335,0.332-0.608,0.332-0.608l0.3,0.682L16.31,8.903L16.184,9.47l-0.231,0.47L15.621,9.2z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 208 KiB |
Before Width: | Height: | Size: 210 KiB |
@@ -1,475 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_22_copy_11_6_">
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-190.104" y1="144.1758" x2="-190.104" y2="120" gradientTransform="matrix(1 0 0 -1 206 149)">
|
||||
<stop offset="0" style="stop-color:#BEDCDE"/>
|
||||
<stop offset="0.271" style="stop-color:#BDD8DA"/>
|
||||
<stop offset="0.4107" style="stop-color:#B9D0CF"/>
|
||||
<stop offset="0.5206" style="stop-color:#B5C5C0"/>
|
||||
<stop offset="0.6148" style="stop-color:#AFB6AC"/>
|
||||
<stop offset="0.6991" style="stop-color:#A8A393"/>
|
||||
<stop offset="0.7761" style="stop-color:#9F8E78"/>
|
||||
<stop offset="0.8479" style="stop-color:#95765D"/>
|
||||
<stop offset="0.9153" style="stop-color:#8A5C40"/>
|
||||
<stop offset="0.9771" style="stop-color:#7F3F26"/>
|
||||
<stop offset="1" style="stop-color:#7B321F"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_1_)" d="M27.242,4.825L4.551,4.824c-0.243,0-0.44,0.199-0.44,0.44v11.722
|
||||
c0.025,0.395,0.508,0.88,0.508,0.88s10.83,10.874,10.963,11.008c0.135,0.134,0.42,0.2,0.626-0.006
|
||||
c0.205-0.207,11.035-11.002,11.035-11.002s0.438-0.457,0.438-0.88V5.264C27.682,5.022,27.484,4.825,27.242,4.825z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-189.9771" y1="128.8018" x2="-189.9771" y2="138.9211" gradientTransform="matrix(1 0 0 -1 206 149)">
|
||||
<stop offset="0" style="stop-color:#396538"/>
|
||||
<stop offset="0.2959" style="stop-color:#334A2A"/>
|
||||
<stop offset="0.586" style="stop-color:#272E19"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M24.813,18.366c0,0-0.768-0.443-1.898-0.738c0.12-1.098,0.107-2.448-0.674-2.618
|
||||
c-0.617-0.133-1.299,0.128-2.385,0.801c-0.197,0.123-0.315,0.207-0.379,0.265c-0.244,0.176-0.508,0.4-0.789,0.678
|
||||
c-0.178,0.074-0.365,0.155-0.567,0.247c-0.528,0.24-0.911,0.717-1.19,1.274c-0.007,0.002-0.013,0.006-0.018,0.009
|
||||
c0.204-0.943,0.52-1.957,1.011-2.788c0.952-0.567,1.947-0.83,1.947-0.83s-0.681-0.078-1.533,0.231
|
||||
c0.122-0.151,0.253-0.293,0.394-0.423c1.91-1.748,6.774-2.116,6.774-2.116s-4.8-0.771-7.739,2.199
|
||||
c-0.25,0.252-0.457,0.606-0.632,1.021c-0.172,0.139-0.344,0.297-0.514,0.481c0.124-0.623,0.313-1.222,0.604-1.735
|
||||
c0.903-0.798,1.916-1.24,1.916-1.24s-0.445-0.054-1.041,0.168c1.709-1.566,4.629-2.419,4.629-2.419s-3.479-0.319-5.766,2.901
|
||||
c-0.105,0.15-0.197,0.331-0.277,0.534c-0.035,0.04-0.07,0.081-0.104,0.124c0.104-1.131,0.224-2.082,0.353-2.557
|
||||
c1-3.378,3.553-3.889,3.553-3.889s-0.754-0.702-2.907,1.602c-0.964,1.03-1.394,2.851-1.566,4.796
|
||||
c-0.089-0.469-0.201-0.923-0.341-1.35c0.333-0.768,0.631-1.375,0.631-1.375s-0.273,0.275-0.738,1.068
|
||||
c-0.289-0.779-0.682-1.455-1.223-1.943c-2.344-2.123-3.54-2.648-3.54-2.648s3.831,3.416,4.297,4.73
|
||||
c0.042,0.123,0.086,0.281,0.13,0.466c-0.081,0.155-0.168,0.324-0.259,0.507c-0.55-0.784-0.977-1.172-1.486-1.267
|
||||
c-0.242-0.045-0.461,0.053-0.659,0.239c-3.323-2.72-6.116-2.421-6.116-2.421s3.569,1.093,5.793,2.825
|
||||
c-0.047,0.072-0.091,0.148-0.135,0.228c-1.438-1.114-2.107-1.338-2.107-1.338s1.016,0.806,1.942,1.669
|
||||
c-0.057,0.121-0.109,0.247-0.158,0.372c-3.345-1.617-5.503,0.644-5.503,0.644s2.891-1.341,5.308-0.104
|
||||
c-0.095,0.288-0.17,0.551-0.221,0.743c-0.888-0.125-1.536,0.145-1.536,0.145s1.625,0.114,2.865,0.794
|
||||
c-0.47-0.158-0.789-0.203-0.789-0.203s0.797,0.331,1.634,0.845c0.431,0.474,0.75,1.159,0.982,1.837
|
||||
c-0.018-0.021-0.045-0.047-0.081-0.082c-0.062-0.074-0.124-0.146-0.187-0.217c-0.264-0.516-0.559-0.958-0.87-1.181
|
||||
c-2.219-1.585-4.365-0.515-4.365-0.515s2.42-0.27,3.825,0.621c0.075,0.047,0.146,0.101,0.219,0.158
|
||||
c-0.034-0.014-0.069-0.025-0.103-0.035c-3.048-0.9-5.807,0.743-5.807,0.743s3.202-0.95,5.119-0.495
|
||||
c0.192,0.045,0.377,0.111,0.555,0.192c-0.11,0.126-0.159,0.351-0.173,0.592c-0.045-0.021-0.101-0.042-0.174-0.067
|
||||
c-0.725-0.267-1.155-0.326-1.471-0.127c-0.404,0.252-0.129,1.158,0.161,1.857c-0.562,0.395-0.892,0.82-0.892,0.82
|
||||
s0.421-0.315,0.976-0.624c0.162,0.368,0.306,0.638,0.306,0.638s-0.055-0.332-0.114-0.742c0.483-0.25,1.034-0.471,1.508-0.484
|
||||
c1.067-0.029,2.119,1.322,2.119,1.322s0.007,0.002,0.017,0.002c0.018,0.06,0.027,0.092,0.027,0.092s0.156,0.156,0.158,0.021
|
||||
c0-0.002-0.002-0.008-0.002-0.013c0.017,0.018,0.027,0.028,0.027,0.028s-0.013-0.03-0.037-0.082
|
||||
c-0.011-0.043-0.026-0.107-0.048-0.185c0.028,0.089,0.045,0.136,0.045,0.136s-0.026-0.154-0.071-0.416
|
||||
c0.017,0.055,0.031,0.104,0.045,0.148c0.004,0.085,0.01,0.141,0.014,0.152c0.012,0.037,0.028,0.045,0.046,0.039
|
||||
c0.025,0.086,0.04,0.135,0.04,0.135s-0.008-0.051-0.023-0.145c0.023-0.018,0.047-0.055,0.063-0.08
|
||||
c0.03,0.01,0.083-0.047,0.083-0.047s0.009-0.056,0.029-0.15c0.163,0.287,0.245,0.502,0.245,0.502s0.006,0.004,0.014,0.009
|
||||
C16.002,21.369,16,21.393,16,21.393s0.084,0.16,0.133,0.088c0.001-0.002,0.002-0.004,0.003-0.008
|
||||
c0.01,0.019,0.016,0.028,0.016,0.028s-0.002-0.022-0.006-0.063c0.006-0.027,0.015-0.069,0.021-0.121
|
||||
c-0.005,0.062-0.007,0.096-0.007,0.096s0.024-0.082,0.068-0.221v0.002c0,0,0.004-0.006,0.011-0.017
|
||||
c-0.003,0.027-0.007,0.054-0.009,0.078c-0.025,0.047-0.041,0.079-0.042,0.088c-0.003,0.024,0.009,0.037,0.027,0.043
|
||||
c-0.007,0.06-0.01,0.093-0.01,0.093s0.01-0.033,0.028-0.09c0.027,0.002,0.061-0.006,0.084-0.013
|
||||
c0.024,0.021,0.093,0.017,0.093,0.017s0.912-0.834,1.979-0.728c1.104,0.108,2.756,1.035,2.756,1.035s-1.32-1.161-3.102-1.253
|
||||
c-0.586-0.03-1.291,0.496-1.591,0.761c0.312-0.435,1.239-1.597,2.476-1.829c0.137,0.278,0.242,0.508,0.242,0.508
|
||||
s-0.005-0.236-0.045-0.539c1.564-0.197,3.948,0.529,3.948,0.529s-1.812-1.057-3.995-0.818c-0.036-0.181-0.087-0.365-0.155-0.524
|
||||
c1.166-0.38,2.888-0.206,3.677-0.097c0.055,0.328,0.092,0.551,0.092,0.551s0.045-0.205,0.102-0.522
|
||||
c0.143,0.022,0.225,0.038,0.225,0.038s-0.076-0.043-0.213-0.105c0.023-0.137,0.049-0.291,0.069-0.457
|
||||
C23.954,18.118,24.813,18.366,24.813,18.366z M21.044,15.32c0.332-0.147,0.677,0.122,0.917,0.448
|
||||
c0.141,0.193,0.322,0.989,0.469,1.748c-0.977-0.193-2.168-0.25-3.425,0.133c-0.153,0.049-0.307,0.125-0.456,0.225
|
||||
c0.329-0.432,0.664-0.85,0.987-1.221c0.606-0.296,1.108-0.518,1.108-0.518s-0.275,0.033-0.826,0.203
|
||||
C20.275,15.847,20.7,15.472,21.044,15.32z M14.773,15.695c0.005-0.238,0.1-0.607,0.237-1.024c0.089,0.29,0.173,0.606,0.252,0.937
|
||||
c-0.092,0.179-0.172,0.417-0.252,0.728c-0.075-0.192-0.155-0.383-0.237-0.57C14.772,15.741,14.772,15.717,14.773,15.695z
|
||||
M16.729,16.875c-0.021-0.095-0.043-0.188-0.069-0.279c0.039,0.041,0.073,0.08,0.108,0.117
|
||||
C16.753,16.768,16.74,16.82,16.729,16.875z M17.241,18.602c-0.046,0.039-0.074,0.068-0.091,0.088
|
||||
c-0.025,0.025-0.053,0.053-0.078,0.08c0.051-0.127,0.102-0.246,0.148-0.354c0.057-0.024,0.115-0.05,0.176-0.071
|
||||
C17.343,18.43,17.291,18.516,17.241,18.602z M15.299,15.758c0.082,0.352,0.158,0.717,0.23,1.081
|
||||
c-0.007,0.048-0.014,0.099-0.021,0.147c-0.122-0.123-0.246-0.234-0.371-0.336c-0.001-0.002-0.003-0.006-0.003-0.008
|
||||
c0.009-0.337,0.04-0.616,0.104-0.792C15.254,15.812,15.274,15.783,15.299,15.758z M15.675,17.624
|
||||
c0.013,0.075,0.025,0.149,0.039,0.222c-0.017,0.086-0.033,0.172-0.048,0.26c-0.029-0.088-0.06-0.178-0.091-0.268
|
||||
c0.011-0.096,0.021-0.193,0.035-0.289C15.633,17.574,15.653,17.6,15.675,17.624z M15.452,17.492
|
||||
c-0.021-0.061-0.044-0.121-0.065-0.184c0.025,0.026,0.051,0.053,0.076,0.078C15.46,17.422,15.455,17.457,15.452,17.492z
|
||||
M15.294,17.768c-0.045-0.045-0.091-0.09-0.136-0.133c-0.006-0.095-0.01-0.188-0.014-0.279
|
||||
C15.196,17.495,15.246,17.632,15.294,17.768z M15.518,18.507c0.02,0.032,0.037,0.065,0.055,0.099
|
||||
c0.006,0.02,0.011,0.039,0.018,0.058c-0.006,0.035-0.009,0.071-0.012,0.106c-0.021-0.058-0.044-0.115-0.065-0.172
|
||||
C15.514,18.566,15.516,18.537,15.518,18.507z M15.514,19.609c-0.001,0.037-0.003,0.074-0.005,0.108
|
||||
c-0.007-0.011-0.015-0.022-0.022-0.032c0-0.049-0.001-0.096-0.001-0.146C15.496,19.564,15.506,19.587,15.514,19.609z
|
||||
M15.765,19.261c0.012,0.042,0.022,0.083,0.033,0.122c-0.012-0.035-0.024-0.07-0.035-0.104
|
||||
C15.763,19.271,15.764,19.266,15.765,19.261z M16.446,18.443c-0.011-0.045-0.023-0.09-0.036-0.133
|
||||
c0.003-0.403,0.021-0.832,0.064-1.266c0.009,0.038,0.018,0.074,0.021,0.105c0.024,0.191,0.024,0.505,0.01,0.879
|
||||
C16.484,18.169,16.465,18.307,16.446,18.443z M14.9,16.865c-0.007,0.045-0.013,0.093-0.02,0.143
|
||||
c-0.008-0.06-0.015-0.119-0.021-0.177C14.873,16.843,14.888,16.854,14.9,16.865z M15.358,19.227
|
||||
c-0.001,0.092-0.003,0.18-0.003,0.266c-0.01-0.014-0.02-0.027-0.029-0.04c-0.016-0.132-0.031-0.271-0.047-0.413
|
||||
C15.308,19.104,15.333,19.165,15.358,19.227z M15.031,19.643c0,0.002,0.001,0.002,0.001,0.004c-0.01-0.006-0.018-0.012-0.027-0.019
|
||||
C15,19.616,14.994,19.604,14.99,19.59C15.004,19.607,15.018,19.625,15.031,19.643z M17.463,17.943
|
||||
c0.086-0.127,0.288-0.286,0.551-0.455c-0.141,0.169-0.27,0.34-0.39,0.512c-0.078,0.02-0.158,0.043-0.237,0.072
|
||||
C17.413,18.023,17.438,17.98,17.463,17.943z M16.877,16.308c-0.02,0.063-0.036,0.128-0.054,0.193
|
||||
c-0.015-0.027-0.029-0.056-0.046-0.084C16.811,16.379,16.843,16.344,16.877,16.308z M15.481,14.649
|
||||
c-0.035-0.07-0.07-0.139-0.106-0.202c-0.026-0.064-0.082-0.162-0.175-0.305c0.043-0.114,0.088-0.229,0.134-0.343
|
||||
C15.384,14.055,15.433,14.341,15.481,14.649z M13.407,13.271c0.329-0.191,0.726-0.295,0.944-0.05
|
||||
c0.12,0.135,0.235,0.333,0.343,0.575c-0.086-0.083-0.132-0.12-0.132-0.12S14.647,13.8,14.781,14
|
||||
c0.013,0.032,0.025,0.065,0.038,0.099c0,0.001,0,0.002-0.001,0.002c-0.155,0.322-0.245,0.705-0.29,1.121
|
||||
c-0.36-0.764-0.75-1.451-1.154-1.928C13.386,13.285,13.397,13.277,13.407,13.271z M14.494,15.846
|
||||
c-0.001,0.122,0.001,0.244,0.006,0.368c-0.053-0.029-0.104-0.057-0.155-0.083c-0.064-0.106-0.13-0.208-0.195-0.307
|
||||
c-0.35-0.83-0.765-1.552-1.259-1.999c0.048-0.06,0.094-0.118,0.139-0.172C13.608,14.257,14.093,15.035,14.494,15.846z
|
||||
M13.249,14.808c-0.051-0.04-0.103-0.077-0.155-0.111c-0.199-0.129-0.397-0.248-0.595-0.356c0.047-0.063,0.093-0.125,0.14-0.188
|
||||
C12.868,14.381,13.08,14.604,13.249,14.808z M13.927,16.628c-0.778-0.784-1.541-1.109-2.182-1.223
|
||||
c0.109-0.159,0.253-0.366,0.411-0.589c0.789,0.474,1.445,1.23,1.982,2.054c-0.01-0.006-0.02-0.013-0.031-0.019
|
||||
C14.049,16.768,13.989,16.691,13.927,16.628z M14.375,18.91c0.101,0.175,0.195,0.354,0.28,0.529
|
||||
c-0.288-0.138-0.571-0.236-0.839-0.307c-0.206-0.152-0.392-0.273-0.563-0.371c0.081-0.227,0.165-0.423,0.226-0.473
|
||||
c0.021-0.016,0.041-0.032,0.064-0.046C13.846,18.436,14.124,18.665,14.375,18.91z M11.674,20.094
|
||||
c-0.071-0.523-0.132-1.082-0.093-1.236c0.065-0.26,0.204-0.502,0.416-0.461c0.23,0.045,0.554,0.238,0.916,0.506
|
||||
c0.001,0.029,0.002,0.059,0.003,0.086c-0.586-0.038-0.982,0.043-0.982,0.043s0.438,0.018,0.993,0.102
|
||||
c0.021,0.25,0.054,0.444,0.06,0.475C12.482,19.68,12.039,19.871,11.674,20.094z M13.54,19.58c-0.192-0.007-0.375,0.003-0.551,0.027
|
||||
c0.009-0.031,0.061-0.217,0.131-0.443c0.057,0.01,0.112,0.021,0.169,0.031c0.176,0.142,0.354,0.295,0.53,0.451
|
||||
C13.724,19.607,13.629,19.583,13.54,19.58z M14.174,19.426c0.139,0.049,0.272,0.104,0.394,0.166
|
||||
c0.078,0.04,0.152,0.085,0.224,0.135c0.134,0.291,0.246,0.57,0.336,0.81C14.9,20.195,14.584,19.793,14.174,19.426z M15.654,20.686
|
||||
c0-0.006,0-0.013,0-0.02c0.001,0.001,0.002,0.002,0.003,0.003C15.656,20.675,15.655,20.682,15.654,20.686z M16.017,20.825
|
||||
c0.004,0.002,0.008,0.006,0.014,0.009c0,0.011,0,0.023,0,0.036C16.025,20.855,16.021,20.84,16.017,20.825z M18.41,19.172
|
||||
c-0.532,0.122-1.068,0.619-1.484,1.111c0.133-0.209,0.301-0.455,0.498-0.709c0.321-0.346,0.704-0.672,1.139-0.889
|
||||
c0.07,0.119,0.149,0.265,0.228,0.414C18.664,19.12,18.537,19.145,18.41,19.172z M18.827,18.271c0.12-0.074,0.243-0.142,0.372-0.199
|
||||
c0.172-0.002,0.277,0.004,0.277,0.004s-0.061-0.023-0.164-0.053c0.125-0.049,0.254-0.092,0.388-0.125
|
||||
c0.817-0.203,1.864-0.146,2.8-0.014c0.025,0.148,0.053,0.289,0.075,0.42C21.895,18.042,20.502,17.682,18.827,18.271z"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-189.9673" y1="124.0566" x2="-189.9673" y2="128.417" gradientTransform="matrix(1 0 0 -1 206 149)">
|
||||
<stop offset="0" style="stop-color:#DDD5B3"/>
|
||||
<stop offset="0.0027" style="stop-color:#DCD4B2"/>
|
||||
<stop offset="0.1989" style="stop-color:#A3A17E"/>
|
||||
<stop offset="0.2357" style="stop-color:#929672"/>
|
||||
<stop offset="0.3018" style="stop-color:#798761"/>
|
||||
<stop offset="0.374" style="stop-color:#657B52"/>
|
||||
<stop offset="0.4524" style="stop-color:#567247"/>
|
||||
<stop offset="0.5397" style="stop-color:#496C40"/>
|
||||
<stop offset="0.6404" style="stop-color:#40683B"/>
|
||||
<stop offset="0.7667" style="stop-color:#3B6639"/>
|
||||
<stop offset="1" style="stop-color:#396538"/>
|
||||
</linearGradient>
|
||||
<rect x="15.629" y="20.583" fill="url(#SVGID_3_)" width="0.808" height="4.36"/>
|
||||
<rect x="15.629" y="24.813" fill="#81735C" width="0.808" height="0.131"/>
|
||||
<rect x="15.629" y="24.943" fill="#DDD5B3" width="0.808" height="4.359"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-134.645" y1="125.9678" x2="-134.645" y2="130.3359" gradientTransform="matrix(0.7466 0.0032 -0.0032 -1 116.4038 150.3569)">
|
||||
<stop offset="0" style="stop-color:#DDD5B3"/>
|
||||
<stop offset="0.0027" style="stop-color:#DCD4B2"/>
|
||||
<stop offset="0.1989" style="stop-color:#A3A17E"/>
|
||||
<stop offset="0.2357" style="stop-color:#929672"/>
|
||||
<stop offset="0.3018" style="stop-color:#798761"/>
|
||||
<stop offset="0.374" style="stop-color:#657B52"/>
|
||||
<stop offset="0.4524" style="stop-color:#567247"/>
|
||||
<stop offset="0.5397" style="stop-color:#496C40"/>
|
||||
<stop offset="0.6404" style="stop-color:#40683B"/>
|
||||
<stop offset="0.7667" style="stop-color:#3B6639"/>
|
||||
<stop offset="1" style="stop-color:#396538"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_4_)" points="15.802,23.952 15.199,23.958 15.133,19.6 15.736,19.592 "/>
|
||||
|
||||
<rect x="15.197" y="23.825" transform="matrix(-0.9999 0.0113 -0.0113 -0.9999 31.2659 47.6011)" fill="#81735C" width="0.603" height="0.129"/>
|
||||
<polygon fill="#DDD5B3" points="15.868,28.311 15.265,28.316 15.199,23.958 15.802,23.952 "/>
|
||||
|
||||
<rect x="15.264" y="28.187" transform="matrix(-1 0.0097 -0.0097 -1 31.4061 56.3496)" fill="#81735C" width="0.604" height="0.129"/>
|
||||
|
||||
<rect x="15.215" y="25.576" transform="matrix(-1 0.0097 -0.0097 -1 31.2812 51.1295)" fill="#81735C" width="0.604" height="0.129"/>
|
||||
|
||||
<rect x="15.275" y="28.315" transform="matrix(-1 0.0097 -0.0097 -1 31.4393 58.9569)" fill="#DDD5B3" width="0.604" height="2.479"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-135.5244" y1="123.3232" x2="-135.5244" y2="127.6953" gradientTransform="matrix(0.7578 -0.0049 0.0049 -0.9999 118.7428 147.0976)">
|
||||
<stop offset="0" style="stop-color:#DDD5B3"/>
|
||||
<stop offset="0.0027" style="stop-color:#DCD4B2"/>
|
||||
<stop offset="0.1989" style="stop-color:#A3A17E"/>
|
||||
<stop offset="0.2357" style="stop-color:#929672"/>
|
||||
<stop offset="0.3018" style="stop-color:#798761"/>
|
||||
<stop offset="0.374" style="stop-color:#657B52"/>
|
||||
<stop offset="0.4524" style="stop-color:#567247"/>
|
||||
<stop offset="0.5397" style="stop-color:#496C40"/>
|
||||
<stop offset="0.6404" style="stop-color:#40683B"/>
|
||||
<stop offset="0.7667" style="stop-color:#3B6639"/>
|
||||
<stop offset="1" style="stop-color:#396538"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_5_)" points="16.911,24.448 16.299,24.438 16.402,20.08 17.016,20.089 "/>
|
||||
|
||||
<rect x="16.301" y="24.313" transform="matrix(-0.9999 -0.0159 0.0159 -0.9999 32.824 49.0186)" fill="#81735C" width="0.612" height="0.13"/>
|
||||
|
||||
<rect x="16.335" y="23.308" transform="matrix(-0.9999 -0.016 0.016 -0.9999 32.9058 47.0079)" fill="#81735C" width="0.611" height="0.13"/>
|
||||
<polygon fill="#DDD5B3" points="16.807,28.807 16.194,28.796 16.299,24.438 16.911,24.448 "/>
|
||||
|
||||
<rect x="16.249" y="26.591" transform="matrix(-0.9999 -0.0159 0.0159 -0.9999 32.6848 53.5727)" fill="#81735C" width="0.613" height="0.131"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#D69976" d="M27.207,3.989H4.82c-0.834,0-1.331,0.616-1.331,1.211v12.269c0,1.055,0.613,1.818,0.64,1.852l0.012,0.014
|
||||
l0.012,0.014c3.288,3.504,10.948,11.67,11.11,11.814c0.196,0.174,0.468,0.273,0.745,0.273c0.274,0,0.537-0.1,0.74-0.281
|
||||
c0.253-0.225,9.369-9.874,11.193-11.807l0.029-0.031l0.023-0.035c0.058-0.081,0.543-0.815,0.543-1.658V5.2
|
||||
C28.538,4.628,27.992,3.989,27.207,3.989z M27.832,17.628c0,0.795-0.46,1.489-0.512,1.563l-0.023,0.035l-0.027,0.029
|
||||
c-1.723,1.824-10.324,10.928-10.563,11.141c-0.19,0.17-0.439,0.266-0.698,0.266c-0.263,0-0.519-0.096-0.703-0.26
|
||||
c-0.152-0.135-7.381-7.842-10.482-11.147l-0.011-0.013l-0.013-0.014c-0.023-0.029-0.604-0.75-0.604-1.746V5.906
|
||||
c0-0.563,0.471-1.142,1.258-1.142h21.121c0.74,0,1.258,0.603,1.258,1.142V17.628z"/>
|
||||
<path fill="#84C3EA" d="M16.008,30.333c-0.006,0-0.014-0.002-0.02-0.004c-0.518-0.531-8.07-8.58-11.013-11.718
|
||||
c-0.053-0.072-0.384-0.541-0.384-1.144V5.206C4.595,5.187,4.624,5.092,4.82,5.092h22.387c0.154,0,0.215,0.104,0.229,0.13v12.4
|
||||
c0,0.399-0.224,0.838-0.328,1.003c-2.996,3.172-10.697,11.318-11.094,11.707C16.012,30.333,16.011,30.333,16.008,30.333z
|
||||
M25.973,18.13c0.104-0.116,0.258-0.362,0.258-0.479V6.483H5.637v11.144c0.015,0.098,0.169,0.34,0.315,0.5
|
||||
c0.094,0.1,8.86,9.371,9.978,10.55C17.023,27.525,25.719,18.396,25.973,18.13z"/>
|
||||
<path id="Shape_22_copy_12_6_" fill="#0E141F" d="M27.207,4.541H4.82c-0.555,0-0.779,0.398-0.779,0.66V17.47
|
||||
c0,0.871,0.514,1.501,0.514,1.501s10.914,11.637,11.074,11.78c0.162,0.144,0.505,0.213,0.752-0.008
|
||||
c0.248-0.22,11.16-11.772,11.16-11.772s0.445-0.65,0.445-1.347V5.2C27.986,4.939,27.699,4.541,27.207,4.541z M26.781,17.65
|
||||
c0,0.41-0.403,0.854-0.403,0.854s-9.97,10.468-10.159,10.667c-0.189,0.199-0.452,0.137-0.575,0.006
|
||||
c-0.123-0.13-10.091-10.673-10.091-10.673s-0.444-0.47-0.468-0.854V6.357c0-0.235,0.182-0.426,0.404-0.426h20.889
|
||||
c0.224,0,0.403,0.191,0.403,0.426V17.65z"/>
|
||||
<g>
|
||||
<path fill="#84C3EA" d="M25.919,5.569c0,0.867-0.751,1.569-1.679,1.569H7.729c-0.927,0-1.678-0.702-1.678-1.569V2.432
|
||||
c0-0.866,0.751-1.569,1.678-1.569H24.24c0.928,0,1.679,0.703,1.679,1.569V5.569z"/>
|
||||
<path fill="#363938" d="M7.668,6.718c-0.622,0-1.129-0.477-1.129-1.063V2.347c0-0.585,0.507-1.063,1.129-1.063h16.634
|
||||
c0.622,0,1.128,0.478,1.128,1.063v3.308c0,0.587-0.506,1.063-1.128,1.063H7.668z"/>
|
||||
</g>
|
||||
<g enable-background="new ">
|
||||
<path fill="#151515" d="M9.71,2.54v0.145C9.658,2.698,9.619,2.721,9.592,2.75S9.551,2.816,9.551,2.859
|
||||
c0,0.042,0.011,0.078,0.034,0.109c0.022,0.032,0.059,0.062,0.11,0.09c0.035,0.02,0.114,0.056,0.238,0.11
|
||||
c0.075,0.032,0.133,0.062,0.174,0.088c0.042,0.026,0.081,0.06,0.117,0.099c0.099,0.104,0.148,0.227,0.148,0.369
|
||||
c0,0.107-0.027,0.206-0.08,0.296c-0.054,0.089-0.127,0.159-0.221,0.21c-0.05,0.027-0.105,0.048-0.165,0.063S9.792,4.317,9.74,4.317
|
||||
V4.174c0.073-0.017,0.125-0.041,0.157-0.073c0.032-0.031,0.048-0.073,0.048-0.127c0-0.056-0.025-0.104-0.075-0.147
|
||||
C9.837,3.799,9.773,3.765,9.68,3.724C9.578,3.679,9.507,3.646,9.469,3.627C9.431,3.608,9.395,3.585,9.359,3.56
|
||||
C9.203,3.447,9.124,3.299,9.124,3.112c0-0.095,0.02-0.183,0.059-0.264c0.039-0.08,0.094-0.146,0.164-0.194
|
||||
C9.445,2.586,9.566,2.548,9.71,2.54z M9.645,4.174v0.144c-0.068,0-0.144-0.02-0.227-0.06C9.388,4.244,9.366,4.234,9.354,4.23
|
||||
S9.332,4.225,9.321,4.225c-0.017,0-0.029,0.003-0.038,0.008c-0.008,0.006-0.022,0.02-0.04,0.041
|
||||
C9.228,4.292,9.212,4.301,9.194,4.301c-0.047,0-0.07-0.036-0.07-0.107V3.737c0-0.023,0.007-0.043,0.02-0.06
|
||||
c0.014-0.017,0.03-0.024,0.05-0.025c0.018-0.001,0.033,0.004,0.043,0.016c0.011,0.011,0.02,0.031,0.027,0.06
|
||||
c0.02,0.071,0.047,0.139,0.083,0.201s0.079,0.116,0.127,0.159C9.524,4.133,9.581,4.162,9.645,4.174z M9.809,2.685V2.547
|
||||
c0.05,0.003,0.093,0.01,0.13,0.02c0.037,0.01,0.089,0.028,0.156,0.057c0.017,0.007,0.03,0.01,0.042,0.01
|
||||
c0.016,0,0.027-0.005,0.035-0.016L10.2,2.58c0.013-0.018,0.03-0.027,0.049-0.027c0.022,0,0.039,0.009,0.049,0.024
|
||||
c0.011,0.017,0.016,0.042,0.016,0.077v0.413c0,0.024-0.007,0.044-0.021,0.06S10.261,3.15,10.24,3.15
|
||||
c-0.017,0-0.032-0.006-0.046-0.017c-0.007-0.007-0.014-0.015-0.018-0.024c-0.005-0.01-0.009-0.025-0.013-0.048
|
||||
c-0.009-0.041-0.025-0.083-0.047-0.127c-0.023-0.043-0.049-0.082-0.079-0.116C9.976,2.751,9.9,2.706,9.809,2.685z"/>
|
||||
<path fill="#151515" d="M10.675,3.783V2.802c0-0.029-0.005-0.05-0.015-0.063c-0.005-0.008-0.01-0.013-0.014-0.015
|
||||
s-0.021-0.008-0.048-0.017c-0.033-0.011-0.05-0.033-0.05-0.066c0-0.021,0.008-0.038,0.024-0.05
|
||||
c0.016-0.011,0.039-0.017,0.069-0.017h0.033h0.558h0.033l0.045,0.005c0.014,0.004,0.026,0.012,0.035,0.022s0.014,0.024,0.014,0.039
|
||||
c0,0.033-0.017,0.056-0.05,0.066c-0.028,0.009-0.044,0.015-0.048,0.017s-0.009,0.007-0.015,0.015
|
||||
c-0.01,0.014-0.015,0.034-0.015,0.063v1.051c0,0.071,0.002,0.12,0.005,0.148c0.004,0.028,0.012,0.053,0.023,0.075
|
||||
c0.011,0.021,0.023,0.036,0.036,0.046c0.013,0.009,0.039,0.02,0.076,0.031v0.164h-0.027c-0.108,0-0.199-0.01-0.271-0.029
|
||||
c-0.084-0.022-0.158-0.056-0.222-0.1c-0.063-0.045-0.108-0.095-0.135-0.149C10.689,3.98,10.675,3.896,10.675,3.783z M11.488,4.317
|
||||
V4.153c0.083-0.011,0.153-0.045,0.209-0.103c0.063-0.066,0.095-0.161,0.095-0.284V2.95c0-0.114-0.043-0.194-0.131-0.239
|
||||
c-0.026-0.014-0.042-0.025-0.051-0.035c-0.008-0.009-0.012-0.023-0.012-0.041c0-0.022,0.008-0.037,0.024-0.047
|
||||
c0.016-0.009,0.042-0.014,0.078-0.014h0.307c0.026,0,0.043,0.001,0.052,0.002s0.018,0.004,0.026,0.01
|
||||
c0.021,0.012,0.032,0.029,0.032,0.051c0,0.019-0.006,0.034-0.02,0.047c-0.004,0.004-0.022,0.015-0.054,0.033
|
||||
c-0.037,0.021-0.065,0.051-0.086,0.092c-0.021,0.042-0.031,0.089-0.031,0.142v0.817c0,0.14-0.031,0.255-0.093,0.346
|
||||
c-0.045,0.066-0.109,0.12-0.194,0.16C11.597,4.293,11.546,4.308,11.488,4.317z"/>
|
||||
<path fill="#151515" d="M12.957,2.54v0.14c-0.073,0.018-0.11,0.075-0.11,0.175v1.166c0,0.045,0.006,0.079,0.019,0.104
|
||||
c0.011,0.021,0.034,0.037,0.069,0.052v0.142c-0.027,0-0.051-0.003-0.073-0.007s-0.052-0.013-0.088-0.024
|
||||
c-0.087-0.03-0.167-0.076-0.238-0.138c-0.071-0.063-0.129-0.136-0.175-0.222c-0.071-0.135-0.106-0.294-0.106-0.478
|
||||
c0-0.178,0.032-0.335,0.095-0.473s0.154-0.246,0.273-0.325c0.068-0.046,0.142-0.078,0.22-0.099
|
||||
C12.874,2.545,12.913,2.54,12.957,2.54z M13.625,4.074c-0.033,0.033-0.078,0.067-0.133,0.102c-0.055,0.035-0.108,0.063-0.157,0.082
|
||||
c-0.045,0.018-0.095,0.032-0.15,0.043s-0.103,0.017-0.145,0.017V4.176c0.024-0.006,0.042-0.013,0.054-0.021
|
||||
c0.012-0.009,0.022-0.021,0.031-0.035c0.014-0.025,0.021-0.059,0.021-0.099V3.654c0-0.032-0.006-0.056-0.019-0.069
|
||||
c-0.006-0.009-0.012-0.014-0.017-0.016c-0.006-0.003-0.025-0.007-0.058-0.015c-0.04-0.01-0.06-0.033-0.06-0.07
|
||||
c0-0.021,0.009-0.038,0.028-0.05c0.019-0.012,0.046-0.018,0.083-0.018h0.041h0.458c0.038,0,0.064,0.005,0.08,0.016
|
||||
c0.015,0.011,0.023,0.028,0.023,0.055c0,0.016-0.003,0.028-0.009,0.039s-0.018,0.021-0.035,0.033s-0.027,0.022-0.031,0.032
|
||||
c-0.004,0.011-0.006,0.028-0.006,0.056V4.074z M13.059,2.677V2.542c0.136,0.012,0.248,0.037,0.336,0.075
|
||||
c0.026,0.012,0.046,0.018,0.06,0.018c0.013,0,0.023-0.004,0.03-0.01c0.007-0.006,0.021-0.024,0.043-0.054
|
||||
c0.015-0.021,0.034-0.031,0.056-0.031c0.023,0,0.04,0.007,0.05,0.02c0.009,0.014,0.014,0.035,0.014,0.064v0.487
|
||||
c0,0.063-0.023,0.095-0.07,0.095c-0.023,0-0.041-0.006-0.052-0.019s-0.022-0.037-0.032-0.073c-0.013-0.047-0.035-0.102-0.068-0.164
|
||||
c-0.032-0.062-0.064-0.111-0.094-0.146c-0.034-0.042-0.073-0.073-0.115-0.093S13.123,2.681,13.059,2.677z"/>
|
||||
<path fill="#151515" d="M14.31,2.893l0.063,0.259L14.152,3.96c-0.006,0.023-0.01,0.045-0.01,0.065c0,0.053,0.024,0.09,0.074,0.112
|
||||
l0.044,0.021c0.027,0.013,0.042,0.033,0.042,0.063c0,0.042-0.031,0.063-0.092,0.063h-0.318c-0.031,0-0.055-0.007-0.073-0.02
|
||||
s-0.027-0.03-0.027-0.053c0-0.024,0.019-0.045,0.055-0.061c0.034-0.015,0.06-0.028,0.076-0.041
|
||||
c0.016-0.012,0.032-0.028,0.047-0.049c0.023-0.034,0.042-0.08,0.058-0.137L14.31,2.893z M14.396,2.574h0.505l0.348,1.471
|
||||
c0.006,0.026,0.014,0.049,0.022,0.069c0.007,0.016,0.024,0.028,0.05,0.039c0.022,0.009,0.037,0.018,0.045,0.027
|
||||
c0.008,0.009,0.012,0.021,0.012,0.037c0,0.044-0.032,0.065-0.098,0.065h-0.625c-0.025,0-0.045-0.006-0.06-0.019
|
||||
c-0.015-0.012-0.022-0.027-0.022-0.048c0-0.017,0.003-0.029,0.01-0.037c0.007-0.009,0.022-0.02,0.045-0.031
|
||||
c0.017-0.009,0.028-0.018,0.035-0.028c0.007-0.01,0.01-0.022,0.01-0.037s-0.001-0.026-0.004-0.038l-0.04-0.181h-0.349l0.034-0.149
|
||||
h0.28l-0.23-1.018L14.396,2.574z"/>
|
||||
<path fill="#151515" d="M16.166,2.574v1.471c0,0.033,0.006,0.057,0.019,0.07c0.006,0.009,0.013,0.014,0.019,0.016
|
||||
s0.025,0.008,0.058,0.016c0.04,0.01,0.06,0.032,0.06,0.069c0,0.021-0.011,0.039-0.032,0.053c-0.016,0.01-0.042,0.015-0.079,0.015
|
||||
h-0.042h-0.559h-0.032c-0.03,0-0.053-0.006-0.07-0.017c-0.016-0.012-0.024-0.027-0.024-0.049c0-0.034,0.017-0.057,0.05-0.067
|
||||
c0.027-0.009,0.043-0.015,0.048-0.017c0.004-0.002,0.009-0.007,0.014-0.015c0.01-0.014,0.015-0.034,0.015-0.063V2.802
|
||||
c0-0.029-0.005-0.05-0.015-0.063c-0.005-0.008-0.01-0.013-0.014-0.015c-0.005-0.002-0.021-0.008-0.048-0.017
|
||||
c-0.034-0.011-0.05-0.033-0.05-0.067c0-0.021,0.008-0.037,0.024-0.049c0.017-0.011,0.04-0.017,0.07-0.017h0.032H16.166z
|
||||
M16.55,3.445c0.077,0.012,0.136,0.025,0.177,0.039c0.042,0.015,0.079,0.033,0.113,0.058c0.035,0.026,0.062,0.057,0.08,0.093
|
||||
c0.02,0.036,0.028,0.074,0.028,0.114v0.259c0,0.026,0.009,0.04,0.026,0.04c0.006,0,0.012-0.002,0.017-0.006s0.011-0.011,0.02-0.021
|
||||
c0.021-0.028,0.042-0.043,0.063-0.043c0.015,0,0.029,0.008,0.043,0.022c0.014,0.016,0.021,0.03,0.021,0.045
|
||||
c0,0.026-0.013,0.058-0.037,0.095c-0.025,0.037-0.055,0.07-0.092,0.1c-0.035,0.027-0.072,0.048-0.111,0.06
|
||||
c-0.041,0.012-0.088,0.019-0.142,0.019c-0.11,0-0.196-0.032-0.258-0.095c-0.062-0.063-0.092-0.151-0.092-0.264v-0.21
|
||||
c0-0.047,0-0.074-0.001-0.082C16.4,3.634,16.389,3.605,16.37,3.581c-0.024-0.029-0.059-0.047-0.104-0.052V3.396
|
||||
c0.045-0.007,0.077-0.019,0.097-0.035c0.017-0.015,0.028-0.032,0.034-0.051c0.006-0.02,0.01-0.048,0.01-0.086V2.893
|
||||
c0-0.053-0.01-0.092-0.031-0.118c-0.021-0.025-0.058-0.046-0.111-0.062V2.574h0.032c0.093,0,0.172,0.003,0.236,0.01
|
||||
c0.098,0.01,0.184,0.041,0.26,0.096c0.109,0.077,0.164,0.188,0.164,0.331c0,0.118-0.037,0.215-0.11,0.29
|
||||
c-0.03,0.031-0.067,0.058-0.108,0.077C16.697,3.398,16.635,3.421,16.55,3.445z"/>
|
||||
<path fill="#151515" d="M17.963,2.54v0.152c-0.049,0.007-0.086,0.028-0.109,0.064c-0.025,0.036-0.037,0.088-0.037,0.154v1.034
|
||||
v0.054c0,0.02,0.004,0.039,0.012,0.061s0.019,0.04,0.031,0.055c0.014,0.017,0.027,0.028,0.043,0.035
|
||||
c0.015,0.008,0.035,0.013,0.061,0.015v0.153c-0.162,0-0.303-0.043-0.422-0.127c-0.105-0.074-0.184-0.174-0.238-0.3
|
||||
c-0.053-0.126-0.08-0.274-0.08-0.446c0-0.126,0.018-0.243,0.053-0.353c0.034-0.108,0.084-0.203,0.15-0.283
|
||||
c0.066-0.081,0.146-0.146,0.24-0.195c0.093-0.05,0.182-0.074,0.269-0.074L17.963,2.54z M18.063,2.693V2.542
|
||||
c0.041,0.007,0.074,0.014,0.1,0.021c0.025,0.008,0.07,0.023,0.138,0.048c0.042,0.016,0.071,0.022,0.085,0.022
|
||||
c0.024,0,0.043-0.011,0.055-0.032l0.018-0.03c0.01-0.02,0.028-0.03,0.056-0.03c0.022,0,0.04,0.007,0.052,0.021
|
||||
s0.019,0.033,0.019,0.059V3.14c0,0.034-0.008,0.058-0.022,0.073c-0.016,0.015-0.032,0.022-0.052,0.022
|
||||
c-0.021,0-0.036-0.007-0.048-0.02s-0.021-0.034-0.029-0.063c-0.018-0.065-0.035-0.117-0.052-0.155
|
||||
c-0.036-0.079-0.077-0.144-0.122-0.192c-0.031-0.033-0.063-0.06-0.094-0.077C18.134,2.71,18.1,2.698,18.063,2.693z M18.066,4.317
|
||||
V4.164c0.064-0.005,0.133-0.029,0.205-0.073c0.038-0.024,0.072-0.057,0.103-0.098c0.03-0.04,0.052-0.085,0.067-0.133
|
||||
c0.008-0.027,0.018-0.046,0.029-0.058c0.012-0.011,0.026-0.017,0.045-0.017c0.02,0,0.036,0.008,0.05,0.022
|
||||
c0.013,0.015,0.021,0.034,0.021,0.057c0,0.037-0.016,0.083-0.044,0.137c-0.028,0.053-0.065,0.103-0.11,0.147
|
||||
c-0.055,0.055-0.111,0.096-0.17,0.122C18.203,4.299,18.139,4.313,18.066,4.317z"/>
|
||||
<path fill="#151515" d="M19.189,2.893l0.063,0.259L19.031,3.96c-0.006,0.023-0.01,0.045-0.01,0.065c0,0.053,0.024,0.09,0.074,0.112
|
||||
l0.043,0.021c0.027,0.013,0.042,0.033,0.042,0.063c0,0.042-0.03,0.063-0.092,0.063h-0.317c-0.031,0-0.056-0.007-0.074-0.02
|
||||
c-0.018-0.013-0.026-0.03-0.026-0.053c0-0.024,0.019-0.045,0.056-0.061c0.033-0.015,0.059-0.028,0.075-0.041
|
||||
c0.017-0.012,0.032-0.028,0.047-0.049c0.023-0.034,0.042-0.08,0.058-0.137L19.189,2.893z M19.275,2.574h0.505l0.349,1.471
|
||||
c0.006,0.026,0.014,0.049,0.021,0.069c0.008,0.016,0.024,0.028,0.051,0.039c0.021,0.009,0.037,0.018,0.045,0.027
|
||||
c0.008,0.009,0.012,0.021,0.012,0.037c0,0.044-0.031,0.065-0.098,0.065h-0.624c-0.024,0-0.046-0.006-0.06-0.019
|
||||
c-0.016-0.012-0.023-0.027-0.023-0.048c0-0.017,0.004-0.029,0.01-0.037c0.008-0.009,0.022-0.02,0.045-0.031
|
||||
c0.018-0.009,0.029-0.018,0.035-0.028c0.008-0.01,0.011-0.022,0.011-0.037s-0.001-0.026-0.004-0.038l-0.04-0.181h-0.35l0.034-0.149
|
||||
h0.28l-0.23-1.018L19.275,2.574z"/>
|
||||
<path fill="#151515" d="M20.545,3.014l0.133,0.221v0.671c0,0.059,0.01,0.106,0.029,0.144c0.02,0.038,0.051,0.068,0.094,0.093
|
||||
l0.037,0.021c0.021,0.013,0.033,0.031,0.033,0.057c0,0.019-0.008,0.035-0.024,0.047c-0.013,0.011-0.041,0.017-0.083,0.017h-0.289
|
||||
c-0.076,0-0.113-0.021-0.113-0.065c0-0.015,0.004-0.026,0.012-0.035s0.025-0.021,0.052-0.036c0.08-0.044,0.12-0.125,0.12-0.241
|
||||
V3.014z M21.07,2.574l0.666,1.157v0.552h-0.342l-0.851-1.465c-0.019-0.031-0.034-0.054-0.046-0.066s-0.025-0.021-0.045-0.027
|
||||
l-0.047-0.018c-0.013-0.004-0.023-0.012-0.03-0.022s-0.011-0.023-0.011-0.036c0-0.015,0.004-0.027,0.011-0.04
|
||||
c0.007-0.012,0.018-0.021,0.03-0.025c0.014-0.006,0.053-0.009,0.115-0.009H21.07z M21.736,3.53l-0.133-0.224V2.96
|
||||
c0-0.07-0.011-0.124-0.031-0.161s-0.057-0.069-0.108-0.096c-0.018-0.008-0.029-0.018-0.036-0.027
|
||||
c-0.007-0.009-0.01-0.021-0.01-0.036c0-0.022,0.007-0.039,0.021-0.05s0.038-0.016,0.07-0.016h0.313
|
||||
c0.042,0,0.071,0.007,0.084,0.021c0.015,0.013,0.021,0.028,0.021,0.047c0,0.018-0.005,0.031-0.013,0.04s-0.026,0.021-0.057,0.035
|
||||
c-0.044,0.022-0.077,0.058-0.1,0.104c-0.016,0.034-0.023,0.08-0.023,0.139V3.53z"/>
|
||||
<path fill="#151515" d="M22.766,2.574v1.709h-0.557h-0.033c-0.029,0-0.053-0.006-0.069-0.017c-0.017-0.012-0.024-0.027-0.024-0.049
|
||||
c0-0.034,0.017-0.057,0.051-0.067c0.027-0.009,0.043-0.015,0.048-0.017s0.009-0.007,0.015-0.015
|
||||
c0.01-0.014,0.015-0.034,0.015-0.063V2.802c0-0.029-0.005-0.05-0.015-0.063c-0.006-0.008-0.01-0.013-0.015-0.015
|
||||
s-0.021-0.008-0.048-0.017c-0.034-0.011-0.051-0.033-0.051-0.067c0-0.021,0.008-0.037,0.024-0.049
|
||||
c0.017-0.011,0.04-0.017,0.069-0.017h0.033H22.766z M22.871,3.485V3.341c0.049-0.023,0.084-0.049,0.107-0.077
|
||||
c0.023-0.027,0.041-0.063,0.051-0.109c0.008-0.032,0.016-0.054,0.027-0.066c0.01-0.012,0.025-0.018,0.046-0.018
|
||||
c0.026,0,0.045,0.01,0.056,0.031c0.006,0.011,0.008,0.035,0.008,0.073v0.478c0,0.039-0.004,0.066-0.013,0.081
|
||||
c-0.009,0.016-0.024,0.022-0.048,0.022c-0.02,0-0.035-0.006-0.045-0.018c-0.012-0.012-0.02-0.031-0.027-0.059
|
||||
c-0.014-0.058-0.034-0.102-0.061-0.133C22.947,3.517,22.912,3.496,22.871,3.485z M22.877,2.574h0.505v0.443
|
||||
c0,0.025-0.005,0.045-0.015,0.057s-0.026,0.017-0.048,0.017c-0.019,0-0.032-0.003-0.04-0.011c-0.009-0.008-0.017-0.023-0.023-0.046
|
||||
c-0.032-0.098-0.078-0.171-0.141-0.222c-0.061-0.052-0.141-0.082-0.238-0.092V2.574z M22.879,4.283V4.148
|
||||
c0.054-0.009,0.099-0.021,0.135-0.035c0.035-0.016,0.07-0.038,0.106-0.069c0.036-0.03,0.064-0.063,0.086-0.096
|
||||
c0.021-0.033,0.042-0.076,0.061-0.131c0.009-0.026,0.019-0.045,0.028-0.055s0.024-0.014,0.041-0.014
|
||||
c0.023,0,0.041,0.007,0.049,0.021c0.01,0.014,0.015,0.037,0.015,0.071v0.442H22.879z"/>
|
||||
</g>
|
||||
<g enable-background="new ">
|
||||
<path fill="#E5DAD1" d="M9.396,2.414v0.145C9.344,2.572,9.305,2.595,9.277,2.624S9.237,2.69,9.237,2.733
|
||||
c0,0.042,0.011,0.078,0.034,0.109c0.022,0.032,0.059,0.062,0.11,0.09c0.035,0.02,0.114,0.056,0.238,0.11
|
||||
c0.075,0.032,0.133,0.062,0.174,0.088C9.834,3.157,9.874,3.19,9.91,3.229c0.099,0.104,0.148,0.227,0.148,0.369
|
||||
c0,0.107-0.027,0.206-0.08,0.296c-0.054,0.089-0.127,0.159-0.221,0.21c-0.05,0.027-0.105,0.048-0.165,0.063
|
||||
S9.478,4.191,9.426,4.191V4.048c0.073-0.017,0.125-0.041,0.157-0.073c0.032-0.031,0.048-0.073,0.048-0.127
|
||||
c0-0.056-0.025-0.104-0.075-0.147c-0.034-0.027-0.097-0.062-0.19-0.103C9.263,3.553,9.192,3.521,9.155,3.501
|
||||
C9.117,3.482,9.08,3.459,9.045,3.434C8.888,3.321,8.81,3.173,8.81,2.986c0-0.095,0.02-0.183,0.059-0.264
|
||||
c0.039-0.08,0.094-0.146,0.164-0.194C9.13,2.46,9.251,2.422,9.396,2.414z M9.331,4.048v0.144c-0.068,0-0.144-0.02-0.227-0.06
|
||||
C9.073,4.118,9.052,4.108,9.04,4.104S9.017,4.099,9.006,4.099c-0.017,0-0.029,0.003-0.038,0.008
|
||||
c-0.008,0.006-0.022,0.02-0.04,0.041C8.914,4.166,8.897,4.175,8.88,4.175c-0.047,0-0.07-0.036-0.07-0.107V3.611
|
||||
c0-0.023,0.007-0.043,0.02-0.06c0.014-0.017,0.03-0.024,0.05-0.025C8.898,3.525,8.913,3.53,8.923,3.542
|
||||
c0.011,0.011,0.02,0.031,0.027,0.06c0.02,0.071,0.047,0.139,0.083,0.201S9.112,3.919,9.16,3.962
|
||||
C9.209,4.007,9.266,4.036,9.331,4.048z M9.495,2.559V2.421c0.05,0.003,0.093,0.01,0.13,0.02c0.037,0.01,0.089,0.028,0.156,0.057
|
||||
c0.017,0.007,0.03,0.01,0.042,0.01c0.016,0,0.027-0.005,0.035-0.016l0.028-0.037c0.013-0.018,0.03-0.027,0.049-0.027
|
||||
c0.022,0,0.039,0.009,0.049,0.024c0.011,0.017,0.016,0.042,0.016,0.077v0.413c0,0.024-0.007,0.044-0.021,0.06
|
||||
S9.947,3.024,9.925,3.024c-0.017,0-0.032-0.006-0.046-0.017C9.872,3.001,9.865,2.993,9.861,2.983
|
||||
c-0.005-0.01-0.009-0.025-0.013-0.048C9.838,2.895,9.823,2.853,9.8,2.809C9.777,2.766,9.751,2.727,9.721,2.692
|
||||
C9.661,2.625,9.585,2.58,9.495,2.559z"/>
|
||||
<path fill="#E5DAD1" d="M10.361,3.657V2.676c0-0.029-0.005-0.05-0.015-0.063c-0.005-0.008-0.01-0.013-0.014-0.015
|
||||
s-0.021-0.008-0.048-0.017c-0.033-0.011-0.05-0.033-0.05-0.066c0-0.021,0.008-0.038,0.024-0.05
|
||||
c0.016-0.011,0.039-0.017,0.069-0.017h0.033h0.558h0.033l0.045,0.005c0.014,0.004,0.026,0.012,0.035,0.022s0.014,0.024,0.014,0.039
|
||||
c0,0.033-0.017,0.056-0.05,0.066c-0.028,0.009-0.044,0.015-0.048,0.017s-0.009,0.007-0.015,0.015
|
||||
c-0.01,0.014-0.015,0.034-0.015,0.063v1.051c0,0.071,0.002,0.12,0.005,0.148c0.004,0.028,0.012,0.053,0.023,0.075
|
||||
c0.011,0.021,0.023,0.036,0.036,0.046c0.013,0.009,0.039,0.02,0.076,0.031v0.164h-0.027c-0.108,0-0.199-0.01-0.271-0.029
|
||||
c-0.084-0.022-0.158-0.056-0.222-0.1c-0.063-0.045-0.108-0.095-0.135-0.149C10.375,3.854,10.361,3.77,10.361,3.657z M11.173,4.191
|
||||
V4.027c0.083-0.011,0.153-0.045,0.209-0.103c0.063-0.066,0.095-0.161,0.095-0.284V2.824c0-0.114-0.043-0.194-0.131-0.239
|
||||
C11.32,2.571,11.304,2.56,11.295,2.55c-0.008-0.009-0.012-0.023-0.012-0.041c0-0.022,0.008-0.037,0.024-0.047
|
||||
c0.016-0.009,0.042-0.014,0.078-0.014h0.307c0.026,0,0.043,0.001,0.052,0.002s0.018,0.004,0.026,0.01
|
||||
c0.021,0.012,0.032,0.029,0.032,0.051c0,0.019-0.006,0.034-0.02,0.047c-0.004,0.004-0.022,0.015-0.054,0.033
|
||||
c-0.037,0.021-0.065,0.051-0.086,0.092c-0.021,0.042-0.031,0.089-0.031,0.142v0.817c0,0.14-0.031,0.255-0.093,0.346
|
||||
c-0.045,0.066-0.109,0.12-0.194,0.16C11.282,4.167,11.232,4.182,11.173,4.191z"/>
|
||||
<path fill="#E5DAD1" d="M12.642,2.414v0.14c-0.073,0.018-0.11,0.075-0.11,0.175v1.166c0,0.045,0.006,0.079,0.019,0.104
|
||||
c0.011,0.021,0.034,0.037,0.069,0.052v0.142c-0.027,0-0.051-0.003-0.073-0.007s-0.052-0.013-0.088-0.024
|
||||
c-0.087-0.03-0.167-0.076-0.238-0.138c-0.071-0.063-0.129-0.136-0.175-0.222c-0.071-0.135-0.106-0.294-0.106-0.478
|
||||
c0-0.178,0.032-0.335,0.095-0.473s0.154-0.246,0.273-0.325c0.068-0.046,0.142-0.078,0.22-0.099
|
||||
C12.56,2.419,12.598,2.414,12.642,2.414z M13.311,3.948c-0.033,0.033-0.078,0.067-0.133,0.102
|
||||
c-0.055,0.035-0.108,0.063-0.157,0.082c-0.045,0.018-0.095,0.032-0.15,0.043s-0.103,0.017-0.145,0.017V4.05
|
||||
c0.024-0.006,0.042-0.013,0.054-0.021c0.012-0.009,0.022-0.021,0.031-0.035c0.014-0.025,0.021-0.059,0.021-0.099V3.528
|
||||
c0-0.032-0.006-0.056-0.019-0.069c-0.006-0.009-0.012-0.014-0.017-0.016c-0.006-0.003-0.025-0.007-0.058-0.015
|
||||
c-0.04-0.01-0.06-0.033-0.06-0.07c0-0.021,0.009-0.038,0.028-0.05c0.019-0.012,0.046-0.018,0.083-0.018h0.041h0.458
|
||||
c0.038,0,0.064,0.005,0.08,0.016c0.015,0.011,0.023,0.028,0.023,0.055c0,0.016-0.003,0.028-0.009,0.039s-0.018,0.021-0.035,0.033
|
||||
s-0.027,0.022-0.031,0.032c-0.004,0.011-0.006,0.028-0.006,0.056V3.948z M12.745,2.551V2.416c0.136,0.012,0.248,0.037,0.336,0.075
|
||||
c0.026,0.012,0.046,0.018,0.06,0.018c0.013,0,0.023-0.004,0.03-0.01c0.007-0.006,0.021-0.024,0.043-0.054
|
||||
c0.015-0.021,0.034-0.031,0.056-0.031c0.023,0,0.04,0.007,0.05,0.02c0.009,0.014,0.014,0.035,0.014,0.064v0.487
|
||||
c0,0.063-0.023,0.095-0.07,0.095c-0.023,0-0.041-0.006-0.052-0.019s-0.022-0.037-0.032-0.073c-0.013-0.047-0.035-0.102-0.068-0.164
|
||||
c-0.032-0.062-0.064-0.111-0.094-0.146c-0.034-0.042-0.073-0.073-0.115-0.093S12.808,2.555,12.745,2.551z"/>
|
||||
<path fill="#E5DAD1" d="M13.996,2.767l0.063,0.259l-0.222,0.809c-0.006,0.023-0.01,0.045-0.01,0.065
|
||||
c0,0.053,0.024,0.09,0.074,0.112l0.044,0.021c0.027,0.013,0.042,0.033,0.042,0.063c0,0.042-0.031,0.063-0.092,0.063h-0.318
|
||||
c-0.031,0-0.055-0.007-0.073-0.02s-0.027-0.03-0.027-0.053c0-0.024,0.019-0.045,0.055-0.061c0.034-0.015,0.06-0.028,0.076-0.041
|
||||
c0.016-0.012,0.032-0.028,0.047-0.049c0.023-0.034,0.042-0.08,0.058-0.137L13.996,2.767z M14.082,2.448h0.505l0.348,1.471
|
||||
c0.006,0.026,0.014,0.049,0.022,0.069c0.007,0.016,0.024,0.028,0.05,0.039c0.022,0.009,0.037,0.018,0.045,0.027
|
||||
c0.008,0.009,0.012,0.021,0.012,0.037c0,0.044-0.032,0.065-0.098,0.065h-0.625c-0.025,0-0.045-0.006-0.06-0.019
|
||||
c-0.015-0.012-0.022-0.027-0.022-0.048c0-0.017,0.003-0.029,0.01-0.037c0.007-0.009,0.022-0.02,0.045-0.031
|
||||
c0.017-0.009,0.028-0.018,0.035-0.028c0.007-0.01,0.01-0.022,0.01-0.037s-0.001-0.026-0.004-0.038l-0.04-0.181h-0.349L14,3.589
|
||||
h0.28l-0.23-1.018L14.082,2.448z"/>
|
||||
<path fill="#E5DAD1" d="M15.851,2.448v1.471c0,0.033,0.006,0.057,0.019,0.07c0.006,0.009,0.013,0.014,0.019,0.016
|
||||
s0.025,0.008,0.058,0.016c0.04,0.01,0.06,0.032,0.06,0.069c0,0.021-0.011,0.039-0.032,0.053c-0.016,0.01-0.042,0.015-0.079,0.015
|
||||
h-0.042h-0.559h-0.032c-0.03,0-0.053-0.006-0.07-0.017c-0.016-0.012-0.024-0.027-0.024-0.049c0-0.034,0.017-0.057,0.05-0.067
|
||||
c0.027-0.009,0.043-0.015,0.048-0.017c0.004-0.002,0.009-0.007,0.014-0.015c0.01-0.014,0.015-0.034,0.015-0.063V2.676
|
||||
c0-0.029-0.005-0.05-0.015-0.063c-0.005-0.008-0.01-0.013-0.014-0.015c-0.005-0.002-0.021-0.008-0.048-0.017
|
||||
c-0.034-0.011-0.05-0.033-0.05-0.067c0-0.021,0.008-0.037,0.024-0.049c0.017-0.011,0.04-0.017,0.07-0.017h0.032H15.851z
|
||||
M16.235,3.319c0.077,0.012,0.136,0.025,0.177,0.039c0.042,0.015,0.079,0.033,0.113,0.058c0.035,0.026,0.062,0.057,0.08,0.093
|
||||
c0.02,0.036,0.028,0.074,0.028,0.114v0.259c0,0.026,0.009,0.04,0.026,0.04c0.006,0,0.012-0.002,0.017-0.006s0.011-0.011,0.02-0.021
|
||||
c0.021-0.028,0.042-0.043,0.063-0.043c0.015,0,0.029,0.008,0.043,0.022c0.014,0.016,0.021,0.03,0.021,0.045
|
||||
c0,0.026-0.013,0.058-0.037,0.095c-0.025,0.037-0.055,0.07-0.092,0.1c-0.035,0.027-0.072,0.048-0.111,0.06
|
||||
c-0.041,0.012-0.087,0.019-0.142,0.019c-0.11,0-0.196-0.032-0.258-0.095c-0.062-0.063-0.092-0.151-0.092-0.264v-0.21
|
||||
c0-0.047,0-0.074-0.001-0.082c-0.004-0.033-0.016-0.062-0.035-0.086c-0.024-0.029-0.059-0.047-0.104-0.052V3.27
|
||||
c0.045-0.007,0.077-0.019,0.097-0.035c0.017-0.015,0.028-0.032,0.034-0.051c0.006-0.02,0.01-0.048,0.01-0.086V2.767
|
||||
c0-0.053-0.01-0.092-0.031-0.118c-0.021-0.025-0.058-0.046-0.111-0.062V2.448h0.032c0.093,0,0.172,0.003,0.237,0.01
|
||||
c0.097,0.01,0.183,0.041,0.259,0.096c0.109,0.077,0.164,0.188,0.164,0.331c0,0.118-0.037,0.215-0.11,0.29
|
||||
c-0.03,0.031-0.067,0.058-0.108,0.077C16.383,3.272,16.32,3.295,16.235,3.319z"/>
|
||||
<path fill="#E5DAD1" d="M17.648,2.414v0.152c-0.049,0.007-0.086,0.028-0.109,0.064c-0.025,0.036-0.037,0.088-0.037,0.154v1.034
|
||||
v0.054c0,0.02,0.004,0.039,0.012,0.061s0.019,0.04,0.031,0.055c0.014,0.017,0.027,0.028,0.043,0.035
|
||||
c0.015,0.008,0.035,0.013,0.061,0.015v0.153c-0.162,0-0.303-0.043-0.422-0.127c-0.105-0.074-0.184-0.174-0.238-0.3
|
||||
c-0.053-0.126-0.08-0.274-0.08-0.446c0-0.126,0.018-0.243,0.053-0.353c0.034-0.108,0.084-0.203,0.15-0.283
|
||||
c0.066-0.081,0.146-0.146,0.24-0.195c0.093-0.05,0.182-0.074,0.269-0.074L17.648,2.414z M17.748,2.567V2.416
|
||||
c0.041,0.007,0.074,0.014,0.1,0.021c0.025,0.008,0.07,0.023,0.138,0.048c0.042,0.016,0.071,0.022,0.085,0.022
|
||||
c0.024,0,0.043-0.011,0.055-0.032l0.018-0.03c0.01-0.02,0.028-0.03,0.056-0.03c0.022,0,0.04,0.007,0.052,0.021
|
||||
s0.019,0.033,0.019,0.059v0.521c0,0.034-0.008,0.058-0.022,0.073c-0.016,0.015-0.032,0.022-0.052,0.022
|
||||
c-0.021,0-0.036-0.007-0.048-0.02s-0.021-0.034-0.029-0.063c-0.018-0.065-0.035-0.117-0.052-0.155
|
||||
c-0.036-0.079-0.077-0.144-0.122-0.192c-0.031-0.033-0.063-0.06-0.094-0.077C17.819,2.584,17.785,2.572,17.748,2.567z
|
||||
M17.752,4.191V4.038c0.064-0.005,0.133-0.029,0.205-0.073c0.038-0.024,0.072-0.057,0.103-0.098c0.03-0.04,0.052-0.085,0.067-0.133
|
||||
c0.008-0.027,0.018-0.046,0.029-0.058c0.012-0.011,0.026-0.017,0.045-0.017c0.02,0,0.036,0.008,0.05,0.022
|
||||
c0.013,0.015,0.021,0.034,0.021,0.057c0,0.037-0.016,0.083-0.044,0.137c-0.028,0.053-0.065,0.103-0.11,0.147
|
||||
c-0.055,0.055-0.111,0.096-0.17,0.122C17.889,4.173,17.824,4.188,17.752,4.191z"/>
|
||||
<path fill="#E5DAD1" d="M18.875,2.767l0.063,0.259l-0.222,0.809c-0.006,0.023-0.01,0.045-0.01,0.065
|
||||
c0,0.053,0.024,0.09,0.074,0.112l0.043,0.021c0.027,0.013,0.042,0.033,0.042,0.063c0,0.042-0.03,0.063-0.092,0.063h-0.317
|
||||
c-0.031,0-0.056-0.007-0.074-0.02c-0.018-0.013-0.026-0.03-0.026-0.053c0-0.024,0.019-0.045,0.056-0.061
|
||||
c0.033-0.015,0.059-0.028,0.075-0.041c0.017-0.012,0.032-0.028,0.047-0.049c0.023-0.034,0.042-0.08,0.058-0.137L18.875,2.767z
|
||||
M18.961,2.448h0.505l0.349,1.471c0.006,0.026,0.014,0.049,0.021,0.069c0.008,0.016,0.024,0.028,0.051,0.039
|
||||
c0.021,0.009,0.037,0.018,0.045,0.027c0.008,0.009,0.012,0.021,0.012,0.037c0,0.044-0.031,0.065-0.098,0.065h-0.624
|
||||
c-0.024,0-0.046-0.006-0.06-0.019c-0.016-0.012-0.023-0.027-0.023-0.048c0-0.017,0.004-0.029,0.01-0.037
|
||||
c0.008-0.009,0.022-0.02,0.045-0.031c0.018-0.009,0.029-0.018,0.035-0.028c0.008-0.01,0.011-0.022,0.011-0.037
|
||||
s-0.001-0.026-0.004-0.038l-0.04-0.181h-0.35l0.034-0.149h0.28l-0.23-1.018L18.961,2.448z"/>
|
||||
<path fill="#E5DAD1" d="M20.23,2.888l0.133,0.221v0.671c0,0.059,0.01,0.106,0.029,0.144c0.02,0.038,0.051,0.068,0.094,0.093
|
||||
l0.037,0.021c0.021,0.013,0.033,0.031,0.033,0.057c0,0.019-0.008,0.035-0.024,0.047c-0.013,0.011-0.041,0.017-0.083,0.017H20.16
|
||||
c-0.076,0-0.113-0.021-0.113-0.065c0-0.015,0.004-0.026,0.012-0.035s0.025-0.021,0.052-0.036c0.08-0.044,0.12-0.125,0.12-0.241
|
||||
V2.888z M20.756,2.448l0.666,1.157v0.552H21.08l-0.851-1.465c-0.019-0.031-0.034-0.054-0.046-0.066s-0.025-0.021-0.045-0.027
|
||||
l-0.047-0.018c-0.013-0.004-0.023-0.012-0.03-0.022s-0.011-0.023-0.011-0.036c0-0.015,0.004-0.027,0.011-0.04
|
||||
c0.007-0.012,0.018-0.021,0.03-0.025c0.014-0.006,0.053-0.009,0.115-0.009H20.756z M21.422,3.404l-0.133-0.224V2.834
|
||||
c0-0.07-0.011-0.124-0.031-0.161s-0.057-0.069-0.108-0.096C21.132,2.569,21.12,2.56,21.113,2.55
|
||||
c-0.007-0.009-0.01-0.021-0.01-0.036c0-0.022,0.007-0.039,0.021-0.05s0.038-0.016,0.07-0.016h0.313
|
||||
c0.042,0,0.071,0.007,0.084,0.021c0.015,0.013,0.021,0.028,0.021,0.047c0,0.018-0.005,0.031-0.013,0.04s-0.026,0.021-0.057,0.035
|
||||
c-0.044,0.022-0.077,0.058-0.1,0.104c-0.016,0.034-0.023,0.08-0.023,0.139V3.404z"/>
|
||||
<path fill="#E5DAD1" d="M22.451,2.448v1.709h-0.557h-0.033c-0.029,0-0.053-0.006-0.069-0.017c-0.017-0.012-0.024-0.027-0.024-0.049
|
||||
c0-0.034,0.017-0.057,0.051-0.067c0.027-0.009,0.043-0.015,0.048-0.017s0.009-0.007,0.015-0.015
|
||||
c0.01-0.014,0.015-0.034,0.015-0.063V2.676c0-0.029-0.005-0.05-0.015-0.063c-0.006-0.008-0.01-0.013-0.015-0.015
|
||||
s-0.021-0.008-0.048-0.017c-0.034-0.011-0.051-0.033-0.051-0.067c0-0.021,0.008-0.037,0.024-0.049
|
||||
c0.017-0.011,0.04-0.017,0.069-0.017h0.033H22.451z M22.557,3.359V3.215c0.049-0.023,0.084-0.049,0.107-0.077
|
||||
c0.023-0.027,0.041-0.063,0.051-0.109c0.008-0.032,0.016-0.054,0.027-0.066c0.01-0.012,0.025-0.018,0.046-0.018
|
||||
c0.026,0,0.045,0.01,0.056,0.031c0.006,0.011,0.008,0.035,0.008,0.073v0.478c0,0.039-0.004,0.066-0.013,0.081
|
||||
C22.83,3.623,22.814,3.63,22.791,3.63c-0.02,0-0.035-0.006-0.045-0.018c-0.012-0.012-0.02-0.031-0.027-0.059
|
||||
c-0.014-0.058-0.034-0.102-0.061-0.133C22.633,3.391,22.598,3.37,22.557,3.359z M22.563,2.448h0.505v0.443
|
||||
c0,0.025-0.005,0.045-0.015,0.057s-0.026,0.017-0.048,0.017c-0.019,0-0.032-0.003-0.04-0.011c-0.009-0.008-0.017-0.023-0.023-0.046
|
||||
c-0.032-0.098-0.078-0.171-0.141-0.222c-0.061-0.052-0.141-0.082-0.238-0.092V2.448z M22.564,4.157V4.022
|
||||
c0.054-0.009,0.099-0.021,0.135-0.035c0.035-0.016,0.07-0.038,0.106-0.069c0.036-0.03,0.064-0.063,0.086-0.096
|
||||
c0.021-0.033,0.042-0.076,0.061-0.131c0.009-0.026,0.019-0.045,0.028-0.055s0.024-0.014,0.041-0.014
|
||||
c0.023,0,0.041,0.007,0.049,0.021c0.01,0.014,0.015,0.037,0.015,0.071v0.442H22.564z"/>
|
||||
</g>
|
||||
<g id="Shape_16_6_">
|
||||
<g>
|
||||
<path fill="#D69976" d="M19.657,5.045h-0.611c-0.133,0-0.241,0.108-0.241,0.242v0.521c0,0.133,0.108,0.241,0.241,0.241h0.611
|
||||
c0.125,0,0.228-0.094,0.239-0.216V5.821h-0.822V5.27h0.822V5.256C19.883,5.138,19.779,5.045,19.657,5.045z M20.968,5.436h-0.639
|
||||
V5.262h0.858c-0.014-0.121-0.115-0.217-0.24-0.217h-0.622c-0.134,0-0.241,0.108-0.241,0.242v0.149
|
||||
c0.012,0.122,0.114,0.217,0.241,0.217l0.637-0.001v0.18h-0.876c0.012,0.122,0.114,0.217,0.239,0.217h0.641
|
||||
c0.134,0,0.241-0.108,0.241-0.241V5.652C21.195,5.53,21.093,5.436,20.968,5.436z M23.917,5.037H23.29
|
||||
c-0.127,0-0.231,0.104-0.231,0.23V5.81c0,0.127,0.104,0.23,0.231,0.23h0.627c0.126,0,0.229-0.104,0.229-0.23V5.268
|
||||
C24.146,5.141,24.043,5.037,23.917,5.037z M23.932,5.854h-0.656v-0.63h0.656V5.854z M22.17,5.557
|
||||
c0.049,0.062,0.123,0.066,0.145,0.066h0.334v0.219h-0.701v-0.61h0.916c-0.02-0.113-0.115-0.195-0.229-0.195h-0.671
|
||||
c-0.126,0-0.229,0.104-0.229,0.23V5.81c0,0.127,0.103,0.23,0.229,0.23h0.671c0.119,0,0.22-0.089,0.229-0.204V5.455H22.12
|
||||
C22.123,5.474,22.134,5.511,22.17,5.557z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 44 KiB |