ace-front-end 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +8 -0
- package/.hintrc +9 -0
- package/.run/build-app-bolts.run.xml +12 -0
- package/.run/build-app-manager-ui.run.xml +12 -0
- package/.run/build-cloud-shell.run.xml +12 -0
- package/.run/build-element-plus-component.run.xml +12 -0
- package/.run/build-monnolith-shell.run.xml +12 -0
- package/.run/dev-app-manager.run.xml +12 -0
- package/.run/dev-monolith-shell.run.xml +12 -0
- package/README.md +59 -0
- package/ace-app-bolts-ui/.eslintrc.cjs +15 -0
- package/ace-app-bolts-ui/.vscode/extensions.json +3 -0
- package/ace-app-bolts-ui/.vscode/settings.json +27 -0
- package/ace-app-bolts-ui/folder-alias.json +1 -0
- package/ace-app-bolts-ui/package.json +76 -0
- package/ace-app-bolts-ui/src/api/apiCache.ts +26 -0
- package/ace-app-bolts-ui/src/api/appService/aceInstall.ts +29 -0
- package/ace-app-bolts-ui/src/api/appService/appAdmin.ts +58 -0
- package/ace-app-bolts-ui/src/api/appService/appInstance.ts +186 -0
- package/ace-app-bolts-ui/src/api/appService/appMessage.ts +123 -0
- package/ace-app-bolts-ui/src/api/appService/appRoute.ts +128 -0
- package/ace-app-bolts-ui/src/api/appService/appService.ts +135 -0
- package/ace-app-bolts-ui/src/api/appService/appSetting.ts +163 -0
- package/ace-app-bolts-ui/src/api/appService/appSettingGroup.ts +129 -0
- package/ace-app-bolts-ui/src/api/appService/appliedPasswordPolicy.ts +77 -0
- package/ace-app-bolts-ui/src/api/appService/eventCompensation.ts +61 -0
- package/ace-app-bolts-ui/src/api/appService/externalApp.ts +209 -0
- package/ace-app-bolts-ui/src/api/auditService/auditLog.ts +63 -0
- package/ace-app-bolts-ui/src/api/bizFlow/flowComment.ts +76 -0
- package/ace-app-bolts-ui/src/api/bizFlow/flowDefinition.ts +321 -0
- package/ace-app-bolts-ui/src/api/bizFlow/taskQuery.ts +91 -0
- package/ace-app-bolts-ui/src/api/domainModel/aggregate.ts +107 -0
- package/ace-app-bolts-ui/src/api/domainModel/command.ts +257 -0
- package/ace-app-bolts-ui/src/api/domainModel/constraint.ts +101 -0
- package/ace-app-bolts-ui/src/api/domainModel/dataScope.ts +84 -0
- package/ace-app-bolts-ui/src/api/domainModel/dataSource.ts +194 -0
- package/ace-app-bolts-ui/src/api/domainModel/dto.ts +243 -0
- package/ace-app-bolts-ui/src/api/domainModel/dtoConstraint.ts +101 -0
- package/ace-app-bolts-ui/src/api/domainModel/entity.ts +207 -0
- package/ace-app-bolts-ui/src/api/domainModel/enum.ts +170 -0
- package/ace-app-bolts-ui/src/api/domainModel/indexDef.ts +82 -0
- package/ace-app-bolts-ui/src/api/domainModel/query.ts +292 -0
- package/ace-app-bolts-ui/src/api/domainModel/release.ts +97 -0
- package/ace-app-bolts-ui/src/api/fileService/fileConfiguration.ts +161 -0
- package/ace-app-bolts-ui/src/api/fileService/fileStorage.ts +165 -0
- package/ace-app-bolts-ui/src/api/fileService/files.ts +207 -0
- package/ace-app-bolts-ui/src/api/idGenService/leafSegment.ts +55 -0
- package/ace-app-bolts-ui/src/api/idGenService/stringIdTemplate.ts +170 -0
- package/ace-app-bolts-ui/src/api/orgService/customGroup.ts +73 -0
- package/ace-app-bolts-ui/src/api/orgService/department.ts +186 -0
- package/ace-app-bolts-ui/src/api/orgService/departmentAttrDef.ts +90 -0
- package/ace-app-bolts-ui/src/api/orgService/group.ts +249 -0
- package/ace-app-bolts-ui/src/api/orgService/realm.ts +70 -0
- package/ace-app-bolts-ui/src/api/orgService/resourceScope.ts +132 -0
- package/ace-app-bolts-ui/src/api/orgService/role.ts +145 -0
- package/ace-app-bolts-ui/src/api/orgService/roleCategory.ts +77 -0
- package/ace-app-bolts-ui/src/api/orgService/session.ts +74 -0
- package/ace-app-bolts-ui/src/api/orgService/user.ts +1187 -0
- package/ace-app-bolts-ui/src/api/orgService/userAttrDef.ts +86 -0
- package/ace-app-bolts-ui/src/api/orgService/userAvatar.ts +32 -0
- package/ace-app-bolts-ui/src/api/pushService/MessageTemplate.ts +109 -0
- package/ace-app-bolts-ui/src/api/pushService/MessengerTemplateMap.ts +68 -0
- package/ace-app-bolts-ui/src/api/pushService/channel.ts +109 -0
- package/ace-app-bolts-ui/src/api/pushService/messenger.ts +82 -0
- package/ace-app-bolts-ui/src/api/pushService/sockJs.ts +43 -0
- package/ace-app-bolts-ui/src/api/pushService/soketIo.ts +50 -0
- package/ace-app-bolts-ui/src/api/pushService/userSubscription.ts +62 -0
- package/ace-app-bolts-ui/src/global.ts +238 -0
- package/ace-app-bolts-ui/src/http/IAceAxios.ts +183 -0
- package/ace-app-bolts-ui/src/http/types.ts +154 -0
- package/ace-app-bolts-ui/src/http/useAxios.ts +42 -0
- package/ace-app-bolts-ui/src/http/useLoading.ts +18 -0
- package/ace-app-bolts-ui/src/index.ts +250 -0
- package/ace-app-bolts-ui/src/locales/i18nLoader.ts +42 -0
- package/ace-app-bolts-ui/src/locales/setupI18n.ts +77 -0
- package/ace-app-bolts-ui/src/locales/useLocale.ts +70 -0
- package/ace-app-bolts-ui/src/models/AppBridge.ts +68 -0
- package/ace-app-bolts-ui/src/models/EntityBase.ts +10 -0
- package/ace-app-bolts-ui/src/models/LinkTreeNodeAddParam.ts +9 -0
- package/ace-app-bolts-ui/src/models/Page.ts +49 -0
- package/ace-app-bolts-ui/src/models/PageModel.ts +30 -0
- package/ace-app-bolts-ui/src/models/ProjectedSortPathTreeNode.ts +21 -0
- package/ace-app-bolts-ui/src/models/ProjectedUser.ts +17 -0
- package/ace-app-bolts-ui/src/models/Roles.ts +223 -0
- package/ace-app-bolts-ui/src/models/SortPathTreeNode.ts +21 -0
- package/ace-app-bolts-ui/src/models/SortPathTreeNodeAddParam.ts +13 -0
- package/ace-app-bolts-ui/src/models/SysSetting.ts +35 -0
- package/ace-app-bolts-ui/src/models/SystemSetting.ts +0 -0
- package/ace-app-bolts-ui/src/models/appService/AceInstallInfo.ts +43 -0
- package/ace-app-bolts-ui/src/models/appService/AppAdmin.ts +71 -0
- package/ace-app-bolts-ui/src/models/appService/AppInstance.ts +210 -0
- package/ace-app-bolts-ui/src/models/appService/AppMessage.ts +64 -0
- package/ace-app-bolts-ui/src/models/appService/AppRouter.ts +121 -0
- package/ace-app-bolts-ui/src/models/appService/AppService.ts +113 -0
- package/ace-app-bolts-ui/src/models/appService/AppSettingGroup.ts +81 -0
- package/ace-app-bolts-ui/src/models/appService/AppSettings.ts +163 -0
- package/ace-app-bolts-ui/src/models/appService/AppliedPasswordPolicy.ts +87 -0
- package/ace-app-bolts-ui/src/models/appService/ExternalApp.ts +272 -0
- package/ace-app-bolts-ui/src/models/appService/FailedEvent.ts +85 -0
- package/ace-app-bolts-ui/src/models/auditService/Audit.ts +160 -0
- package/ace-app-bolts-ui/src/models/bizFlow/CandidateNode.ts +43 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowCommentDto.ts +45 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowDefinitionDto.ts +80 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowInstanceDto.ts +84 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowProcessRequest.ts +80 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowVariableValueDto.ts +21 -0
- package/ace-app-bolts-ui/src/models/bizFlow/NodeInstanceDto.ts +56 -0
- package/ace-app-bolts-ui/src/models/bizFlow/NodeLinkDto.ts +29 -0
- package/ace-app-bolts-ui/src/models/bizFlow/ProjectedFlowDefinitionDto.ts +62 -0
- package/ace-app-bolts-ui/src/models/bizFlow/ReplyCommentCommand.ts +47 -0
- package/ace-app-bolts-ui/src/models/bizFlow/SearchFlowDefinitionDto.ts +29 -0
- package/ace-app-bolts-ui/src/models/bizFlow/TaskInstanceDto.ts +57 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/AbstractNode.ts +37 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/CancelCheckoutFlowDefinitionCommand.ts +18 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/CheckinFlowDefinitionCommand.ts +26 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/CheckoutFlowDefinitionCommand.ts +18 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/CreateFlowDefinitionCommand.ts +58 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/DeleteWorkflowDefinitionCommand.ts +18 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/EndNode.ts +24 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/Flow.ts +95 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/ForwardCriteria.ts +24 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/Link.ts +40 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/StartNode.ts +82 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/TaskNode.ts +180 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/UpdateFlowModelCommand.ts +28 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/Variable.ts +33 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/index.ts +24 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BaseParty.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyAll.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyByGroup.ts +23 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyByUserAttribute.ts +29 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyCustomFilter.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyDeptSpecifiedByVariable.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyEntityOfDeptSpecifiedByVariable.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyHasRole.ts +23 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyInDept.ts +23 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyInInitiatorDept.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyInInitiatorEntityDept.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyInitiator.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfElResult.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfPrevNode.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfPrevOwnerDept.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfPrevOwnerEntityDept.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfSpecificNode.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecific.ts +23 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecificNodeDept.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecificNodeEntityDept.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecifiedByGroupVariable.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecifiedByVariable.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/ConditionalParty.ts +29 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/MergeParty.ts +25 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/Party.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/index.ts +31 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/AbstractCompareRule.ts +28 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/AndOrRule.ts +28 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/BizRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/ExpressionRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/IsNullOrEmptyRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/NotRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/NumberCompareRule.ts +21 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/ReferencedRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/StringCompareRule.ts +21 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/index.ts +15 -0
- package/ace-app-bolts-ui/src/models/bizFlow/enums.ts +219 -0
- package/ace-app-bolts-ui/src/models/bizFlow/index.ts +21 -0
- package/ace-app-bolts-ui/src/models/domainModel/index.ts +4145 -0
- package/ace-app-bolts-ui/src/models/expr/ExpressionBuilder.ts +654 -0
- package/ace-app-bolts-ui/src/models/expr/Interfaces.ts +1081 -0
- package/ace-app-bolts-ui/src/models/expr/impls/agg.ts +192 -0
- package/ace-app-bolts-ui/src/models/expr/impls/any.ts +92 -0
- package/ace-app-bolts-ui/src/models/expr/impls/base.ts +24 -0
- package/ace-app-bolts-ui/src/models/expr/impls/bool.ts +321 -0
- package/ace-app-bolts-ui/src/models/expr/impls/collection.ts +14 -0
- package/ace-app-bolts-ui/src/models/expr/impls/constant.ts +85 -0
- package/ace-app-bolts-ui/src/models/expr/impls/dateTime.ts +59 -0
- package/ace-app-bolts-ui/src/models/expr/impls/nullfun.ts +170 -0
- package/ace-app-bolts-ui/src/models/expr/impls/num.ts +75 -0
- package/ace-app-bolts-ui/src/models/expr/impls/path.ts +317 -0
- package/ace-app-bolts-ui/src/models/expr/impls/strfun.ts +112 -0
- package/ace-app-bolts-ui/src/models/expr/impls/subQuery.ts +211 -0
- package/ace-app-bolts-ui/src/models/expr/impls/when.ts +125 -0
- package/ace-app-bolts-ui/src/models/expr/mixins.ts +1946 -0
- package/ace-app-bolts-ui/src/models/expr/querySpecification.ts +136 -0
- package/ace-app-bolts-ui/src/models/fileService/index.ts +1060 -0
- package/ace-app-bolts-ui/src/models/idGenService/LeafSegment.ts +48 -0
- package/ace-app-bolts-ui/src/models/idGenService/StringIdTemplate.ts +199 -0
- package/ace-app-bolts-ui/src/models/orgService/CustomGroup.ts +62 -0
- package/ace-app-bolts-ui/src/models/orgService/Department.ts +125 -0
- package/ace-app-bolts-ui/src/models/orgService/DepartmentAttributeDef.ts +121 -0
- package/ace-app-bolts-ui/src/models/orgService/Group.ts +244 -0
- package/ace-app-bolts-ui/src/models/orgService/Realm.ts +34 -0
- package/ace-app-bolts-ui/src/models/orgService/Role.ts +284 -0
- package/ace-app-bolts-ui/src/models/orgService/Session.ts +33 -0
- package/ace-app-bolts-ui/src/models/orgService/User.ts +650 -0
- package/ace-app-bolts-ui/src/models/orgService/UserAttributeDef.ts +53 -0
- package/ace-app-bolts-ui/src/models/orgService/dsl.ts +254 -0
- package/ace-app-bolts-ui/src/models/pushService/Messenger.ts +519 -0
- package/ace-app-bolts-ui/src/settings/cacheSetting.ts +20 -0
- package/ace-app-bolts-ui/src/settings/localeSetting.ts +133 -0
- package/ace-app-bolts-ui/src/stores/index.ts +19 -0
- package/ace-app-bolts-ui/src/stores/loginUserStore.ts +35 -0
- package/ace-app-bolts-ui/src/stores/useEnums.ts +45 -0
- package/ace-app-bolts-ui/src/utils/LRUCache.ts +52 -0
- package/ace-app-bolts-ui/src/utils/cache/index.ts +50 -0
- package/ace-app-bolts-ui/src/utils/cache/storageCache.ts +124 -0
- package/ace-app-bolts-ui/src/utils/cipher.ts +81 -0
- package/ace-app-bolts-ui/src/utils/common.ts +13 -0
- package/ace-app-bolts-ui/src/utils/treeSort.ts +0 -0
- package/ace-app-bolts-ui/src/vite-env.d.ts +2 -0
- package/ace-app-bolts-ui/tsconfig.json +22 -0
- package/ace-app-bolts-ui/tsconfig.tsbuildinfo +1 -0
- package/ace-app-manager-ui/.env +5 -0
- package/ace-app-manager-ui/.env.development +1 -0
- package/ace-app-manager-ui/.env.production +1 -0
- package/ace-app-manager-ui/.eslintrc.cjs +48 -0
- package/ace-app-manager-ui/README.md +18 -0
- package/ace-app-manager-ui/auto-imports.d.ts +11 -0
- package/ace-app-manager-ui/components.d.ts +118 -0
- package/ace-app-manager-ui/customVitePlugin.d.ts +6 -0
- package/ace-app-manager-ui/customVitePlugin.js +37 -0
- package/ace-app-manager-ui/customVitePlugin.ts +44 -0
- package/ace-app-manager-ui/index.html +12 -0
- package/ace-app-manager-ui/jsconfig.json +19 -0
- package/ace-app-manager-ui/package.json +66 -0
- package/ace-app-manager-ui/src/App.vue +32 -0
- package/ace-app-manager-ui/src/assets/baseData/AppManageMenu.ts +284 -0
- package/ace-app-manager-ui/src/assets/baseData/GlobalManageMenu.ts +75 -0
- package/ace-app-manager-ui/src/assets/logo.png +0 -0
- package/ace-app-manager-ui/src/assets/scss/element/element-var.scss +1117 -0
- package/ace-app-manager-ui/src/assets/scss/element/index.scss +72 -0
- package/ace-app-manager-ui/src/assets/scss/normalize.scss +524 -0
- package/ace-app-manager-ui/src/assets/scss/vars.scss +12 -0
- package/ace-app-manager-ui/src/components/appSelector/Index.vue +23 -0
- package/ace-app-manager-ui/src/components/departmentPicker/index.ts +3 -0
- package/ace-app-manager-ui/src/components/departmentPicker/src/SinglePicker.vue +102 -0
- package/ace-app-manager-ui/src/components/departmentSelector/index.ts +4 -0
- package/ace-app-manager-ui/src/components/departmentSelector/src/SingleSelector.vue +123 -0
- package/ace-app-manager-ui/src/components/departmentSelector/src/consts.ts +2 -0
- package/ace-app-manager-ui/src/components/enumPicker/EnumPicker.vue +57 -0
- package/ace-app-manager-ui/src/components/fieldControl/index.ts +2 -0
- package/ace-app-manager-ui/src/components/fieldControl/src/FieldControl.vue +130 -0
- package/ace-app-manager-ui/src/components/header/ManageHeader.vue +43 -0
- package/ace-app-manager-ui/src/components/icon/JaIcon.vue +50 -0
- package/ace-app-manager-ui/src/components/icon/svg/SvgIcon.vue +56 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/index.ts +7 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/IconColorPicker.vue +104 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/colorPicker/ColorPicker.vue +128 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/colorPicker/baseData/colors.ts +155 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/iconPicker/IconPicker.vue +221 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/iconPicker/baseData/icons.json +1364 -0
- package/ace-app-manager-ui/src/components/multipleSelector/MultipleSelector.vue +136 -0
- package/ace-app-manager-ui/src/components/pages/AppEnter.vue +358 -0
- package/ace-app-manager-ui/src/components/pages/PageEnter.vue +227 -0
- package/ace-app-manager-ui/src/components/pages/components/topBar.vue +93 -0
- package/ace-app-manager-ui/src/components/realmPicker/index.ts +3 -0
- package/ace-app-manager-ui/src/components/realmPicker/src/RealmPicker.vue +194 -0
- package/ace-app-manager-ui/src/components/realmPicker/src/components/RealmEditor.vue +149 -0
- package/ace-app-manager-ui/src/components/roleSelector/index.ts +3 -0
- package/ace-app-manager-ui/src/components/roleSelector/src/RoleMultiSelector.vue +194 -0
- package/ace-app-manager-ui/src/components/settingValueEditor/ValueEditor.vue +180 -0
- package/ace-app-manager-ui/src/components/subPage/index.ts +3 -0
- package/ace-app-manager-ui/src/components/subPage/src/SubPage.vue +90 -0
- package/ace-app-manager-ui/src/components/userGroupSelector/index.ts +3 -0
- package/ace-app-manager-ui/src/components/userGroupSelector/src/UserGroupMultiSelector.vue +131 -0
- package/ace-app-manager-ui/src/hooks/useAppState.ts +31 -0
- package/ace-app-manager-ui/src/hooks/useDateFormats.ts +34 -0
- package/ace-app-manager-ui/src/hooks/usePageSize.ts +1 -0
- package/ace-app-manager-ui/src/hooks/useRealms.ts +27 -0
- package/ace-app-manager-ui/src/hooks/useUserQuery.ts +133 -0
- package/ace-app-manager-ui/src/init.ts +18 -0
- package/ace-app-manager-ui/src/locales/lang/en/common.json +3 -0
- package/ace-app-manager-ui/src/locales/lang/en/errors.json +42 -0
- package/ace-app-manager-ui/src/locales/lang/en.ts +14 -0
- package/ace-app-manager-ui/src/locales/lang/zh-CN/common.json +218 -0
- package/ace-app-manager-ui/src/locales/lang/zh-CN/errors.json +42 -0
- package/ace-app-manager-ui/src/locales/lang/zh-CN.ts +13 -0
- package/ace-app-manager-ui/src/locales/setupI18n.ts +14 -0
- package/ace-app-manager-ui/src/main.ts +114 -0
- package/ace-app-manager-ui/src/public-path.js +10 -0
- package/ace-app-manager-ui/src/router/index.ts +33 -0
- package/ace-app-manager-ui/src/router/modules/appRoutes.ts +24 -0
- package/ace-app-manager-ui/src/router/modules/demoRoutes.ts +22 -0
- package/ace-app-manager-ui/src/router/routes.ts +690 -0
- package/ace-app-manager-ui/src/stores/index.ts +3 -0
- package/ace-app-manager-ui/src/stores/modules/locale.ts +60 -0
- package/ace-app-manager-ui/src/stores/modules/system.ts +51 -0
- package/ace-app-manager-ui/src/types/ext.d.ts +13 -0
- package/ace-app-manager-ui/src/types/style.d.ts +7 -0
- package/ace-app-manager-ui/src/types/window.d.ts +24 -0
- package/ace-app-manager-ui/src/utils/index.ts +7 -0
- package/ace-app-manager-ui/src/utils/vxeTable.ts +58 -0
- package/ace-app-manager-ui/src/vars.scss +12 -0
- package/ace-app-manager-ui/src/views/appManage/AppManage.vue +266 -0
- package/ace-app-manager-ui/src/views/appManage/appInfo/AppInfo.vue +309 -0
- package/ace-app-manager-ui/src/views/appManage/appRelease/AppRelease.vue +181 -0
- package/ace-app-manager-ui/src/views/appManage/appRelease/components/Editor.vue +253 -0
- package/ace-app-manager-ui/src/views/appManage/appRouter/AppRouter.vue +381 -0
- package/ace-app-manager-ui/src/views/appManage/appRouter/base/index.ts +204 -0
- package/ace-app-manager-ui/src/views/appManage/appRouter/components/Editor.vue +368 -0
- package/ace-app-manager-ui/src/views/appManage/appRouter/components/MenuSelector.vue +12 -0
- package/ace-app-manager-ui/src/views/appManage/assignAppAdmin/AssignAppAdmin.vue +231 -0
- package/ace-app-manager-ui/src/views/appManage/assignAppAdmin/components/Editor.vue +135 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/Index.vue +53 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/CommandEditor.vue +209 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/CommandParamEditor.vue +246 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/ConstraintsEditor.vue +239 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/CreateEntityOperationsEditor.vue +90 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/LeftPanel.vue +282 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/RightPanel.vue +249 -0
- package/ace-app-manager-ui/src/views/appManage/components/AppManageLayout.vue +94 -0
- package/ace-app-manager-ui/src/views/appManage/components/GlobalUserGroupSingleSelector.vue +124 -0
- package/ace-app-manager-ui/src/views/appManage/components/SelectRealmForApp.vue +59 -0
- package/ace-app-manager-ui/src/views/appManage/components/ServiceSelector.vue +34 -0
- package/ace-app-manager-ui/src/views/appManage/components/SubMenu.vue +32 -0
- package/ace-app-manager-ui/src/views/appManage/components/UserGroupAuthSFC.vue +453 -0
- package/ace-app-manager-ui/src/views/appManage/components/UserGroupSingleSelector.vue +115 -0
- package/ace-app-manager-ui/src/views/appManage/configDefine/ConfigDefine.vue +392 -0
- package/ace-app-manager-ui/src/views/appManage/configDefine/GroupEditor.vue +133 -0
- package/ace-app-manager-ui/src/views/appManage/configDefine/SettingEditor.vue +231 -0
- package/ace-app-manager-ui/src/views/appManage/dataSourceDefine/DataSourceDefine.vue +198 -0
- package/ace-app-manager-ui/src/views/appManage/dataSourceDefine/createNewDidalog.vue +177 -0
- package/ace-app-manager-ui/src/views/appManage/dataSourceDefine/editDialog.vue +137 -0
- package/ace-app-manager-ui/src/views/appManage/digitalSequence/DigitalSequence.vue +163 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/AppendEntityPropToDtoDlg.vue +351 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/CreateDtoPropFromEntityPropEditor.vue +516 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/CreateFromEntityEditor.vue +217 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/DtoDefine.vue +77 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/DtoEditor.vue +144 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/LeftPanel.vue +283 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/PropertyEditor.vue +586 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/RightPanel.vue +574 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/uilts.ts +108 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/types.ts +42 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/EntityDefine.vue +80 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/AggregateEditor.vue +93 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/EntityEditor.vue +281 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/ImportEditor.vue +329 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/IndexDefinitionEditor.vue +424 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/LeftPanel.vue +343 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/MonacoEditor.vue +1659 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/PropertyEditor.vue +956 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/RightPanel.vue +660 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/monacoEditorType.ts +74 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/uilts.ts +108 -0
- package/ace-app-manager-ui/src/views/appManage/enumDefine/EnumDefine.vue +169 -0
- package/ace-app-manager-ui/src/views/appManage/enumDefine/editDialog.vue +266 -0
- package/ace-app-manager-ui/src/views/appManage/extendedDepartmentAttr/ExtendedDepartmentAttr.vue +272 -0
- package/ace-app-manager-ui/src/views/appManage/extendedDepartmentAttr/components/Editor.vue +267 -0
- package/ace-app-manager-ui/src/views/appManage/extendedUserAttr/ExtendedUserAttr.vue +270 -0
- package/ace-app-manager-ui/src/views/appManage/extendedUserAttr/components/Editor.vue +291 -0
- package/ace-app-manager-ui/src/views/appManage/globalUserGroupAuth/GlobalUserGroupAuth.vue +18 -0
- package/ace-app-manager-ui/src/views/appManage/i18nDefine/BundleEditor.vue +77 -0
- package/ace-app-manager-ui/src/views/appManage/i18nDefine/Editor.vue +78 -0
- package/ace-app-manager-ui/src/views/appManage/i18nDefine/I18nDefine.vue +173 -0
- package/ace-app-manager-ui/src/views/appManage/messageTemplate/Editor.vue +191 -0
- package/ace-app-manager-ui/src/views/appManage/messageTemplate/MessageTemplate.vue +142 -0
- package/ace-app-manager-ui/src/views/appManage/numberTemplate/NumberTemplate.vue +166 -0
- package/ace-app-manager-ui/src/views/appManage/numberTemplate/components/Editor.vue +373 -0
- package/ace-app-manager-ui/src/views/appManage/processDefinition/Editor.vue +168 -0
- package/ace-app-manager-ui/src/views/appManage/processDefinition/ProcessDefinition.vue +362 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/Index.vue +52 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/ConstraintsEditor.vue +239 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/JpqlEditor.vue +229 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/LeftPanel.vue +282 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/QueryEditor.vue +294 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/QueryParamEditor.vue +253 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/RightPanel.vue +247 -0
- package/ace-app-manager-ui/src/views/appManage/registerMessenger/Editor.vue +108 -0
- package/ace-app-manager-ui/src/views/appManage/registerMessenger/RegisterMessenger.vue +127 -0
- package/ace-app-manager-ui/src/views/appManage/registerPassageway/Editor.vue +117 -0
- package/ace-app-manager-ui/src/views/appManage/registerPassageway/RegisterPassageway.vue +150 -0
- package/ace-app-manager-ui/src/views/appManage/registerUpload/RegisterUpload.vue +267 -0
- package/ace-app-manager-ui/src/views/appManage/registerUpload/components/Editor.vue +425 -0
- package/ace-app-manager-ui/src/views/appManage/registerUpload/components/QuotaEditor.vue +202 -0
- package/ace-app-manager-ui/src/views/appManage/registerUpload/components/WebHookEditor.vue +174 -0
- package/ace-app-manager-ui/src/views/appManage/reverseAuth/ReverseAuth.vue +620 -0
- package/ace-app-manager-ui/src/views/appManage/reverseAuth/components/AddRoleUserDialog.vue +59 -0
- package/ace-app-manager-ui/src/views/appManage/reverseAuth/types.d.ts +7 -0
- package/ace-app-manager-ui/src/views/appManage/roleDefine/RoleDefine.vue +272 -0
- package/ace-app-manager-ui/src/views/appManage/roleDefine/components/CompositeRole.vue +195 -0
- package/ace-app-manager-ui/src/views/appManage/roleDefine/components/RoleEditor.vue +161 -0
- package/ace-app-manager-ui/src/views/appManage/roleDefine/components/RoleSelector.vue +135 -0
- package/ace-app-manager-ui/src/views/appManage/serviceManage/AppServiceManage.vue +204 -0
- package/ace-app-manager-ui/src/views/appManage/serviceManage/components/Editor.vue +153 -0
- package/ace-app-manager-ui/src/views/appManage/thirdPartyAppAuth/ThirdPartyAppAuth.vue +178 -0
- package/ace-app-manager-ui/src/views/appManage/types.ts +1 -0
- package/ace-app-manager-ui/src/views/appManage/userAuth/UserAuth.vue +668 -0
- package/ace-app-manager-ui/src/views/appManage/userGroupAuth/UserGroupAuth.vue +18 -0
- package/ace-app-manager-ui/src/views/appManage/userGroupManage/UserGroupManage.vue +326 -0
- package/ace-app-manager-ui/src/views/appManage/userGroupManage/components/Editor.vue +217 -0
- package/ace-app-manager-ui/src/views/appManage/userGroupManage/components/MemberUsers.vue +101 -0
- package/ace-app-manager-ui/src/views/demo/enumPicker/Index.vue +94 -0
- package/ace-app-manager-ui/src/views/demo/enumPicker/components/enumPicker/index.ts +1 -0
- package/ace-app-manager-ui/src/views/demo/enumPicker/components/enumPicker/src/EnumPicker.vue +103 -0
- package/ace-app-manager-ui/src/views/globalManage/GlobalManage.vue +150 -0
- package/ace-app-manager-ui/src/views/globalManage/aboutPlatform/AboutPlatform.vue +7 -0
- package/ace-app-manager-ui/src/views/globalManage/auditLogsManage/AuditLogDetail.vue +127 -0
- package/ace-app-manager-ui/src/views/globalManage/auditLogsManage/AuditLogsManage.vue +387 -0
- package/ace-app-manager-ui/src/views/globalManage/components/ExtendedAttrRender.vue +311 -0
- package/ace-app-manager-ui/src/views/globalManage/departmentManage/DepartmentManage.vue +336 -0
- package/ace-app-manager-ui/src/views/globalManage/departmentManage/RecycleBin.vue +127 -0
- package/ace-app-manager-ui/src/views/globalManage/departmentManage/components/DefaultGroupEditor.vue +191 -0
- package/ace-app-manager-ui/src/views/globalManage/departmentManage/components/Editor.vue +164 -0
- package/ace-app-manager-ui/src/views/globalManage/eventCompensate/Index.vue +189 -0
- package/ace-app-manager-ui/src/views/globalManage/externalAppManage/ExternalAppManage.vue +305 -0
- package/ace-app-manager-ui/src/views/globalManage/externalAppManage/components/Editor.vue +227 -0
- package/ace-app-manager-ui/src/views/globalManage/externalAppManage/components/RenewSecret.vue +91 -0
- package/ace-app-manager-ui/src/views/globalManage/globalSetting/Editor.vue +177 -0
- package/ace-app-manager-ui/src/views/globalManage/globalSetting/GlobalSettingManage.vue +201 -0
- package/ace-app-manager-ui/src/views/globalManage/globalSetting/types.ts +14 -0
- package/ace-app-manager-ui/src/views/globalManage/passwordManage/PasswordManage.vue +224 -0
- package/ace-app-manager-ui/src/views/globalManage/passwordManage/ValueEditor.vue +92 -0
- package/ace-app-manager-ui/src/views/globalManage/sessionManage/SessionManage.vue +251 -0
- package/ace-app-manager-ui/src/views/globalManage/userGroupManage/UserGroupManage.vue +332 -0
- package/ace-app-manager-ui/src/views/globalManage/userGroupManage/components/Editor.vue +160 -0
- package/ace-app-manager-ui/src/views/globalManage/userGroupManage/components/MemberUsers.vue +100 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/RecycleBin.vue +344 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/UserManage.vue +631 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/AttributeEditor.vue +191 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/ClassifiedLevelEditor.vue +79 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/DepartmentEditor.vue +70 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/Editor.vue +475 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/ExpirationEditor.vue +82 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/MaxSessionEditor.vue +76 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/PasswordEditor.vue +107 -0
- package/ace-app-manager-ui/src/views/home/Index.vue +457 -0
- package/ace-app-manager-ui/src/views/home/components/AppEditor.vue +208 -0
- package/ace-app-manager-ui/src/views/home/components/AppManage.vue +252 -0
- package/ace-app-manager-ui/src/views/home/components/FileRepositoryEditor.vue +292 -0
- package/ace-app-manager-ui/src/views/home/components/FileRepositoryManage.vue +246 -0
- package/ace-app-manager-ui/src/vite-env.d.ts +4 -0
- package/ace-app-manager-ui/tsconfig.json +41 -0
- package/ace-app-manager-ui/tsconfig.node.json +15 -0
- package/ace-app-manager-ui/tsconfig.node.tsbuildinfo +1 -0
- package/ace-app-manager-ui/vite.config.d.ts +2 -0
- package/ace-app-manager-ui/vite.config.js +112 -0
- package/ace-app-manager-ui/vite.config.ts +116 -0
- package/ace-app-manager-ui/vue-image-crop-upload.d.ts +1 -0
- package/ace-cloud-shell-ui/.env +2 -0
- package/ace-cloud-shell-ui/.env.development +5 -0
- package/ace-cloud-shell-ui/.env.production +1 -0
- package/ace-cloud-shell-ui/.eslintrc.js +33 -0
- package/ace-cloud-shell-ui/.vscode/extensions.json +6 -0
- package/ace-cloud-shell-ui/.vscode/settings.json +27 -0
- package/ace-cloud-shell-ui/auto-imports.d.ts +9 -0
- package/ace-cloud-shell-ui/components.d.ts +58 -0
- package/ace-cloud-shell-ui/doc/issue.md +6 -0
- package/ace-cloud-shell-ui/index.html +19 -0
- package/ace-cloud-shell-ui/package.json +72 -0
- package/ace-cloud-shell-ui/public/res/build/shell/favicon.ico +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/.keep +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/index.html +156 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.css +2583 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.eot +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.glyph.json +1 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.less +2585 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.module.less +2567 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.scss +5103 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.styl +2554 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.svg +7633 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.symbol.svg +11 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.ttf +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.woff +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.woff2 +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/symbol.html +17913 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/tags.json +1364 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/unicode.html +175 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/hidden-right-sidebar.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/icon/deliver.svg +1 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/icon/logout.svg +28 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/jari-logo-2.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/jari-logo.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/public-code.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/show-right-sidebar.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/svg/shezhi.svg +11 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/svg/tuichu.svg +13 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/svg/xiaoxi.svg +13 -0
- package/ace-cloud-shell-ui/src/App.vue +24 -0
- package/ace-cloud-shell-ui/src/assets/base.css +80 -0
- package/ace-cloud-shell-ui/src/assets/element/index.scss +13 -0
- package/ace-cloud-shell-ui/src/assets/element/var.scss +1123 -0
- package/ace-cloud-shell-ui/src/assets/logo.svg +7 -0
- package/ace-cloud-shell-ui/src/assets/main.scss +128 -0
- package/ace-cloud-shell-ui/src/env.d.ts +14 -0
- package/ace-cloud-shell-ui/src/hooks/useSockJs.ts +146 -0
- package/ace-cloud-shell-ui/src/init.ts +21 -0
- package/ace-cloud-shell-ui/src/layout/Main.vue +160 -0
- package/ace-cloud-shell-ui/src/layout/components/AppMenu.vue +329 -0
- package/ace-cloud-shell-ui/src/layout/components/Fillet.vue +105 -0
- package/ace-cloud-shell-ui/src/layout/components/Sidebar.vue +194 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/common.json +17 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/errors.json +42 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/layout.json +8 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/updatePsw.json +9 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/userProfile.json +3 -0
- package/ace-cloud-shell-ui/src/locales/lang/en.ts +14 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/common.json +17 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/errors.json +42 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/layout.json +8 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/updatePsw.json +9 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/userProfile.json +3 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN.ts +14 -0
- package/ace-cloud-shell-ui/src/locales/setupI18n.ts +14 -0
- package/ace-cloud-shell-ui/src/main.ts +130 -0
- package/ace-cloud-shell-ui/src/router/index.ts +107 -0
- package/ace-cloud-shell-ui/src/shims-vue.d.ts +21 -0
- package/ace-cloud-shell-ui/src/stores/modules/accessibleApps.ts +149 -0
- package/ace-cloud-shell-ui/src/stores/modules/app.ts +147 -0
- package/ace-cloud-shell-ui/src/stores/modules/appContext.ts +53 -0
- package/ace-cloud-shell-ui/src/stores/modules/locale.ts +63 -0
- package/ace-cloud-shell-ui/src/stores/modules/oidc.ts +71 -0
- package/ace-cloud-shell-ui/src/stores/modules/system.ts +32 -0
- package/ace-cloud-shell-ui/src/types/ext.d.ts +35 -0
- package/ace-cloud-shell-ui/src/types/router.d.ts +12 -0
- package/ace-cloud-shell-ui/src/types/window.d.ts +15 -0
- package/ace-cloud-shell-ui/src/utils/axios/AceAxios.ts +657 -0
- package/ace-cloud-shell-ui/src/utils/axios/cache.ts +11 -0
- package/ace-cloud-shell-ui/src/utils/axios/index.ts +37 -0
- package/ace-cloud-shell-ui/src/utils/microApp/index.ts +6 -0
- package/ace-cloud-shell-ui/src/views/AboutView.vue +140 -0
- package/ace-cloud-shell-ui/src/views/DlgUpdatePassword.vue +120 -0
- package/ace-cloud-shell-ui/src/views/ExtendedAttrRender.vue +311 -0
- package/ace-cloud-shell-ui/src/views/MicroApp.vue +234 -0
- package/ace-cloud-shell-ui/src/views/UserProfileEditor.vue +303 -0
- package/ace-cloud-shell-ui/src/views/WorkBench.vue +10 -0
- package/ace-cloud-shell-ui/src/views/errors/HttpState404.vue +136 -0
- package/ace-cloud-shell-ui/src/views/errors/NoAppAvailable.vue +16 -0
- package/ace-cloud-shell-ui/src/vite-env.d.ts +3 -0
- package/ace-cloud-shell-ui/tsconfig.app.json +33 -0
- package/ace-cloud-shell-ui/tsconfig.app.tsbuildinfo +1 -0
- package/ace-cloud-shell-ui/tsconfig.config.json +23 -0
- package/ace-cloud-shell-ui/tsconfig.config.tsbuildinfo +1 -0
- package/ace-cloud-shell-ui/tsconfig.json +11 -0
- package/ace-cloud-shell-ui/vbuild/vite/proxy.ts +46 -0
- package/ace-cloud-shell-ui/vite.config.ts +119 -0
- package/ace-cloud-shell-ui/vue-image-crop-upload.d.ts +1 -0
- package/ace-element-plus-component/.babelrc +8 -0
- package/ace-element-plus-component/.env +1 -0
- package/ace-element-plus-component/.env.development +3 -0
- package/ace-element-plus-component/.env.production +1 -0
- package/ace-element-plus-component/.vscode/extensions.json +3 -0
- package/ace-element-plus-component/CHANGE.md +16 -0
- package/ace-element-plus-component/README.md +1 -0
- package/ace-element-plus-component/index.html +14 -0
- package/ace-element-plus-component/index.ts +20 -0
- package/ace-element-plus-component/package.json +72 -0
- package/ace-element-plus-component/packages/components/autoComplete/JaAutoComplete.vue +57 -0
- package/ace-element-plus-component/packages/components/autoComplete/README.md +35 -0
- package/ace-element-plus-component/packages/components/autoComplete/index.ts +5 -0
- package/ace-element-plus-component/packages/components/avatar/JaAvatar.vue +137 -0
- package/ace-element-plus-component/packages/components/avatar/README.md +45 -0
- package/ace-element-plus-component/packages/components/avatar/avatarToken.ts +11 -0
- package/ace-element-plus-component/packages/components/avatar/defaultImg.ts +14 -0
- package/ace-element-plus-component/packages/components/avatar/index.ts +7 -0
- package/ace-element-plus-component/packages/components/button/JaButton.vue +76 -0
- package/ace-element-plus-component/packages/components/button/README.md +57 -0
- package/ace-element-plus-component/packages/components/button/index.ts +4 -0
- package/ace-element-plus-component/packages/components/channelPicker/index.ts +7 -0
- package/ace-element-plus-component/packages/components/channelPicker/src/ChannelPicker.vue +43 -0
- package/ace-element-plus-component/packages/components/channelPicker/src/JaChannelPicker.vue +42 -0
- package/ace-element-plus-component/packages/components/checkbox/JaCheckbox.vue +63 -0
- package/ace-element-plus-component/packages/components/checkbox/README.md +21 -0
- package/ace-element-plus-component/packages/components/checkbox/index.ts +4 -0
- package/ace-element-plus-component/packages/components/checkboxGroup/JaCheckboxGroup.vue +56 -0
- package/ace-element-plus-component/packages/components/checkboxGroup/README.md +24 -0
- package/ace-element-plus-component/packages/components/checkboxGroup/index.ts +4 -0
- package/ace-element-plus-component/packages/components/customGroupTree/index.ts +10 -0
- package/ace-element-plus-component/packages/components/customGroupTree/src/customGroupTree.vue +91 -0
- package/ace-element-plus-component/packages/components/datePicker/JaDatePicker.vue +65 -0
- package/ace-element-plus-component/packages/components/datePicker/README.md +21 -0
- package/ace-element-plus-component/packages/components/datePicker/index.ts +4 -0
- package/ace-element-plus-component/packages/components/departmentPicker/index.ts +4 -0
- package/ace-element-plus-component/packages/components/departmentPicker/src/DepartmentPicker.vue +107 -0
- package/ace-element-plus-component/packages/components/departmentPicker/src/consts.ts +2 -0
- package/ace-element-plus-component/packages/components/departmentTree/index.ts +10 -0
- package/ace-element-plus-component/packages/components/departmentTree/src/departmentTree.vue +135 -0
- package/ace-element-plus-component/packages/components/dropdownButton/JaDropdownButton.vue +77 -0
- package/ace-element-plus-component/packages/components/dropdownButton/README.md +30 -0
- package/ace-element-plus-component/packages/components/dropdownButton/index.ts +4 -0
- package/ace-element-plus-component/packages/components/enumList/EnumListInput.vue +107 -0
- package/ace-element-plus-component/packages/components/enumList/JaEnumList.vue +39 -0
- package/ace-element-plus-component/packages/components/enumList/index.ts +7 -0
- package/ace-element-plus-component/packages/components/enumPicker/index.ts +5 -0
- package/ace-element-plus-component/packages/components/enumPicker/src/EnumPicker.vue +103 -0
- package/ace-element-plus-component/packages/components/flowShell/FlowFormShell.vue +628 -0
- package/ace-element-plus-component/packages/components/flowShell/index.ts +5 -0
- package/ace-element-plus-component/packages/components/form/JaForm.vue +186 -0
- package/ace-element-plus-component/packages/components/form/README.md +30 -0
- package/ace-element-plus-component/packages/components/form/index.ts +5 -0
- package/ace-element-plus-component/packages/components/form/types.ts +4 -0
- package/ace-element-plus-component/packages/components/formItem/JaFormItem.vue +123 -0
- package/ace-element-plus-component/packages/components/formItem/README.md +28 -0
- package/ace-element-plus-component/packages/components/formItem/index.ts +4 -0
- package/ace-element-plus-component/packages/components/index.ts +35 -0
- package/ace-element-plus-component/packages/components/input/JaInput.vue +107 -0
- package/ace-element-plus-component/packages/components/input/README.md +23 -0
- package/ace-element-plus-component/packages/components/input/index.ts +4 -0
- package/ace-element-plus-component/packages/components/inputI18n/I18nBundleEditor.vue +76 -0
- package/ace-element-plus-component/packages/components/inputI18n/InputI18n.vue +152 -0
- package/ace-element-plus-component/packages/components/inputI18n/JaInputI18n.vue +50 -0
- package/ace-element-plus-component/packages/components/inputI18n/index.ts +8 -0
- package/ace-element-plus-component/packages/components/inputNumber/JaInputNumber.vue +79 -0
- package/ace-element-plus-component/packages/components/inputNumber/README.md +21 -0
- package/ace-element-plus-component/packages/components/inputNumber/index.ts +4 -0
- package/ace-element-plus-component/packages/components/mapItemList/JaMapItemList.vue +35 -0
- package/ace-element-plus-component/packages/components/mapItemList/MapItemListInput.vue +191 -0
- package/ace-element-plus-component/packages/components/mapItemList/index.ts +7 -0
- package/ace-element-plus-component/packages/components/numberList/JaNumberList.vue +36 -0
- package/ace-element-plus-component/packages/components/numberList/NumberListInput.vue +111 -0
- package/ace-element-plus-component/packages/components/numberList/index.ts +7 -0
- package/ace-element-plus-component/packages/components/properyPicker/JaPropertyPicker.vue +38 -0
- package/ace-element-plus-component/packages/components/properyPicker/PropertyPicker.vue +310 -0
- package/ace-element-plus-component/packages/components/properyPicker/index.ts +7 -0
- package/ace-element-plus-component/packages/components/radioGroup/JaRadioGroup.vue +61 -0
- package/ace-element-plus-component/packages/components/radioGroup/README.md +24 -0
- package/ace-element-plus-component/packages/components/radioGroup/index.ts +4 -0
- package/ace-element-plus-component/packages/components/rolePicker/RoleCategorySelector.vue +154 -0
- package/ace-element-plus-component/packages/components/rolePicker/RoleEditor.vue +138 -0
- package/ace-element-plus-component/packages/components/rolePicker/RolePicker.vue +44 -0
- package/ace-element-plus-component/packages/components/rolePicker/RolePickerRaw.vue +56 -0
- package/ace-element-plus-component/packages/components/rolePicker/baseRolePicker.vue +84 -0
- package/ace-element-plus-component/packages/components/rolePicker/index.ts +13 -0
- package/ace-element-plus-component/packages/components/scrollbar/README.md +23 -0
- package/ace-element-plus-component/packages/components/scrollbar/Scrollbar.vue +100 -0
- package/ace-element-plus-component/packages/components/scrollbar/index.ts +5 -0
- package/ace-element-plus-component/packages/components/scrollbar/utils.ts +17 -0
- package/ace-element-plus-component/packages/components/select/JaSelect.vue +60 -0
- package/ace-element-plus-component/packages/components/select/README.md +24 -0
- package/ace-element-plus-component/packages/components/select/index.ts +4 -0
- package/ace-element-plus-component/packages/components/stringList/JaStringList.vue +36 -0
- package/ace-element-plus-component/packages/components/stringList/StringListInput.vue +96 -0
- package/ace-element-plus-component/packages/components/stringList/index.ts +7 -0
- package/ace-element-plus-component/packages/components/switch/JaSwitch.vue +61 -0
- package/ace-element-plus-component/packages/components/switch/README.md +21 -0
- package/ace-element-plus-component/packages/components/switch/index.ts +4 -0
- package/ace-element-plus-component/packages/components/timePicker/JaTimePicker.vue +65 -0
- package/ace-element-plus-component/packages/components/timePicker/README.md +21 -0
- package/ace-element-plus-component/packages/components/timePicker/index.ts +5 -0
- package/ace-element-plus-component/packages/components/tip/README.md +20 -0
- package/ace-element-plus-component/packages/components/tip/index.ts +4 -0
- package/ace-element-plus-component/packages/components/tip/src/AceTip.vue +51 -0
- package/ace-element-plus-component/packages/components/upload/FilePreviewer.vue +245 -0
- package/ace-element-plus-component/packages/components/upload/JaUploader.vue +72 -0
- package/ace-element-plus-component/packages/components/upload/README.md +24 -0
- package/ace-element-plus-component/packages/components/upload/index.ts +8 -0
- package/ace-element-plus-component/packages/components/upload/pdf-viewer/PdfViewerModal.vue +32 -0
- package/ace-element-plus-component/packages/components/upload/types.ts +4 -0
- package/ace-element-plus-component/packages/components/upload/uploader-locale-zh-cn.ts +223 -0
- package/ace-element-plus-component/packages/components/upload/uploader.vue +876 -0
- package/ace-element-plus-component/packages/components/userGroupPicker/index.ts +4 -0
- package/ace-element-plus-component/packages/components/userGroupPicker/src/UserGroupPicker.vue +94 -0
- package/ace-element-plus-component/packages/components/userGroupTree/index.ts +10 -0
- package/ace-element-plus-component/packages/components/userGroupTree/src/userGroupTree.vue +193 -0
- package/ace-element-plus-component/packages/components/userPicker/index.ts +10 -0
- package/ace-element-plus-component/packages/components/userPicker/src/CustomGroupManager.vue +189 -0
- package/ace-element-plus-component/packages/components/userPicker/src/JaUserList.vue +328 -0
- package/ace-element-plus-component/packages/components/userPicker/src/JaUserPicker.vue +40 -0
- package/ace-element-plus-component/packages/components/userPicker/src/UserPicker.vue +515 -0
- package/ace-element-plus-component/packages/components/userSelectDialog/index.ts +6 -0
- package/ace-element-plus-component/packages/components/userSelectDialog/src/userSelectDialog.vue +499 -0
- package/ace-element-plus-component/packages/components/userTag/UserInfoTag.vue +419 -0
- package/ace-element-plus-component/packages/components/userTag/index.ts +6 -0
- package/ace-element-plus-component/packages/components/userTag/sharedAxios.ts +8 -0
- package/ace-element-plus-component/packages/directives/auth/index.ts +41 -0
- package/ace-element-plus-component/packages/directives/autofocus/index.ts +29 -0
- package/ace-element-plus-component/packages/directives/index.ts +10 -0
- package/ace-element-plus-component/packages/directives/shortcut/index.ts +192 -0
- package/ace-element-plus-component/packages/hooks/useAppInstances.ts +130 -0
- package/ace-element-plus-component/packages/hooks/useBackendValidations.ts +81 -0
- package/ace-element-plus-component/packages/hooks/useBridage.ts +157 -0
- package/ace-element-plus-component/packages/hooks/useClassificationLevels.ts +86 -0
- package/ace-element-plus-component/packages/hooks/useConstraintProviders.ts +36 -0
- package/ace-element-plus-component/packages/hooks/useDateTimeShortCuts.ts +65 -0
- package/ace-element-plus-component/packages/hooks/useEntities.ts +44 -0
- package/ace-element-plus-component/packages/hooks/useEntityPropDataTypes.ts +37 -0
- package/ace-element-plus-component/packages/hooks/useFileConfigurations.ts +41 -0
- package/ace-element-plus-component/packages/hooks/useGroups.ts +81 -0
- package/ace-element-plus-component/packages/hooks/useNumberTemplates.ts +43 -0
- package/ace-element-plus-component/packages/hooks/useProperties.ts +44 -0
- package/ace-element-plus-component/packages/hooks/useRealms.ts +28 -0
- package/ace-element-plus-component/packages/hooks/useRoleCategories.ts +42 -0
- package/ace-element-plus-component/packages/hooks/useRoles.ts +44 -0
- package/ace-element-plus-component/packages/hooks/useRouteableVisible.ts +35 -0
- package/ace-element-plus-component/packages/hooks/useTreeData.ts +45 -0
- package/ace-element-plus-component/packages/hooks/useUserRefQuery.ts +232 -0
- package/ace-element-plus-component/packages/index.ts +34 -0
- package/ace-element-plus-component/packages/list.json +8 -0
- package/ace-element-plus-component/packages/types/custom.d.ts +13 -0
- package/ace-element-plus-component/packages/types/window.d.ts +16 -0
- package/ace-element-plus-component/packages/utils/formUtils.ts +57 -0
- package/ace-element-plus-component/packages/utils/install.ts +43 -0
- package/ace-element-plus-component/packages/utils/objectUtils.ts +31 -0
- package/ace-element-plus-component/public/vite.svg +1 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.js +1 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.json +5196 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.ttf +0 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.woff +0 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.woff2 +0 -0
- package/ace-element-plus-component/theme-style/index.scss +11 -0
- package/ace-element-plus-component/theme-style/styles/element-plus-var.scss +1419 -0
- package/ace-element-plus-component/theme-style/styles/iconfont.css +2979 -0
- package/ace-element-plus-component/theme-style/styles/reset.scss +0 -0
- package/ace-element-plus-component/theme-style/styles/theme-var.scss +72 -0
- package/ace-element-plus-component/theme-style/styles/transition.scss +122 -0
- package/ace-element-plus-component/tsconfig.json +42 -0
- package/ace-element-plus-component/tsconfig.node.json +9 -0
- package/ace-element-plus-component/tsconfig.node.tsbuildinfo +1 -0
- package/ace-element-plus-component/vite.config.d.ts +2 -0
- package/ace-element-plus-component/vite.config.js +55 -0
- package/ace-element-plus-component/vite.config.ts +59 -0
- package/ace-install-system-ui/.env +2 -0
- package/ace-install-system-ui/.env.development +5 -0
- package/ace-install-system-ui/.env.production +1 -0
- package/ace-install-system-ui/.eslintrc.cjs +18 -0
- package/ace-install-system-ui/CHANGE.md +1 -0
- package/ace-install-system-ui/README.md +18 -0
- package/ace-install-system-ui/index.html +13 -0
- package/ace-install-system-ui/lib.zip +0 -0
- package/ace-install-system-ui/package.json +45 -0
- package/ace-install-system-ui/public/images/desktopAppInstall/not-data.svg +1 -0
- package/ace-install-system-ui/public/images/login/Line.png +0 -0
- package/ace-install-system-ui/public/images/login/Path.png +0 -0
- package/ace-install-system-ui/public/images/login/Vector.png +0 -0
- package/ace-install-system-ui/public/images/login/down_line.png +0 -0
- package/ace-install-system-ui/public/images/login/exclamation.png +0 -0
- package/ace-install-system-ui/public/images/login/login_bg_img.png +0 -0
- package/ace-install-system-ui/public/images/title_01.png +0 -0
- package/ace-install-system-ui/public/images/title_02.png +0 -0
- package/ace-install-system-ui/public/images/title_03.png +0 -0
- package/ace-install-system-ui/public/images/title_04.png +0 -0
- package/ace-install-system-ui/public/images/uploader/upload-empty.svg +1 -0
- package/ace-install-system-ui/public/images/uploader/upload-files.svg +1710 -0
- package/ace-install-system-ui/public/logo.svg +1 -0
- package/ace-install-system-ui/public/vite.svg +1 -0
- package/ace-install-system-ui/src/App.vue +7 -0
- package/ace-install-system-ui/src/api/apiCache.ts +25 -0
- package/ace-install-system-ui/src/api/cache.ts +9 -0
- package/ace-install-system-ui/src/api/desktopAppApi.ts +149 -0
- package/ace-install-system-ui/src/api/desktopMachineApi.ts +75 -0
- package/ace-install-system-ui/src/api/loginApi.ts +46 -0
- package/ace-install-system-ui/src/api/taskReportApi.ts +46 -0
- package/ace-install-system-ui/src/assets/vue.svg +1 -0
- package/ace-install-system-ui/src/components/AppsManage/AddApp.vue +283 -0
- package/ace-install-system-ui/src/components/AppsManage/AppForm.vue +321 -0
- package/ace-install-system-ui/src/components/AppsManage/AppManageDrawer.vue +164 -0
- package/ace-install-system-ui/src/components/AppsManage/AppSelector.vue +93 -0
- package/ace-install-system-ui/src/components/AppsManage/AppsManage.vue +441 -0
- package/ace-install-system-ui/src/components/AppsManage/EditAppMetaData.vue +203 -0
- package/ace-install-system-ui/src/components/AppsManage/EnvForm.vue +180 -0
- package/ace-install-system-ui/src/components/AppsManage/IniForm.vue +294 -0
- package/ace-install-system-ui/src/components/AppsManage/UpdateAppForm.vue +218 -0
- package/ace-install-system-ui/src/components/CustomDialog.vue +170 -0
- package/ace-install-system-ui/src/components/HostMachineManage/AddHostMachine.vue +173 -0
- package/ace-install-system-ui/src/components/HostMachineManage/HostMachineManage.vue +509 -0
- package/ace-install-system-ui/src/components/HostMachineManage/HostMachineManageDrawer.vue +143 -0
- package/ace-install-system-ui/src/components/HostMachineManage/MachineSelector.vue +119 -0
- package/ace-install-system-ui/src/components/InstallModuleHeader.vue +36 -0
- package/ace-install-system-ui/src/components/Log/ViewAllLog.vue +175 -0
- package/ace-install-system-ui/src/components/Log/ViewLog.vue +80 -0
- package/ace-install-system-ui/src/components/TaskList/AppInstallTask.vue +33 -0
- package/ace-install-system-ui/src/components/TaskList/AppInstallTaskGroup.vue +152 -0
- package/ace-install-system-ui/src/components/TaskList/AppScanTask.vue +80 -0
- package/ace-install-system-ui/src/components/TaskList/AppUninstallTask.vue +33 -0
- package/ace-install-system-ui/src/components/TaskList/AppUninstallTaskGroup.vue +152 -0
- package/ace-install-system-ui/src/components/TaskList/TaskList.vue +314 -0
- package/ace-install-system-ui/src/components/TaskList/TaskListDrawer.vue +127 -0
- package/ace-install-system-ui/src/components/Uploader/GlobalUploader.vue +297 -0
- package/ace-install-system-ui/src/components/Uploader/Uploader.vue +346 -0
- package/ace-install-system-ui/src/components/WebTerminal/MachineTerminals.vue +187 -0
- package/ace-install-system-ui/src/components/WebTerminal/WebTerminal.vue +136 -0
- package/ace-install-system-ui/src/components/WebTerminal/WebTerminalDialog.vue +80 -0
- package/ace-install-system-ui/src/env.d.ts +15 -0
- package/ace-install-system-ui/src/init.ts +22 -0
- package/ace-install-system-ui/src/locales/lang/en/common.json +17 -0
- package/ace-install-system-ui/src/locales/lang/en/errors.json +40 -0
- package/ace-install-system-ui/src/locales/lang/en/layout.json +7 -0
- package/ace-install-system-ui/src/locales/lang/en.ts +14 -0
- package/ace-install-system-ui/src/locales/lang/zh-CN/common.json +17 -0
- package/ace-install-system-ui/src/locales/lang/zh-CN/errors.json +42 -0
- package/ace-install-system-ui/src/locales/lang/zh-CN/layout.json +7 -0
- package/ace-install-system-ui/src/locales/lang/zh-CN.ts +15 -0
- package/ace-install-system-ui/src/locales/setupI18n.ts +14 -0
- package/ace-install-system-ui/src/main.ts +28 -0
- package/ace-install-system-ui/src/model/Common.ts +8 -0
- package/ace-install-system-ui/src/model/DesktopApp.ts +472 -0
- package/ace-install-system-ui/src/model/TaskLog.ts +64 -0
- package/ace-install-system-ui/src/model/TaskReport.ts +136 -0
- package/ace-install-system-ui/src/pages/Home/Home.vue +307 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/InstallDesktopApp.vue +363 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/DependentApp.vue +138 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/InstallDesktopAppStep1 copy.vue +232 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/InstallDesktopAppStep1.vue +577 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/InstallDesktopAppStep2.vue +267 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/InstallDesktopAppStep3.vue +176 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/ViewDependencies.vue +74 -0
- package/ace-install-system-ui/src/pages/UninstallDesktopApp.vue +167 -0
- package/ace-install-system-ui/src/router/index.ts +118 -0
- package/ace-install-system-ui/src/stores/index.ts +181 -0
- package/ace-install-system-ui/src/stores/modules/locale.ts +60 -0
- package/ace-install-system-ui/src/styles/main.scss +73 -0
- package/ace-install-system-ui/src/styles/modules/cutom-element-table-cell.scss +33 -0
- package/ace-install-system-ui/src/styles/modules/element-dark-theme.scss +126 -0
- package/ace-install-system-ui/src/styles/modules/task-install-detail.scss +127 -0
- package/ace-install-system-ui/src/styles/modules/var-notused.scss +156 -0
- package/ace-install-system-ui/src/styles/modules/var.scss +151 -0
- package/ace-install-system-ui/src/types/global.d.ts +10 -0
- package/ace-install-system-ui/src/types/shims-vue-simple-uploader.d.ts +4 -0
- package/ace-install-system-ui/src/utils/EventBus.ts +5 -0
- package/ace-install-system-ui/src/utils/axios/AceAxios.ts +535 -0
- package/ace-install-system-ui/src/utils/axios/cache.ts +9 -0
- package/ace-install-system-ui/src/utils/axios/index.ts +35 -0
- package/ace-install-system-ui/src/views/Layout/Layout.vue +140 -0
- package/ace-install-system-ui/src/views/Layout/components/Header.vue +198 -0
- package/ace-install-system-ui/src/views/Login/Login.vue +283 -0
- package/ace-install-system-ui/src/views/NotFound/NotFound.vue +7 -0
- package/ace-install-system-ui/src/views/SignUp/SignUp.vue +204 -0
- package/ace-install-system-ui/src/views/WebSsh.vue +12 -0
- package/ace-install-system-ui/tsconfig.json +24 -0
- package/ace-install-system-ui/tsconfig.node.json +11 -0
- package/ace-install-system-ui/vite.config.ts +114 -0
- package/ace-monolith-shell-ui/.env +3 -0
- package/ace-monolith-shell-ui/.env.development +5 -0
- package/ace-monolith-shell-ui/.env.production +1 -0
- package/ace-monolith-shell-ui/.eslintrc.cjs +15 -0
- package/ace-monolith-shell-ui/.prettierrc.json +8 -0
- package/ace-monolith-shell-ui/.vscode/extensions.json +7 -0
- package/ace-monolith-shell-ui/.vscode/launch.json +22 -0
- package/ace-monolith-shell-ui/.vscode/settings.json +26 -0
- package/ace-monolith-shell-ui/README.md +7 -0
- package/ace-monolith-shell-ui/auto-imports.d.ts +9 -0
- package/ace-monolith-shell-ui/components.d.ts +45 -0
- package/ace-monolith-shell-ui/index.html +20 -0
- package/ace-monolith-shell-ui/package.json +67 -0
- package/ace-monolith-shell-ui/public/res/build/shell/favicon.ico +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/.keep +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/index.html +5348 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.css +2583 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.eot +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.glyph.json +1 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.less +2585 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.module.less +2567 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.scss +5103 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.styl +2554 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.svg +7633 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.symbol.svg +11 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.ttf +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.woff +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.woff2 +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/symbol.html +18032 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/tags.json +1364 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/unicode.html +175 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/hidden-right-sidebar.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/icon/deliver.svg +1 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/icon/logout.svg +28 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/icon/notification.svg +17 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/jari-logo-2.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/jari-logo.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/public-code.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/show-right-sidebar.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/svg/shezhi.svg +11 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/svg/tuichu.svg +13 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/svg/xiaoxi.svg +13 -0
- package/ace-monolith-shell-ui/public/res/build/shell/styles/element-plus.css +1 -0
- package/ace-monolith-shell-ui/src/App.vue +25 -0
- package/ace-monolith-shell-ui/src/assets/base.css +80 -0
- package/ace-monolith-shell-ui/src/assets/element/index.scss +18 -0
- package/ace-monolith-shell-ui/src/assets/element/var.scss +1123 -0
- package/ace-monolith-shell-ui/src/assets/logo.svg +7 -0
- package/ace-monolith-shell-ui/src/assets/main.scss +123 -0
- package/ace-monolith-shell-ui/src/demo/Bridge.vue +176 -0
- package/ace-monolith-shell-ui/src/env.d.ts +17 -0
- package/ace-monolith-shell-ui/src/hooks/useBridge.ts +148 -0
- package/ace-monolith-shell-ui/src/hooks/usePreferences.ts +116 -0
- package/ace-monolith-shell-ui/src/hooks/useSockJs.ts +123 -0
- package/ace-monolith-shell-ui/src/http/AceAxios.ts +645 -0
- package/ace-monolith-shell-ui/src/http/cache.ts +11 -0
- package/ace-monolith-shell-ui/src/http/index.ts +33 -0
- package/ace-monolith-shell-ui/src/init.ts +21 -0
- package/ace-monolith-shell-ui/src/layout/Main.vue +176 -0
- package/ace-monolith-shell-ui/src/layout/components/AppMenu.vue +334 -0
- package/ace-monolith-shell-ui/src/layout/components/Fillet.vue +105 -0
- package/ace-monolith-shell-ui/src/layout/components/Sidebar.vue +213 -0
- package/ace-monolith-shell-ui/src/layout/widgets/notification/Notification.vue +307 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/common.json +17 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/errors.json +42 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/layout.json +8 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/updatePsw.json +9 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/userProfile.json +3 -0
- package/ace-monolith-shell-ui/src/locales/lang/en.ts +14 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/common.json +17 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/errors.json +42 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/layout.json +8 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/updatePsw.json +9 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/userProfile.json +3 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN.ts +14 -0
- package/ace-monolith-shell-ui/src/locales/setupI18n.ts +14 -0
- package/ace-monolith-shell-ui/src/main.ts +164 -0
- package/ace-monolith-shell-ui/src/router/index.ts +111 -0
- package/ace-monolith-shell-ui/src/shims-vue.d.ts +22 -0
- package/ace-monolith-shell-ui/src/stores/modules/accessibleApps.ts +149 -0
- package/ace-monolith-shell-ui/src/stores/modules/app.ts +164 -0
- package/ace-monolith-shell-ui/src/stores/modules/appContext.ts +57 -0
- package/ace-monolith-shell-ui/src/stores/modules/auth.ts +65 -0
- package/ace-monolith-shell-ui/src/stores/modules/locale.ts +63 -0
- package/ace-monolith-shell-ui/src/stores/modules/system.ts +41 -0
- package/ace-monolith-shell-ui/src/types/ext.d.ts +13 -0
- package/ace-monolith-shell-ui/src/types/router.d.ts +12 -0
- package/ace-monolith-shell-ui/src/types/window.d.ts +16 -0
- package/ace-monolith-shell-ui/src/views/AboutView.vue +141 -0
- package/ace-monolith-shell-ui/src/views/DlgUpdatePassword.vue +119 -0
- package/ace-monolith-shell-ui/src/views/ExtendedAttrRender.vue +311 -0
- package/ace-monolith-shell-ui/src/views/MicroAppContainer.vue +270 -0
- package/ace-monolith-shell-ui/src/views/UserProfileEditor.vue +303 -0
- package/ace-monolith-shell-ui/src/views/WorkBench.vue +10 -0
- package/ace-monolith-shell-ui/src/views/errors/HttpState404.vue +137 -0
- package/ace-monolith-shell-ui/src/views/errors/NoAppAvailable.vue +16 -0
- package/ace-monolith-shell-ui/src/vite-env.d.ts +3 -0
- package/ace-monolith-shell-ui/tsconfig.app.json +26 -0
- package/ace-monolith-shell-ui/tsconfig.json +11 -0
- package/ace-monolith-shell-ui/tsconfig.node.json +25 -0
- package/ace-monolith-shell-ui/vbuild/vite/proxy.ts +47 -0
- package/ace-monolith-shell-ui/vite.config.ts +127 -0
- package/ace-monolith-shell-ui/vue-image-crop-upload.d.ts +1 -0
- package/ace-vue-frame/.env +2 -0
- package/ace-vue-frame/.env.development +1 -0
- package/ace-vue-frame/.env.production +1 -0
- package/ace-vue-frame/.eslintrc.cjs +29 -0
- package/ace-vue-frame/.vscode/extensions.json +3 -0
- package/ace-vue-frame/README.md +18 -0
- package/ace-vue-frame/auto-imports.d.ts +9 -0
- package/ace-vue-frame/components.d.ts +16 -0
- package/ace-vue-frame/folder-alias.json +1 -0
- package/ace-vue-frame/index.html +13 -0
- package/ace-vue-frame/jsconfig.json +13 -0
- package/ace-vue-frame/package.json +30 -0
- package/ace-vue-frame/prettier.config.js +17 -0
- package/ace-vue-frame/public/vite.svg +1 -0
- package/ace-vue-frame/src/App.vue +30 -0
- package/ace-vue-frame/src/api/demo.ts +24 -0
- package/ace-vue-frame/src/assets/vue.svg +1 -0
- package/ace-vue-frame/src/components/HelloWorld.vue +38 -0
- package/ace-vue-frame/src/main.ts +38 -0
- package/ace-vue-frame/src/router/index.ts +18 -0
- package/ace-vue-frame/src/router/routes.ts +7 -0
- package/ace-vue-frame/src/router/whiteList.ts +4 -0
- package/ace-vue-frame/src/stores/index.ts +3 -0
- package/ace-vue-frame/src/stores/modules/main.ts +19 -0
- package/ace-vue-frame/src/style.css +80 -0
- package/ace-vue-frame/src/types/ext.d.ts +13 -0
- package/ace-vue-frame/src/types/style.d.ts +7 -0
- package/ace-vue-frame/src/types/window.d.ts +16 -0
- package/ace-vue-frame/src/utils/axios/index.ts +20 -0
- package/ace-vue-frame/src/utils/index.ts +7 -0
- package/ace-vue-frame/src/vite-env.d.ts +1 -0
- package/ace-vue-frame/tsconfig.json +52 -0
- package/ace-vue-frame/tsconfig.node.json +10 -0
- package/ace-vue-frame/vite.config.ts +75 -0
- package/folder-alias.json +1 -0
- package/frontends.code-workspace +10 -0
- package/package.json +35 -0
- package/pnpm-workspace.yaml +11 -0
- package/pom.xml +114 -0
|
@@ -0,0 +1,1710 @@
|
|
|
1
|
+
<svg xml:space="preserve" style="enable-background:new 0 0 1024 1024;" viewBox="0 0 1024 1024" y="0px" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" id="图层_1" version="1.1">
|
|
2
|
+
<style type="text/css">
|
|
3
|
+
.st0{fill:url(#SVGID_1_);}
|
|
4
|
+
.st1{fill:url(#SVGID_2_);}
|
|
5
|
+
.st2{fill:#F9F9F9;}
|
|
6
|
+
.st3{fill:#515151;}
|
|
7
|
+
.st4{fill:#FFFFFF;}
|
|
8
|
+
.st5{fill:url(#SVGID_3_);}
|
|
9
|
+
.st6{fill:url(#SVGID_4_);}
|
|
10
|
+
.st7{fill:url(#SVGID_5_);}
|
|
11
|
+
.st8{fill:url(#SVGID_6_);}
|
|
12
|
+
.st9{fill:url(#SVGID_7_);}
|
|
13
|
+
.st10{fill:url(#SVGID_8_);}
|
|
14
|
+
.st11{fill:url(#SVGID_9_);}
|
|
15
|
+
.st12{fill:url(#SVGID_10_);}
|
|
16
|
+
.st13{fill:url(#SVGID_11_);}
|
|
17
|
+
.st14{fill:url(#SVGID_12_);}
|
|
18
|
+
.st15{fill:url(#SVGID_13_);}
|
|
19
|
+
.st16{fill:url(#SVGID_14_);}
|
|
20
|
+
.st17{fill:url(#SVGID_15_);}
|
|
21
|
+
.st18{fill:url(#SVGID_16_);}
|
|
22
|
+
.st19{fill:url(#SVGID_17_);}
|
|
23
|
+
.st20{fill:url(#SVGID_18_);}
|
|
24
|
+
.st21{fill:url(#SVGID_19_);}
|
|
25
|
+
.st22{fill:url(#SVGID_20_);}
|
|
26
|
+
.st23{fill:url(#SVGID_21_);}
|
|
27
|
+
.st24{fill:url(#SVGID_22_);}
|
|
28
|
+
.st25{fill:url(#SVGID_23_);}
|
|
29
|
+
.st26{fill:url(#SVGID_24_);}
|
|
30
|
+
.st27{fill:url(#SVGID_25_);}
|
|
31
|
+
.st28{fill:url(#SVGID_26_);}
|
|
32
|
+
.st29{fill:url(#SVGID_27_);}
|
|
33
|
+
.st30{fill:url(#SVGID_28_);}
|
|
34
|
+
.st31{fill:url(#SVGID_29_);}
|
|
35
|
+
.st32{fill:url(#SVGID_30_);}
|
|
36
|
+
.st33{fill:url(#SVGID_31_);}
|
|
37
|
+
.st34{fill:url(#SVGID_32_);}
|
|
38
|
+
.st35{fill:url(#SVGID_33_);}
|
|
39
|
+
.st36{fill:url(#SVGID_34_);}
|
|
40
|
+
.st37{fill:url(#SVGID_35_);}
|
|
41
|
+
.st38{fill:url(#SVGID_36_);}
|
|
42
|
+
.st39{fill:url(#SVGID_37_);}
|
|
43
|
+
.st40{fill:url(#SVGID_38_);}
|
|
44
|
+
.st41{fill:url(#SVGID_39_);}
|
|
45
|
+
.st42{fill:url(#SVGID_40_);}
|
|
46
|
+
.st43{fill:url(#SVGID_41_);}
|
|
47
|
+
.st44{fill:url(#SVGID_42_);}
|
|
48
|
+
.st45{fill:url(#SVGID_43_);}
|
|
49
|
+
.st46{fill:#21B9FF;}
|
|
50
|
+
.st47{fill:#4DD1FF;}
|
|
51
|
+
.st48{fill:url(#SVGID_44_);}
|
|
52
|
+
.st49{fill:url(#SVGID_45_);}
|
|
53
|
+
.st50{fill:url(#SVGID_46_);}
|
|
54
|
+
.st51{fill:url(#SVGID_47_);}
|
|
55
|
+
.st52{fill:url(#SVGID_48_);}
|
|
56
|
+
.st53{fill:url(#SVGID_49_);}
|
|
57
|
+
.st54{fill:url(#SVGID_50_);}
|
|
58
|
+
.st55{fill:url(#SVGID_51_);}
|
|
59
|
+
.st56{fill:url(#SVGID_52_);}
|
|
60
|
+
.st57{fill:url(#SVGID_53_);}
|
|
61
|
+
.st58{fill:url(#SVGID_54_);}
|
|
62
|
+
.st59{fill:url(#SVGID_55_);}
|
|
63
|
+
</style>
|
|
64
|
+
<g>
|
|
65
|
+
<linearGradient y2="512" x2="912.357" y1="512" x1="79.9838" gradientUnits="userSpaceOnUse" id="SVGID_1_">
|
|
66
|
+
<stop style="stop-color:#DAE2EF" offset="0"></stop>
|
|
67
|
+
<stop style="stop-color:#F2F2F2" offset="1"></stop>
|
|
68
|
+
</linearGradient>
|
|
69
|
+
<circle r="416.2" cy="512" cx="496.2" class="st0"></circle>
|
|
70
|
+
<linearGradient y2="721.3408" x2="911.764" y1="721.3408" x1="79.454" gradientUnits="userSpaceOnUse" id="SVGID_2_">
|
|
71
|
+
<stop style="stop-color:#CFDEE5" offset="0"></stop>
|
|
72
|
+
<stop style="stop-color:#C7D3DD" offset="1"></stop>
|
|
73
|
+
</linearGradient>
|
|
74
|
+
<path d="M79.5,514.5c1.3,228.7,187.1,413.7,416.2,413.7s414.8-185,416.2-413.7H79.5z" class="st1"></path>
|
|
75
|
+
<g>
|
|
76
|
+
<path d="M745.9,475.8l-204.7,69.7c-0.1,0-0.1,0.1-0.1,0.2l98.1,288.1c0,0.1,0.1,0.1,0.2,0.1
|
|
77
|
+
c0,0,128.2-45.9,171.2-60.6c8.2-2.8,33.5-9.1,33.5-9.1c0.1,0,0.1-0.1,0.1-0.2c0,0-9.1-19.9-11.4-26.8
|
|
78
|
+
c-22.2-65.2-86.7-261.4-86.7-261.4C746.1,475.8,746,475.8,745.9,475.8z" class="st2"></path>
|
|
79
|
+
<path d="M705.2,546.2l-123.8,42.2c-1.8,0.6-3.8-0.4-4.4-2.2l-7.6-22.2c-0.6-1.8,0.4-3.8,2.2-4.4l123.8-42.2
|
|
80
|
+
c1.8-0.6,3.8,0.4,4.4,2.2l7.6,22.2C708,543.6,707,545.6,705.2,546.2z" class="st3"></path>
|
|
81
|
+
<path d="M751.9,550.6L586,607.1c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
82
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C753,549.6,752.6,550.4,751.9,550.6z" class="st3"></path>
|
|
83
|
+
<path d="M758,568.4l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8L589,620c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
84
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C759,567.4,758.7,568.2,758,568.4z" class="st3"></path>
|
|
85
|
+
<path d="M764.1,586.2l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
86
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C765.1,585.2,764.7,586,764.1,586.2z" class="st3"></path>
|
|
87
|
+
<path d="M770.1,604l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
88
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C771.2,603,770.8,603.8,770.1,604z" class="st3"></path>
|
|
89
|
+
<path d="M776.2,621.8l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
90
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C777.2,620.8,776.9,621.6,776.2,621.8z" class="st3"></path>
|
|
91
|
+
<path d="M782.2,639.6l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6L780,633.1
|
|
92
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C783.3,638.6,782.9,639.4,782.2,639.6z" class="st3"></path>
|
|
93
|
+
<path d="M788.3,657.4l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
94
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C789.3,656.4,789,657.2,788.3,657.4z" class="st3"></path>
|
|
95
|
+
</g>
|
|
96
|
+
<g>
|
|
97
|
+
<path d="M760.9,490.8l-204.7,69.7c-0.1,0-0.1,0.1-0.1,0.2l98.1,288.1c0,0.1,0.1,0.1,0.2,0.1
|
|
98
|
+
c0,0,128.2-45.9,171.2-60.6c8.2-2.8,33.5-9.1,33.5-9.1c0.1,0,0.1-0.1,0.1-0.2c0,0-9.1-19.9-11.4-26.8
|
|
99
|
+
c-22.2-65.2-86.7-261.4-86.7-261.4C761.1,490.8,761,490.8,760.9,490.8z" class="st4"></path>
|
|
100
|
+
<linearGradient y2="567.8243" x2="722.5235" y1="567.8243" x1="584.128" gradientUnits="userSpaceOnUse" id="SVGID_3_">
|
|
101
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
102
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
103
|
+
</linearGradient>
|
|
104
|
+
<path d="M720.2,561.1l-123.8,42.2c-1.8,0.6-3.8-0.4-4.4-2.2l-7.6-22.2c-0.6-1.8,0.4-3.8,2.2-4.4l123.8-42.2
|
|
105
|
+
c1.8-0.6,3.8,0.4,4.4,2.2l7.6,22.2C723,558.5,722,560.5,720.2,561.1z" class="st5"></path>
|
|
106
|
+
<linearGradient y2="590.5532" x2="767.785" y1="590.5532" x1="597.8677" gradientUnits="userSpaceOnUse" id="SVGID_4_">
|
|
107
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
108
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
109
|
+
</linearGradient>
|
|
110
|
+
<path d="M766.9,565.6L601,622.1c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6L764.7,559
|
|
111
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C767.9,564.6,767.6,565.4,766.9,565.6z" class="st6"></path>
|
|
112
|
+
<linearGradient y2="608.3536" x2="773.8453" y1="608.3536" x1="603.928" gradientUnits="userSpaceOnUse" id="SVGID_5_">
|
|
113
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
114
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
115
|
+
</linearGradient>
|
|
116
|
+
<path d="M773,583.4L607,639.9c-0.7,0.2-1.4-0.1-1.6-0.8L604,635c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
117
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C774,582.4,773.6,583.2,773,583.4z" class="st7"></path>
|
|
118
|
+
<linearGradient y2="626.1542" x2="779.9057" y1="626.1542" x1="609.9884" gradientUnits="userSpaceOnUse" id="SVGID_6_">
|
|
119
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
120
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
121
|
+
</linearGradient>
|
|
122
|
+
<path d="M779,601.2l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
123
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C780.1,600.2,779.7,601,779,601.2z" class="st8"></path>
|
|
124
|
+
<linearGradient y2="643.9547" x2="785.9661" y1="643.9547" x1="616.0488" gradientUnits="userSpaceOnUse" id="SVGID_7_">
|
|
125
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
126
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
127
|
+
</linearGradient>
|
|
128
|
+
<path d="M785.1,619l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
129
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C786.1,618,785.8,618.8,785.1,619z" class="st9"></path>
|
|
130
|
+
<linearGradient y2="661.7552" x2="792.0264" y1="661.7552" x1="622.1091" gradientUnits="userSpaceOnUse" id="SVGID_8_">
|
|
131
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
132
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
133
|
+
</linearGradient>
|
|
134
|
+
<path d="M791.2,636.8l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6l165.9-56.5
|
|
135
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C792.2,635.8,791.8,636.6,791.2,636.8z" class="st10"></path>
|
|
136
|
+
<linearGradient y2="679.5557" x2="798.0869" y1="679.5557" x1="628.1696" gradientUnits="userSpaceOnUse" id="SVGID_9_">
|
|
137
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
138
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
139
|
+
</linearGradient>
|
|
140
|
+
<path d="M797.2,654.6l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6L795,648
|
|
141
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C798.2,653.6,797.9,654.4,797.2,654.6z" class="st11"></path>
|
|
142
|
+
<linearGradient y2="697.3563" x2="804.1472" y1="697.3563" x1="634.2299" gradientUnits="userSpaceOnUse" id="SVGID_10_">
|
|
143
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
144
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
145
|
+
</linearGradient>
|
|
146
|
+
<path d="M803.3,672.4l-165.9,56.5c-0.7,0.2-1.4-0.1-1.6-0.8l-1.4-4.1c-0.2-0.7,0.1-1.4,0.8-1.6L801,665.8
|
|
147
|
+
c0.7-0.2,1.4,0.1,1.6,0.8l1.4,4.1C804.3,671.4,803.9,672.2,803.3,672.4z" class="st12"></path>
|
|
148
|
+
</g>
|
|
149
|
+
<g>
|
|
150
|
+
<linearGradient y2="519.6809" x2="911.7552" y1="519.6809" x1="884.6819" gradientUnits="userSpaceOnUse" id="SVGID_11_">
|
|
151
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
152
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
153
|
+
</linearGradient>
|
|
154
|
+
<path d="M884.7,506c0,0,4.6-0.8,8.9,0s19,7.3,16.8,21.8c0,0-0.3,2.6,1.2,4.3c1.5,1.7-14,6-23.4-13
|
|
155
|
+
C888.3,519.1,884.9,512.8,884.7,506z" class="st13"></path>
|
|
156
|
+
<g>
|
|
157
|
+
<path d="M887.6,508.4c1.2,2.6,2.6,5.1,4.2,7.5c1.6,2.4,3.3,4.7,5.2,6.8c2,2.1,4.1,3.9,6.4,5.6
|
|
158
|
+
c2.3,1.6,4.9,2.9,7.6,3.9l0,0.1c-2.8-0.6-5.5-1.8-8-3.3c-2.4-1.6-4.5-3.6-6.4-5.8c-1.9-2.2-3.6-4.5-5.1-7
|
|
159
|
+
C890,513.7,888.7,511.1,887.6,508.4L887.6,508.4z" class="st4"></path>
|
|
160
|
+
</g>
|
|
161
|
+
<g>
|
|
162
|
+
<path d="M892.6,517.6c-0.5,0.1-1,0.1-1.5,0c-0.5-0.1-0.9-0.3-1.3-0.5c-0.4-0.2-0.8-0.5-1.1-0.8
|
|
163
|
+
c-0.3-0.3-0.6-0.6-0.9-0.9c0.3,0.3,0.7,0.6,1,0.8c0.4,0.2,0.7,0.4,1.1,0.6c0.4,0.1,0.8,0.2,1.2,0.3c0.4,0,0.8,0,1.1-0.1
|
|
164
|
+
L892.6,517.6z" class="st4"></path>
|
|
165
|
+
</g>
|
|
166
|
+
<g>
|
|
167
|
+
<path d="M895.8,521.7c-0.4,0.3-0.7,0.4-1.1,0.5c-0.4,0.1-0.7,0.1-1.1,0.1c-0.4,0-0.7-0.1-1.1-0.2
|
|
168
|
+
c-0.3-0.1-0.7-0.3-1-0.4c0.3,0.1,0.7,0.2,1,0.2c0.3,0.1,0.7,0,1,0c0.3,0,0.6-0.1,0.9-0.3c0.3-0.1,0.6-0.3,0.7-0.5L895.8,521.7z" class="st4"></path>
|
|
169
|
+
</g>
|
|
170
|
+
<g>
|
|
171
|
+
<path d="M899.7,526c-0.5,0.3-0.9,0.5-1.3,0.6c-0.5,0.1-0.9,0.2-1.4,0.2c-0.5,0-0.9,0-1.4-0.1
|
|
172
|
+
c-0.4-0.1-0.9-0.2-1.3-0.3c0.4,0.1,0.9,0.1,1.3,0.1c0.4,0,0.9,0,1.3-0.1c0.4-0.1,0.8-0.2,1.2-0.4c0.4-0.2,0.8-0.4,1-0.6
|
|
173
|
+
L899.7,526z" class="st4"></path>
|
|
174
|
+
</g>
|
|
175
|
+
<g>
|
|
176
|
+
<path d="M903.1,528.8c-0.5,0.3-0.9,0.5-1.3,0.6c-0.5,0.1-0.9,0.2-1.4,0.2c-0.5,0-0.9,0-1.4-0.1
|
|
177
|
+
c-0.4-0.1-0.9-0.2-1.3-0.3c0.4,0.1,0.9,0.1,1.3,0.1c0.4,0,0.9,0,1.3-0.1c0.4-0.1,0.8-0.2,1.2-0.4c0.4-0.2,0.8-0.4,1-0.6
|
|
178
|
+
L903.1,528.8z" class="st4"></path>
|
|
179
|
+
</g>
|
|
180
|
+
<g>
|
|
181
|
+
<path d="M891.3,515.5c0.5-0.4,1-0.9,1.3-1.4c0.4-0.5,0.7-1.1,1-1.7c0.2-0.6,0.4-1.3,0.5-2c0.1-0.7,0.1-1.4,0-2
|
|
182
|
+
c0.1,0.7,0.2,1.4,0.2,2.1c0,0.7-0.1,1.4-0.3,2.1c-0.2,0.7-0.5,1.3-0.8,1.9c-0.4,0.6-0.8,1.2-1.3,1.7L891.3,515.5z" class="st4"></path>
|
|
183
|
+
</g>
|
|
184
|
+
<g>
|
|
185
|
+
<path d="M894,519.6c0.6-0.6,1.1-1.3,1.6-2c0.5-0.7,0.9-1.4,1.3-2.2c0.4-0.8,0.6-1.6,0.8-2.4c0.2-0.8,0.2-1.7,0.1-2.6
|
|
186
|
+
c0.2,0.9,0.2,1.7,0.1,2.6c-0.1,0.9-0.4,1.7-0.7,2.5c-0.3,0.8-0.7,1.6-1.2,2.4c-0.5,0.8-1,1.5-1.5,2.2L894,519.6z" class="st4"></path>
|
|
187
|
+
</g>
|
|
188
|
+
<g>
|
|
189
|
+
<path d="M898.6,524.5c0.7-0.7,1.4-1.4,1.9-2.2c0.6-0.8,1.1-1.7,1.5-2.6c0.4-0.9,0.6-1.9,0.8-2.9c0.1-1,0-2-0.1-3
|
|
190
|
+
c0.2,1,0.4,2,0.3,3c-0.1,1-0.3,2-0.6,3c-0.3,1-0.8,1.9-1.4,2.8c-0.6,0.9-1.2,1.7-1.9,2.5L898.6,524.5z" class="st4"></path>
|
|
191
|
+
</g>
|
|
192
|
+
<g>
|
|
193
|
+
<path d="M905,529.3c0.6-0.6,1.1-1.5,1.5-2.4c0.4-0.9,0.6-1.8,0.8-2.8c0.1-1,0.2-1.9,0.1-2.9c0-0.5-0.1-1-0.1-1.5
|
|
194
|
+
l-0.3-1.5l0.4,1.4c0.1,0.5,0.2,1,0.2,1.5c0.1,1,0.1,2,0.1,3c-0.1,1-0.3,2-0.6,2.9c-0.3,1-0.8,1.9-1.5,2.7L905,529.3z" class="st4"></path>
|
|
195
|
+
</g>
|
|
196
|
+
</g>
|
|
197
|
+
<g>
|
|
198
|
+
<linearGradient y2="557.4285" x2="910.4459" y1="557.4285" x1="878.343" gradientUnits="userSpaceOnUse" id="SVGID_12_">
|
|
199
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
200
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
201
|
+
</linearGradient>
|
|
202
|
+
<path d="M878.3,545.8c0,0,4.4-1.8,8.9-1.9c4.4-0.1,20.4,3.8,21,19.6c0,0,0.2,2.9,2.1,4.4c1.9,1.5-12.7,9.3-25.8-9
|
|
203
|
+
C884.5,559,879.9,553,878.3,545.8z" class="st14"></path>
|
|
204
|
+
<g>
|
|
205
|
+
<path d="M881.8,547.8c1.6,2.5,3.5,4.8,5.5,7c2,2.2,4.1,4.3,6.5,6.1c2.3,1.8,4.9,3.4,7.5,4.7c2.7,1.3,5.5,2.1,8.4,2.6
|
|
206
|
+
l0,0.1c-3,0-6-0.8-8.7-2c-2.7-1.3-5.2-3-7.6-4.9c-2.3-1.9-4.4-4.1-6.4-6.3C885.1,552.8,883.3,550.4,881.8,547.8L881.8,547.8z" class="st4"></path>
|
|
207
|
+
</g>
|
|
208
|
+
<g>
|
|
209
|
+
<path d="M888.6,556.5c-0.5,0.2-1,0.3-1.5,0.3c-0.5,0-0.9-0.1-1.4-0.2c-0.4-0.1-0.9-0.3-1.2-0.6
|
|
210
|
+
c-0.4-0.2-0.7-0.5-1.1-0.8c0.4,0.2,0.8,0.5,1.2,0.6c0.4,0.2,0.8,0.3,1.3,0.4c0.4,0.1,0.9,0.1,1.3,0c0.4-0.1,0.8-0.2,1.1-0.4
|
|
211
|
+
L888.6,556.5z" class="st4"></path>
|
|
212
|
+
</g>
|
|
213
|
+
<g>
|
|
214
|
+
<path d="M892.5,560.2c-0.3,0.3-0.6,0.6-0.9,0.7c-0.3,0.2-0.7,0.3-1.1,0.4c-0.4,0.1-0.7,0.1-1.1,0
|
|
215
|
+
c-0.4,0-0.7-0.1-1-0.2c0.4,0,0.7,0.1,1,0.1c0.3,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.9-0.5c0.2-0.2,0.5-0.5,0.6-0.7L892.5,560.2z" class="st4"></path>
|
|
216
|
+
</g>
|
|
217
|
+
<g>
|
|
218
|
+
<path d="M897.2,564c-0.4,0.4-0.8,0.7-1.2,0.9c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-0.9,0.2-1.4,0.2
|
|
219
|
+
c-0.5,0-0.9,0-1.4-0.1c0.5,0,0.9,0,1.4-0.1c0.4-0.1,0.9-0.2,1.3-0.4c0.4-0.2,0.8-0.4,1.2-0.6c0.3-0.2,0.7-0.6,0.9-0.9L897.2,564z" class="st4"></path>
|
|
220
|
+
</g>
|
|
221
|
+
<g>
|
|
222
|
+
<path d="M901.1,566.2c-0.4,0.4-0.8,0.7-1.2,0.9c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-0.9,0.2-1.4,0.2
|
|
223
|
+
c-0.5,0-0.9,0-1.4-0.1c0.5,0,0.9,0,1.4-0.1c0.4-0.1,0.9-0.2,1.3-0.4c0.4-0.2,0.8-0.4,1.2-0.6c0.3-0.2,0.7-0.6,0.9-0.9
|
|
224
|
+
L901.1,566.2z" class="st4"></path>
|
|
225
|
+
</g>
|
|
226
|
+
<g>
|
|
227
|
+
<path d="M886.8,554.6c0.4-0.5,0.8-1.2,1.1-1.8c0.3-0.7,0.5-1.4,0.6-2.1c0.1-0.7,0.2-1.4,0.1-2.2
|
|
228
|
+
c0-0.7-0.2-1.4-0.4-2.2c0.3,0.7,0.5,1.4,0.6,2.1c0.1,0.7,0.2,1.5,0.1,2.2c-0.1,0.8-0.2,1.5-0.4,2.2c-0.2,0.7-0.5,1.4-1,2.1
|
|
229
|
+
L886.8,554.6z" class="st4"></path>
|
|
230
|
+
</g>
|
|
231
|
+
<g>
|
|
232
|
+
<path d="M890.3,558.3c0.5-0.8,0.9-1.6,1.2-2.5c0.3-0.9,0.6-1.7,0.9-2.6c0.2-0.9,0.3-1.8,0.3-2.8
|
|
233
|
+
c0-0.9-0.1-1.9-0.4-2.8c0.3,0.9,0.5,1.8,0.6,2.7c0,0.9,0,1.9-0.2,2.8c-0.2,0.9-0.4,1.9-0.7,2.8c-0.3,0.9-0.7,1.8-1.1,2.6
|
|
234
|
+
L890.3,558.3z" class="st4"></path>
|
|
235
|
+
</g>
|
|
236
|
+
<g>
|
|
237
|
+
<path d="M895.8,562.7c0.6-0.9,1.1-1.8,1.5-2.8c0.4-1,0.7-2,0.9-3.1c0.2-1.1,0.3-2.2,0.2-3.2
|
|
238
|
+
c-0.1-1.1-0.4-2.1-0.7-3.2c0.4,1,0.8,2.1,0.9,3.2c0.1,1.1,0.2,2.2,0,3.3c-0.1,1.1-0.4,2.2-0.8,3.2c-0.4,1.1-0.8,2.1-1.4,3
|
|
239
|
+
L895.8,562.7z" class="st4"></path>
|
|
240
|
+
</g>
|
|
241
|
+
<g>
|
|
242
|
+
<path d="M903.2,566.5c0.5-0.8,0.8-1.9,1-2.9c0.2-1,0.3-2.1,0.2-3.1c-0.1-1-0.2-2.1-0.5-3.1c-0.1-0.5-0.3-1-0.4-1.5
|
|
243
|
+
l-0.6-1.5l0.6,1.5c0.2,0.5,0.4,1,0.5,1.5c0.3,1,0.5,2.1,0.7,3.1c0.1,1.1,0.1,2.2,0,3.2c-0.2,1.1-0.4,2.1-0.9,3.2L903.2,566.5z" class="st4"></path>
|
|
244
|
+
</g>
|
|
245
|
+
</g>
|
|
246
|
+
<g>
|
|
247
|
+
<linearGradient y2="605.4909" x2="902.2228" y1="605.4909" x1="867.0997" gradientUnits="userSpaceOnUse" id="SVGID_13_">
|
|
248
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
249
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
250
|
+
</linearGradient>
|
|
251
|
+
<path d="M867.1,603.4c0,0,2.8-3.3,6.3-5.2s17.9-5.5,25,6.9c0,0,1.4,2.2,3.5,2.6c2.1,0.4-6.3,12.7-24.4,3.6
|
|
252
|
+
C877.5,611.4,871.3,608.6,867.1,603.4z" class="st15"></path>
|
|
253
|
+
<g>
|
|
254
|
+
<path d="M870.7,603.6c2.4,1.3,4.8,2.3,7.3,3.3c2.5,0.9,5.1,1.7,7.7,2.2c2.6,0.5,5.3,0.6,7.9,0.6
|
|
255
|
+
c2.7-0.1,5.3-0.6,7.8-1.4l0,0.1c-2.4,1.2-5.1,1.9-7.8,2.1c-2.7,0.1-5.4-0.2-8.1-0.8c-2.6-0.6-5.2-1.4-7.7-2.4
|
|
256
|
+
C875.4,606.2,872.9,605,870.7,603.6L870.7,603.6z" class="st4"></path>
|
|
257
|
+
</g>
|
|
258
|
+
<g>
|
|
259
|
+
<path d="M879.8,607.7c-0.3,0.4-0.7,0.6-1.1,0.8c-0.4,0.2-0.8,0.3-1.2,0.4c-0.4,0.1-0.8,0.1-1.2,0.1
|
|
260
|
+
c-0.4,0-0.8-0.1-1.2-0.2c0.4,0,0.8,0,1.2,0c0.4,0,0.8-0.1,1.2-0.2c0.4-0.1,0.7-0.3,1-0.5c0.3-0.2,0.6-0.5,0.7-0.8L879.8,607.7z" class="st4"></path>
|
|
261
|
+
</g>
|
|
262
|
+
<g>
|
|
263
|
+
<path d="M884.5,609c-0.1,0.4-0.2,0.7-0.4,1c-0.2,0.3-0.4,0.5-0.7,0.7c-0.6,0.4-1.2,0.6-1.8,0.7
|
|
264
|
+
c0.3-0.1,0.6-0.2,0.9-0.4c0.3-0.2,0.5-0.4,0.7-0.6c0.2-0.2,0.4-0.5,0.5-0.7c0.1-0.3,0.2-0.6,0.2-0.8L884.5,609z" class="st4"></path>
|
|
265
|
+
</g>
|
|
266
|
+
<g>
|
|
267
|
+
<path d="M889.8,610c-0.1,0.5-0.3,0.9-0.6,1.2c-0.2,0.4-0.5,0.7-0.9,1c-0.3,0.3-0.7,0.5-1,0.7
|
|
268
|
+
c-0.4,0.2-0.7,0.4-1.1,0.5c0.4-0.2,0.7-0.4,1-0.7c0.3-0.3,0.6-0.5,0.9-0.8c0.3-0.3,0.5-0.6,0.6-1c0.2-0.3,0.3-0.7,0.3-1.1
|
|
269
|
+
L889.8,610z" class="st4"></path>
|
|
270
|
+
</g>
|
|
271
|
+
<g>
|
|
272
|
+
<path d="M893.9,610.2c-0.1,0.5-0.3,0.9-0.6,1.2c-0.2,0.4-0.5,0.7-0.9,1c-0.3,0.3-0.7,0.5-1,0.7
|
|
273
|
+
c-0.4,0.2-0.7,0.4-1.1,0.5c0.4-0.2,0.7-0.4,1-0.7c0.3-0.3,0.6-0.5,0.9-0.8c0.3-0.3,0.5-0.6,0.6-1c0.2-0.3,0.3-0.7,0.3-1.1
|
|
274
|
+
L893.9,610.2z" class="st4"></path>
|
|
275
|
+
</g>
|
|
276
|
+
<g>
|
|
277
|
+
<path d="M877.5,606.9c0.1-0.6,0.1-1.3,0.1-1.9c0-0.6-0.2-1.3-0.4-1.9c-0.2-0.6-0.5-1.2-0.8-1.8
|
|
278
|
+
c-0.3-0.6-0.8-1.1-1.2-1.6c0.5,0.4,1,0.9,1.4,1.4c0.4,0.5,0.8,1.1,1,1.7c0.3,0.6,0.5,1.3,0.6,2c0.1,0.7,0.2,1.4,0.1,2.1
|
|
279
|
+
L877.5,606.9z" class="st4"></path>
|
|
280
|
+
</g>
|
|
281
|
+
<g>
|
|
282
|
+
<path d="M881.9,608.4c0.1-1.6-0.1-3.3-0.5-4.9c-0.2-0.8-0.5-1.6-0.9-2.3c-0.4-0.7-0.9-1.4-1.5-2
|
|
283
|
+
c0.6,0.6,1.2,1.2,1.6,1.9c0.4,0.7,0.8,1.5,1.1,2.3c0.3,0.8,0.5,1.7,0.6,2.5c0.1,0.9,0.2,1.7,0.2,2.6L881.9,608.4z" class="st4"></path>
|
|
284
|
+
</g>
|
|
285
|
+
<g>
|
|
286
|
+
<path d="M888.1,609.6c0.1-0.9,0.1-1.9,0-2.9c-0.1-1-0.3-1.9-0.5-2.9c-0.3-0.9-0.7-1.8-1.2-2.7
|
|
287
|
+
c-0.5-0.8-1.2-1.6-1.9-2.2c0.8,0.6,1.5,1.3,2.1,2.1c0.6,0.8,1.1,1.7,1.4,2.7c0.3,0.9,0.6,1.9,0.7,2.9c0.1,1,0.2,2,0.2,3
|
|
288
|
+
L888.1,609.6z" class="st4"></path>
|
|
289
|
+
</g>
|
|
290
|
+
<g>
|
|
291
|
+
<path d="M895.6,609.5c0-0.9-0.1-1.8-0.4-2.7c-0.3-0.9-0.7-1.8-1.1-2.6c-0.5-0.8-1-1.6-1.7-2.3c-0.3-0.4-0.7-0.7-1-1
|
|
292
|
+
l-1.1-1l1.1,0.9c0.4,0.3,0.7,0.6,1.1,1c0.7,0.7,1.3,1.4,1.9,2.2c0.5,0.8,1,1.7,1.3,2.6c0.3,0.9,0.6,1.9,0.6,2.9L895.6,609.5z" class="st4"></path>
|
|
293
|
+
</g>
|
|
294
|
+
</g>
|
|
295
|
+
<g>
|
|
296
|
+
<linearGradient y2="641.2988" x2="889.0664" y1="641.2988" x1="868.9338" gradientUnits="userSpaceOnUse" id="SVGID_14_">
|
|
297
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
298
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
299
|
+
</linearGradient>
|
|
300
|
+
<path d="M869.4,625.9c0,0,4.3,0.1,8,1.7c3.7,1.5,15.5,10.5,10.3,23.8c0,0-0.8,2.5,0.2,4.4c1,1.9-13.9,3.1-18.2-16.7
|
|
301
|
+
C869.8,639,868.1,632.4,869.4,625.9z" class="st16"></path>
|
|
302
|
+
<g>
|
|
303
|
+
<path d="M871.6,628.8c0.5,2.6,1.2,5.2,2.1,7.8c0.9,2.5,1.9,5,3.2,7.4c1.3,2.3,2.8,4.5,4.5,6.5c1.7,2,3.8,3.7,6,5.2
|
|
304
|
+
l0,0.1c-2.5-1.1-4.7-2.8-6.6-4.7c-1.8-2-3.3-4.4-4.5-6.8c-1.2-2.4-2.2-4.9-3-7.5C872.5,634.1,871.9,631.5,871.6,628.8
|
|
305
|
+
L871.6,628.8z" class="st4"></path>
|
|
306
|
+
</g>
|
|
307
|
+
<g>
|
|
308
|
+
<path d="M874.1,638.5c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.8-0.4-1.1-0.7c-0.3-0.3-0.6-0.6-0.8-0.9
|
|
309
|
+
c-0.2-0.3-0.4-0.7-0.6-1.1c0.2,0.3,0.5,0.6,0.8,0.9c0.3,0.3,0.6,0.5,0.9,0.8c0.3,0.2,0.7,0.4,1,0.5c0.3,0.1,0.8,0.1,1,0.1
|
|
310
|
+
L874.1,638.5z" class="st4"></path>
|
|
311
|
+
</g>
|
|
312
|
+
<g>
|
|
313
|
+
<path d="M876,642.9c-0.4,0.2-0.7,0.2-1.1,0.3c-0.3,0-0.7,0-1-0.1c-0.7-0.2-1.2-0.5-1.7-1c0.3,0.2,0.6,0.3,0.9,0.4
|
|
314
|
+
c0.3,0.1,0.6,0.2,0.9,0.2c0.3,0,0.6,0,0.9-0.1c0.3-0.1,0.6-0.2,0.7-0.3L876,642.9z" class="st4"></path>
|
|
315
|
+
</g>
|
|
316
|
+
<g>
|
|
317
|
+
<path d="M878.6,647.7c-0.5,0.2-0.9,0.3-1.3,0.3c-0.4,0-0.9,0-1.3-0.1c-0.4-0.1-0.8-0.2-1.2-0.4
|
|
318
|
+
c-0.4-0.2-0.8-0.3-1.1-0.6c0.4,0.2,0.8,0.3,1.2,0.4c0.4,0.1,0.8,0.1,1.2,0.2c0.4,0,0.8,0,1.2-0.1c0.4-0.1,0.8-0.2,1-0.4
|
|
319
|
+
L878.6,647.7z" class="st4"></path>
|
|
320
|
+
</g>
|
|
321
|
+
<g>
|
|
322
|
+
<path d="M881,651c-0.5,0.2-0.9,0.3-1.3,0.3c-0.4,0-0.9,0-1.3-0.1c-0.4-0.1-0.8-0.2-1.2-0.4c-0.4-0.2-0.8-0.3-1.1-0.6
|
|
323
|
+
c0.4,0.2,0.8,0.3,1.2,0.4c0.4,0.1,0.8,0.1,1.2,0.2c0.4,0,0.8,0,1.2-0.1c0.4-0.1,0.8-0.2,1-0.4L881,651z" class="st4"></path>
|
|
324
|
+
</g>
|
|
325
|
+
<g>
|
|
326
|
+
<path d="M873.3,636.2c0.5-0.3,1.1-0.7,1.5-1.1c0.5-0.4,0.9-0.9,1.2-1.5c0.3-0.5,0.7-1.1,0.9-1.8
|
|
327
|
+
c0.2-0.6,0.3-1.3,0.4-1.9c0,0.7-0.1,1.3-0.3,2c-0.1,0.7-0.4,1.3-0.7,1.9c-0.3,0.6-0.7,1.2-1.2,1.7c-0.5,0.5-1,1-1.6,1.4
|
|
328
|
+
L873.3,636.2z" class="st4"></path>
|
|
329
|
+
</g>
|
|
330
|
+
<g>
|
|
331
|
+
<path d="M874.8,640.5c1.3-1,2.5-2.1,3.5-3.5c0.5-0.7,0.9-1.4,1.3-2.2c0.3-0.8,0.6-1.6,0.7-2.4c0,0.8-0.2,1.7-0.5,2.5
|
|
332
|
+
c-0.3,0.8-0.7,1.6-1.1,2.3c-0.5,0.7-1,1.4-1.6,2c-0.6,0.6-1.2,1.2-1.9,1.8L874.8,640.5z" class="st4"></path>
|
|
333
|
+
</g>
|
|
334
|
+
<g>
|
|
335
|
+
<path d="M877.8,646.1c0.8-0.5,1.6-1.1,2.3-1.8c0.7-0.7,1.3-1.4,1.9-2.2c0.6-0.8,1-1.7,1.3-2.6
|
|
336
|
+
c0.3-0.9,0.5-1.9,0.5-2.9c0,1-0.1,2-0.4,2.9c-0.3,1-0.7,1.9-1.2,2.7c-0.5,0.9-1.1,1.7-1.8,2.4c-0.7,0.7-1.4,1.4-2.3,2
|
|
337
|
+
L877.8,646.1z" class="st4"></path>
|
|
338
|
+
</g>
|
|
339
|
+
<g>
|
|
340
|
+
<path d="M882.6,651.9c0.7-0.5,1.3-1.2,1.9-2c0.5-0.8,1-1.6,1.3-2.5c0.3-0.9,0.6-1.8,0.7-2.7c0.1-0.5,0.1-0.9,0.2-1.4
|
|
341
|
+
l0.1-1.4l0,1.4c0,0.5,0,1-0.1,1.4c-0.1,1-0.3,1.9-0.6,2.8c-0.3,0.9-0.7,1.8-1.2,2.7c-0.5,0.8-1.1,1.6-1.9,2.3L882.6,651.9z" class="st4"></path>
|
|
342
|
+
</g>
|
|
343
|
+
</g>
|
|
344
|
+
<g>
|
|
345
|
+
<linearGradient y2="477.9439" x2="912.3727" y1="477.9439" x1="885.8563" gradientUnits="userSpaceOnUse" id="SVGID_15_">
|
|
346
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
347
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
348
|
+
</linearGradient>
|
|
349
|
+
<path d="M885.9,465.2c0,0,4.4-0.9,8.5-0.2s18.4,6.5,16.6,20.3c0,0-0.2,2.5,1.3,4.1c1.5,1.6-13.2,6-22.7-11.8
|
|
350
|
+
C889.6,477.6,886.2,471.7,885.9,465.2z" class="st17"></path>
|
|
351
|
+
<g>
|
|
352
|
+
<path d="M888.8,467.5c1.2,2.5,2.6,4.8,4.2,7c1.6,2.2,3.3,4.4,5.2,6.3c1.9,1.9,4,3.6,6.3,5.1c2.3,1.5,4.7,2.6,7.3,3.5
|
|
353
|
+
l0,0.1c-2.7-0.5-5.3-1.5-7.7-2.9c-2.3-1.5-4.4-3.4-6.3-5.4c-1.9-2-3.5-4.2-5-6.5C891.1,472.4,889.8,470,888.8,467.5L888.8,467.5z" class="st4"></path>
|
|
354
|
+
</g>
|
|
355
|
+
<g>
|
|
356
|
+
<path d="M893.7,476.2c-0.5,0.1-0.9,0.1-1.4,0c-0.4-0.1-0.9-0.2-1.2-0.4c-0.4-0.2-0.7-0.4-1.1-0.7
|
|
357
|
+
c-0.3-0.3-0.6-0.6-0.9-0.9c0.3,0.3,0.7,0.5,1,0.7c0.4,0.2,0.7,0.4,1.1,0.5c0.4,0.1,0.8,0.2,1.2,0.2c0.4,0,0.8,0,1.1-0.2
|
|
358
|
+
L893.7,476.2z" class="st4"></path>
|
|
359
|
+
</g>
|
|
360
|
+
<g>
|
|
361
|
+
<path d="M896.9,480c-0.3,0.3-0.7,0.4-1,0.5c-0.3,0.1-0.7,0.1-1.1,0.1c-0.7,0-1.4-0.2-1.9-0.6c0.3,0.1,0.6,0.2,1,0.2
|
|
362
|
+
c0.3,0,0.6,0,1,0c0.3-0.1,0.6-0.1,0.9-0.3c0.3-0.1,0.5-0.3,0.7-0.5L896.9,480z" class="st4"></path>
|
|
363
|
+
</g>
|
|
364
|
+
<g>
|
|
365
|
+
<path d="M900.7,483.9c-0.4,0.3-0.8,0.5-1.3,0.6c-0.4,0.1-0.9,0.2-1.3,0.2c-0.4,0-0.9,0-1.3-0.1
|
|
366
|
+
c-0.4-0.1-0.8-0.2-1.3-0.3c0.4,0.1,0.9,0.1,1.3,0.1c0.4,0,0.8,0,1.3-0.1c0.4-0.1,0.8-0.2,1.2-0.4c0.4-0.2,0.7-0.4,1-0.6
|
|
367
|
+
L900.7,483.9z" class="st4"></path>
|
|
368
|
+
</g>
|
|
369
|
+
<g>
|
|
370
|
+
<path d="M904,486.5c-0.4,0.3-0.8,0.5-1.3,0.6c-0.4,0.1-0.9,0.2-1.3,0.2c-0.4,0-0.9,0-1.3-0.1
|
|
371
|
+
c-0.4-0.1-0.8-0.2-1.3-0.3c0.4,0.1,0.9,0.1,1.3,0.1c0.4,0,0.8,0,1.3-0.1c0.4-0.1,0.8-0.2,1.2-0.4c0.4-0.2,0.7-0.4,1-0.6
|
|
372
|
+
L904,486.5z" class="st4"></path>
|
|
373
|
+
</g>
|
|
374
|
+
<g>
|
|
375
|
+
<path d="M892.4,474.1c0.5-0.4,0.9-0.9,1.2-1.4c0.4-0.5,0.7-1.1,0.9-1.7c0.2-0.6,0.4-1.2,0.4-1.9
|
|
376
|
+
c0.1-0.6,0-1.3-0.1-1.9c0.1,0.6,0.3,1.3,0.3,2c0,0.7-0.1,1.3-0.2,2c-0.2,0.7-0.4,1.3-0.8,1.9c-0.3,0.6-0.7,1.1-1.2,1.6
|
|
377
|
+
L892.4,474.1z" class="st4"></path>
|
|
378
|
+
</g>
|
|
379
|
+
<g>
|
|
380
|
+
<path d="M895.1,477.9c0.5-0.6,1-1.2,1.5-1.9c0.5-0.7,0.9-1.4,1.2-2.1c0.3-0.8,0.6-1.5,0.7-2.3c0.1-0.8,0.1-1.6,0-2.5
|
|
381
|
+
c0.2,0.8,0.2,1.7,0.1,2.5c-0.1,0.8-0.3,1.7-0.6,2.5c-0.3,0.8-0.6,1.6-1.1,2.3c-0.4,0.7-0.9,1.4-1.4,2.1L895.1,477.9z" class="st4"></path>
|
|
382
|
+
</g>
|
|
383
|
+
<g>
|
|
384
|
+
<path d="M899.6,482.6c0.7-0.6,1.3-1.4,1.8-2.2c0.5-0.8,1-1.6,1.3-2.5c0.4-0.9,0.6-1.8,0.7-2.8c0.1-1,0-1.9-0.2-2.9
|
|
385
|
+
c0.3,0.9,0.4,1.9,0.4,2.9c0,1-0.2,2-0.5,2.9c-0.3,0.9-0.7,1.8-1.2,2.7c-0.5,0.9-1.1,1.7-1.8,2.4L899.6,482.6z" class="st4"></path>
|
|
386
|
+
</g>
|
|
387
|
+
<g>
|
|
388
|
+
<path d="M905.9,487c0.6-0.6,1-1.5,1.4-2.3c0.3-0.9,0.5-1.8,0.7-2.7c0.1-0.9,0.1-1.9,0-2.8c0-0.5-0.1-0.9-0.2-1.4
|
|
389
|
+
l-0.3-1.4l0.4,1.4c0.1,0.5,0.2,0.9,0.3,1.4c0.1,0.9,0.2,1.9,0.1,2.8c-0.1,1-0.2,1.9-0.5,2.8c-0.3,0.9-0.7,1.8-1.3,2.6L905.9,487z" class="st4"></path>
|
|
390
|
+
</g>
|
|
391
|
+
</g>
|
|
392
|
+
<g>
|
|
393
|
+
<linearGradient y2="587.4429" x2="913.8541" y1="587.4429" x1="653.9684" gradientUnits="userSpaceOnUse" id="SVGID_16_">
|
|
394
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
395
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
396
|
+
</linearGradient>
|
|
397
|
+
<path d="M840.3,277.9c8.7,12.7,16.8,25.9,24.2,39.4c7.3,13.6,13.8,27.6,19.6,41.9c5.7,14.3,10.6,29,14.7,43.9
|
|
398
|
+
c4.1,14.9,7.2,30.1,9.8,45.3c2.3,15.3,3.9,30.7,4.6,46.1c0.2,3.9,0.2,7.7,0.3,11.6l0.1,5.8l-0.1,5.8c-0.1,3.9-0.1,7.7-0.2,11.6
|
|
399
|
+
l-0.6,11.6c-0.1,3.9-0.6,7.7-1,11.6c-0.4,3.8-0.7,7.7-1.2,11.5l-1.5,11.5c-0.6,3.8-1.3,7.6-1.9,11.4c-2.8,15.2-6.2,30.3-10.7,45.1
|
|
400
|
+
c-17.8,59.3-49.1,114.4-90.8,160.1l-1.9,2.2l-2,2.1l-4,4.2l-4,4.2c-1.4,1.4-2.8,2.7-4.1,4c-2.8,2.7-5.5,5.4-8.4,8l-8.6,7.8
|
|
401
|
+
c-11.7,10.1-23.8,19.7-36.5,28.6c-12.7,8.7-25.9,16.8-39.4,24.2c-13.6,7.3-27.6,13.8-41.9,19.6c14.2-6.1,28-12.9,41.5-20.3
|
|
402
|
+
c13.4-7.6,26.4-15.8,39-24.7c12.5-8.9,24.5-18.6,36.1-28.8l8.5-7.8c2.8-2.6,5.5-5.4,8.3-8.1c1.4-1.4,2.8-2.7,4.1-4.1l4-4.2l4-4.2
|
|
403
|
+
l2-2.1l1.9-2.2c20.5-22.9,38.7-47.9,53.7-74.7c7.6-13.3,14.3-27.2,20.3-41.3c6.1-14.1,11.2-28.6,15.6-43.3
|
|
404
|
+
c17.8-58.8,22-121.6,13-182.5c-2.4-15.2-5.4-30.3-9.3-45.2c-4-14.8-8.7-29.5-14.3-43.9c-5.6-14.3-11.9-28.4-19-42.1
|
|
405
|
+
C856.6,304,848.8,290.8,840.3,277.9z" class="st18"></path>
|
|
406
|
+
</g>
|
|
407
|
+
<g>
|
|
408
|
+
<linearGradient y2="582.3642" x2="942.1803" y1="582.3642" x1="903.5617" gradientUnits="userSpaceOnUse" id="SVGID_17_">
|
|
409
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
410
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
411
|
+
</linearGradient>
|
|
412
|
+
<path d="M942.2,572.4c0,0-4.8-2.4-9.7-3.1c-5-0.6-23.3,1.4-25.8,17.9c0,0-0.6,3-2.9,4.3s13.2,11.3,30-6.1
|
|
413
|
+
C933.8,585.4,939.6,579.7,942.2,572.4z" class="st19"></path>
|
|
414
|
+
<g>
|
|
415
|
+
<path d="M938.2,574.1c-2.1,2.5-4.5,4.8-6.9,7c-2.5,2.1-5.2,4.1-8,5.8c-2.8,1.7-5.8,3.1-9,4.1
|
|
416
|
+
c-3.2,0.9-6.5,1.2-9.8,0.9l0-0.1c3.3-0.1,6.5-0.6,9.6-1.5c3.1-1,6.1-2.3,8.9-3.9c2.8-1.6,5.5-3.5,8-5.6
|
|
417
|
+
C933.5,578.7,935.9,576.5,938.2,574.1L938.2,574.1z" class="st4"></path>
|
|
418
|
+
</g>
|
|
419
|
+
<g>
|
|
420
|
+
<path d="M930,581.7c0.3,0.2,0.8,0.4,1.2,0.5c0.5,0.1,0.9,0.1,1.4,0.1c0.5,0,1-0.1,1.4-0.2c0.5-0.1,0.9-0.3,1.4-0.5
|
|
421
|
+
c-0.4,0.3-0.9,0.5-1.3,0.7c-0.5,0.2-1,0.3-1.5,0.4c-0.5,0.1-1,0.1-1.6,0.1c-0.5-0.1-1-0.2-1.6-0.5L930,581.7z" class="st4"></path>
|
|
422
|
+
</g>
|
|
423
|
+
<g>
|
|
424
|
+
<path d="M925.3,585.3c0.1,0.3,0.4,0.6,0.6,0.8c0.3,0.2,0.6,0.4,0.9,0.6c0.3,0.1,0.7,0.3,1.1,0.3
|
|
425
|
+
c0.4,0.1,0.8,0.1,1.2,0.1c-0.4,0.1-0.8,0.1-1.2,0.1c-0.4,0-0.8-0.1-1.2-0.2c-0.4-0.1-0.8-0.3-1.1-0.5c-0.4-0.2-0.7-0.5-1-0.9
|
|
426
|
+
L925.3,585.3z" class="st4"></path>
|
|
427
|
+
</g>
|
|
428
|
+
<g>
|
|
429
|
+
<path d="M919.6,588.6c0.2,0.4,0.6,0.7,0.9,1.1c0.4,0.3,0.8,0.6,1.2,0.8c0.4,0.2,0.9,0.4,1.4,0.5
|
|
430
|
+
c0.5,0.1,1,0.2,1.5,0.3c-0.5,0-1,0-1.5-0.1c-0.5-0.1-1-0.2-1.5-0.4c-0.5-0.2-1-0.4-1.4-0.7c-0.5-0.3-0.9-0.6-1.2-1.1L919.6,588.6
|
|
431
|
+
z" class="st4"></path>
|
|
432
|
+
</g>
|
|
433
|
+
<g>
|
|
434
|
+
<path d="M915,590.4c0.2,0.4,0.6,0.7,0.9,1.1c0.4,0.3,0.8,0.6,1.2,0.8c0.4,0.2,0.9,0.4,1.4,0.5c0.5,0.1,1,0.2,1.5,0.3
|
|
435
|
+
c-0.5,0-1,0-1.5-0.1c-0.5-0.1-1-0.2-1.5-0.4c-0.5-0.2-1-0.4-1.4-0.7c-0.5-0.3-0.9-0.6-1.2-1.1L915,590.4z" class="st4"></path>
|
|
436
|
+
</g>
|
|
437
|
+
<g>
|
|
438
|
+
<path d="M931,580.9c-0.4-0.7-0.7-1.5-0.9-2.3c-0.2-0.8-0.3-1.6-0.3-2.4c0-0.8,0.1-1.6,0.4-2.4
|
|
439
|
+
c0.2-0.8,0.5-1.5,0.9-2.2c-0.3,0.7-0.6,1.4-0.7,2.2c-0.2,0.8-0.2,1.5-0.2,2.3c0,0.8,0.2,1.5,0.4,2.2c0.2,0.7,0.6,1.4,1,2
|
|
440
|
+
L931,580.9z" class="st4"></path>
|
|
441
|
+
</g>
|
|
442
|
+
<g>
|
|
443
|
+
<path d="M926.6,584.3c-0.4-1-0.7-1.9-0.9-2.9c-0.2-1-0.4-2-0.5-3c-0.1-1,0-2,0.1-3c0.2-1,0.5-1.9,1-2.8
|
|
444
|
+
c-0.4,0.9-0.7,1.9-0.8,2.8c-0.1,1-0.1,2,0.1,2.9c0.1,1,0.4,1.9,0.6,2.9c0.3,0.9,0.6,1.9,1.1,2.7L926.6,584.3z" class="st4"></path>
|
|
445
|
+
</g>
|
|
446
|
+
<g>
|
|
447
|
+
<path d="M919.9,588.2c-0.5-1.1-0.9-2.2-1.2-3.3c-0.3-1.1-0.5-2.3-0.5-3.5c-0.1-1.2,0.1-2.4,0.4-3.5
|
|
448
|
+
c0.3-1.1,0.8-2.2,1.4-3.2c-0.5,1-1,2.1-1.2,3.2c-0.2,1.1-0.3,2.3-0.2,3.4c0.1,1.1,0.3,2.3,0.7,3.4c0.3,1.1,0.8,2.2,1.3,3.1
|
|
449
|
+
L919.9,588.2z" class="st4"></path>
|
|
450
|
+
</g>
|
|
451
|
+
<g>
|
|
452
|
+
<path d="M911.2,591.1c-0.5-1.1-0.6-2.3-0.7-3.4c0-1.2,0.1-2.3,0.3-3.4c0.3-1.1,0.6-2.2,1.1-3.2
|
|
453
|
+
c0.2-0.5,0.5-1,0.8-1.5l0.9-1.4l-0.8,1.5c-0.2,0.5-0.5,1-0.7,1.5c-0.4,1-0.7,2.1-0.9,3.2c-0.2,1.1-0.2,2.2-0.1,3.3
|
|
454
|
+
c0.1,1.1,0.3,2.2,0.8,3.1L911.2,591.1z" class="st4"></path>
|
|
455
|
+
</g>
|
|
456
|
+
</g>
|
|
457
|
+
<g>
|
|
458
|
+
<linearGradient y2="623.5929" x2="943.7971" y1="623.5929" x1="896.0834" gradientUnits="userSpaceOnUse" id="SVGID_18_">
|
|
459
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
460
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
461
|
+
</linearGradient>
|
|
462
|
+
<path d="M943.8,617.6c0,0-4.7-3.9-10.1-5.8c-5.4-1.9-26.2-4.2-33.1,13.5c0,0-1.4,3.2-4.2,4.1s11.9,15.8,34.8,0.6
|
|
463
|
+
C931.2,630,939.2,625.1,943.8,617.6z" class="st20"></path>
|
|
464
|
+
<g>
|
|
465
|
+
<path d="M938.9,618.4c-3,2.3-6.1,4.3-9.4,6c-3.3,1.8-6.7,3.3-10.3,4.5c-3.6,1.2-7.2,2.1-11,2.3
|
|
466
|
+
c-1.9,0.1-3.8,0-5.6-0.2c-1.9-0.2-3.7-0.6-5.5-1.2l0-0.1c1.8,0.4,3.7,0.7,5.5,0.8c1.8,0.1,3.7,0.1,5.5-0.1
|
|
467
|
+
c3.7-0.3,7.3-1,10.9-2.1c3.5-1.1,7-2.5,10.3-4.2C932.6,622.4,935.9,620.6,938.9,618.4L938.9,618.4z" class="st4"></path>
|
|
468
|
+
</g>
|
|
469
|
+
<g>
|
|
470
|
+
<path d="M927.9,624.9c0.3,0.3,0.8,0.7,1.3,0.9c0.5,0.2,1,0.4,1.6,0.5c0.5,0.1,1.1,0.1,1.7,0.1c0.6,0,1.1-0.1,1.7-0.2
|
|
471
|
+
c-0.5,0.2-1.1,0.3-1.7,0.4c-0.6,0.1-1.1,0.1-1.7,0.1c-0.6,0-1.2-0.1-1.7-0.3c-0.6-0.2-1.1-0.5-1.6-0.9L927.9,624.9z" class="st4"></path>
|
|
472
|
+
</g>
|
|
473
|
+
<g>
|
|
474
|
+
<path d="M921.8,627.8c0.1,0.3,0.3,0.7,0.5,1.1c0.2,0.3,0.6,0.6,0.9,0.9c0.4,0.2,0.7,0.5,1.2,0.6
|
|
475
|
+
c0.4,0.2,0.8,0.3,1.3,0.3c-0.4,0-0.9-0.1-1.3-0.2c-0.4-0.1-0.9-0.3-1.3-0.5c-0.4-0.2-0.8-0.5-1.1-0.9c-0.3-0.4-0.6-0.7-0.8-1.2
|
|
476
|
+
L921.8,627.8z" class="st4"></path>
|
|
477
|
+
</g>
|
|
478
|
+
<g>
|
|
479
|
+
<path d="M914.7,630c0.1,0.5,0.4,1,0.8,1.4c0.3,0.4,0.7,0.8,1.2,1.2c0.4,0.4,0.9,0.7,1.4,0.9c0.5,0.3,1.1,0.5,1.6,0.7
|
|
480
|
+
c-0.6-0.1-1.1-0.3-1.7-0.5c-0.5-0.2-1.1-0.5-1.6-0.8c-0.5-0.3-1-0.7-1.4-1.1c-0.4-0.5-0.8-0.9-1.1-1.5L914.7,630z" class="st4"></path>
|
|
481
|
+
</g>
|
|
482
|
+
<g>
|
|
483
|
+
<path d="M909.1,630.9c0.1,0.5,0.4,1,0.8,1.4c0.3,0.4,0.7,0.8,1.2,1.2c0.4,0.4,0.9,0.7,1.4,0.9
|
|
484
|
+
c0.5,0.3,1.1,0.5,1.6,0.7c-0.6-0.1-1.1-0.3-1.7-0.5c-0.5-0.2-1.1-0.5-1.6-0.8c-0.5-0.3-1-0.7-1.4-1.1c-0.4-0.5-0.8-0.9-1.1-1.5
|
|
485
|
+
L909.1,630.9z" class="st4"></path>
|
|
486
|
+
</g>
|
|
487
|
+
<g>
|
|
488
|
+
<path d="M929.3,624.2c-0.3-0.9-0.4-1.8-0.4-2.7c0-0.9,0.1-1.8,0.3-2.7c0.2-0.9,0.5-1.7,1-2.5c0.4-0.8,1-1.5,1.5-2.2
|
|
489
|
+
c-0.5,0.7-1,1.5-1.4,2.3c-0.4,0.8-0.6,1.7-0.8,2.5c-0.1,0.9-0.2,1.7-0.1,2.6c0.1,0.9,0.3,1.7,0.6,2.5L929.3,624.2z" class="st4"></path>
|
|
490
|
+
</g>
|
|
491
|
+
<g>
|
|
492
|
+
<path d="M923.6,626.9c-0.2-1.2-0.3-2.3-0.3-3.4c0-1.1,0-2.3,0.2-3.4c0.2-1.1,0.5-2.2,0.9-3.3c0.4-1.1,1-2,1.8-2.9
|
|
493
|
+
c-0.7,0.9-1.2,1.9-1.6,3c-0.3,1.1-0.6,2.2-0.7,3.3c-0.1,1.1-0.1,2.2,0,3.3c0.1,1.1,0.2,2.2,0.5,3.3L923.6,626.9z" class="st4"></path>
|
|
494
|
+
</g>
|
|
495
|
+
<g>
|
|
496
|
+
<path d="M915.2,629.6c-0.3-1.3-0.5-2.7-0.5-4c0-1.3,0-2.7,0.3-4c0.2-1.3,0.7-2.6,1.2-3.8c0.6-1.2,1.4-2.3,2.3-3.2
|
|
497
|
+
c-0.9,1-1.7,2.1-2.2,3.3c-0.5,1.2-0.9,2.5-1,3.8c-0.2,1.3-0.2,2.6-0.1,3.9c0.1,1.3,0.3,2.6,0.7,3.8L915.2,629.6z" class="st4"></path>
|
|
498
|
+
</g>
|
|
499
|
+
<g>
|
|
500
|
+
<path d="M904.8,630.7c-0.2-1.4-0.1-2.7,0.1-4c0.2-1.3,0.7-2.5,1.2-3.7c0.6-1.2,1.2-2.3,2-3.3c0.4-0.5,0.8-1,1.2-1.5
|
|
501
|
+
l1.3-1.4l-1.3,1.4c-0.4,0.5-0.8,1-1.1,1.5c-0.7,1.1-1.3,2.2-1.8,3.4c-0.5,1.2-0.8,2.4-1,3.6c-0.2,1.2-0.2,2.5,0.1,3.7
|
|
502
|
+
L904.8,630.7z" class="st4"></path>
|
|
503
|
+
</g>
|
|
504
|
+
</g>
|
|
505
|
+
<g>
|
|
506
|
+
<linearGradient y2="663.7239" x2="916.9387" y1="663.7239" x1="882.8816" gradientUnits="userSpaceOnUse" id="SVGID_19_">
|
|
507
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
508
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
509
|
+
</linearGradient>
|
|
510
|
+
<path d="M916.9,659.4c0,0-3.4-2.8-7.2-4.2c-3.8-1.4-18.7-3-23.6,9.7c0,0-1,2.3-3,2.9c-2,0.6,8.5,11.3,24.8,0.5
|
|
511
|
+
C908,668.3,913.6,664.8,916.9,659.4z" class="st21"></path>
|
|
512
|
+
<g>
|
|
513
|
+
<path d="M913.5,660c-2.1,1.6-4.4,3.1-6.7,4.3c-2.4,1.3-4.8,2.4-7.3,3.2c-2.5,0.8-5.2,1.5-7.9,1.7
|
|
514
|
+
c-2.7,0.1-5.4-0.2-7.9-1.1l0-0.1c2.6,0.4,5.3,0.6,7.9,0.4c2.6-0.3,5.2-0.7,7.7-1.5c2.5-0.8,5-1.8,7.3-3
|
|
515
|
+
C908.9,662.9,911.3,661.5,913.5,660L913.5,660z" class="st4"></path>
|
|
516
|
+
</g>
|
|
517
|
+
<g>
|
|
518
|
+
<path d="M905.7,664.6c0.2,0.2,0.5,0.5,0.8,0.6c0.3,0.2,0.7,0.3,1.1,0.4c0.4,0.1,0.8,0.1,1.2,0.1
|
|
519
|
+
c0.4,0,0.8-0.1,1.2-0.1c-0.4,0.1-0.8,0.3-1.2,0.3c-0.4,0.1-0.8,0.1-1.2,0.1c-0.4,0-0.8-0.1-1.3-0.2c-0.4-0.1-0.8-0.3-1.2-0.7
|
|
520
|
+
L905.7,664.6z" class="st4"></path>
|
|
521
|
+
</g>
|
|
522
|
+
<g>
|
|
523
|
+
<path d="M901.4,666.7c0,0.2,0.2,0.5,0.3,0.7c0.2,0.2,0.4,0.5,0.6,0.6c0.5,0.4,1.1,0.6,1.7,0.7
|
|
524
|
+
c-0.6,0-1.3-0.1-1.9-0.4c-0.3-0.2-0.6-0.4-0.8-0.6c-0.3-0.3-0.5-0.5-0.6-0.9L901.4,666.7z" class="st4"></path>
|
|
525
|
+
</g>
|
|
526
|
+
<g>
|
|
527
|
+
<path d="M896.3,668.3c0.1,0.3,0.3,0.7,0.5,1c0.2,0.3,0.5,0.6,0.8,0.9c0.3,0.3,0.7,0.5,1,0.7c0.4,0.2,0.7,0.4,1.1,0.5
|
|
528
|
+
c-0.8-0.2-1.6-0.5-2.4-0.9c-0.4-0.2-0.7-0.5-1-0.8c-0.3-0.3-0.6-0.6-0.8-1.1L896.3,668.3z" class="st4"></path>
|
|
529
|
+
</g>
|
|
530
|
+
<g>
|
|
531
|
+
<path d="M892.3,668.9c0.1,0.3,0.3,0.7,0.5,1c0.2,0.3,0.5,0.6,0.8,0.9c0.3,0.3,0.7,0.5,1,0.7c0.4,0.2,0.7,0.4,1.1,0.5
|
|
532
|
+
c-0.8-0.2-1.6-0.5-2.4-0.9c-0.4-0.2-0.7-0.5-1-0.8c-0.3-0.3-0.6-0.6-0.8-1.1L892.3,668.9z" class="st4"></path>
|
|
533
|
+
</g>
|
|
534
|
+
<g>
|
|
535
|
+
<path d="M906.5,664.2c-0.2-0.7-0.3-1.3-0.3-2c0-0.7,0.1-1.3,0.2-1.9c0.2-0.6,0.4-1.2,0.7-1.8
|
|
536
|
+
c0.3-0.6,0.7-1.1,1.1-1.6c-0.4,0.5-0.7,1-1,1.6c-0.3,0.6-0.4,1.2-0.5,1.8c-0.1,0.6-0.1,1.2,0,1.8c0.1,0.6,0.2,1.2,0.4,1.7
|
|
537
|
+
L906.5,664.2z" class="st4"></path>
|
|
538
|
+
</g>
|
|
539
|
+
<g>
|
|
540
|
+
<path d="M902.4,666.1c-0.1-0.8-0.2-1.6-0.2-2.5c0-0.8,0-1.6,0.2-2.5c0.1-0.8,0.3-1.6,0.7-2.4
|
|
541
|
+
c0.3-0.8,0.8-1.4,1.3-2.1c-0.5,0.7-0.9,1.4-1.1,2.1c-0.2,0.8-0.4,1.5-0.5,2.3c-0.1,1.6,0,3.2,0.4,4.7L902.4,666.1z" class="st4"></path>
|
|
542
|
+
</g>
|
|
543
|
+
<g>
|
|
544
|
+
<path d="M896.5,668.1c-0.2-1-0.3-1.9-0.4-2.9c0-1,0-1.9,0.2-2.9c0.2-0.9,0.5-1.9,0.9-2.7c0.4-0.9,1-1.6,1.7-2.3
|
|
545
|
+
c-0.6,0.7-1.2,1.5-1.5,2.4c-0.4,0.9-0.6,1.8-0.7,2.7c-0.1,0.9-0.1,1.9,0,2.8c0.1,0.9,0.3,1.8,0.5,2.7L896.5,668.1z" class="st4"></path>
|
|
546
|
+
</g>
|
|
547
|
+
<g>
|
|
548
|
+
<path d="M889,668.9c-0.2-1-0.1-1.9,0.1-2.9c0.2-0.9,0.5-1.8,0.9-2.7c0.4-0.8,0.9-1.6,1.5-2.4
|
|
549
|
+
c0.3-0.4,0.6-0.7,0.9-1.1l1-1l-0.9,1c-0.3,0.4-0.6,0.7-0.8,1.1c-0.5,0.8-0.9,1.6-1.3,2.4c-0.3,0.8-0.6,1.7-0.7,2.6
|
|
550
|
+
c-0.1,0.9-0.1,1.8,0.1,2.6L889,668.9z" class="st4"></path>
|
|
551
|
+
</g>
|
|
552
|
+
</g>
|
|
553
|
+
<g>
|
|
554
|
+
<linearGradient y2="694.6404" x2="905.8707" y1="694.6404" x1="870.7837" gradientUnits="userSpaceOnUse" id="SVGID_20_">
|
|
555
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
556
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
557
|
+
</linearGradient>
|
|
558
|
+
<path d="M905.9,696.6c0,0-2.3-3.7-5.4-6.3c-3.2-2.5-16.7-8.9-25.5,1.5c0,0-1.7,1.8-3.8,1.8
|
|
559
|
+
c-2.1-0.1,4.3,13.5,23.3,8.5C894.5,702.1,901,700.7,905.9,696.6z" class="st22"></path>
|
|
560
|
+
<g>
|
|
561
|
+
<path d="M902.4,696.1c-2.5,0.9-5.1,1.5-7.8,1.9c-2.6,0.4-5.3,0.7-8,0.7c-2.7,0-5.4-0.3-8-1c-2.6-0.8-5-2-7.2-3.6
|
|
562
|
+
l0-0.1c2.3,1.3,4.8,2.3,7.3,2.9c2.6,0.6,5.2,1,7.8,1.1c2.6,0.1,5.3-0.1,7.9-0.4C897.2,697.3,899.8,696.8,902.4,696.1L902.4,696.1
|
|
563
|
+
z" class="st4"></path>
|
|
564
|
+
</g>
|
|
565
|
+
<g>
|
|
566
|
+
<path d="M893.5,697.9c0.1,0.3,0.3,0.6,0.6,0.9c0.3,0.3,0.6,0.5,0.9,0.7c0.3,0.2,0.7,0.3,1.1,0.5
|
|
567
|
+
c0.4,0.1,0.8,0.2,1.2,0.3c-0.4,0-0.8,0-1.2-0.1c-0.4-0.1-0.8-0.2-1.2-0.3c-0.4-0.2-0.8-0.4-1.1-0.6c-0.3-0.3-0.7-0.6-0.9-1
|
|
568
|
+
L893.5,697.9z" class="st4"></path>
|
|
569
|
+
</g>
|
|
570
|
+
<g>
|
|
571
|
+
<path d="M888.8,698.4c0,0.2,0,0.5,0.1,0.8c0.1,0.3,0.2,0.6,0.4,0.8c0.3,0.5,0.8,0.9,1.4,1.3c-0.6-0.2-1.2-0.5-1.7-1
|
|
572
|
+
c-0.2-0.2-0.4-0.5-0.6-0.8c-0.2-0.3-0.3-0.6-0.3-1.1L888.8,698.4z" class="st4"></path>
|
|
573
|
+
</g>
|
|
574
|
+
<g>
|
|
575
|
+
<path d="M883.4,698.3c0,0.3,0.1,0.7,0.2,1.1c0.1,0.4,0.3,0.7,0.5,1.1c0.2,0.3,0.5,0.7,0.7,1c0.3,0.3,0.6,0.6,0.9,0.9
|
|
576
|
+
c-0.7-0.4-1.4-1-1.9-1.6c-0.3-0.3-0.5-0.7-0.7-1.1c-0.2-0.4-0.3-0.8-0.4-1.3L883.4,698.3z" class="st4"></path>
|
|
577
|
+
</g>
|
|
578
|
+
<g>
|
|
579
|
+
<path d="M879.4,697.6c0,0.3,0.1,0.7,0.2,1.1c0.1,0.4,0.3,0.7,0.5,1.1c0.2,0.3,0.5,0.7,0.7,1c0.3,0.3,0.6,0.6,0.9,0.9
|
|
580
|
+
c-0.7-0.4-1.4-1-1.9-1.6c-0.3-0.3-0.5-0.7-0.7-1.1c-0.2-0.4-0.3-0.8-0.4-1.3L879.4,697.6z" class="st4"></path>
|
|
581
|
+
</g>
|
|
582
|
+
<g>
|
|
583
|
+
<path d="M894.5,697.8c0-0.7,0.2-1.3,0.4-2c0.2-0.6,0.5-1.2,0.8-1.8c0.4-0.5,0.8-1.1,1.3-1.5c0.5-0.4,1-0.8,1.6-1.1
|
|
584
|
+
c-0.5,0.4-1,0.8-1.4,1.2c-0.4,0.5-0.8,1-1.1,1.5c-0.3,0.5-0.5,1.1-0.6,1.7c-0.1,0.6-0.2,1.2-0.2,1.8L894.5,697.8z" class="st4"></path>
|
|
585
|
+
</g>
|
|
586
|
+
<g>
|
|
587
|
+
<path d="M889.9,698.3c0.1-0.8,0.3-1.6,0.6-2.4c0.3-0.8,0.6-1.5,1-2.3c0.4-0.7,0.9-1.4,1.4-2c0.5-0.6,1.2-1.1,1.9-1.5
|
|
588
|
+
c-0.7,0.5-1.3,1-1.7,1.6c-0.5,0.6-0.9,1.3-1.2,2.1c-0.6,1.5-1,3-1.1,4.6L889.9,698.3z" class="st4"></path>
|
|
589
|
+
</g>
|
|
590
|
+
<g>
|
|
591
|
+
<path d="M883.7,698.1c0.1-1,0.3-1.9,0.6-2.8c0.3-0.9,0.7-1.8,1.1-2.6c0.5-0.8,1.1-1.6,1.8-2.3
|
|
592
|
+
c0.7-0.7,1.5-1.2,2.3-1.6c-0.8,0.5-1.6,1-2.2,1.7c-0.6,0.7-1.2,1.5-1.6,2.3c-0.4,0.8-0.7,1.7-0.9,2.6c-0.2,0.9-0.4,1.8-0.4,2.7
|
|
593
|
+
L883.7,698.1z" class="st4"></path>
|
|
594
|
+
</g>
|
|
595
|
+
<g>
|
|
596
|
+
<path d="M876.4,696.5c0.2-1,0.5-1.9,1-2.7c0.5-0.8,1.1-1.6,1.7-2.2c0.7-0.7,1.4-1.2,2.1-1.8c0.4-0.3,0.8-0.5,1.2-0.7
|
|
597
|
+
l1.2-0.6l-1.2,0.7c-0.4,0.3-0.8,0.5-1.1,0.8c-0.7,0.6-1.4,1.2-2,1.9c-0.6,0.7-1.1,1.4-1.5,2.2c-0.4,0.8-0.7,1.7-0.8,2.5
|
|
598
|
+
L876.4,696.5z" class="st4"></path>
|
|
599
|
+
</g>
|
|
600
|
+
</g>
|
|
601
|
+
<g>
|
|
602
|
+
<linearGradient y2="535.7308" x2="950.461" y1="535.7308" x1="911.8176" gradientUnits="userSpaceOnUse" id="SVGID_21_">
|
|
603
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
604
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
605
|
+
</linearGradient>
|
|
606
|
+
<path d="M950.5,531c0,0-3.8-3.2-8.1-4.8c-4.3-1.6-21.2-3.5-26.8,10.8c0,0-1.1,2.6-3.4,3.3
|
|
607
|
+
c-2.3,0.7,9.5,12.9,28.1,0.7C940.2,540.9,946.7,537,950.5,531z" class="st23"></path>
|
|
608
|
+
<g>
|
|
609
|
+
<path d="M946.5,531.6c-2.4,1.8-5,3.4-7.6,4.9c-2.7,1.4-5.5,2.6-8.3,3.6c-2.9,0.9-5.9,1.6-8.9,1.8
|
|
610
|
+
c-3.1,0.1-6.1-0.3-9-1.2l0-0.1c3,0.5,5.9,0.8,8.9,0.5c3-0.3,5.9-0.8,8.8-1.6c2.9-0.9,5.6-2,8.3-3.4
|
|
611
|
+
C941.4,534.8,944,533.3,946.5,531.6L946.5,531.6z" class="st4"></path>
|
|
612
|
+
</g>
|
|
613
|
+
<g>
|
|
614
|
+
<path d="M937.6,536.8c0.2,0.3,0.6,0.5,1,0.7c0.4,0.2,0.8,0.3,1.2,0.4c0.4,0.1,0.9,0.1,1.3,0.1c0.5,0,0.9-0.1,1.4-0.2
|
|
615
|
+
c-0.4,0.1-0.9,0.3-1.3,0.4c-0.5,0.1-0.9,0.1-1.4,0.1c-0.5,0-1-0.1-1.4-0.3c-0.5-0.2-0.9-0.4-1.3-0.8L937.6,536.8z" class="st4"></path>
|
|
616
|
+
</g>
|
|
617
|
+
<g>
|
|
618
|
+
<path d="M932.7,539.1c0.1,0.3,0.2,0.6,0.4,0.9c0.2,0.3,0.4,0.5,0.7,0.7c0.3,0.2,0.6,0.4,0.9,0.5
|
|
619
|
+
c0.3,0.1,0.7,0.2,1,0.3c-0.4,0-0.7,0-1.1-0.1c-0.4-0.1-0.7-0.2-1.1-0.4c-0.3-0.2-0.7-0.4-0.9-0.7c-0.3-0.3-0.5-0.6-0.7-1
|
|
620
|
+
L932.7,539.1z" class="st4"></path>
|
|
621
|
+
</g>
|
|
622
|
+
<g>
|
|
623
|
+
<path d="M926.9,540.9c0.1,0.4,0.3,0.8,0.6,1.1c0.3,0.4,0.6,0.7,0.9,1c0.4,0.3,0.7,0.5,1.2,0.8
|
|
624
|
+
c0.4,0.2,0.8,0.4,1.3,0.6c-0.5-0.1-0.9-0.2-1.4-0.4c-0.4-0.2-0.9-0.4-1.3-0.6c-0.4-0.3-0.8-0.6-1.1-0.9c-0.3-0.4-0.7-0.7-0.9-1.3
|
|
625
|
+
L926.9,540.9z" class="st4"></path>
|
|
626
|
+
</g>
|
|
627
|
+
<g>
|
|
628
|
+
<path d="M922.4,541.6c0.1,0.4,0.3,0.8,0.6,1.1c0.3,0.4,0.6,0.7,0.9,1c0.4,0.3,0.7,0.5,1.2,0.8
|
|
629
|
+
c0.4,0.2,0.8,0.4,1.3,0.6c-0.5-0.1-0.9-0.2-1.4-0.4c-0.4-0.2-0.9-0.4-1.3-0.6c-0.4-0.3-0.8-0.6-1.1-0.9c-0.3-0.4-0.7-0.7-0.9-1.3
|
|
630
|
+
L922.4,541.6z" class="st4"></path>
|
|
631
|
+
</g>
|
|
632
|
+
<g>
|
|
633
|
+
<path d="M938.7,536.3c-0.2-0.8-0.3-1.5-0.3-2.2c0-0.7,0.1-1.5,0.3-2.2c0.2-0.7,0.4-1.4,0.8-2
|
|
634
|
+
c0.3-0.6,0.8-1.2,1.3-1.8c-0.4,0.6-0.8,1.2-1.1,1.8c-0.3,0.6-0.5,1.3-0.6,2c-0.1,0.7-0.1,1.4-0.1,2.1c0.1,0.7,0.2,1.4,0.5,2
|
|
635
|
+
L938.7,536.3z" class="st4"></path>
|
|
636
|
+
</g>
|
|
637
|
+
<g>
|
|
638
|
+
<path d="M934,538.5c-0.2-0.9-0.2-1.9-0.2-2.8c0-0.9,0.1-1.9,0.2-2.8c0.2-0.9,0.4-1.8,0.7-2.7
|
|
639
|
+
c0.4-0.9,0.9-1.6,1.5-2.3c-0.6,0.7-1,1.5-1.3,2.4c-0.3,0.9-0.5,1.8-0.5,2.6c-0.1,0.9-0.1,1.8,0,2.7c0.1,0.9,0.2,1.8,0.4,2.6
|
|
640
|
+
L934,538.5z" class="st4"></path>
|
|
641
|
+
</g>
|
|
642
|
+
<g>
|
|
643
|
+
<path d="M927.2,540.6c-0.3-1.1-0.4-2.2-0.4-3.3c0-1.1,0.1-2.2,0.3-3.2c0.2-1.1,0.6-2.1,1-3.1c0.5-1,1.2-1.8,1.9-2.6
|
|
644
|
+
c-0.7,0.8-1.3,1.7-1.7,2.7c-0.4,1-0.7,2-0.8,3c-0.1,1-0.2,2.1-0.1,3.2c0.1,1,0.3,2.1,0.6,3.1L927.2,540.6z" class="st4"></path>
|
|
645
|
+
</g>
|
|
646
|
+
<g>
|
|
647
|
+
<path d="M918.8,541.5c-0.2-1.1-0.1-2.2,0.1-3.2c0.2-1,0.6-2,1-3c0.5-0.9,1-1.8,1.6-2.7c0.3-0.4,0.7-0.8,1-1.2
|
|
648
|
+
l1.1-1.1l-1,1.2c-0.3,0.4-0.6,0.8-0.9,1.2c-0.6,0.9-1.1,1.8-1.5,2.7c-0.4,1-0.7,1.9-0.8,2.9c-0.1,1-0.1,2,0.1,3L918.8,541.5z" class="st4"></path>
|
|
649
|
+
</g>
|
|
650
|
+
</g>
|
|
651
|
+
<g>
|
|
652
|
+
<linearGradient y2="493.1064" x2="948.8961" y1="493.1064" x1="911.8754" gradientUnits="userSpaceOnUse" id="SVGID_22_">
|
|
653
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
654
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
655
|
+
</linearGradient>
|
|
656
|
+
<path d="M948.9,482.3c0,0-4.8-2.2-9.7-2.6s-22.8,2.5-24.5,18.8c0,0-0.4,3-2.6,4.4c-2.2,1.4,13.5,10.5,29.2-7.4
|
|
657
|
+
C941.2,495.5,946.8,489.7,948.9,482.3z" class="st24"></path>
|
|
658
|
+
<g>
|
|
659
|
+
<path d="M945,484.2c-1.9,2.6-4.1,5-6.5,7.2c-2.3,2.2-4.9,4.3-7.5,6.1c-2.7,1.8-5.6,3.4-8.7,4.4
|
|
660
|
+
c-3.1,1-6.4,1.5-9.6,1.4l0-0.1c3.2-0.3,6.4-0.9,9.4-2c3-1.1,5.9-2.5,8.6-4.2c2.7-1.7,5.2-3.7,7.6-5.9
|
|
661
|
+
C940.7,488.9,942.9,486.6,945,484.2L945,484.2z" class="st4"></path>
|
|
662
|
+
</g>
|
|
663
|
+
<g>
|
|
664
|
+
<path d="M937.3,492c0.3,0.2,0.8,0.4,1.2,0.5c0.5,0.1,0.9,0.1,1.4,0.1c0.5,0,0.9-0.2,1.4-0.3c0.5-0.1,0.9-0.4,1.4-0.6
|
|
665
|
+
c-0.4,0.3-0.8,0.5-1.3,0.7c-0.5,0.2-0.9,0.4-1.4,0.5c-0.5,0.1-1,0.2-1.5,0.1c-0.5,0-1-0.1-1.6-0.4L937.3,492z" class="st4"></path>
|
|
666
|
+
</g>
|
|
667
|
+
<g>
|
|
668
|
+
<path d="M933,495.8c0.1,0.3,0.4,0.6,0.7,0.8c0.3,0.2,0.6,0.4,0.9,0.6c0.3,0.1,0.7,0.2,1.1,0.3c0.4,0,0.8,0,1.2,0
|
|
669
|
+
c-0.4,0.1-0.8,0.2-1.2,0.2c-0.4,0-0.8,0-1.2-0.1c-0.4-0.1-0.8-0.2-1.2-0.4c-0.4-0.2-0.7-0.5-1-0.8L933,495.8z" class="st4"></path>
|
|
670
|
+
</g>
|
|
671
|
+
<g>
|
|
672
|
+
<path d="M927.5,499.3c0.2,0.3,0.6,0.7,0.9,1c0.4,0.3,0.8,0.5,1.3,0.7c0.5,0.2,0.9,0.3,1.4,0.5c0.5,0.1,1,0.2,1.5,0.2
|
|
673
|
+
c-0.5,0-1,0-1.5,0c-0.5-0.1-1-0.1-1.5-0.3c-0.5-0.2-1-0.4-1.4-0.6c-0.5-0.3-0.9-0.6-1.3-1.1L927.5,499.3z" class="st4"></path>
|
|
674
|
+
</g>
|
|
675
|
+
<g>
|
|
676
|
+
<path d="M923,501.3c0.2,0.3,0.6,0.7,0.9,1c0.4,0.3,0.8,0.5,1.3,0.7c0.5,0.2,0.9,0.3,1.4,0.5c0.5,0.1,1,0.2,1.5,0.2
|
|
677
|
+
c-0.5,0-1,0-1.5,0c-0.5-0.1-1-0.1-1.5-0.3c-0.5-0.2-1-0.4-1.4-0.6c-0.5-0.3-0.9-0.6-1.3-1.1L923,501.3z" class="st4"></path>
|
|
678
|
+
</g>
|
|
679
|
+
<g>
|
|
680
|
+
<path d="M938.3,491.2c-0.5-0.7-0.8-1.4-1-2.2c-0.2-0.8-0.4-1.5-0.4-2.3c0-0.8,0-1.6,0.2-2.3c0.2-0.8,0.5-1.5,0.8-2.2
|
|
681
|
+
c-0.3,0.7-0.5,1.5-0.6,2.2c-0.1,0.8-0.1,1.5,0,2.3c0.1,0.7,0.3,1.5,0.5,2.2c0.3,0.7,0.6,1.4,1,1.9L938.3,491.2z" class="st4"></path>
|
|
682
|
+
</g>
|
|
683
|
+
<g>
|
|
684
|
+
<path d="M934.1,494.8c-0.4-0.9-0.8-1.8-1.1-2.8c-0.3-1-0.5-1.9-0.6-2.9c-0.1-1-0.1-2,0-3c0.1-1,0.4-1.9,0.8-2.8
|
|
685
|
+
c-0.4,0.9-0.6,1.9-0.6,2.8c0,1,0,1.9,0.2,2.9c0.2,0.9,0.4,1.9,0.8,2.8c0.3,0.9,0.7,1.8,1.2,2.6L934.1,494.8z" class="st4"></path>
|
|
686
|
+
</g>
|
|
687
|
+
<g>
|
|
688
|
+
<path d="M927.8,498.9c-0.6-1-1-2.1-1.4-3.2c-0.3-1.1-0.6-2.3-0.7-3.4c-0.1-1.2,0-2.3,0.2-3.5
|
|
689
|
+
c0.2-1.1,0.7-2.2,1.2-3.2c-0.5,1-0.9,2.1-1,3.2c-0.1,1.1-0.2,2.3,0,3.4c0.2,1.1,0.4,2.2,0.8,3.3c0.4,1,0.9,2.1,1.5,3L927.8,498.9
|
|
690
|
+
z" class="st4"></path>
|
|
691
|
+
</g>
|
|
692
|
+
<g>
|
|
693
|
+
<path d="M919.4,502.3c-0.5-1.1-0.7-2.2-0.8-3.3c-0.1-1.1,0-2.3,0.2-3.4c0.2-1.1,0.5-2.2,0.9-3.2
|
|
694
|
+
c0.2-0.5,0.5-1,0.7-1.5l0.8-1.5l-0.7,1.5c-0.2,0.5-0.4,1-0.6,1.5c-0.3,1-0.6,2.1-0.7,3.2c-0.1,1.1-0.1,2.2,0,3.3
|
|
695
|
+
c0.1,1.1,0.4,2.1,0.9,3L919.4,502.3z" class="st4"></path>
|
|
696
|
+
</g>
|
|
697
|
+
</g>
|
|
698
|
+
<g>
|
|
699
|
+
<linearGradient y2="461.3597" x2="938.8034" y1="461.3597" x1="911.889" gradientUnits="userSpaceOnUse" id="SVGID_23_">
|
|
700
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
701
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
702
|
+
</linearGradient>
|
|
703
|
+
<path d="M938.8,450.1c0,0-4.2-1.1-8.2-0.8c-4,0.3-18,5.1-17.1,18.4c0,0,0,2.4-1.5,3.8c-1.5,1.4,12.3,6.6,22.4-9.9
|
|
704
|
+
C934.4,461.7,938.1,456.3,938.8,450.1z" class="st25"></path>
|
|
705
|
+
<g>
|
|
706
|
+
<path d="M936,452.1c-1.2,2.3-2.7,4.5-4.2,6.7c-1.6,2.1-3.3,4.1-5.2,5.9c-1.9,1.8-4,3.5-6.4,4.7
|
|
707
|
+
c-2.4,1.2-4.9,2-7.6,2.3l0-0.1c2.5-0.7,5-1.6,7.2-2.9c2.2-1.3,4.4-2.8,6.3-4.5c1.9-1.8,3.7-3.7,5.3-5.7
|
|
708
|
+
C933.1,456.5,934.6,454.3,936,452.1L936,452.1z" class="st4"></path>
|
|
709
|
+
</g>
|
|
710
|
+
<g>
|
|
711
|
+
<path d="M930.9,459.4c0.3,0.1,0.7,0.2,1,0.2c0.4,0,0.8,0,1.1-0.1c0.4-0.1,0.7-0.2,1.1-0.4c0.4-0.2,0.7-0.4,1-0.6
|
|
712
|
+
c-0.3,0.3-0.6,0.5-0.9,0.8c-0.3,0.2-0.7,0.4-1.1,0.6c-0.4,0.2-0.8,0.3-1.2,0.3c-0.4,0-0.8,0.1-1.3-0.1L930.9,459.4z" class="st4"></path>
|
|
713
|
+
</g>
|
|
714
|
+
<g>
|
|
715
|
+
<path d="M927.9,463c0.1,0.2,0.4,0.4,0.6,0.5c0.2,0.1,0.5,0.3,0.8,0.3c0.6,0.1,1.2,0.1,1.8-0.1
|
|
716
|
+
c-0.6,0.3-1.2,0.4-1.9,0.4c-0.3,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.3-0.9-0.5L927.9,463z" class="st4"></path>
|
|
717
|
+
</g>
|
|
718
|
+
<g>
|
|
719
|
+
<path d="M924,466.5c0.2,0.2,0.5,0.5,0.9,0.7c0.3,0.2,0.7,0.3,1.1,0.4c0.8,0.2,1.6,0.3,2.4,0.2
|
|
720
|
+
c-0.8,0.2-1.6,0.3-2.5,0.2c-0.4-0.1-0.8-0.1-1.3-0.3c-0.4-0.2-0.8-0.3-1.2-0.7L924,466.5z" class="st4"></path>
|
|
721
|
+
</g>
|
|
722
|
+
<g>
|
|
723
|
+
<path d="M920.6,468.8c0.2,0.2,0.5,0.5,0.9,0.7c0.3,0.2,0.7,0.3,1.1,0.4c0.8,0.2,1.6,0.3,2.4,0.2
|
|
724
|
+
c-0.8,0.2-1.6,0.3-2.5,0.2c-0.4-0.1-0.8-0.1-1.3-0.3c-0.4-0.2-0.8-0.3-1.2-0.7L920.6,468.8z" class="st4"></path>
|
|
725
|
+
</g>
|
|
726
|
+
<g>
|
|
727
|
+
<path d="M931.5,458.7c-0.5-0.5-0.8-1.1-1.1-1.7c-0.3-0.6-0.5-1.2-0.6-1.8c-0.1-0.6-0.2-1.3-0.1-1.9
|
|
728
|
+
c0-0.6,0.2-1.3,0.4-1.9c-0.1,0.6-0.2,1.2-0.2,1.9c0,0.6,0.1,1.2,0.3,1.8c0.2,0.6,0.4,1.1,0.7,1.7c0.3,0.5,0.7,1,1.1,1.4
|
|
729
|
+
L931.5,458.7z" class="st4"></path>
|
|
730
|
+
</g>
|
|
731
|
+
<g>
|
|
732
|
+
<path d="M928.6,462.1c-0.5-0.7-0.9-1.4-1.2-2.1c-0.3-0.7-0.6-1.5-0.9-2.3c-0.2-0.8-0.3-1.6-0.4-2.4
|
|
733
|
+
c0-0.8,0.1-1.6,0.3-2.4c-0.2,0.8-0.2,1.6-0.1,2.4c0.1,0.8,0.3,1.5,0.6,2.3c0.6,1.5,1.4,2.8,2.3,4L928.6,462.1z" class="st4"></path>
|
|
734
|
+
</g>
|
|
735
|
+
<g>
|
|
736
|
+
<path d="M924,466.3c-0.6-0.8-1.1-1.6-1.5-2.4c-0.4-0.9-0.8-1.7-1-2.7c-0.2-0.9-0.3-1.9-0.3-2.8
|
|
737
|
+
c0-0.9,0.3-1.9,0.6-2.7c-0.2,0.9-0.4,1.8-0.4,2.7c0,0.9,0.2,1.8,0.5,2.7c0.3,0.9,0.7,1.7,1.1,2.5c0.5,0.8,1,1.5,1.6,2.2
|
|
738
|
+
L924,466.3z" class="st4"></path>
|
|
739
|
+
</g>
|
|
740
|
+
<g>
|
|
741
|
+
<path d="M917.7,470.1c-0.6-0.8-0.9-1.7-1.1-2.6c-0.2-0.9-0.3-1.8-0.3-2.7c0-0.9,0.1-1.8,0.3-2.7
|
|
742
|
+
c0.1-0.4,0.2-0.9,0.3-1.3l0.5-1.3l-0.4,1.3c-0.1,0.4-0.2,0.9-0.3,1.3c-0.1,0.9-0.2,1.8-0.1,2.7c0.1,0.9,0.2,1.8,0.5,2.6
|
|
743
|
+
c0.3,0.8,0.7,1.7,1.1,2.3L917.7,470.1z" class="st4"></path>
|
|
744
|
+
</g>
|
|
745
|
+
</g>
|
|
746
|
+
<g>
|
|
747
|
+
<linearGradient y2="421.0086" x2="903.0117" y1="421.0086" x1="876.1666" gradientUnits="userSpaceOnUse" id="SVGID_24_">
|
|
748
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
749
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
750
|
+
</linearGradient>
|
|
751
|
+
<path d="M876.2,411.3c0,0,3.9-1.3,7.7-1.2s17.3,3.6,17.4,16.3c0,0,0.1,2.3,1.7,3.5s-11.2,7.1-21.8-7.9
|
|
752
|
+
C881.1,422,877.3,417.1,876.2,411.3z" class="st26"></path>
|
|
753
|
+
<g>
|
|
754
|
+
<path d="M879.1,412.9c1.4,2.1,3,4,4.6,5.8c1.7,1.8,3.5,3.5,5.4,5c2,1.5,4.1,2.7,6.3,3.9c2.2,1.1,4.6,1.8,7,2.3l0,0.1
|
|
755
|
+
c-2.5-0.1-5-0.7-7.3-1.7c-2.3-1.1-4.4-2.5-6.3-4.1c-1.9-1.6-3.7-3.4-5.3-5.3C881.8,417.1,880.3,415.1,879.1,412.9L879.1,412.9z" class="st4"></path>
|
|
756
|
+
</g>
|
|
757
|
+
<g>
|
|
758
|
+
<path d="M884.6,420.2c-0.5,0.2-0.9,0.2-1.3,0.2c-0.4,0-0.8-0.1-1.2-0.2c-0.4-0.1-0.7-0.3-1.1-0.5
|
|
759
|
+
c-0.3-0.2-0.6-0.4-0.9-0.7c0.3,0.2,0.7,0.4,1,0.5c0.3,0.1,0.7,0.3,1.1,0.3c0.4,0.1,0.7,0.1,1.1,0c0.3,0,0.7-0.1,0.9-0.3
|
|
760
|
+
L884.6,420.2z" class="st4"></path>
|
|
761
|
+
</g>
|
|
762
|
+
<g>
|
|
763
|
+
<path d="M887.9,423.2c-0.3,0.3-0.6,0.4-0.9,0.6c-0.3,0.1-0.6,0.2-0.9,0.2c-0.6,0.1-1.3-0.1-1.8-0.3
|
|
764
|
+
c0.6,0.1,1.2,0.1,1.7-0.1c0.3-0.1,0.5-0.2,0.7-0.4c0.2-0.1,0.4-0.4,0.5-0.5L887.9,423.2z" class="st4"></path>
|
|
765
|
+
</g>
|
|
766
|
+
<g>
|
|
767
|
+
<path d="M891.8,426.3c-0.4,0.4-0.7,0.5-1.1,0.7c-0.4,0.2-0.8,0.3-1.2,0.4c-0.8,0.1-1.6,0.1-2.4,0
|
|
768
|
+
c0.8,0,1.6-0.1,2.3-0.3c0.4-0.1,0.7-0.3,1-0.5c0.3-0.2,0.6-0.5,0.8-0.7L891.8,426.3z" class="st4"></path>
|
|
769
|
+
</g>
|
|
770
|
+
<g>
|
|
771
|
+
<path d="M895.1,428.2c-0.4,0.4-0.7,0.5-1.1,0.7c-0.4,0.2-0.8,0.3-1.2,0.4c-0.8,0.1-1.6,0.1-2.4,0
|
|
772
|
+
c0.8,0,1.6-0.1,2.3-0.3c0.4-0.1,0.7-0.3,1-0.5c0.3-0.2,0.6-0.5,0.8-0.7L895.1,428.2z" class="st4"></path>
|
|
773
|
+
</g>
|
|
774
|
+
<g>
|
|
775
|
+
<path d="M883.1,418.4c0.4-0.4,0.7-0.9,1-1.4c0.3-0.5,0.5-1,0.6-1.6c0.1-0.6,0.2-1.1,0.2-1.7c0-0.6-0.1-1.2-0.3-1.7
|
|
776
|
+
c0.2,0.6,0.4,1.1,0.5,1.7c0.1,0.6,0.1,1.2,0,1.8c-0.1,0.6-0.2,1.2-0.4,1.8c-0.2,0.6-0.5,1.1-0.9,1.6L883.1,418.4z" class="st4"></path>
|
|
777
|
+
</g>
|
|
778
|
+
<g>
|
|
779
|
+
<path d="M886,421.6c0.8-1.2,1.5-2.5,1.9-4c0.2-0.7,0.3-1.4,0.4-2.2c0-0.7-0.1-1.5-0.3-2.2c0.3,0.7,0.4,1.5,0.4,2.2
|
|
780
|
+
c0,0.8-0.1,1.5-0.2,2.3c-0.2,0.7-0.4,1.5-0.7,2.2c-0.3,0.7-0.6,1.4-1,2.1L886,421.6z" class="st4"></path>
|
|
781
|
+
</g>
|
|
782
|
+
<g>
|
|
783
|
+
<path d="M890.6,425.2c0.5-0.7,1-1.4,1.4-2.2c0.4-0.8,0.7-1.6,0.9-2.4c0.2-0.8,0.3-1.7,0.3-2.6c0-0.9-0.2-1.7-0.5-2.6
|
|
784
|
+
c0.3,0.8,0.6,1.7,0.7,2.6c0.1,0.9,0.1,1.8-0.1,2.7c-0.2,0.9-0.4,1.8-0.8,2.6c-0.3,0.8-0.8,1.6-1.3,2.4L890.6,425.2z" class="st4"></path>
|
|
785
|
+
</g>
|
|
786
|
+
<g>
|
|
787
|
+
<path d="M896.8,428.4c0.4-0.6,0.7-1.4,0.9-2.2c0.2-0.8,0.3-1.6,0.3-2.5c0-0.8-0.1-1.7-0.3-2.5
|
|
788
|
+
c-0.1-0.4-0.2-0.8-0.3-1.2l-0.4-1.2l0.5,1.2c0.1,0.4,0.3,0.8,0.4,1.2c0.2,0.8,0.4,1.7,0.5,2.5c0.1,0.9,0,1.7-0.1,2.6
|
|
789
|
+
c-0.2,0.9-0.4,1.7-0.9,2.5L896.8,428.4z" class="st4"></path>
|
|
790
|
+
</g>
|
|
791
|
+
</g>
|
|
792
|
+
<g>
|
|
793
|
+
<linearGradient y2="429.5277" x2="934.7936" y1="429.5277" x1="907.5574" gradientUnits="userSpaceOnUse" id="SVGID_25_">
|
|
794
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
795
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
796
|
+
</linearGradient>
|
|
797
|
+
<path d="M934.8,414.6c0,0-4.9-0.6-9.4,0.4c-4.5,1-19.6,8.5-16.6,23.5c0,0,0.4,2.8-1.1,4.6s14.9,5.6,24-14.6
|
|
798
|
+
C931.6,428.5,934.9,421.8,934.8,414.6z" class="st27"></path>
|
|
799
|
+
<g>
|
|
800
|
+
<path d="M931.9,417.3c-1,2.8-2.3,5.6-3.8,8.2c-1.5,2.6-3.2,5.1-5,7.5c-1.9,2.3-4.1,4.5-6.5,6.3
|
|
801
|
+
c-2.5,1.7-5.3,3.1-8.2,3.8l0-0.1c2.8-1.2,5.4-2.6,7.8-4.4c2.3-1.8,4.5-3.9,6.5-6.1c1.9-2.3,3.6-4.7,5.2-7.3
|
|
802
|
+
C929.3,422.7,930.7,420.1,931.9,417.3L931.9,417.3z" class="st4"></path>
|
|
803
|
+
</g>
|
|
804
|
+
<g>
|
|
805
|
+
<path d="M927.2,426.4c0.3,0.1,0.8,0.1,1.2,0.1c0.4,0,0.9-0.2,1.3-0.3c0.4-0.2,0.8-0.4,1.2-0.7
|
|
806
|
+
c0.4-0.3,0.7-0.6,1.1-0.9c-0.3,0.4-0.6,0.7-0.9,1c-0.3,0.3-0.7,0.6-1.1,0.8c-0.4,0.2-0.9,0.4-1.3,0.5c-0.5,0.1-1,0.2-1.5,0.1
|
|
807
|
+
L927.2,426.4z" class="st4"></path>
|
|
808
|
+
</g>
|
|
809
|
+
<g>
|
|
810
|
+
<path d="M924.3,431c0.2,0.2,0.5,0.4,0.8,0.5c0.3,0.1,0.6,0.2,1,0.2c0.3,0,0.7,0,1-0.1c0.4-0.1,0.7-0.2,1-0.3
|
|
811
|
+
c-0.3,0.2-0.6,0.4-1,0.5c-0.3,0.1-0.7,0.2-1.1,0.3c-0.4,0-0.8,0-1.2-0.1c-0.4-0.1-0.7-0.2-1.1-0.5L924.3,431z" class="st4"></path>
|
|
812
|
+
</g>
|
|
813
|
+
<g>
|
|
814
|
+
<path d="M920.4,435.6c0.3,0.2,0.7,0.5,1.1,0.6c0.4,0.2,0.9,0.3,1.3,0.3c0.5,0.1,0.9,0.1,1.4,0c0.5,0,0.9-0.1,1.4-0.2
|
|
815
|
+
c-0.4,0.2-0.9,0.3-1.4,0.4c-0.5,0.1-0.9,0.2-1.4,0.2c-0.5,0-1,0-1.5-0.2c-0.5-0.1-0.9-0.3-1.4-0.6L920.4,435.6z" class="st4"></path>
|
|
816
|
+
</g>
|
|
817
|
+
<g>
|
|
818
|
+
<path d="M917,438.7c0.3,0.2,0.7,0.5,1.1,0.6c0.4,0.2,0.9,0.3,1.3,0.3c0.5,0.1,0.9,0.1,1.4,0c0.5,0,0.9-0.1,1.4-0.2
|
|
819
|
+
c-0.4,0.2-0.9,0.3-1.4,0.4c-0.5,0.1-0.9,0.2-1.4,0.2c-0.5,0-1,0-1.5-0.2c-0.5-0.1-0.9-0.3-1.4-0.6L917,438.7z" class="st4"></path>
|
|
820
|
+
</g>
|
|
821
|
+
<g>
|
|
822
|
+
<path d="M927.8,425.4c-0.6-0.5-1.1-1.1-1.5-1.7c-0.4-0.6-0.7-1.3-1-2c-0.2-0.7-0.4-1.4-0.4-2.1
|
|
823
|
+
c-0.1-0.7,0-1.4,0.1-2.2c0,0.7-0.1,1.4,0.1,2.1c0.1,0.7,0.3,1.4,0.6,2c0.3,0.6,0.6,1.2,1.1,1.8c0.4,0.5,0.9,1,1.5,1.4
|
|
824
|
+
L927.8,425.4z" class="st4"></path>
|
|
825
|
+
</g>
|
|
826
|
+
<g>
|
|
827
|
+
<path d="M925,429.8c-0.6-0.7-1.2-1.4-1.7-2.2c-0.5-0.8-1-1.6-1.3-2.4c-0.4-0.8-0.6-1.7-0.8-2.6
|
|
828
|
+
c-0.2-0.9-0.2-1.8,0-2.7c-0.1,0.9,0,1.8,0.2,2.7c0.2,0.9,0.6,1.7,1,2.5c0.4,0.8,0.9,1.6,1.5,2.3c0.5,0.7,1.1,1.4,1.8,2L925,429.8
|
|
829
|
+
z" class="st4"></path>
|
|
830
|
+
</g>
|
|
831
|
+
<g>
|
|
832
|
+
<path d="M920.5,435.2c-0.8-0.8-1.5-1.6-2.1-2.5c-0.6-0.9-1.1-1.9-1.5-2.9c-0.4-1-0.7-2.1-0.8-3.1
|
|
833
|
+
c-0.1-1.1,0-2.2,0.2-3.2c-0.1,1.1-0.2,2.1,0,3.2c0.2,1,0.5,2.1,0.9,3c0.5,0.9,1,1.8,1.6,2.7c0.6,0.8,1.4,1.6,2.1,2.3L920.5,435.2
|
|
834
|
+
z" class="st4"></path>
|
|
835
|
+
</g>
|
|
836
|
+
<g>
|
|
837
|
+
<path d="M913.9,440.5c-0.8-0.8-1.2-1.8-1.7-2.8c-0.4-1-0.6-2-0.8-3.1c-0.1-1-0.1-2.1-0.1-3.1c0-0.5,0.1-1,0.2-1.5
|
|
838
|
+
l0.3-1.5l-0.2,1.5c0,0.5-0.1,1-0.1,1.5c0,1,0.1,2.1,0.2,3.1c0.2,1,0.5,2,0.9,2.9c0.4,0.9,1,1.8,1.7,2.4L913.9,440.5z" class="st4"></path>
|
|
839
|
+
</g>
|
|
840
|
+
</g>
|
|
841
|
+
<g>
|
|
842
|
+
<linearGradient y2="398.3844" x2="923.171" y1="398.3844" x1="899.971" gradientUnits="userSpaceOnUse" id="SVGID_26_">
|
|
843
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
844
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
845
|
+
</linearGradient>
|
|
846
|
+
<path d="M923.2,386.4c0,0-4-0.6-7.7,0.1c-3.7,0.7-16.4,6.5-14.3,18.9c0,0,0.3,2.3-1,3.8c-1.3,1.5,12.2,5,20.1-11.4
|
|
847
|
+
C920.2,397.8,923.1,392.3,923.2,386.4z" class="st28"></path>
|
|
848
|
+
<g>
|
|
849
|
+
<path d="M920.7,388.6c-0.9,2.3-2,4.5-3.3,6.7c-1.3,2.1-2.7,4.2-4.3,6.1c-1.6,1.9-3.4,3.6-5.5,5.1
|
|
850
|
+
c-2.1,1.4-4.5,2.4-6.9,2.9l0-0.1c2.3-0.9,4.5-2,6.5-3.4c2-1.5,3.8-3,5.5-4.9c1.6-1.8,3.1-3.8,4.5-5.9
|
|
851
|
+
C918.4,393,919.6,390.8,920.7,388.6L920.7,388.6z" class="st4"></path>
|
|
852
|
+
</g>
|
|
853
|
+
<g>
|
|
854
|
+
<path d="M916.6,395.9c0.3,0.1,0.6,0.1,1,0.1c0.3,0,0.7-0.1,1-0.2c0.3-0.1,0.7-0.3,1-0.5c0.3-0.2,0.6-0.4,0.9-0.7
|
|
855
|
+
c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.3-0.6,0.5-0.9,0.7c-0.3,0.2-0.7,0.3-1.1,0.4c-0.4,0.1-0.8,0.1-1.3,0L916.6,395.9z" class="st4"></path>
|
|
856
|
+
</g>
|
|
857
|
+
<g>
|
|
858
|
+
<path d="M914.2,399.6c0.1,0.2,0.4,0.3,0.6,0.4c0.2,0.1,0.5,0.2,0.8,0.2c0.6,0.1,1.2,0,1.7-0.2
|
|
859
|
+
c-0.5,0.3-1.1,0.5-1.7,0.6c-0.3,0-0.6,0-1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4L914.2,399.6z" class="st4"></path>
|
|
860
|
+
</g>
|
|
861
|
+
<g>
|
|
862
|
+
<path d="M910.8,403.3c0.2,0.2,0.5,0.4,0.9,0.5c0.3,0.1,0.7,0.2,1.1,0.3c0.7,0.1,1.5,0.1,2.3,0
|
|
863
|
+
c-0.7,0.3-1.5,0.4-2.3,0.4c-0.4,0-0.8,0-1.2-0.1c-0.4-0.1-0.8-0.2-1.2-0.5L910.8,403.3z" class="st4"></path>
|
|
864
|
+
</g>
|
|
865
|
+
<g>
|
|
866
|
+
<path d="M907.9,405.7c0.2,0.2,0.5,0.4,0.9,0.5c0.3,0.1,0.7,0.2,1.1,0.3c0.7,0.1,1.5,0.1,2.3,0
|
|
867
|
+
c-0.7,0.3-1.5,0.4-2.3,0.4c-0.4,0-0.8,0-1.2-0.1c-0.4-0.1-0.8-0.2-1.2-0.5L907.9,405.7z" class="st4"></path>
|
|
868
|
+
</g>
|
|
869
|
+
<g>
|
|
870
|
+
<path d="M917.1,395.2c-0.5-0.5-0.9-0.9-1.2-1.5c-0.3-0.5-0.6-1.1-0.7-1.7c-0.2-0.6-0.3-1.2-0.3-1.8
|
|
871
|
+
c0-0.6,0.1-1.2,0.2-1.8c0,0.6-0.1,1.2,0,1.8c0.1,0.6,0.2,1.1,0.4,1.7c0.2,0.5,0.5,1,0.9,1.5c0.3,0.4,0.8,0.9,1.2,1.2L917.1,395.2
|
|
872
|
+
z" class="st4"></path>
|
|
873
|
+
</g>
|
|
874
|
+
<g>
|
|
875
|
+
<path d="M914.7,398.7c-0.5-0.6-0.9-1.2-1.3-1.9c-0.4-0.7-0.7-1.3-1-2.1c-0.3-0.7-0.5-1.5-0.6-2.2
|
|
876
|
+
c-0.1-0.8-0.1-1.5,0.1-2.3c-0.1,0.8,0,1.5,0.1,2.2c0.2,0.7,0.4,1.4,0.7,2.1c0.7,1.3,1.6,2.5,2.6,3.6L914.7,398.7z" class="st4"></path>
|
|
877
|
+
</g>
|
|
878
|
+
<g>
|
|
879
|
+
<path d="M910.8,403.1c-0.6-0.7-1.2-1.4-1.7-2.1c-0.5-0.8-0.9-1.6-1.2-2.4c-0.3-0.8-0.5-1.7-0.5-2.6
|
|
880
|
+
c-0.1-0.9,0.1-1.8,0.3-2.6c-0.1,0.9-0.2,1.7-0.1,2.6c0.1,0.9,0.3,1.7,0.7,2.5c0.4,0.8,0.8,1.5,1.3,2.2c0.5,0.7,1.1,1.4,1.7,1.9
|
|
881
|
+
L910.8,403.1z" class="st4"></path>
|
|
882
|
+
</g>
|
|
883
|
+
<g>
|
|
884
|
+
<path d="M905.3,407.3c-0.6-0.7-1-1.5-1.3-2.3c-0.3-0.8-0.5-1.7-0.6-2.5c-0.1-0.9-0.1-1.7,0-2.6
|
|
885
|
+
c0-0.4,0.1-0.8,0.2-1.3l0.3-1.2l-0.2,1.3c0,0.4-0.1,0.8-0.1,1.3c0,0.8,0,1.7,0.1,2.5c0.1,0.8,0.4,1.6,0.7,2.4
|
|
886
|
+
c0.3,0.7,0.8,1.5,1.3,2L905.3,407.3z" class="st4"></path>
|
|
887
|
+
</g>
|
|
888
|
+
</g>
|
|
889
|
+
<g>
|
|
890
|
+
<linearGradient y2="361.2572" x2="918.4076" y1="361.2572" x1="889.2176" gradientUnits="userSpaceOnUse" id="SVGID_27_">
|
|
891
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
892
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
893
|
+
</linearGradient>
|
|
894
|
+
<path d="M918.4,347.6c0,0-4.8-1-9.3-0.3s-20.1,6.9-18.3,21.9c0,0,0.2,2.8-1.5,4.5c-1.7,1.7,14.3,6.7,24.8-12.6
|
|
895
|
+
C914.2,361.1,918,354.7,918.4,347.6z" class="st29"></path>
|
|
896
|
+
<g>
|
|
897
|
+
<path d="M915.3,350c-1.2,2.7-2.7,5.3-4.4,7.8c-1.7,2.5-3.5,4.8-5.6,7c-2.1,2.2-4.4,4.2-6.9,5.8
|
|
898
|
+
c-2.6,1.5-5.5,2.6-8.4,3.1l0-0.1c2.8-0.9,5.5-2.1,8-3.7c2.4-1.6,4.8-3.5,6.9-5.5c2.1-2.1,4-4.4,5.7-6.8
|
|
899
|
+
C912.3,355.2,913.9,352.7,915.3,350L915.3,350z" class="st4"></path>
|
|
900
|
+
</g>
|
|
901
|
+
<g>
|
|
902
|
+
<path d="M909.9,358.7c0.3,0.1,0.8,0.2,1.2,0.2c0.4,0,0.9-0.1,1.3-0.2c0.4-0.1,0.8-0.3,1.2-0.5
|
|
903
|
+
c0.4-0.2,0.8-0.5,1.1-0.8c-0.3,0.3-0.6,0.7-1,0.9c-0.4,0.3-0.8,0.5-1.2,0.7c-0.4,0.2-0.9,0.4-1.4,0.4c-0.5,0.1-1,0.1-1.5,0
|
|
904
|
+
L909.9,358.7z" class="st4"></path>
|
|
905
|
+
</g>
|
|
906
|
+
<g>
|
|
907
|
+
<path d="M906.8,363c0.2,0.2,0.5,0.4,0.7,0.6c0.3,0.2,0.6,0.3,1,0.3c0.3,0,0.7,0.1,1,0c0.4,0,0.7-0.1,1-0.2
|
|
908
|
+
c-0.3,0.2-0.7,0.3-1,0.4c-0.4,0.1-0.7,0.2-1.1,0.2c-0.4,0-0.8,0-1.1-0.2c-0.4-0.1-0.7-0.3-1.1-0.6L906.8,363z" class="st4"></path>
|
|
909
|
+
</g>
|
|
910
|
+
<g>
|
|
911
|
+
<path d="M902.6,367.2c0.2,0.3,0.7,0.5,1,0.7c0.4,0.2,0.8,0.3,1.3,0.4c0.4,0.1,0.9,0.1,1.4,0.1c0.5,0,0.9,0,1.4-0.1
|
|
912
|
+
c-0.5,0.1-0.9,0.2-1.4,0.3c-0.5,0.1-0.9,0.1-1.4,0c-0.5,0-1-0.1-1.4-0.3c-0.5-0.2-0.9-0.3-1.4-0.7L902.6,367.2z" class="st4"></path>
|
|
913
|
+
</g>
|
|
914
|
+
<g>
|
|
915
|
+
<path d="M898.9,370c0.2,0.3,0.7,0.5,1,0.7c0.4,0.2,0.8,0.3,1.3,0.4c0.4,0.1,0.9,0.1,1.4,0.1c0.5,0,0.9,0,1.4-0.1
|
|
916
|
+
c-0.5,0.1-0.9,0.2-1.4,0.3c-0.5,0.1-0.9,0.1-1.4,0c-0.5,0-1-0.1-1.4-0.3c-0.5-0.2-0.9-0.3-1.4-0.7L898.9,370z" class="st4"></path>
|
|
917
|
+
</g>
|
|
918
|
+
<g>
|
|
919
|
+
<path d="M910.6,357.8c-0.6-0.6-1-1.1-1.3-1.8c-0.4-0.6-0.6-1.3-0.8-2c-0.2-0.7-0.3-1.4-0.3-2.2
|
|
920
|
+
c0-0.7,0.1-1.4,0.3-2.1c-0.1,0.7-0.2,1.4-0.1,2.1c0,0.7,0.2,1.4,0.4,2.1c0.2,0.7,0.5,1.3,0.9,1.9c0.4,0.6,0.8,1.1,1.3,1.5
|
|
921
|
+
L910.6,357.8z" class="st4"></path>
|
|
922
|
+
</g>
|
|
923
|
+
<g>
|
|
924
|
+
<path d="M907.6,361.8c-0.6-0.7-1.1-1.5-1.5-2.3c-0.4-0.8-0.8-1.6-1.1-2.5c-0.3-0.9-0.5-1.8-0.6-2.7
|
|
925
|
+
c-0.1-0.9,0-1.8,0.2-2.7c-0.1,0.9-0.1,1.8,0,2.7c0.2,0.9,0.4,1.7,0.8,2.6c0.4,0.8,0.8,1.6,1.3,2.4c0.5,0.7,1,1.5,1.6,2.1
|
|
926
|
+
L907.6,361.8z" class="st4"></path>
|
|
927
|
+
</g>
|
|
928
|
+
<g>
|
|
929
|
+
<path d="M902.7,366.8c-0.7-0.8-1.3-1.7-1.9-2.6c-0.5-0.9-1-1.9-1.3-2.9c-0.3-1-0.5-2.1-0.5-3.2
|
|
930
|
+
c0-1.1,0.2-2.1,0.5-3.1c-0.2,1-0.4,2.1-0.3,3.1c0.1,1,0.3,2.1,0.7,3c0.4,1,0.9,1.9,1.4,2.8c0.6,0.9,1.2,1.7,1.9,2.4L902.7,366.8z" class="st4"></path>
|
|
931
|
+
</g>
|
|
932
|
+
<g>
|
|
933
|
+
<path d="M895.7,371.6c-0.7-0.9-1.1-1.9-1.4-2.9c-0.3-1-0.5-2-0.5-3.1c0-1,0-2.1,0.2-3.1c0.1-0.5,0.2-1,0.3-1.5
|
|
934
|
+
l0.4-1.5l-0.3,1.5c-0.1,0.5-0.2,1-0.2,1.5c-0.1,1-0.1,2,0,3c0.1,1,0.3,2,0.7,2.9c0.3,0.9,0.8,1.8,1.4,2.5L895.7,371.6z" class="st4"></path>
|
|
935
|
+
</g>
|
|
936
|
+
</g>
|
|
937
|
+
<g>
|
|
938
|
+
<linearGradient y2="332.2062" x2="898.8045" y1="332.2062" x1="878.2258" gradientUnits="userSpaceOnUse" id="SVGID_28_">
|
|
939
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
940
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
941
|
+
</linearGradient>
|
|
942
|
+
<path d="M898.6,318.4c0,0-4.2,0-7.9,1.3c-3.7,1.3-15.7,9.1-11.7,21.5c0,0,0.6,2.3-0.5,4c-1.1,1.7,13.2,3.3,18.8-14.7
|
|
943
|
+
C897.3,330.4,899.4,324.4,898.6,318.4z" class="st30"></path>
|
|
944
|
+
<g>
|
|
945
|
+
<path d="M896.4,320.9c-0.6,2.5-1.4,4.9-2.4,7.3c-1,2.4-2.1,4.7-3.5,6.8c-1.4,2.2-3,4.2-4.9,6c-1.9,1.7-4.2,3.1-6.6,4
|
|
946
|
+
l0-0.1c2.2-1.3,4.3-2.7,6.1-4.5c1.8-1.8,3.4-3.7,4.9-5.8c1.4-2.1,2.6-4.3,3.7-6.7C894.8,325.8,895.7,323.4,896.4,320.9
|
|
947
|
+
L896.4,320.9z" class="st4"></path>
|
|
948
|
+
</g>
|
|
949
|
+
<g>
|
|
950
|
+
<path d="M893.4,329c0.3,0.1,0.7,0,1,0c0.4-0.1,0.7-0.2,1-0.4c0.3-0.2,0.6-0.4,0.9-0.6c0.3-0.3,0.6-0.5,0.8-0.8
|
|
951
|
+
c-0.2,0.3-0.4,0.7-0.7,1c-0.3,0.3-0.5,0.6-0.9,0.8c-0.3,0.2-0.7,0.5-1.1,0.6c-0.4,0.1-0.8,0.3-1.3,0.2L893.4,329z" class="st4"></path>
|
|
952
|
+
</g>
|
|
953
|
+
<g>
|
|
954
|
+
<path d="M891.4,333.2c0.2,0.1,0.4,0.3,0.7,0.3c0.3,0.1,0.6,0.1,0.8,0.1c0.6,0,1.2-0.2,1.7-0.5
|
|
955
|
+
c-0.5,0.4-1,0.7-1.7,0.9c-0.3,0.1-0.7,0.1-1,0.1c-0.3,0-0.7-0.1-1-0.3L891.4,333.2z" class="st4"></path>
|
|
956
|
+
</g>
|
|
957
|
+
<g>
|
|
958
|
+
<path d="M888.6,337.4c0.2,0.2,0.6,0.3,1,0.4c0.4,0.1,0.7,0.1,1.1,0.1c0.8,0,1.6-0.1,2.3-0.4
|
|
959
|
+
c-0.7,0.4-1.5,0.6-2.3,0.8c-0.4,0.1-0.8,0.1-1.3,0c-0.4-0.1-0.8-0.1-1.3-0.4L888.6,337.4z" class="st4"></path>
|
|
960
|
+
</g>
|
|
961
|
+
<g>
|
|
962
|
+
<path d="M886,340.4c0.2,0.2,0.6,0.3,1,0.4c0.4,0.1,0.7,0.1,1.1,0.1c0.8,0,1.6-0.1,2.3-0.4c-0.7,0.4-1.5,0.6-2.3,0.8
|
|
963
|
+
c-0.4,0.1-0.8,0.1-1.3,0c-0.4-0.1-0.8-0.1-1.3-0.4L886,340.4z" class="st4"></path>
|
|
964
|
+
</g>
|
|
965
|
+
<g>
|
|
966
|
+
<path d="M893.8,328.3c-0.6-0.4-1-0.8-1.4-1.3c-0.4-0.5-0.7-1-1-1.6c-0.3-0.6-0.5-1.2-0.6-1.8
|
|
967
|
+
c-0.1-0.6-0.1-1.2-0.1-1.8c0,0.6,0.1,1.2,0.3,1.8c0.2,0.6,0.4,1.1,0.7,1.6c0.3,0.5,0.7,1,1.1,1.4c0.4,0.4,0.9,0.8,1.4,1
|
|
968
|
+
L893.8,328.3z" class="st4"></path>
|
|
969
|
+
</g>
|
|
970
|
+
<g>
|
|
971
|
+
<path d="M891.9,332.2c-0.6-0.5-1.1-1.1-1.7-1.7c-0.5-0.6-1-1.3-1.4-1.9c-0.4-0.7-0.7-1.4-0.9-2.2
|
|
972
|
+
c-0.2-0.8-0.3-1.5-0.3-2.3c0,0.8,0.2,1.5,0.5,2.3c0.3,0.7,0.6,1.4,1.1,2c0.9,1.2,2,2.4,3.2,3.3L891.9,332.2z" class="st4"></path>
|
|
973
|
+
</g>
|
|
974
|
+
<g>
|
|
975
|
+
<path d="M888.6,337.2c-0.8-0.6-1.4-1.2-2-1.9c-0.6-0.7-1.1-1.5-1.6-2.3c-0.4-0.8-0.8-1.7-1-2.6
|
|
976
|
+
c-0.2-0.9-0.2-1.8-0.1-2.7c0,0.9,0,1.8,0.3,2.7c0.3,0.9,0.6,1.7,1.1,2.4c0.5,0.8,1,1.4,1.7,2.1c0.6,0.6,1.3,1.2,2,1.7
|
|
977
|
+
L888.6,337.2z" class="st4"></path>
|
|
978
|
+
</g>
|
|
979
|
+
<g>
|
|
980
|
+
<path d="M883.5,342.3c-0.7-0.7-1.2-1.4-1.7-2.2c-0.4-0.8-0.7-1.6-0.9-2.5c-0.2-0.9-0.3-1.8-0.3-2.6
|
|
981
|
+
c0-0.4,0-0.9,0-1.3l0.1-1.3l0,1.3c0,0.4,0,0.9,0.1,1.3c0.1,0.9,0.3,1.7,0.5,2.5c0.3,0.8,0.6,1.6,1.1,2.3c0.4,0.7,1,1.4,1.6,1.9
|
|
982
|
+
L883.5,342.3z" class="st4"></path>
|
|
983
|
+
</g>
|
|
984
|
+
</g>
|
|
985
|
+
<g>
|
|
986
|
+
<linearGradient y2="392.8583" x2="896.2022" y1="392.8583" x1="859.6522" gradientUnits="userSpaceOnUse" id="SVGID_29_">
|
|
987
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
988
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
989
|
+
</linearGradient>
|
|
990
|
+
<path d="M859.7,386.6c0,0,3.9-2.8,8.2-4s20.7-1.7,25,12.5c0,0,0.9,2.6,3.1,3.4c2.2,0.9-10.2,11.7-27.2-1.5
|
|
991
|
+
C868.7,397.1,862.8,392.8,859.7,386.6z" class="st31"></path>
|
|
992
|
+
<g>
|
|
993
|
+
<path d="M863.5,387.6c2.2,1.9,4.7,3.5,7.1,5c2.5,1.5,5.1,2.8,7.8,3.9c2.7,1,5.5,1.8,8.4,2.3c2.9,0.5,5.7,0.5,8.7,0.2
|
|
994
|
+
l0,0.1c-2.8,0.7-5.8,0.8-8.8,0.5c-2.9-0.4-5.8-1.3-8.5-2.4c-2.7-1.2-5.3-2.6-7.8-4.1C867.9,391.3,865.6,389.6,863.5,387.6
|
|
995
|
+
L863.5,387.6z" class="st4"></path>
|
|
996
|
+
</g>
|
|
997
|
+
<g>
|
|
998
|
+
<path d="M872.1,393.8c-0.4,0.3-0.9,0.5-1.3,0.6c-0.5,0.1-0.9,0.2-1.4,0.1c-0.5,0-0.9-0.1-1.4-0.2
|
|
999
|
+
c-0.4-0.1-0.9-0.3-1.3-0.4c0.4,0.1,0.9,0.2,1.3,0.3c0.4,0,0.9,0.1,1.3,0c0.4,0,0.8-0.1,1.2-0.3c0.4-0.2,0.8-0.4,1-0.6
|
|
1000
|
+
L872.1,393.8z" class="st4"></path>
|
|
1001
|
+
</g>
|
|
1002
|
+
<g>
|
|
1003
|
+
<path d="M876.8,396.1c-0.2,0.4-0.5,0.7-0.8,0.9c-0.3,0.2-0.6,0.4-1,0.6c-0.3,0.1-0.7,0.2-1.1,0.3
|
|
1004
|
+
c-0.4,0.1-0.7,0.1-1.1,0c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.9-0.4c0.3-0.2,0.5-0.4,0.7-0.7c0.2-0.2,0.4-0.5,0.4-0.8
|
|
1005
|
+
L876.8,396.1z" class="st4"></path>
|
|
1006
|
+
</g>
|
|
1007
|
+
<g>
|
|
1008
|
+
<path d="M882.3,398.3c-0.3,0.5-0.6,0.8-1,1.2c-0.4,0.3-0.8,0.6-1.2,0.8c-0.4,0.2-0.9,0.4-1.3,0.5
|
|
1009
|
+
c-0.4,0.1-0.9,0.2-1.3,0.3c0.4-0.1,0.9-0.3,1.3-0.5c0.4-0.2,0.8-0.4,1.2-0.7c0.4-0.3,0.7-0.5,1-0.9c0.3-0.3,0.5-0.7,0.7-1
|
|
1010
|
+
L882.3,398.3z" class="st4"></path>
|
|
1011
|
+
</g>
|
|
1012
|
+
<g>
|
|
1013
|
+
<path d="M886.6,399.3c-0.3,0.5-0.6,0.8-1,1.2c-0.4,0.3-0.8,0.6-1.2,0.8c-0.4,0.2-0.9,0.4-1.3,0.5
|
|
1014
|
+
c-0.4,0.1-0.9,0.2-1.3,0.3c0.4-0.1,0.9-0.3,1.3-0.5c0.4-0.2,0.8-0.4,1.2-0.7c0.4-0.3,0.7-0.5,1-0.9c0.3-0.3,0.5-0.7,0.7-1
|
|
1015
|
+
L886.6,399.3z" class="st4"></path>
|
|
1016
|
+
</g>
|
|
1017
|
+
<g>
|
|
1018
|
+
<path d="M869.9,392.4c0.3-0.6,0.5-1.2,0.6-1.9c0.1-0.7,0.2-1.3,0.1-2c-0.1-0.7-0.2-1.4-0.4-2
|
|
1019
|
+
c-0.2-0.7-0.6-1.3-0.9-1.9c0.4,0.6,0.8,1.1,1.1,1.8c0.3,0.6,0.5,1.3,0.6,2c0.1,0.7,0.1,1.4,0.1,2.1c-0.1,0.7-0.2,1.4-0.5,2.1
|
|
1020
|
+
L869.9,392.4z" class="st4"></path>
|
|
1021
|
+
</g>
|
|
1022
|
+
<g>
|
|
1023
|
+
<path d="M874.3,394.9c0.3-0.8,0.5-1.7,0.6-2.5c0.1-0.9,0.2-1.7,0.2-2.6c0-0.9-0.1-1.7-0.3-2.6
|
|
1024
|
+
c-0.2-0.8-0.6-1.7-1.1-2.4c0.5,0.7,0.9,1.5,1.2,2.4c0.3,0.9,0.4,1.7,0.5,2.6c0.1,0.9,0.1,1.8,0,2.7c-0.1,0.9-0.2,1.8-0.4,2.7
|
|
1025
|
+
L874.3,394.9z" class="st4"></path>
|
|
1026
|
+
</g>
|
|
1027
|
+
<g>
|
|
1028
|
+
<path d="M880.6,397.5c0.4-0.9,0.6-1.9,0.8-2.9c0.2-1,0.2-2,0.2-3c0-1-0.3-2-0.6-3c-0.3-1-0.9-1.9-1.5-2.7
|
|
1029
|
+
c0.7,0.8,1.3,1.7,1.6,2.6c0.4,1,0.7,2,0.8,3c0.1,1,0.1,2.1,0,3.2c-0.1,1.1-0.3,2.1-0.6,3.1L880.6,397.5z" class="st4"></path>
|
|
1030
|
+
</g>
|
|
1031
|
+
<g>
|
|
1032
|
+
<path d="M888.7,399c0.3-0.9,0.3-1.9,0.3-2.8c0-1-0.2-1.9-0.5-2.9c-0.3-0.9-0.7-1.9-1.2-2.7c-0.2-0.4-0.5-0.8-0.8-1.3
|
|
1033
|
+
l-0.9-1.2l1,1.2c0.3,0.4,0.6,0.8,0.9,1.2c0.5,0.8,1,1.8,1.4,2.7c0.4,1,0.6,1.9,0.7,3c0.1,1,0.1,2-0.1,3.1L888.7,399z" class="st4"></path>
|
|
1034
|
+
</g>
|
|
1035
|
+
</g>
|
|
1036
|
+
<g>
|
|
1037
|
+
<linearGradient y2="355.3123" x2="885.0598" y1="355.3123" x1="853.5775" gradientUnits="userSpaceOnUse" id="SVGID_30_">
|
|
1038
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1039
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1040
|
+
</linearGradient>
|
|
1041
|
+
<path d="M853.6,348.8c0,0,3.6-2.2,7.4-3c3.8-0.8,18.3-0.4,21.3,12.3c0,0,0.7,2.3,2.5,3.2c1.9,0.9-9.6,9.7-23.8-2.8
|
|
1042
|
+
C861,358.5,856,354.4,853.6,348.8z" class="st32"></path>
|
|
1043
|
+
<g>
|
|
1044
|
+
<path d="M856.9,349.8c1.9,1.8,3.9,3.3,6,4.8c2.1,1.4,4.3,2.7,6.6,3.8c2.3,1,4.8,1.8,7.2,2.4c2.5,0.6,5,0.7,7.6,0.7
|
|
1045
|
+
l0,0.1c-2.5,0.5-5.2,0.5-7.8,0c-2.6-0.5-5-1.5-7.3-2.6c-2.3-1.2-4.5-2.5-6.6-4C860.6,353.4,858.6,351.7,856.9,349.8L856.9,349.8z" class="st4"></path>
|
|
1046
|
+
</g>
|
|
1047
|
+
<g>
|
|
1048
|
+
<path d="M864.2,355.8c-0.4,0.3-0.8,0.4-1.2,0.5c-0.4,0.1-0.8,0.1-1.2,0c-0.4,0-0.8-0.1-1.2-0.3
|
|
1049
|
+
c-0.4-0.1-0.7-0.3-1.1-0.5c0.4,0.1,0.8,0.2,1.1,0.3c0.4,0.1,0.8,0.1,1.1,0.1c0.4,0,0.7-0.1,1.1-0.2c0.3-0.1,0.7-0.3,0.9-0.5
|
|
1050
|
+
L864.2,355.8z" class="st4"></path>
|
|
1051
|
+
</g>
|
|
1052
|
+
<g>
|
|
1053
|
+
<path d="M868.2,358.1c-0.2,0.4-0.5,0.6-0.7,0.8c-0.3,0.2-0.6,0.4-0.9,0.5c-0.6,0.2-1.3,0.2-1.9,0.1
|
|
1054
|
+
c0.6,0,1.2-0.2,1.7-0.5c0.3-0.2,0.5-0.3,0.7-0.5c0.2-0.2,0.4-0.5,0.4-0.7L868.2,358.1z" class="st4"></path>
|
|
1055
|
+
</g>
|
|
1056
|
+
<g>
|
|
1057
|
+
<path d="M872.9,360.3c-0.3,0.4-0.6,0.7-0.9,1c-0.3,0.3-0.7,0.5-1.1,0.6c-0.8,0.3-1.6,0.5-2.4,0.5
|
|
1058
|
+
c0.8-0.2,1.5-0.5,2.2-0.9c0.3-0.2,0.6-0.4,0.9-0.7c0.3-0.3,0.5-0.6,0.6-0.9L872.9,360.3z" class="st4"></path>
|
|
1059
|
+
</g>
|
|
1060
|
+
<g>
|
|
1061
|
+
<path d="M876.6,361.4c-0.3,0.4-0.6,0.7-0.9,1c-0.3,0.3-0.7,0.5-1.1,0.6c-0.8,0.3-1.6,0.5-2.4,0.5
|
|
1062
|
+
c0.8-0.2,1.5-0.5,2.2-0.9c0.3-0.2,0.6-0.4,0.9-0.7c0.3-0.3,0.5-0.6,0.6-0.9L876.6,361.4z" class="st4"></path>
|
|
1063
|
+
</g>
|
|
1064
|
+
<g>
|
|
1065
|
+
<path d="M862.3,354.4c0.3-0.5,0.5-1,0.6-1.6c0.1-0.6,0.2-1.2,0.2-1.8c0-0.6-0.1-1.2-0.3-1.8
|
|
1066
|
+
c-0.2-0.6-0.4-1.1-0.7-1.7c0.3,0.5,0.7,1,0.9,1.6c0.2,0.6,0.4,1.2,0.5,1.8c0.1,0.6,0.1,1.3,0,1.9c-0.1,0.6-0.3,1.2-0.5,1.9
|
|
1067
|
+
L862.3,354.4z" class="st4"></path>
|
|
1068
|
+
</g>
|
|
1069
|
+
<g>
|
|
1070
|
+
<path d="M865.9,356.9c0.6-1.4,0.9-2.9,1-4.5c0-0.8,0-1.5-0.1-2.3c-0.1-0.8-0.4-1.5-0.8-2.2c0.4,0.7,0.8,1.4,1,2.1
|
|
1071
|
+
c0.2,0.8,0.3,1.6,0.3,2.3c0,0.8,0,1.6-0.2,2.4c-0.1,0.8-0.3,1.6-0.5,2.3L865.9,356.9z" class="st4"></path>
|
|
1072
|
+
</g>
|
|
1073
|
+
<g>
|
|
1074
|
+
<path d="M871.4,359.5c0.4-0.8,0.6-1.6,0.9-2.5c0.2-0.9,0.3-1.8,0.3-2.7c0-0.9-0.1-1.8-0.3-2.7
|
|
1075
|
+
c-0.2-0.9-0.7-1.7-1.1-2.5c0.5,0.7,1,1.5,1.3,2.4c0.3,0.9,0.5,1.8,0.5,2.7c0,0.9,0,1.9-0.2,2.8c-0.2,0.9-0.4,1.8-0.7,2.7
|
|
1076
|
+
L871.4,359.5z" class="st4"></path>
|
|
1077
|
+
</g>
|
|
1078
|
+
<g>
|
|
1079
|
+
<path d="M878.4,361.2c0.3-0.7,0.4-1.6,0.4-2.5c0-0.9-0.1-1.7-0.3-2.6c-0.2-0.8-0.5-1.7-0.9-2.5
|
|
1080
|
+
c-0.2-0.4-0.4-0.8-0.6-1.2l-0.7-1.1l0.8,1.1c0.2,0.4,0.5,0.7,0.7,1.1c0.4,0.8,0.8,1.6,1.1,2.4c0.3,0.9,0.4,1.7,0.5,2.7
|
|
1081
|
+
c0,0.9,0,1.8-0.3,2.8L878.4,361.2z" class="st4"></path>
|
|
1082
|
+
</g>
|
|
1083
|
+
</g>
|
|
1084
|
+
<g>
|
|
1085
|
+
<linearGradient y2="321.028" x2="866.1223" y1="321.028" x1="834.3931" gradientUnits="userSpaceOnUse" id="SVGID_31_">
|
|
1086
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1087
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1088
|
+
</linearGradient>
|
|
1089
|
+
<path d="M834.4,321.5c0,0,2.3-3.2,5.3-5.3c3-2.1,15.6-6.9,22.8,3.1c0,0,1.4,1.8,3.3,1.8c1.9,0.1-4.8,11.8-21.6,6
|
|
1090
|
+
C844.2,327.2,838.5,325.5,834.4,321.5z" class="st33"></path>
|
|
1091
|
+
<g>
|
|
1092
|
+
<path d="M837.6,321.2c2.2,0.9,4.6,1.5,6.9,2c2.3,0.5,4.7,0.8,7.1,0.9c2.4,0.1,4.7-0.1,7.1-0.5
|
|
1093
|
+
c2.3-0.4,4.6-1.1,6.8-2.1l0,0.1c-2,1.3-4.3,2.2-6.7,2.8c-2.4,0.5-4.8,0.5-7.3,0.3c-2.4-0.2-4.8-0.6-7.1-1.2
|
|
1094
|
+
C842.1,323,839.8,322.2,837.6,321.2L837.6,321.2z" class="st4"></path>
|
|
1095
|
+
</g>
|
|
1096
|
+
<g>
|
|
1097
|
+
<path d="M846,323.8c-0.3,0.4-0.6,0.6-0.9,0.9c-0.3,0.2-0.7,0.4-1.1,0.5c-0.4,0.1-0.7,0.2-1.1,0.2c-0.4,0-0.7,0-1.1,0
|
|
1098
|
+
c0.4,0,0.7-0.1,1.1-0.2c0.4-0.1,0.7-0.2,1-0.4c0.3-0.2,0.6-0.3,0.9-0.6c0.2-0.2,0.5-0.5,0.6-0.7L846,323.8z" class="st4"></path>
|
|
1099
|
+
</g>
|
|
1100
|
+
<g>
|
|
1101
|
+
<path d="M850.3,324.3c-0.1,0.4-0.2,0.7-0.4,0.9c-0.2,0.3-0.4,0.5-0.6,0.7c-0.5,0.4-1,0.6-1.6,0.8
|
|
1102
|
+
c0.5-0.3,1-0.6,1.3-1c0.2-0.2,0.3-0.5,0.4-0.7c0.1-0.2,0.1-0.5,0.1-0.7L850.3,324.3z" class="st4"></path>
|
|
1103
|
+
</g>
|
|
1104
|
+
<g>
|
|
1105
|
+
<path d="M855.1,324.6c-0.1,0.5-0.3,0.8-0.5,1.2c-0.2,0.3-0.5,0.7-0.7,0.9c-0.6,0.6-1.2,1-1.9,1.3
|
|
1106
|
+
c0.6-0.4,1.2-1,1.6-1.5c0.2-0.3,0.4-0.6,0.5-0.9c0.1-0.3,0.2-0.7,0.2-1L855.1,324.6z" class="st4"></path>
|
|
1107
|
+
</g>
|
|
1108
|
+
<g>
|
|
1109
|
+
<path d="M858.8,324.2c-0.1,0.5-0.3,0.8-0.5,1.2c-0.2,0.3-0.5,0.7-0.7,0.9c-0.6,0.6-1.2,1-1.9,1.3
|
|
1110
|
+
c0.6-0.4,1.2-1,1.6-1.5c0.2-0.3,0.4-0.6,0.5-0.9c0.1-0.3,0.2-0.7,0.2-1L858.8,324.2z" class="st4"></path>
|
|
1111
|
+
</g>
|
|
1112
|
+
<g>
|
|
1113
|
+
<path d="M843.9,323.2c0.1-0.5,0.1-1.1,0-1.6c-0.1-0.5-0.2-1.1-0.4-1.6c-0.2-0.5-0.5-1-0.8-1.5
|
|
1114
|
+
c-0.3-0.5-0.8-0.8-1.2-1.2c0.5,0.3,0.9,0.7,1.3,1.1c0.4,0.4,0.8,0.9,1,1.4c0.3,0.5,0.5,1.1,0.7,1.7c0.1,0.6,0.2,1.2,0.2,1.8
|
|
1115
|
+
L843.9,323.2z" class="st4"></path>
|
|
1116
|
+
</g>
|
|
1117
|
+
<g>
|
|
1118
|
+
<path d="M847.9,324.1c0-1.4-0.2-2.8-0.7-4.2c-0.2-0.7-0.5-1.3-0.9-1.9c-0.4-0.6-0.9-1.1-1.4-1.6
|
|
1119
|
+
c0.6,0.4,1.1,0.9,1.6,1.5c0.4,0.6,0.8,1.2,1.1,1.9c0.3,0.7,0.5,1.4,0.7,2.1c0.2,0.7,0.3,1.4,0.4,2.2L847.9,324.1z" class="st4"></path>
|
|
1120
|
+
</g>
|
|
1121
|
+
<g>
|
|
1122
|
+
<path d="M853.5,324.4c0-0.8,0-1.7-0.1-2.5c-0.1-0.8-0.3-1.6-0.6-2.4c-0.3-0.8-0.7-1.5-1.2-2.2
|
|
1123
|
+
c-0.5-0.7-1.2-1.2-1.8-1.7c0.7,0.4,1.4,0.9,2,1.6c0.6,0.6,1.1,1.4,1.4,2.2c0.4,0.8,0.7,1.6,0.9,2.5c0.2,0.9,0.3,1.7,0.3,2.6
|
|
1124
|
+
L853.5,324.4z" class="st4"></path>
|
|
1125
|
+
</g>
|
|
1126
|
+
<g>
|
|
1127
|
+
<path d="M860.2,323.4c0-0.7-0.2-1.5-0.5-2.3c-0.3-0.7-0.7-1.4-1.2-2.1c-0.5-0.7-1-1.3-1.6-1.8c-0.6-0.6-1.3-1-2-1.5
|
|
1128
|
+
c0.7,0.4,1.4,0.8,2.1,1.4c0.7,0.5,1.3,1.1,1.8,1.7c0.5,0.6,1,1.3,1.4,2.1c0.4,0.8,0.6,1.6,0.7,2.5L860.2,323.4z" class="st4"></path>
|
|
1129
|
+
</g>
|
|
1130
|
+
</g>
|
|
1131
|
+
<g>
|
|
1132
|
+
<linearGradient y2="291.9739" x2="876.8981" y1="291.9739" x1="854.2573" gradientUnits="userSpaceOnUse" id="SVGID_32_">
|
|
1133
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1134
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1135
|
+
</linearGradient>
|
|
1136
|
+
<path d="M872.3,269.7c0,0-5.3,2.1-9.3,5.6c-4,3.5-15.2,19.4-3.8,33c0,0,2,2.6,1.4,5.3s18.2-2.6,16.1-28
|
|
1137
|
+
C876.7,285.5,876.3,276.9,872.3,269.7z" class="st34"></path>
|
|
1138
|
+
<g>
|
|
1139
|
+
<path d="M870.8,274.1c0.5,3.4,0.7,6.9,0.7,10.4c-0.1,3.5-0.4,6.9-1,10.4c-0.7,3.4-1.6,6.8-3.1,10
|
|
1140
|
+
c-1.6,3.1-3.6,6-6.1,8.4l-0.1-0.1c2.2-2.7,4.1-5.6,5.5-8.7c1.3-3.2,2.4-6.4,3.2-9.8c0.7-3.4,1.1-6.8,1.2-10.3
|
|
1141
|
+
C871.2,281,871.2,277.6,870.8,274.1L870.8,274.1z" class="st4"></path>
|
|
1142
|
+
</g>
|
|
1143
|
+
<g>
|
|
1144
|
+
<path d="M871.1,286c0.4-0.1,0.9-0.3,1.3-0.6c0.4-0.3,0.8-0.6,1.1-1c0.3-0.4,0.6-0.9,0.8-1.3c0.2-0.5,0.4-1,0.6-1.5
|
|
1145
|
+
c-0.1,0.5-0.2,1-0.4,1.5c-0.2,0.5-0.4,1-0.7,1.5c-0.3,0.5-0.6,0.9-1,1.3c-0.4,0.4-0.9,0.7-1.5,0.9L871.1,286z" class="st4"></path>
|
|
1146
|
+
</g>
|
|
1147
|
+
<g>
|
|
1148
|
+
<path d="M870.7,292.2c0.3,0.1,0.7,0.1,1.1,0.1c0.4,0,0.8-0.2,1.1-0.3c0.4-0.2,0.7-0.4,1-0.7c0.3-0.3,0.6-0.6,0.9-0.9
|
|
1149
|
+
c-0.2,0.4-0.5,0.7-0.7,1c-0.3,0.3-0.6,0.6-1,0.8c-0.4,0.2-0.8,0.4-1.2,0.5c-0.4,0.1-0.9,0.2-1.4,0.1L870.7,292.2z" class="st4"></path>
|
|
1150
|
+
</g>
|
|
1151
|
+
<g>
|
|
1152
|
+
<path d="M869.4,299c0.4,0.1,1,0.1,1.5,0c0.5-0.1,1-0.2,1.5-0.4c0.5-0.2,1-0.5,1.4-0.8c0.5-0.3,0.9-0.6,1.3-1
|
|
1153
|
+
c-0.4,0.4-0.7,0.8-1.2,1.1c-0.4,0.3-0.9,0.7-1.4,0.9c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.1,0.2-1.7,0.2L869.4,299z" class="st4"></path>
|
|
1154
|
+
</g>
|
|
1155
|
+
<g>
|
|
1156
|
+
<path d="M867.6,304c0.4,0.1,1,0.1,1.5,0c0.5-0.1,1-0.2,1.5-0.4c0.5-0.2,1-0.5,1.4-0.8c0.5-0.3,0.9-0.6,1.3-1
|
|
1157
|
+
c-0.4,0.4-0.7,0.8-1.2,1.1c-0.4,0.3-0.9,0.7-1.4,0.9c-0.5,0.3-1,0.5-1.6,0.6c-0.6,0.1-1.1,0.2-1.7,0.2L867.6,304z" class="st4"></path>
|
|
1158
|
+
</g>
|
|
1159
|
+
<g>
|
|
1160
|
+
<path d="M871.2,284.5c-0.9-0.2-1.7-0.5-2.4-0.9c-0.8-0.4-1.5-0.9-2.1-1.5c-0.6-0.6-1.2-1.2-1.6-1.9
|
|
1161
|
+
c-0.5-0.7-0.8-1.5-1.1-2.2c0.3,0.8,0.7,1.5,1.2,2.1c0.5,0.7,1.1,1.2,1.7,1.7c0.6,0.5,1.3,0.9,2.1,1.2c0.7,0.3,1.5,0.6,2.3,0.6
|
|
1162
|
+
L871.2,284.5z" class="st4"></path>
|
|
1163
|
+
</g>
|
|
1164
|
+
<g>
|
|
1165
|
+
<path d="M870.8,290.4c-1-0.3-2-0.8-2.9-1.3c-0.9-0.5-1.8-1.1-2.7-1.7c-0.8-0.7-1.6-1.4-2.3-2.2
|
|
1166
|
+
c-0.7-0.8-1.2-1.8-1.6-2.7c0.4,1,1,1.8,1.7,2.6c0.7,0.8,1.5,1.4,2.4,2c0.9,0.6,1.8,1.1,2.7,1.5c0.9,0.4,1.9,0.8,2.9,1.1
|
|
1167
|
+
L870.8,290.4z" class="st4"></path>
|
|
1168
|
+
</g>
|
|
1169
|
+
<g>
|
|
1170
|
+
<path d="M869.3,298.4c-1.2-0.3-2.4-0.8-3.5-1.4c-1.1-0.6-2.2-1.2-3.1-2c-1-0.8-1.8-1.7-2.5-2.7
|
|
1171
|
+
c-0.7-1-1.2-2.2-1.6-3.3c0.4,1.1,1,2.3,1.7,3.2c0.8,1,1.6,1.8,2.6,2.5c1,0.7,2,1.3,3.1,1.8c1.1,0.5,2.3,0.9,3.4,1.1L869.3,298.4z" class="st4"></path>
|
|
1172
|
+
</g>
|
|
1173
|
+
<g>
|
|
1174
|
+
<path d="M865.5,307.4c-1.2-0.4-2.2-1.1-3.2-1.9c-0.9-0.8-1.8-1.7-2.5-2.6c-0.7-1-1.3-2-1.8-3.1
|
|
1175
|
+
c-0.3-0.5-0.4-1.1-0.7-1.7l-0.5-1.7l0.6,1.7c0.3,0.5,0.5,1.1,0.8,1.6c0.5,1.1,1.2,2,1.9,3c0.8,0.9,1.6,1.7,2.5,2.4
|
|
1176
|
+
c0.9,0.7,2,1.3,3,1.6L865.5,307.4z" class="st4"></path>
|
|
1177
|
+
</g>
|
|
1178
|
+
</g>
|
|
1179
|
+
<g>
|
|
1180
|
+
<linearGradient y2="266.1549" x2="841.9939" y1="266.1549" x1="793.4686" gradientUnits="userSpaceOnUse" id="SVGID_33_">
|
|
1181
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1182
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1183
|
+
</linearGradient>
|
|
1184
|
+
<path d="M793.5,251.8c0,0,0.8,6.8,3.6,12.5s17.9,23.7,37.2,14.8c0,0,3.6-1.5,6.6,0c3,1.5,2.7-22-27.5-27.6
|
|
1185
|
+
C813.2,251.6,803.1,249.4,793.5,251.8z" class="st35"></path>
|
|
1186
|
+
<g>
|
|
1187
|
+
<path d="M798.1,254.9c4.2,0.5,8.3,1.4,12.3,2.5c4,1.1,8,2.6,11.8,4.4c3.8,1.8,7.4,4,10.6,6.7
|
|
1188
|
+
c1.6,1.4,3.1,2.9,4.4,4.5c1.3,1.6,2.5,3.4,3.5,5.2l-0.1,0c-1.2-1.7-2.4-3.4-3.8-4.9c-1.4-1.5-2.9-3-4.5-4.3
|
|
1189
|
+
c-3.2-2.6-6.7-4.9-10.4-6.8c-3.7-1.8-7.6-3.4-11.6-4.6C806.3,256.6,802.2,255.6,798.1,254.9L798.1,254.9z" class="st4"></path>
|
|
1190
|
+
</g>
|
|
1191
|
+
<g>
|
|
1192
|
+
<path d="M812,258.3c0-0.5-0.1-1.2-0.3-1.7c-0.2-0.6-0.5-1.1-0.9-1.6c-0.4-0.5-0.8-0.9-1.3-1.4
|
|
1193
|
+
c-0.5-0.4-1-0.8-1.5-1.1c0.6,0.3,1.1,0.6,1.7,1c0.5,0.4,1,0.8,1.5,1.3c0.4,0.5,0.8,1,1.1,1.6c0.3,0.6,0.5,1.2,0.6,2L812,258.3z" class="st4"></path>
|
|
1194
|
+
</g>
|
|
1195
|
+
<g>
|
|
1196
|
+
<path d="M819.1,260.7c0.2-0.4,0.3-0.8,0.4-1.3c0.1-0.5,0-1,0-1.4c-0.1-0.5-0.2-0.9-0.5-1.4c-0.2-0.5-0.5-0.9-0.8-1.3
|
|
1197
|
+
c0.3,0.4,0.7,0.8,0.9,1.2c0.3,0.4,0.5,0.9,0.7,1.4c0.2,0.5,0.2,1,0.2,1.6c0,0.5-0.1,1.1-0.3,1.6L819.1,260.7z" class="st4"></path>
|
|
1198
|
+
</g>
|
|
1199
|
+
<g>
|
|
1200
|
+
<path d="M826.6,264.4c0.2-0.5,0.4-1.1,0.5-1.8c0.1-0.6,0-1.3,0-1.9c-0.1-0.6-0.2-1.3-0.5-1.9
|
|
1201
|
+
c-0.2-0.6-0.5-1.2-0.8-1.8c0.3,0.6,0.7,1.1,0.9,1.7c0.3,0.6,0.5,1.2,0.6,1.9c0.1,0.6,0.2,1.3,0.2,2c0,0.7-0.1,1.3-0.3,2.1
|
|
1202
|
+
L826.6,264.4z" class="st4"></path>
|
|
1203
|
+
</g>
|
|
1204
|
+
<g>
|
|
1205
|
+
<path d="M831.9,268.1c0.2-0.5,0.4-1.1,0.5-1.8c0.1-0.6,0-1.3,0-1.9c-0.1-0.6-0.2-1.3-0.5-1.9
|
|
1206
|
+
c-0.2-0.6-0.5-1.2-0.8-1.8c0.3,0.6,0.7,1.1,0.9,1.7c0.3,0.6,0.5,1.2,0.6,1.9c0.1,0.6,0.2,1.3,0.2,2c0,0.7-0.1,1.3-0.3,2.1
|
|
1207
|
+
L831.9,268.1z" class="st4"></path>
|
|
1208
|
+
</g>
|
|
1209
|
+
<g>
|
|
1210
|
+
<path d="M810.2,257.7c-0.5,1-1.1,1.8-1.8,2.5c-0.7,0.8-1.5,1.4-2.3,2c-0.9,0.5-1.8,1-2.7,1.3c-1,0.3-2,0.5-2.9,0.6
|
|
1211
|
+
c1-0.2,2-0.4,2.9-0.8c0.9-0.3,1.8-0.8,2.6-1.4c0.8-0.6,1.5-1.3,2.1-2c0.6-0.8,1.1-1.6,1.5-2.5L810.2,257.7z" class="st4"></path>
|
|
1212
|
+
</g>
|
|
1213
|
+
<g>
|
|
1214
|
+
<path d="M817,260c-0.7,1.1-1.5,2.1-2.4,3c-0.9,0.9-1.8,1.8-2.8,2.6c-1,0.8-2.1,1.5-3.3,2c-1.2,0.5-2.4,0.8-3.7,1
|
|
1215
|
+
c1.3-0.2,2.5-0.6,3.6-1.1c1.1-0.6,2.2-1.3,3.1-2.1c0.9-0.8,1.8-1.7,2.6-2.7c0.8-1,1.5-2,2.2-3L817,260z" class="st4"></path>
|
|
1216
|
+
</g>
|
|
1217
|
+
<g>
|
|
1218
|
+
<path d="M825.8,264.3c-0.8,1.3-1.7,2.5-2.7,3.6c-1,1.1-2.1,2.1-3.3,3c-1.2,0.9-2.6,1.6-3.9,2.1
|
|
1219
|
+
c-1.4,0.5-2.9,0.7-4.4,0.8c1.5-0.1,2.9-0.4,4.3-1c1.4-0.6,2.6-1.3,3.8-2.2c1.1-0.9,2.2-2,3.1-3.1c0.9-1.1,1.8-2.4,2.4-3.6
|
|
1220
|
+
L825.8,264.3z" class="st4"></path>
|
|
1221
|
+
</g>
|
|
1222
|
+
<g>
|
|
1223
|
+
<path d="M835.1,271.5c-0.9,1.3-1.9,2.2-3.1,3.1c-1.2,0.9-2.5,1.5-3.8,2.1c-1.4,0.5-2.8,0.9-4.2,1.1
|
|
1224
|
+
c-0.7,0.1-1.4,0.2-2.1,0.3c-0.7,0-1.4,0.1-2.2,0.1l2.1-0.2c0.7-0.1,1.4-0.2,2.1-0.4c1.4-0.3,2.8-0.7,4.1-1.3
|
|
1225
|
+
c1.3-0.6,2.5-1.3,3.6-2.2c1.1-0.9,2.1-1.9,2.8-3L835.1,271.5z" class="st4"></path>
|
|
1226
|
+
</g>
|
|
1227
|
+
</g>
|
|
1228
|
+
<g>
|
|
1229
|
+
<linearGradient y2="690.3279" x2="865.1132" y1="690.3279" x1="844.9806" gradientUnits="userSpaceOnUse" id="SVGID_34_">
|
|
1230
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1231
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1232
|
+
</linearGradient>
|
|
1233
|
+
<path d="M845.5,674.9c0,0,4.3,0.1,8,1.7c3.7,1.5,15.5,10.5,10.3,23.8c0,0-0.8,2.5,0.2,4.4c1,1.9-13.9,3.1-18.2-16.7
|
|
1234
|
+
C845.9,688.1,844.2,681.5,845.5,674.9z" class="st36"></path>
|
|
1235
|
+
<g>
|
|
1236
|
+
<path d="M847.6,677.8c0.5,2.6,1.2,5.2,2.1,7.8c0.9,2.5,1.9,5,3.2,7.4c1.3,2.3,2.8,4.5,4.5,6.5c1.7,2,3.8,3.7,6,5.2
|
|
1237
|
+
l0,0.1c-2.5-1.1-4.7-2.8-6.6-4.7c-1.8-2-3.3-4.4-4.5-6.8c-1.2-2.4-2.2-4.9-3-7.5C848.6,683.1,847.9,680.5,847.6,677.8
|
|
1238
|
+
L847.6,677.8z" class="st4"></path>
|
|
1239
|
+
</g>
|
|
1240
|
+
<g>
|
|
1241
|
+
<path d="M850.1,687.5c-0.5,0-0.9-0.1-1.3-0.3c-0.4-0.2-0.8-0.4-1.1-0.7c-0.3-0.3-0.6-0.6-0.8-0.9
|
|
1242
|
+
c-0.2-0.3-0.4-0.7-0.6-1.1c0.2,0.3,0.5,0.6,0.8,0.9c0.3,0.3,0.6,0.5,0.9,0.8c0.3,0.2,0.7,0.4,1,0.5c0.3,0.1,0.8,0.1,1,0.1
|
|
1243
|
+
L850.1,687.5z" class="st4"></path>
|
|
1244
|
+
</g>
|
|
1245
|
+
<g>
|
|
1246
|
+
<path d="M852.1,692c-0.4,0.2-0.7,0.2-1.1,0.3c-0.3,0-0.7,0-1-0.1c-0.7-0.2-1.2-0.5-1.7-1c0.3,0.2,0.6,0.3,0.9,0.4
|
|
1247
|
+
c0.3,0.1,0.6,0.2,0.9,0.2c0.3,0,0.6,0,0.9-0.1c0.3-0.1,0.6-0.2,0.7-0.3L852.1,692z" class="st4"></path>
|
|
1248
|
+
</g>
|
|
1249
|
+
<g>
|
|
1250
|
+
<path d="M854.6,696.7c-0.5,0.2-0.9,0.3-1.3,0.3c-0.4,0-0.9,0-1.3-0.1c-0.4-0.1-0.8-0.2-1.2-0.4
|
|
1251
|
+
c-0.4-0.2-0.8-0.3-1.1-0.6c0.4,0.2,0.8,0.3,1.2,0.4c0.4,0.1,0.8,0.1,1.2,0.2c0.4,0,0.8,0,1.2-0.1c0.4-0.1,0.8-0.2,1-0.4
|
|
1252
|
+
L854.6,696.7z" class="st4"></path>
|
|
1253
|
+
</g>
|
|
1254
|
+
<g>
|
|
1255
|
+
<path d="M857.1,700c-0.5,0.2-0.9,0.3-1.3,0.3c-0.4,0-0.9,0-1.3-0.1c-0.4-0.1-0.8-0.2-1.2-0.4
|
|
1256
|
+
c-0.4-0.2-0.8-0.3-1.1-0.6c0.4,0.2,0.8,0.3,1.2,0.4c0.4,0.1,0.8,0.1,1.2,0.2c0.4,0,0.8,0,1.2-0.1c0.4-0.1,0.8-0.2,1-0.4
|
|
1257
|
+
L857.1,700z" class="st4"></path>
|
|
1258
|
+
</g>
|
|
1259
|
+
<g>
|
|
1260
|
+
<path d="M849.3,685.2c0.5-0.3,1.1-0.7,1.5-1.1c0.5-0.4,0.9-0.9,1.2-1.5c0.3-0.5,0.7-1.1,0.9-1.8
|
|
1261
|
+
c0.2-0.6,0.3-1.3,0.4-1.9c0,0.7-0.1,1.3-0.3,2c-0.1,0.7-0.4,1.3-0.7,1.9c-0.3,0.6-0.7,1.2-1.2,1.7c-0.5,0.5-1,1-1.6,1.4
|
|
1262
|
+
L849.3,685.2z" class="st4"></path>
|
|
1263
|
+
</g>
|
|
1264
|
+
<g>
|
|
1265
|
+
<path d="M850.9,689.6c1.3-1,2.5-2.1,3.5-3.5c0.5-0.7,0.9-1.4,1.3-2.2c0.3-0.8,0.6-1.6,0.7-2.4c0,0.8-0.2,1.7-0.5,2.5
|
|
1266
|
+
c-0.3,0.8-0.7,1.6-1.1,2.3c-0.5,0.7-1,1.4-1.6,2c-0.6,0.6-1.2,1.2-1.9,1.8L850.9,689.6z" class="st4"></path>
|
|
1267
|
+
</g>
|
|
1268
|
+
<g>
|
|
1269
|
+
<path d="M853.9,695.1c0.8-0.5,1.6-1.1,2.3-1.8c0.7-0.7,1.3-1.4,1.9-2.2c0.6-0.8,1-1.7,1.3-2.6
|
|
1270
|
+
c0.3-0.9,0.5-1.9,0.5-2.9c0,1-0.1,2-0.4,2.9c-0.3,1-0.7,1.9-1.2,2.7c-0.5,0.9-1.1,1.7-1.8,2.4c-0.7,0.7-1.4,1.4-2.3,2
|
|
1271
|
+
L853.9,695.1z" class="st4"></path>
|
|
1272
|
+
</g>
|
|
1273
|
+
<g>
|
|
1274
|
+
<path d="M858.6,700.9c0.7-0.5,1.3-1.2,1.9-2c0.5-0.8,1-1.6,1.3-2.5c0.3-0.9,0.6-1.8,0.7-2.7c0.1-0.5,0.1-0.9,0.2-1.4
|
|
1275
|
+
l0.1-1.4l0,1.4c0,0.5,0,1-0.1,1.4c-0.1,1-0.3,1.9-0.6,2.8c-0.3,0.9-0.7,1.8-1.2,2.7c-0.5,0.8-1.1,1.6-1.9,2.3L858.6,700.9z" class="st4"></path>
|
|
1276
|
+
</g>
|
|
1277
|
+
</g>
|
|
1278
|
+
<g>
|
|
1279
|
+
<linearGradient y2="725.3593" x2="847.1745" y1="725.3593" x1="829.4963" gradientUnits="userSpaceOnUse" id="SVGID_35_">
|
|
1280
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1281
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1282
|
+
</linearGradient>
|
|
1283
|
+
<path d="M832.7,708.2c0,0,4.1,1.3,7.3,3.7c3.1,2.5,12.1,14.2,3.6,25.7c0,0-1.5,2.2-1,4.2c0.5,2.1-14.2-0.7-13-20.9
|
|
1284
|
+
C829.6,721,829.7,714.2,832.7,708.2z" class="st37"></path>
|
|
1285
|
+
<g>
|
|
1286
|
+
<path d="M834,711.6c-0.2,2.7-0.2,5.4-0.1,8c0.2,2.7,0.5,5.3,1.1,7.9c0.6,2.6,1.5,5.1,2.6,7.5
|
|
1287
|
+
c1.1,2.4,2.6,4.6,4.4,6.6l-0.1,0.1c-2.1-1.7-3.8-3.9-5-6.3c-1.2-2.4-2-5.1-2.5-7.7c-0.5-2.7-0.8-5.4-0.9-8
|
|
1288
|
+
C833.5,716.9,833.6,714.2,834,711.6L834,711.6z" class="st4"></path>
|
|
1289
|
+
</g>
|
|
1290
|
+
<g>
|
|
1291
|
+
<path d="M833.8,721.6c-0.5-0.1-0.9-0.4-1.2-0.6c-0.3-0.3-0.6-0.6-0.8-1c-0.2-0.4-0.4-0.7-0.5-1.1
|
|
1292
|
+
c-0.1-0.4-0.2-0.8-0.3-1.2c0.1,0.4,0.3,0.8,0.5,1.1c0.2,0.3,0.4,0.7,0.7,1c0.3,0.3,0.6,0.5,0.9,0.7c0.3,0.2,0.7,0.3,1,0.4
|
|
1293
|
+
L833.8,721.6z" class="st4"></path>
|
|
1294
|
+
</g>
|
|
1295
|
+
<g>
|
|
1296
|
+
<path d="M834.5,726.4c-0.4,0.1-0.7,0.1-1.1,0c-0.3-0.1-0.7-0.2-1-0.4c-0.6-0.3-1-0.8-1.4-1.4
|
|
1297
|
+
c0.2,0.2,0.4,0.5,0.7,0.6c0.3,0.2,0.5,0.3,0.8,0.4c0.3,0.1,0.6,0.1,0.9,0.1c0.3,0,0.6,0,0.8-0.1L834.5,726.4z" class="st4"></path>
|
|
1298
|
+
</g>
|
|
1299
|
+
<g>
|
|
1300
|
+
<path d="M835.7,731.7c-0.5,0.1-0.9,0-1.4,0c-0.4-0.1-0.8-0.2-1.2-0.4c-0.4-0.2-0.7-0.4-1.1-0.7
|
|
1301
|
+
c-0.3-0.3-0.6-0.5-0.9-0.8c0.3,0.2,0.7,0.5,1,0.7c0.4,0.2,0.7,0.4,1.1,0.5c0.4,0.1,0.8,0.2,1.2,0.2c0.4,0,0.8,0,1.1-0.1
|
|
1302
|
+
L835.7,731.7z" class="st4"></path>
|
|
1303
|
+
</g>
|
|
1304
|
+
<g>
|
|
1305
|
+
<path d="M837.2,735.5c-0.5,0.1-0.9,0-1.4,0c-0.4-0.1-0.8-0.2-1.2-0.4c-0.4-0.2-0.7-0.4-1.1-0.7
|
|
1306
|
+
c-0.3-0.3-0.6-0.5-0.9-0.8c0.3,0.2,0.7,0.5,1,0.7c0.4,0.2,0.7,0.4,1.1,0.5c0.4,0.1,0.8,0.2,1.2,0.2c0.4,0,0.8,0,1.1-0.1
|
|
1307
|
+
L837.2,735.5z" class="st4"></path>
|
|
1308
|
+
</g>
|
|
1309
|
+
<g>
|
|
1310
|
+
<path d="M833.7,719.1c0.6-0.1,1.2-0.4,1.8-0.7c0.6-0.3,1.1-0.7,1.6-1.1c0.5-0.4,0.9-0.9,1.3-1.5
|
|
1311
|
+
c0.4-0.5,0.7-1.1,0.9-1.7c-0.2,0.6-0.4,1.3-0.8,1.8c-0.3,0.6-0.7,1.1-1.2,1.6c-0.5,0.5-1,0.9-1.6,1.3c-0.6,0.4-1.2,0.7-1.9,0.9
|
|
1312
|
+
L833.7,719.1z" class="st4"></path>
|
|
1313
|
+
</g>
|
|
1314
|
+
<g>
|
|
1315
|
+
<path d="M834,723.8c1.5-0.6,3-1.4,4.3-2.4c0.7-0.5,1.3-1.1,1.8-1.7c0.5-0.7,1-1.4,1.3-2.2c-0.3,0.8-0.6,1.6-1.1,2.3
|
|
1316
|
+
c-0.5,0.7-1.1,1.3-1.7,1.9c-0.6,0.6-1.3,1.1-2,1.6c-0.7,0.5-1.5,0.9-2.3,1.2L834,723.8z" class="st4"></path>
|
|
1317
|
+
</g>
|
|
1318
|
+
<g>
|
|
1319
|
+
<path d="M835.4,730c0.9-0.3,1.8-0.7,2.7-1.1c0.9-0.5,1.7-1,2.4-1.6c0.8-0.6,1.4-1.4,2-2.2c0.6-0.8,1-1.7,1.3-2.6
|
|
1320
|
+
c-0.3,0.9-0.6,1.9-1.1,2.7c-0.5,0.8-1.1,1.6-1.9,2.3c-0.7,0.7-1.5,1.3-2.4,1.8c-0.9,0.5-1.7,1-2.7,1.4L835.4,730z" class="st4"></path>
|
|
1321
|
+
</g>
|
|
1322
|
+
<g>
|
|
1323
|
+
<path d="M838.4,736.8c0.8-0.3,1.6-0.8,2.3-1.4c0.7-0.6,1.4-1.3,1.9-2.1c0.6-0.8,1-1.6,1.5-2.4
|
|
1324
|
+
c0.2-0.4,0.4-0.9,0.6-1.3l0.5-1.4l-0.4,1.4c-0.2,0.5-0.3,0.9-0.5,1.4c-0.4,0.9-0.8,1.8-1.3,2.6c-0.5,0.8-1.1,1.6-1.9,2.3
|
|
1325
|
+
c-0.7,0.7-1.5,1.3-2.4,1.7L838.4,736.8z" class="st4"></path>
|
|
1326
|
+
</g>
|
|
1327
|
+
</g>
|
|
1328
|
+
<g>
|
|
1329
|
+
<linearGradient y2="752.3577" x2="827.3311" y1="752.3577" x1="810.1155" gradientUnits="userSpaceOnUse" id="SVGID_36_">
|
|
1330
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1331
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1332
|
+
</linearGradient>
|
|
1333
|
+
<path d="M811,738.2c0,0,3.8,0.4,7,1.9c3.2,1.6,13.2,10.2,7.8,21.8c0,0-0.9,2.1-0.1,3.9c0.8,1.7-12.5,1.9-15.2-15.9
|
|
1334
|
+
C810.5,749.9,809.4,743.9,811,738.2z" class="st38"></path>
|
|
1335
|
+
<g>
|
|
1336
|
+
<path d="M812.7,740.8c0.3,2.4,0.8,4.7,1.4,7c0.6,2.3,1.4,4.6,2.4,6.7c1,2.2,2.3,4.2,3.6,6.1c1.4,1.9,3.1,3.5,5,5
|
|
1337
|
+
l0,0.1c-2.2-1.1-4-2.7-5.6-4.6c-1.5-1.9-2.6-4.1-3.6-6.3c-0.9-2.2-1.7-4.5-2.2-6.9C813.2,745.6,812.8,743.3,812.7,740.8
|
|
1338
|
+
L812.7,740.8z" class="st4"></path>
|
|
1339
|
+
</g>
|
|
1340
|
+
<g>
|
|
1341
|
+
<path d="M814.3,749.7c-0.5,0-0.8-0.2-1.2-0.4c-0.3-0.2-0.6-0.4-0.9-0.7c-0.3-0.3-0.5-0.6-0.7-0.9
|
|
1342
|
+
c-0.2-0.3-0.3-0.6-0.5-1c0.2,0.3,0.4,0.6,0.6,0.9c0.2,0.3,0.5,0.5,0.8,0.7c0.3,0.2,0.6,0.4,0.9,0.5c0.3,0.1,0.7,0.2,0.9,0.1
|
|
1343
|
+
L814.3,749.7z" class="st4"></path>
|
|
1344
|
+
</g>
|
|
1345
|
+
<g>
|
|
1346
|
+
<path d="M815.8,753.8c-0.4,0.1-0.7,0.2-1,0.2c-0.3,0-0.6-0.1-0.9-0.2c-0.6-0.2-1.1-0.6-1.4-1c0.5,0.3,1,0.6,1.5,0.6
|
|
1347
|
+
c0.3,0,0.5,0,0.8,0c0.2,0,0.5-0.2,0.7-0.3L815.8,753.8z" class="st4"></path>
|
|
1348
|
+
</g>
|
|
1349
|
+
<g>
|
|
1350
|
+
<path d="M817.8,758.2c-0.4,0.2-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.1c-0.7-0.2-1.4-0.5-2-1
|
|
1351
|
+
c0.7,0.3,1.4,0.5,2.1,0.6c0.4,0,0.7,0,1,0c0.3-0.1,0.7-0.2,0.9-0.3L817.8,758.2z" class="st4"></path>
|
|
1352
|
+
</g>
|
|
1353
|
+
<g>
|
|
1354
|
+
<path d="M819.8,761.2c-0.4,0.2-0.8,0.2-1.2,0.2c-0.4,0-0.8-0.1-1.2-0.1c-0.7-0.2-1.4-0.5-2-1
|
|
1355
|
+
c0.7,0.3,1.4,0.5,2.1,0.6c0.4,0,0.7,0,1,0c0.3-0.1,0.7-0.2,0.9-0.3L819.8,761.2z" class="st4"></path>
|
|
1356
|
+
</g>
|
|
1357
|
+
<g>
|
|
1358
|
+
<path d="M813.8,747.5c0.5-0.2,1-0.5,1.4-0.9c0.4-0.4,0.9-0.8,1.2-1.2c0.3-0.5,0.7-1,0.9-1.5c0.2-0.5,0.4-1.1,0.5-1.7
|
|
1359
|
+
c-0.1,0.6-0.1,1.2-0.3,1.8c-0.2,0.6-0.4,1.1-0.7,1.7c-0.3,0.5-0.7,1-1.1,1.4c-0.4,0.4-0.9,0.8-1.5,1.1L813.8,747.5z" class="st4"></path>
|
|
1360
|
+
</g>
|
|
1361
|
+
<g>
|
|
1362
|
+
<path d="M814.9,751.5c1.2-0.8,2.4-1.7,3.4-2.8c1-1.1,1.7-2.5,2-3.9c-0.1,0.7-0.3,1.5-0.6,2.2c-0.3,0.7-0.7,1.4-1.1,2
|
|
1363
|
+
c-0.5,0.6-1,1.2-1.5,1.7c-0.5,0.5-1.1,1-1.8,1.5L814.9,751.5z" class="st4"></path>
|
|
1364
|
+
</g>
|
|
1365
|
+
<g>
|
|
1366
|
+
<path d="M817.2,756.6c0.7-0.4,1.5-0.9,2.1-1.5c0.7-0.6,1.3-1.2,1.8-1.9c0.6-0.7,1-1.4,1.3-2.2
|
|
1367
|
+
c0.4-0.8,0.5-1.7,0.7-2.5c-0.1,0.9-0.2,1.8-0.5,2.6c-0.3,0.8-0.7,1.7-1.2,2.4c-0.5,0.7-1.1,1.4-1.7,2c-0.7,0.6-1.3,1.2-2.1,1.7
|
|
1368
|
+
L817.2,756.6z" class="st4"></path>
|
|
1369
|
+
</g>
|
|
1370
|
+
<g>
|
|
1371
|
+
<path d="M821.1,762c0.6-0.4,1.3-1,1.8-1.7c0.5-0.7,0.9-1.4,1.3-2.1c0.3-0.8,0.6-1.6,0.8-2.4c0.2-0.8,0.3-1.7,0.4-2.5
|
|
1372
|
+
c0,0.9-0.1,1.7-0.2,2.6c-0.1,0.8-0.4,1.7-0.7,2.5c-0.3,0.8-0.7,1.6-1.2,2.3c-0.5,0.7-1.1,1.4-1.8,2L821.1,762z" class="st4"></path>
|
|
1373
|
+
</g>
|
|
1374
|
+
</g>
|
|
1375
|
+
<g>
|
|
1376
|
+
<linearGradient y2="727.8252" x2="882.561" y1="727.8252" x1="851.0378" gradientUnits="userSpaceOnUse" id="SVGID_37_">
|
|
1377
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1378
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1379
|
+
</linearGradient>
|
|
1380
|
+
<path d="M882.6,724.1c0,0-3.1-2.6-6.6-3.9c-3.5-1.3-17.2-3-21.9,8.6c0,0-1,2.1-2.8,2.6c-1.9,0.6,7.7,10.5,22.9,0.8
|
|
1381
|
+
C874.2,732.1,879.4,729,882.6,724.1z" class="st39"></path>
|
|
1382
|
+
<g>
|
|
1383
|
+
<path d="M879.3,724.6c-2,1.5-4.1,2.8-6.2,3.9c-2.2,1.1-4.5,2.1-6.8,2.9c-2.4,0.7-4.8,1.3-7.3,1.4
|
|
1384
|
+
c-2.5,0.1-5-0.3-7.3-1.1l0-0.1c2.4,0.4,4.8,0.6,7.3,0.5c2.4-0.2,4.8-0.6,7.2-1.2c2.3-0.7,4.6-1.6,6.8-2.6
|
|
1385
|
+
C875.1,727.2,877.3,726,879.3,724.6L879.3,724.6z" class="st4"></path>
|
|
1386
|
+
</g>
|
|
1387
|
+
<g>
|
|
1388
|
+
<path d="M872.1,728.7c0.2,0.2,0.5,0.4,0.8,0.6c0.3,0.2,0.6,0.3,1,0.4c0.4,0.1,0.7,0.1,1.1,0.1c0.4,0,0.7,0,1.1-0.1
|
|
1389
|
+
c-0.4,0.1-0.7,0.2-1.1,0.3c-0.4,0.1-0.8,0.1-1.2,0.1c-0.4,0-0.8-0.1-1.2-0.2c-0.4-0.1-0.7-0.3-1.1-0.6L872.1,728.7z" class="st4"></path>
|
|
1390
|
+
</g>
|
|
1391
|
+
<g>
|
|
1392
|
+
<path d="M868.1,730.6c0,0.2,0.2,0.5,0.3,0.7c0.1,0.2,0.3,0.4,0.5,0.6c0.4,0.3,1,0.6,1.6,0.7c-0.6,0-1.2-0.1-1.8-0.4
|
|
1393
|
+
c-0.3-0.1-0.5-0.3-0.8-0.6c-0.2-0.2-0.4-0.5-0.6-0.8L868.1,730.6z" class="st4"></path>
|
|
1394
|
+
</g>
|
|
1395
|
+
<g>
|
|
1396
|
+
<path d="M863.4,732c0.1,0.3,0.2,0.6,0.4,0.9c0.2,0.3,0.5,0.6,0.7,0.8c0.6,0.5,1.2,0.9,2,1.1
|
|
1397
|
+
c-0.8-0.2-1.5-0.4-2.2-0.8c-0.3-0.2-0.7-0.5-0.9-0.8c-0.3-0.3-0.5-0.6-0.7-1.1L863.4,732z" class="st4"></path>
|
|
1398
|
+
</g>
|
|
1399
|
+
<g>
|
|
1400
|
+
<path d="M859.7,732.5c0.1,0.3,0.2,0.6,0.4,0.9c0.2,0.3,0.5,0.6,0.7,0.8c0.6,0.5,1.2,0.9,2,1.1
|
|
1401
|
+
c-0.8-0.2-1.5-0.4-2.2-0.8c-0.3-0.2-0.7-0.5-0.9-0.8c-0.3-0.3-0.5-0.6-0.7-1.1L859.7,732.5z" class="st4"></path>
|
|
1402
|
+
</g>
|
|
1403
|
+
<g>
|
|
1404
|
+
<path d="M872.9,728.4c-0.2-0.6-0.2-1.2-0.2-1.8c0-0.6,0.1-1.2,0.2-1.8c0.2-0.6,0.4-1.1,0.7-1.7
|
|
1405
|
+
c0.3-0.5,0.7-1,1.1-1.4c-0.3,0.5-0.7,1-0.9,1.5c-0.2,0.5-0.4,1.1-0.5,1.6c-0.1,0.6-0.1,1.1,0,1.7c0.1,0.6,0.2,1.1,0.4,1.6
|
|
1406
|
+
L872.9,728.4z" class="st4"></path>
|
|
1407
|
+
</g>
|
|
1408
|
+
<g>
|
|
1409
|
+
<path d="M869,730.1c-0.1-0.8-0.2-1.5-0.2-2.3c0-0.8,0.1-1.5,0.2-2.3c0.1-0.7,0.3-1.5,0.6-2.2
|
|
1410
|
+
c0.3-0.7,0.7-1.3,1.2-1.9c-0.5,0.6-0.8,1.2-1,1.9c-0.2,0.7-0.4,1.4-0.4,2.1c-0.1,1.5,0,2.9,0.3,4.3L869,730.1z" class="st4"></path>
|
|
1411
|
+
</g>
|
|
1412
|
+
<g>
|
|
1413
|
+
<path d="M863.5,731.8c-0.2-0.9-0.3-1.8-0.3-2.7c0-0.9,0.1-1.8,0.3-2.6c0.2-0.9,0.5-1.7,0.9-2.5
|
|
1414
|
+
c0.4-0.8,1-1.5,1.6-2.1c-0.6,0.7-1.1,1.4-1.4,2.2c-0.3,0.8-0.6,1.6-0.7,2.5c-0.1,0.8-0.1,1.7-0.1,2.6c0.1,0.8,0.2,1.7,0.5,2.5
|
|
1415
|
+
L863.5,731.8z" class="st4"></path>
|
|
1416
|
+
</g>
|
|
1417
|
+
<g>
|
|
1418
|
+
<path d="M856.7,732.4c-0.1-0.9,0-1.8,0.1-2.6c0.2-0.9,0.5-1.7,0.9-2.4c0.4-0.8,0.9-1.5,1.4-2.2
|
|
1419
|
+
c0.3-0.3,0.6-0.6,0.8-1l0.9-0.9l-0.8,0.9c-0.2,0.3-0.5,0.7-0.7,1c-0.5,0.7-0.9,1.4-1.2,2.2c-0.3,0.8-0.5,1.6-0.6,2.4
|
|
1420
|
+
c-0.1,0.8-0.1,1.7,0,2.4L856.7,732.4z" class="st4"></path>
|
|
1421
|
+
</g>
|
|
1422
|
+
</g>
|
|
1423
|
+
<g>
|
|
1424
|
+
<linearGradient y2="779.033" x2="844.5897" y1="779.033" x1="814.404" gradientUnits="userSpaceOnUse" id="SVGID_38_">
|
|
1425
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1426
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1427
|
+
</linearGradient>
|
|
1428
|
+
<path d="M844.6,779c0,0-2.3-3-5.2-4.9c-2.9-1.9-15.1-6.1-21.6,3.5c0,0-1.3,1.7-3.1,1.8c-1.8,0.1,4.9,11.1,20.7,5.2
|
|
1429
|
+
C835.4,784.7,840.8,782.9,844.6,779z" class="st40"></path>
|
|
1430
|
+
<g>
|
|
1431
|
+
<path d="M841.6,778.9c-2.1,1-4.2,1.7-6.4,2.4c-2.2,0.6-4.5,1.1-6.8,1.3c-2.3,0.2-4.6,0.2-6.9-0.1
|
|
1432
|
+
c-2.3-0.4-4.5-1.2-6.4-2.5l0-0.1c2.1,0.8,4.3,1.5,6.5,1.8c2.2,0.3,4.5,0.4,6.7,0.3c2.3-0.2,4.5-0.5,6.7-1.1
|
|
1433
|
+
C837.2,780.4,839.4,779.7,841.6,778.9L841.6,778.9z" class="st4"></path>
|
|
1434
|
+
</g>
|
|
1435
|
+
<g>
|
|
1436
|
+
<path d="M834.2,781.2c0.1,0.2,0.3,0.5,0.6,0.7c0.2,0.2,0.5,0.4,0.8,0.5c0.6,0.3,1.3,0.4,2,0.4
|
|
1437
|
+
c-0.7,0.1-1.4,0.1-2.1-0.1c-0.4-0.1-0.7-0.2-1-0.4c-0.3-0.2-0.6-0.4-0.9-0.8L834.2,781.2z" class="st4"></path>
|
|
1438
|
+
</g>
|
|
1439
|
+
<g>
|
|
1440
|
+
<path d="M830.2,782.1c0,0.2,0,0.5,0.1,0.7c0.1,0.2,0.2,0.5,0.4,0.7c0.3,0.4,0.8,0.7,1.3,1c-0.5-0.1-1.1-0.3-1.5-0.7
|
|
1441
|
+
c-0.2-0.2-0.4-0.4-0.6-0.7c-0.2-0.3-0.3-0.5-0.4-0.9L830.2,782.1z" class="st4"></path>
|
|
1442
|
+
</g>
|
|
1443
|
+
<g>
|
|
1444
|
+
<path d="M825.7,782.5c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.3,0.6,0.5,0.9c0.4,0.6,0.9,1,1.5,1.4
|
|
1445
|
+
c-0.7-0.3-1.3-0.7-1.8-1.2c-0.3-0.3-0.5-0.5-0.7-0.9c-0.2-0.3-0.4-0.7-0.5-1.1L825.7,782.5z" class="st4"></path>
|
|
1446
|
+
</g>
|
|
1447
|
+
<g>
|
|
1448
|
+
<path d="M822.2,782.2c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.3,0.6,0.5,0.9c0.4,0.6,0.9,1,1.5,1.4
|
|
1449
|
+
c-0.7-0.3-1.3-0.7-1.8-1.2c-0.3-0.3-0.5-0.5-0.7-0.9c-0.2-0.3-0.4-0.7-0.5-1.1L822.2,782.2z" class="st4"></path>
|
|
1450
|
+
</g>
|
|
1451
|
+
<g>
|
|
1452
|
+
<path d="M834.9,781c0-0.6,0-1.2,0.2-1.7c0.1-0.6,0.3-1.1,0.6-1.6c0.3-0.5,0.6-1,1-1.4c0.4-0.4,0.8-0.8,1.2-1.1
|
|
1453
|
+
c-0.4,0.4-0.8,0.7-1.1,1.2c-0.3,0.4-0.6,0.9-0.8,1.4c-0.2,0.5-0.3,1-0.4,1.5c-0.1,0.5,0,1.1,0,1.5L834.9,781z" class="st4"></path>
|
|
1454
|
+
</g>
|
|
1455
|
+
<g>
|
|
1456
|
+
<path d="M831.1,781.8c0-0.7,0.2-1.4,0.3-2.1c0.2-0.7,0.4-1.4,0.6-2c0.3-0.7,0.6-1.3,1-1.8c0.4-0.6,0.9-1.1,1.5-1.5
|
|
1457
|
+
c-1.1,0.9-1.7,2.1-2.2,3.4c-0.4,1.3-0.6,2.7-0.5,4L831.1,781.8z" class="st4"></path>
|
|
1458
|
+
</g>
|
|
1459
|
+
<g>
|
|
1460
|
+
<path d="M825.7,782.3c0-0.9,0.1-1.7,0.3-2.5c0.2-0.8,0.4-1.6,0.8-2.4c0.3-0.8,0.8-1.5,1.3-2.1
|
|
1461
|
+
c0.5-0.6,1.2-1.1,1.9-1.6c-0.6,0.5-1.3,1-1.7,1.7c-0.5,0.7-0.8,1.4-1.1,2.1c-0.3,0.8-0.4,1.5-0.5,2.3c-0.1,0.8-0.1,1.6-0.1,2.3
|
|
1462
|
+
L825.7,782.3z" class="st4"></path>
|
|
1463
|
+
</g>
|
|
1464
|
+
<g>
|
|
1465
|
+
<path d="M819.4,781.5c0.1-0.9,0.3-1.6,0.6-2.4c0.3-0.7,0.8-1.4,1.3-2c0.5-0.6,1.1-1.2,1.7-1.7
|
|
1466
|
+
c0.6-0.5,1.3-0.9,1.9-1.3c-0.6,0.5-1.3,0.9-1.8,1.5c-0.6,0.5-1.1,1.1-1.5,1.8c-0.4,0.6-0.8,1.3-1,2c-0.3,0.7-0.4,1.5-0.4,2.2
|
|
1467
|
+
L819.4,781.5z" class="st4"></path>
|
|
1468
|
+
</g>
|
|
1469
|
+
</g>
|
|
1470
|
+
<g>
|
|
1471
|
+
<linearGradient y2="753.2847" x2="433.7794" y1="753.2847" x1="326.0351" gradientUnits="userSpaceOnUse" id="SVGID_39_">
|
|
1472
|
+
<stop style="stop-color:#B7C5CE" offset="0"></stop>
|
|
1473
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1474
|
+
</linearGradient>
|
|
1475
|
+
<path d="M341.2,733.7c2.5-1.1,5.1-2,7.8-2.5c9.4-1.9,30.7-4.4,44.1,8.6c17.7,17.1,35.1,15.4,40.2,13.5
|
|
1476
|
+
c5.1-1.9-36,43.8-77.9,12.9c0,0-18.9-20.5-28.9-24.2c-0.7-0.3-0.7-1.3,0-1.6L341.2,733.7z" class="st41"></path>
|
|
1477
|
+
<g>
|
|
1478
|
+
<path d="M330.8,741.6c8.2,0.6,16.5,1.9,24.5,4c4,1.1,8,2.4,11.8,4.1c1.9,0.8,3.7,1.9,5.5,2.9c1.8,1,3.6,1.9,5.5,2.7
|
|
1479
|
+
c3.8,1.6,7.8,2.7,11.8,3.6c4,0.9,8.1,1.5,12.2,1.8c4.1,0.3,8.2,0.3,12.3-0.1c4.1-0.4,8.2-1.2,12-2.8c-3.8,1.7-7.9,2.7-12,3.2
|
|
1480
|
+
c-4.1,0.5-8.3,0.5-12.4,0.3c-4.1-0.2-8.3-0.8-12.3-1.7c-4.1-0.9-8.1-2-11.9-3.6c-1.9-0.8-3.8-1.7-5.6-2.8c-1.8-1-3.6-2.1-5.5-2.9
|
|
1481
|
+
c-3.7-1.7-7.7-3-11.6-4.1c-4-1.1-8-2-12.1-2.7C339,742.6,334.9,742,330.8,741.6z" class="st4"></path>
|
|
1482
|
+
</g>
|
|
1483
|
+
<g>
|
|
1484
|
+
<path d="M390.9,759c3.6-1,7.3-1.8,11-2.3c0.9-0.1,1.9-0.2,2.8-0.2c0.9-0.1,1.9-0.2,2.8-0.3c1.8-0.3,3.7-0.7,5.5-1.2
|
|
1485
|
+
c-1.8,0.6-3.6,1.1-5.4,1.4c-0.9,0.2-1.9,0.3-2.8,0.4c-0.9,0.1-1.9,0.2-2.8,0.3c-3.7,0.6-7.3,1.6-10.9,2.7L390.9,759z" class="st4"></path>
|
|
1486
|
+
</g>
|
|
1487
|
+
<g>
|
|
1488
|
+
<path d="M375.2,753.6c1.9-1.3,4-2.2,6.2-2.8c1.1-0.3,2.2-0.4,3.4-0.4c1.1,0,2.3,0.1,3.4,0.2
|
|
1489
|
+
c4.4,0.4,8.9,0.5,13.4,0.3c-4.5,0.3-9,0.4-13.5,0.1c-1.1-0.1-2.2-0.2-3.3-0.1c-1.1,0.1-2.2,0.2-3.3,0.5c-2.1,0.6-4.2,1.5-5.9,2.8
|
|
1490
|
+
L375.2,753.6z" class="st4"></path>
|
|
1491
|
+
</g>
|
|
1492
|
+
<g>
|
|
1493
|
+
<path d="M359.5,746.6c2.1-1.2,4.4-2.2,6.7-3c2.3-0.7,4.7-1.3,7.1-1.3c1.2,0,2.4,0.2,3.6,0.4c1.2,0.2,2.4,0.3,3.6,0.4
|
|
1494
|
+
c2.4,0.2,4.8,0.2,7.2,0c-2.4,0.3-4.8,0.3-7.2,0.2c-1.2-0.1-2.4-0.2-3.6-0.3c-1.2-0.2-2.4-0.4-3.6-0.3c-2.4,0.1-4.7,0.7-7,1.5
|
|
1495
|
+
c-2.2,0.8-4.4,1.9-6.4,3.1L359.5,746.6z" class="st4"></path>
|
|
1496
|
+
</g>
|
|
1497
|
+
<g>
|
|
1498
|
+
<path d="M348.8,744.2c0.5,1.5,1,3,1.7,4.5c0.7,1.5,1.4,2.9,2.4,4.2c0.5,0.6,1,1.2,1.7,1.6c0.7,0.5,1.3,1.1,1.7,1.7
|
|
1499
|
+
c1,1.3,1.6,2.9,1.8,4.5c-0.3-1.6-0.9-3.1-1.9-4.4c-0.5-0.6-1.1-1.2-1.8-1.6c-0.7-0.4-1.3-1-1.8-1.6c-1-1.3-1.8-2.7-2.6-4.2
|
|
1500
|
+
c-0.7-1.5-1.3-3-1.9-4.5L348.8,744.2z" class="st4"></path>
|
|
1501
|
+
</g>
|
|
1502
|
+
<g>
|
|
1503
|
+
<path d="M367.3,750.1c-0.2,1.5-0.2,3.1-0.1,4.6c0.1,1.5,0.4,3.1,0.8,4.6c0.4,1.5,1.2,2.8,1.9,4.3
|
|
1504
|
+
c0.6,1.4,1.3,2.9,1.7,4.4c-0.4-1.5-1.1-2.9-1.8-4.3c-0.7-1.4-1.5-2.7-2.1-4.2c-0.5-1.5-0.9-3.1-1-4.6c-0.2-1.6-0.2-3.2-0.1-4.8
|
|
1505
|
+
L367.3,750.1z" class="st4"></path>
|
|
1506
|
+
</g>
|
|
1507
|
+
<g>
|
|
1508
|
+
<path d="M384.2,757.7c-0.1,1.5,0.3,3,0.9,4.4c0.7,1.4,1.7,2.5,3.1,3.3c1.3,0.8,2.8,1.5,3.9,2.7
|
|
1509
|
+
c1.1,1.1,2,2.5,2.2,4.1c-0.3-1.6-1.2-2.9-2.4-4c-0.6-0.5-1.2-1-1.9-1.4c-0.7-0.4-1.4-0.7-2.1-1.1c-1.4-0.8-2.6-2-3.4-3.4
|
|
1510
|
+
c-0.8-1.4-1.2-3-1.2-4.7L384.2,757.7z" class="st4"></path>
|
|
1511
|
+
</g>
|
|
1512
|
+
</g>
|
|
1513
|
+
<g>
|
|
1514
|
+
|
|
1515
|
+
<linearGradient gradientTransform="matrix(-0.8974 -0.4412 0.4412 -0.8974 56.5022 3474.9263)" y2="2507.3848" x2="907.5204" y1="2507.3848" x1="828.9691" gradientUnits="userSpaceOnUse" id="SVGID_40_">
|
|
1516
|
+
<stop style="stop-color:#B7C5CE" offset="0"></stop>
|
|
1517
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1518
|
+
</linearGradient>
|
|
1519
|
+
<path d="M402.7,867c-2-0.1-4-0.3-5.9-0.9c-6.8-1.8-21.5-7-26.1-19.8c-6.1-16.9-18-21.4-22-21.8
|
|
1520
|
+
c-4-0.4,37.7-17,55.1,16.6c0,0,5.7,19.5,11.1,25.1c0.4,0.4,0.1,1.1-0.5,1.1L402.7,867z" class="st42"></path>
|
|
1521
|
+
<g>
|
|
1522
|
+
<path d="M412,865.2c-5.2-3-10.2-6.5-14.8-10.4c-2.3-2-4.5-4.1-6.4-6.4c-1-1.1-1.8-2.4-2.7-3.7
|
|
1523
|
+
c-0.8-1.2-1.8-2.4-2.8-3.5c-2-2.3-4.2-4.3-6.5-6.2c-2.3-1.9-4.8-3.6-7.4-5.1c-2.6-1.5-5.3-2.9-8.1-3.9c-2.8-1.1-5.7-1.9-8.7-2.1
|
|
1524
|
+
c3,0.1,6,0.8,8.9,1.7c2.9,1,5.6,2.3,8.3,3.8c2.7,1.5,5.2,3.2,7.5,5.1c2.4,1.9,4.7,3.9,6.7,6.2c1,1.2,1.9,2.3,2.8,3.6
|
|
1525
|
+
c0.9,1.2,1.7,2.5,2.6,3.6c1.9,2.3,4,4.4,6.3,6.4c2.2,2,4.6,3.9,7,5.7C407,861.8,409.4,863.5,412,865.2z" class="st4"></path>
|
|
1526
|
+
</g>
|
|
1527
|
+
<g>
|
|
1528
|
+
<path d="M378.3,834.5c-2.7-0.6-5.4-1.2-8-2.1c-1.3-0.5-2.5-1.1-3.8-1.5c-1.3-0.4-2.6-0.8-4-1c1.4,0.2,2.7,0.4,4,0.8
|
|
1529
|
+
c1.3,0.3,2.6,0.9,3.9,1.3c2.6,0.8,5.3,1.3,8,1.7L378.3,834.5z" class="st4"></path>
|
|
1530
|
+
</g>
|
|
1531
|
+
<g>
|
|
1532
|
+
<path d="M386.8,843.1c-1.7,0.3-3.4,0.2-5-0.2c-0.8-0.2-1.6-0.5-2.4-0.8c-0.8-0.3-1.5-0.8-2.1-1.3
|
|
1533
|
+
c-2.8-1.7-5.7-3.2-8.7-4.5c3,1.2,6,2.6,8.9,4.2c0.7,0.4,1.4,0.8,2.1,1.2c0.7,0.3,1.5,0.5,2.3,0.7c1.6,0.3,3.2,0.3,4.7,0
|
|
1534
|
+
L386.8,843.1z" class="st4"></path>
|
|
1535
|
+
</g>
|
|
1536
|
+
<g>
|
|
1537
|
+
<path d="M394.9,852.7c-1.8,0.1-3.6,0-5.3-0.2c-1.8-0.3-3.5-0.7-5.1-1.4c-0.8-0.4-1.5-0.9-2.2-1.4
|
|
1538
|
+
c-0.7-0.5-1.4-1-2.2-1.4c-1.5-0.9-3.1-1.7-4.7-2.3c1.7,0.6,3.3,1.3,4.8,2.2c0.8,0.4,1.5,0.9,2.3,1.4c0.7,0.5,1.4,1,2.2,1.3
|
|
1539
|
+
c1.6,0.7,3.3,1,5,1.2c1.7,0.2,3.5,0.2,5.2,0L394.9,852.7z" class="st4"></path>
|
|
1540
|
+
</g>
|
|
1541
|
+
<g>
|
|
1542
|
+
<path d="M400.9,857.7c0.2-1.1,0.3-2.3,0.4-3.5c0.1-1.2,0-2.3-0.2-3.5c-0.1-0.6-0.3-1.1-0.6-1.6
|
|
1543
|
+
c-0.3-0.5-0.5-1.1-0.6-1.7c-0.2-1.2-0.1-2.4,0.3-3.5c-0.3,1.1-0.4,2.3-0.1,3.5c0.1,0.6,0.3,1.1,0.6,1.6c0.3,0.5,0.6,1.1,0.7,1.7
|
|
1544
|
+
c0.3,1.2,0.4,2.4,0.4,3.6c0,1.2-0.1,2.4-0.2,3.6L400.9,857.7z" class="st4"></path>
|
|
1545
|
+
</g>
|
|
1546
|
+
<g>
|
|
1547
|
+
<path d="M390.7,847.8c0.6-0.9,1.1-1.9,1.6-3c0.4-1,0.8-2.1,0.9-3.2c0.2-1.1,0.1-2.2,0.2-3.4c0.1-1.1,0.1-2.3,0.4-3.4
|
|
1548
|
+
c-0.2,1.1-0.2,2.3-0.2,3.4c0,1.1,0.2,2.3,0,3.4c-0.1,1.2-0.4,2.3-0.8,3.4c-0.4,1.1-0.9,2.1-1.5,3.2L390.7,847.8z" class="st4"></path>
|
|
1549
|
+
</g>
|
|
1550
|
+
<g>
|
|
1551
|
+
<path d="M382.2,837.4c0.5-0.9,0.8-2,0.8-3.1c0-1.1-0.3-2.2-0.9-3.1c-0.6-0.9-1.3-1.9-1.7-3c-0.4-1.1-0.5-2.3-0.1-3.4
|
|
1552
|
+
c-0.3,1.1-0.1,2.3,0.3,3.3c0.4,1.1,1.1,1.9,1.8,2.9c0.7,1,1.1,2.1,1.2,3.3c0,1.2-0.2,2.4-0.7,3.5L382.2,837.4z" class="st4"></path>
|
|
1553
|
+
</g>
|
|
1554
|
+
</g>
|
|
1555
|
+
<g>
|
|
1556
|
+
<linearGradient y2="783.215" x2="713.683" y1="783.215" x1="663.7336" gradientUnits="userSpaceOnUse" id="SVGID_41_">
|
|
1557
|
+
<stop style="stop-color:#B7C5CE" offset="0"></stop>
|
|
1558
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1559
|
+
</linearGradient>
|
|
1560
|
+
<path d="M706.7,774.2c-1.2-0.5-2.4-0.9-3.6-1.2c-4.4-0.9-14.2-2-20.5,4c-8.2,7.9-16.3,7.2-18.6,6.3
|
|
1561
|
+
c-2.4-0.9,16.7,20.3,36.1,6c0,0,8.8-9.5,13.4-11.2c0.3-0.1,0.3-0.6,0-0.7L706.7,774.2z" class="st43"></path>
|
|
1562
|
+
<g>
|
|
1563
|
+
<path d="M711.5,777.8c-1.9,0.2-3.8,0.5-5.7,0.9c-1.9,0.4-3.7,0.8-5.6,1.3c-1.8,0.5-3.6,1.1-5.4,1.9
|
|
1564
|
+
c-0.9,0.4-1.7,0.9-2.5,1.3c-0.8,0.5-1.7,0.9-2.6,1.3c-1.8,0.7-3.7,1.3-5.6,1.7c-1.9,0.4-3.8,0.7-5.7,0.8
|
|
1565
|
+
c-3.8,0.2-7.8-0.1-11.3-1.8c1.8,0.7,3.7,1.1,5.6,1.2c1.9,0.2,3.8,0.1,5.7,0c3.8-0.3,7.6-1.1,11.1-2.5c0.9-0.4,1.7-0.8,2.5-1.2
|
|
1566
|
+
c0.8-0.4,1.7-1,2.6-1.3c1.8-0.8,3.6-1.4,5.5-1.9C703.8,778.5,707.6,778,711.5,777.8z" class="st4"></path>
|
|
1567
|
+
</g>
|
|
1568
|
+
<g>
|
|
1569
|
+
<path d="M683.5,786.4c-1.6-0.5-3.3-1-5-1.3c-0.8-0.2-1.7-0.2-2.6-0.4c-0.9-0.2-1.7-0.4-2.5-0.7
|
|
1570
|
+
c0.8,0.2,1.7,0.4,2.5,0.5c0.9,0.1,1.7,0.1,2.6,0.2c1.7,0.2,3.5,0.6,5.2,1L683.5,786.4z" class="st4"></path>
|
|
1571
|
+
</g>
|
|
1572
|
+
<g>
|
|
1573
|
+
<path d="M690.6,783.8c-0.8-0.6-1.7-1-2.6-1.3c-1-0.3-2-0.3-3-0.2c-2.1,0.1-4.2,0-6.2-0.1c2.1,0.1,4.2,0,6.2-0.2
|
|
1574
|
+
c1-0.2,2.1-0.2,3.2,0c1.1,0.2,2,0.6,3,1.3L690.6,783.8z" class="st4"></path>
|
|
1575
|
+
</g>
|
|
1576
|
+
<g>
|
|
1577
|
+
<path d="M697.9,780.6c-0.9-0.6-1.9-1.1-2.9-1.5c-1-0.4-2.1-0.7-3.2-0.7c-0.5,0-1.1,0-1.6,0.1
|
|
1578
|
+
c-0.6,0.1-1.1,0.1-1.7,0.1c-1.1,0-2.2,0-3.3-0.2c1.1,0.1,2.2,0.1,3.3,0c0.6-0.1,1.1-0.1,1.7-0.2c0.5-0.1,1.1-0.2,1.7-0.2
|
|
1579
|
+
c1.2,0,2.3,0.2,3.4,0.6c1.1,0.4,2.1,0.8,3.1,1.3L697.9,780.6z" class="st4"></path>
|
|
1580
|
+
</g>
|
|
1581
|
+
<g>
|
|
1582
|
+
<path d="M703.6,779.2c-0.3,0.7-0.6,1.4-0.9,2.1c-0.4,0.7-0.7,1.3-1.2,1.9c-0.2,0.3-0.6,0.6-0.9,0.8
|
|
1583
|
+
c-0.3,0.2-0.6,0.4-0.8,0.7c-0.5,0.6-0.8,1.3-0.9,2c0.1-0.7,0.3-1.5,0.8-2.1c0.2-0.3,0.5-0.6,0.8-0.8c0.3-0.2,0.5-0.5,0.8-0.8
|
|
1584
|
+
c0.4-0.6,0.7-1.3,1-1.9c0.3-0.7,0.5-1.4,0.7-2.1L703.6,779.2z" class="st4"></path>
|
|
1585
|
+
</g>
|
|
1586
|
+
<g>
|
|
1587
|
+
<path d="M695.1,781.7c0.1,0.8,0,1.5-0.1,2.3c-0.1,0.7-0.3,1.5-0.5,2.2c-0.3,0.7-0.7,1.3-1,2c-0.3,0.6-0.7,1.3-0.9,2
|
|
1588
|
+
c0.1-0.7,0.4-1.4,0.7-2.1c0.3-0.7,0.6-1.3,0.8-2c0.4-1.4,0.4-2.8,0.2-4.2L695.1,781.7z" class="st4"></path>
|
|
1589
|
+
</g>
|
|
1590
|
+
<g>
|
|
1591
|
+
<path d="M687.3,785.2c0,0.8-0.2,1.6-0.6,2.3c-0.4,0.7-1,1.2-1.7,1.6c-0.7,0.3-1.3,0.6-1.9,1.1
|
|
1592
|
+
c-0.5,0.5-1,1.1-1.1,1.8c0.1-0.7,0.5-1.4,1-1.9c0.5-0.5,1.2-0.9,1.8-1.3c0.6-0.4,1.1-0.9,1.3-1.5c0.3-0.6,0.4-1.3,0.4-2
|
|
1593
|
+
L687.3,785.2z" class="st4"></path>
|
|
1594
|
+
</g>
|
|
1595
|
+
</g>
|
|
1596
|
+
<g>
|
|
1597
|
+
<linearGradient y2="562.4031" x2="527.8044" y1="562.4031" x1="46.1679" gradientUnits="userSpaceOnUse" id="SVGID_42_">
|
|
1598
|
+
<stop style="stop-color:#B7C5CE" offset="0"></stop>
|
|
1599
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1600
|
+
</linearGradient>
|
|
1601
|
+
<path d="M522,444.6L277.7,299.6c-5.6-3.3-13-1.4-16.4,4.4L47.9,663.7c-3.4,5.8-1.6,13.2,4,16.5l244.3,144.9
|
|
1602
|
+
c5.6,3.3,13,1.4,16.4-4.4l213.4-359.7C529.5,455.3,527.7,447.9,522,444.6z" class="st44"></path>
|
|
1603
|
+
<path d="M506.5,462.2L269.7,321.8c-0.1-0.1-0.2,0-0.3,0.1l-202,340.5c-0.1,0.1,0,0.2,0.1,0.3L304.3,803
|
|
1604
|
+
c0.1,0.1,0.2,0,0.3-0.1l202-340.5C506.6,462.4,506.6,462.3,506.5,462.2z" class="st4"></path>
|
|
1605
|
+
<linearGradient y2="384.7085" x2="460.5836" y1="384.7085" x1="323.703" gradientUnits="userSpaceOnUse" id="SVGID_43_">
|
|
1606
|
+
<stop style="stop-color:#B2C4CC" offset="0"></stop>
|
|
1607
|
+
<stop style="stop-color:#BBD3DD" offset="1"></stop>
|
|
1608
|
+
</linearGradient>
|
|
1609
|
+
<path d="M459,400.6l-36.4-21.6c4.8-10.2,1.3-22.4-8.3-28.1c-9.7-5.7-22.1-2.9-28.7,6.2l-36.4-21.6
|
|
1610
|
+
c-1.3-0.8-3.3-0.4-4.7,0.9l-19.3,18.4c-1.9,1.8-2.1,4.5-0.3,5.5l123.9,73.5c1.8,1,4-0.4,4.7-2.9l6.9-25.8
|
|
1611
|
+
C460.9,403.3,460.3,401.4,459,400.6z" class="st45"></path>
|
|
1612
|
+
<path d="M396.7,491.6l-143.2-85c-2.1-1.3-2.8-4-1.6-6.2l15.6-26.3c1.3-2.1,4-2.8,6.2-1.6l143.2,85
|
|
1613
|
+
c2.1,1.3,2.8,4,1.6,6.2L402.8,490C401.6,492.1,398.8,492.8,396.7,491.6z" class="st46"></path>
|
|
1614
|
+
<path d="M430.8,541L238.9,427.1c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1615
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C432.6,541.2,431.6,541.4,430.8,541z" class="st47"></path>
|
|
1616
|
+
<path d="M418.4,562L226.4,448.1c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1617
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C420.2,562.2,419.1,562.5,418.4,562z" class="st47"></path>
|
|
1618
|
+
<path d="M405.9,583L213.9,469.2c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1619
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C407.7,583.2,406.7,583.5,405.9,583z" class="st47"></path>
|
|
1620
|
+
<path d="M393.4,604.1L201.5,490.2c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6L398,596.3
|
|
1621
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C395.2,604.3,394.2,604.5,393.4,604.1z" class="st47"></path>
|
|
1622
|
+
<path d="M380.9,625.1L189,511.2c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1623
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C382.7,625.3,381.7,625.6,380.9,625.1z" class="st47"></path>
|
|
1624
|
+
<path d="M368.4,646.1L176.5,532.3c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6L373,638.4
|
|
1625
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C370.3,646.3,369.2,646.6,368.4,646.1z" class="st47"></path>
|
|
1626
|
+
<path d="M356,667.2L164,553.3c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1627
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C357.8,667.4,356.8,667.6,356,667.2z" class="st47"></path>
|
|
1628
|
+
<path d="M343.5,688.2L151.5,574.3c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1629
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C345.3,688.4,344.3,688.7,343.5,688.2z" class="st47"></path>
|
|
1630
|
+
<path d="M331,709.2L139.1,595.4c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1631
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C332.8,709.4,331.8,709.7,331,709.2z" class="st47"></path>
|
|
1632
|
+
<path d="M318.5,730.3L126.6,616.4c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1633
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C320.3,730.5,319.3,730.7,318.5,730.3z" class="st47"></path>
|
|
1634
|
+
<path d="M306,751.3L114.1,637.4c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1635
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C307.9,751.5,306.8,751.8,306,751.3z" class="st47"></path>
|
|
1636
|
+
<path d="M293.6,772.3L101.6,658.5c-0.8-0.5-1.1-1.5-0.6-2.3l2.9-4.9c0.5-0.8,1.5-1.1,2.3-0.6l191.9,113.9
|
|
1637
|
+
c0.8,0.5,1.1,1.5,0.6,2.3l-2.9,4.9C295.4,772.6,294.4,772.8,293.6,772.3z" class="st47"></path>
|
|
1638
|
+
</g>
|
|
1639
|
+
<linearGradient y2="361.9807" x2="707.1202" y1="361.9807" x1="664.4557" gradientUnits="userSpaceOnUse" id="SVGID_44_">
|
|
1640
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1641
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1642
|
+
</linearGradient>
|
|
1643
|
+
<circle r="21.3" cy="362" cx="685.8" class="st48"></circle>
|
|
1644
|
+
<linearGradient y2="315.948" x2="960.8615" y1="315.948" x1="942.8975" gradientUnits="userSpaceOnUse" id="SVGID_45_">
|
|
1645
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1646
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1647
|
+
</linearGradient>
|
|
1648
|
+
<circle r="9" cy="315.9" cx="951.9" class="st49"></circle>
|
|
1649
|
+
<linearGradient y2="308.0887" x2="716.1022" y1="308.0887" x1="700.3837" gradientUnits="userSpaceOnUse" id="SVGID_46_">
|
|
1650
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1651
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1652
|
+
</linearGradient>
|
|
1653
|
+
<circle r="7.9" cy="308.1" cx="708.2" class="st50"></circle>
|
|
1654
|
+
<linearGradient y2="243.8408" x2="463.1103" y1="243.8408" x1="404.7274" gradientUnits="userSpaceOnUse" id="SVGID_47_">
|
|
1655
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1656
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1657
|
+
</linearGradient>
|
|
1658
|
+
<circle r="29.2" cy="243.8" cx="433.9" class="st51"></circle>
|
|
1659
|
+
<linearGradient y2="528.1476" x2="55.9255" y1="528.1476" x1="31.225" gradientUnits="userSpaceOnUse" id="SVGID_48_">
|
|
1660
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1661
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1662
|
+
</linearGradient>
|
|
1663
|
+
<circle r="12.4" cy="528.1" cx="43.6" class="st52"></circle>
|
|
1664
|
+
<linearGradient y2="502.5185" x2="21.7093" y1="502.5185" x1="1.4998" gradientUnits="userSpaceOnUse" id="SVGID_49_">
|
|
1665
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1666
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1667
|
+
</linearGradient>
|
|
1668
|
+
<circle r="10.1" cy="502.5" cx="11.6" class="st53"></circle>
|
|
1669
|
+
<linearGradient y2="259.8105" x2="204.1284" y1="259.8105" x1="186.1644" gradientUnits="userSpaceOnUse" id="SVGID_50_">
|
|
1670
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1671
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1672
|
+
</linearGradient>
|
|
1673
|
+
<circle r="9" cy="259.8" cx="195.1" class="st54"></circle>
|
|
1674
|
+
<linearGradient y2="418.808" x2="1024" y1="418.808" x1="990.3175" gradientUnits="userSpaceOnUse" id="SVGID_51_">
|
|
1675
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1676
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1677
|
+
</linearGradient>
|
|
1678
|
+
<circle r="16.8" cy="418.8" cx="1007.2" class="st55"></circle>
|
|
1679
|
+
<linearGradient y2="435.0878" x2="972.3518" y1="435.0878" x1="960.7495" gradientUnits="userSpaceOnUse" id="SVGID_52_">
|
|
1680
|
+
<stop style="stop-color:#C7D3DD" offset="0"></stop>
|
|
1681
|
+
<stop style="stop-color:#B6C4CE" offset="1"></stop>
|
|
1682
|
+
</linearGradient>
|
|
1683
|
+
<circle r="5.8" cy="435.1" cx="966.6" class="st56"></circle>
|
|
1684
|
+
<g>
|
|
1685
|
+
|
|
1686
|
+
<linearGradient gradientTransform="matrix(-0.8154 0.5788 -0.5788 -0.8154 2698.8118 2665.437)" y2="2905.8506" x2="653.0208" y1="2905.8506" x1="619.5162" gradientUnits="userSpaceOnUse" id="SVGID_53_">
|
|
1687
|
+
<stop style="stop-color:#DAE2EF" offset="0"></stop>
|
|
1688
|
+
<stop style="stop-color:#F2F2F2" offset="1"></stop>
|
|
1689
|
+
</linearGradient>
|
|
1690
|
+
<path d="M519.7,674.4l-11-24.1c-0.1-0.2-0.3-0.3-0.5-0.3l-21.6-4.2c-0.4-0.1-0.6,0.3-0.4,0.6l7.7,10.8
|
|
1691
|
+
c1.6-0.7,3.6,0,4.4,1.8c0.5,1.2,0.2,2.6-0.7,3.5c-1.5,1.6-3.9,1.3-5.1-0.4c-0.9-1.3-0.8-3.1,0.3-4.3l-7.7-10.8
|
|
1692
|
+
c-0.2-0.3-0.7-0.2-0.7,0.2l-3.2,21.8c0,0.2,0,0.4,0.1,0.5l19.1,18.3c0.3,0.4,0.8,0.5,1.1,0.2l17.9-12.7
|
|
1693
|
+
C519.8,675.3,519.9,674.8,519.7,674.4z" class="st57"></path>
|
|
1694
|
+
<g>
|
|
1695
|
+
|
|
1696
|
+
<linearGradient gradientTransform="matrix(-0.8154 0.5788 -0.5788 -0.8154 2698.8118 2665.437)" y2="2713.9033" x2="652.3195" y1="2713.9033" x1="620.5551" gradientUnits="userSpaceOnUse" id="SVGID_54_">
|
|
1697
|
+
<stop style="stop-color:#DAE2EF" offset="0"></stop>
|
|
1698
|
+
<stop style="stop-color:#F2F2F2" offset="1"></stop>
|
|
1699
|
+
</linearGradient>
|
|
1700
|
+
<path d="M586.9,817.2l9,12.7c5.1,7.2,15,8.8,22.1,3.8l0,0c7.2-5.1,8.8-15,3.8-22.1l-9-12.7L586.9,817.2z" class="st58"></path>
|
|
1701
|
+
|
|
1702
|
+
<linearGradient gradientTransform="matrix(-0.8154 0.5788 -0.5788 -0.8154 2698.8118 2665.437)" y2="2808.8655" x2="652.3195" y1="2808.8655" x1="620.5551" gradientUnits="userSpaceOnUse" id="SVGID_55_">
|
|
1703
|
+
<stop style="stop-color:#DAE2EF" offset="0"></stop>
|
|
1704
|
+
<stop style="stop-color:#F2F2F2" offset="1"></stop>
|
|
1705
|
+
</linearGradient>
|
|
1706
|
+
<path d="M608.8,793.3l-85.3-115c-0.6-0.8-1.7-1-2.5-0.4L503,690.7c-0.8,0.6-1,1.7-0.4,2.5l80.4,118.4L608.8,793.3z" class="st59"></path>
|
|
1707
|
+
</g>
|
|
1708
|
+
</g>
|
|
1709
|
+
</g>
|
|
1710
|
+
</svg>
|