Initial docs
@@ -0,0 +1,3 @@
|
||||
/public
|
||||
/static
|
||||
/node_modules
|
||||
@@ -0,0 +1,12 @@
|
||||
---
|
||||
pipeline:
|
||||
docker-publish-master:
|
||||
image: plugins/docker
|
||||
dockerfile: Dockerfile
|
||||
repo: rancherlabs/website
|
||||
context: .
|
||||
tag: latest
|
||||
secrets: [docker_username, docker_password]
|
||||
when:
|
||||
branch: master
|
||||
event: push
|
||||
@@ -0,0 +1,34 @@
|
||||
# EditorConfig helps developers define and maintain consistent
|
||||
# coding styles between different editors and IDEs
|
||||
# editorconfig.org
|
||||
|
||||
root = true
|
||||
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.js]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.hbs]
|
||||
insert_final_newline = false
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.css]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.html]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.{diff,md}]
|
||||
trim_trailing_whitespace = false
|
||||
@@ -0,0 +1,48 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
parserOptions: {
|
||||
ecmaVersion: 6,
|
||||
sourceType: 'module',
|
||||
},
|
||||
extends: 'eslint:recommended',
|
||||
globals: {
|
||||
"document": true,
|
||||
"window": true,
|
||||
"jQuery": true,
|
||||
"$": true,
|
||||
"require": true,
|
||||
"__dirname": true,
|
||||
"process": true,
|
||||
"ENV": true,
|
||||
"module": true
|
||||
},
|
||||
env: {
|
||||
browser: true,
|
||||
"es6": true
|
||||
},
|
||||
rules: {
|
||||
"no-cond-assign": [
|
||||
2,
|
||||
"except-parens"
|
||||
],
|
||||
"curly": 2,
|
||||
"no-console": 0,
|
||||
"no-debugger": 0,
|
||||
"eqeqeq": 2,
|
||||
"no-eval": 2,
|
||||
"guard-for-in": 0,
|
||||
"wrap-iife": 0,
|
||||
"linebreak-style": 0,
|
||||
"new-cap": 0,
|
||||
"no-caller": 2,
|
||||
"no-empty": 0,
|
||||
"no-extra-boolean-cast": 0,
|
||||
"no-new": 0,
|
||||
"no-plusplus": 0,
|
||||
"no-undef": 2,
|
||||
"dot-notation": 0,
|
||||
"strict": 0,
|
||||
"no-eq-null": 2,
|
||||
"no-unused-vars": 2
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,7 @@
|
||||
/public
|
||||
/static
|
||||
/node_modules
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
*.tern-port
|
||||
*/**/.tern-port
|
||||
@@ -0,0 +1,23 @@
|
||||
options:
|
||||
formatter: stylish
|
||||
merge-default-rules: true
|
||||
files:
|
||||
include: 'src/sass/**/*.scss'
|
||||
rules:
|
||||
bem-depth: 1
|
||||
brace-style: 0
|
||||
class-name-format:
|
||||
- 1
|
||||
- convention: 'hyphenatedbem'
|
||||
- allow-single-line: false
|
||||
empty-args: 0
|
||||
indentation:
|
||||
- 1
|
||||
- size: 4
|
||||
mixin-name-format:
|
||||
- 1
|
||||
- convention: 'hyphenatedbem'
|
||||
no-color-keywords: 0
|
||||
no-color-literals: 0
|
||||
property-sort-order: 0
|
||||
one-declaration-per-line: 1
|
||||
@@ -0,0 +1,24 @@
|
||||
FROM rancherlabs/website:build as build
|
||||
|
||||
WORKDIR /run
|
||||
|
||||
COPY --from=rancherlabs/website-theme:latest /src/website-theme /run/node_modules/rancher-website-theme
|
||||
COPY gulpfile.babel.js /run/
|
||||
COPY .eslintrc.js /run/
|
||||
COPY config.toml /run/
|
||||
COPY netlify.toml /run/
|
||||
COPY archetypes archetypes
|
||||
COPY content content
|
||||
COPY data data
|
||||
COPY layouts layouts
|
||||
COPY src src
|
||||
|
||||
ENV HUGO_ENV production
|
||||
|
||||
RUN gulp build
|
||||
|
||||
# Make sure something got built
|
||||
RUN stat /run/public/index.html
|
||||
|
||||
FROM nginx
|
||||
COPY --from=build /run/public /usr/share/nginx/html/
|
||||
@@ -0,0 +1,25 @@
|
||||
FROM debian:jessie
|
||||
|
||||
RUN apt-get -qq update \
|
||||
&& apt-get install -y curl apt-transport-https \
|
||||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
||||
&& curl -sL https://deb.nodesource.com/setup_8.x | bash - \
|
||||
&& DEBIAN_FRONTEND=noninteractive apt-get -qq install -y --no-install-recommends \
|
||||
python-pygments git ca-certificates asciidoc nodejs yarn \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Download and install hugo
|
||||
ENV HUGO_VERSION 0.37.1
|
||||
ENV HUGO_BINARY hugo_${HUGO_VERSION}_Linux-64bit.deb
|
||||
|
||||
ADD https://github.com/spf13/hugo/releases/download/v${HUGO_VERSION}/${HUGO_BINARY} /tmp/hugo.deb
|
||||
RUN dpkg -i /tmp/hugo.deb \
|
||||
&& rm /tmp/hugo.deb
|
||||
|
||||
# Create working directory
|
||||
RUN mkdir -p /run
|
||||
COPY package.json /run/
|
||||
|
||||
WORKDIR /run
|
||||
RUN npm install -g gulp && yarn
|
||||
@@ -0,0 +1,45 @@
|
||||
FROM debian:jessie
|
||||
|
||||
VOLUME ["/site"]
|
||||
|
||||
RUN apt-get -qq update \
|
||||
&& apt-get install -y curl apt-transport-https \
|
||||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
||||
&& curl -sL https://deb.nodesource.com/setup_8.x | bash - \
|
||||
&& DEBIAN_FRONTEND=noninteractive apt-get -qq install -y --no-install-recommends \
|
||||
python-pygments git ca-certificates asciidoc nodejs yarn \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Download and install hugo
|
||||
ENV HUGO_VERSION 0.37.1
|
||||
ENV HUGO_BINARY hugo_${HUGO_VERSION}_Linux-64bit.deb
|
||||
|
||||
ADD https://github.com/spf13/hugo/releases/download/v${HUGO_VERSION}/${HUGO_BINARY} /tmp/hugo.deb
|
||||
RUN dpkg -i /tmp/hugo.deb \
|
||||
&& rm /tmp/hugo.deb
|
||||
|
||||
# Create working directory
|
||||
RUN mkdir -p /run
|
||||
COPY package.json /run/
|
||||
WORKDIR /run
|
||||
|
||||
RUN npm install -g gulp && yarn
|
||||
|
||||
RUN ln -s /site/config.toml /run \
|
||||
&& ln -s /site/.eslintrc.js /run \
|
||||
&& ln -s /site/netlify.toml /run \
|
||||
&& ln -s /site/archetypes /run \
|
||||
&& ln -s /site/content /run \
|
||||
&& ln -s /site/data /run \
|
||||
&& ln -s /site/layouts /run \
|
||||
&& ln -s /site/src /run \
|
||||
&& ln -s /site/themes /run
|
||||
|
||||
COPY gulpfile.babel.js /run/
|
||||
|
||||
# Expose default hugo port
|
||||
EXPOSE 9000
|
||||
|
||||
ENTRYPOINT ["gulp"]
|
||||
CMD ["dev"]
|
||||
@@ -0,0 +1,20 @@
|
||||
Rancher Docs
|
||||
------------
|
||||
|
||||
## Running for development/editing
|
||||
|
||||
The `rancher/docs:dev` docker image runs a live-updating server. To run on your workstation, run:
|
||||
|
||||
```bash
|
||||
./scripts/dev
|
||||
```
|
||||
|
||||
and then navigate to http://localhost:9001/. You can customize the port by passing it as an argument:
|
||||
|
||||
```bash
|
||||
./scripts/dev 8080
|
||||
```
|
||||
|
||||
## Building distribution image
|
||||
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: "{{ replace .TranslationBaseName "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
tags: [ "tag", "tag", "tag", "tag" ]
|
||||
layout: single-left
|
||||
categories:
|
||||
- ""
|
||||
- ""
|
||||
---
|
||||
|
||||
@@ -0,0 +1,198 @@
|
||||
baseURL = ""
|
||||
languageCode = "en-us"
|
||||
title = "Rancher Labs"
|
||||
theme = "rancher-website-theme"
|
||||
themesDir = "node_modules"
|
||||
pluralizeListTitles = false
|
||||
|
||||
# disableKinds = ["RSS"]
|
||||
enableRobotsTXT = true
|
||||
|
||||
[permalinks]
|
||||
inside-pages = "/:filename/"
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "what-is-rancher"
|
||||
name = "What is Rancher"
|
||||
weight = "1"
|
||||
pre = "<i class='material-icons'>keyboard_arrow_down</i>"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Overview"
|
||||
url = "/what-is-rancher/overview/"
|
||||
parent = "what-is-rancher"
|
||||
weight = "1"
|
||||
|
||||
[[menu.main]]
|
||||
name = "What Rancher Adds to Kubernetes"
|
||||
url = "/what-is-rancher/what-rancher-adds-to-kubernetes/"
|
||||
parent = "what-is-rancher"
|
||||
weight = "2"
|
||||
|
||||
[[menu.main]]
|
||||
name = "How is Rancher Different"
|
||||
url = "/what-is-rancher/how-is-rancher-different/"
|
||||
parent = "what-is-rancher"
|
||||
weight = "3"
|
||||
|
||||
|
||||
[[menu.main]]
|
||||
name = "Run Kubernetes Anywhere"
|
||||
url = "/kubernetes/"
|
||||
parent = "what-is-rancher"
|
||||
weight = "4"
|
||||
|
||||
[[menu.main]]
|
||||
# name = "Cluster Operation"
|
||||
# url = "/what-is-rancher/cluster-operation/"
|
||||
# parent = "what-is-rancher"
|
||||
# weight = "5"
|
||||
|
||||
[[menu.main]]
|
||||
# name = "Hybrid cloud & multi-cloud"
|
||||
# url = "/what-is-rancher/hybrid-cloud-and-multi-cloud/"
|
||||
# parent = "what-is-rancher"
|
||||
# weight = "6"
|
||||
|
||||
[[menu.main]]
|
||||
# name = "Security & compliance"
|
||||
# url = "/what-is-rancher/security-and-compliance/"
|
||||
# parent = "what-is-rancher"
|
||||
# weight = "7"
|
||||
|
||||
[[menu.main]]
|
||||
# name = "Workload Management"
|
||||
# url = "/what-is-rancher/workload-management/"
|
||||
# parent = "what-is-rancher"
|
||||
# weight = "8"
|
||||
|
||||
[[menu.main]]
|
||||
# name = "100% Open Source"
|
||||
# url = "/what-is-rancher/open-souce/"
|
||||
# parent = "what-is-rancher"
|
||||
# weight = "9"
|
||||
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "products"
|
||||
name = "Products"
|
||||
weight = "2"
|
||||
pre = "<i class='material-icons'>keyboard_arrow_down</i>"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Rancher"
|
||||
url = "/what-is-rancher/overview/"
|
||||
parent = "products"
|
||||
|
||||
[[menu.main]]
|
||||
name = "RancherOS"
|
||||
url = "/rancher-os/"
|
||||
parent = "products"
|
||||
|
||||
|
||||
[[menu.main]]
|
||||
#identifier = "customers"
|
||||
#name = "Customers"
|
||||
#url = "/customers/"
|
||||
#weight = "3"
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "learn"
|
||||
name = "Learn"
|
||||
weight = "4"
|
||||
pre = "<i class='material-icons'>keyboard_arrow_down</i>"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Blog"
|
||||
url = "/blog/"
|
||||
parent = "learn"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Rancher Docs"
|
||||
url = "http://rancher.com/docs/rancher/v2.0/en/"
|
||||
parent = "learn"
|
||||
|
||||
[[menu.main]]
|
||||
name = "RancherOS Docs"
|
||||
url = "http://rancher.com/docs/os/v1.2/en/"
|
||||
parent = "learn"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Trainings"
|
||||
#url = "/categories/training/"
|
||||
url = "/training/"
|
||||
parent = "learn"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Forums"
|
||||
url = "https://forums.rancher.com/"
|
||||
parent = "learn"
|
||||
pre = "<i class='material-icons'>launch</i>"
|
||||
|
||||
[[menu.main]]
|
||||
#name = "Learning Resources"
|
||||
#url = "/learning-resources/"
|
||||
#parent = "learn"
|
||||
|
||||
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "about"
|
||||
name = "About"
|
||||
url = "/about/"
|
||||
weight = "5"
|
||||
pre = "<i class='material-icons'>keyboard_arrow_down</i>"
|
||||
|
||||
[[menu.main]]
|
||||
name = "About Us"
|
||||
url = "/about/"
|
||||
parent = "about"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Careers"
|
||||
url = "/careers/"
|
||||
parent = "about"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Contact Us"
|
||||
url = "/contact/"
|
||||
parent = "about"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Events"
|
||||
url = "/events/"
|
||||
parent = "about"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Partners"
|
||||
url = "/partners/"
|
||||
parent = "about"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#footer menu#
|
||||
[[menu.footer]]
|
||||
identifier = "about"
|
||||
pre = "<i class='material-icons'>info_outline</i>"
|
||||
name = "About"
|
||||
url = "/about/"
|
||||
|
||||
[[menu.footer]]
|
||||
identifier = "contact"
|
||||
pre = "<i class='material-icons'>chat_bubble_outline</i>"
|
||||
name = "Contact"
|
||||
url = "/contact/"
|
||||
|
||||
[[menu.footer]]
|
||||
identifier = "privacy"
|
||||
pre = "<i class='material-icons'>fingerprint</i>"
|
||||
name = "Privacy"
|
||||
url = "/privacy/"
|
||||
|
||||
[[menu.footer]]
|
||||
identifier = "careers"
|
||||
pre = "<i class='material-icons'>people_outline</i>"
|
||||
name = "Careers"
|
||||
url = "/careers/"
|
||||
@@ -0,0 +1,14 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: homepage
|
||||
weight: 4
|
||||
---
|
||||
|
||||
homepage
|
||||
|
||||
product
|
||||
- rancher
|
||||
- rancher os
|
||||
- 1.6
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: Five
|
||||
weight: 5
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder
|
||||
---
|
||||
|
||||
# Five tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: Four
|
||||
weight: 4
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder
|
||||
---
|
||||
|
||||
# four tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: One
|
||||
weight: 1
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder a
|
||||
---
|
||||
|
||||
# one tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder b
|
||||
---
|
||||
|
||||
# two tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder c
|
||||
---
|
||||
|
||||
# three tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: one nested
|
||||
weight: 2
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: one nested a
|
||||
---
|
||||
|
||||
# two tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder a
|
||||
---
|
||||
|
||||
# one tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder c
|
||||
---
|
||||
|
||||
# three tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder b
|
||||
---
|
||||
|
||||
# two tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: Three
|
||||
weight: 3
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder
|
||||
---
|
||||
|
||||
# three tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: Two
|
||||
weight: 2
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: two placeholder
|
||||
---
|
||||
|
||||
# two tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: Five
|
||||
weight: 5
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder
|
||||
---
|
||||
|
||||
# Five tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: Four
|
||||
weight: 4
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder
|
||||
---
|
||||
|
||||
# four tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: One
|
||||
weight: 1
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder a
|
||||
---
|
||||
|
||||
# one tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder b
|
||||
---
|
||||
|
||||
# two tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder c
|
||||
---
|
||||
|
||||
# three tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: one nested
|
||||
weight: 2
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: one nested a
|
||||
---
|
||||
|
||||
# two tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder a
|
||||
---
|
||||
|
||||
# one tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder c
|
||||
---
|
||||
|
||||
# three tasks placeholder md
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder b
|
||||
---
|
||||
|
||||
# two tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: Three
|
||||
weight: 3
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: placeholder
|
||||
---
|
||||
|
||||
# three tasks placeholder md
|
||||
@@ -0,0 +1,10 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "category"
|
||||
layout: list-docs
|
||||
title: Two
|
||||
weight: 2
|
||||
---
|
||||
|
||||
|
||||
hello
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
tag: ["tag1", "tag2", "tag3"]
|
||||
category: "categories"
|
||||
layout: single-docs
|
||||
title: two placeholder
|
||||
---
|
||||
|
||||
# two tasks placeholder md
|
||||
@@ -0,0 +1,41 @@
|
||||
[[version]]
|
||||
number = "1.6.16"
|
||||
os = "Ubuntu 14.04, Ubuntu 16.04, RHEL/CentOS 7.2-7.4* (Rancher 1.6.7+ supports RHEL 7.4), RancherOS 1.1.3"
|
||||
kubernetes = "1.9.4 + Docker 1.12.6, 1.13.1, 17.03.2-ce and ee"
|
||||
docker = "1.12.3+, 1.13.x, 17.03.x-ce and ee, 17.06.x-cc and ee, 17.09.x-cc and ee, 17.12.x-cc and ee"
|
||||
|
||||
[[version]]
|
||||
number = "1.5.10"
|
||||
os = "Ubuntu 14.04, Ubuntu 16.04, RHEL/CentOS 7.2-7.3, RancherOS 0.8.1"
|
||||
kubernetes = "1.5.4 + Docker 1.12.3 – 1.12.6"
|
||||
docker = "1.12.3+, 1.13.x, 17.03.x-ce and ee, 17.06.x-cc and ee"
|
||||
|
||||
[[version]]
|
||||
number = "1.4.3"
|
||||
os = "Ubuntu 14.04, Ubuntu 16.04, RHEL/CentOS 7.2-7.3, RancherOS 0.8.1"
|
||||
kubernetes = "1.5.2 + Docker 1.12.3 – 1.12.6"
|
||||
docker = "1.12.3-1.12.6"
|
||||
|
||||
[[version]]
|
||||
number = "1.3.5"
|
||||
os = "Ubuntu 14.04, Ubuntu 16.04, RHEL/CentOS 7.2-7.3, RancherOS 0.7.1"
|
||||
kubernetes = "1.5.1 + Docker 1.12.3 – 1.12.6"
|
||||
docker = "1.12.3-1.12.6"
|
||||
|
||||
[[version]]
|
||||
number = "1.2.4"
|
||||
os = "Ubuntu 14.04, Ubuntu 16.04, RHEL/CentOS 7.2-7.3, RancherOS 0.7.1"
|
||||
kubernetes = "1.4.6 + Docker 1.12.3 – 1.12.6"
|
||||
docker = "1.12.3-1.12.6"
|
||||
|
||||
[[version]]
|
||||
number = "1.1.4"
|
||||
os = "Ubuntu 14.04, Ubuntu 15.10, RHEL/CentOS 7.2-7.3, RancherOS 0.5.0"
|
||||
kubernetes = "1.2.4 + Docker 1.10.3"
|
||||
docker = "1.10.3"
|
||||
|
||||
[[version]]
|
||||
number = "1.0.2"
|
||||
os = "Ubuntu 14.04, Ubuntu 15.10, RHEL/CentOS 7.2-7.3, RancherOS 0.4.0"
|
||||
kubernetes = "1.2.4 + Docker 1.10.3"
|
||||
docker = "1.10.3"
|
||||
@@ -0,0 +1,79 @@
|
||||
[[testimonial]]
|
||||
company = "IBM Analytics"
|
||||
logo = "ibm.png"
|
||||
source = "Leon Katsnelson"
|
||||
position = "Director & CTO, Emerging Technologies"
|
||||
quote = "We’ve been able to migrate a massive implementation of VMs to containers using Rancher, saving money and improving the service we deliver to more than 1 million users."
|
||||
|
||||
|
||||
[[testimonial]]
|
||||
company = "LateRooms.com"
|
||||
logo = "laterooms.png"
|
||||
source = "Steve Elliot"
|
||||
position = "Performance and Reliability Specialist"
|
||||
quote = "Moving from VMs to Rancher’s orchestration has been a massive benefit for us."
|
||||
|
||||
[[testimonial]]
|
||||
company = "Kloeckner"
|
||||
logo = "kloeckner.png"
|
||||
source = "Nick Thomas"
|
||||
position = "Senior Developer"
|
||||
quote = "It’s much easier for us to sell ideas internally with the tools and cohesive UI Rancher provides. For us, it’s made microservices tangible for our entire organization."
|
||||
|
||||
|
||||
[[testimonial]]
|
||||
company = "Institute for Health Metrics and Evaluation (IHMEI)"
|
||||
logo = "ihmei.jpg"
|
||||
source = "Andrew Ernst"
|
||||
position = "IT Operations Manager"
|
||||
quote = "Anything we can do to make the deployment process simpler and faster is an excellent way for us to focus on what we do best."
|
||||
|
||||
[[testimonial]]
|
||||
company = "TNO"
|
||||
logo = "tno.png"
|
||||
source = "Johan van der Geest"
|
||||
position = "Scientist Innovator"
|
||||
quote = "With Rancher, the time it takes us to set up development and production environments and to upgrade services on these environments has decreased significantly."
|
||||
|
||||
|
||||
[[testimonial]]
|
||||
company = "Blippar"
|
||||
logo = "blippar.png"
|
||||
source = "Clement Dal Palu"
|
||||
position = "Senior Data Architect, Blippar"
|
||||
quote = "With Rancher, we get to finally focus on coding."
|
||||
|
||||
[[testimonial]]
|
||||
company = "DemandBase"
|
||||
logo = "demandbase.jpeg"
|
||||
source = "Michael Waltz"
|
||||
position = "Senior DevOps Engineer at Demandbase"
|
||||
quote = "Moving to containers and leveraging Rancher allowed us to reduce deploy times from hours to minutes, while helping to reduce our infrastructure footprint."
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher has made running and migrating to Docker \"Simpler, Better, faster\" right from inception all the way to Production. It is an awesome product and suite."
|
||||
logo = "dstv.png"
|
||||
source = "Greg Van Wyngaard"
|
||||
position = "Systems Architect"
|
||||
company = "DStv"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher hits that sweet spot of providing powerful container orchestration capabilities without adding too many layers of complexity"
|
||||
logo = "BravissimoLtd.png"
|
||||
source = "Luke Bennett"
|
||||
position = "Customer Systems Development Manager"
|
||||
company = "Bravissimo Ltd"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher's user-friendy UI, the way you can manage containers, the services, the easy installation, really make the difference."
|
||||
logo = "orange.png"
|
||||
source = "Florian Le Galudec"
|
||||
position = "Ops Engineer"
|
||||
company = "Orange France"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Using Rancher 2.0 increases our efficiency and provides our engineering teams with more time to focus on creating the next great innovations that will help Sling TV build upon its leadership position"
|
||||
logo = "sling.png"
|
||||
source = "Brad Linder"
|
||||
position = "Cloud Native and Big Data Evangelist"
|
||||
company = "Sling TV"
|
||||
@@ -0,0 +1,105 @@
|
||||
[[partner]]
|
||||
name = "addteq"
|
||||
logo = "partner-addteq.png"
|
||||
site = "http://www.addteq.com/"
|
||||
description = "Addteq has been a leader of providing business solutions to Enterprise clients for more than 10 years. Through the use of DevOps automation, Addteq strives on creating innovative solutions to solve business processes. Clients depend on Addteq to provide Atlassian solutions, create custom add-ons, conduct training, offer hosting and staffing, perform DevOps services, and provide overall support services. Being named one of Atlassian’s Platinum Solution Partners, Addteq delivers superior results within a range of industries, specifically to major companies such as Cisco, MetLife and Bank of America. Addteq’s headquarters is found in Princeton, New Jersey, with offices around the globe."
|
||||
type = [ "Service Provider", "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "cloudsky"
|
||||
logo = "partner-cloudsky.png"
|
||||
site = "https://www.cloudssky.com/en/"
|
||||
description = "Clouds Sky GmbH is a German company specialized in cloud computing consulting and development. Our dedicated team of cloud computing experts advises customers by Multi-Cloud-Management, Microservices development, Orchestration with Kubernetes, Cloud Native Technology and DevOps."
|
||||
type = [ "Consulting", "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "evry"
|
||||
logo = "partner-evry.png"
|
||||
site = "https://www.evry.com/en/"
|
||||
description = "EVRY is one of the leading IT companies in the Nordic region and has a strong local and regional presence in 50 Nordic towns and cities. Through its insight, solutions and technology, EVRY contributes to the development of the information society of the future and so creates value for the benefit of its customers and for society as a whole. EVRY combines in-depth industry knowledge and technical expertise with a local delivery model and international strength."
|
||||
type = [ "Service Provider" ]
|
||||
|
||||
[[partner]]
|
||||
name = "exops"
|
||||
logo = "partner-exops.png"
|
||||
site = "http://ezops.com.br/"
|
||||
description = "EZOps is a Brazilian startup focusing on DevOps implementation services."
|
||||
type = [ "Consulting", "Service Provider", "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "Global Web Data Services Corp"
|
||||
logo = "partner-globalweb.png"
|
||||
site = "http://www.globalweb.com.br/"
|
||||
description = "A Globalweb Outsourcing é especialista em tecnologia para o seu segmento. A nossa nuvem é uma combinação completa de produtos e serviços de TI, que se adaptam ao seu nível de necessidade e estrutura. Com foco na otimização dos processos organizacionais, as soluções são desenvolvidas para auxiliar com agilidade e precisão as tarefas diárias, proporcionando aos gestores focarem no que realmente interessa: nos negócios."
|
||||
type = [ "Consulting", "Service Provider", "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "instruct"
|
||||
logo = "partner-instruct.png"
|
||||
site = "http://instruct.com.br/"
|
||||
description = "Instruct offers IT infrastructure solutions focused on automation, configuration management and agile principles. Our highly qualified team helps organizations improve their workflow when deploying applications and new services, enabling them to save time and reduce costs and errors. Our services include: DevOps consulting, infrastructure automation, continuous integration and delivery development."
|
||||
type = [ "Consulting", "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "kangaroot"
|
||||
logo = "partner-kangaroot.png"
|
||||
site = "http://kangaroot.net/"
|
||||
description = "At Kangaroot, we design, implement, maintain & support IT infrastructure based on Linux & Open Source software. With our consulting, organisations lower their IT capital costs & operational expenses. Our certified engineers help you reduce over-provisioning, consolidate servers and increase business agility and continuity. Ask us how!"
|
||||
type = [ "Consulting", "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "mobilab"
|
||||
logo = "partner-mobilab.png"
|
||||
site = "https://mobilabsolutions.com/"
|
||||
description = "MobiLab Solutions GmbH is a German based software engineering company with offices in Cologne and Berlin. Whether we’re developing a mobile app which helps a multinational restaurant franchise offer a more engaging in-store experience to their customers, or a key piece of infrastructure in a global retailer’s core operations, we build it from ground up and tailor it to the customer’s needs.Our engineers cover full stack software solutions and our work touches thousands of users. Areas we are heavily experienced in are (mobile) payment, (mobile) ordering, infrastructure and master data management. On top of our solutions we apply awesome designs to give our end-users a unique experience."
|
||||
type = [ "Consulting", "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "nelsoncash"
|
||||
logo = "partner-nelsoncash.png"
|
||||
site = "http://nelsoncash.com/"
|
||||
description = "Nelson Cash is a creative studio with roots in Chicago, New York, and Los Angeles. Named after two artists defined by their musical storytelling, Nelson Cash is a team that approaches creative from a different perspective. We believe in fostering relationships with our clients on a simple guiding principle – your project is unique, and unique challenges require unique solutions. Our perspective allows us to strategize wisely, design quickly, and develop holistically from the ground up."
|
||||
type = [ "Consulting" ]
|
||||
|
||||
[[partner]]
|
||||
name = "novisync"
|
||||
logo = "partner-novisync.png"
|
||||
site = "http://novisync.com/"
|
||||
description = "Founded in 2007. Novisync Inc., a global IT Solutions Provider and SystemsIntegrator,can Architect, Plan, Design, Implement and administer environments which cater to all the industry verticals and sizes. With our large team of certified, professional engineers we provide IT services and solutions, professional services, and managed services in IT Infrastructure, cloud management, converged and hyper converged infrastructure, data center management, networking (Routing, switching, load balancing), storage/data, virtualization, software development, application development, monitoring and security."
|
||||
type = [ "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "qualimente"
|
||||
logo = "partner-qualimente.png"
|
||||
site = "https://www.qualimente.com/"
|
||||
description = "QualiMente helps customers build and deploy containerized application delivery pipelines and platforms in the Cloud and on-premise using modern Lean and DevOps techniques."
|
||||
type = [ "Consulting" ]
|
||||
|
||||
[[partner]]
|
||||
name = "seqvence"
|
||||
logo = "partner-seqvence.png"
|
||||
site = "http://seqvence.com/"
|
||||
description = "At Seqvence, we are convinced that programmability throughout the whole infrastructure stack is an inevitable outcome in the current race for automation. We founded Seqvence to help businesses transition to that future, by adopting the necessary tools and technologies."
|
||||
type = [ "Consulting", "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "simac"
|
||||
logo = "partner-simac.png"
|
||||
site = "https://www.simac.com/"
|
||||
description = "Simac Techniek N.V., founded in 1971, is a technology company in the Benelux and Central Europe. Simac supplies and maintains high-quality technology for improving the business processes of large and medium-sized organizations."
|
||||
type = [ "Consulting", "Reseller" ]
|
||||
|
||||
[[partner]]
|
||||
name = "tooit"
|
||||
logo = "partner-tooit.png"
|
||||
site = "http://www.tooit.com/"
|
||||
description = "Tooit is a digital product development studio, committed to developing and delivering flexible web solutions from Argentina to the world. Our main expertise is in CMS development, integrating cloud computing, Docker containers and CI/CD processes to build complete and high available digital solutions.Our professional team includes expert engineers with broad experience in offshore delivery."
|
||||
type = [ "Consulting" ]
|
||||
|
||||
[[partner]]
|
||||
name = "treeptik"
|
||||
logo = "partner-treeptik.png"
|
||||
site = "http://treeptik.fr/"
|
||||
description = "Treeptik works with customers to accelerate their business, shortening the path between innovation and final product. With deep DevOps, container, and Rancher expertise, Treeptik’s team of experts goes the extra mile to provide customers with simplified IT solutions, and well-designed, high-performance applications. Treeptik is also the developer of CloudUnit, a comprehensive set of production tools for Java developers, based on Docker."
|
||||
type = [ "Consulting" ]
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
[[table]]
|
||||
rancher = "1.6.X"
|
||||
release = "June 8, 2017"
|
||||
full = "December 31, 2018"
|
||||
maintain = "June 1, 2019"
|
||||
[[table]]
|
||||
rancher = "1.5.10"
|
||||
release = "March 21, 2017"
|
||||
full = "September 1, 2017"
|
||||
maintain = "March 1, 2018"
|
||||
[[table]]
|
||||
rancher = "1.4.3"
|
||||
release = "February 13, 2017"
|
||||
full = "August 1, 2017"
|
||||
maintain = "February 1, 2018"
|
||||
[[table]]
|
||||
rancher = "1.3.5"
|
||||
release = "January 13, 2017"
|
||||
full = "July 1, 2017"
|
||||
maintain = "January 1, 2018"
|
||||
[[table]]
|
||||
rancher = "1.2.4"
|
||||
release = "December 1, 2016"
|
||||
full = "June 1, 2017"
|
||||
maintain = "December 1, 2017"
|
||||
[[table]]
|
||||
rancher = "1.1.4"
|
||||
release = "June 30, 2016"
|
||||
full = "December 1, 2016"
|
||||
maintain = "June 30, 2017"
|
||||
[[table]]
|
||||
rancher = "1.0.2"
|
||||
release = "March 28, 2016"
|
||||
full = "June 30, 2016"
|
||||
maintain = "March 28, 2017"
|
||||
@@ -0,0 +1,186 @@
|
||||
[[testimonial]]
|
||||
quote = "Using Rancher 2.0 increases our efficiency and provides our engineering teams with more time to focus on creating the next great innovations that will help Sling TV build upon its leadership position"
|
||||
logo = "octoperf.png"
|
||||
source = "name"
|
||||
position = "Founder"
|
||||
company = "Sling TV"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Using Rancher 2.0 increases our efficiency and provides our engineering teams with more time to focus on creating the next great innovations that will help Sling TV build upon its leadership position"
|
||||
logo = "octoperf.png"
|
||||
source = "name"
|
||||
position = "Founder"
|
||||
company = "Sling TV"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher improved our scalability by providing an amazing all-in-one Docker cluster orchestration tool."
|
||||
logo = "octoperf.png"
|
||||
source = "Quentin Hamard"
|
||||
position = "Founder"
|
||||
company = "Octoperf"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher is the most advanced product that we have been testing during our Docker evaluation. The user-friendy UI, the way you can manage containers, the services, the easy installation, are the points which are making the difference. The Rancher team was there when we needed it, for example to help us on load-balancing issues. We believe in the product, and have planned to use it with Jenkins and Docker to make a continuous deployment solution for our application."
|
||||
logo = "orange-logo.png"
|
||||
source = "Florian Le Galudec"
|
||||
position = "Ops Engineer"
|
||||
company = "Orange France"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "After trying many solutions and finding faults with them, we settled on Rancher. Rancher removes a massive amount of the manual effort needed to build a stable Docker Infrastructure and CI/CD pipeline. Its batteries-included-but-removable nature means you never have to bend it to your needs. Every “edge case” in our company infrastructure happens naturally in Rancher, and as a result, runs without hiccups."
|
||||
logo = "HigherEducation.png"
|
||||
source = "Will Stern"
|
||||
position = "Software Architect"
|
||||
company = "HigherEducation"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "We rely on Rancher to manage our various microservices and core API in both our lab and multiple production environments. Having a global footprint with multiple facilities is tricky to begin with, and Rancher makes it that much easier. Knowing we have a reliable container management solution in Rancher is one less thing our operators have to lie awake at night thinking about!"
|
||||
logo = "packet.png"
|
||||
source = "Aaron Welch"
|
||||
position = "SVP Product"
|
||||
company = "Packet"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher is just awesome! It gives us the best of Docker and cloud philosophy in an out-of-the box, multi-tenant Container-as-a-Service solution. Our dev team gets a real self-service PaaS, and our ops team can easily manage multiple environments."
|
||||
logo = "makazi.png"
|
||||
source = "Alexis Ducastel"
|
||||
position = "Tech Ops Director"
|
||||
company = "Makazi"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "After trying a number of tools and approaches, we found that Rancher hits that sweet spot of providing powerful container orchestration capabilities without adding too many layers of complexity and additional concepts on top of Docker itself. This has helped prevent the learning curve from getting too steep and made the introduction of new development and deployment workflows much easier."
|
||||
logo = "BravissimoLtd.png"
|
||||
source = "Luke Bennett"
|
||||
position = "Customer Systems Development Manager"
|
||||
company = "Bravissimo Ltd"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Last year I was playing around with Docker and SpringCloud to determine the feasibility of converting one of my client's monolithic applications to a microservice based architecture. Docker is great, but my client as clamoring for a more elegant user experience that is backed up by a robust and yet easy to use orchestration solution. My attention turned to Rancher and I have not looked back since. Rancher's UI and feature set is top-notch. Better yet, the team behind it is amazing! They're experts in all areas of operations, incredibly responsive and truly focused on making their product the best in its class"
|
||||
logo = "nuarch.png"
|
||||
source = "Dan MacDonald"
|
||||
position = "Consultant"
|
||||
company = "Nuarch.com"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "For enterprises that support diverse DevOps groups, it is imperative to provide visibility and manageability into the ecosystem. Rancher embraces this by following the Docker principal \"batteries included but removable.\" Use any scheduler, overlay network or storage solution across multiple environments and disperse teams, and Rancher will provide the insight and control needed to wrangle cattle wherever they may roam."
|
||||
logo = "sungard.png"
|
||||
source = "Kevin McGrath"
|
||||
position = "CTO Architect"
|
||||
company = "Sungard Availability Services "
|
||||
|
||||
[[testimonial]]
|
||||
quote = "By migrating from a physical box to a Rancher controlled Docker infrastructure, we have been able to lower the amount of time our teams spend working with builds, and it allows us to quickly scale up or down seamlessly. Rancher has becoming a powerful tool in our DevOps arsenal and I would highly recommend it to anyone."
|
||||
logo = "sugarcrm.png"
|
||||
source = "Jon Whitcraft"
|
||||
position = "Sr. Devops Engineer"
|
||||
company = "SugarCRM"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "We have been using Docker for a long time to support our need for both shared and consistent application deployments across a hybrid cloud+bare metal infrastructure. The key piece that was consistently missing (despite a lot of searching) was the marriage of infrastructure and application orchestration. We immediately saw the promise of Rancher after testing it early in their beta phase. We are now running 2 distributed production applications, along with several internal apps, fully managed through Rancher. The Rancher team’s professionalism and responsiveness to requests/inquiries/bug reports/etc has been outstanding and the product they have built has quickly become a cornerstone of our tech stack"
|
||||
logo = "pitrho.png"
|
||||
source = "Gilman Callsen"
|
||||
position = "co-Founder and CTO"
|
||||
company = "of Pit Rho"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher provides container orchestration for the masses. Object Partners consistently recommends Rancher to many of our clients due to its intuitive user experience, simplistic installation process, and minimal infrastructure requirements. The Rancher team has delivers a great product, provides fantastic support, and continuously engages with their community of users. We love Rancher and believe you will too."
|
||||
logo = "objectpartners.png"
|
||||
source = "John Engelman"
|
||||
position = "Chief Technologist"
|
||||
company = "Object Partners"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher is the only tool on the market that provides the full spectrum of orchestration, ACL and UI while still being easy to install and simple to understand. The developers of Rancher come from thoughtful distributed systems companies and it shows in their product."
|
||||
logo = "VitalsLogo.png"
|
||||
source = "Topper Bowers"
|
||||
position = "Director of Engineering"
|
||||
company = "Vitals"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "After trying several other orchestration solutions we found Rancher to be the most feature rich, stable and well-designed system out there. Not only does it provide powerful console integrations for our developers, they tie it together with a super easy to use interface that makes it a joy to work with!"
|
||||
logo = "spyjack.png"
|
||||
source = "Rik Nauta<z>CEO "
|
||||
company = "Spyjack.io"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher has made running and migrating to Docker \"Simpler, Better, faster\" right from inception all the way to Production. The entire Rancher Suite is reliable with rapid time to deliver for services. I have not found a better collection of services and support from any other provider. It is an awesome product and suite."
|
||||
logo = "dstv.png"
|
||||
source = "Greg Van Wyngaard"
|
||||
position = "Systems Architect"
|
||||
company = "DStv"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher saved us a ton of time while bringing Docker into production. Rancher's core concepts are intuitive enough that we could get up and running in less than a day. As a result, we now can introduce new services with little to no operational overhead."
|
||||
logo = "bloom-logo.png"
|
||||
source = "Michael Wasser"
|
||||
position = "CEO"
|
||||
company = "BloomAPI"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher solves all of the critical issues for running containers in production, including host management, container networking, managing load balancers, resource tagging, scheduling, and scaling workloads. The UI is beautiful, and makes it so easy to get running with Docker."
|
||||
logo = "bitspace.png"
|
||||
source = "Alex Trauzzi"
|
||||
position = "CTO"
|
||||
company = "Bit Space Development"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "We considered a number of container management platforms before deciding to deploy Rancher. It is a simple, practical and fully functional container provisioning platform. Rancher’s UI makes managing containers appear simple, but the software is actually incredibly powerful. With Rancher we can achieve enterprise-scale container deployments instantly. Rancher is a fantastic product, with a bright future."
|
||||
logo = "unitedelectronics.png"
|
||||
source = "Bingli Shi"
|
||||
position = "R&D Center, VP"
|
||||
company = "United Electronics"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher is a powerful and easy-to-use container deployment and management platform. Rancher is a great choice for companies looking to quickly deploy and use containers in the cloud. RancherOS is a complete OS for supporting containers. The design philosophy of Rancher and RancherOS is excellent."
|
||||
logo = "cloudsoar.png"
|
||||
source = "James Dai"
|
||||
position = "CTO"
|
||||
company = "Cloudsoar "
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher is a user friendly container management platform with broad functionality. It is easy to deploy, supports container ecosystems such as Kubernetes and Mesos, and also provides an excellent container data persistence solution. The architecture of Rancher is light weight which is in line with how we are deploying containers. Rancher makes container management easy and convenient."
|
||||
logo = "cntv.png"
|
||||
source = "Qin He"
|
||||
position = "System Engineer"
|
||||
company = "CNTV"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Before we started using Rancher, I needed a few days to install and deploy a new software package. Now, leveraging the Rancher Catalog, I can deploy an application in minutes. It is very fast and incredibly easy."
|
||||
logo = "Tianhe2.png"
|
||||
source = "Tony Huo"
|
||||
position = "Senior Engineer, Tianhe2 (www.nscc-gz.cn)"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Linksame develops software for large enterprises. Introducing Rancher has dramatically reduced the difficulty of our product development and management processes. We’re using Rancher and Docker to improve all aspects of developing and maintaining our software platform."
|
||||
logo = "linksame.png"
|
||||
source = "Nengwei Yao"
|
||||
position = "General Manager & Founder"
|
||||
company = "Linksame Inc."
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Since we started using Docker, we have tried a number of tools to simplify the orchestration of containers so that our developers get the greatest level of flexibility. We chose Rancher, because it exposes the native Docker tool set while adding a powerful set of tools around it. We have used Rancher to isolate and manage all of our games running in AWS."
|
||||
logo = "cerebralfix.png"
|
||||
source = "Alister Galpin"
|
||||
position = "Server Engineer,"
|
||||
company = "Cerebralfix, Ltd"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "After trying several approaches, getting to know Rancher has dramatically improved the way we work. Rancher is an open-source project that makes it possible to deploy our complex solution across multiple computing clusters for various clients without adding a big learning layer on top of Docker concepts... what more can you ask for?"
|
||||
logo = "instore.png"
|
||||
source = "Romain Di Giorgio"
|
||||
position = "DevOps"
|
||||
company = "instore.digital"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "When building the Nuxeo cloud infrastructure, we tried several approaches for managing Docker based deployment; we even started building our own container orchestration system. Rancher provides a simple abstraction with a good API and administration UI to manage Containers as a service while allowing us the freedom to use Docker Swarm or Kubernetes if needed."
|
||||
logo = "nuxeo.png"
|
||||
source = "Thierry Delprat"
|
||||
position = "CTO,"
|
||||
company = "Nuxeo"
|
||||
|
||||
[[testimonial]]
|
||||
quote = "Rancher is not only a turnkey solution for containers; it's a total shift in the way the new cloud is approached. We have had great success where continuous delivery is key and the platform is utilised by all users types from developer to product owner."
|
||||
logo = "industrieit.png"
|
||||
source = "Chris Fordham"
|
||||
position = "Cloud Platform Architect"
|
||||
company = "Industrie IT"
|
||||
@@ -0,0 +1,184 @@
|
||||
/* eslint:ignore */
|
||||
'use strict';
|
||||
|
||||
import gulp from 'gulp';
|
||||
import del from 'del';
|
||||
import runSequence from 'run-sequence';
|
||||
import gulpLoadPlugins from 'gulp-load-plugins';
|
||||
import { spawn } from "child_process";
|
||||
import tildeImporter from 'node-sass-tilde-importer';
|
||||
import browserify from 'browserify';
|
||||
import source from 'vinyl-source-stream';
|
||||
import buffer from 'vinyl-buffer';
|
||||
import babelify from 'babelify';
|
||||
|
||||
const $ = gulpLoadPlugins();
|
||||
const browserSync = require('browser-sync').create();
|
||||
const isProduction = process.env.NODE_ENV === 'production';
|
||||
|
||||
const onError = (err) => {
|
||||
console.log(err);
|
||||
}
|
||||
|
||||
process.on('SIGINT', () => {
|
||||
console.log('Caught SIGINT, exiting');
|
||||
process.exit(0);
|
||||
});
|
||||
|
||||
// --
|
||||
gulp.task('dev', ['build-dev'], () => {
|
||||
gulp.start('init-watch');
|
||||
$.watch(['archetypes/**/*', 'data/**/*', 'content/**/*', 'layouts/**/*', 'static/**/*', 'themes/**/*', 'node_modules/rancher-website-theme/**/*', 'config.toml'], () => gulp.start('hugo-dev'));
|
||||
});
|
||||
|
||||
gulp.task('server', ['build'], () => {
|
||||
gulp.start('init-watch');
|
||||
$.watch(['archetypes/**/*', 'data/**/*', 'content/**/*', 'layouts/**/*', 'static/**/*', 'themes/**/*', 'config.toml'], () => gulp.start('hugo'));
|
||||
});
|
||||
|
||||
gulp.task('server:with-drafts', ['build-preview'], () => {
|
||||
gulp.start('init-watch');
|
||||
$.watch(['archetypes/**/*', 'data/**/*', 'content/**/*', 'layouts/**/*', 'static/**/*', 'themes/**/*', 'config.toml'], () => gulp.start('hugo-preview'));
|
||||
});
|
||||
|
||||
gulp.task('init-watch', () => {
|
||||
browserSync.init({
|
||||
server: {
|
||||
baseDir: 'public'
|
||||
},
|
||||
port: 9020,
|
||||
open: false
|
||||
});
|
||||
$.watch('src/sass/**/*.scss', () => gulp.start('sass'));
|
||||
$.watch('node_modules/rancher-website-theme/**/*.scss', () => gulp.start('sass'));
|
||||
$.watch('src/js/**/*.js', () => gulp.start('js-watch'));
|
||||
$.watch('src/img/**/*', () => gulp.start('img'));
|
||||
});
|
||||
|
||||
gulp.task('build', () => {
|
||||
runSequence(['sass', 'build:vendor', 'build:app', 'fonts', 'img', 'pub-delete'], 'hugo');
|
||||
});
|
||||
|
||||
gulp.task('build-dev', () => {
|
||||
runSequence(['sass', 'build:vendor', 'build:app', 'fonts', 'img', 'pub-delete'], 'hugo-dev');
|
||||
});
|
||||
|
||||
gulp.task('build-preview', () => {
|
||||
runSequence(['sass', 'build:vendor', 'build:app', 'fonts', 'img', 'pub-delete'], 'hugo-preview');
|
||||
});
|
||||
|
||||
gulp.task('hugo', (cb) => {
|
||||
return spawn('hugo', { stdio: 'inherit' }).on('close', (/* code */) => {
|
||||
browserSync.reload();
|
||||
cb();
|
||||
});
|
||||
});
|
||||
|
||||
gulp.task('hugo-preview', (cb) => {
|
||||
return spawn('hugo', ['--buildDrafts', '--buildFuture'], { stdio: 'inherit' }).on('close', (/* code */) => {
|
||||
browserSync.reload();
|
||||
cb();
|
||||
});
|
||||
});
|
||||
|
||||
gulp.task('hugo-dev', (cb) => {
|
||||
return spawn('hugo', ['--buildDrafts', '--buildFuture', '--baseURL=http://localhost:9020/'], { stdio: 'inherit' }).on('close', (/* code */) => {
|
||||
browserSync.reload();
|
||||
cb();
|
||||
});
|
||||
});
|
||||
|
||||
// --
|
||||
|
||||
gulp.task('sass', () => {
|
||||
return gulp.src([
|
||||
'src/sass/**/*.scss'
|
||||
])
|
||||
.pipe($.plumber({ errorHandler: onError }))
|
||||
.pipe($.sassLint())
|
||||
.pipe($.sassLint.format())
|
||||
.pipe($.sass({ precision: 5, importer: tildeImporter }))
|
||||
.pipe($.autoprefixer(['ie >= 10', 'last 2 versions']))
|
||||
.pipe($.if(isProduction, $.cssnano({ discardUnused: false, minifyFontValues: false })))
|
||||
.pipe($.size({ gzip: true, showFiles: true }))
|
||||
.pipe(gulp.dest('static/css'))
|
||||
.pipe(browserSync.stream());
|
||||
});
|
||||
|
||||
gulp.task('js-watch', ['js'], (cb) => {
|
||||
browserSync.reload();
|
||||
cb();
|
||||
});
|
||||
|
||||
const vendors = ['ml-stack-nav', 'lory.js', 'tingle.js', 'moment', 'jquery'];
|
||||
|
||||
gulp.task('build:vendor', () => {
|
||||
const b = browserify();
|
||||
|
||||
// require all libs specified in vendors array
|
||||
vendors.forEach(lib => {
|
||||
b.require(lib);
|
||||
});
|
||||
|
||||
b.bundle()
|
||||
.pipe(source('vendor.js'))
|
||||
.pipe(buffer())
|
||||
.pipe(gulp.dest('static/js'));
|
||||
});
|
||||
|
||||
gulp.task('build:app', () => {
|
||||
browserify({
|
||||
entries: ['./src/js/app.js'],
|
||||
extensions: ['.js',],
|
||||
debug: true,
|
||||
insertGlobals: true
|
||||
})
|
||||
.external(vendors) // Specify all vendors as external source
|
||||
.transform(babelify)
|
||||
.bundle()
|
||||
.pipe(source('app.js'))
|
||||
.pipe(buffer())
|
||||
.pipe(gulp.dest('static/js'));
|
||||
});
|
||||
|
||||
gulp.task('js', () => {
|
||||
return gulp.src([
|
||||
'src/js/**/*.js'
|
||||
])
|
||||
.pipe($.plumber({ errorHandler: onError }))
|
||||
.pipe($.babel())
|
||||
.pipe($.concat('app.js'))
|
||||
.pipe($.if(isProduction, $.uglify()))
|
||||
.pipe($.size({ gzip: true, showFiles: true }))
|
||||
.pipe(gulp.dest('static/js'));
|
||||
});
|
||||
|
||||
gulp.task('fonts', () => {
|
||||
return gulp.src('src/fonts/**/*.{woff,woff2}')
|
||||
.pipe(gulp.dest('static/fonts'));
|
||||
});
|
||||
|
||||
gulp.task('img', () => {
|
||||
return gulp.src('src/img/**/*.{png,jpg,jpeg,gif,svg,webp,ico}')
|
||||
.pipe(gulp.dest('static/img'));
|
||||
});
|
||||
|
||||
gulp.task('minify-images', () => {
|
||||
return gulp.src('src/img/**/*.{png,jpg,jpeg,gif,svg,webp,ico}')
|
||||
.pipe($.newer('static/img'))
|
||||
.pipe($.imagemin())
|
||||
.pipe(gulp.dest('src/img'));
|
||||
});
|
||||
|
||||
gulp.task('cms-delete', () => {
|
||||
return del(['static/admin'], { dot: true });
|
||||
});
|
||||
|
||||
gulp.task('pub-delete', () => {
|
||||
return del(['public/**', '!public'], {
|
||||
// dryRun: true,
|
||||
dot: true
|
||||
}).then(paths => {
|
||||
console.log('Files and folders deleted:\n', paths.join('\n'), '\nTotal Files Deleted: ' + paths.length + '\n');
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"events": [
|
||||
{{ range $i, $event := (where (where .Site.RegularPages "Section" "events") ".Params.type" "event") }}
|
||||
{{ if $i }}, {{ end }}
|
||||
{
|
||||
"title": "{{ $event.Params.title }}",
|
||||
"location": "{{$event.Params.location}}",
|
||||
"eventDate": "{{$event.Params.eventdate}}",
|
||||
"permalink": "{{.Permalink}}"
|
||||
}
|
||||
{{ end }}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
{{ define "title" }}
|
||||
{{ .Title }} – {{ .Site.Title }}
|
||||
{{ end }}
|
||||
|
||||
{{ define "hero" }}
|
||||
<!-- theme/layouts/_default/list.html-->
|
||||
<section class="hero">
|
||||
{{ with .Params.Title }}
|
||||
<h1>{{ . }}</h1>
|
||||
{{end}}
|
||||
|
||||
{{ with .Params.Author }}
|
||||
<span class="byline bg-link">{{ . }}</span>
|
||||
{{end}}
|
||||
</section>
|
||||
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<div class="wrapper">
|
||||
{{ partial "breadcrumbs.html" . }}
|
||||
|
||||
{{ partial "docs-nav.html" . }}
|
||||
|
||||
<div class="row m-t-sm">
|
||||
<aside class="col-sm-4 col-xs-12">
|
||||
<div class="bg-default p-a-sm">
|
||||
{{ partial "docs-side-nav.html" . }}
|
||||
</div>
|
||||
</aside>
|
||||
<article class="col-sm-8 col-xs-12 p-r-lg">
|
||||
<div class="main-content ">
|
||||
|
||||
{{ .Content }}
|
||||
{{ range (.Paginator 5).Pages }}
|
||||
<div class="box m-b-md">
|
||||
<div class="p-a-sm">
|
||||
<h3><a href="{{.URL}}">{{.Title}}</a></h3>
|
||||
|
||||
{{ if .Params.Image }}
|
||||
<div class="thumbnail"><img src="{{ .Params.Image }}" alt="{{ .Params.Title }}"></div>
|
||||
{{end}}
|
||||
|
||||
<p>{{ .Summary | safeHTML }}</p>
|
||||
{{ if .Truncated }}
|
||||
<div>
|
||||
<a href="{{ .RelPermalink }}">Read More…</a>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="bg-default">
|
||||
<div class="row">
|
||||
|
||||
{{ with .Params.Author }}
|
||||
<div class="p-h-sm p-v-xs"><i class="material-icons">person_outline</i> By: {{ . }}</div>
|
||||
{{end}}
|
||||
|
||||
{{ if eq .Section "events" }}
|
||||
{{ with .Params.EventDate }}
|
||||
<div class="p-h-sm p-v-xs"><i class="material-icons">event</i> {{ . }}</div>
|
||||
{{end}}
|
||||
|
||||
{{ else }}
|
||||
|
||||
{{ with .Params.Date }}
|
||||
<div class="p-h-sm p-v-xs"><i class="material-icons">event</i> {{ .Format "January 2, 2006" }}</div>
|
||||
{{end}}
|
||||
{{end}}
|
||||
|
||||
<!-- {{ with .Params.Date }}
|
||||
<div class="p-h-sm p-v-xs"><i class="material-icons">event</i> By: {{ .Format "January 2, 2006" }}</div>
|
||||
{{end}} -->
|
||||
|
||||
{{ if eq .Section "blog" }}
|
||||
<div class="p-h-sm p-v-xs"><i class="material-icons">timer</i> Read Time: {{.ReadingTime}} minutes</div>
|
||||
{{end}}
|
||||
|
||||
{{ with .Params.Location }}
|
||||
<div class="p-h-sm p-v-xs"><i class="material-icons">location_on</i> {{ . }}</div>
|
||||
{{end}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ template "_internal/pagination.html" . }}
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
@@ -0,0 +1,37 @@
|
||||
{{ define "hero" }}
|
||||
<section class="hero">
|
||||
<div class="wrapper p-h-lg row center-xs">
|
||||
<div class="col-md-8">
|
||||
{{ with .Params.Title }}
|
||||
<h1>{{ . }}</h1>
|
||||
{{end}}
|
||||
|
||||
{{ with .Params.Author }}
|
||||
<span class="byline bg-link">{{ . }}</span>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<div class="wrapper">
|
||||
<h1>default single template</h1>
|
||||
{{ partial "breadcrumbs.html" . }}
|
||||
<div class="row">
|
||||
<article class="main-content col-sm-8 col-xs-12 p-r-lg">
|
||||
|
||||
{{ if .Params.Image }}
|
||||
<img class="feat-img" src="{{ .Params.Image }}" alt="{{ .Params.Title }}">
|
||||
{{end}}
|
||||
|
||||
{{ .Content }}
|
||||
|
||||
</article>
|
||||
|
||||
<aside class="col-sm-4 col-xs-12">
|
||||
{{ partial "sidebar.html" . }}
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
@@ -0,0 +1,5 @@
|
||||
/*
|
||||
X-Frame-Options: DENY
|
||||
X-XSS-Protection: 1; mode=block
|
||||
X-Content-Type-Options: nosniff
|
||||
Referrer-Policy: origin-when-cross-origin
|
||||
@@ -0,0 +1,20 @@
|
||||
{{ define "hero" }}
|
||||
<section class="hero">
|
||||
<div class="wrapper">
|
||||
<div class="row center-xs">
|
||||
<div class="col-md-8 p-a-lg">
|
||||
{{ with .Params.pageHeader }}
|
||||
<h1>{{ . }}</h1>
|
||||
{{end}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<div>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
{{ end }}
|
||||
@@ -0,0 +1,6 @@
|
||||
# redirects for Netlify - https://www.netlify.com/docs/redirects/
|
||||
{{- range $p := .Site.Pages -}}
|
||||
{{- range .Aliases }}
|
||||
{{ . }} {{ $p.RelPermalink -}}
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,7 @@
|
||||
<nav>
|
||||
<ul class="tabs">
|
||||
{{ range .Sections }}
|
||||
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</nav>
|
||||
@@ -0,0 +1,69 @@
|
||||
<!-- {{ range .Data.Pages.GroupBy "Section" }}
|
||||
<h3>{{ .Key }}</h3>
|
||||
<ul class="unstyled">
|
||||
{{ range .Pages }}
|
||||
<li>
|
||||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
-->
|
||||
<h3>{{ .Title }}</h3>
|
||||
{{ $home := .Site.Home }}
|
||||
<div class="tree-nav">
|
||||
<ul>
|
||||
<!-- <li><a href="{{ .RelPermalink}}">Home</a></li> -->
|
||||
<ul>
|
||||
{{ template "section-tree-nav" $home }}
|
||||
</ul>
|
||||
</ul>
|
||||
</div>
|
||||
{{ define "section-tree-nav" }}
|
||||
{{ range .Sections}}
|
||||
<!-- <li> -->
|
||||
<li class="bg-white"><a href="{{ .RelPermalink}}"><i class="material-icons bg-accent p-a-xs">folder</i>{{ .Title }}<i class="material-icons pull-right">keyboard_arrow_down</i></a>
|
||||
<ul>
|
||||
{{ range .Pages }}
|
||||
<li class="bg-white"><a href="{{ .RelPermalink}}">{{ .Title }}</a></li>
|
||||
{{ end }}
|
||||
<ul>
|
||||
{{ template "section-tree-nav" . }}
|
||||
</ul>
|
||||
</ul>
|
||||
</li>
|
||||
<!-- </li> -->
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
|
||||
<!--old sidebar-->
|
||||
<!-- <div class="bg-default p-a-md">
|
||||
<h4>{{ .Section }}</h4>
|
||||
{{ $page := . }}
|
||||
<ul>
|
||||
{{ range where .Site.Pages "Section" .Section }}
|
||||
{{ $child := . }}
|
||||
{{ if .IsDescendant $page }}
|
||||
<li class="row aside-item">
|
||||
<div class="bg-accent col-md row middle-md center-md"><i class="material-icons">folder</i></div>
|
||||
<div class="col-md aside-info">
|
||||
<a href="{{ .URL }}">{{ .Title }}
|
||||
{{ if .IsAncestor $child }}
|
||||
<i class="material-icons pull-right">keyboard_arrow_down</i>
|
||||
{{ end }}
|
||||
</a>
|
||||
</div>
|
||||
<ul>
|
||||
{{ range where .Site.Pages "Section" .Section }}
|
||||
{{ if .IsDescendant $child }}
|
||||
<li><a href="{{ .URL }}">{{.Title}}</a></li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
-->
|
||||
@@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow: {{ if ne (getenv "HUGO_ENV") "production" }}/{{ end }}
|
||||
@@ -0,0 +1,13 @@
|
||||
<div class="slider js_slider percentage">
|
||||
<div class="frame js_frame">
|
||||
<ul class="slides js_slides">
|
||||
{{ .Inner }}
|
||||
</ul>
|
||||
</div>
|
||||
<span class="js_prev prev" style="padding-left: 10px;">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 501.5 501.5"><g><path fill="#2E435A" d="M302.67 90.877l55.77 55.508L254.575 250.75 358.44 355.116l-55.77 55.506L143.56 250.75z"/></g></svg>
|
||||
</span>
|
||||
<span class="js_next next" style="padding-right: 10px;">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 501.5 501.5"><g><path fill="#2E435A" d="M199.33 410.622l-55.77-55.508L247.425 250.75 143.56 146.384l55.77-55.507L358.44 250.75z"/></g></svg>
|
||||
</span>
|
||||
</div>
|
||||
@@ -0,0 +1,21 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Version</th>
|
||||
<th>Host OS</th>
|
||||
<th>Kubernetes*</th>
|
||||
<th>Docker</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{ range .Site.Data.compatibility.version }}
|
||||
<tr>
|
||||
<td>{{.number}}</td>
|
||||
<td>{{.os}}</td>
|
||||
<td>{{.kubernetes}}</td>
|
||||
<td>{{.docker}}</td>
|
||||
</tr>
|
||||
{{ end }}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
{{ range .Site.Data.homepage.testimonial }}
|
||||
<li class="js_slide testimonial m-a-sm">
|
||||
<!-- <hr/> -->
|
||||
<blockquote class="text-lg text-left p-a-md m-a-0">
|
||||
<div class="p-b-sm">"{{.quote}}"</div>
|
||||
<hr class="m-a-0" />
|
||||
<div class="row middle-md between-md p-a-sm border-right">
|
||||
<div class="col-md-2 p-a-sm p-l-0">
|
||||
<img src="{{ .Site.BaseURL }}/img/quotelogos/{{.logo}}" alt="{{.company}}">
|
||||
</div>
|
||||
<div class="col-md-10 p-a-0">
|
||||
<cite class="text-md text-left p-l-sm">{{.source}},<br/>{{.position}}, {{.company}}</cite>
|
||||
</div>
|
||||
</div>
|
||||
</blockquote>
|
||||
</li>
|
||||
{{ end }}
|
||||
@@ -0,0 +1,9 @@
|
||||
<button class="modal-open btn border-btn" data-launch-id="{{.Get `modalContentId`}}">{{.Get "buttonText"}}</button>
|
||||
<div class="modal-content" id="{{.Get `modalContentId`}}">
|
||||
<div id="content">{{.Inner}}</div>
|
||||
<div id="footer-button-label" data-footer-label="{{.Get `modalFooterButtonLabel`}}"></div>
|
||||
<div id="css-classes" data-css-classes="{{.Get `modalCssClasses`}}"></div>
|
||||
<div id="close-label" data-close-label="{{.Get `modalCloseLabel`}}"></div>
|
||||
<div id="include-footer" data-include-footer="{{.Get `includeFooter`}}"></div>
|
||||
<div id="sticky-footer" data-sticky-footer="{{.Get `stickyFooter`}}"></div>
|
||||
</div>
|
||||
@@ -0,0 +1,14 @@
|
||||
<div class="row">
|
||||
{{ range .Site.Data.partners.partner }}
|
||||
<div class="col-md-3 box m-a-sm">
|
||||
<img src="{{ .Site.BaseURL }}/img/{{.logo}}" height="50" alt="{{.name}}">
|
||||
<h3>{{.name}}</h3>
|
||||
<p>{{.description}}</p>
|
||||
<span class="row">
|
||||
{{ range .type }}
|
||||
<span class="bg-accent tag">{{ . }}</span>
|
||||
{{ end }}
|
||||
</span>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
@@ -0,0 +1,20 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Rancher Version</th>
|
||||
<th>Release Date</th>
|
||||
<th>End full support</th>
|
||||
<th>Dend maintainance support</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{ range .Site.Data.support.table }}
|
||||
<tr>
|
||||
<td>{{.rancher}}</td>
|
||||
<td>{{.release}}</td>
|
||||
<td>{{.full}}</td>
|
||||
<td>{{.maintain}}</td>
|
||||
</tr>
|
||||
{{ end }}
|
||||
</tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,22 @@
|
||||
<div class="slider js_slider js_multislides multislides">
|
||||
<div class="frame js_frame">
|
||||
<ul class="testimonials slides js_slides">
|
||||
{{ range .Site.Data.testimonials.testimonial }}
|
||||
<li class="js_slide testimonial">
|
||||
<div class="p-a-xs bg-accent">{{.company}}</div>
|
||||
<div class="p-a-sm">
|
||||
<img src="{{ .Site.BaseURL }}/img/quotelogos/{{.logo}}" height="50" alt="{{.company}}">
|
||||
<p>{{.quote}}</p>
|
||||
<cite>{{.source}}, {{.position}}</cite>
|
||||
</div>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
<span class="js_prev prev">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 501.5 501.5"><g><path fill="#2E435A" d="M302.67 90.877l55.77 55.508L254.575 250.75 358.44 355.116l-55.77 55.506L143.56 250.75z"/></g></svg>
|
||||
</span>
|
||||
<span class="js_next next">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 501.5 501.5"><g><path fill="#2E435A" d="M199.33 410.622l-55.77-55.508L247.425 250.75 143.56 146.384l55.77-55.507L358.44 250.75z"/></g></svg>
|
||||
</span>
|
||||
</div>
|
||||
@@ -0,0 +1,13 @@
|
||||
[build]
|
||||
command = "npm run build"
|
||||
publish = "public"
|
||||
|
||||
[build.environment]
|
||||
HUGO_VERSION = "0.36"
|
||||
|
||||
[context.production.environment]
|
||||
HUGO_ENV = "production"
|
||||
NODE_ENV = "production"
|
||||
|
||||
[context.deploy-preview]
|
||||
command = "npm run build:preview"
|
||||
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "RancherLabs - Docs",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "gulp build",
|
||||
"build:preview": "gulp build-preview",
|
||||
"dev": "gulp dev",
|
||||
"server": "gulp server",
|
||||
"server:with-drafts": "gulp server:with-drafts",
|
||||
"cms:delete": "gulp cms-delete"
|
||||
},
|
||||
"dependencies": {
|
||||
"babel-core": "^6.25.0",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"babelify": "^8.0.0",
|
||||
"browser-sync": "^2.18.13",
|
||||
"browserify": "^16.1.1",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-autoprefixer": "^5.0.0",
|
||||
"gulp-babel": "^6.1.2",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-cssnano": "^2.1.2",
|
||||
"gulp-if": "^2.0.2",
|
||||
"gulp-imagemin": "^4.1.0",
|
||||
"gulp-load-plugins": "^1.5.0",
|
||||
"gulp-newer": "^1.3.0",
|
||||
"gulp-plumber": "^1.1.0",
|
||||
"gulp-sass": "^3.1.0",
|
||||
"gulp-sass-lint": "^1.3.2",
|
||||
"gulp-size": "^3.0.0",
|
||||
"gulp-uglify": "^3.0.0",
|
||||
"gulp-watch": "^5.0.0",
|
||||
"jquery": "^3.3.1",
|
||||
"moment": "^2.20.1",
|
||||
"node-sass-tilde-importer": "^1.0.0",
|
||||
"run-sequence": "^2.0.0",
|
||||
"vinyl-buffer": "^1.0.1",
|
||||
"vinyl-source-stream": "^2.0.0"
|
||||
},
|
||||
"babel": {
|
||||
"presets": [
|
||||
"es2015"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"lory.js": "^2.4.1",
|
||||
"ml-stack-nav": "^1.1.2",
|
||||
"rancher-website-theme": "https://github.com/rancherlabs/website-theme.git",
|
||||
"tingle.js": "^0.13.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
#!/bin/bash
|
||||
|
||||
PORT=9000
|
||||
THEME=
|
||||
|
||||
# cd to app root
|
||||
CWD=$(dirname $0)
|
||||
if [[ `basename $(pwd)` = 'scripts' ]]; then
|
||||
cd ../
|
||||
else
|
||||
cd `dirname $CWD`
|
||||
fi
|
||||
|
||||
print_help()
|
||||
{
|
||||
cat 1>&2 <<EOF
|
||||
Usage:
|
||||
|
||||
[-p PORT] [-t]
|
||||
|
||||
-p PORT - Port to listen on
|
||||
-t DIR - Use DIR to for the theme, to devlop the theme at the same time
|
||||
|
||||
EOF
|
||||
}
|
||||
|
||||
echoerr()
|
||||
{
|
||||
printf "%s\n" "$*" >&2;
|
||||
}
|
||||
|
||||
absolute() {
|
||||
# $1 : relative filename
|
||||
echo "$(cd "$(dirname "$1")" && pwd)/$(basename "$1")"
|
||||
}
|
||||
|
||||
|
||||
while getopts ":p:t:" opt;do
|
||||
case $opt in
|
||||
p)
|
||||
PORT="${OPTARG}"
|
||||
;;
|
||||
t)
|
||||
THEME="${OPTARG}"
|
||||
;;
|
||||
\?)
|
||||
echoerr "Invalid arguemnts"
|
||||
print_help
|
||||
exit 1
|
||||
;;
|
||||
:)
|
||||
echoerr "Option -${OPTARG} requires an argument."
|
||||
print_help
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
THEMEVOLUME=""
|
||||
echo "Starting server on http://localhost:${PORT}"
|
||||
if [[ "$THEME" ]]; then
|
||||
echo "Using theme from ${THEME}"
|
||||
ABSOLUTE=$(absolute $THEME)
|
||||
THEMEVOLUME="-v ${ABSOLUTE}:/run/node_modules/rancher-website-theme"
|
||||
fi
|
||||
|
||||
docker run --rm -p ${PORT}:${PORT} -it -v $(pwd):/site ${THEMEVOLUME} rancherlabs/website:dev dev --port=${PORT}
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
# cd to app root
|
||||
CWD=$(dirname $0)
|
||||
if [[ `basename $(pwd)` = 'scripts' ]]; then
|
||||
cd ../
|
||||
else
|
||||
cd `dirname $CWD`
|
||||
fi
|
||||
|
||||
PORT=9000
|
||||
if [ ! -z "$1" ]; then
|
||||
PORT=$1
|
||||
fi
|
||||
|
||||
docker run --rm -it -v $(pwd):/site rancherlabs/website:dev minify-images
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
# cd to app root
|
||||
CWD=$(dirname $0)
|
||||
if [[ `basename $(pwd)` = 'scripts' ]]; then
|
||||
cd ../
|
||||
else
|
||||
cd `dirname $CWD`
|
||||
fi
|
||||
|
||||
echo "Pulling Theme..." && \
|
||||
docker pull rancherlabs/website-theme:latest && \
|
||||
echo "Building Image..." && \
|
||||
docker build -t rancherlabs/website:latest . && \
|
||||
echo "Pushing Image..." && \
|
||||
docker push rancherlabs/website:latest && \
|
||||
echo "OK"
|
||||
|
After Width: | Height: | Size: 75 KiB |
|
After Width: | Height: | Size: 108 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 90 KiB |
@@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 2374.4 541.3" style="enable-background:new 0 0 2374.4 541.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{opacity:0.5;}
|
||||
.st2{fill:url(#SVGID_1_);}
|
||||
.st3{fill:url(#SVGID_2_);}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M1175.5-1248.9c0-47.4-46.5-82.7-92.1-70.1c6.1-80.5-53.1-154.1-133.1-165.1s-158.9,45.3-173.3,125.9
|
||||
c-54.1-16.8-112,19.9-119.8,75.9c-35.9-15.5-77.3-5.7-77.3,33.3L1175.5-1248.9L1175.5-1248.9z"/>
|
||||
<path class="st0" d="M0.3-1298.6c-4.4-57.1,39.2-109.4,96-117.1c56.8-7.7,112.7,32.2,122.9,89.3c38.4-11.9,79.5,14.1,85,53.9
|
||||
c25.5-11,54.9-4.1,54.9,23.6H0.3V-1298.6z"/>
|
||||
<path class="st0" d="M2380.1-1248.9h-358.8c0-27.7,29.4-34.6,54.9-23.6c5.5-39.8,46.6-65.8,85-53.9c10.2-57.1,66.1-97,122.9-89.3
|
||||
c56.8,7.7,100.4,60,96,117.1L2380.1-1248.9L2380.1-1248.9z"/>
|
||||
<path class="st0" d="M1582.8-1249c0-32.3-31.7-56.3-62.8-47.7c4.1-54.8-36.2-105-90.7-112.4s-108.2,30.9-118,85.8
|
||||
c-36.8-11.5-76.3,13.6-81.6,51.7c-24.4-10.6-52.6-3.9-52.6,22.7L1582.8-1249L1582.8-1249z"/>
|
||||
<path class="st0" d="M2019.6-1248.9L2019.6-1248.9c0-39.9-39-69.4-77.3-58.8c5-67.5-44.6-129.3-111.7-138.4s-133.2,38-145.3,105.6
|
||||
c-66.9-20-105.2,35.5-100.5,91.6H2019.6z"/>
|
||||
<path class="st0" d="M578.3-1248.9L578.3-1248.9c0-19.9-19.5-34.7-38.7-29.4c2.5-33.7-22.3-64.6-55.8-69.2s-66.6,19-72.6,52.8
|
||||
c-33.5-10-52.6,17.7-50.2,45.8H578.3L578.3-1248.9z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st0" d="M694.9-1337.5c0-13-12.7-22.7-25.3-19.3c1.7-22.1-14.6-42.4-36.6-45.4c-22.1-3-43.7,12.5-47.6,34.6
|
||||
c-14.8-4.6-30.8,5.5-33,20.9c-9.8-4.3-21.2-1.6-21.2,9.1L694.9-1337.5L694.9-1337.5z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st0" d="M179.6-1414.8h81.9c0-5.4-5.7-6.7-10.6-4.6c-1.1-7.7-9.1-12.7-16.5-10.4c-2-11.1-12.7-18.8-23.8-17.3
|
||||
s-19.2,11.6-18.4,22.7C185.9-1426.1,179.6-1421.3,179.6-1414.8L179.6-1414.8z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st0" d="M1132.3-1367.6H1296c0-10.7-11.4-13.4-21.2-9.1c-2.2-15.4-18.1-25.5-33-20.9c-3.9-22.2-25.5-37.7-47.6-34.6
|
||||
c-22.1,3-38.3,23.3-36.6,45.4C1145-1390.3,1132.3-1380.6,1132.3-1367.6L1132.3-1367.6z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st0" d="M1647.7-1444.8c0-6.5-6.4-11.4-12.7-9.6c0.8-11-7.3-21.2-18.3-22.7s-21.8,6.2-23.8,17.3
|
||||
c-7.4-2.3-15.4,2.8-16.5,10.4c-4.9-2.1-10.6-0.8-10.6,4.6H1647.7L1647.7-1444.8z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<path class="st0" d="M2059.9-1347.3c0-3.9-3.9-6.9-7.7-5.8c0.5-6.7-4.4-12.8-11.1-13.7c-6.7-0.9-13.2,3.8-14.4,10.5
|
||||
c-4.5-1.4-9.3,1.7-10,6.3c-3-1.3-6.4-0.5-6.4,2.8L2059.9-1347.3L2059.9-1347.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-1831.575" y1="606.991" x2="-1831.575" y2="103.584" gradientTransform="matrix(-1 0 0 1 -1370.6973 0)">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
<stop offset="9.461686e-02" style="stop-color:#FFFFFF;stop-opacity:5.526882e-02"/>
|
||||
<stop offset="0.856" style="stop-color:#FFFFFF;stop-opacity:0.5"/>
|
||||
</linearGradient>
|
||||
<path class="st2" d="M73.4,134.2c30.4-19.4,66.4-30.6,105.1-30.6c85.4,0,157.9,54.7,184.6,130.9c25.4-12,53.7-18.7,83.6-18.7
|
||||
c48.7,0,93.2,17.8,127.4,47.3c24-47.1,72.8-79.3,129.3-79.3c80.1,0,145,64.9,145,145c0,80.1-64.9,145-145,145
|
||||
c-24,0-46.7-5.9-66.6-16.2C616,543.3,538.8,607,446.7,607C361.3,607,288.8,552.3,262,476c-25.4,12-53.7,18.7-83.6,18.7
|
||||
c-38.7,0-74.7-11.3-105.1-30.6V134.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="1570.733" y1="601.7001" x2="1570.733" y2="137.2777">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
<stop offset="9.461686e-02" style="stop-color:#FFFFFF;stop-opacity:5.526882e-02"/>
|
||||
<stop offset="0.856" style="stop-color:#FFFFFF;stop-opacity:0.5"/>
|
||||
</linearGradient>
|
||||
<path class="st3" d="M2374.4,597.7V168.2c-35.3-19.7-76-30.9-119.3-30.9c-107.3,0-198.4,68.8-231.9,164.7
|
||||
c-8.4-1.1-17-1.7-25.7-1.7c-38.9,0-75.1,11.5-105.5,31.2c-13.2-94.5-94.3-167.3-192.4-167.3c-85.4,0-158,55.2-184,131.8
|
||||
c-17.6-7.2-36.8-11.3-56.9-11.3c-70.4,0-129.5,48.7-145.3,114.3c-8.2-1.4-16.7-2.2-25.3-2.2c-47.8,0-90.4,22.5-117.8,57.4
|
||||
c-20.4-25.9-52.1-42.6-87.7-42.6c-10.7,0-21.1,1.5-30.9,4.4c-23.8-51.1-75.6-86.5-135.6-86.5c-82.6,0-149.6,67-149.6,149.6
|
||||
c0,50.8,25.4,95.7,64.1,122.7h170.9c0.4-0.3,0.7-0.5,1.1-0.8c0.2,0.3,0.5,0.5,0.8,0.8h423.6c2.6-6.5,4.8-13.2,6.4-20.1
|
||||
c8.2,1.4,16.7,2.2,25.3,2.2c52.8,0,99.3-27.4,125.9-68.8c32.2,23.7,72,37.8,115.1,37.8c38.9,0,75.1-11.5,105.5-31.2
|
||||
c4.1,29.3,14.7,56.5,30.3,80.1h539C2376.9,600.4,2371.8,599.1,2374.4,597.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M2374.4,30c-62.6,21.1-109.4,76.6-118.1,144.1c-127,22.2-223.6,132.9-223.6,266.3c0,8.7,0.5,17.3,1.3,25.8
|
||||
c-7.9-1.1-15.9-1.7-24-1.7c-52.6,0-99.7,23.1-131.9,59.7c-37.2-104.9-137.2-180-254.9-180c-82.4,0-156.1,36.9-205.7,95
|
||||
c-4-0.3-8.1-0.5-12.2-0.5c-49,0-93.3,20-125.1,52.3c-27-16.8-58.8-26.6-92.9-26.6c-34.1,0-65.9,9.7-92.9,26.6
|
||||
c-31.9-32.3-76.2-52.3-125.1-52.3c-4.1,0-8.2,0.2-12.2,0.5c-49.6-58.1-123.3-95-205.7-95c-117.6,0-217.7,75.1-254.9,180
|
||||
c-32.2-36.6-79.4-59.7-131.9-59.7c-8.1,0-16.2,0.6-24,1.7c0.8-8.5,1.3-17.1,1.3-25.8c0-133.4-96.6-244.1-223.6-266.3
|
||||
C109.4,106.6,62.6,51.1,0,30v621.3h2374.4V30z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.3 KiB |
@@ -0,0 +1,234 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 175 175" style="enable-background:new 0 0 175 175;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#ECF0F1;}
|
||||
.st1{fill:#C0392B;}
|
||||
.st2{fill:#5A1A15;}
|
||||
.st3{fill:#902B20;}
|
||||
.st4{fill:#441410;}
|
||||
.st5{fill:#E74C3C;}
|
||||
.st6{enable-background:new ;}
|
||||
.st7{opacity:0.3;fill:#C0392B;}
|
||||
.st8{opacity:5.000000e-02;fill:#3498DB;enable-background:new ;}
|
||||
.st9{fill:none;stroke:#3498DB;stroke-width:1.08;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st10{fill:none;stroke:#3498DB;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st11{fill:#3498DB;}
|
||||
.st12{fill:none;stroke:#3498DB;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st13{fill:none;stroke:#3498DB;stroke-width:0.72;stroke-linejoin:round;}
|
||||
.st14{fill:#D6E3F4;}
|
||||
.st15{fill:#8DB9E3;}
|
||||
.st16{fill:#69A7DB;}
|
||||
.st17{fill:#4B87AF;}
|
||||
.st18{fill:none;stroke:#99A3A8;stroke-width:1.08;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st19{fill:none;stroke:#BDC3C7;stroke-width:1.08;stroke-linecap:round;stroke-linejoin:round;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="st0" points="105,175 23.9,127.9 93.9,87.6 175,134.7 "/>
|
||||
</g>
|
||||
<polygon class="st1" points="151,95.6 151.1,148.4 105.1,175 105,122.1 "/>
|
||||
<polygon class="st2" points="109.6,124.8 146.3,103.6 146.5,145.8 109.7,167 "/>
|
||||
<polygon class="st3" points="105.1,175 24,127.9 23.9,75 105,122.1 "/>
|
||||
<polygon class="st4" points="28.7,125.2 28.5,83.1 100.3,124.8 100.4,166.9 "/>
|
||||
<g>
|
||||
<polygon class="st5" points="105,122.1 23.9,75 69.9,48.5 151,95.6 "/>
|
||||
</g>
|
||||
<polygon class="st5" points="146.3,103.6 143.6,105.2 143.7,143.9 109.7,163.5 109.7,167 146.5,145.8 "/>
|
||||
<polygon class="st5" points="28.5,83.1 31.5,84.8 31.4,123.9 100.5,163.5 100.4,167 28.7,125.2 "/>
|
||||
<g>
|
||||
<g class="st6">
|
||||
<g>
|
||||
<polygon class="st2" points="41.4,90.6 41.2,129.6 37.7,130.5 37.8,88.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st3" points="37.8,88.5 37.7,130.5 33.2,127.9 33.3,85.9 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st6">
|
||||
<g>
|
||||
<polygon class="st2" points="63.5,103.4 63.3,142.4 59.8,143.3 59.9,101.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st3" points="59.9,101.3 59.8,143.3 55.3,140.7 55.4,98.7 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st6">
|
||||
<g>
|
||||
<polygon class="st2" points="52.4,97 52.3,136 48.7,136.9 48.9,94.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st3" points="48.9,94.9 48.7,136.9 44.2,134.3 44.4,92.3 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st6">
|
||||
<g>
|
||||
<polygon class="st2" points="74.5,109.9 74.3,148.9 70.8,149.8 71,107.8 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st3" points="71,107.8 70.8,149.8 66.3,147.2 66.5,105.2 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st6">
|
||||
<g>
|
||||
<polygon class="st2" points="85.5,116.2 85.4,155.2 81.9,156.1 82,114.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st3" points="82,114.1 81.9,156.1 77.4,153.6 77.5,111.5 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st6">
|
||||
<g>
|
||||
<polygon class="st2" points="96.6,122.7 96.4,161.7 92.9,162.6 93.1,120.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st3" points="93.1,120.6 92.9,162.6 88.4,160 88.6,118 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<polygon class="st2" points="28.7,125.2 28.5,83.1 31.5,84.8 31.4,123.9 "/>
|
||||
</g>
|
||||
<path class="st7" d="M129.7,84.8c0-0.5,0-1-0.1-1.5L93.2,62.2c-2.5-0.2-5-0.4-7.7-0.4c-24.4,0-44.1,10.3-44.1,23c0,0.2,0,0.4,0,0.6
|
||||
l38.1,22.2c2,0.1,3.9,0.2,6,0.2C109.9,107.8,129.7,97.5,129.7,84.8z"/>
|
||||
<ellipse class="st8" cx="138" cy="-85" rx="27.2" ry="14.1"/>
|
||||
<path class="st9" d="M138-80.3c0,0-2-8.7-18.6-20.7"/>
|
||||
<path class="st9" d="M138-80.3c0,0-0.3-9.9-8-17.6"/>
|
||||
<path class="st9" d="M138-80.3c0,0,2-8.7,18.6-20.7"/>
|
||||
<path class="st9" d="M138-80.3c0,0,0.3-9.9,8-17.6"/>
|
||||
<title>environment</title>
|
||||
<polygon class="st9" points="-48.2,95.2 -48.1,125.9 -74.8,141.3 -74.9,110.6 "/>
|
||||
<polygon class="st9" points="-74.8,141.3 -130.7,108.7 -130.8,78 -74.9,110.6 "/>
|
||||
<polyline class="st9" points="-92.1,69.6 -48.2,95.2 -74.9,110.6 -130.8,77.9 -109.9,65.4 "/>
|
||||
<line class="st10" x1="-61.5" y1="103.6" x2="-61.5" y2="133.6"/>
|
||||
<path class="st11" d="M-52,101.7l0.1,22l-19.2,11l-0.1-22L-52,101.7 M-52,101c-0.1,0-0.3,0-0.4,0.1l-19.1,11
|
||||
c-0.2,0.1-0.4,0.4-0.4,0.7l0.1,22c0,0.4,0.3,0.8,0.8,0.8c0.1,0,0.3,0,0.4-0.1l19.2-11c0.2-0.1,0.3-0.4,0.3-0.7v-22
|
||||
C-51.2,101.3-51.5,101-52,101L-52,101L-52,101L-52,101z"/>
|
||||
<path class="st11" d="M-126.4,85.6l47.1,27.5l0.1,20.6l-47.1-27.5L-126.4,85.6 M-126.4,84.9c-0.4,0-0.8,0.3-0.8,0.8l0.1,20.6
|
||||
c0,0.3,0.1,0.5,0.4,0.7l47.1,27.5c0.4,0.2,0.8,0.1,1-0.3c0.1-0.1,0.1-0.2,0.1-0.4v-20.7c0-0.3-0.1-0.5-0.4-0.7L-126,85
|
||||
C-126.1,84.9-126.3,84.9-126.4,84.9L-126.4,84.9L-126.4,84.9z"/>
|
||||
<polyline class="st12" points="-53.1,102.3 -53,122.9 -71,133.3 "/>
|
||||
<polygon class="st12" points="-83.4,110.7 -83.5,129.8 -85.6,130.3 -85.5,109.4 "/>
|
||||
<polyline class="st12" points="-85.6,130.3 -87.9,129 -87.9,107.8 "/>
|
||||
<line class="st12" x1="-78.8" y1="132.1" x2="-83.4" y2="129.5"/>
|
||||
<polygon class="st12" points="-92,105.8 -92,124.9 -94.1,125.4 -94.1,104.5 "/>
|
||||
<polyline class="st12" points="-94.1,125.4 -96.4,124.1 -96.4,102.9 "/>
|
||||
<line class="st12" x1="-87.9" y1="127.1" x2="-91.9" y2="124.8"/>
|
||||
<line class="st12" x1="-96.4" y1="122.2" x2="-100.9" y2="119.6"/>
|
||||
<polygon class="st12" points="-100.6,100.9 -100.7,119.9 -102.7,120.4 -102.7,99.5 "/>
|
||||
<polyline class="st12" points="-102.7,120.4 -105.1,119.1 -105,97.9 "/>
|
||||
<polygon class="st12" points="-109.1,96 -109.2,115 -111.3,115.5 -111.2,94.6 "/>
|
||||
<polyline class="st12" points="-111.3,115.5 -113.6,114.2 -113.5,93 "/>
|
||||
<line class="st12" x1="-105" y1="117.2" x2="-109" y2="114.9"/>
|
||||
<polygon class="st13" points="-117.6,91 -117.7,110 -119.7,110.5 -119.7,89.6 "/>
|
||||
<polyline class="st13" points="-120,110.3 -122.3,109 -122.2,87.8 "/>
|
||||
<line class="st12" x1="-113.7" y1="112" x2="-117.7" y2="109.7"/>
|
||||
<line class="st13" x1="-122.3" y1="106.9" x2="-126.7" y2="104.4"/>
|
||||
<polygon class="st8" points="-34.9,125.2 -74.8,148.3 -139.8,109.1 -131.1,103.7 -131.2,109 -75.2,141.5 -49,125.8 -49,118.9 "/>
|
||||
<path class="st9" d="M-90.7,26.7c18.3,0,27.2,15.5,27.2,28.2c0,10.7-16.3,14.7-27.2,14.7c-10.3,0-27.2-4-27.2-14.7
|
||||
C-117.8,42.2-109,26.7-90.7,26.7z"/>
|
||||
<path class="st9" d="M-109.1,65.8c0-10.8,2.4-35.2,18.5-39.1"/>
|
||||
<path class="st9" d="M-72.2,65.8c0-10.8-2.4-35.2-18.5-39.1"/>
|
||||
<line class="st9" x1="-90.7" y1="26.7" x2="-90.7" y2="69.6"/>
|
||||
<path class="st9" d="M-90.5,86.5c0,0-2-8.7-18.6-20.7"/>
|
||||
<path class="st9" d="M-90.5,86.5c0,0-0.3-9.9-8-17.6"/>
|
||||
<path class="st9" d="M-90.5,86.5c0,0,2-8.7,18.6-20.7"/>
|
||||
<path class="st9" d="M-90.5,86.5c0,0,0.3-9.9,8-17.6"/>
|
||||
<line class="st9" x1="-69.5" y1="30.3" x2="-69.5" y2="31"/>
|
||||
<line class="st9" x1="-69.5" y1="32.7" x2="-69.5" y2="43.4"/>
|
||||
<line class="st9" x1="-60.5" y1="32.7" x2="-60.5" y2="43.4"/>
|
||||
<line class="st9" x1="-65" y1="28.6" x2="-65" y2="35.3"/>
|
||||
<line class="st9" x1="-120.3" y1="51.5" x2="-120.3" y2="50.8"/>
|
||||
<line class="st9" x1="-120.3" y1="48.1" x2="-120.3" y2="37.4"/>
|
||||
<line class="st9" x1="-112" y1="36.1" x2="-112" y2="36.8"/>
|
||||
<line class="st9" x1="-112" y1="39.5" x2="-112" y2="50.2"/>
|
||||
<line class="st9" x1="-116.1" y1="41.7" x2="-116.1" y2="48.3"/>
|
||||
<path class="st8" d="M-116.6,85.9c0-7.2,11.8-13.1,26.3-13.1c1.8,0,3.6,0.1,5.3,0.3l21,12.8C-64,93.1-75.8,99-90.3,99
|
||||
c-1.7,0-3.3-0.1-4.9-0.2L-116.6,85.9z"/>
|
||||
<path class="st14" d="M71.1-113.8c18.3,0,27.2,15.5,27.2,28.2c0,10.7-16.3,14.7-27.2,14.7c-10.3,0-27.2-4-27.2-14.7
|
||||
C44-98.3,52.8-113.8,71.1-113.8z"/>
|
||||
<path class="st9" d="M52.7-74.7c0-10.8,2.4-35.2,18.5-39.1"/>
|
||||
<path class="st9" d="M89.6-74.7c0-10.8-2.4-35.2-18.5-39.1"/>
|
||||
<line class="st9" x1="71.1" y1="-113.8" x2="71.1" y2="-70.9"/>
|
||||
<g>
|
||||
<path class="st15" d="M119.5-100.7c5.7,2.7,13,3.8,18.5,3.8v-42.9C122-135.9,119.5-111.8,119.5-100.7z"/>
|
||||
<path class="st16" d="M110.8-111.6c0,5,3.7,8.5,8.7,10.9c0-11,2.5-35.2,18.5-39.1C119.7-139.8,110.9-124.3,110.8-111.6z"/>
|
||||
</g>
|
||||
<path class="st9" d="M71.3-54c0,0-2-8.7-18.6-20.7"/>
|
||||
<path class="st9" d="M71.3-54c0,0-0.3-9.9-8-17.6"/>
|
||||
<path class="st9" d="M71.3-54c0,0,2-8.7,18.6-20.7"/>
|
||||
<path class="st9" d="M71.3-54c0,0,0.3-9.9,8-17.6"/>
|
||||
<line class="st9" x1="92.3" y1="-110.2" x2="92.3" y2="-109.5"/>
|
||||
<line class="st9" x1="92.3" y1="-107.8" x2="92.3" y2="-97.1"/>
|
||||
<line class="st9" x1="96.8" y1="-111.9" x2="96.8" y2="-105.2"/>
|
||||
<line class="st9" x1="41.5" y1="-89" x2="41.5" y2="-89.7"/>
|
||||
<line class="st9" x1="41.5" y1="-92.4" x2="41.5" y2="-103.1"/>
|
||||
<line class="st9" x1="49.8" y1="-104.4" x2="49.8" y2="-103.7"/>
|
||||
<line class="st9" x1="49.8" y1="-101" x2="49.8" y2="-90.3"/>
|
||||
<line class="st9" x1="45.7" y1="-98.8" x2="45.7" y2="-92.2"/>
|
||||
<path class="st8" d="M45.2-54.6c0-7.2,11.8-13.1,26.3-13.1c1.8,0,3.6,0.1,5.3,0.3l21,12.8c0,7.2-11.8,13.1-26.3,13.1
|
||||
c-1.7,0-3.3-0.1-4.9-0.2L45.2-54.6z"/>
|
||||
<g>
|
||||
<path class="st16" d="M138-139.8v42.9c0,0,0,0,0,0c5.8,0,13.1-1.1,18.6-3.8C156.6-111.7,154.1-135.9,138-139.8z"/>
|
||||
<path class="st15" d="M165.2-111.6c0-12.7-8.9-28.2-27.2-28.2c0,0,0,0,0,0c16.1,3.9,18.6,28.1,18.6,39.1
|
||||
C161.6-103,165.2-106.6,165.2-111.6z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st15" d="M138-67.7c-11,0-18.2,15.5-18.3,28.2v11c3.3,1.5,7.2,2.5,10.9,3.1v-14.1C130.6-52.2,134.4-67.7,138-67.7z"/>
|
||||
<path class="st16" d="M138-67.7c-18.3,0-27.1,15.5-27.2,28.2c0,5,3.7,8.5,8.7,10.9c0.1,0,0.1,0.1,0.2,0.1v-11
|
||||
C119.8-52.2,127-67.7,138-67.7z"/>
|
||||
<path class="st16" d="M138-67.7c-3.7,0-7.4,15.5-7.4,28.2v14.1c2.6,0.4,5.2,0.6,7.4,0.6c2.3,0,4.9-0.2,7.4-0.6v-14.1
|
||||
C145.5-52.2,141.7-67.7,138-67.7z"/>
|
||||
<path class="st15" d="M138-67.7c3.7,0,7.5,15.5,7.4,28.2v14.1c3.8-0.6,7.6-1.6,10.9-3.1v-11.1C156.4-52.2,149-67.7,138-67.7z"/>
|
||||
<path class="st16" d="M138-67.7c11,0,18.3,15.5,18.3,28.2v11.1c0.1,0,0.2-0.1,0.3-0.1c5-2.3,8.6-5.9,8.6-10.9
|
||||
C165.2-52.2,156.3-67.7,138-67.7z"/>
|
||||
</g>
|
||||
<path class="st15" d="M224.6,102.6C224.6,102.6,224.6,102.6,224.6,102.6c-18.3,0-27.1,15.5-27.2,28.2c0,5,3.7,8.5,8.7,10.9
|
||||
c5.7,2.7,13,3.8,18.5,3.8c0,0,0,0,0,0c5.8,0,13.1-1.1,18.6-3.8c5-2.3,8.6-5.9,8.6-10.9C251.8,118.1,242.9,102.6,224.6,102.6z"/>
|
||||
<g>
|
||||
<path class="st9" d="M224.6,102.6C224.6,102.6,224.6,102.6,224.6,102.6c-18.3,0-27.1,15.5-27.2,28.2"/>
|
||||
<path class="st9" d="M208.3,130.8c0.1-12.7,5.3-28.2,16.3-28.2c0,0,0,0,0,0"/>
|
||||
<path class="st9" d="M219.2,130.8c0.1-12.7,1.8-28.2,5.4-28.2c0,0,0,0,0,0"/>
|
||||
<path class="st9" d="M230.1,130.8c0-12.7-1.8-28.2-5.4-28.2c0,0,0,0,0,0"/>
|
||||
<path class="st9" d="M240.9,130.8c0-12.7-5.3-28.2-16.3-28.2c0,0,0,0,0,0"/>
|
||||
<path class="st9" d="M251.8,130.8c0-12.7-8.9-28.2-27.2-28.2c0,0,0,0,0,0"/>
|
||||
</g>
|
||||
<path class="st15" d="M138-139.8C138-139.8,138-139.8,138-139.8c-2.2,0-4.4,0.2-6.3,0.7c0.6,1.5,3.2,2.7,6.3,2.7
|
||||
c3.1,0,5.7-1.1,6.3-2.7C142.4-139.6,140.3-139.8,138-139.8z"/>
|
||||
<polygon class="st15" points="144.7,225.3 144.9,278.2 98.9,304.8 98.7,251.9 "/>
|
||||
<polygon class="st16" points="103.4,254.6 140.1,233.3 140.2,275.5 103.5,296.7 "/>
|
||||
<polygon class="st16" points="98.9,304.8 17.8,257.6 17.7,204.8 98.7,251.9 "/>
|
||||
<polygon class="st17" points="22.4,255 22.3,212.9 94.1,254.6 94.2,296.7 "/>
|
||||
<polygon class="st14" points="98.7,251.9 17.7,204.8 63.7,178.2 144.7,225.3 "/>
|
||||
<polygon class="st14" points="140.1,233.3 137.3,234.9 137.5,273.7 103.5,293.3 103.5,296.7 140.2,275.5 "/>
|
||||
<polygon class="st15" points="22.3,212.9 25.3,214.6 25.1,253.7 94.2,293.3 94.2,296.7 22.4,255 "/>
|
||||
<path class="st15" d="M138-67.7C138-67.7,138-67.7,138-67.7c-2.2,0-4.4,0.2-6.3,0.7c0.6,1.5,3.2,2.7,6.3,2.7c3.1,0,5.7-1.1,6.3-2.7
|
||||
C142.4-67.5,140.3-67.7,138-67.7z"/>
|
||||
<g>
|
||||
<path class="st18" d="M87.5,85.8c0,0-2.9-12.5-26.8-29.8"/>
|
||||
<path class="st19" d="M87.5,85.8c0,0-0.4-14.3-11.5-25.4"/>
|
||||
<path class="st18" d="M87.5,85.8c0,0,2.9-12.5,26.8-29.8"/>
|
||||
<path class="st19" d="M87.5,85.8c0,0,0.4-14.3,11.5-25.4"/>
|
||||
<g>
|
||||
<path class="st5" d="M60.8,56.4c8.2,3.9,18.8,5.5,26.7,5.5V0C64.3,5.6,60.8,40.5,60.8,56.4z"/>
|
||||
<path class="st0" d="M48.3,40.7c0,7.2,5.3,12.3,12.5,15.7C60.8,40.5,64.3,5.6,87.5,0C61.1,0,48.4,22.4,48.3,40.7z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st0" d="M87.5,0v61.9c0,0,0,0,0,0c8.3,0,18.8-1.6,26.9-5.4C114.3,40.6,110.7,5.6,87.5,0z"/>
|
||||
<path class="st5" d="M126.7,40.7C126.7,22.4,113.9,0,87.5,0c0,0,0,0,0,0c23.2,5.6,26.8,40.6,26.9,56.4
|
||||
C121.5,53,126.7,47.9,126.7,40.7z"/>
|
||||
</g>
|
||||
<path class="st0" d="M87.5,0C87.5,0,87.5,0,87.5,0c-3.2,0-6.3,0.3-9.1,1c0.9,2.2,4.6,3.8,9.1,3.8c4.5,0,8.2-1.6,9.1-3.8
|
||||
C93.8,0.3,90.7,0,87.5,0z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,614 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 175 175" style="enable-background:new 0 0 175 175;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#ECF0F1;}
|
||||
.st1{enable-background:new ;}
|
||||
.st2{fill:#DEE1E3;}
|
||||
.st3{fill:#69A7DB;}
|
||||
.st4{fill:#317BAC;}
|
||||
.st5{fill:#265F84;}
|
||||
.st6{fill:#1A425D;}
|
||||
.st7{fill:#3D98D3;}
|
||||
.st8{fill:none;stroke:#3498DB;stroke-width:0.72;stroke-linejoin:round;}
|
||||
.st9{fill:none;stroke:#3498DB;stroke-width:1.08;stroke-linejoin:round;}
|
||||
.st10{fill:none;stroke:#3498DB;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st11{fill:#3498DB;}
|
||||
.st12{fill:none;stroke:#3498DB;stroke-width:0.76;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st13{clip-path:url(#SVGID_2_);}
|
||||
.st14{opacity:5.000000e-02;fill:#3498DB;enable-background:new ;}
|
||||
.st15{fill:#8DB9E3;}
|
||||
.st16{fill:#4B87AF;}
|
||||
.st17{fill:#D6E3F4;}
|
||||
.st18{fill:none;stroke:#3498DB;stroke-width:1.08;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st19{fill:#FFFFFF;}
|
||||
.st20{clip-path:url(#SVGID_4_);enable-background:new ;}
|
||||
.st21{fill:#858585;}
|
||||
.st22{clip-path:url(#SVGID_6_);enable-background:new ;}
|
||||
.st23{clip-path:url(#SVGID_8_);enable-background:new ;}
|
||||
.st24{fill:#C5C5C5;}
|
||||
.st25{fill:#DBDBDB;}
|
||||
.st26{fill:#888888;}
|
||||
.st27{clip-path:url(#SVGID_10_);enable-background:new ;}
|
||||
.st28{fill:#BDC3C7;}
|
||||
.st29{clip-path:url(#SVGID_12_);enable-background:new ;}
|
||||
.st30{clip-path:url(#SVGID_14_);}
|
||||
.st31{clip-path:url(#SVGID_16_);enable-background:new ;}
|
||||
.st32{fill:#7B7D7D;}
|
||||
.st33{fill:#7F8282;}
|
||||
.st34{fill:#848687;}
|
||||
.st35{fill:#898B8C;}
|
||||
.st36{fill:#8E9091;}
|
||||
.st37{fill:#929595;}
|
||||
.st38{clip-path:url(#SVGID_18_);enable-background:new ;}
|
||||
.st39{fill:#A5A8A9;}
|
||||
.st40{fill:#A0A3A4;}
|
||||
.st41{fill:#9C9E9F;}
|
||||
.st42{fill:#979A9A;}
|
||||
.st43{fill:#7F8181;}
|
||||
.st44{clip-path:url(#SVGID_20_);enable-background:new ;}
|
||||
.st45{fill:#C2C5C6;}
|
||||
.st46{fill:#C6CACA;}
|
||||
.st47{fill:#CBCECF;}
|
||||
.st48{fill:#D0D3D4;}
|
||||
.st49{fill:#D4D8D9;}
|
||||
.st50{fill:#D9DDDE;}
|
||||
.st51{fill:#DEE2E3;}
|
||||
.st52{fill:#E3E6E7;}
|
||||
.st53{fill:#E7EBEC;}
|
||||
.st54{fill:#EEF2F3;}
|
||||
.st55{fill:#EFF3F3;}
|
||||
.st56{fill:#F0F3F4;}
|
||||
.st57{fill:#F1F4F4;}
|
||||
.st58{fill:#F1F4F5;}
|
||||
.st59{fill:#389EA8;}
|
||||
.st60{fill:#C9E9EC;}
|
||||
.st61{fill:#78C9CF;}
|
||||
</style>
|
||||
<g>
|
||||
<polygon class="st0" points="109.6,131.2 102.6,127.1 148.9,100.4 155.9,104.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st0" points="23.3,181 16.2,176.9 62.6,150.1 69.6,154.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<path class="st2" d="M155.9,64.2c0,4.4-3.1,9.8-6.9,12c0,4.4-3.1,9.8-7,12c0,4.4-3.1,9.8-7,12L109.7,115l-0.1-24L155.9,64.2z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st3" points="109.7,115 102.6,110.9 102.6,86.8 109.6,90.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st0" points="109.6,90.9 102.6,86.8 148.9,60.1 155.9,64.2 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st0" points="105,175 23.9,127.9 93.9,87.6 175,134.7 "/>
|
||||
</g>
|
||||
<polygon class="st4" points="151,95.6 151.1,148.4 105.1,175 105,122.1 "/>
|
||||
<polygon class="st5" points="109.6,124.8 146.3,103.6 146.5,145.8 109.7,167 "/>
|
||||
<polygon class="st5" points="105.1,175 24,127.9 23.9,75 105,122.1 "/>
|
||||
<polygon class="st6" points="28.7,125.2 28.5,83.1 100.3,124.8 100.4,166.9 "/>
|
||||
<g>
|
||||
<polygon class="st7" points="105,122.1 23.9,75 69.9,48.5 151,95.6 "/>
|
||||
</g>
|
||||
<polygon class="st7" points="146.3,103.6 143.6,105.2 143.7,143.9 109.7,163.5 109.7,167 146.5,145.8 "/>
|
||||
<polygon class="st7" points="28.5,83.1 31.5,84.8 31.4,123.9 100.5,163.5 100.4,167 28.7,125.2 "/>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<polygon class="st4" points="41.4,90.6 41.2,129.6 37.7,130.5 37.8,88.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st5" points="37.8,88.5 37.7,130.5 33.2,127.9 33.3,85.9 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<polygon class="st4" points="63.5,103.4 63.3,142.4 59.8,143.3 59.9,101.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st5" points="59.9,101.3 59.8,143.3 55.3,140.7 55.4,98.7 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<polygon class="st4" points="52.4,97 52.3,136 48.7,136.9 48.9,94.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st5" points="48.9,94.9 48.7,136.9 44.2,134.3 44.4,92.3 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<polygon class="st4" points="74.5,109.9 74.3,148.9 70.8,149.8 71,107.8 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st5" points="71,107.8 70.8,149.8 66.3,147.2 66.5,105.2 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<polygon class="st4" points="85.5,116.2 85.4,155.2 81.9,156.1 82,114.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st5" points="82,114.1 81.9,156.1 77.4,153.6 77.5,111.5 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<polygon class="st4" points="96.6,122.7 96.4,161.7 92.9,162.6 93.1,120.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st5" points="93.1,120.6 92.9,162.6 88.4,160 88.6,118 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<polygon class="st4" points="28.7,125.2 28.5,83.1 31.5,84.8 31.4,123.9 "/>
|
||||
<title>environment</title>
|
||||
<g>
|
||||
<path class="st8" d="M339.6,58.4l21.3-12.3c-0.1,2.4-1.4,4.6-3.4,5.9l-1.5,0.9c-0.1,2.4-1.4,4.6-3.4,5.9l-1.5,1
|
||||
c-0.1,1.8-0.8,3.5-2,4.8"/>
|
||||
<polyline class="st8" points="335.8,56.1 357,43.8 360.9,46.1 "/>
|
||||
<polygon class="st9" points="355.1,67.4 355.2,98.1 328.5,113.5 328.4,82.8 "/>
|
||||
<polyline class="st9" points="282.8,86.9 272.6,80.9 272.5,50.2 328.4,82.8 328.5,113.5 299.3,96.5 "/>
|
||||
<polygon class="st9" points="328.4,82.8 272.5,50.2 299.2,34.7 355.1,67.4 "/>
|
||||
<line class="st10" x1="342.6" y1="75.1" x2="342.6" y2="105.1"/>
|
||||
<path class="st11" d="M351.3,73.9l0.1,22l-19.2,11l-0.1-22L351.3,73.9 M351.3,73.2c-0.1,0-0.3,0-0.4,0.1l-19.1,11
|
||||
c-0.2,0.1-0.4,0.4-0.4,0.7l0.1,22c0,0.4,0.3,0.8,0.8,0.8c0.1,0,0.3,0,0.4-0.1l19.2-11.1c0.2-0.1,0.3-0.4,0.3-0.7v-22
|
||||
C352.1,73.5,351.8,73.2,351.3,73.2L351.3,73.2L351.3,73.2L351.3,73.2z"/>
|
||||
<polyline class="st12" points="287.2,84.4 277,78.4 276.9,57.9 324,85.3 324,105.9 303.6,94 "/>
|
||||
<polyline class="st8" points="350.2,74.3 350.3,95.1 332.3,105.5 "/>
|
||||
<polygon class="st8" points="319.9,83.1 319.8,101.6 317.7,102.1 317.8,81.7 "/>
|
||||
<polyline class="st8" points="317.7,102.1 315.4,100.8 315.4,80.4 "/>
|
||||
<line class="st8" x1="324" y1="104.1" x2="319.8" y2="101.6"/>
|
||||
<polygon class="st8" points="311.3,78.4 311.3,96.5 309.2,97.1 309.3,77 "/>
|
||||
<polyline class="st8" points="309.2,97.1 306.9,95.7 306.9,75.4 "/>
|
||||
<line class="st8" x1="315.4" y1="99.1" x2="311" y2="96.5"/>
|
||||
<line class="st8" x1="306.9" y1="94.4" x2="304.5" y2="93"/>
|
||||
<polygon class="st8" points="302.7,73.1 302.6,75.8 300.6,77 300.6,71.7 "/>
|
||||
<line class="st8" x1="298.2" y1="78.3" x2="298.3" y2="70.1"/>
|
||||
<polygon class="st8" points="294.2,68.2 294.1,80.7 292,81.7 292.1,66.8 "/>
|
||||
<line class="st8" x1="289.7" y1="83.4" x2="289.8" y2="65.2"/>
|
||||
<polygon class="st8" points="285.7,63.1 285.6,81.8 283.6,82.3 283.6,61.8 "/>
|
||||
<polyline class="st8" points="283.3,82.1 281,80.8 281.1,60.3 "/>
|
||||
<line class="st8" x1="288.6" y1="83.7" x2="285.6" y2="81.9"/>
|
||||
<line class="st8" x1="281" y1="79.1" x2="276.8" y2="76.9"/>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M283.1,95.3l-4.4-2.5c-0.8-0.6-1.2-1.5-1.1-2.5l4.4,2.5C281.9,93.7,282.3,94.7,283.1,95.3z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st13">
|
||||
<g>
|
||||
<path class="st11" d="M283.1,95.3l-4.4-2.5c-0.8-0.6-1.2-1.5-1.1-2.5l4.4,2.5C281.9,93.7,282.3,94.7,283.1,95.3"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path class="st9" d="M283.1,95.3l-4.4-2.5c-0.8-0.6-1.2-1.5-1.1-2.5l4.4,2.5C281.9,93.7,282.3,94.7,283.1,95.3z"/>
|
||||
</g>
|
||||
<path class="st11" d="M287.5,94l-1.7,1c-0.2,0.1-0.3,0.2-0.5,0.2l3,1.8l0,0c0.3,0.1,0.6,0.1,0.7-0.2l0,0v-0.1
|
||||
C288.2,96.5,287.5,95.5,287.5,94z"/>
|
||||
<polygon class="st8" points="282,92.7 277.7,90.2 302.6,75.8 306.9,78.4 "/>
|
||||
<path class="st11" d="M293,95.2l-1.7,1c-0.2,0.1-0.3,0.2-0.5,0.2l3,1.8l0,0c0.3,0.1,0.6,0.1,0.7-0.2l0,0v-0.1
|
||||
C293.7,97.7,293.1,96.8,293,95.2z"/>
|
||||
<path class="st8" d="M307,91.6l-10.1,5.9c-2.1,1.2-3.8,0.3-3.8-2.2l-1.7,1c-2.1,1.2-3.8,0.3-3.8-2.2l-1.7,1
|
||||
c-2.1,1.2-3.8,0.3-3.8-2.2L307,78.5"/>
|
||||
</g>
|
||||
<path class="st14" d="M288.3,96.2c0.1,0.1,0.2,0.2,0.3,0.2C288.5,96.4,288.4,96.3,288.3,96.2z"/>
|
||||
<path class="st14" d="M287.9,95.7c0.1,0.1,0.1,0.2,0.2,0.4C288,95.9,288,95.8,287.9,95.7z"/>
|
||||
<path class="st14" d="M288.8,96.5c0.1,0.1,0.3,0.1,0.4,0.1C289,96.6,288.9,96.6,288.8,96.5z"/>
|
||||
<path class="st14" d="M293.1,96.2c0,0.2,0.1,0.4,0.2,0.6C293.2,96.6,293.1,96.4,293.1,96.2z"/>
|
||||
<path class="st14" d="M293.4,96.9c0.1,0.1,0.1,0.3,0.2,0.4C293.5,97.2,293.5,97,293.4,96.9z"/>
|
||||
<path class="st14" d="M287.6,94.9c0,0.2,0.1,0.4,0.2,0.6C287.7,95.3,287.7,95.1,287.6,94.9z"/>
|
||||
<path class="st14" d="M293,95.2c0,0.3,0,0.5,0.1,0.8C293.1,95.8,293,95.5,293,95.2z"/>
|
||||
<path class="st14" d="M342.2,104.8l-13,8.7l-30.6-17l-1.7,1c-0.8,0.5-1.8,0.6-2.6,0.3c0.1,0.1,0.3,0.1,0.4,0.1V98
|
||||
c-0.1,0.3-0.5,0.3-0.7,0.2l0,0l0,0l-3-1.8c-0.5,0.3-1.1,0.3-1.7,0.2v0.1c-0.1,0.3-0.5,0.3-0.7,0.2l0,0l0,0l-3-1.8
|
||||
c0.2-0.1,0.3-0.1,0.5-0.2c-0.9,0.7-2.1,0.7-2.9,0.1c0.1,0.1,0.2,0.2,0.3,0.2l-4.4-2.5c-0.3-0.2-0.5-0.4-0.7-0.8l-14.5,9.3l65,39.2
|
||||
l40-23L342.2,104.8z"/>
|
||||
<path class="st14" d="M293.8,97.4c0.1,0.1,0.2,0.2,0.3,0.2C294,97.6,293.9,97.5,293.8,97.4z"/>
|
||||
<path class="st14" d="M287.5,94c0,0.3,0,0.5,0.1,0.8C287.6,94.5,287.5,94.2,287.5,94z"/>
|
||||
<path class="st14" d="M282.3,94.3c-0.1-0.2-0.1-0.3-0.1-0.5C282.2,94,282.3,94.2,282.3,94.3z"/>
|
||||
<path class="st14" d="M282.1,93.6c-0.1-0.3-0.1-0.6-0.1-0.9C282,93,282,93.3,282.1,93.6z"/>
|
||||
<path class="st14" d="M282.7,94.9c-0.1-0.1-0.1-0.2-0.2-0.3C282.5,94.7,282.6,94.8,282.7,94.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st15" points="-41.7,15.9 -41.6,68.8 -87.6,95.4 -87.7,42.5 "/>
|
||||
<polygon class="st3" points="-83.1,45.2 -46.3,24 -46.2,66.1 -83,87.3 "/>
|
||||
<polygon class="st3" points="-87.6,95.4 -168.6,48.3 -168.8,-4.6 -87.7,42.5 "/>
|
||||
<polygon class="st16" points="-164,45.6 -164.1,3.5 -92.4,45.2 -92.2,87.3 "/>
|
||||
<polygon class="st17" points="-87.7,42.5 -168.8,-4.6 -122.8,-31.2 -41.7,15.9 "/>
|
||||
<polygon class="st17" points="-46.3,24 -49.1,25.6 -49,64.3 -83,83.9 -83,87.3 -46.2,66.1 "/>
|
||||
<polygon class="st15" points="-164.1,3.5 -161.2,5.2 -161.3,44.3 -92.2,83.9 -92.2,87.3 -164,45.6 "/>
|
||||
<g>
|
||||
<path class="st18" d="M-336.1,6.2c0,0-2.9-12.5-26.8-29.8"/>
|
||||
<path class="st18" d="M-336.1,6.2c0,0-0.4-14.3-11.5-25.4"/>
|
||||
<path class="st18" d="M-336.1,6.2c0,0,2.9-12.5,26.8-29.8"/>
|
||||
<path class="st18" d="M-336.1,6.2c0,0,0.4-14.3,11.5-25.4"/>
|
||||
<g>
|
||||
<path class="st15" d="M-362.8-23.3c8.2,3.9,18.8,5.5,26.7,5.5v-61.9C-359.3-74-362.8-39.2-362.8-23.3z"/>
|
||||
<path class="st3" d="M-375.3-39c0,7.2,5.3,12.3,12.5,15.7c0.1-15.9,3.5-50.7,26.7-56.4C-362.5-79.6-375.2-57.3-375.3-39z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st3" d="M-336.1-79.6v61.9c0,0,0,0,0,0c8.3,0,18.8-1.6,26.9-5.4C-309.3-39.1-312.9-74-336.1-79.6z"/>
|
||||
<path class="st15" d="M-296.9-39c0-18.3-12.8-40.7-39.2-40.7c0,0,0,0,0,0c23.2,5.6,26.8,40.6,26.9,56.4
|
||||
C-302.1-26.6-296.9-31.7-296.9-39z"/>
|
||||
</g>
|
||||
<path class="st15" d="M-336.1-79.6C-336.1-79.6-336.1-79.6-336.1-79.6c-3.2,0-6.3,0.3-9.1,1c0.9,2.2,4.6,3.8,9.1,3.8
|
||||
c4.5,0,8.2-1.6,9.1-3.8C-329.8-79.3-332.9-79.6-336.1-79.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path class="st19" d="M180.3,9.8c0,5.4,4.4,9.8,9.8,9.8h55.5V9.8H180.3z"/>
|
||||
<path class="st19" d="M245.6,19.7v9.8H200c-5.4,0-9.8-4.4-9.8-9.8H245.6z"/>
|
||||
<path class="st19" d="M245.6,29.5v9.8h-35.8c-5.4,0-9.8-4.4-9.8-9.8H245.6z"/>
|
||||
<g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_3_" class="st1" d="M311.8,155.6l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C309.7,153.3,310.5,154.9,311.8,155.6z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st20">
|
||||
<path class="st21" d="M311.8,155.6l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C309.7,153.3,310.5,154.9,311.8,155.6"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_5_" class="st1" d="M304.8,151.6l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C302.7,149.3,303.5,150.9,304.8,151.6z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_6_">
|
||||
<use xlink:href="#SVGID_5_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st22">
|
||||
<path class="st21" d="M304.8,151.6l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C302.7,149.3,303.5,150.9,304.8,151.6"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_7_" class="st1" d="M297.8,147.6l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C295.7,145.3,296.5,146.9,297.8,147.6z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_8_">
|
||||
<use xlink:href="#SVGID_7_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st23">
|
||||
<path class="st21" d="M297.8,147.6l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C295.7,145.3,296.5,146.9,297.8,147.6"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st24" d="M342,116.4l0,8l0,8l0,8l-25.4,14.7c-3.8,2.2-7,0.4-7-4c-3.9,2.2-7,0.4-7-4c-3.8,2.2-7,0.4-7-4L342,116.4z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st25" points="295.7,143.1 288.7,139 335,112.3 342,116.4 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<polygon class="st26" points="295.8,221.7 288.7,217.6 288.7,209.6 295.8,213.7 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st26" points="295.8,213.7 288.7,209.6 288.7,201.6 295.7,205.7 "/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st24" d="M342,170.9c0,4.4-3.1,9.8-6.9,12c0,4.4-3.1,9.8-7,12c0,4.4-3.1,9.8-7,12l-25.4,14.7l0-8l0-8l0-8L342,170.9
|
||||
z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st26" points="295.7,205.7 288.7,201.6 288.7,193.5 295.7,197.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st25" points="295.7,197.6 288.7,193.5 335,166.8 342,170.9 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_9_" class="st1" d="M39.3,153.1l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C37.3,150.8,38.1,152.4,39.3,153.1z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_10_">
|
||||
<use xlink:href="#SVGID_9_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st27">
|
||||
<path class="st28" d="M39.3,153.1l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C37.3,150.8,38.1,152.4,39.3,153.1"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_11_" class="st1" d="M32.3,149.1l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C30.3,146.9,31.1,148.4,32.3,149.1z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_12_">
|
||||
<use xlink:href="#SVGID_11_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st29">
|
||||
<path class="st28" d="M32.3,149.1l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C30.3,146.9,31.1,148.4,32.3,149.1"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_13_" class="st1" d="M25.3,145.1l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C23.3,142.9,24.1,144.4,25.3,145.1z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_14_">
|
||||
<use xlink:href="#SVGID_13_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st30">
|
||||
<path class="st28" d="M25.3,145.1l-7-4.1c-1.3-0.7-2-2.3-2-4.5l7,4.1C23.3,142.9,24.1,144.4,25.3,145.1"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st2" d="M69.6,113.9l0.1,24l-25.4,14.7c-3.8,2.2-7,0.4-7-4c-3.9,2.2-7,0.4-7-4c-3.8,2.2-7,0.4-7-4L69.6,113.9z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st0" points="23.3,140.7 16.2,136.6 62.6,109.8 69.6,113.9 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<path class="st6" d="M174,7.8c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1-0.1-0.2c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0-0.1,0-0.1-0.1-0.2c0-0.1,0-0.1-0.1-0.2c0-0.1,0-0.1-0.1-0.2c0-0.1,0-0.1-0.1-0.2c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1-0.2-0.2-0.3-0.3-0.4c-0.1-0.1-0.2-0.2-0.2-0.3c0,0,0,0,0,0c0,0,0,0,0,0c-0.1-0.1-0.1-0.1-0.2-0.2c0-0.1-0.1-0.1-0.1-0.2
|
||||
c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.2
|
||||
c-0.1-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1-0.1-0.2-0.1c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1
|
||||
c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0-0.1,0-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1
|
||||
c-0.1,0-0.1,0-0.2-0.1c0,0-0.1,0-0.1-0.1c-0.1,0-0.1,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0-0.2,0.1-0.3,0.1l-70.5,41c0.2-0.1,0.4-0.2,0.5-0.2
|
||||
c0,0,0,0,0,0c0.2,0,0.4-0.1,0.6,0c0,0,0,0,0,0c0.2,0,0.4,0.1,0.7,0.1c0,0,0,0,0,0c0.2,0.1,0.5,0.2,0.7,0.3
|
||||
c0.3,0.1,0.5,0.3,0.7,0.5c0,0,0,0,0,0c0.2,0.2,0.5,0.4,0.7,0.6c0,0,0,0,0,0c0.2,0.2,0.4,0.5,0.6,0.8c0,0,0,0,0,0
|
||||
c0.2,0.3,0.4,0.5,0.5,0.8c0,0,0,0,0,0c0.2,0.3,0.3,0.6,0.4,0.9c0,0,0,0,0,0c0.1,0.3,0.2,0.6,0.3,0.9c0,0,0,0,0,0
|
||||
c0.1,0.3,0.2,0.6,0.2,0.9c0,0,0,0,0,0c0,0.3,0.1,0.6,0.1,0.9c0,0.3,0,0.6-0.1,0.8c0,0,0,0,0,0c0,0.2-0.1,0.5-0.2,0.7c0,0,0,0,0,0
|
||||
c-0.1,0.2-0.2,0.3-0.3,0.4c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.3,0.2-0.4,0.3l70.5-41c0.2-0.1,0.3-0.2,0.4-0.3c0,0,0.1-0.1,0.1-0.1
|
||||
c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.2,0.1-0.3c0,0,0,0,0,0c0,0,0,0,0,0c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.1,0.1-0.2
|
||||
c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2
|
||||
c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0C174,7.9,174,7.8,174,7.8z"/>
|
||||
<g>
|
||||
<path class="st3" d="M99.8,42.5c2.1,1.2,3.7,4.1,3.7,6.4c0,2.4-1.7,3.3-3.7,2.1c-2.1-1.2-3.7-4.1-3.7-6.4
|
||||
C96.1,42.2,97.7,41.3,99.8,42.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path class="st4" d="M102.4,95.1C102.4,95.1,102.4,95.1,102.4,95.1l23.8-13.8l-10.5-6.1L97.2,86c0,0,0,0,0,0
|
||||
c-0.7,0.4-1.1,1.2-1.1,2.4c0,2.4,1.7,5.2,3.7,6.4C100.8,95.4,101.7,95.4,102.4,95.1C102.4,95.1,102.4,95.1,102.4,95.1L102.4,95.1z"
|
||||
/>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<path class="st4" d="M115.3,41.7c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1-0.1-0.2c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0-0.1,0-0.1-0.1-0.2c0-0.1,0-0.1-0.1-0.2c0-0.1,0-0.1-0.1-0.2c0-0.1,0-0.1-0.1-0.2c0,0,0-0.1-0.1-0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1-0.2-0.2-0.3-0.3-0.4c-0.1-0.1-0.2-0.2-0.2-0.3c0,0,0,0,0,0c0,0,0,0,0,0c-0.1-0.1-0.1-0.1-0.2-0.2c0-0.1-0.1-0.1-0.1-0.2
|
||||
c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.2
|
||||
c-0.1-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1-0.1-0.2-0.1c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1
|
||||
c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0-0.1,0-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1
|
||||
c-0.1,0-0.1,0-0.2-0.1c0,0-0.1,0-0.1-0.1c-0.1,0-0.1,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0-0.2,0.1-0.3,0.1l-11.8,7c0.2-0.1,0.4-0.2,0.5-0.2
|
||||
c0,0,0,0,0,0c0.2,0,0.4-0.1,0.6,0c0,0,0,0,0,0c0.2,0,0.4,0.1,0.7,0.1c0,0,0,0,0,0c0.2,0.1,0.5,0.2,0.7,0.3
|
||||
c0.3,0.1,0.5,0.3,0.7,0.5c0,0,0,0,0,0c0.2,0.2,0.5,0.4,0.7,0.6c0,0,0,0,0,0c0.2,0.2,0.4,0.5,0.6,0.8c0,0,0,0,0,0
|
||||
c0.2,0.3,0.4,0.5,0.5,0.8c0,0,0,0,0,0c0.2,0.3,0.3,0.6,0.4,0.9c0,0,0,0,0,0c0.1,0.3,0.2,0.6,0.3,0.9c0,0,0,0,0,0
|
||||
c0.1,0.3,0.2,0.6,0.2,0.9c0,0,0,0,0,0c0,0.3,0.1,0.6,0.1,0.9c0,0.3,0,0.6-0.1,0.8c0,0,0,0,0,0c0,0.2-0.1,0.5-0.2,0.7c0,0,0,0,0,0
|
||||
c-0.1,0.2-0.2,0.3-0.3,0.4c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.3,0.2-0.4,0.3l11.8-7c0.2-0.1,0.3-0.2,0.4-0.3c0,0,0.1-0.1,0.1-0.1
|
||||
c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.2,0.1-0.3c0,0,0,0,0,0c0,0,0,0,0,0c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0-0.1,0.1-0.2
|
||||
c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2
|
||||
c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0C115.3,41.8,115.3,41.8,115.3,41.7z"/>
|
||||
<g>
|
||||
<path class="st5" d="M99.8,42.5c2.1,1.2,3.7,4.1,3.7,6.4c0,2.4-1.7,3.3-3.7,2.1c-2.1-1.2-3.7-4.1-3.7-6.4
|
||||
C96.1,42.2,97.7,41.3,99.8,42.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<ellipse class="st0" cx="210.1" cy="152.1" rx="17.9" ry="18.3"/>
|
||||
<g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_15_" class="st1" d="M204.7,94.1l3.5-2c-2.2,1.3-3.9,3.7-4.5,7l-3.5,2C200.8,97.8,202.4,95.4,204.7,94.1z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_16_">
|
||||
<use xlink:href="#SVGID_15_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st31">
|
||||
<path class="st32" d="M204.7,94.1l3.5-2c-1.2,0.7-2.1,1.6-2.9,2.9l-3.5,2C202.5,95.7,203.5,94.8,204.7,94.1"/>
|
||||
<path class="st33" d="M201.7,97l3.5-2c-0.2,0.4-0.4,0.7-0.6,1.1l-3.5,2C201.3,97.7,201.5,97.3,201.7,97"/>
|
||||
<path class="st34" d="M201.1,98.1l3.5-2c-0.1,0.3-0.3,0.6-0.4,1l-3.5,2C200.8,98.7,201,98.4,201.1,98.1"/>
|
||||
<path class="st35" d="M200.7,99.1l3.5-2c-0.1,0.3-0.2,0.6-0.3,0.9l-3.5,2C200.5,99.7,200.6,99.4,200.7,99.1"/>
|
||||
<path class="st36" d="M200.4,100l3.5-2c-0.1,0.3-0.2,0.6-0.2,0.8l-3.5,2C200.3,100.5,200.3,100.2,200.4,100"/>
|
||||
<path class="st37" d="M200.2,100.8l3.5-2c0,0.1,0,0.2-0.1,0.3l-3.5,2C200.1,101,200.2,100.9,200.2,100.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_17_" class="st1" d="M199.2,76.3l-3.5,2c-2.2,1.3-5,1.5-8.2,0.5l3.5-2C194.1,77.9,197,77.6,199.2,76.3z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_18_">
|
||||
<use xlink:href="#SVGID_17_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st38">
|
||||
<path class="st39" d="M187.4,78.9l3.5-2c0.1,0,0.1,0,0.2,0l-3.5,2C187.5,78.9,187.5,78.9,187.4,78.9"/>
|
||||
<path class="st40" d="M187.6,79l3.5-2c0.2,0.1,0.5,0.1,0.7,0.2l-3.5,2C188.1,79.1,187.8,79,187.6,79"/>
|
||||
<path class="st41" d="M188.3,79.2l3.5-2c0.2,0.1,0.5,0.1,0.7,0.2l-3.5,2C188.8,79.3,188.5,79.2,188.3,79.2"/>
|
||||
<path class="st42" d="M189,79.3l3.5-2c0.2,0,0.5,0.1,0.7,0.1l-3.5,2C189.5,79.4,189.2,79.4,189,79.3"/>
|
||||
<path class="st37" d="M189.7,79.4l3.5-2c0.3,0,0.5,0.1,0.8,0.1l-3.5,2C190.2,79.5,190,79.5,189.7,79.4"/>
|
||||
<path class="st36" d="M190.5,79.5l3.5-2c0.3,0,0.5,0,0.8,0l-3.5,2C191,79.5,190.7,79.5,190.5,79.5"/>
|
||||
<path class="st35" d="M191.3,79.5l3.5-2c0.3,0,0.6,0,0.9,0l-3.5,2C191.8,79.5,191.6,79.5,191.3,79.5"/>
|
||||
<path class="st34" d="M192.1,79.5l3.5-2c0.3,0,0.7-0.1,1-0.1l-3.5,2C192.8,79.4,192.5,79.5,192.1,79.5"/>
|
||||
<path class="st33" d="M193.1,79.4l3.5-2c0.4-0.1,0.8-0.2,1.2-0.3l-3.5,2C193.9,79.2,193.5,79.3,193.1,79.4"/>
|
||||
<path class="st32" d="M194.3,79l3.5-2c0.5-0.2,1-0.4,1.4-0.6l-3.5,2C195.2,78.7,194.7,78.9,194.3,79"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st43" d="M200.2,71.4c1.3,8.2,6.3,16.9,12.7,22.2c-6.4-2-11.4,0.9-12.8,7.5c-1.3-8.2-6.3-16.9-12.7-22.2
|
||||
C193.8,80.9,198.8,78,200.2,71.4z"/>
|
||||
</g>
|
||||
<g class="st1">
|
||||
<defs>
|
||||
<path id="SVGID_19_" class="st1" d="M200.2,71.4l3.5-2c1.3,8.2,6.3,16.9,12.7,22.2l-3.5,2C206.5,88.2,201.5,79.5,200.2,71.4z"
|
||||
/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_20_">
|
||||
<use xlink:href="#SVGID_19_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st44">
|
||||
<path class="st45" d="M200.2,71.4l3.5-2c0,0.2,0.1,0.5,0.1,0.7l-3.5,2C200.3,71.9,200.2,71.6,200.2,71.4"/>
|
||||
<path class="st46" d="M200.3,72.1l3.5-2c0.1,0.3,0.1,0.6,0.2,0.9l-3.5,2C200.4,72.7,200.4,72.4,200.3,72.1"/>
|
||||
<path class="st47" d="M200.5,73l3.5-2c0.1,0.3,0.1,0.6,0.2,0.9l-3.5,2C200.6,73.6,200.6,73.3,200.5,73"/>
|
||||
<path class="st48" d="M200.7,73.9l3.5-2c0.1,0.3,0.2,0.6,0.2,0.9l-3.5,2C200.9,74.5,200.8,74.2,200.7,73.9"/>
|
||||
<path class="st49" d="M200.9,74.8l3.5-2c0.1,0.3,0.2,0.6,0.3,0.9l-3.5,2C201.1,75.3,201,75.1,200.9,74.8"/>
|
||||
<path class="st50" d="M201.2,75.6l3.5-2c0.1,0.3,0.2,0.6,0.3,0.9l-3.5,2C201.4,76.2,201.3,75.9,201.2,75.6"/>
|
||||
<path class="st51" d="M201.5,76.5l3.5-2c0.1,0.3,0.2,0.6,0.3,0.9l-3.5,2C201.7,77.1,201.6,76.8,201.5,76.5"/>
|
||||
<path class="st52" d="M201.8,77.4l3.5-2c0.1,0.3,0.2,0.6,0.3,0.8l-3.5,2C202,77.9,201.9,77.7,201.8,77.4"/>
|
||||
<path class="st53" d="M202.1,78.2l3.5-2c0.1,0.3,0.2,0.5,0.3,0.8l-3.5,2C202.3,78.7,202.2,78.5,202.1,78.2"/>
|
||||
<path class="st0" d="M202.4,79l3.5-2c0.1,0.3,0.2,0.5,0.3,0.8l-3.5,2C202.6,79.5,202.5,79.3,202.4,79"/>
|
||||
<path class="st54" d="M202.8,79.8l3.5-2c0.1,0.3,0.2,0.5,0.4,0.8l-3.5,2C203,80.4,202.9,80.1,202.8,79.8"/>
|
||||
<path class="st55" d="M203.1,80.6l3.5-2c0.1,0.3,0.3,0.6,0.4,0.9l-3.5,2C203.4,81.2,203.3,80.9,203.1,80.6"/>
|
||||
<path class="st56" d="M203.6,81.5l3.5-2c0.2,0.3,0.3,0.6,0.5,1l-3.5,2C203.9,82.1,203.7,81.8,203.6,81.5"/>
|
||||
<path class="st57" d="M204.1,82.5l3.5-2c0.3,0.5,0.5,1,0.8,1.5l-3.5,2C204.6,83.5,204.3,83,204.1,82.5"/>
|
||||
<path class="st58" d="M204.9,84l3.5-2c0.4,0.7,0.9,1.5,1.4,2.2l-3.5,2C205.8,85.4,205.3,84.7,204.9,84"/>
|
||||
<path class="st57" d="M206.3,86.1l3.5-2c0.3,0.5,0.7,0.9,1,1.4l-3.5,2C206.9,87.1,206.6,86.6,206.3,86.1"/>
|
||||
<path class="st56" d="M207.3,87.6l3.5-2c0.2,0.3,0.5,0.6,0.7,0.9l-3.5,2C207.7,88.2,207.5,87.9,207.3,87.6"/>
|
||||
<path class="st55" d="M208,88.5l3.5-2c0.2,0.3,0.4,0.5,0.7,0.8l-3.5,2C208.4,89,208.2,88.8,208,88.5"/>
|
||||
<path class="st54" d="M208.6,89.3l3.5-2c0.2,0.3,0.4,0.5,0.6,0.8l-3.5,2C209.1,89.8,208.9,89.6,208.6,89.3"/>
|
||||
<path class="st0" d="M209.3,90.1l3.5-2c0.2,0.2,0.4,0.5,0.7,0.7l-3.5,2C209.7,90.6,209.5,90.3,209.3,90.1"/>
|
||||
<path class="st53" d="M209.9,90.8l3.5-2c0.2,0.2,0.5,0.5,0.7,0.7l-3.5,2C210.4,91.3,210.2,91,209.9,90.8"/>
|
||||
<path class="st52" d="M210.6,91.5l3.5-2c0.2,0.2,0.5,0.5,0.7,0.7l-3.5,2C211.1,92,210.9,91.8,210.6,91.5"/>
|
||||
<path class="st51" d="M211.3,92.2l3.5-2c0.2,0.2,0.5,0.5,0.7,0.7l-3.5,2C211.8,92.7,211.6,92.5,211.3,92.2"/>
|
||||
<path class="st50" d="M212.1,92.9l3.5-2c0.2,0.2,0.5,0.4,0.8,0.7l-3.5,2C212.6,93.4,212.3,93.1,212.1,92.9"/>
|
||||
<path class="st49" d="M212.8,93.6l3.5-2c0,0,0,0,0,0L212.8,93.6C212.9,93.6,212.9,93.6,212.8,93.6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<path class="st59" d="M84.8,36.4c0.1-0.3,0.2-0.6,0.3-0.9c0.1-0.2,0.1-0.3,0.2-0.4c0.1-0.2,0.2-0.4,0.2-0.5
|
||||
c0.1-0.3,0.3-0.5,0.4-0.8c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.2,0.2-0.3,0.4-0.5c0.1-0.1,0.2-0.2,0.3-0.4c0.1-0.2,0.3-0.3,0.4-0.5
|
||||
c0.1-0.1,0.2-0.2,0.3-0.3c0.2-0.2,0.3-0.3,0.5-0.4c0.1-0.1,0.2-0.1,0.3-0.2c0.3-0.2,0.5-0.4,0.8-0.5l0,0c0,0,0,0,0,0l-3.5,2
|
||||
c-0.3,0.2-0.6,0.3-0.8,0.5c-0.1,0.1-0.2,0.1-0.3,0.2c-0.2,0.1-0.3,0.3-0.5,0.4c-0.1,0.1-0.2,0.2-0.3,0.3
|
||||
c-0.1,0.1-0.3,0.3-0.4,0.5c-0.1,0.1-0.2,0.2-0.3,0.4c-0.1,0.2-0.2,0.3-0.4,0.5c0,0,0,0,0,0c0,0.1-0.1,0.2-0.1,0.2
|
||||
c-0.1,0.2-0.3,0.5-0.4,0.8c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.1,0.3-0.2,0.4c-0.1,0.1-0.1,0.3-0.2,0.4c0,0,0,0.1-0.1,0.1
|
||||
c-0.1,0.3-0.2,0.5-0.3,0.8c0,0,0,0.1,0,0.1c0,0,0,0,0,0c-0.1,0.3-0.2,0.6-0.2,0.8c0,0.1,0,0.2-0.1,0.3l3.5-2
|
||||
C84.6,37.2,84.7,36.8,84.8,36.4C84.8,36.4,84.8,36.4,84.8,36.4z"/>
|
||||
<path class="st60" d="M76.5,16.9l3.5-2c-0.3,0.1-0.5,0.3-0.8,0.4c-0.1,0-0.2,0.1-0.3,0.1c-0.2,0.1-0.3,0.1-0.5,0.2
|
||||
c-0.2,0.1-0.5,0.1-0.8,0.2c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.3,0-0.4,0.1c-0.2,0-0.4,0.1-0.6,0.1c-0.1,0-0.2,0-0.3,0
|
||||
c-0.2,0-0.4,0-0.7,0c-0.1,0-0.2,0-0.3,0c-0.3,0-0.6,0-0.9-0.1c0,0,0,0-0.1,0c-0.3,0-0.7-0.1-1-0.2c-0.1,0-0.1,0-0.2,0
|
||||
c-0.4-0.1-0.7-0.2-1.1-0.3l-3.5,2c0.1,0,0.1,0,0.2,0c0.2,0.1,0.5,0.1,0.7,0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0
|
||||
c0.1,0,0.2,0,0.3,0.1c0.2,0,0.5,0.1,0.7,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0c0.2,0,0.4,0.1,0.7,0.1c0.1,0,0.2,0,0.2,0
|
||||
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0c0.1,0,0.3,0,0.4,0c0.1,0,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0.1,0,0.3,0,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4-0.1c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.2-0.1c0.3-0.1,0.5-0.1,0.8-0.2c0.1,0,0.1,0,0.2,0c0.1,0,0.2-0.1,0.4-0.1
|
||||
c0.1,0,0.2-0.1,0.3-0.1C76,17.2,76.3,17.1,76.5,16.9z"/>
|
||||
<g>
|
||||
<path class="st61" d="M81.1,9.9c1.3,8.2,6.3,16.9,12.7,22.2c-6.4-2-11.4,0.9-12.8,7.5c-1.3-8.2-6.3-16.9-12.7-22.2
|
||||
C74.7,19.5,79.7,16.5,81.1,9.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path class="st60" d="M96.2,29.2c-0.1-0.1-0.2-0.1-0.2-0.2c-0.3-0.3-0.7-0.6-1-1c0,0-0.1-0.1-0.1-0.1c-0.3-0.3-0.6-0.6-0.9-1
|
||||
c-0.1-0.1-0.1-0.1-0.2-0.2c-0.3-0.4-0.6-0.7-0.9-1.1c-0.1-0.1-0.1-0.2-0.2-0.2c-0.3-0.3-0.5-0.6-0.8-1c-0.1-0.1-0.1-0.2-0.2-0.2
|
||||
c-0.1-0.2-0.3-0.4-0.4-0.6c-0.2-0.3-0.4-0.5-0.6-0.8c-0.1-0.1-0.1-0.2-0.2-0.3c-0.4-0.6-0.7-1.1-1.1-1.7c-2.4-4.1-4.2-8.5-4.9-12.9
|
||||
l-3.5,2c0.7,4.2,2.4,8.6,4.7,12.6l0,0c0.1,0.1,0.1,0.2,0.2,0.3c0.3,0.6,0.7,1.2,1.1,1.7c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0.1,0.1
|
||||
c0.2,0.3,0.4,0.5,0.6,0.8c0.1,0.2,0.2,0.3,0.4,0.5c0,0,0,0.1,0.1,0.1c0.1,0.1,0.1,0.2,0.2,0.2c0.2,0.2,0.3,0.4,0.5,0.6
|
||||
c0.1,0.1,0.2,0.2,0.3,0.4c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.1,0.1,0.2,0.2c0.2,0.3,0.4,0.5,0.6,0.8c0,0,0.1,0.1,0.1,0.1
|
||||
c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.3,0.3,0.4,0.4c0.2,0.2,0.4,0.4,0.5,0.6c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0
|
||||
c0.2,0.2,0.5,0.5,0.7,0.7c0.1,0.1,0.2,0.1,0.2,0.2c0.1,0.1,0.2,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.3,0.2c0.2,0.2,0.5,0.4,0.8,0.7
|
||||
c0,0,0,0,0,0l3.5-2C96.9,29.8,96.6,29.5,96.2,29.2z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<path class="st59" d="M107.5,23.3c0-0.1,0.1-0.3,0.1-0.4c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2c0.1-0.1,0.1-0.2,0.2-0.3
|
||||
c0,0,0-0.1,0.1-0.1c0-0.1,0.1-0.1,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.1-0.1
|
||||
c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0.1-0.1,0.1-0.1c0.1-0.1,0.2-0.2,0.4-0.2l0,0c0,0,0,0,0,0l-1.6,0.9c-0.1,0.1-0.2,0.2-0.4,0.2
|
||||
c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.2,0.1-0.2,0.2c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.1,0.1-0.2,0.2c0,0.1-0.1,0.1-0.1,0.2
|
||||
c-0.1,0.1-0.1,0.1-0.2,0.2c0,0,0,0,0,0c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0,0,0.1c0,0.1-0.1,0.1-0.1,0.2
|
||||
c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0.1c0,0.1-0.1,0.2-0.1,0.3c0,0,0,0,0,0c0,0,0,0,0,0c0,0.1-0.1,0.2-0.1,0.4c0,0,0,0.1,0,0.1
|
||||
l1.6-0.9C107.4,23.7,107.4,23.5,107.5,23.3C107.5,23.3,107.5,23.3,107.5,23.3z"/>
|
||||
<path class="st60" d="M103.8,14.8l1.6-0.9c-0.1,0.1-0.2,0.1-0.3,0.2c0,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.3,0
|
||||
c0,0-0.1,0-0.1,0c-0.1,0-0.3,0-0.4,0c0,0,0,0,0,0c-0.1,0-0.3,0-0.4-0.1c0,0-0.1,0-0.1,0c-0.2,0-0.3-0.1-0.5-0.1l-1.6,0.9
|
||||
c0,0,0,0,0.1,0c0.1,0,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0.1,0,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0
|
||||
c0,0,0,0,0.1,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.2-0.1,0.3-0.1c0,0,0,0,0.1,0
|
||||
c0.1,0,0.1,0,0.2-0.1c0,0,0.1,0,0.1,0C103.6,14.9,103.7,14.8,103.8,14.8z"/>
|
||||
<g>
|
||||
<path class="st61" d="M105.8,11.7c0.6,3.6,2.8,7.4,5.6,9.8c-2.8-0.9-5,0.4-5.6,3.3c-0.6-3.6-2.8-7.4-5.6-9.8
|
||||
C103,15.9,105.2,14.6,105.8,11.7z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path class="st60" d="M112.5,20.1c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.3-0.3-0.4-0.4c0,0,0,0,0,0c-0.1-0.1-0.3-0.3-0.4-0.4
|
||||
c0,0,0-0.1-0.1-0.1c-0.1-0.2-0.3-0.3-0.4-0.5c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.2-0.3-0.3-0.4c0,0-0.1-0.1-0.1-0.1
|
||||
c-0.1-0.1-0.1-0.2-0.2-0.3c-0.1-0.1-0.2-0.2-0.2-0.3c0,0-0.1-0.1-0.1-0.1c-0.2-0.2-0.3-0.5-0.5-0.8c-1.1-1.8-1.8-3.8-2.1-5.7
|
||||
l-1.6,0.9c0.3,1.9,1,3.8,2.1,5.5l0,0c0,0,0,0.1,0.1,0.1c0.2,0.3,0.3,0.5,0.5,0.8c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0
|
||||
c0.1,0.1,0.2,0.2,0.2,0.3c0.1,0.1,0.1,0.2,0.2,0.2c0,0,0,0,0,0c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.1,0.2,0.2,0.3c0,0.1,0.1,0.1,0.1,0.2
|
||||
c0,0,0.1,0.1,0.1,0.1c0,0,0,0.1,0.1,0.1c0.1,0.1,0.2,0.2,0.3,0.3c0,0,0,0,0,0.1c0,0,0,0.1,0.1,0.1c0.1,0.1,0.1,0.1,0.2,0.2
|
||||
c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0.1,0.2,0.2,0.3,0.3c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.1
|
||||
c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.2,0.3,0.3c0,0,0,0,0,0l1.6-0.9C112.8,20.4,112.6,20.3,112.5,20.1z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<g class="st1">
|
||||
<path class="st59" d="M116.6,70.9c0.1-0.2,0.1-0.4,0.2-0.5c0-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.2,0.1-0.3c0.1-0.2,0.2-0.3,0.3-0.5
|
||||
c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.1-0.1,0.2-0.2c0.1-0.1,0.2-0.2,0.2-0.3c0.1-0.1,0.1-0.1,0.2-0.2
|
||||
c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1-0.1,0.1-0.1c0.2-0.1,0.3-0.2,0.5-0.3l0,0c0,0,0,0,0,0l-2.1,1.2c-0.2,0.1-0.3,0.2-0.5,0.3
|
||||
c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.1-0.2,0.2c-0.1,0.1-0.2,0.2-0.2,0.3c-0.1,0.1-0.1,0.1-0.2,0.2
|
||||
c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.2,0.3-0.3,0.5c0,0,0,0,0,0.1c0,0.1-0.1,0.2-0.1,0.2
|
||||
c0,0.1-0.1,0.2-0.1,0.3c0,0,0,0,0,0.1c-0.1,0.2-0.1,0.3-0.2,0.5c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0.2-0.1,0.3-0.1,0.5
|
||||
c0,0.1,0,0.1,0,0.2l2.1-1.2C116.4,71.4,116.5,71.2,116.6,70.9C116.6,70.9,116.6,70.9,116.6,70.9z"/>
|
||||
<path class="st60" d="M111.6,59.3l2.1-1.2c-0.2,0.1-0.3,0.2-0.5,0.2c0,0-0.1,0-0.2,0.1c-0.1,0-0.2,0.1-0.3,0.1
|
||||
c-0.1,0-0.3,0.1-0.4,0.1c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0c-0.1,0-0.3,0-0.4,0
|
||||
c-0.1,0-0.1,0-0.2,0c-0.2,0-0.4,0-0.5,0c0,0,0,0,0,0c-0.2,0-0.4-0.1-0.6-0.1c0,0-0.1,0-0.1,0c-0.2,0-0.4-0.1-0.6-0.2l-2.1,1.2
|
||||
c0,0,0.1,0,0.1,0c0.1,0,0.3,0.1,0.4,0.1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c0.1,0,0.3,0.1,0.4,0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0.1,0,0.3,0,0.4,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.1,0,0.2,0
|
||||
c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1,0c0.2,0,0.3-0.1,0.4-0.1c0,0,0.1,0,0.1,0
|
||||
c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2-0.1C111.3,59.4,111.5,59.4,111.6,59.3z"/>
|
||||
<g>
|
||||
<path class="st61" d="M114.3,55.1c0.8,4.9,3.8,10.1,7.6,13.3c-3.8-1.2-6.8,0.6-7.6,4.5c-0.8-4.9-3.8-10.1-7.6-13.3
|
||||
C110.5,60.8,113.5,59,114.3,55.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path class="st60" d="M123.4,66.6c0,0-0.1-0.1-0.1-0.1c-0.2-0.2-0.4-0.4-0.6-0.6c0,0,0,0-0.1-0.1c-0.2-0.2-0.4-0.4-0.5-0.6
|
||||
c0,0-0.1-0.1-0.1-0.1c-0.2-0.2-0.4-0.4-0.5-0.6c0,0-0.1-0.1-0.1-0.1c-0.2-0.2-0.3-0.4-0.5-0.6c0,0-0.1-0.1-0.1-0.1
|
||||
c-0.1-0.1-0.2-0.2-0.3-0.4c-0.1-0.2-0.2-0.3-0.3-0.5c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.3-0.4-0.7-0.6-1c-1.4-2.4-2.5-5.1-2.9-7.7
|
||||
l-2.1,1.2c0.4,2.5,1.4,5.1,2.8,7.5l0,0c0,0.1,0.1,0.1,0.1,0.2c0.2,0.3,0.4,0.7,0.6,1c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0.1
|
||||
c0.1,0.2,0.2,0.3,0.3,0.5c0.1,0.1,0.1,0.2,0.2,0.3c0,0,0,0,0,0.1c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.2,0.3,0.4
|
||||
c0.1,0.1,0.1,0.1,0.2,0.2c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.1c0.1,0.2,0.3,0.3,0.4,0.5c0,0,0,0,0.1,0.1c0,0,0.1,0.1,0.1,0.1
|
||||
c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.2,0.2,0.3,0.3c0,0,0,0,0.1,0.1c0,0,0,0,0,0c0.1,0.1,0.3,0.3,0.4,0.4c0,0,0.1,0.1,0.1,0.1
|
||||
c0,0,0.1,0.1,0.1,0.1c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.3,0.3,0.5,0.4c0,0,0,0,0,0l2.1-1.2C123.8,66.9,123.6,66.8,123.4,66.6z"/>
|
||||
</g>
|
||||
<polygon class="st4" points="68.3,70.4 71.8,68.4 97.3,83 93.8,85.1 "/>
|
||||
<polygon class="st4" points="100.2,75 101.7,74.1 113,80.6 111.4,81.5 "/>
|
||||
<polygon class="st4" points="106.7,93.7 108.8,92.5 124,101.3 121.9,102.5 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 34 KiB |
@@ -0,0 +1,908 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 175 175" style="enable-background:new 0 0 175 175;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#ECF0F1;}
|
||||
.st1{fill:none;stroke:#3498DB;stroke-width:1.08;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st2{fill:none;stroke:#3498DB;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st3{fill:#3498DB;}
|
||||
.st4{fill:none;stroke:#3498DB;stroke-width:0.72;stroke-linecap:round;stroke-linejoin:round;}
|
||||
.st5{fill:none;stroke:#3498DB;stroke-width:0.72;stroke-linejoin:round;}
|
||||
.st6{opacity:0.1;fill:#3498DB;enable-background:new ;}
|
||||
.st7{opacity:0.1;}
|
||||
.st8{fill:#1C5275;}
|
||||
.st9{fill:#1A4D6F;}
|
||||
.st10{fill:#2875A9;}
|
||||
.st11{enable-background:new ;}
|
||||
.st12{clip-path:url(#SVGID_2_);enable-background:new ;}
|
||||
.st13{fill:#2A7AAF;}
|
||||
.st14{fill:#2977AB;}
|
||||
.st15{fill:#2874A6;}
|
||||
.st16{fill:#2670A2;}
|
||||
.st17{fill:#256D9E;}
|
||||
.st18{fill:#246A99;}
|
||||
.st19{fill:#236795;}
|
||||
.st20{fill:#226491;}
|
||||
.st21{fill:#21618C;}
|
||||
.st22{fill:#205E88;}
|
||||
.st23{fill:#1F5B83;}
|
||||
.st24{fill:#1E587F;}
|
||||
.st25{fill:#1D557B;}
|
||||
.st26{fill:#1C5276;}
|
||||
.st27{fill:#1B4F72;}
|
||||
.st28{clip-path:url(#SVGID_4_);enable-background:new ;}
|
||||
.st29{fill:#2B7DB4;}
|
||||
.st30{fill:#2C80B8;}
|
||||
.st31{fill:#2D83BC;}
|
||||
.st32{fill:#2E86C1;}
|
||||
.st33{fill:#2F89C5;}
|
||||
.st34{fill:#308CC9;}
|
||||
.st35{fill:#318FCE;}
|
||||
.st36{fill:#3292D2;}
|
||||
.st37{fill:#3395D7;}
|
||||
.st38{fill:#4CA4DF;}
|
||||
.st39{fill:#56A9E1;}
|
||||
.st40{fill:#5EADE2;}
|
||||
.st41{fill:#65B1E4;}
|
||||
.st42{fill:#6AB4E5;}
|
||||
.st43{clip-path:url(#SVGID_6_);enable-background:new ;}
|
||||
.st44{clip-path:url(#SVGID_8_);enable-background:new ;}
|
||||
.st45{fill:#D6E3F4;}
|
||||
.st46{opacity:0.3;}
|
||||
.st47{fill:#1A73A0;}
|
||||
.st48{fill:#8DB9E3;}
|
||||
.st49{fill:#B1CDEB;}
|
||||
.st50{fill:#4B87AF;}
|
||||
.st51{fill:#69A7DB;}
|
||||
.st52{fill:none;stroke:#8DB9E3;stroke-width:2;stroke-miterlimit:10;}
|
||||
.st53{opacity:0.2;fill:#8DB9E3;}
|
||||
.st54{fill:#EEB90C;}
|
||||
.st55{fill:#E49701;}
|
||||
.st56{fill:#E7A205;}
|
||||
.st57{fill:#F1C40F;}
|
||||
.st58{fill:#CFD6DA;}
|
||||
.st59{fill:#DEE1E3;}
|
||||
.st60{fill:#2E729E;}
|
||||
.st61{fill:#286288;}
|
||||
.st62{fill:#235778;}
|
||||
.st63{fill:#193D55;}
|
||||
.st64{fill:#3D98D3;}
|
||||
.st65{fill:#317BAC;}
|
||||
.st66{fill:#265F84;}
|
||||
.st67{fill:#1A425D;}
|
||||
.st68{fill:#0F2635;}
|
||||
.st69{fill:#EBAE08;}
|
||||
</style>
|
||||
<g>
|
||||
<polygon class="st0" points="105,175 23.9,127.9 93.9,87.6 175,134.7 "/>
|
||||
</g>
|
||||
<g id="environment-gke-01" transform="translate(2877.509 3527.844)">
|
||||
<path id="Path_6151" class="st1" d="M-2916.6-3439.6l0.1,37.2l-32.3,18.7l-0.1-37.2L-2916.6-3439.6z"/>
|
||||
<path id="Path_6152" class="st1" d="M-2948.9-3383.8l-67.7-39.5l-0.1-37.2l67.7,39.5L-2948.9-3383.8z"/>
|
||||
<line id="Line_589" class="st2" x1="-2932.7" y1="-3429.4" x2="-2932.7" y2="-3393.1"/>
|
||||
<path id="Path_6153" class="st3" d="M-2921.2-3431.7l0.1,26.7l-23.3,13.3l-0.1-26.7L-2921.2-3431.7 M-2921.2-3432.6
|
||||
c-0.2,0-0.3,0-0.5,0.1l-23.1,13.3c-0.3,0.2-0.5,0.5-0.5,0.8l0.1,26.7c0,0.5,0.4,1,0.9,1c0,0,0,0,0,0c0.2,0,0.3,0,0.5-0.1l23.3-13.3
|
||||
c0.3-0.2,0.4-0.5,0.4-0.8v-26.7C-2920.2-3432.2-2920.7-3432.6-2921.2-3432.6L-2921.2-3432.6z"/>
|
||||
<path id="Path_6154" class="st3" d="M-3011.4-3451.2l57.1,33.3l0.1,25l-57.1-33.3L-3011.4-3451.2 M-3011.4-3452.1
|
||||
c-0.5,0-1,0.4-1,0.9c0,0,0,0,0,0l0.1,25c0,0.4,0.2,0.7,0.5,0.8l57.1,33.3c0.4,0.2,0.9,0.1,1.2-0.3c0,0,0-0.1,0.1-0.1
|
||||
c0.1-0.1,0.1-0.2,0.1-0.5v-25.1c0-0.4-0.2-0.7-0.5-0.8l-57.1-33.2C-3011-3452.1-3011.2-3452.1-3011.4-3452.1L-3011.4-3452.1z"/>
|
||||
<path id="Path_6155" class="st4" d="M-2922.6-3431l0.1,25l-21.8,12.6"/>
|
||||
<path id="Path_6156" class="st4" d="M-2959.3-3420.8l-0.1,23.1l-2.5,0.6l0.1-25.3L-2959.3-3420.8z"/>
|
||||
<path id="Path_6157" class="st4" d="M-2961.9-3397.1l-2.8-1.6v-25.7"/>
|
||||
<line id="Line_590" class="st4" x1="-2953.7" y1="-3394.9" x2="-2959.3" y2="-3398.1"/>
|
||||
<path id="Path_6158" class="st4" d="M-2969.7-3426.8v23.1l-2.5,0.6v-25.3L-2969.7-3426.8z"/>
|
||||
<path id="Path_6159" class="st4" d="M-2972.2-3403l-2.8-1.6v-25.7"/>
|
||||
<line id="Line_591" class="st4" x1="-2964.7" y1="-3401" x2="-2969.6" y2="-3403.8"/>
|
||||
<line id="Line_592" class="st4" x1="-2975" y1="-3406.9" x2="-2980.5" y2="-3410.1"/>
|
||||
<path id="Path_6160" class="st4" d="M-2980.1-3432.7l-0.1,23l-2.4,0.6v-25.3L-2980.1-3432.7z"/>
|
||||
<path id="Path_6161" class="st4" d="M-2982.7-3409.1l-2.9-1.6l0.1-25.7"/>
|
||||
<path id="Path_6162" class="st4" d="M-2990.4-3438.6l-0.1,23l-2.5,0.6l0.1-25.3L-2990.4-3438.6z"/>
|
||||
<path id="Path_6163" class="st4" d="M-2993.1-3415l-2.8-1.6l0.1-25.7"/>
|
||||
<line id="Line_593" class="st4" x1="-2985.4" y1="-3413" x2="-2990.3" y2="-3415.8"/>
|
||||
<path id="Path_6164" class="st5" d="M-3000.7-3444.7l-0.1,23l-2.4,0.6v-25.3L-3000.7-3444.7z"/>
|
||||
<path id="Path_6165" class="st5" d="M-3003.6-3421.3l-2.8-1.6l0.1-25.7"/>
|
||||
<line id="Line_594" class="st4" x1="-2996" y1="-3419.3" x2="-3000.8" y2="-3422.1"/>
|
||||
<line id="Line_595" class="st5" x1="-3006.4" y1="-3425.4" x2="-3011.7" y2="-3428.5"/>
|
||||
<path id="Path_6166" class="st6" d="M-2900.5-3403.3l-48.3,28l-78.7-47.5l10.5-6.5l-0.1,6.4l67.8,39.4l31.7-19v-8.4L-2900.5-3403.3
|
||||
z"/>
|
||||
<g id="Group_5947" transform="translate(77.515 52.992)" class="st7">
|
||||
<path id="Path_6167" class="st3" d="M-3029.4-3521.2l-0.1,18.7l-8.5,5v-21.1"/>
|
||||
</g>
|
||||
<path id="Path_6168" class="st6" d="M-2942.6-3480.8v-1.3c0-0.2,0-0.5-0.1-0.7c0-0.2-0.1-0.5-0.1-0.7l0,0c0-0.2-0.1-0.4-0.1-0.6
|
||||
c0-0.2-0.1-0.5-0.1-0.7v-0.4c0-0.1,0-0.3-0.1-0.4c0-0.3-0.1-0.5-0.2-0.7c0-0.1-0.1-0.4-0.1-0.5v-0.2c-0.1-0.2-0.1-0.5-0.2-0.7
|
||||
c-0.1-0.2-0.1-0.5-0.2-0.7v-0.2c0-0.1-0.1-0.2-0.1-0.5c-0.1-0.2-0.1-0.5-0.2-0.7c-0.1-0.1-0.1-0.4-0.2-0.5v-0.2
|
||||
c-0.1-0.2-0.2-0.4-0.2-0.6l-0.4-0.7v-0.1c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.2-0.6l-0.4-0.7
|
||||
c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.4-0.6-0.6-0.8
|
||||
c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c-0.2-0.4-0.6-0.8-0.8-1.2l0,0c-0.2-0.3-0.4-0.5-0.6-0.8c-0.1-0.2-0.4-0.4-0.5-0.6l0,0
|
||||
c-0.1-0.2-0.4-0.4-0.5-0.6c-0.1-0.2-0.4-0.4-0.5-0.6c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0l-0.1-0.1l-0.4-0.4l-0.6-0.6
|
||||
c-0.1-0.1-0.2-0.1-0.2-0.1l-0.1-0.1c-0.1-0.1-0.2-0.1-0.2-0.2c-0.2-0.2-0.4-0.4-0.6-0.5l-0.2-0.2l-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1
|
||||
c-0.2-0.1-0.4-0.4-0.6-0.5c-0.1-0.1-0.3-0.3-0.5-0.4h-0.2c-0.2-0.1-0.4-0.2-0.6-0.4c-0.2-0.1-0.4-0.2-0.6-0.4
|
||||
c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0c-0.1-0.1-0.2-0.1-0.5-0.2c-0.2-0.1-0.4-0.2-0.6-0.2c-0.1,0-0.2-0.1-0.4-0.1h-0.2
|
||||
c-0.2-0.1-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.1-0.6-0.2h-0.2c-0.1,0-0.2-0.1-0.4-0.1c-0.2,0-0.4-0.1-0.6-0.1h-0.5
|
||||
c-0.2,0-0.4-0.1-0.6-0.1h-1.9c-0.2,0-0.5,0.1-0.8,0.1h-0.1c-0.2,0.1-0.5,0.1-0.7,0.2l0,0c-0.4,0.1-0.8,0.3-1.1,0.5l-8.5,5
|
||||
c0.3-0.2,0.7-0.4,1.1-0.5c0.2-0.1,0.6-0.1,0.8-0.2h0.1c0.3-0.1,0.6-0.1,1-0.1h1.5c0.4,0,0.7,0.1,1.1,0.1h0.1
|
||||
c0.4,0.1,0.8,0.2,1.2,0.4h0.1c0.5,0.1,0.8,0.4,1.3,0.5h0.1c0.5,0.2,0.8,0.5,1.3,0.7c0.5,0.3,0.9,0.5,1.3,0.8h0.1
|
||||
c0.4,0.3,0.8,0.6,1.2,1l0.1,0.1c0.4,0.4,0.8,0.7,1.2,1l0.1,0.1l1.1,1.1l0.1,0.1c0.4,0.5,0.8,0.9,1.2,1.3l0,0l1.1,1.5l0,0
|
||||
c0.3,0.5,0.6,0.9,1,1.3c0.2,0.2,0.4,0.6,0.6,0.8c0.1,0.2,0.4,0.5,0.5,0.7c0.1,0.1,0.1,0.2,0.2,0.4c0.3,0.4,0.5,0.9,0.7,1.3
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0.2,0.5,0.5,1.1,0.7,1.6v0.1c0.3,0.5,0.5,1,0.6,1.6v0.1c0.2,0.5,0.4,1.1,0.6,1.7v0.1
|
||||
c0.1,0.5,0.2,1.1,0.4,1.6v0.1c0.1,0.5,0.2,1.1,0.4,1.6l0,0c0.1,0.5,0.1,1.1,0.2,1.6v0.1c0,0.5,0.1,1.1,0.1,1.6c0,0.5,0,1-0.1,1.5
|
||||
v0.1c0,0.5-0.1,0.9-0.2,1.3v0.1c-0.1,0.4-0.1,0.7-0.2,1.1c0,0.1,0,0.1-0.1,0.2c-0.1,0.4-0.2,0.6-0.4,1v0.1c-0.1,0.4-0.3,0.7-0.6,1
|
||||
l-0.1,0.1c-0.1,0.2-0.4,0.5-0.5,0.7l-0.2,0.2l-0.5,0.5l-0.2,0.2c-0.3,0.2-0.5,0.4-0.8,0.6l8.5-5c0.2-0.1,0.5-0.4,0.8-0.6l0.2-0.2
|
||||
l0.5-0.5l0.2-0.2c0.2-0.2,0.4-0.5,0.5-0.7l0.1-0.1l0,0c0.2-0.3,0.4-0.6,0.5-1l0,0v-0.1c0.1-0.2,0.2-0.4,0.2-0.6
|
||||
c0-0.1,0.1-0.2,0.1-0.4c0-0.1,0-0.1,0.1-0.2c0-0.1,0-0.1,0.1-0.2c0.1-0.2,0.1-0.5,0.1-0.7v-0.6c0-0.2,0.1-0.4,0.1-0.6v-1.8l0,0
|
||||
C-2942.6-3480.3-2942.5-3480.6-2942.6-3480.8z"/>
|
||||
<g id="Group_5948" transform="translate(59.343 20.351)">
|
||||
<path id="Path_6169" class="st1" d="M-3024.2-3519.3c7.6,4.4,13.7,15,13.7,23.7c0,6.9-3.9,10.5-9.3,9.6v21.1l-12.7-7.3l3.5-2.1
|
||||
l-3.5-6.1l3.5-2.1l-3.5-6.1l3.8-2.2v-0.5c-5.3-5.2-9.2-13.3-9.2-20.2C-3038-3520.2-3031.8-3523.7-3024.2-3519.3z M-3024.2-3506.5
|
||||
c1.8,1.1,3.4,0.2,3.4-1.9c-0.1-2.4-1.4-4.6-3.4-5.8c-1.8-1.1-3.4-0.2-3.4,1.9C-3027.5-3509.9-3026.2-3507.8-3024.2-3506.5"/>
|
||||
</g>
|
||||
<path id="Path_6170" class="st1" d="M-2969.5-3470.3l-15.5-8.8l-31.7,18.5l67.7,39.6l32.3-18.7l-35.3-20.6"/>
|
||||
<path id="Path_6171" class="st3" d="M-2952-3449.6l8.8-5.6l-8.8-5.2V-3449.6z"/>
|
||||
<g id="Group_5949" transform="translate(77.515 52.992)">
|
||||
<path id="Path_6172" class="st1" d="M-3029.4-3521.2l-0.1,18.7l-8.5,5v-21.1"/>
|
||||
</g>
|
||||
<path id="Path_6173" class="st1" d="M-2942.6-3480.8v-1.3c0-0.2,0-0.5-0.1-0.7c0-0.2-0.1-0.5-0.1-0.7l0,0c0-0.2-0.1-0.4-0.1-0.6
|
||||
c0-0.2-0.1-0.5-0.1-0.7v-0.4c0-0.1,0-0.3-0.1-0.4c0-0.3-0.1-0.5-0.2-0.7c0-0.1-0.1-0.4-0.1-0.5v-0.2c-0.1-0.2-0.1-0.5-0.2-0.7
|
||||
c-0.1-0.2-0.1-0.5-0.2-0.7v-0.2c0-0.1-0.1-0.2-0.1-0.5c-0.1-0.2-0.1-0.5-0.2-0.7c-0.1-0.1-0.1-0.4-0.2-0.5v-0.2
|
||||
c-0.1-0.2-0.2-0.4-0.2-0.6l-0.4-0.7v-0.1c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.2-0.6l-0.4-0.7
|
||||
c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.4-0.6c-0.2-0.2-0.4-0.6-0.6-0.8
|
||||
c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c-0.2-0.4-0.6-0.8-0.8-1.2l0,0c-0.2-0.3-0.4-0.5-0.6-0.8c-0.1-0.2-0.4-0.4-0.5-0.6l0,0
|
||||
c-0.1-0.2-0.4-0.4-0.5-0.6c-0.1-0.2-0.4-0.4-0.5-0.6c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0l-0.1-0.1l-0.4-0.4l-0.6-0.6
|
||||
c-0.1-0.1-0.2-0.1-0.2-0.1l-0.1-0.1c-0.1-0.1-0.2-0.1-0.2-0.2c-0.2-0.2-0.4-0.4-0.6-0.5l-0.2-0.2l-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1
|
||||
c-0.2-0.1-0.4-0.4-0.6-0.5c-0.1-0.1-0.3-0.3-0.5-0.4h-0.2c-0.2-0.1-0.4-0.2-0.6-0.4c-0.2-0.1-0.4-0.2-0.6-0.4
|
||||
c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0c-0.1-0.1-0.2-0.1-0.5-0.2c-0.2-0.1-0.4-0.2-0.6-0.2c-0.1,0-0.2-0.1-0.4-0.1h-0.2
|
||||
c-0.2-0.1-0.4-0.1-0.6-0.2c-0.2-0.1-0.4-0.1-0.6-0.2h-0.2c-0.1,0-0.2-0.1-0.4-0.1c-0.2,0-0.4-0.1-0.6-0.1h-0.5
|
||||
c-0.2,0-0.4-0.1-0.6-0.1h-1.9c-0.2,0-0.5,0.1-0.8,0.1h-0.1c-0.2,0.1-0.5,0.1-0.7,0.2l0,0c-0.4,0.1-0.8,0.3-1.1,0.5l-8.5,5
|
||||
c0.3-0.2,0.7-0.4,1.1-0.5c0.2-0.1,0.6-0.1,0.8-0.2h0.1c0.3-0.1,0.6-0.1,1-0.1h1.5c0.4,0,0.7,0.1,1.1,0.1h0.1
|
||||
c0.4,0.1,0.8,0.2,1.2,0.4h0.1c0.5,0.1,0.8,0.4,1.3,0.5h0.1c0.5,0.2,0.8,0.5,1.3,0.7c0.5,0.3,0.9,0.5,1.3,0.8h0.1
|
||||
c0.4,0.3,0.8,0.6,1.2,1l0.1,0.1c0.4,0.4,0.8,0.7,1.2,1l0.1,0.1l1.1,1.1l0.1,0.1c0.4,0.5,0.8,0.9,1.2,1.3l0,0l1.1,1.5l0,0
|
||||
c0.3,0.5,0.6,0.9,1,1.3c0.2,0.2,0.4,0.6,0.6,0.8c0.1,0.2,0.4,0.5,0.5,0.7c0.1,0.1,0.1,0.2,0.2,0.4c0.3,0.4,0.5,0.9,0.7,1.3
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0,0,0,0c0.2,0.5,0.5,1.1,0.7,1.6v0.1c0.3,0.5,0.5,1,0.6,1.6v0.1c0.2,0.5,0.4,1.1,0.6,1.7v0.1
|
||||
c0.1,0.5,0.2,1.1,0.4,1.6v0.1c0.1,0.5,0.2,1.1,0.4,1.6l0,0c0.1,0.5,0.1,1.1,0.2,1.6v0.1c0,0.5,0.1,1.1,0.1,1.6c0,0.5,0,1-0.1,1.5
|
||||
v0.1c0,0.5-0.1,0.9-0.2,1.3v0.1c-0.1,0.4-0.1,0.7-0.2,1.1c0,0.1,0,0.1-0.1,0.2c-0.1,0.4-0.2,0.6-0.4,1v0.1c-0.1,0.4-0.3,0.7-0.6,1
|
||||
l-0.1,0.1c-0.1,0.2-0.4,0.5-0.5,0.7l-0.2,0.2l-0.5,0.5l-0.2,0.2c-0.3,0.2-0.5,0.4-0.8,0.6l8.5-5c0.2-0.1,0.5-0.4,0.8-0.6l0.2-0.2
|
||||
l0.5-0.5l0.2-0.2c0.2-0.2,0.4-0.5,0.5-0.7l0.1-0.1l0,0c0.2-0.3,0.4-0.6,0.5-1l0,0v-0.1c0.1-0.2,0.2-0.4,0.2-0.6
|
||||
c0-0.1,0.1-0.2,0.1-0.4c0-0.1,0-0.1,0.1-0.2c0-0.1,0-0.1,0.1-0.2c0.1-0.2,0.1-0.5,0.1-0.7v-0.6c0-0.2,0.1-0.4,0.1-0.6v-1.8l0,0
|
||||
C-2942.6-3480.3-2942.5-3480.6-2942.6-3480.8z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st8" d="M414.5,33.2c12.3,7.1,22.3,24.4,22.3,38.6c0,9.8-4.8,15.5-11.8,15.8l-0.1,37l-9-5.2l-6.1-3.5l-6.1-3.5l6.1-3.5
|
||||
l-6.1-10.5l6.1-3.5l-6.1-10.5l5.7-3.2C399.4,72.7,392,58.2,392,46C392.1,31.8,402.1,26.1,414.5,33.2z M414.4,55.6
|
||||
c3.6,2.1,6.5,0.4,6.5-3.7c0-4.1-2.9-9.1-6.5-11.2c-3.6-2.1-6.5-0.4-6.5,3.7C407.9,48.5,410.8,53.5,414.4,55.6"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st9" points="386,122.5 403.6,112.3 409.7,108.8 392.1,119.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st9" points="386,108.6 403.6,98.3 409.7,94.8 392.1,105.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st9" points="386,94.6 403.7,84.3 409.4,81.1 391.7,91.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st10" points="407.3,97.9 424.9,87.6 424.8,124.6 407.2,134.8 "/>
|
||||
</g>
|
||||
<g class="st11">
|
||||
<defs>
|
||||
<path id="SVGID_1_" class="st11" d="M419,56l-17.6,10.2c-1.2,0.7-2.8,0.6-4.6-0.5l17.6-10.2C416.2,56.6,417.8,56.7,419,56z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st12">
|
||||
<path class="st13" d="M396.8,65.8l17.6-10.2c0.1,0,0.1,0.1,0.2,0.1L397,65.9C396.9,65.9,396.8,65.8,396.8,65.8"/>
|
||||
<path class="st14" d="M397,65.9l17.6-10.2c0.1,0,0.2,0.1,0.3,0.1l-17.6,10.2C397.2,66,397.1,66,397,65.9"/>
|
||||
<path class="st15" d="M397.2,66.1l17.6-10.2c0.1,0,0.2,0.1,0.3,0.1l-17.6,10.2C397.4,66.1,397.3,66.1,397.2,66.1"/>
|
||||
<path class="st16" d="M397.5,66.2l17.6-10.2c0.1,0,0.2,0.1,0.3,0.1l-17.6,10.2C397.7,66.3,397.6,66.2,397.5,66.2"/>
|
||||
<path class="st17" d="M397.8,66.3l17.6-10.2c0.1,0,0.2,0.1,0.3,0.1L398,66.4C397.9,66.4,397.8,66.3,397.8,66.3"/>
|
||||
<path class="st18" d="M398,66.4l17.6-10.2c0.1,0,0.2,0.1,0.3,0.1l-17.6,10.2C398.2,66.4,398.1,66.4,398,66.4"/>
|
||||
<path class="st19" d="M398.3,66.5l17.6-10.2c0.1,0,0.2,0.1,0.3,0.1l-17.6,10.2C398.5,66.5,398.4,66.5,398.3,66.5"/>
|
||||
<path class="st20" d="M398.6,66.5l17.6-10.2c0.1,0,0.2,0,0.3,0.1l-17.6,10.2C398.7,66.6,398.6,66.6,398.6,66.5"/>
|
||||
<path class="st21" d="M398.8,66.6l17.6-10.2c0.1,0,0.2,0,0.3,0l-17.6,10.2C399,66.6,398.9,66.6,398.8,66.6"/>
|
||||
<path class="st22" d="M399.1,66.7l17.6-10.2c0.1,0,0.2,0,0.3,0l-17.6,10.2C399.3,66.7,399.2,66.7,399.1,66.7"/>
|
||||
<path class="st23" d="M399.4,66.7L417,56.4c0.1,0,0.2,0,0.3,0l-17.6,10.2C399.6,66.7,399.5,66.7,399.4,66.7"/>
|
||||
<path class="st24" d="M399.7,66.7l17.6-10.2c0.1,0,0.2,0,0.3,0L400,66.7C399.9,66.7,399.8,66.7,399.7,66.7"/>
|
||||
<path class="st25" d="M400,66.7l17.6-10.2c0.1,0,0.3,0,0.4-0.1l-17.6,10.2C400.3,66.6,400.2,66.7,400,66.7"/>
|
||||
<path class="st26" d="M400.4,66.6L418,56.4c0.2,0,0.3-0.1,0.5-0.1l-17.6,10.2C400.7,66.6,400.6,66.6,400.4,66.6"/>
|
||||
<path class="st27" d="M400.9,66.5l17.6-10.2c0.2-0.1,0.4-0.1,0.5-0.2l-17.6,10.2C401.2,66.4,401,66.4,400.9,66.5"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st11">
|
||||
<defs>
|
||||
<path id="SVGID_3_" class="st11" d="M392.2,50.4l17.6-10.2c-1.2,0.7-1.9,2.1-1.9,4.2c0,4.1,2.9,9.1,6.5,11.2l-17.6,10.2
|
||||
c-3.6-2.1-6.5-7.1-6.5-11.2C390.3,52.6,391,51.1,392.2,50.4z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st28">
|
||||
<path class="st27" d="M392.2,50.4l17.6-10.2c-0.4,0.3-0.8,0.6-1.1,1.1l-17.6,10.2C391.4,51.1,391.8,50.7,392.2,50.4"/>
|
||||
<path class="st26" d="M391.1,51.5l17.6-10.2c-0.1,0.1-0.2,0.3-0.2,0.4L390.8,52C390.9,51.8,391,51.7,391.1,51.5"/>
|
||||
<path class="st25" d="M390.8,52l17.6-10.2c-0.1,0.1-0.1,0.2-0.2,0.4l-17.6,10.2C390.7,52.2,390.8,52.1,390.8,52"/>
|
||||
<path class="st24" d="M390.7,52.4l17.6-10.2c0,0.1-0.1,0.2-0.1,0.3l-17.6,10.2C390.6,52.6,390.6,52.5,390.7,52.4"/>
|
||||
<path class="st23" d="M390.6,52.7l17.6-10.2c0,0.1-0.1,0.2-0.1,0.3L390.5,53C390.5,52.9,390.5,52.8,390.6,52.7"/>
|
||||
<path class="st22" d="M390.5,53l17.6-10.2c0,0.1,0,0.2-0.1,0.3l-17.6,10.2C390.4,53.2,390.5,53.1,390.5,53"/>
|
||||
<path class="st21" d="M390.4,53.3L408,43.1c0,0.1,0,0.2,0,0.3l-17.6,10.2C390.4,53.6,390.4,53.4,390.4,53.3"/>
|
||||
<path class="st20" d="M390.4,53.7L408,43.4c0,0.1,0,0.2,0,0.3L390.3,54C390.3,53.9,390.4,53.8,390.4,53.7"/>
|
||||
<path class="st19" d="M390.3,54L408,43.7c0,0.1,0,0.2,0,0.3l-17.6,10.2C390.3,54.2,390.3,54.1,390.3,54"/>
|
||||
<path class="st18" d="M390.3,54.3L407.9,44c0,0.1,0,0.2,0,0.3l-17.6,10.2C390.3,54.5,390.3,54.4,390.3,54.3"/>
|
||||
<path class="st17" d="M390.3,54.6l17.6-10.2c0,0,0,0,0,0c0,0.1,0,0.2,0,0.3l-17.6,10.2C390.3,54.8,390.3,54.7,390.3,54.6
|
||||
C390.3,54.6,390.3,54.6,390.3,54.6"/>
|
||||
<path class="st16" d="M390.3,54.9l17.6-10.2c0,0.1,0,0.2,0,0.3l-17.6,10.2C390.3,55.1,390.3,55,390.3,54.9"/>
|
||||
<path class="st15" d="M390.3,55.2L407.9,45c0,0.1,0,0.2,0,0.3l-17.6,10.2C390.3,55.4,390.3,55.3,390.3,55.2"/>
|
||||
<path class="st14" d="M390.4,55.5L408,45.3c0,0.1,0,0.2,0,0.3l-17.6,10.2C390.4,55.7,390.4,55.6,390.4,55.5"/>
|
||||
<path class="st13" d="M390.4,55.9L408,45.6c0,0.1,0,0.2,0,0.3l-17.6,10.2C390.4,56.1,390.4,56,390.4,55.9"/>
|
||||
<path class="st29" d="M390.4,56.2l17.6-10.2c0,0.1,0,0.2,0.1,0.3l-17.6,10.2C390.5,56.4,390.5,56.3,390.4,56.2"/>
|
||||
<path class="st30" d="M390.5,56.5l17.6-10.2c0,0.1,0,0.2,0.1,0.3l-17.6,10.2C390.5,56.7,390.5,56.6,390.5,56.5"/>
|
||||
<path class="st31" d="M390.6,56.8l17.6-10.2c0,0.1,0.1,0.2,0.1,0.3l-17.6,10.2C390.6,57.1,390.6,57,390.6,56.8"/>
|
||||
<path class="st32" d="M390.6,57.2l17.6-10.2c0,0.1,0.1,0.2,0.1,0.3l-17.6,10.2C390.7,57.4,390.7,57.3,390.6,57.2"/>
|
||||
<path class="st33" d="M390.7,57.5l17.6-10.2c0,0.1,0.1,0.2,0.1,0.3l-17.6,10.2C390.8,57.8,390.8,57.6,390.7,57.5"/>
|
||||
<path class="st34" d="M390.8,57.9l17.6-10.2c0,0.1,0.1,0.2,0.1,0.3l-17.6,10.2C390.9,58.1,390.9,58,390.8,57.9"/>
|
||||
<path class="st35" d="M390.9,58.2L408.6,48c0,0.1,0.1,0.2,0.1,0.3l-17.6,10.2C391,58.4,391,58.3,390.9,58.2"/>
|
||||
<path class="st36" d="M391.1,58.5l17.6-10.2c0,0.1,0.1,0.2,0.1,0.3l-17.6,10.2C391.1,58.7,391.1,58.6,391.1,58.5"/>
|
||||
<path class="st37" d="M391.2,58.9l17.6-10.2c0,0.1,0.1,0.2,0.1,0.3l-17.6,10.2C391.3,59.1,391.2,59,391.2,58.9"/>
|
||||
<path class="st3" d="M391.3,59.2l17.6-10.2c0,0.1,0.1,0.2,0.1,0.3l-17.6,10.2C391.4,59.4,391.3,59.3,391.3,59.2"/>
|
||||
<path class="st38" d="M391.4,59.5l17.6-10.2c0,0.1,0.1,0.2,0.1,0.3l-17.6,10.2C391.5,59.7,391.5,59.6,391.4,59.5"/>
|
||||
<path class="st39" d="M391.6,59.8l17.6-10.2c0.1,0.1,0.1,0.2,0.2,0.3l-17.6,10.2C391.7,60,391.6,59.9,391.6,59.8"/>
|
||||
<path class="st40" d="M391.7,60.1l17.6-10.2c0.1,0.1,0.1,0.3,0.2,0.4l-17.6,10.2C391.9,60.4,391.8,60.3,391.7,60.1"/>
|
||||
<path class="st41" d="M391.9,60.5l17.6-10.2c0.1,0.2,0.2,0.4,0.3,0.6l-17.6,10.2C392.1,60.9,392,60.7,391.9,60.5"/>
|
||||
<path class="st42" d="M392.3,61.1l17.6-10.2c0.2,0.3,0.3,0.5,0.5,0.8l-17.6,10.2C392.6,61.6,392.4,61.4,392.3,61.1"/>
|
||||
<path class="st41" d="M392.7,61.9l17.6-10.2c0.1,0.2,0.3,0.4,0.4,0.6l-17.6,10.2C393,62.3,392.9,62.1,392.7,61.9"/>
|
||||
<path class="st40" d="M393.2,62.4l17.6-10.2c0.1,0.1,0.2,0.3,0.3,0.4l-17.6,10.2C393.3,62.7,393.2,62.6,393.2,62.4"/>
|
||||
<path class="st39" d="M393.4,62.8l17.6-10.2c0.1,0.1,0.2,0.2,0.2,0.3l-17.6,10.2C393.6,63,393.5,62.9,393.4,62.8"/>
|
||||
<path class="st38" d="M393.7,63.1l17.6-10.2c0.1,0.1,0.2,0.2,0.2,0.3l-17.6,10.2C393.9,63.3,393.8,63.2,393.7,63.1"/>
|
||||
<path class="st3" d="M393.9,63.4l17.6-10.2c0.1,0.1,0.2,0.2,0.3,0.3l-17.6,10.2C394.1,63.6,394,63.5,393.9,63.4"/>
|
||||
<path class="st37" d="M394.2,63.7l17.6-10.2c0.1,0.1,0.2,0.2,0.3,0.3L394.5,64C394.4,63.9,394.3,63.8,394.2,63.7"/>
|
||||
<path class="st36" d="M394.5,64l17.6-10.2c0.1,0.1,0.2,0.2,0.3,0.3l-17.6,10.2C394.6,64.2,394.5,64.1,394.5,64"/>
|
||||
<path class="st35" d="M394.7,64.2L412.3,54c0.1,0.1,0.2,0.2,0.3,0.3L395,64.5C394.9,64.4,394.8,64.3,394.7,64.2"/>
|
||||
<path class="st34" d="M395,64.5l17.6-10.2c0.1,0.1,0.2,0.2,0.3,0.3l-17.6,10.2C395.2,64.7,395.1,64.6,395,64.5"/>
|
||||
<path class="st33" d="M395.3,64.8l17.6-10.2c0.1,0.1,0.2,0.2,0.3,0.2L395.6,65C395.5,64.9,395.4,64.8,395.3,64.8"/>
|
||||
<path class="st32" d="M395.6,65l17.6-10.2c0.1,0.1,0.2,0.1,0.3,0.2l-17.6,10.2C395.8,65.1,395.7,65.1,395.6,65"/>
|
||||
<path class="st31" d="M395.9,65.2L413.5,55c0.1,0.1,0.2,0.1,0.3,0.2l-17.6,10.2C396.1,65.4,396,65.3,395.9,65.2"/>
|
||||
<path class="st30" d="M396.2,65.4l17.6-10.2c0.1,0.1,0.2,0.1,0.3,0.2l-17.6,10.2C396.3,65.5,396.2,65.5,396.2,65.4"/>
|
||||
<path class="st29" d="M396.4,65.6L414,55.4c0.1,0.1,0.2,0.1,0.3,0.2l-17.6,10.2C396.6,65.7,396.5,65.7,396.4,65.6"/>
|
||||
<path class="st13" d="M396.7,65.8l17.6-10.2c0,0,0,0,0.1,0L396.7,65.8C396.7,65.8,396.7,65.8,396.7,65.8"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st11">
|
||||
<defs>
|
||||
<path id="SVGID_5_" class="st11" d="M380.9,41.9l17.6-10.2c4.1-2.4,9.7-2,15.9,1.6l-17.6,10.2C390.6,39.9,385,39.5,380.9,41.9z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_6_">
|
||||
<use xlink:href="#SVGID_5_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st43">
|
||||
<path class="st27" d="M380.9,41.9l17.6-10.2c0.6-0.3,1.2-0.6,1.8-0.8L382.7,41C382.1,41.3,381.5,41.6,380.9,41.9"/>
|
||||
<path class="st26" d="M382.7,41l17.6-10.2c0.5-0.2,1-0.3,1.6-0.4l-17.6,10.2C383.8,40.7,383.2,40.9,382.7,41"/>
|
||||
<path class="st25" d="M384.3,40.6l17.6-10.2c0.4-0.1,0.8-0.1,1.3-0.2l-17.6,10.2C385.1,40.5,384.7,40.5,384.3,40.6"/>
|
||||
<path class="st24" d="M385.6,40.4l17.6-10.2c0.4,0,0.8-0.1,1.2-0.1l-17.6,10.2C386.4,40.4,386,40.4,385.6,40.4"/>
|
||||
<path class="st23" d="M386.7,40.4l17.6-10.2c0.3,0,0.7,0,1,0l-17.6,10.2C387.4,40.4,387.1,40.4,386.7,40.4"/>
|
||||
<path class="st22" d="M387.8,40.4l17.6-10.2c0.3,0,0.7,0.1,1,0.1l-17.6,10.2C388.5,40.5,388.1,40.4,387.8,40.4"/>
|
||||
<path class="st21" d="M388.8,40.5l17.6-10.2c0.3,0,0.6,0.1,1,0.2l-17.6,10.2C389.4,40.6,389.1,40.6,388.8,40.5"/>
|
||||
<path class="st20" d="M389.8,40.7l17.6-10.2c0.3,0.1,0.6,0.1,0.9,0.2l-17.6,10.2C390.4,40.8,390.1,40.7,389.8,40.7"/>
|
||||
<path class="st19" d="M390.7,40.9l17.6-10.2c0.3,0.1,0.6,0.2,0.9,0.3l-17.6,10.2C391.3,41,391,41,390.7,40.9"/>
|
||||
<path class="st18" d="M391.6,41.1l17.6-10.2c0.3,0.1,0.6,0.2,0.9,0.3l-17.6,10.2C392.2,41.3,391.9,41.2,391.6,41.1"/>
|
||||
<path class="st17" d="M392.5,41.4l17.6-10.2c0.3,0.1,0.6,0.2,0.9,0.3l-17.6,10.2C393.1,41.6,392.8,41.5,392.5,41.4"/>
|
||||
<path class="st16" d="M393.4,41.8L411,31.5c0.3,0.1,0.6,0.2,0.9,0.4l-17.6,10.2C394,42,393.7,41.9,393.4,41.8"/>
|
||||
<path class="st15" d="M394.3,42.1l17.6-10.2c0.3,0.1,0.6,0.3,0.9,0.4l-17.6,10.2C394.9,42.4,394.6,42.3,394.3,42.1"/>
|
||||
<path class="st14" d="M395.2,42.6l17.6-10.2c0.3,0.2,0.6,0.3,0.9,0.5L396.1,43C395.8,42.9,395.5,42.7,395.2,42.6"/>
|
||||
<path class="st13" d="M396.1,43l17.6-10.2c0.2,0.1,0.5,0.3,0.7,0.4l-17.6,10.2C396.6,43.3,396.4,43.2,396.1,43"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="st11">
|
||||
<defs>
|
||||
<path id="SVGID_7_" class="st11" d="M430.2,86.1l-17.6,10.2c4-2.3,6.5-7.3,6.5-14.3c0-14.2-9.9-31.5-22.3-38.6l17.6-10.2
|
||||
c12.3,7.1,22.3,24.4,22.3,38.6C436.7,78.8,434.2,83.8,430.2,86.1z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_8_">
|
||||
<use xlink:href="#SVGID_7_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st44">
|
||||
<path class="st13" d="M396.8,43.4l17.6-10.2c0.1,0,0.1,0.1,0.2,0.1l-17.6,10.2C397,43.5,396.9,43.5,396.8,43.4"/>
|
||||
<path class="st29" d="M397.1,43.6l17.6-10.2c0.3,0.2,0.6,0.4,0.9,0.6L398,44.2C397.7,44,397.4,43.8,397.1,43.6"/>
|
||||
<path class="st30" d="M398,44.2l17.6-10.2c0.3,0.2,0.6,0.4,0.9,0.6l-17.6,10.2C398.6,44.6,398.3,44.4,398,44.2"/>
|
||||
<path class="st31" d="M398.9,44.8l17.6-10.2c0.3,0.2,0.6,0.5,1,0.7l-17.6,10.2C399.6,45.2,399.3,45,398.9,44.8"/>
|
||||
<path class="st32" d="M399.9,45.5l17.6-10.2c0.3,0.2,0.7,0.5,1,0.7l-17.6,10.2C400.6,46,400.2,45.7,399.9,45.5"/>
|
||||
<path class="st33" d="M400.9,46.2L418.5,36c0.3,0.3,0.7,0.5,1,0.8L401.9,47C401.6,46.8,401.2,46.5,400.9,46.2"/>
|
||||
<path class="st34" d="M401.9,47l17.6-10.2c0.3,0.3,0.7,0.6,1,0.9l-17.6,10.2C402.6,47.6,402.2,47.3,401.9,47"/>
|
||||
<path class="st35" d="M402.9,47.9l17.6-10.2c0.3,0.3,0.7,0.6,1,0.9l-17.6,10.2C403.5,48.5,403.2,48.2,402.9,47.9"/>
|
||||
<path class="st36" d="M403.9,48.8l17.6-10.2c0.3,0.3,0.6,0.6,0.9,0.9l-17.6,10.2C404.5,49.4,404.2,49.1,403.9,48.8"/>
|
||||
<path class="st37" d="M404.8,49.7l17.6-10.2c0.3,0.3,0.6,0.6,0.9,1l-17.6,10.2C405.4,50.4,405.1,50.1,404.8,49.7"/>
|
||||
<path class="st3" d="M405.7,50.7l17.6-10.2c0.3,0.3,0.6,0.6,0.9,1l-17.6,10.2C406.3,51.3,406,51,405.7,50.7"/>
|
||||
<path class="st38" d="M406.6,51.7l17.6-10.2c0.3,0.3,0.6,0.7,0.9,1l-17.6,10.2C407.2,52.3,406.9,52,406.6,51.7"/>
|
||||
<path class="st39" d="M407.5,52.7l17.6-10.2c0.3,0.4,0.6,0.7,0.9,1.1l-17.6,10.2C408,53.4,407.7,53,407.5,52.7"/>
|
||||
<path class="st40" d="M408.3,53.7l17.6-10.2c0.3,0.4,0.7,0.9,1,1.3L409.3,55C409,54.6,408.7,54.2,408.3,53.7"/>
|
||||
<path class="st41" d="M409.3,55l17.6-10.2c0.5,0.7,1,1.3,1.4,2l-17.6,10.2C410.3,56.4,409.8,55.7,409.3,55"/>
|
||||
<path class="st42" d="M410.7,57.1l17.6-10.2c0.6,0.9,1.1,1.7,1.7,2.6l-17.6,10.2C411.9,58.8,411.3,57.9,410.7,57.1"/>
|
||||
<path class="st41" d="M412.4,59.7L430,49.5c0.4,0.6,0.7,1.3,1.1,2l-17.6,10.2C413.1,61,412.8,60.3,412.4,59.7"/>
|
||||
<path class="st40" d="M413.5,61.7l17.6-10.2c0.2,0.4,0.5,0.9,0.7,1.3L414.2,63C414,62.6,413.7,62.1,413.5,61.7"/>
|
||||
<path class="st39" d="M414.2,63l17.6-10.2c0.2,0.4,0.4,0.8,0.6,1.2l-17.6,10.2C414.6,63.8,414.4,63.4,414.2,63"/>
|
||||
<path class="st38" d="M414.7,64.2l17.6-10.2c0.2,0.4,0.3,0.7,0.5,1.1l-17.6,10.2C415.1,64.9,414.9,64.5,414.7,64.2"/>
|
||||
<path class="st3" d="M415.2,65.3L432.9,55c0.2,0.4,0.3,0.7,0.5,1.1l-17.6,10.2C415.5,66,415.4,65.6,415.2,65.3"/>
|
||||
<path class="st37" d="M415.7,66.3l17.6-10.2c0.1,0.4,0.3,0.7,0.4,1.1l-17.6,10.2C416,67,415.8,66.7,415.7,66.3"/>
|
||||
<path class="st36" d="M416.1,67.4l17.6-10.2c0.1,0.4,0.3,0.7,0.4,1.1l-17.6,10.2C416.4,68.1,416.3,67.8,416.1,67.4"/>
|
||||
<path class="st35" d="M416.5,68.5l17.6-10.2c0.1,0.4,0.3,0.8,0.4,1.1l-17.6,10.2C416.8,69.3,416.7,68.9,416.5,68.5"/>
|
||||
<path class="st34" d="M416.9,69.6l17.6-10.2c0.1,0.4,0.3,0.8,0.4,1.2l-17.6,10.2C417.2,70.4,417.1,70,416.9,69.6"/>
|
||||
<path class="st33" d="M417.3,70.8l17.6-10.2c0.1,0.4,0.2,0.8,0.3,1.2L417.7,72C417.5,71.6,417.4,71.2,417.3,70.8"/>
|
||||
<path class="st32" d="M417.7,72l17.6-10.2c0.1,0.4,0.2,0.8,0.3,1.2L418,73.2C417.9,72.8,417.8,72.4,417.7,72"/>
|
||||
<path class="st31" d="M418,73.2l17.6-10.2c0.1,0.4,0.2,0.8,0.3,1.2l-17.6,10.2C418.2,73.9,418.1,73.6,418,73.2"/>
|
||||
<path class="st30" d="M418.2,74.3l17.6-10.2c0.1,0.4,0.2,0.8,0.2,1.2l-17.6,10.2C418.4,75.1,418.3,74.7,418.2,74.3"/>
|
||||
<path class="st29" d="M418.5,75.5l17.6-10.2c0.1,0.4,0.1,0.8,0.2,1.1l-17.6,10.2C418.6,76.3,418.5,75.9,418.5,75.5"/>
|
||||
<path class="st13" d="M418.7,76.6l17.6-10.2c0.1,0.4,0.1,0.7,0.2,1.1l-17.6,10.2C418.8,77.4,418.7,77,418.7,76.6"/>
|
||||
<path class="st14" d="M418.8,77.8l17.6-10.2c0,0.4,0.1,0.7,0.1,1.1L419,78.8C418.9,78.5,418.9,78.1,418.8,77.8"/>
|
||||
<path class="st15" d="M419,78.8l17.6-10.2c0,0.4,0.1,0.7,0.1,1.1L419,79.9C419,79.6,419,79.2,419,78.8"/>
|
||||
<path class="st16" d="M419,79.9l17.6-10.2c0,0.4,0,0.7,0.1,1.1L419.1,81C419.1,80.7,419.1,80.3,419,79.9"/>
|
||||
<path class="st17" d="M419.1,81l17.6-10.2c0,0.3,0,0.7,0,1c0,0,0,0,0,0.1l-17.6,10.2c0,0,0,0,0-0.1
|
||||
C419.1,81.7,419.1,81.4,419.1,81"/>
|
||||
<path class="st18" d="M419.1,82.1l17.6-10.2c0,0.4,0,0.7,0,1.1l-17.6,10.2C419.1,82.8,419.1,82.4,419.1,82.1"/>
|
||||
<path class="st19" d="M419.1,83.2l17.6-10.2c0,0.4,0,0.7-0.1,1.1L419,84.2C419,83.9,419.1,83.5,419.1,83.2"/>
|
||||
<path class="st20" d="M419,84.2L436.6,74c0,0.4-0.1,0.7-0.1,1.1l-17.6,10.2C418.9,84.9,419,84.6,419,84.2"/>
|
||||
<path class="st21" d="M418.9,85.3l17.6-10.2c0,0.4-0.1,0.7-0.2,1.1l-17.6,10.2C418.8,86,418.9,85.7,418.9,85.3"/>
|
||||
<path class="st22" d="M418.7,86.4l17.6-10.2c-0.1,0.4-0.1,0.7-0.2,1.1l-17.6,10.2C418.6,87.1,418.7,86.7,418.7,86.4"/>
|
||||
<path class="st23" d="M418.5,87.4l17.6-10.2c-0.1,0.4-0.2,0.8-0.3,1.1l-17.6,10.2C418.3,88.2,418.4,87.8,418.5,87.4"/>
|
||||
<path class="st24" d="M418.2,88.6l17.6-10.2c-0.1,0.4-0.3,0.8-0.4,1.2l-17.6,10.2C418,89.4,418.1,89,418.2,88.6"/>
|
||||
<path class="st25" d="M417.8,89.8l17.6-10.2c-0.2,0.5-0.4,0.9-0.5,1.3l-17.6,10.2C417.5,90.7,417.7,90.2,417.8,89.8"/>
|
||||
<path class="st26" d="M417.3,91.1l17.6-10.2c-0.3,0.5-0.5,1-0.8,1.5l-17.6,10.2C416.8,92.1,417,91.6,417.3,91.1"/>
|
||||
<path class="st27" d="M416.5,92.6l17.6-10.2c-1,1.6-2.3,2.9-3.9,3.8l-17.6,10.2C414.1,95.5,415.4,94.2,416.5,92.6"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st8" d="M396.8,43.4c12.3,7.1,22.3,24.4,22.3,38.6c0,9.8-4.8,15.5-11.8,15.8l-0.1,37l-9-5.2l-6.1-3.5l-6.1-3.5l6.1-3.5
|
||||
l-6.1-10.5l6.1-3.5L386,94.6l5.7-3.2c-10-8.3-17.4-22.9-17.3-35.1C374.5,42,384.5,36.3,396.8,43.4z M396.8,65.8
|
||||
c3.6,2.1,6.5,0.4,6.5-3.7c0-4.1-2.9-9.1-6.5-11.2c-3.6-2.1-6.5-0.4-6.5,3.7C390.3,58.7,393.2,63.7,396.8,65.8"/>
|
||||
</g>
|
||||
<path class="st10" d="M488,56.8c-10.9-6.3-20-2.6-22,8.2c-10.3-3.6-18,2.3-18,14.8c0,12.2,7.4,26.8,17.3,35.1l-5.7,3.2l6.1,10.5
|
||||
l-6.1,3.5l6.1,10.5l-6.1,3.5l6.1,3.5l6.1,3.5l9,5.2l17.6-10.2l0.1-37c7.6-3.4,11.8-8.9,11.8-15.8C510.2,81.2,500.3,63.9,488,56.8z"
|
||||
/>
|
||||
<path class="st3" d="M564.5,0C547.1,0,533,14.1,533,31.5S547.1,63,564.5,63c17.4,0,31.5-14.1,31.5-31.5S581.9,0,564.5,0z
|
||||
M564.5,27.4c-5,0-9.1-4.1-9.1-9.1s4.1-9.1,9.1-9.1c5,0,9.1,4.1,9.1,9.1S569.6,27.4,564.5,27.4z"/>
|
||||
<g>
|
||||
<g>
|
||||
<rect x="558.2" y="57.3" class="st3" width="21.4" height="47.2"/>
|
||||
|
||||
<rect x="552.1" y="64.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 113.8211 415.2426)" class="st3" width="12.2" height="12.2"/>
|
||||
|
||||
<rect x="552.1" y="81.3" transform="matrix(0.7071 -0.7071 0.7071 0.7071 101.6824 420.2705)" class="st3" width="12.2" height="12.2"/>
|
||||
<polyline class="st3" points="549.5,104.6 558.2,96 566.8,104.6 "/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon class="st8" points="480.8,121.5 498.5,111.2 498.5,148.8 480.7,158.4 "/>
|
||||
<polygon class="st10" points="454.7,65.3 473.6,54.5 495.7,75.7 "/>
|
||||
<g>
|
||||
<path class="st3" d="M470.3,67.1c12.3,7.1,22.3,24.4,22.3,38.6c0,9.8-4.8,15.5-11.8,15.8l-0.1,37l-9-5.2l-6.1-3.5l-6.1-3.5l6.1-3.5
|
||||
l-6.1-10.5l6.1-3.5l-6.1-10.5l5.7-3.2c-10-8.3-17.4-22.9-17.3-35.1C448,65.7,458,59.9,470.3,67.1z M470.3,89.4
|
||||
c3.6,2.1,6.5,0.4,6.5-3.7c0-4.1-2.9-9.1-6.5-11.2c-3.6-2.1-6.5-0.4-6.5,3.7C463.8,82.3,466.7,87.4,470.3,89.4"/>
|
||||
</g>
|
||||
<path class="st45" d="M328.7-20.9c-0.3-1.6-0.5-3.2-0.7-4.7C328.2-24.1,328.4-22.5,328.7-20.9z"/>
|
||||
<path class="st45" d="M328-29.3c0-0.1,0-0.2,0-0.3C328-29.5,328-29.4,328-29.3z"/>
|
||||
<path class="st45" d="M334.1-6.7c-2.1-3.8-3.8-7.8-4.8-11.8C330.3-14.5,332-10.5,334.1-6.7z"/>
|
||||
<path class="st45" d="M328.1-30.6c0-0.1,0-0.1,0-0.2C328.1-30.7,328.1-30.7,328.1-30.6z"/>
|
||||
<path class="st45" d="M328.3-31.8c0,0,0-0.1,0-0.1C328.3-31.9,328.3-31.9,328.3-31.8z"/>
|
||||
<path class="st45" d="M345.3,7.1c-0.6-0.5-1.2-1.1-1.8-1.6C344.1,6,344.7,6.6,345.3,7.1L345.3,7.1z"/>
|
||||
<polygon class="st45" points="339.6,10.3 339.6,10.3 345.7,20.8 345.7,20.8 "/>
|
||||
<path class="st45" d="M343.5,5.4c-3.6-3.4-6.8-7.6-9.4-12.1C336.7-2.2,339.9,2,343.5,5.4z"/>
|
||||
<polygon class="st45" points="345.7,34.8 339.6,24.3 339.6,24.3 "/>
|
||||
<path class="st45" d="M368-51c-6.9-4-13.1-3.9-17.2-0.7l-16.1,9.2l0,0c4-2.2,9.5-1.8,15.6,1.7c12.3,7.1,22.3,24.4,22.3,38.6
|
||||
c0,9.8-4.8,15.5-11.8,15.8l-0.1,37l-9-5.2l-6.1-3.5l-6.1-3.5l6.1,3.5l6.1,3.5l9,5.2l17.6-10.2l0.1-37c7.6-3.4,11.8-8.9,11.8-15.8
|
||||
C390.3-26.6,380.4-43.9,368-51z"/>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g class="st46">
|
||||
<path class="st47" d="M994.7,306.9c2.2,1.3,2.3,3.4,0,4.7l-173.9,101c-2.2,1.3-5.9,1.3-8.1,0L538.3,254.2c-2.2-1.3-2.3-3.4,0-4.7
|
||||
l173.9-101c2.2-1.3,5.9-1.3,8.1,0L994.7,306.9z"/>
|
||||
</g>
|
||||
<path class="st48" d="M996.4,249.1c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.1c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0.1-0.1,0.1-0.1,0.2
|
||||
c0,0-0.1,0.1-0.1,0.1c0,0.1-0.1,0.1-0.1,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c-0.1,0.1-0.2,0.2-0.2,0.2c-0.1,0-0.1,0.1-0.2,0.1
|
||||
c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1l-173.9,101l-0.1,21.8l173.9-101c0,0,0,0,0.1,0
|
||||
c0.1,0,0.1-0.1,0.1-0.1c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1-0.1,0.2-0.1c0,0,0,0,0,0c0.1-0.1,0.1-0.1,0.2-0.2
|
||||
c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0-0.1c0-0.1,0.1-0.1,0.1-0.2c0,0,0-0.1,0.1-0.1c0,0,0,0,0,0c0-0.1,0.1-0.1,0.1-0.2
|
||||
c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1
|
||||
l0.1-21.8C996.4,249,996.4,249,996.4,249.1z"/>
|
||||
<g>
|
||||
<path class="st45" d="M994.7,246.6c2.2,1.3,2.3,3.4,0,4.7l-173.9,101c-2.2,1.3-5.9,1.3-8.1,0L538.3,193.9c-2.2-1.3-2.3-3.4,0-4.7
|
||||
l173.9-101c2.2-1.3,5.9-1.3,8.1,0L994.7,246.6z"/>
|
||||
</g>
|
||||
<path class="st49" d="M820.4,352.6c-0.1,0-0.1,0-0.2,0.1c-0.1,0.1-0.3,0.1-0.4,0.2c-0.1,0-0.1,0-0.2,0.1c-0.1,0-0.2,0.1-0.3,0.1
|
||||
c-0.1,0-0.2,0-0.2,0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0-0.1,0-0.2,0c-0.2,0-0.4,0.1-0.7,0.1c-0.1,0-0.1,0-0.2,0c-0.1,0-0.3,0-0.4,0
|
||||
c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3,0
|
||||
c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3-0.1c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2-0.1-0.4-0.1c-0.1,0-0.1,0-0.2-0.1
|
||||
c-0.2-0.1-0.4-0.1-0.6-0.2c-0.1,0-0.2-0.1-0.3-0.1c0,0-0.1,0-0.1-0.1c-0.1-0.1-0.3-0.1-0.4-0.2L538.3,193.9
|
||||
c-0.7-0.4-1.2-0.9-1.5-1.4c-0.2-0.3-0.2-0.6-0.2-1l-0.1,21.8c0,0.9,0.6,1.7,1.7,2.4l274.5,158.5c0.1,0.1,0.3,0.2,0.4,0.2
|
||||
c0,0,0.1,0,0.1,0.1c0.1,0,0.2,0.1,0.3,0.1c0,0,0,0,0,0c0.2,0.1,0.4,0.1,0.6,0.2c0,0,0,0,0,0c0,0,0.1,0,0.1,0
|
||||
c0.1,0,0.2,0.1,0.4,0.1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0
|
||||
c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0
|
||||
c0,0,0.1,0,0.1,0c0.1,0,0.3,0,0.4,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0.2,0,0.4-0.1,0.7-0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0
|
||||
c0.1,0,0.2,0,0.3-0.1c0.1,0,0.2,0,0.2-0.1c0.1,0,0.2-0.1,0.3-0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0.2-0.1,0.3-0.1,0.4-0.2
|
||||
c0.1,0,0.1,0,0.2-0.1c0.2-0.1,0.4-0.2,0.5-0.3l0.1-21.8C820.7,352.4,820.5,352.5,820.4,352.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st50" d="M694.7,98.3l17.5-10.2c2.2-1.3,5.9-1.3,8.1,0l274.5,158.5c2.2,1.3,2.3,3.4,0,4.7l-17.5,10.2L694.7,98.3z"/>
|
||||
</g>
|
||||
<polygon class="st49" points="612.5,197.7 705.4,251.4 799.3,197.7 705.4,144 "/>
|
||||
<g>
|
||||
<polygon class="st45" points="613.2,36.1 690.4,80.7 768.5,36.1 690.4,-8.5 "/>
|
||||
<polygon class="st48" points="633.2,36.1 690.5,3 748.3,36.1 690.5,69.2 "/>
|
||||
<polygon class="st51" points="613.2,36.1 613.2,197.8 690.4,242.3 690.4,80.7 "/>
|
||||
<polygon class="st48" points="690.4,80.7 690.4,242.3 768.5,197.8 768.5,36.1 "/>
|
||||
</g>
|
||||
<polygon class="st49" points="717.8,258.5 810.7,312.1 904.6,258.5 810.7,204.8 "/>
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="st45" points="746.6,61 759.3,53.6 759.3,72 746.6,79.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="746.7,122 746.7,103.7 759.4,96.4 759.5,114.7 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="746.7,100.7 746.6,82.4 759.4,75 759.4,93.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="746.8,164.7 746.8,146.4 759.5,139.1 759.6,157.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="746.8,143.4 746.7,125.1 759.5,117.7 759.5,136 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="746.9,186.1 746.9,167.8 759.6,160.4 759.6,178.7 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="747,207.4 746.9,189.1 759.7,181.8 759.7,200.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="730.9,131.1 730.9,112.8 743.6,105.5 743.7,123.8 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="730.9,109.8 730.8,91.5 743.5,84.1 743.6,102.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="730.8,88.4 730.7,70.1 743.5,62.8 743.5,81.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="731,173.8 731,155.5 743.7,148.2 743.8,166.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="731,152.5 730.9,134.2 743.7,126.8 743.7,145.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="731.2,216.5 731.1,198.2 743.8,190.9 743.9,209.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="731.1,195.2 731,176.9 743.8,169.5 743.8,187.8 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="715,118.9 715,100.6 727.7,93.3 727.8,111.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="715,97.6 714.9,79.3 727.7,71.9 727.7,90.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="715.3,204.3 715.2,186 728,178.7 728,197 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="715.2,183 715.2,164.7 727.9,157.3 728,175.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="715.2,161.6 715.1,143.3 727.9,136 727.9,154.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="715.1,140.3 715.1,122 727.8,114.6 727.9,132.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="715.4,225.7 715.3,207.4 728,200 728.1,218.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="699.2,128 699.2,109.7 711.9,102.4 712,120.7 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="699.2,106.7 699.1,88.4 711.9,81 711.9,99.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="699.4,192.1 699.4,173.8 712.1,166.4 712.2,184.7 "/>
|
||||
</g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st45" points="699.4,170.7 699.3,152.4 712.1,145.1 712.1,163.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="699.3,149.4 699.2,131.1 712,123.7 712,142 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="699.5,234.8 699.5,216.5 712.2,209.1 712.3,227.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="699.5,213.4 699.4,195.1 712.2,187.8 712.2,206.1 "/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon class="st45" points="718.1,7.9 795.4,52.5 873.4,7.9 795.4,-36.7 "/>
|
||||
<polygon class="st48" points="738.1,7.9 795.4,-25.2 853.2,7.9 795.4,41 "/>
|
||||
<polygon class="st51" points="718.1,7.9 718.1,258.7 795.4,303.3 795.4,52.5 "/>
|
||||
<g>
|
||||
<line class="st52" x1="781.7" y1="279.7" x2="731.8" y2="250.8"/>
|
||||
<line class="st52" x1="781.7" y1="265.1" x2="731.8" y2="236.2"/>
|
||||
<line class="st52" x1="781.7" y1="250.4" x2="731.8" y2="221.6"/>
|
||||
<line class="st52" x1="781.7" y1="235.8" x2="731.8" y2="207"/>
|
||||
<line class="st52" x1="781.7" y1="221.2" x2="731.8" y2="192.4"/>
|
||||
<line class="st52" x1="781.7" y1="206.6" x2="731.8" y2="177.7"/>
|
||||
<line class="st52" x1="781.7" y1="192" x2="731.8" y2="163.1"/>
|
||||
<line class="st52" x1="781.7" y1="177.3" x2="731.8" y2="148.5"/>
|
||||
<line class="st52" x1="781.7" y1="162.7" x2="731.8" y2="133.9"/>
|
||||
<line class="st52" x1="781.7" y1="148.1" x2="731.8" y2="119.3"/>
|
||||
<line class="st52" x1="781.7" y1="133.5" x2="731.8" y2="104.6"/>
|
||||
<line class="st52" x1="781.7" y1="118.8" x2="731.8" y2="90"/>
|
||||
<line class="st52" x1="781.7" y1="104.2" x2="731.8" y2="75.4"/>
|
||||
<line class="st52" x1="781.7" y1="89.6" x2="731.8" y2="60.8"/>
|
||||
<line class="st52" x1="781.7" y1="75" x2="731.8" y2="46.1"/>
|
||||
<line class="st52" x1="731.8" y1="31.5" x2="781.7" y2="60.4"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st52" x1="675.9" y1="217.1" x2="625.9" y2="188.2"/>
|
||||
<line class="st52" x1="675.9" y1="201.3" x2="625.9" y2="172.4"/>
|
||||
<line class="st52" x1="675.9" y1="185.5" x2="625.9" y2="156.6"/>
|
||||
<line class="st52" x1="675.9" y1="169.7" x2="625.9" y2="140.8"/>
|
||||
<line class="st52" x1="675.9" y1="153.9" x2="625.9" y2="125"/>
|
||||
<line class="st52" x1="675.9" y1="138.1" x2="625.9" y2="109.3"/>
|
||||
<line class="st52" x1="675.9" y1="122.3" x2="625.9" y2="93.5"/>
|
||||
<line class="st52" x1="675.9" y1="106.5" x2="625.9" y2="77.7"/>
|
||||
<line class="st52" x1="625.9" y1="61.9" x2="675.9" y2="90.7"/>
|
||||
</g>
|
||||
<polygon class="st48" points="795.4,52.5 795.4,303.3 873.4,258.7 873.4,7.9 "/>
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.2,29.8 865,22.5 865,40.8 852.3,48.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.4,90.8 852.3,72.5 865.1,65.2 865.1,83.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.3,69.5 852.3,51.2 865,43.8 865.1,62.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.5,133.5 852.5,115.2 865.2,107.9 865.3,126.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.5,112.2 852.4,93.9 865.1,86.5 865.2,104.8 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.6,154.9 852.5,136.6 865.3,129.2 865.3,147.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.6,176.3 852.6,158 865.3,150.6 865.4,168.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.7,197.6 852.6,179.3 865.4,171.9 865.4,190.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.6,100 836.5,81.7 849.3,74.3 849.3,92.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.5,78.6 836.5,60.3 849.2,53 849.3,71.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.5,57.3 836.4,39 849.2,31.6 849.2,49.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.7,142.7 836.7,124.4 849.4,117 849.5,135.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.6,121.3 836.6,103 849.3,95.7 849.4,114 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.9,206.7 836.8,188.4 849.6,181.1 849.6,199.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.8,185.4 836.8,167.1 849.5,159.7 849.6,178 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.8,164 836.7,145.7 849.5,138.4 849.5,156.7 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="820.7,87.7 820.7,69.4 833.4,62.1 833.5,80.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="820.7,66.4 820.6,48.1 833.3,40.7 833.4,59 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="821,173.2 820.9,154.9 833.7,147.5 833.7,165.8 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="820.9,151.8 820.8,133.5 833.6,126.1 833.6,144.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="820.8,130.4 820.8,112.2 833.5,104.8 833.6,123.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="820.8,109.1 820.7,90.8 833.5,83.4 833.5,101.7 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="821.1,215.9 821,197.6 833.8,190.2 833.8,208.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="821,194.5 821,176.2 833.7,168.8 833.8,187.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="804.9,96.9 804.9,78.6 817.6,71.2 817.7,89.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="804.9,75.5 804.8,57.2 817.5,49.9 817.6,68.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="805.1,160.9 805,142.6 817.8,135.3 817.8,153.6 "/>
|
||||
</g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st45" points="805,139.6 805,121.3 817.7,113.9 817.8,132.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="805,118.2 804.9,99.9 817.7,92.6 817.7,110.9 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="805.2,203.6 805.2,185.3 817.9,178 818,196.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="805.2,182.3 805.1,164 817.8,156.6 817.9,174.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="805.3,225 805.2,206.7 818,199.3 818,217.6 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.4,240.9 852.3,222.6 865.1,215.3 865.1,233.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.3,219.6 852.3,201.3 865,193.9 865.1,212.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="852.5,262.3 852.4,244 865.1,236.6 865.2,254.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.6,250 836.5,231.7 849.3,224.4 849.3,242.7 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.5,228.7 836.5,210.4 849.2,203 849.3,221.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="836.6,271.4 836.6,253.1 849.3,245.7 849.4,264 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="820.7,237.8 820.7,219.5 833.4,212.2 833.5,230.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="820.8,280.5 820.8,262.2 833.5,254.9 833.6,273.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="820.8,259.2 820.7,240.9 833.5,233.5 833.5,251.8 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="804.9,246.9 804.9,228.6 817.6,221.3 817.7,239.6 "/>
|
||||
</g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st45" points="805,289.6 805,271.3 817.7,264 817.8,282.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st45" points="805,268.3 804.9,250 817.7,242.6 817.7,260.9 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st48" points="340.7,73.3 340.8,130.3 291.2,159 291,102 "/>
|
||||
<polygon class="st51" points="296,104.8 335.7,81.9 335.8,127.5 296.1,150.4 "/>
|
||||
<polygon class="st51" points="291.2,159 203.7,108.2 203.5,51.1 291,102 "/>
|
||||
<polygon class="st50" points="208.7,105.3 208.5,59.8 286,104.8 286.1,150.3 "/>
|
||||
<g>
|
||||
<polygon class="st45" points="291,102 203.5,51.1 253.2,22.4 340.7,73.3 "/>
|
||||
</g>
|
||||
<path class="st45" d="M281-26.8c-6.9-4-13.1-3.9-17.2-0.7l-16.1,9.2l0.1,0c-4.2,2.2-6.8,7.3-6.9,14.5c0,12.2,7.4,26.8,17.3,35.1
|
||||
l-5.7,3.2l6.1,10.5l-6.1,3.5l6.1,10.5l-6.1,3.5l6.1,3.5l6.1,3.5l9,5.2l17.6-10.2l0.1-37c9.8-5.1,11-10.3,11-16.1
|
||||
C302.5-2.7,293.3-19.7,281-26.8z"/>
|
||||
<polygon class="st48" points="273.8,37.8 291.5,27.6 291.5,65.2 273.7,74.8 "/>
|
||||
<g>
|
||||
<path class="st51" d="M263.3-16.6c12.3,7.1,22.3,24.4,22.3,38.6c0,9.8-4.8,15.5-11.8,15.8l-0.1,37l-9-5.2l-6.1-3.5l-6.1-3.5
|
||||
l6.1-3.5l-6.1-10.5l6.1-3.5l-6.1-10.5l5.7-3.2c-10-8.3-17.4-22.9-17.3-35.1C241-18,251-23.7,263.3-16.6z M263.3,5.8
|
||||
c3.6,2.1,6.5,0.4,6.5-3.7c0-4.1-2.9-9.1-6.5-11.2c-3.6-2.1-6.5-0.4-6.5,3.7C256.8-1.3,259.7,3.7,263.3,5.8"/>
|
||||
</g>
|
||||
<path class="st48" d="M263.3,5.8c3.6,2.1,6.5,0.4,6.5-3.7s-2.9-9.1-6.5-11.2s-6.5-0.4-6.5,3.7S259.7,3.7,263.3,5.8z"/>
|
||||
<polygon class="st45" points="335.7,81.9 332.7,83.7 332.8,125.5 296.1,146.6 296.1,150.4 335.8,127.5 "/>
|
||||
<polygon class="st48" points="208.5,59.8 211.7,61.7 211.6,103.9 286.1,146.6 286.1,150.4 208.7,105.3 "/>
|
||||
<polygon class="st53" points="291.5,65.2 309.5,55.2 291.5,44.7 "/>
|
||||
</g>
|
||||
<polygon class="st54" points="151,95.6 151.1,148.4 105.1,175 105,122.1 "/>
|
||||
<polygon class="st55" points="109.6,124.8 146.3,103.6 146.5,145.8 109.7,167 "/>
|
||||
<polygon class="st56" points="105.1,175 24,127.9 23.9,75 105,122.1 "/>
|
||||
<polygon class="st55" points="28.7,125.2 28.5,83.1 100.3,124.8 100.4,166.9 "/>
|
||||
<g>
|
||||
<polygon class="st57" points="105,122.1 23.9,75 69.9,48.5 151,95.6 "/>
|
||||
</g>
|
||||
<path class="st0" d="M95.7,2.8c-6.4-3.7-12.1-3.7-15.9-0.6l-14.9,8.5l0.1,0c-3.9,2.1-6.3,6.7-6.4,13.4c0,11.3,6.8,24.8,16.1,32.5
|
||||
l-5.3,3l5.6,9.7l-5.7,3.2l5.6,9.7l-5.7,3.2l5.7,3.3l5.7,3.3L89,97l16.3-9.5l0.1-34.2c9.1-4.8,10.2-9.5,10.2-14.9
|
||||
C115.6,25.2,107.1,9.4,95.7,2.8z"/>
|
||||
<polygon class="st58" points="89,62.7 105.4,53.2 105.4,88.1 89,97 "/>
|
||||
<g>
|
||||
<path class="st59" d="M79.3,12.3C90.8,18.9,100,34.9,100,48.1c0,9-4.4,14.4-10.9,14.7L89,97l-8.4-4.8l-5.7-3.3l-5.7-3.3l5.7-3.2
|
||||
l-5.6-9.7l5.7-3.2l-5.6-9.7l5.3-3c-9.2-7.7-16.1-21.2-16.1-32.5C58.6,11,67.9,5.7,79.3,12.3z M79.3,33c3.3,1.9,6,0.4,6-3.4
|
||||
c0-3.8-2.7-8.5-6-10.4c-3.3-1.9-6-0.4-6,3.4C73.3,26.5,75.9,31.1,79.3,33"/>
|
||||
</g>
|
||||
<path class="st58" d="M79.3,33c3.3,1.9,6,0.4,6-3.4c0-3.8-2.7-8.5-6-10.4c-3.3-1.9-6-0.4-6,3.4C73.3,26.5,75.9,31.1,79.3,33z"/>
|
||||
<polygon class="st57" points="146.3,103.6 143.6,105.2 143.7,143.9 109.7,163.5 109.7,167 146.5,145.8 "/>
|
||||
<polygon class="st57" points="28.5,83.1 31.5,84.8 31.4,123.9 100.5,163.5 100.4,167 28.7,125.2 "/>
|
||||
<polygon class="st54" points="105.4,88.1 122.1,78.8 105.4,69.1 "/>
|
||||
<polygon class="st60" points="-33.7,189.5 -42.9,189.5 -44.9,184.1 -31.7,184.1 "/>
|
||||
<g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st61" points="-6.6,127.8 -11.8,129.2 -18.4,125.4 -16,122.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st62" points="-6.6,127.8 -6.8,209.3 -12,210.7 -11.8,129.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st63" points="-11.8,129.2 -12,210.7 -18.6,206.9 -18.4,125.4 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st54" points="41.4,90.6 41.2,129.6 37.7,130.5 37.8,88.5 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st56" points="37.8,88.5 37.7,130.5 33.2,127.9 33.3,85.9 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st54" points="63.5,103.4 63.3,142.4 59.8,143.3 59.9,101.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st56" points="59.9,101.3 59.8,143.3 55.3,140.7 55.4,98.7 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st54" points="52.4,97 52.3,136 48.7,136.9 48.9,94.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st56" points="48.9,94.9 48.7,136.9 44.2,134.3 44.4,92.3 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st54" points="74.5,109.9 74.3,148.9 70.8,149.8 71,107.8 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st56" points="71,107.8 70.8,149.8 66.3,147.2 66.5,105.2 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st54" points="85.5,116.2 85.4,155.2 81.9,156.1 82,114.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st56" points="82,114.1 81.9,156.1 77.4,153.6 77.5,111.5 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st54" points="96.6,122.7 96.4,161.7 92.9,162.6 93.1,120.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st56" points="93.1,120.6 92.9,162.6 88.4,160 88.6,118 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<circle class="st64" cx="92.3" cy="220.5" r="13.1"/>
|
||||
<circle class="st65" cx="123.4" cy="220.5" r="13.1"/>
|
||||
<circle class="st66" cx="154.4" cy="220.5" r="13.1"/>
|
||||
<circle class="st67" cx="185.5" cy="220.5" r="13.1"/>
|
||||
<circle class="st68" cx="216.6" cy="220.5" r="13.1"/>
|
||||
</g>
|
||||
<polygon class="st54" points="28.7,125.2 28.5,83.1 31.5,84.8 31.4,123.9 "/>
|
||||
<g>
|
||||
<polygon class="st0" points="278.1,227.9 197.1,180.8 267.1,140.5 348.2,187.6 "/>
|
||||
</g>
|
||||
<polygon class="st65" points="324.1,148.5 324.3,201.3 278.3,227.9 278.1,175 "/>
|
||||
<polygon class="st66" points="282.8,177.7 319.5,156.5 319.6,198.6 282.9,219.9 "/>
|
||||
<polygon class="st66" points="278.3,227.9 197.2,180.8 197.1,127.9 278.1,175 "/>
|
||||
<polygon class="st67" points="201.8,178.1 201.7,136 273.5,177.7 273.6,219.8 "/>
|
||||
<g>
|
||||
<polygon class="st64" points="278.1,175 197.1,127.9 243.1,101.4 324.1,148.5 "/>
|
||||
</g>
|
||||
<polygon class="st64" points="319.5,156.5 316.7,158.1 316.9,196.8 282.9,216.4 282.9,219.9 319.6,198.6 "/>
|
||||
<polygon class="st64" points="201.7,136 204.7,137.7 204.5,176.8 273.6,216.4 273.6,219.9 201.8,178.1 "/>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st65" points="214.4,143.3 214.2,182.4 210.7,183.3 210.8,141.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st66" points="210.8,141.2 210.7,183.3 206.2,180.7 206.4,138.7 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st65" points="224.2,149.1 224,188.1 220.5,189 220.6,147 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st66" points="220.6,147 220.5,189 216,186.4 216.1,144.4 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st65" points="234,154.7 233.8,193.8 230.3,194.7 230.4,152.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st66" points="230.4,152.6 230.3,194.7 225.8,192.1 225.9,150.1 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st65" points="243.7,160.4 243.6,199.4 240,200.4 240.2,158.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st66" points="240.2,158.3 240,200.4 235.6,197.8 235.7,155.7 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st65" points="253.5,166.2 253.4,205.2 249.8,206.1 250,164.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st66" points="250,164.1 249.8,206.1 245.3,203.5 245.5,161.5 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st65" points="263.3,171.7 263.2,210.7 259.6,211.7 259.8,169.6 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st66" points="259.8,169.6 259.6,211.7 255.1,209.1 255.3,167 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g class="st11">
|
||||
<g>
|
||||
<polygon class="st65" points="273.1,177.5 272.9,216.5 269.4,217.5 269.6,175.4 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="st66" points="269.6,175.4 269.4,217.5 264.9,214.9 265.1,172.9 "/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<polygon class="st65" points="201.8,178.1 201.7,136 204.7,137.7 204.5,176.8 "/>
|
||||
<g>
|
||||
<circle class="st57" cx="87.2" cy="196.9" r="12.7"/>
|
||||
<circle class="st54" cx="109.6" cy="196.9" r="12.7"/>
|
||||
<circle class="st69" cx="132" cy="196.9" r="12.7"/>
|
||||
<circle class="st56" cx="154.4" cy="196.9" r="12.7"/>
|
||||
<circle class="st55" cx="176.7" cy="196.9" r="12.7"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 110 KiB |
|
After Width: | Height: | Size: 147 KiB |
|
After Width: | Height: | Size: 713 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 376 B |
|
After Width: | Height: | Size: 56 KiB |
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_2_);}
|
||||
.st2{fill:#FFFFFF;}
|
||||
.st3{opacity:5.000000e-02;fill:#00FFFF;}
|
||||
.st4{opacity:0.5;fill:url(#SVGID_3_);}
|
||||
.st5{opacity:0.5;fill:url(#SVGID_4_);}
|
||||
.st6{opacity:0.5;fill:url(#SVGID_5_);}
|
||||
.st7{opacity:0.5;fill:url(#SVGID_6_);}
|
||||
.st8{opacity:0.5;fill:url(#SVGID_7_);}
|
||||
.st9{opacity:0.5;fill:url(#SVGID_8_);}
|
||||
.st10{opacity:0.5;fill:url(#SVGID_9_);}
|
||||
.st11{fill:url(#SVGID_10_);}
|
||||
</style>
|
||||
<title>header-1</title>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0" y1="540" x2="1920" y2="540">
|
||||
<stop offset="0" style="stop-color:#193672"/>
|
||||
<stop offset="0.1722" style="stop-color:#1C3E83"/>
|
||||
<stop offset="0.4707" style="stop-color:#214899"/>
|
||||
<stop offset="0.753" style="stop-color:#244FA7"/>
|
||||
<stop offset="1" style="stop-color:#2551AC"/>
|
||||
</linearGradient>
|
||||
<rect class="st0" width="1920" height="1080"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="254.9923" y1="1001.1948" x2="1665.8153" y2="1001.1948">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M1665.8,1033.4h-25.3l-105-253.1c-3.5-8.9-10.8-17.2-21.3-24.2c-1-0.7-2.1-1.3-3.2-1.9
|
||||
c-7.9-4.6-17.2-8.3-27.3-11L990.3,606c-25.8-7.2-55.7-7.2-81.4,0L422.2,743.5c-22.9,6.4-40.2,17.9-47.9,32c-1,1.7-1.8,3.4-2.4,5.1
|
||||
l-94.3,252.8H255v69.7h0.2c1.2,11.3,8.5,22.3,21.1,31.3l344.3,246.9c2.2,1.6,4.5,3.1,7,4.5c17.6,10.2,41.6,16,66.7,16l544.3-0.2
|
||||
c28.5,0,55.4-7.6,72.9-20.5l334.5-247c12.1-9,18.9-19.8,19.7-31h0.1V1033.4z"/>
|
||||
<path class="st2" d="M1511.1,694.7c1.1,0.6,2.1,1.3,3.2,1.9c10.4,6.9,17.8,15.2,21.3,24.2l127.7,307.8c6.7,16.1,0.4,33-17.2,46
|
||||
l-334.5,247c-17.6,13-44.4,20.5-72.9,20.5l-544.3,0.2c-25.1,0-49.1-5.9-66.7-16c-2.4-1.4-4.8-2.9-7-4.5l-344.3-246.9
|
||||
c-18.1-12.8-25.2-29.7-19.3-45.8l114.9-308c0.7-1.7,1.5-3.4,2.4-5.1c7.7-14,25-25.6,47.9-32l486.7-137.4c25.7-7.2,55.6-7.2,81.4,0
|
||||
l493.5,137.1C1493.9,686.4,1503.2,690.1,1511.1,694.7z"/>
|
||||
<polygon class="st3" points="456,990.7 512.9,838.2 949.7,714.9 1397.3,839.3 1462,995.2 1226.7,1169 704.9,1169.1 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="657.573" y1="855.9921" x2="805.0192" y2="-344.8609">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.5"/>
|
||||
<stop offset="1" style="stop-color:#2551AC;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st4" points="512.9,838.2 512.9,-203.8 949.7,-327.1 949.7,714.9 "/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="1106.2739" y1="803.5502" x2="1240.7125" y2="-291.3645">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.5"/>
|
||||
<stop offset="1" style="stop-color:#2551AC;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st5" points="949.7,714.9 1397.3,839.3 1397.3,-202.7 949.7,-327.1 "/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="1357.6664" y1="982.4207" x2="1501.614" y2="-189.9388">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.5"/>
|
||||
<stop offset="1" style="stop-color:#2551AC;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st6" points="1462,995.2 1397.3,839.3 1397.3,-202.7 1462,-46.8 "/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="1014.6425" y1="1014.8824" x2="1674.0571" y2="107.2761">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.75"/>
|
||||
<stop offset="4.057624e-02" style="stop-color:#00FFFF;stop-opacity:0.6942"/>
|
||||
<stop offset="0.5449" style="stop-color:#00FFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st7" points="1226.7,1169 1226.7,126.9 1462,-46.8 1462,995.2 "/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="627.8306" y1="1113.361" x2="1303.705" y2="183.0997">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.75"/>
|
||||
<stop offset="5.840200e-02" style="stop-color:#00FFFF;stop-opacity:0.6942"/>
|
||||
<stop offset="0.7843" style="stop-color:#00FFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st8" points="1226.7,1169.2 1226.7,127.2 704.9,127.2 704.9,1169.4 "/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="190.6372" y1="797.8572" x2="778.2929" y2="-10.9815">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.5"/>
|
||||
<stop offset="1" style="stop-color:#2551AC;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st9" points="512.9,838.2 512.9,-203.8 456,-51.4 456,990.7 "/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="332.1477" y1="900.6705" x2="828.7885" y2="217.1031">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.75"/>
|
||||
<stop offset="4.092821e-02" style="stop-color:#00FFFF;stop-opacity:0.6942"/>
|
||||
<stop offset="0.5496" style="stop-color:#00FFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st10" points="704.9,1169.1 704.9,127.1 456,-51.4 456,990.7 "/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="474.6914" y1="1173.8016" x2="509.3518" y2="678.1345">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
<stop offset="1" style="stop-color:#326CE5;stop-opacity:0.5"/>
|
||||
</linearGradient>
|
||||
<path class="st11" d="M704.9,1169.1L456,990.7V674.4l-40.9,11.8c0,0-32.6,6.2-47.5,46s-107.3,287.7-107.3,287.7
|
||||
s-18.7,27.5,8.8,49.1s138.7,100.1,138.7,100.1H704.9z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.7 KiB |
@@ -0,0 +1,192 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_2_);}
|
||||
.st2{fill:url(#SVGID_3_);}
|
||||
.st3{fill:url(#SVGID_4_);}
|
||||
.st4{fill:url(#SVGID_5_);}
|
||||
.st5{fill:url(#SVGID_6_);}
|
||||
.st6{fill:url(#SVGID_7_);}
|
||||
.st7{fill:url(#SVGID_8_);}
|
||||
.st8{fill:url(#SVGID_9_);}
|
||||
.st9{fill:url(#SVGID_10_);}
|
||||
.st10{fill:url(#SVGID_11_);}
|
||||
.st11{fill:url(#SVGID_12_);}
|
||||
.st12{fill:url(#SVGID_13_);}
|
||||
.st13{fill:url(#SVGID_14_);}
|
||||
.st14{fill:url(#SVGID_15_);}
|
||||
.st15{fill:url(#SVGID_16_);}
|
||||
.st16{fill:url(#SVGID_17_);}
|
||||
.st17{fill:url(#SVGID_18_);}
|
||||
.st18{fill:url(#SVGID_19_);}
|
||||
.st19{fill:url(#SVGID_20_);}
|
||||
.st20{fill:url(#SVGID_21_);}
|
||||
.st21{fill:url(#SVGID_22_);}
|
||||
.st22{fill:url(#SVGID_23_);}
|
||||
.st23{fill:url(#SVGID_24_);}
|
||||
.st24{fill:url(#SVGID_25_);}
|
||||
.st25{fill:url(#SVGID_26_);}
|
||||
.st26{fill:url(#SVGID_27_);}
|
||||
</style>
|
||||
<title>header-1</title>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="1.5375" y1="543" x2="1921.5375" y2="543">
|
||||
<stop offset="0" style="stop-color:#1F438F"/>
|
||||
<stop offset="8.553427e-02" style="stop-color:#22499C"/>
|
||||
<stop offset="0.3344" style="stop-color:#2958BC"/>
|
||||
<stop offset="0.5751" style="stop-color:#2E63D2"/>
|
||||
<stop offset="0.8018" style="stop-color:#316AE0"/>
|
||||
<stop offset="1" style="stop-color:#326CE5"/>
|
||||
</linearGradient>
|
||||
<rect x="1.5" y="3" class="st0" width="1920" height="1080"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="1200.9651" y1="541.5" x2="2305.6621" y2="541.5">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st1" points="1753.3,3 1310.4,216.3 1201,695.6 1507.5,1080 1999.1,1080 2305.7,695.6 2196.3,216.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="831.9651" y1="910.5" x2="1936.6621" y2="910.5">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st2" points="1384.3,372 941.4,585.3 832,1064.6 1138.5,1449 1630.1,1449 1936.7,1064.6 1827.3,585.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="305.9651" y1="858.5" x2="986.5375" y2="858.5">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st3" points="646.3,526.7 373.4,658.2 306,953.5 494.8,1190.3 797.7,1190.3 986.5,953.5 919.1,658.2 "/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="51.9651" y1="126.6706" x2="160.5375" y2="126.6706">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st4" points="106.3,73.7 62.7,94.7 52,141.8 82.1,179.6 130.4,179.6 160.5,141.8 149.8,94.7 "/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="601.5375" y1="48.5" x2="1061.5375" y2="48.5">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st5" points="831.5,-175.7 647.1,-86.9 601.5,112.7 729.2,272.7 933.9,272.7 1061.5,112.7 1016,-86.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="869.9651" y1="74.5" x2="1974.6621" y2="74.5">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st6" points="1422.3,-464 979.4,-250.7 870,228.6 1176.5,613 1668.1,613 1974.7,228.6 1865.3,-250.7 "/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="984.0636" y1="35.7901" x2="1139.0114" y2="35.7901">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st7" points="1061.5,-39.7 999.4,-9.8 984.1,57.4 1027.1,111.3 1096,111.3 1139,57.4 1123.7,-9.8 "/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="1392.2378" y1="4.9912" x2="1455.4196" y2="4.9912">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st8" points="1423.8,-25.8 1398.5,-13.6 1392.2,13.8 1409.8,35.8 1437.9,35.8 1455.4,13.8 1449.2,-13.6 "/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="1344.4717" y1="222.8407" x2="1534.5992" y2="222.8407">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st9" points="1439.5,130.2 1363.3,166.9 1344.5,249.4 1397.2,315.5 1481.8,315.5 1534.6,249.4 1515.8,166.9 "/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="1383.6548" y1="113.4315" x2="1587.7957" y2="113.4315">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st10" points="1485.7,13.9 1403.9,53.3 1383.7,141.9 1440.3,212.9 1531.2,212.9 1587.8,141.9 1567.6,53.3 "/>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="1404.6149" y1="226.06" x2="1495.9756" y2="226.06">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st11" points="1450.3,181.5 1413.7,199.2 1404.6,238.8 1430,270.6 1470.6,270.6 1496,238.8 1486.9,199.2 "/>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="1619.7014" y1="101.031" x2="1656.3763" y2="101.031">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st12" points="1638,83.2 1623.3,90.2 1619.7,106.1 1629.9,118.9 1646.2,118.9 1656.4,106.1 1652.7,90.2 "/>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="1450.3247" y1="266.0819" x2="1615.6708" y2="266.0819">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st13" points="1533,185.5 1466.7,217.4 1450.3,289.2 1496.2,346.7 1569.8,346.7 1615.7,289.2 1599.3,217.4 "/>
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="1734.5513" y1="72.8096" x2="1970.6365" y2="72.8096">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st14" points="1852.6,-42.3 1757.9,3.3 1734.6,105.7 1800.1,187.9 1905.1,187.9 1970.6,105.7 1947.3,3.3 "/>
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="1519.6564" y1="388.5282" x2="1740.0161" y2="388.5282">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st15" points="1629.8,281.1 1541.5,323.7 1519.7,419.3 1580.8,495.9 1678.9,495.9 1740,419.3 1718.2,323.7 "/>
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="1829.2893" y1="400.9662" x2="1963.7749" y2="400.9662">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st16" points="1896.5,335.4 1842.6,361.4 1829.3,419.7 1866.6,466.5 1926.5,466.5 1963.8,419.7 1950.5,361.4 "/>
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="1472.7688" y1="599.9774" x2="1655.9351" y2="599.9774">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st17" points="1564.4,510.7 1490.9,546.1 1472.8,625.5 1523.6,689.3 1605.1,689.3 1655.9,625.5 1637.8,546.1 "/>
|
||||
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="1951.7446" y1="889.1893" x2="2063.9102" y2="889.1893">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st18" points="2007.8,834.5 1962.9,856.2 1951.7,904.8 1982.9,943.9 2032.8,943.9 2063.9,904.8 2052.8,856.2 "/>
|
||||
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="1507.3427" y1="965.2722" x2="1727.3619" y2="965.2722">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st19" points="1617.4,858 1529.1,900.5 1507.3,996 1568.4,1072.5 1666.3,1072.5 1727.4,996 1705.6,900.5 "/>
|
||||
<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="1376.7823" y1="939.2516" x2="1527.4663" y2="939.2516">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st20" points="1452.1,865.8 1391.7,894.9 1376.8,960.3 1418.6,1012.7 1485.7,1012.7 1527.5,960.3 1512.5,894.9 "/>
|
||||
<linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="1341.5925" y1="1133.751" x2="1454.0042" y2="1133.751">
|
||||
<stop offset="0" style="stop-color:#3D98D3;stop-opacity:0.5"/>
|
||||
<stop offset="1" style="stop-color:#3D98D3;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st21" points="1397.8,1079 1352.7,1100.7 1341.6,1149.4 1372.8,1188.5 1422.8,1188.5 1454,1149.4 1442.9,1100.7 "/>
|
||||
<linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="1142.9673" y1="770.7019" x2="1225.729" y2="770.7019">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st22" points="1184.3,730.4 1151.2,746.3 1143,782.2 1165.9,811 1202.8,811 1225.7,782.2 1217.5,746.3 "/>
|
||||
<linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="913.8398" y1="756.9331" x2="1085.1603" y2="756.9331">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st23" points="999.5,673.4 930.8,706.5 913.8,780.8 961.4,840.4 1037.6,840.4 1085.2,780.8 1068.2,706.5 "/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-35.7669" y1="108.5113" x2="16.6464" y2="108.5113">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st24" points="-9.6,83 -30.6,93.1 -35.8,115.8 -21.2,134.1 2.1,134.1 16.6,115.8 11.5,93.1 "/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-162.9395" y1="165.9779" x2="124.6947" y2="165.9779">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st25" points="-19.1,25.8 -134.5,81.3 -162.9,206.1 -83.1,306.2 44.9,306.2 124.7,206.1 96.2,81.3 "/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-126.254" y1="346.7313" x2="160.1068" y2="346.7313">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.2"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st26" points="16.9,207.1 -97.9,262.4 -126.3,386.7 -46.8,486.3 80.6,486.3 160.1,386.7 131.7,262.4 "/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,230 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:#1F438F;}
|
||||
.st2{fill:#0C1B39;}
|
||||
.st3{fill:#122856;}
|
||||
.st4{fill:#162F65;}
|
||||
.st5{fill:#1B397A;}
|
||||
.st6{fill:#1F4390;}
|
||||
.st7{fill:#244EA5;}
|
||||
.st8{fill:#2958BA;}
|
||||
.st9{fill:#2D62D0;}
|
||||
.st10{fill:#326CE5;}
|
||||
.st11{fill:url(#SVGID_2_);}
|
||||
.st12{fill:none;stroke:url(#SVGID_3_);stroke-width:4;stroke-miterlimit:10;}
|
||||
.st13{fill:none;stroke:url(#SVGID_4_);stroke-width:4;stroke-miterlimit:10;}
|
||||
.st14{fill:none;stroke:url(#SVGID_5_);stroke-width:4;stroke-miterlimit:10;}
|
||||
.st15{fill:none;stroke:url(#SVGID_6_);stroke-width:4;stroke-miterlimit:10;}
|
||||
.st16{fill:none;stroke:url(#SVGID_7_);stroke-width:4;stroke-miterlimit:10;}
|
||||
.st17{fill:none;stroke:url(#SVGID_8_);stroke-width:4;stroke-miterlimit:10;}
|
||||
.st18{fill:none;stroke:url(#SVGID_9_);stroke-width:4;stroke-miterlimit:10;}
|
||||
.st19{fill:url(#SVGID_10_);}
|
||||
.st20{fill:url(#SVGID_11_);}
|
||||
.st21{fill:#2C5EC8;}
|
||||
.st22{opacity:0.3;fill:#00FFFF;}
|
||||
.st23{opacity:0.5;fill:url(#SVGID_12_);}
|
||||
.st24{opacity:0.5;fill:url(#SVGID_13_);}
|
||||
.st25{opacity:0.5;fill:url(#SVGID_14_);}
|
||||
.st26{opacity:0.5;fill:url(#SVGID_15_);}
|
||||
.st27{opacity:0.5;fill:url(#SVGID_16_);}
|
||||
.st28{opacity:0.5;fill:url(#SVGID_17_);}
|
||||
.st29{opacity:0.5;fill:url(#SVGID_18_);}
|
||||
.st30{fill:url(#SVGID_19_);}
|
||||
</style>
|
||||
<title>header-1</title>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-2" y1="541.3376" x2="1918" y2="541.3376">
|
||||
<stop offset="0" style="stop-color:#193672"/>
|
||||
<stop offset="0.1722" style="stop-color:#1C3E83"/>
|
||||
<stop offset="0.4707" style="stop-color:#214899"/>
|
||||
<stop offset="0.753" style="stop-color:#244FA7"/>
|
||||
<stop offset="1" style="stop-color:#2551AC"/>
|
||||
</linearGradient>
|
||||
<rect x="-2" y="1.3" class="st0" width="1920" height="1080"/>
|
||||
<path class="st1" d="M1645.2,779.7c0.4,0.3,0.9,0.5,1.3,0.8c4.2,2.8,7.1,6.1,8.6,9.7l51.3,123.8c2.7,6.5,0.1,13.3-6.9,18.5
|
||||
l-134.5,99.3c-7.1,5.2-17.9,8.3-29.3,8.3l-218.9,0.1c-10.1,0-19.7-2.4-26.8-6.5c-1-0.6-1.9-1.2-2.8-1.8l-138.5-99.3
|
||||
c-7.3-5.2-10.1-11.9-7.8-18.4l46.2-123.9c0.3-0.7,0.6-1.4,1-2.1c3.1-5.6,10.1-10.3,19.3-12.9l195.8-55.3c10.3-2.9,22.4-2.9,32.7,0
|
||||
l198.5,55.1C1638.3,776.4,1642,777.9,1645.2,779.7z"/>
|
||||
<path class="st2" d="M1645.2,716.2c0.4,0.3,0.9,0.5,1.3,0.8c4.2,2.8,7.1,6.1,8.6,9.7l51.3,123.8c2.7,6.5,0.1,13.3-6.9,18.5
|
||||
L1565,968.3c-7.1,5.2-17.9,8.3-29.3,8.3l-218.9,0.1c-10.1,0-19.7-2.4-26.8-6.5c-1-0.6-1.9-1.2-2.8-1.8l-138.5-99.3
|
||||
c-7.3-5.2-10.1-11.9-7.8-18.4l46.2-123.9c0.3-0.7,0.6-1.4,1-2.1c3.1-5.6,10.1-10.3,19.3-12.9l195.8-55.3c10.3-2.9,22.4-2.9,32.7,0
|
||||
l198.5,55.1C1638.3,712.9,1642,714.4,1645.2,716.2z"/>
|
||||
<path class="st3" d="M1645.2,702.3c0.4,0.3,0.9,0.5,1.3,0.8c4.2,2.8,7.1,6.1,8.6,9.7l51.3,123.8c2.7,6.5,0.1,13.3-6.9,18.5
|
||||
L1565,954.4c-7.1,5.2-17.9,8.3-29.3,8.3l-218.9,0.1c-10.1,0-19.7-2.4-26.8-6.5c-1-0.6-1.9-1.2-2.8-1.8l-138.5-99.3
|
||||
c-7.3-5.2-10.1-11.9-7.8-18.4l46.2-123.9c0.3-0.7,0.6-1.4,1-2.1c3.1-5.6,10.1-10.3,19.3-12.9l195.8-55.3c10.3-2.9,22.4-2.9,32.7,0
|
||||
l198.5,55.1C1638.3,699,1642,700.5,1645.2,702.3z"/>
|
||||
<g>
|
||||
<path class="st4" d="M1317.1,923.6c-2.5,0-4.3-0.4-5.1-0.7l-122.2-87.6l34.5-92.4l190.9-53.9c1.3-0.4,2.9-0.6,4.6-0.6
|
||||
c1.7,0,3.4,0.2,4.7,0.6l194.6,54.1l38.7,93.3l-117.2,86.6c-0.8,0.2-2.4,0.6-4.5,0.6L1317.1,923.6z"/>
|
||||
<path class="st5" d="M1657.7,756.9l-117.2,86.6c-0.8,0.2-2.4,0.6-4.5,0.6l-218.9,0.1c-2.5,0-4.3-0.4-5.1-0.7l-122.2-87.6l34.5-92.4
|
||||
l190.9-53.9c1.3-0.4,2.9-0.6,4.6-0.6c1.7,0,3.4,0.2,4.7,0.6l194.6,54.1L1657.7,756.9z"/>
|
||||
<path class="st6" d="M1657.7,677.4L1540.5,764c-0.8,0.2-2.4,0.6-4.5,0.6l-218.9,0.1c-2.5,0-4.3-0.4-5.1-0.7l-122.2-87.6l34.5-92.4
|
||||
l190.9-53.9c1.3-0.4,2.9-0.6,4.6-0.6c1.7,0,3.4,0.2,4.7,0.6l194.6,54.1L1657.7,677.4z"/>
|
||||
<path class="st7" d="M1657.7,597.9l-117.2,86.6c-0.8,0.2-2.4,0.6-4.5,0.6l-218.9,0.1c-2.5,0-4.3-0.4-5.1-0.7l-122.2-87.6l34.5-92.4
|
||||
l190.9-53.9c1.3-0.4,2.9-0.6,4.6-0.6c1.7,0,3.4,0.2,4.7,0.6l194.6,54.1L1657.7,597.9z"/>
|
||||
<path class="st8" d="M1657.7,518.4L1540.5,605c-0.8,0.2-2.4,0.6-4.5,0.6l-218.9,0.1c-2.5,0-4.3-0.4-5.1-0.7l-122.2-87.6l34.5-92.4
|
||||
l190.9-53.9c1.3-0.4,2.9-0.6,4.6-0.6c1.7,0,3.4,0.2,4.7,0.6l194.6,54.1L1657.7,518.4z"/>
|
||||
<path class="st9" d="M1657.7,438.9l-117.2,86.6c-0.8,0.2-2.4,0.6-4.5,0.6l-218.9,0.1c-2.5,0-4.3-0.4-5.1-0.7l-122.2-87.6l34.5-92.4
|
||||
l190.9-53.9c1.3-0.4,2.9-0.6,4.6-0.6c1.7,0,3.4,0.2,4.7,0.6l194.6,54.1L1657.7,438.9z"/>
|
||||
<path class="st10" d="M1317.1,446.6c-2.5,0-4.3-0.4-5.1-0.7l-122.2-87.6l34.5-92.4l190.9-53.9c1.3-0.4,2.9-0.6,4.6-0.6
|
||||
c1.7,0,3.4,0.2,4.7,0.6l194.6,54.1l38.7,93.3L1540.5,446c-0.8,0.2-2.4,0.6-4.5,0.6L1317.1,446.6z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="1629.6337" y1="962.061" x2="1629.6337" y2="367.034">
|
||||
<stop offset="0" style="stop-color:#224899;stop-opacity:0"/>
|
||||
<stop offset="1" style="stop-color:#1E3F86;stop-opacity:0.9"/>
|
||||
</linearGradient>
|
||||
<path class="st11" d="M1707.4,367c0.2,5-2.6,9.9-8,13.9L1565,480.2c-3.6,2.6-8.1,4.7-13.1,6.1v475.7c5.1-1.4,9.6-3.5,13.1-6.1
|
||||
l134.5-99.3c5-3.7,7.7-8.2,7.9-12.8h0L1707.4,367L1707.4,367z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="1188.6139" y1="879.0763" x2="1313.1228" y2="879.0763">
|
||||
<stop offset="0" style="stop-color:#326CE5"/>
|
||||
<stop offset="0.1308" style="stop-color:#278DEB"/>
|
||||
<stop offset="0.3204" style="stop-color:#19B5F2"/>
|
||||
<stop offset="0.5062" style="stop-color:#0ED6F8"/>
|
||||
<stop offset="0.6848" style="stop-color:#06ECFC"/>
|
||||
<stop offset="0.853" style="stop-color:#02FAFE"/>
|
||||
<stop offset="1" style="stop-color:#00FFFF"/>
|
||||
</linearGradient>
|
||||
<line class="st12" x1="1312" y1="922.9" x2="1189.8" y2="835.3"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="1188.6139" y1="799.5819" x2="1313.1228" y2="799.5819">
|
||||
<stop offset="0" style="stop-color:#326CE5"/>
|
||||
<stop offset="0.1308" style="stop-color:#278DEB"/>
|
||||
<stop offset="0.3204" style="stop-color:#19B5F2"/>
|
||||
<stop offset="0.5062" style="stop-color:#0ED6F8"/>
|
||||
<stop offset="0.6848" style="stop-color:#06ECFC"/>
|
||||
<stop offset="0.853" style="stop-color:#02FAFE"/>
|
||||
<stop offset="1" style="stop-color:#00FFFF"/>
|
||||
</linearGradient>
|
||||
<line class="st13" x1="1312" y1="843.4" x2="1189.8" y2="755.8"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="1188.6139" y1="720.0875" x2="1313.1229" y2="720.0875">
|
||||
<stop offset="0" style="stop-color:#326CE5"/>
|
||||
<stop offset="0.1308" style="stop-color:#278DEB"/>
|
||||
<stop offset="0.3204" style="stop-color:#19B5F2"/>
|
||||
<stop offset="0.5062" style="stop-color:#0ED6F8"/>
|
||||
<stop offset="0.6848" style="stop-color:#06ECFC"/>
|
||||
<stop offset="0.853" style="stop-color:#02FAFE"/>
|
||||
<stop offset="1" style="stop-color:#00FFFF"/>
|
||||
</linearGradient>
|
||||
<line class="st14" x1="1312" y1="763.9" x2="1189.8" y2="676.3"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="1188.6139" y1="640.5931" x2="1313.1229" y2="640.5931">
|
||||
<stop offset="0" style="stop-color:#326CE5"/>
|
||||
<stop offset="0.1308" style="stop-color:#278DEB"/>
|
||||
<stop offset="0.3204" style="stop-color:#19B5F2"/>
|
||||
<stop offset="0.5062" style="stop-color:#0ED6F8"/>
|
||||
<stop offset="0.6848" style="stop-color:#06ECFC"/>
|
||||
<stop offset="0.853" style="stop-color:#02FAFE"/>
|
||||
<stop offset="1" style="stop-color:#00FFFF"/>
|
||||
</linearGradient>
|
||||
<line class="st15" x1="1312" y1="684.4" x2="1189.8" y2="596.8"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="1188.6139" y1="561.0987" x2="1313.123" y2="561.0987">
|
||||
<stop offset="0" style="stop-color:#326CE5"/>
|
||||
<stop offset="0.1308" style="stop-color:#278DEB"/>
|
||||
<stop offset="0.3204" style="stop-color:#19B5F2"/>
|
||||
<stop offset="0.5062" style="stop-color:#0ED6F8"/>
|
||||
<stop offset="0.6848" style="stop-color:#06ECFC"/>
|
||||
<stop offset="0.853" style="stop-color:#02FAFE"/>
|
||||
<stop offset="1" style="stop-color:#00FFFF"/>
|
||||
</linearGradient>
|
||||
<line class="st16" x1="1312" y1="604.9" x2="1189.8" y2="517.3"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="1188.6139" y1="481.6043" x2="1313.123" y2="481.6043">
|
||||
<stop offset="0" style="stop-color:#326CE5"/>
|
||||
<stop offset="0.1308" style="stop-color:#278DEB"/>
|
||||
<stop offset="0.3204" style="stop-color:#19B5F2"/>
|
||||
<stop offset="0.5062" style="stop-color:#0ED6F8"/>
|
||||
<stop offset="0.6848" style="stop-color:#06ECFC"/>
|
||||
<stop offset="0.853" style="stop-color:#02FAFE"/>
|
||||
<stop offset="1" style="stop-color:#00FFFF"/>
|
||||
</linearGradient>
|
||||
<line class="st17" x1="1312" y1="525.4" x2="1189.8" y2="437.8"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="1188.6139" y1="402.1099" x2="1313.1232" y2="402.1099">
|
||||
<stop offset="0" style="stop-color:#326CE5"/>
|
||||
<stop offset="0.1308" style="stop-color:#278DEB"/>
|
||||
<stop offset="0.3204" style="stop-color:#19B5F2"/>
|
||||
<stop offset="0.5062" style="stop-color:#0ED6F8"/>
|
||||
<stop offset="0.6848" style="stop-color:#06ECFC"/>
|
||||
<stop offset="0.853" style="stop-color:#02FAFE"/>
|
||||
<stop offset="1" style="stop-color:#00FFFF"/>
|
||||
</linearGradient>
|
||||
<line class="st18" x1="1312" y1="445.9" x2="1189.8" y2="358.3"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="1423.7472" y1="964.2722" x2="1423.7472" y2="484.8451">
|
||||
<stop offset="0" style="stop-color:#224899;stop-opacity:0"/>
|
||||
<stop offset="1" style="stop-color:#1E3F86;stop-opacity:0.9"/>
|
||||
</linearGradient>
|
||||
<path class="st19" d="M1535.6,488.5l-218.9,0.1c-7.6,0-14.9-1.3-21.1-3.7v475.7c6.2,2.4,13.5,3.7,21,3.7l218.9-0.1
|
||||
c5.7,0,11.2-0.7,16.2-2.1V486.3C1546.8,487.7,1541.3,488.5,1535.6,488.5z"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="1217.8658" y1="960.5628" x2="1217.8658" y2="367.034">
|
||||
<stop offset="0" style="stop-color:#224899;stop-opacity:0"/>
|
||||
<stop offset="1" style="stop-color:#1E3F86;stop-opacity:0.9"/>
|
||||
</linearGradient>
|
||||
<path class="st20" d="M1289.9,482.1c-1-0.6-1.9-1.2-2.8-1.8L1148.6,381c-5.6-4-8.6-8.9-8.6-14h0v471.3c0,7.9,1.3,13.3,8.6,18.4
|
||||
l138.5,99.3c0.9,0.6,1.8,1.2,2.8,1.8c1.8,1,3.7,1.9,5.8,2.7V484.8C1293.6,484,1291.7,483.1,1289.9,482.1z"/>
|
||||
<path class="st21" d="M1645.2,241.4c0.4,0.3,0.9,0.5,1.3,0.8c4.2,2.8,7.1,6.1,8.6,9.7l51.3,123.8c2.7,6.5,0.1,13.3-6.9,18.5
|
||||
L1565,493.6c-7.1,5.2-17.9,8.3-29.3,8.3l-218.9,0.1c-10.1,0-19.7-2.4-26.8-6.5c-1-0.6-1.9-1.2-2.8-1.8l-138.5-99.3
|
||||
c-7.3-5.2-10.1-11.9-7.8-18.4l46.2-123.9c0.3-0.7,0.6-1.4,1-2.1c3.1-5.6,10.1-10.3,19.3-12.9l195.8-55.3c10.3-2.9,22.4-2.9,32.7,0
|
||||
l198.5,55.1C1638.3,238.1,1642,239.6,1645.2,241.4z"/>
|
||||
<path class="st10" d="M1645.2,227.5c0.4,0.3,0.9,0.5,1.3,0.8c4.2,2.8,7.1,6.1,8.6,9.7l51.3,123.8c2.7,6.5,0.1,13.3-6.9,18.5
|
||||
L1565,479.6c-7.1,5.2-17.9,8.3-29.3,8.3l-218.9,0.1c-10.1,0-19.7-2.4-26.8-6.5c-1-0.6-1.9-1.2-2.8-1.8l-138.5-99.3
|
||||
c-7.3-5.2-10.1-11.9-7.8-18.4l46.2-123.9c0.3-0.7,0.6-1.4,1-2.1c3.1-5.6,10.1-10.3,19.3-12.9L1403,168c10.3-2.9,22.4-2.9,32.7,0
|
||||
l198.5,55.1C1638.3,224.2,1642,225.7,1645.2,227.5z"/>
|
||||
<polygon class="st22" points="1220.9,346.6 1243.8,285.3 1419.4,235.7 1599.5,285.7 1625.5,348.4 1530.9,418.3 1321,418.3 "/>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="1301.9633" y1="292.4039" x2="1361.2615" y2="-190.542">
|
||||
<stop offset="0" style="stop-color:#00FFFF"/>
|
||||
<stop offset="1" style="stop-color:#224899;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st23" points="1243.8,285.3 1243.8,-133.8 1419.4,-183.4 1419.4,235.7 "/>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="1482.4169" y1="271.3134" x2="1536.4839" y2="-169.0274">
|
||||
<stop offset="0" style="stop-color:#00FFFF"/>
|
||||
<stop offset="1" style="stop-color:#224899;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st24" points="1419.4,235.7 1599.5,285.7 1599.5,-133.4 1419.4,-183.4 "/>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="1583.519" y1="343.2495" x2="1641.4104" y2="-128.2371">
|
||||
<stop offset="0" style="stop-color:#00FFFF"/>
|
||||
<stop offset="1" style="stop-color:#224899;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st25" points="1625.5,348.4 1599.5,285.7 1599.5,-133.4 1625.5,-70.7 "/>
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="1445.5656" y1="356.3046" x2="1710.7616" y2="-8.7065">
|
||||
<stop offset="0" style="stop-color:#00FFFF"/>
|
||||
<stop offset="9.156168e-02" style="stop-color:#05E7F1;stop-opacity:0.9084"/>
|
||||
<stop offset="0.3233" style="stop-color:#0FAFD2;stop-opacity:0.6767"/>
|
||||
<stop offset="0.5382" style="stop-color:#1782B9;stop-opacity:0.4618"/>
|
||||
<stop offset="0.7293" style="stop-color:#1D62A8;stop-opacity:0.2707"/>
|
||||
<stop offset="0.8898" style="stop-color:#214F9D;stop-opacity:0.1102"/>
|
||||
<stop offset="1" style="stop-color:#224899;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st26" points="1530.9,418.3 1530.9,-0.8 1625.5,-70.7 1625.5,348.4 "/>
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="1290.0017" y1="395.8164" x2="1561.8175" y2="21.6942">
|
||||
<stop offset="0" style="stop-color:#00FFFF"/>
|
||||
<stop offset="9.156168e-02" style="stop-color:#05E7F1;stop-opacity:0.9084"/>
|
||||
<stop offset="0.3233" style="stop-color:#0FAFD2;stop-opacity:0.6767"/>
|
||||
<stop offset="0.5382" style="stop-color:#1782B9;stop-opacity:0.4618"/>
|
||||
<stop offset="0.7293" style="stop-color:#1D62A8;stop-opacity:0.2707"/>
|
||||
<stop offset="0.8898" style="stop-color:#214F9D;stop-opacity:0.1102"/>
|
||||
<stop offset="1" style="stop-color:#224899;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st27" points="1530.9,418.3 1530.9,-0.8 1321,-0.8 1321,418.3 "/>
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="1114.1761" y1="269.0238" x2="1350.5131" y2="-56.266">
|
||||
<stop offset="0" style="stop-color:#00FFFF"/>
|
||||
<stop offset="1" style="stop-color:#224899;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st28" points="1243.8,285.3 1243.8,-133.8 1220.9,-72.5 1220.9,346.6 "/>
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="1171.0873" y1="310.3722" x2="1370.8208" y2="35.4625">
|
||||
<stop offset="0" style="stop-color:#00FFFF"/>
|
||||
<stop offset="9.156168e-02" style="stop-color:#05E7F1;stop-opacity:0.9084"/>
|
||||
<stop offset="0.3233" style="stop-color:#0FAFD2;stop-opacity:0.6767"/>
|
||||
<stop offset="0.5382" style="stop-color:#1782B9;stop-opacity:0.4618"/>
|
||||
<stop offset="0.7293" style="stop-color:#1D62A8;stop-opacity:0.2707"/>
|
||||
<stop offset="0.8898" style="stop-color:#214F9D;stop-opacity:0.1102"/>
|
||||
<stop offset="1" style="stop-color:#224899;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st29" points="1321,418.3 1321,-0.7 1220.9,-72.5 1220.9,346.6 "/>
|
||||
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="1228.4139" y1="420.217" x2="1242.3533" y2="220.8751">
|
||||
<stop offset="0" style="stop-color:#224899;stop-opacity:0"/>
|
||||
<stop offset="1" style="stop-color:#193672"/>
|
||||
</linearGradient>
|
||||
<path class="st30" d="M1321,418.3l-100.1-71.8V219.4l-16.4,4.7c0,0-13.1,2.5-19.1,18.5c-6,16-43.2,115.7-43.2,115.7
|
||||
s-7.5,11.1,3.5,19.8c11,8.7,55.8,40.3,55.8,40.3H1321z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_2_);}
|
||||
.st2{fill:#FFFFFF;}
|
||||
.st3{opacity:5.000000e-02;fill:#00FFFF;}
|
||||
.st4{opacity:0.3;fill:url(#SVGID_3_);}
|
||||
.st5{opacity:0.3;fill:url(#SVGID_4_);}
|
||||
.st6{opacity:0.3;fill:url(#SVGID_5_);}
|
||||
.st7{opacity:0.3;fill:url(#SVGID_6_);}
|
||||
.st8{opacity:0.3;fill:url(#SVGID_7_);}
|
||||
.st9{opacity:0.3;fill:url(#SVGID_8_);}
|
||||
.st10{opacity:0.3;fill:url(#SVGID_9_);}
|
||||
.st11{fill:url(#SVGID_10_);}
|
||||
</style>
|
||||
<title>header-1</title>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-2" y1="541.3376" x2="1918" y2="541.3376">
|
||||
<stop offset="0" style="stop-color:#193672"/>
|
||||
<stop offset="0.1722" style="stop-color:#1C3E83"/>
|
||||
<stop offset="0.4707" style="stop-color:#214899"/>
|
||||
<stop offset="0.753" style="stop-color:#244FA7"/>
|
||||
<stop offset="1" style="stop-color:#2551AC"/>
|
||||
</linearGradient>
|
||||
<rect x="-2" y="1.3" class="st0" width="1920" height="1080"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="254.9923" y1="564.0397" x2="1665.8153" y2="564.0397">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M1665.8,596.2h-25.3l-105-253.1c-3.5-8.9-10.8-17.2-21.3-24.2c-1-0.7-2.1-1.3-3.2-1.9
|
||||
c-7.9-4.6-17.2-8.3-27.3-11L990.3,168.9c-25.8-7.2-55.7-7.2-81.4,0L422.2,306.3c-22.9,6.4-40.2,17.9-47.9,32
|
||||
c-1,1.7-1.8,3.4-2.4,5.1l-94.3,252.8H255v69.7h0.2c1.2,11.3,8.5,22.3,21.1,31.3L620.6,944c2.2,1.6,4.5,3.1,7,4.5
|
||||
c17.6,10.2,41.6,16,66.7,16l544.3-0.2c28.5,0,55.4-7.6,72.9-20.5l334.5-247c12.1-9,18.9-19.8,19.7-31h0.1V596.2z"/>
|
||||
<path class="st2" d="M1511.1,257.5c1.1,0.6,2.1,1.3,3.2,1.9c10.4,6.9,17.8,15.2,21.3,24.2l127.7,307.8c6.7,16.1,0.4,33-17.2,46
|
||||
l-334.5,247c-17.6,13-44.4,20.5-72.9,20.5l-544.3,0.2c-25.1,0-49.1-5.9-66.7-16c-2.4-1.4-4.8-2.9-7-4.5L276.3,637.7
|
||||
c-18.1-12.8-25.2-29.7-19.3-45.8l114.9-308c0.7-1.7,1.5-3.4,2.4-5.1c7.7-14,25-25.6,47.9-32l486.7-137.4c25.7-7.2,55.6-7.2,81.4,0
|
||||
l493.5,137.1C1493.9,249.2,1503.2,252.9,1511.1,257.5z"/>
|
||||
<polygon class="st3" points="456,553.5 512.9,401.1 949.7,277.8 1397.3,402.1 1462,558.1 1226.7,731.8 704.9,732 "/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="657.573" y1="418.8371" x2="805.0192" y2="-782.0159">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.5"/>
|
||||
<stop offset="1" style="stop-color:#2551AC;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st4" points="512.9,401.1 512.9,-641 949.7,-764.3 949.7,277.8 "/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="1106.2739" y1="366.3951" x2="1240.7125" y2="-728.5195">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.5"/>
|
||||
<stop offset="1" style="stop-color:#2551AC;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st5" points="949.7,277.8 1397.3,402.1 1397.3,-639.9 949.7,-764.3 "/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="1357.6664" y1="545.2656" x2="1501.614" y2="-627.0939">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.5"/>
|
||||
<stop offset="1" style="stop-color:#2551AC;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st6" points="1462,558.1 1397.3,402.1 1397.3,-639.9 1462,-484 "/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="1014.6425" y1="577.7273" x2="1674.0571" y2="-329.879">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.75"/>
|
||||
<stop offset="4.057624e-02" style="stop-color:#00FFFF;stop-opacity:0.6942"/>
|
||||
<stop offset="0.5449" style="stop-color:#00FFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st7" points="1226.7,731.8 1226.7,-310.2 1462,-484 1462,558.1 "/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="627.8306" y1="676.2059" x2="1303.705" y2="-254.0554">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.75"/>
|
||||
<stop offset="5.840200e-02" style="stop-color:#00FFFF;stop-opacity:0.6942"/>
|
||||
<stop offset="0.7843" style="stop-color:#00FFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st8" points="1226.7,732 1226.7,-310 704.9,-310 704.9,732.2 "/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="190.6372" y1="360.7021" x2="778.2929" y2="-448.1366">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.5"/>
|
||||
<stop offset="1" style="stop-color:#2551AC;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st9" points="512.9,401.1 512.9,-641 456,-488.5 456,553.5 "/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="332.1477" y1="463.5155" x2="828.7885" y2="-220.052">
|
||||
<stop offset="0" style="stop-color:#00FFFF;stop-opacity:0.75"/>
|
||||
<stop offset="4.092821e-02" style="stop-color:#00FFFF;stop-opacity:0.6942"/>
|
||||
<stop offset="0.5496" style="stop-color:#00FFFF;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<polygon class="st10" points="704.9,732 704.9,-310.1 456,-488.5 456,553.5 "/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="474.6914" y1="736.6465" x2="509.3518" y2="240.9794">
|
||||
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0"/>
|
||||
<stop offset="1" style="stop-color:#326CE5;stop-opacity:0.5"/>
|
||||
</linearGradient>
|
||||
<path class="st11" d="M704.9,732L456,553.5V237.3L415.2,249c0,0-32.6,6.2-47.5,46S260.4,582.7,260.4,582.7s-18.7,27.5,8.8,49.1
|
||||
C296.6,653.5,407.8,732,407.8,732H704.9z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.7 KiB |
@@ -0,0 +1,155 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_2_);}
|
||||
.st2{fill:url(#SVGID_3_);}
|
||||
.st3{fill:url(#SVGID_4_);}
|
||||
.st4{fill:url(#SVGID_5_);}
|
||||
.st5{fill:url(#SVGID_6_);}
|
||||
.st6{fill:url(#SVGID_7_);}
|
||||
.st7{fill:url(#SVGID_8_);}
|
||||
.st8{fill:#FFFFFF;}
|
||||
.st9{fill:url(#SVGID_9_);}
|
||||
.st10{fill:url(#SVGID_10_);}
|
||||
.st11{fill:url(#SVGID_11_);}
|
||||
.st12{fill:url(#SVGID_12_);}
|
||||
.st13{fill:url(#SVGID_13_);}
|
||||
.st14{fill:url(#SVGID_14_);}
|
||||
.st15{fill:url(#SVGID_15_);}
|
||||
.st16{fill:url(#SVGID_16_);}
|
||||
</style>
|
||||
<title>header-1</title>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0" y1="540" x2="1920" y2="540">
|
||||
<stop offset="0" style="stop-color:#EAF0FC"/>
|
||||
<stop offset="0.4373" style="stop-color:#F5F8FE"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<rect class="st0" width="1920" height="1080"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="469.1857" y1="637.489" x2="1483.9358" y2="637.489">
|
||||
<stop offset="0" style="stop-color:#5B89EA"/>
|
||||
<stop offset="0.2487" style="stop-color:#628FEB"/>
|
||||
<stop offset="0.6195" style="stop-color:#779DEE"/>
|
||||
<stop offset="1" style="stop-color:#92B1F1"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M1372.7,459.8c0.8,0.4,1.5,0.9,2.3,1.4c7.5,5,12.8,10.9,15.3,17.4l91.8,221.4c4.8,11.6,0.3,23.8-12.4,33.1
|
||||
l-240.6,177.6c-12.6,9.3-32,14.8-52.4,14.8l-391.5,0.1c-18.1,0-35.3-4.2-48-11.5c-1.8-1-3.4-2.1-5-3.2L484.5,733.2
|
||||
c-13-9.2-18.1-21.3-13.9-33l82.6-221.5c0.5-1.2,1.1-2.5,1.8-3.7c5.5-10.1,18-18.4,34.4-23l350.1-98.8c18.5-5.2,40-5.2,58.5,0
|
||||
l355,98.6C1360.3,453.8,1367,456.5,1372.7,459.8z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="468.1851" y1="540" x2="1482.9324" y2="540">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<path class="st2" d="M482.8,730.9l69.4-186.2c0.5-1.2,1.1-2.5,1.8-3.7c5.5-10.1,18-18.4,34.4-23l350.1-98.8c18.5-5.2,40-5.2,58.5,0
|
||||
l355,98.6c7.3,2,13.9,4.6,19.6,7.9c0.8,0.4,1.5,0.9,2.3,1.4c7.5,5,12.8,10.9,15.3,17.4l77.9,187.9l1.5-1.1
|
||||
c12.6-9.4,17.2-21.5,12.4-33.1l-91.8-221.4c-2.5-6.4-7.8-12.4-15.3-17.4c-0.7-0.5-1.5-0.9-2.3-1.4c-5.7-3.3-12.3-6-19.6-7.9
|
||||
l-355-98.6c-18.5-5.2-40.1-5.1-58.5,0l-350.1,98.8c-16.4,4.6-28.9,12.9-34.4,23c-0.7,1.2-1.3,2.4-1.8,3.7l-82.6,221.5
|
||||
C465.5,709.9,470.4,721.8,482.8,730.9z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="613.7862" y1="607.7208" x2="1337.3313" y2="607.7208">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<polygon class="st3" points="613.8,612.7 654.7,503.1 968.9,414.4 1290.8,503.8 1337.3,616 1337.3,676 1168.1,800.9 792.8,801.1
|
||||
613.8,672.7 "/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="613.7862" y1="577.7208" x2="1337.3313" y2="577.7208">
|
||||
<stop offset="0" style="stop-color:#EAF0FC"/>
|
||||
<stop offset="1" style="stop-color:#F5F8FE"/>
|
||||
</linearGradient>
|
||||
<polygon class="st4" points="613.8,612.7 654.7,503.1 968.9,414.4 1290.8,503.8 1337.3,616 1168.1,740.9 792.8,741.1 "/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="613.7862" y1="487.7208" x2="1337.3313" y2="487.7208">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<polygon class="st5" points="613.8,492.7 654.7,383.1 968.9,294.4 1290.8,383.8 1337.3,496 1337.3,556 1168.1,680.9 792.8,681.1
|
||||
613.8,552.7 "/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="613.7862" y1="457.7208" x2="1337.3313" y2="457.7208">
|
||||
<stop offset="0" style="stop-color:#EAF0FC"/>
|
||||
<stop offset="1" style="stop-color:#F5F8FE"/>
|
||||
</linearGradient>
|
||||
<polygon class="st6" points="613.8,492.7 654.7,383.1 968.9,294.4 1290.8,383.8 1337.3,496 1168.1,620.9 792.8,621.1 "/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="613.7862" y1="367.7208" x2="1337.3313" y2="367.7208">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<polygon class="st7" points="613.8,372.7 654.7,263.1 968.9,174.4 1290.8,263.8 1337.3,376 1337.3,436 1168.1,560.9 792.8,561.1
|
||||
613.8,432.7 "/>
|
||||
<polygon class="st8" points="613.8,372.7 654.7,263.1 968.9,174.4 1290.8,263.8 1337.3,376 1168.1,500.9 792.8,501.1 "/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="91.3371" y1="251.3694" x2="428.766" y2="251.3694">
|
||||
<stop offset="0" style="stop-color:#D6E2FA"/>
|
||||
<stop offset="0.5074" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<polygon class="st9" points="91.3,267.7 110.4,216.6 256.9,175.2 407.1,216.9 428.8,269.2 349.8,327.5 174.8,327.5 "/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="91.3371" y1="161.2036" x2="428.766" y2="161.2036">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<polygon class="st10" points="91.3,163.5 110.4,112.4 256.9,71 407.1,112.7 428.8,165.1 428.8,193 349.8,251.3 174.8,251.4
|
||||
91.3,191.5 "/>
|
||||
<polygon class="st8" points="91.3,163.5 110.4,112.4 256.9,71 407.1,112.7 428.8,165.1 349.8,223.3 174.8,223.4 "/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="1669.5549" y1="145.9749" x2="1833.0468" y2="145.9749">
|
||||
<stop offset="0" style="stop-color:#EAF0FC"/>
|
||||
<stop offset="0.2067" style="stop-color:#EDF2FD"/>
|
||||
<stop offset="1" style="stop-color:#F5F8FE"/>
|
||||
</linearGradient>
|
||||
<polygon class="st11" points="1669.6,153.9 1678.8,129.1 1749.8,109.1 1822.5,129.3 1833,154.6 1794.8,182.9 1710,182.9 "/>
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="1669.5549" y1="102.2876" x2="1833.0468" y2="102.2876">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<polygon class="st12" points="1669.6,103.4 1678.8,78.6 1749.8,58.6 1822.5,78.8 1833,104.2 1833,117.7 1794.8,145.9 1710,146
|
||||
1669.6,117 "/>
|
||||
<polygon class="st8" points="1669.6,103.4 1678.8,78.6 1749.8,58.6 1822.5,78.8 1833,104.2 1794.8,132.4 1710,132.4 "/>
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="1508.3481" y1="301.8342" x2="1719.0525" y2="301.8342">
|
||||
<stop offset="0" style="stop-color:#EAF0FC"/>
|
||||
<stop offset="0.2067" style="stop-color:#EDF2FD"/>
|
||||
<stop offset="1" style="stop-color:#F5F8FE"/>
|
||||
</linearGradient>
|
||||
<polygon class="st13" points="1508.3,312 1520.3,280.1 1611.7,254.3 1705.5,280.3 1719.1,313 1669.8,349.4 1560.5,349.4 "/>
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="1508.3481" y1="245.531" x2="1719.0525" y2="245.531">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<polygon class="st14" points="1508.3,247 1520.3,215.1 1611.7,189.2 1705.5,215.3 1719.1,247.9 1719.1,265.4 1669.8,301.8
|
||||
1560.5,301.8 1508.3,264.5 "/>
|
||||
<polygon class="st8" points="1508.3,247 1520.3,215.1 1611.7,189.2 1705.5,215.3 1719.1,247.9 1669.8,284.3 1560.5,284.4 "/>
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="1805.3333" y1="301.8342" x2="2016.0376" y2="301.8342">
|
||||
<stop offset="0" style="stop-color:#EAF0FC"/>
|
||||
<stop offset="0.2067" style="stop-color:#EDF2FD"/>
|
||||
<stop offset="1" style="stop-color:#F5F8FE"/>
|
||||
</linearGradient>
|
||||
<polygon class="st15" points="1805.3,312 1817.2,280.1 1908.7,254.3 2002.5,280.3 2016,313 1966.8,349.4 1857.5,349.4 "/>
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="1805.3333" y1="245.531" x2="2016.0376" y2="245.531">
|
||||
<stop offset="0" style="stop-color:#92B1F1"/>
|
||||
<stop offset="0.2269" style="stop-color:#AEC5F5"/>
|
||||
<stop offset="0.5501" style="stop-color:#CFDCF9"/>
|
||||
<stop offset="0.8195" style="stop-color:#E3EBFB"/>
|
||||
<stop offset="1" style="stop-color:#EAF0FC"/>
|
||||
</linearGradient>
|
||||
<polygon class="st16" points="1805.3,247 1817.2,215.1 1908.7,189.2 2002.5,215.3 2016,247.9 2016,265.4 1966.8,301.8 1857.5,301.8
|
||||
1805.3,264.5 "/>
|
||||
<polygon class="st8" points="1805.3,247 1817.2,215.1 1908.7,189.2 2002.5,215.3 2016,247.9 1966.8,284.3 1857.5,284.4 "/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 889 KiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 644 KiB |