Commit 55da73f0 authored by iamnameer's avatar iamnameer

first commit

parents
{
"presets": ["es2015"],
"compact": false
}
{
"directory": "bower_components"
}
.DS_Store
node_modules
npm-debug.log
bower_components
dist
*.swp
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}\\gulpfile.js"
}
]
}
\ No newline at end of file
# Changelog
## Version 1.0 (November 19, 2015)
Initial release.
# Your project's server will run on localhost:xxxx at this port
PORT: 8000
# Autoprefixer will make sure your CSS works with these browsers
COMPATIBILITY:
- "last 2 versions"
- "ie >= 9"
- "ios >= 7"
# UnCSS will use these settings
UNCSS_OPTIONS:
html:
- "src/**/*.html"
ignore:
- !!js/regexp .foundation-mq
- !!js/regexp ^\.is-.*
# Gulp will reference these paths when it copies files
PATHS:
# Path to dist folder
dist: "dist"
# Paths to static assets that aren't images, CSS, or JavaScript
assets:
- "src/assets/**/*"
- "!src/assets/{img,js,scss}/**/*"
# Paths to Sass libraries, which can then be loaded with @import
sass:
- "node_modules/foundation-sites/scss"
- "node_modules/motion-ui/src"
# Paths to JavaScript entry points for webpack to bundle modules
entries:
- "src/assets/js/app.js"
'use strict';
import plugins from 'gulp-load-plugins';
import yargs from 'yargs';
import browser from 'browser-sync';
import gulp from 'gulp';
import panini from 'panini';
import rimraf from 'rimraf';
import sherpa from 'style-sherpa';
import yaml from 'js-yaml';
import fs from 'fs';
import webpackStream from 'webpack-stream';
import webpack2 from 'webpack';
import named from 'vinyl-named';
// Load all Gulp plugins into one variable
const $ = plugins();
// Check for --production flag
const PRODUCTION = !!(yargs.argv.production);
// Load settings from settings.yml
const { COMPATIBILITY, PORT, UNCSS_OPTIONS, PATHS } = loadConfig();
function loadConfig() {
let ymlFile = fs.readFileSync('config.yml', 'utf8');
return yaml.load(ymlFile);
}
// Build the "dist" folder by running all of the below tasks
gulp.task('build',
gulp.series(clean, gulp.parallel(pages, sass, javascript, images, copy), styleGuide));
// Build the site, run the server, and watch for file changes
gulp.task('default',
gulp.series('build', server, watch));
// Delete the "dist" folder
// This happens every time a build starts
function clean(done) {
rimraf(PATHS.dist, done);
}
// Copy files out of the assets folder
// This task skips over the "img", "js", and "scss" folders, which are parsed separately
function copy() {
return gulp.src(PATHS.assets)
.pipe(gulp.dest(PATHS.dist + '/assets'));
}
// Copy page templates into finished HTML files
function pages() {
return gulp.src('src/pages/**/*.{html,hbs,handlebars}')
.pipe(panini({
root: 'src/pages/',
layouts: 'src/layouts/',
partials: 'src/partials/',
data: 'src/data/',
helpers: 'src/helpers/'
}))
.pipe(gulp.dest(PATHS.dist));
}
// Load updated HTML templates and partials into Panini
function resetPages(done) {
panini.refresh();
done();
}
// Generate a style guide from the Markdown content and HTML template in styleguide/
function styleGuide(done) {
sherpa('src/styleguide/index.md', {
output: PATHS.dist + '/styleguide.html',
template: 'src/styleguide/template.html'
}, done);
}
// Compile Sass into CSS
// In production, the CSS is compressed
function sass() {
return gulp.src('src/assets/scss/app.scss')
.pipe($.sourcemaps.init())
.pipe($.sass({
includePaths: PATHS.sass
})
.on('error', $.sass.logError))
.pipe($.autoprefixer({
browsers: COMPATIBILITY
}))
// Comment in the pipe below to run UnCSS in production
//.pipe($.if(PRODUCTION, $.uncss(UNCSS_OPTIONS)))
.pipe($.if(PRODUCTION, $.cleanCss({ compatibility: 'ie9' })))
.pipe($.if(!PRODUCTION, $.sourcemaps.write()))
.pipe(gulp.dest(PATHS.dist + '/assets/css'))
.pipe(browser.reload({ stream: true }));
}
let webpackConfig = {
module: {
rules: [
{
test: /.js$/,
use: [
{
loader: 'babel-loader'
}
]
}
]
}
}
// Combine JavaScript into one file
// In production, the file is minified
function javascript() {
return gulp.src(PATHS.entries)
.pipe(named())
.pipe($.sourcemaps.init())
.pipe(webpackStream(webpackConfig, webpack2))
.pipe($.if(PRODUCTION, $.uglify()
.on('error', e => { console.log(e); })
))
.pipe($.if(!PRODUCTION, $.sourcemaps.write()))
.pipe(gulp.dest(PATHS.dist + '/assets/js'));
}
// Copy images to the "dist" folder
// In production, the images are compressed
function images() {
return gulp.src('src/assets/img/**/*')
.pipe($.if(PRODUCTION, $.imagemin({
progressive: true
})))
.pipe(gulp.dest(PATHS.dist + '/assets/img'));
}
// Start a server with BrowserSync to preview the site in
function server(done) {
browser.init({
server: PATHS.dist, port: PORT
});
done();
}
// Reload the browser with BrowserSync
function reload(done) {
browser.reload();
done();
}
// Watch for changes to static assets, pages, Sass, and JavaScript
function watch() {
gulp.watch(PATHS.assets, copy);
gulp.watch('src/pages/**/*.html').on('all', gulp.series(pages, browser.reload));
gulp.watch('src/{layouts,partials}/**/*.html').on('all', gulp.series(resetPages, pages, browser.reload));
gulp.watch('src/assets/scss/**/*.scss').on('all', sass);
gulp.watch('src/assets/js/**/*.js').on('all', gulp.series(javascript, browser.reload));
gulp.watch('src/assets/img/**/*').on('all', gulp.series(images, browser.reload));
gulp.watch('src/styleguide/**').on('all', gulp.series(styleGuide, browser.reload));
}
{
"name": "foundation-zurb-template",
"version": "1.0.0",
"description": "Official ZURB Template for Foundation for Sites.",
"main": "gulpfile.js",
"scripts": {
"start": "gulp",
"build": "gulp build --production"
},
"author": "ZURB <foundation@zurb.com>",
"license": "MIT",
"dependencies": {
"foundation-sites": "~6.4.1",
"jquery": ">=3.0.0",
"what-input": "^4.1.3",
"motion-ui": "~1.2.2"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.7.2",
"browser-sync": "^2.10.0",
"gulp": "gulpjs/gulp#4.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^3.3.1",
"gulp-cli": "^1.2.1",
"gulp-concat": "^2.5.2",
"gulp-extname": "^0.2.0",
"gulp-if": "^2.0.0",
"gulp-imagemin": "^2.2.1",
"gulp-load-plugins": "^1.1.0",
"gulp-sass": "^2.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.2.0",
"gulp-uncss": "^1.0.1",
"js-yaml": "^3.4.6",
"motion-ui": "^1.2.3",
"panini": "^1.3.0",
"rimraf": "^2.4.3",
"style-sherpa": "^1.0.0",
"vinyl-named": "^1.1.0",
"webpack": "^2.6.1",
"webpack-stream": "^3.2.0",
"yargs": "^3.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zurb/foundation-zurb-template.git"
},
"bugs": {
"url": "https://github.com/zurb/foundation-sites/issues",
"email": "foundation@zurb.com"
},
"babel": {
"presets": [
"es2015"
]
},
"private": true
}
# ZURB Template
[![devDependency Status](https://david-dm.org/zurb/foundation-zurb-template/dev-status.svg)](https://david-dm.org/zurb/foundation-zurb-template#info=devDependencies)
**Please open all issues with this template on the main [Foundation for Sites](https://github.com/zurb/foundation-sites/issues) repo.**
This is the official ZURB Template for use with [Foundation for Sites](http://foundation.zurb.com/sites). We use this template at ZURB to deliver static code to our clients. It has a Gulp-powered build system with these features:
- Handlebars HTML templates with Panini
- Sass compilation and prefixing
- JavaScript module bundling with webpack
- Built-in BrowserSync server
- For production builds:
- CSS compression
- JavaScript compression
- Image compression
## Installation
To use this template, your computer needs:
- [NodeJS](https://nodejs.org/en/) (0.12 or greater)
- [Git](https://git-scm.com/)
This template can be installed with the Foundation CLI, or downloaded and set up manually.
### Using the CLI
Install the Foundation CLI with this command:
```bash
npm install foundation-cli --global
```
Use this command to set up a blank Foundation for Sites project with this template:
```bash
foundation new --framework sites --template zurb
```
The CLI will prompt you to give your project a name. The template will be downloaded into a folder with this name.
Now `cd` to your project name and to start your project run
```bash
foundation watch
```
### Manual Setup
To manually set up the template, first download it with Git:
```bash
git clone https://github.com/zurb/foundation-zurb-template projectname
```
Then open the folder in your command line, and install the needed dependencies:
```bash
cd projectname
npm install
```
Finally, run `npm start` to run Gulp. Your finished site will be created in a folder called `dist`, viewable at this URL:
```
http://localhost:8000
```
To create compressed, production-ready assets, run `npm run build`.
# duckcreek-client
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{clip-path:url(#SVGID_2_);}
</style>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st0" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4L43.8,25.5
c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g>
<path d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3C80.7,17,66.6,3,49.3,3L49.3,3z
M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5c15.4,0,27.9,12.5,27.9,27.8V65.7z
M77.2,65.7"/>
<path d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2C51.1,14.2,50.3,13.4,49.3,13.4
L49.3,13.4z M49.3,13.4"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g>
<path d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z M49.8,94.8
c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z M49.8,94.8"/>
<path d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6l15.6,15.6L31.6,65.4
c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68c0.4,0.4,0.9,0.6,1.3,0.6
c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z M68,31.6"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g>
<g id="check-circle-outline">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g>
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g>
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g>
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g>
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g>
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g>
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g>
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g>
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g>
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g>
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g>
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g>
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g>
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g>
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g>
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g>
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g>
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g>
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g>
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g>
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g>
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g>
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g>
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g>
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g>
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</svg>
This diff is collapsed.
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<path d="M41.1,73.9H19c-1.1,0-1.9,0.8-1.9,1.9s0.8,1.9,1.9,1.9h20.4c0.6,1.6,2.2,2.8,4,2.8h12.1c1.8,0,3.4-1.2,4-2.8h20.5 c1.1,0,1.9-0.8,1.9-1.9s-0.8-1.9-1.9-1.9H58c-1.1,0-1.9,0.8-1.9,1.9v0.4c0,0.3-0.2,0.5-0.5,0.5H43.5c-0.3,0-0.5-0.2-0.5-0.5v-0.4 C43,74.8,42.1,73.9,41.1,73.9z"/>
<path d="M94.7,73.9h-5V30.2c0-1.1-0.8-1.9-1.9-1.9c-1.1,0-1.9,0.8-1.9,1.9v45.6c0,1.1,0.9,1.9,1.9,1.9h5v2.6c0,2.7-2.2,4.9-4.9,4.9 H11.2c-2.7,0-4.9-2.2-4.9-4.9v-2.6h5c1.1,0,1.9-0.8,1.9-1.9V30.2c0-1.1-0.8-1.9-1.9-1.9s-1.9,0.8-1.9,1.9v43.7h-5 c-1.1,0-1.9,0.8-1.9,1.9v4.5c0,4.8,3.9,8.7,8.7,8.7h76.7c4.8,0,8.7-3.9,8.7-8.7v-4.5C96.6,74.8,95.7,73.9,94.7,73.9z"/>
<path class="st4" d="M57,24.3L46,35.2l-3.8-3.8c-0.7-0.7-1.9-0.7-2.7,0c-0.7,0.7-0.7,1.9,0,2.7l5.1,5.2c0.4,0.4,0.9,0.6,1.3,0.6 s1-0.2,1.3-0.6L59.6,27c0.7-0.7,0.7-1.9,0-2.7C58.9,23.6,57.7,23.6,57,24.3z"/>
<path class="st5" d="M73,11H26.1c-3.8,0-7,3.1-7,7v27.7c0,3.8,3.1,7,7,7h2v8.3c0,1.6,1.3,2.8,2.8,2.8c0.8,0,1.6-0.3,2.1-1l8.8-10.2 H73c3.8,0,7-3.1,7-7V18C80,14.1,76.8,11,73,11z M76.2,45.6c0,1.7-1.4,3.2-3.2,3.2H40.9c-0.6,0-1.1,0.2-1.4,0.7l-7.6,8.8v-7.6 c0-1.1-0.8-1.9-1.9-1.9h-3.9c-1.7,0-3.2-1.4-3.2-3.2V18c0-1.7,1.4-3.2,3.2-3.2H73c1.7,0,3.2,1.4,3.2,3.2L76.2,45.6L76.2,45.6z"/>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, 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 347.34 347.34" style="enable-background:new 0 0 347.34 347.34;" xml:space="preserve">
<polygon points="162.634,0 162.634,30 296.127,30 0,326.127 21.213,347.34 317.34,51.213 317.34,184.706 347.34,184.706 347.34,0
"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g>
<path d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
</svg>
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g class="st0">
<g class="st1">
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
<g>
<path d="M75.8,28.5c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2c-1.4-1.4-3.8-1.4-5.2,0l-5.2,5.2c-1.4,1.4-1.4,3.8,0,5.2
C74,28.1,74.9,28.5,75.8,28.5L75.8,28.5z M16.7,50.8c0-2-1.6-3.7-3.7-3.7H5.7c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H13
C15.1,54.5,16.7,52.9,16.7,50.8L16.7,50.8z M21.2,74.2L16,79.4c-1.4,1.4-1.4,3.8,0,5.2c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2C25,72.8,22.6,72.8,21.2,74.2L21.2,74.2z M21.2,27.4c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L21.2,17c-1.4-1.4-3.8-1.4-5.2,0c-1.4,1.4-1.4,3.8,0,5.2L21.2,27.4z M49.8,17.7
c2,0,3.7-1.6,3.7-3.7V6.7c0-2-1.6-3.7-3.7-3.7s-3.7,1.6-3.7,3.7V14C46.1,16.1,47.8,17.7,49.8,17.7L49.8,17.7z M94,47.1h-7.4
c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H94c2,0,3.7-1.6,3.7-3.7S96,47.1,94,47.1L94,47.1z M78.4,74.2c-1.4-1.4-3.8-1.4-5.2,0
c-1.4,1.4-1.4,3.8,0,5.2l5.2,5.2c0.7,0.7,1.7,1.1,2.6,1.1c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L78.4,74.2z M49.8,83.9
c-2,0-3.7,1.6-3.7,3.7V95c0,2,1.6,3.7,3.7,3.7s3.7-1.6,3.7-3.7v-7.4C53.5,85.6,51.9,83.9,49.8,83.9L49.8,83.9z M49.8,25.1
c-14.2,0-25.8,11.6-25.8,25.8c0,14.2,11.6,25.8,25.8,25.8C64,76.6,75.6,65,75.6,50.8C75.6,36.6,64,25.1,49.8,25.1L49.8,25.1z
M49.8,69.2c-10.1,0-18.4-8.3-18.4-18.4c0-10.1,8.3-18.4,18.4-18.4c10.1,0,18.4,8.3,18.4,18.4C68.2,61,60,69.2,49.8,69.2L49.8,69.2
z M49.8,69.2"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
</svg>
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{fill:#231F20;}
</style>
<g class="st0">
<g class="st1">
<path class="st2" d="M68.3,50.3c1.5-17-4.4-34.3-16.8-46.7c-0.8-0.8-2.1-0.8-2.8,0C36.1,16,30.2,33.3,31.7,50.3
c-4.3,4.6-6.7,10.6-6.7,17c0,6.4,2.4,12.5,6.9,17.2c1.1,1.1,3.9,0.6,3.4-1.9c-0.2-1.3-0.5-2.6-0.5-3.9c0-3.1,0.9-6.1,2.7-8.6
c0.3,0.2,0.6,0.3,1,0.3h23c0.3,0,0.7-0.1,1-0.3c1.8,2.5,2.7,5.5,2.7,8.6c0,1.3-0.3,2.5-0.5,3.9c-0.4,2.8,2.5,2.9,3.4,1.9
c4.4-4.7,6.9-10.8,6.9-17.2C74.9,60.9,72.6,54.9,68.3,50.3z M50,7.9c3.6,3.9,6.6,8.2,8.8,12.9H41.2C43.4,16.1,46.4,11.8,50,7.9
L50,7.9z M31,76c-1.2-2.7-1.9-5.6-1.9-8.7c0-4.1,1.2-8,3.4-11.4c0,0.2,2.1,8.2,2.9,10.3C33,69,31.5,72.3,31,76L31,76z M60.1,66.2
H39.8c-5.7-13.4-5.6-28.3-0.5-41.4h21.2C65.8,37.9,65.8,52.9,60.1,66.2z M64.5,66.2c1.1-2.9,2.9-10.2,2.9-10.3
c2.2,3.4,3.4,7.3,3.4,11.4c0,3-0.7,6-1.9,8.7C68.5,72.3,67,69,64.5,66.2L64.5,66.2z"/>
<path class="st2" d="M41.8,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2s2-0.9,2-2V75.7C43.8,74.6,42.9,73.7,41.8,73.7z"/>
<path class="st2" d="M50,73.7c-0.6,0-1.1,0.2-1.4,0.6c0,0,0,0,0,0c-0.2,0.2-0.4,0.5-0.5,0.9c0,0.2-0.1,0.3-0.1,0.5V96
c0,0.2,0,0.3,0.1,0.5c0.2,0.9,1,1.6,2,1.6c0.9,0,1.7-0.7,2-1.6c0-0.2,0.1-0.3,0.1-0.5V75.7c0-0.2,0-0.4-0.1-0.5
C51.7,74.3,50.9,73.7,50,73.7z"/>
<path class="st2" d="M58.2,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2V75.7C60.2,74.6,59.3,73.7,58.2,73.7z"/>
</g>
</g>
<g>
<g>
<path d="M83.3,37.3h-5.9v-7.8C77.4,14.3,65.1,2,50,2S22.6,14.3,22.6,29.4v7.8h-5.9c-1.1,0-2,0.9-2,2v49c0,4.3,3.5,7.8,7.8,7.8
h54.8c4.3,0,7.8-3.5,7.8-7.8v-49C85.3,38.1,84.4,37.3,83.3,37.3z M55.9,78.2c0.1,0.6-0.1,1.1-0.5,1.5c-0.4,0.4-0.9,0.7-1.5,0.7
h-7.8c-0.6,0-1.1-0.2-1.5-0.7c-0.4-0.4-0.5-1-0.5-1.5L45.4,67c-2-1.5-3.2-3.8-3.2-6.3c0-4.3,3.5-7.8,7.8-7.8s7.8,3.5,7.8,7.8
c0,2.5-1.2,4.8-3.2,6.3L55.9,78.2z M65.7,37.3H34.3v-7.8c0-8.6,7-15.7,15.7-15.7s15.7,7,15.7,15.7V37.3z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{display:inline;fill:#FFFFFF;}
.st3{display:inline;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st4{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
.st5{fill:#FFFFFF;}
.st6{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
path {fill:#FFFFFF;}
line {stroke:#FFFFFF;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g class="st0">
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path class="st1" d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11
M50,10L50,10c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"
/>
</g>
<g class="st0">
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path class="st1" d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49
M21.5,48L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48
L21.5,48z"/>
</g>
<g class="st0">
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path class="st1" d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49
M80.5,48L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48
L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g class="st0">
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st4" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st4" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
<g class="st0">
<path class="st1" d="M94.6,21.9H47L28.3,87.7c-0.6,1.8-2.2,3-4,3c-0.1,0-0.1,0-0.2,0c-1.8,0-3.4-1.1-4.1-2.7l-7.6-19.1H5.2
c-2.4,0-4.4-2-4.4-4.4c0-2.4,2-4.4,4.4-4.4h10.2c1.8,0,3.4,1.1,4.1,2.7l4.2,10.6l15.9-57.3c0.6-1.8,2.3-3,4.2-3h50.8
c2.4,0,4.4,2,4.4,4.4S97,21.9,94.6,21.9z M97,80.6L79.8,61.3L96.2,43c0.3-0.3,0.4-0.8,0.2-1.2c-0.2-0.4-0.6-0.6-1-0.6H85
c-0.3,0-0.6,0.1-0.8,0.4l-11,12.8L62.2,41.6c-0.2-0.2-0.5-0.4-0.8-0.4H50.5c-0.4,0-0.8,0.3-1,0.6c-0.2,0.4-0.1,0.9,0.2,1.2
l16.2,18.2L48.8,80.6c-0.3,0.3-0.4,0.8-0.2,1.2c0.2,0.4,0.6,0.6,1,0.6h10.8c0.3,0,0.6-0.1,0.8-0.4l11.4-13.7L84.3,82
c0.2,0.2,0.5,0.4,0.8,0.4h11c0.4,0,0.8-0.3,1-0.6C97.3,81.4,97.3,80.9,97,80.6z"/>
</g>
<g>
<path class="st5" d="M23,29.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path d="M24,6c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,5h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,10.4,30.6,5,24,5L24,5z"/>
</g>
<g>
<path class="st5" d="M23,60.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path d="M24,37c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,36h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,41.4,30.6,36,24,36L24,36z"/>
</g>
<g>
<path class="st5" d="M23,91.5c-6.3,0-11.5-5.2-11.5-11.5v-1c0-6.3,5.2-11.5,11.5-11.5h1c6.3,0,11.5,5.2,11.5,11.5v1
c0,6.3-5.2,11.5-11.5,11.5H23z"/>
<path d="M24,68c6.1,0,11,4.9,11,11v1c0,6.1-4.9,11-11,11h-1c-6.1,0-11-4.9-11-11v-1c0-6.1,4.9-11,11-11H24 M24,67h-1
c-6.6,0-12,5.4-12,12v1c0,6.6,5.4,12,12,12h1c6.6,0,12-5.4,12-12v-1C36,72.4,30.6,67,24,67L24,67z"/>
</g>
<g>
<line class="st6" x1="68.5" y1="6.5" x2="68.5" y2="91.5"/>
</g>
<line class="st6" x1="45.5" y1="74.5" x2="68.5" y2="91.5"/>
<line class="st6" x1="91.5" y1="74.5" x2="68.5" y2="91.5"/>
</svg>
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{fill:#FFFFFF;}
.st3{fill:none;stroke:#000000;stroke-miterlimit:10;}
</style>
<g class="st0">
<g class="st1">
<g>
<path d="M73.1,53c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5v3.2c0,3.6,2.9,6.5,6.5,6.5c1.4,0,2.7-0.4,3.7-1.2
c0.8,1.6,2.4,2.8,4.4,2.8c2.7,0,4.8-2.2,4.8-4.8V53c0-7.1-5.8-12.9-12.9-12.9c-7.1,0-12.9,5.8-12.9,12.9v4.8
c0,7.1,5.8,12.9,12.9,12.9h8.1c2.7,0,4.8-2.2,4.8-4.8h-3.2c0,0.9-0.7,1.6-1.6,1.6h-8.1c-5.3,0-9.7-4.4-9.7-9.7V53
c0-5.3,4.4-9.7,9.7-9.7s9.7,4.4,9.7,9.7v6.5c0,0.9-0.7,1.6-1.6,1.6s-1.6-0.7-1.6-1.6v-3.2V53z M69.9,56.2c0,1.8-1.5,3.2-3.2,3.2
c-1.8,0-3.2-1.5-3.2-3.2V53c0-1.8,1.5-3.2,3.2-3.2c1.8,0,3.2,1.5,3.2,3.2V56.2z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M51.8,91c-1,0.2-2,0.4-3.1,0.5l0.4,3.2c1.1-0.1,2.2-0.3,3.3-0.5L51.8,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M45.6,91.7c-1,0-2.1,0-3.1,0L42.4,95c0.5,0,1.1,0,1.6,0c0.6,0,1.2,0,1.7,0L45.6,91.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M30.4,89.4l-1.1,3c1,0.4,2.1,0.7,3.2,1l0.9-3.1C32.4,90.1,31.4,89.7,30.4,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M36.4,91l-0.6,3.2c1.1,0.2,2.2,0.4,3.3,0.5l0.4-3.2C38.4,91.4,37.4,91.2,36.4,91z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M24.7,86.9l-1.5,2.8c1,0.5,2,1,3,1.5l1.3-2.9C26.6,87.8,25.6,87.4,24.7,86.9z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,79.3l-2.3,2.2c0.8,0.8,1.6,1.6,2.4,2.3l2.2-2.4C16.4,80.8,15.6,80.1,14.9,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M19.5,83.5l-2,2.6c0.9,0.7,1.8,1.3,2.7,1.9l1.8-2.7C21.2,84.7,20.3,84.1,19.5,83.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M57.8,89.4c-1,0.4-2,0.7-3,0.9l0.9,3.1c1.1-0.3,2.2-0.6,3.2-1L57.8,89.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M68.7,83.4c-0.8,0.6-1.7,1.2-2.5,1.8l1.8,2.7c0.9-0.6,1.9-1.3,2.7-1.9L68.7,83.4z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.2,79.3c-0.7,0.7-1.4,1.4-2.1,2.1l2.2,2.4c0.8-0.7,1.6-1.5,2.3-2.2L73.2,79.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M63.5,86.8c-0.9,0.5-1.8,1-2.8,1.4l1.3,2.9c1-0.5,2-1,3-1.5L63.5,86.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M38.9,4.8c-1.1,0.1-2.2,0.3-3.3,0.5l0.6,3.2c1-0.2,2-0.4,3.1-0.5L38.9,4.8z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M42.3,4.5l0.1,3.2c1,0,2.1,0,3.1,0l0.1-3.2C44.5,4.5,43.4,4.5,42.3,4.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M32.4,6.1c-1.1,0.3-2.2,0.6-3.2,1l1.1,3c1-0.4,2-0.7,3-0.9L32.4,6.1z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M26,8.3c-1,0.5-2,1-3,1.5l1.6,2.8c0.9-0.5,1.8-1,2.8-1.4L26,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M55.6,6l-0.9,3.1c1,0.3,2,0.6,3,0.9l1.1-3C57.7,6.6,56.6,6.3,55.6,6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M49,4.7L48.6,8c1,0.1,2.1,0.3,3.1,0.5l0.6-3.2C51.2,5,50.1,4.9,49,4.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M20.2,11.6c-0.9,0.6-1.9,1.3-2.7,1.9l2,2.6c0.8-0.6,1.7-1.2,2.5-1.8L20.2,11.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M67.8,11.5L66,14.2c0.9,0.6,1.7,1.2,2.5,1.8l2-2.6C69.6,12.8,68.7,12.1,67.8,11.5z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M73.1,15.6L70.9,18c0.8,0.7,1.5,1.4,2.2,2.2l2.3-2.2C74.7,17.1,73.9,16.3,73.1,15.6z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M14.9,15.7c-0.8,0.7-1.6,1.5-2.3,2.2l2.3,2.2c0.7-0.7,1.4-1.4,2.1-2.1L14.9,15.7z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M61.9,8.3l-1.3,2.9c0.9,0.4,1.9,0.9,2.8,1.4l1.5-2.8C63.9,9.2,62.9,8.7,61.9,8.3z"/>
</g>
</g>
<g class="st1">
<g>
<path d="M99,25.5v-3.2H84.4h-1.6H3.6C2.7,22.3,2,23,2,23.9v45.3c0,4.5,3.6,8.1,8.1,8.1H78c4.5,0,8.1-3.6,8.1-8.1V38.4h3.2v-3.2
h-3.2V32h8.1v-3.2h-8.1v-3.2C86.1,25.5,99,25.5,99,25.5z M77.8,25.5L44,43.1L10.2,25.5H77.8z M82.8,69.1c0,2.7-2.2,4.8-4.9,4.8
H10.1c-2.7,0-4.8-2.2-4.8-4.8V26.5l38.1,19.8c0.2,0.1,0.5,0.2,0.7,0.2s0.5-0.1,0.7-0.2l38.1-19.8V69.1z"/>
</g>
</g>
<g class="st1">
<g>
<rect x="8.5" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="14.9" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
<g class="st1">
<g>
<rect x="21.4" y="67.5" width="3.2" height="3.2"/>
</g>
</g>
</g>
<g>
<path class="st2" d="M50,32.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S56.1,32.5,50,32.5z"/>
<path d="M50,11c5.8,0,10.5,4.7,10.5,10.5C60.5,27.3,55.8,32,50,32c-5.8,0-10.5-4.7-10.5-10.5C39.5,15.7,44.2,11,50,11 M50,10L50,10
c-6.3,0-11.5,5.2-11.5,11.5v0C38.5,27.8,43.7,33,50,33h0c6.3,0,11.5-5.2,11.5-11.5v0C61.5,15.2,56.3,10,50,10L50,10z"/>
</g>
<g>
<path class="st2" d="M21.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S27.6,70.5,21.5,70.5z"/>
<path d="M21.5,49C27.3,49,32,53.7,32,59.5C32,65.3,27.3,70,21.5,70C15.7,70,11,65.3,11,59.5C11,53.7,15.7,49,21.5,49 M21.5,48
L21.5,48C15.2,48,10,53.2,10,59.5v0C10,65.8,15.2,71,21.5,71h0C27.8,71,33,65.8,33,59.5v0C33,53.2,27.8,48,21.5,48L21.5,48z"/>
</g>
<g>
<path class="st2" d="M80.5,70.5c-6.1,0-11-4.9-11-11s4.9-11,11-11s11,4.9,11,11S86.6,70.5,80.5,70.5z"/>
<path d="M80.5,49C86.3,49,91,53.7,91,59.5C91,65.3,86.3,70,80.5,70C74.7,70,70,65.3,70,59.5C70,53.7,74.7,49,80.5,49 M80.5,48
L80.5,48C74.2,48,69,53.2,69,59.5v0C69,65.8,74.2,71,80.5,71h0C86.8,71,92,65.8,92,59.5v0C92,53.2,86.8,48,80.5,48L80.5,48z"/>
</g>
<g class="st0">
<g class="st1">
<path d="M89.9,43.7V15.3c0-0.8-0.5-1.5-1.2-1.7L50.2,1.1C49.8,1,49.4,1,49,1.1c-0.4-0.1-0.8-0.1-1.2,0L9.3,13.6
c-0.7,0.2-1.2,0.9-1.2,1.7l0,28.4c0,0.4-1.1,41.7,40,55.2c0.2,0.1,0.4,0.1,0.6,0.1h0.7c0.2,0,0.4,0,0.6-0.1
C91,85.3,89.9,44.1,89.9,43.7z M49.1,95.4h-0.1C10.7,82.6,11.6,45.4,11.6,43.7V16.6L49,4.5c0,0,0,0,0.1,0c0,0,0,0,0,0l37.3,12.1
l0,27.2C86.4,44.2,87.4,82.6,49.1,95.4z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M77.8,20.4l-28.9-9.7c-0.3-0.1-0.5-0.1-0.8-0.1c-0.2,0-0.5,0-0.8,0.1l-28.9,9.7c-0.7,0.2-1.2,0.9-1.2,1.7l0,22.2
c0,0.3,1.5,32,30.2,43.2c0.2,0.1,0.4,0.1,0.6,0.1s0.4,0,0.6-0.1C77.6,76.2,79,44.5,79,44.2V22.1C79,21.3,78.5,20.6,77.8,20.4z
M48.1,83.8C22.2,73.3,20.8,44.4,20.8,44.2V23.4l27.3-9.2l27.3,9.2l0,20.7C75.4,44.4,74.1,73.3,48.1,83.8z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M68.5,36.8c-0.8-0.6-1.9-0.5-2.5,0.2L45.4,61.8l-13.3-14c-0.7-0.7-1.8-0.7-2.5-0.1c-0.7,0.7-0.7,1.8-0.1,2.5l14.7,15.4
c0.3,0.4,0.8,0.6,1.3,0.6c0,0,0,0,0.1,0c0.5,0,1-0.2,1.3-0.6l21.9-26.3C69.4,38.6,69.3,37.5,68.5,36.8z"/>
</g>
</g>
<g>
<line class="st3" x1="41.5" y1="28.5" x2="27.5" y2="50.5"/>
</g>
<line class="st3" x1="31.5" y1="62.5" x2="69.5" y2="62.5"/>
<line class="st3" x1="59.5" y1="26.5" x2="75.5" y2="49.5"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{fill:#231F20;}
</style>
<g>
<g>
<path class="st0" d="M68.3,50.3c1.5-17-4.4-34.3-16.8-46.7c-0.8-0.8-2.1-0.8-2.8,0C36.1,16,30.2,33.3,31.7,50.3
c-4.3,4.6-6.7,10.6-6.7,17c0,6.4,2.4,12.5,6.9,17.2c1.1,1.1,3.9,0.6,3.4-1.9c-0.2-1.3-0.5-2.6-0.5-3.9c0-3.1,0.9-6.1,2.7-8.6
c0.3,0.2,0.6,0.3,1,0.3h23c0.3,0,0.7-0.1,1-0.3c1.8,2.5,2.7,5.5,2.7,8.6c0,1.3-0.3,2.5-0.5,3.9c-0.4,2.8,2.5,2.9,3.4,1.9
c4.4-4.7,6.9-10.8,6.9-17.2C74.9,60.9,72.6,54.9,68.3,50.3z M50,7.9c3.6,3.9,6.6,8.2,8.8,12.9H41.2C43.4,16.1,46.4,11.8,50,7.9
L50,7.9z M31,76c-1.2-2.7-1.9-5.6-1.9-8.7c0-4.1,1.2-8,3.4-11.4c0,0.2,2.1,8.2,2.9,10.3C33,69,31.5,72.3,31,76L31,76z M60.1,66.2
H39.8c-5.7-13.4-5.6-28.3-0.5-41.4h21.2C65.8,37.9,65.8,52.9,60.1,66.2z M64.5,66.2c1.1-2.9,2.9-10.2,2.9-10.3
c2.2,3.4,3.4,7.3,3.4,11.4c0,3-0.7,6-1.9,8.7C68.5,72.3,67,69,64.5,66.2L64.5,66.2z"/>
<path class="st0" d="M41.8,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2s2-0.9,2-2V75.7C43.8,74.6,42.9,73.7,41.8,73.7z"/>
<path class="st0" d="M50,73.7c-0.6,0-1.1,0.2-1.4,0.6c0,0,0,0,0,0c-0.2,0.2-0.4,0.5-0.5,0.9c0,0.2-0.1,0.3-0.1,0.5V96
c0,0.2,0,0.3,0.1,0.5c0.2,0.9,1,1.6,2,1.6c0.9,0,1.7-0.7,2-1.6c0-0.2,0.1-0.3,0.1-0.5V75.7c0-0.2,0-0.4-0.1-0.5
C51.7,74.3,50.9,73.7,50,73.7z"/>
<path class="st0" d="M58.2,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2V75.7C60.2,74.6,59.3,73.7,58.2,73.7z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g>
<g>
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
</svg>
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{clip-path:url(#SVGID_2_);}
</style>
<g class="st0">
<g class="st1">
<defs>
<rect id="SVGID_1_" x="2" y="2" width="96" height="97"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="st2" d="M50,98c26.5,0,48.1-21.5,48.1-48c0-26.5-21.6-48-48.1-48C23.6,1.9,2,23.5,2,50C2,76.4,23.6,98,50,98L50,98z
M50,8.7c22.7,0,41.3,18.5,41.3,41.3c0,22.7-18.5,41.3-41.3,41.3S8.8,72.7,8.8,50C8.8,27.2,27.3,8.7,50,8.7L50,8.7z M50,8.7"/>
</g>
<path class="st1" d="M39,73.9c0.7,0.7,1.5,1,2.4,1c0.8,0,1.7-0.3,2.4-1l21.8-21.8c0.7-0.7,1-1.5,1-2.4c0-0.9-0.3-1.7-1-2.4
L43.8,25.5c-1.3-1.3-3.5-1.3-4.8,0c-1.3,1.3-1.3,3.5,0,4.8l19.4,19.4L39,69.1C37.6,70.5,37.6,72.6,39,73.9L39,73.9z M39,73.9"/>
</g>
<g class="st0">
<path class="st1" d="M49.3,3C32.1,3,18,17,18,34.3v31.4C18,83,32.1,97,49.3,97c17.3,0,31.3-14,31.3-31.3V34.3
C80.7,17,66.6,3,49.3,3L49.3,3z M77.2,65.7c0,15.3-12.5,27.8-27.9,27.8C34,93.5,21.5,81,21.5,65.7V34.3C21.5,19,34,6.5,49.3,6.5
c15.4,0,27.9,12.5,27.9,27.8V65.7z M77.2,65.7"/>
<path class="st1" d="M49.3,13.4c-1,0-1.7,0.8-1.7,1.7v15.8c0,1,0.8,1.7,1.7,1.7c1,0,1.7-0.8,1.7-1.7V15.2
C51.1,14.2,50.3,13.4,49.3,13.4L49.3,13.4z M49.3,13.4"/>
</g>
<g class="st0">
<g id="check-circle-outline" class="st1">
<path d="M30.7,42.1l-6.6,6.6l21.1,21.2l47-47l-6.6-6.6L45.3,56.6L30.7,42.1z M87.6,51c0,20.7-16.9,37.6-37.6,37.6
S12.4,71.7,12.4,51S29.3,13.4,50,13.4c3.8,0,7,0.5,10.3,1.4l7.5-7.5C62.2,5.4,56.1,4,50,4C24.1,4,3,25.1,3,51s21.1,47,47,47
s47-21.2,47-47H87.6z"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M49.8,1C22.9,1,1,22.9,1,49.8s21.9,48.8,48.8,48.8c26.9,0,48.8-21.9,48.8-48.8S76.7,1,49.8,1L49.8,1z
M49.8,94.8c-24.8,0-45-20.2-45-45c0-24.8,20.2-45,45-45c24.8,0,45,20.2,45,45C94.8,74.6,74.6,94.8,49.8,94.8L49.8,94.8z
M49.8,94.8"/>
<path class="st1" d="M68,31.6c-0.7-0.7-1.9-0.7-2.7,0L49.8,47.1L34.2,31.6c-0.7-0.7-1.9-0.7-2.6,0c-0.7,0.7-0.7,1.9,0,2.6
l15.6,15.6L31.6,65.4c-0.7,0.7-0.7,1.9,0,2.7c0.4,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6l15.6-15.6L65.4,68
c0.4,0.4,0.9,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.7-0.7,0.7-1.9,0-2.7L52.4,49.8L68,34.2C68.8,33.5,68.8,32.3,68,31.6L68,31.6z
M68,31.6"/>
</g>
<path class="st0" d="M97,41.4l-45-33c-0.9-0.6-2-0.6-2.9,0l-45,33c-1.1,0.8-1.3,2.3-0.5,3.4s2.4,1.3,3.4,0.5l43.6-31.9l43.6,31.9
c0.4,0.3,1,0.5,1.5,0.5c0.8,0,1.5-0.3,2-1C98.3,43.8,98.1,42.3,97,41.4z"/>
<path class="st0" d="M85.1,46c-1.4,0-2.5,1.1-2.5,2.5v39.3H62.8V66.3c0-6.8-5.5-12.3-12.3-12.3s-12.3,5.5-12.3,12.3v21.4H18.4V48.5
c0-1.4-1.1-2.5-2.5-2.5s-2.5,1.1-2.5,2.5v41.8c0,1.4,1.1,2.5,2.5,2.5h24.7c1.3,0,2.4-1,2.5-2.3c0-0.1,0-0.1,0-0.2V66.3
c0-4.1,3.3-7.4,7.4-7.4s7.4,3.3,7.4,7.4v23.9c0,0.1,0,0.1,0,0.2c0.1,1.3,1.2,2.3,2.5,2.3h24.7c1.4,0,2.5-1.1,2.5-2.5V48.5
C87.5,47.1,86.4,46,85.1,46z"/>
<g class="st0">
<g class="st1">
<path d="M94.7,89L71.9,65.4c5.8-7,9.1-15.7,9.1-24.8C81,19.3,63.7,2,42.4,2C21.1,2,3.8,19.3,3.8,40.6c0,21.3,17.3,38.6,38.6,38.6
c8,0,15.6-2.4,22.1-7L87.4,96c1,1,2.2,1.5,3.6,1.5c1.3,0,2.5-0.5,3.5-1.4C96.5,94.2,96.6,91.1,94.7,89L94.7,89z M42.4,12.1
c15.7,0,28.5,12.8,28.5,28.5c0,15.7-12.8,28.5-28.5,28.5c-15.7,0-28.5-12.8-28.5-28.5C13.9,24.9,26.7,12.1,42.4,12.1L42.4,12.1z
M42.4,12.1"/>
</g>
</g>
<g class="st0">
<path class="st1" d="M75.8,28.5c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2c-1.4-1.4-3.8-1.4-5.2,0l-5.2,5.2
c-1.4,1.4-1.4,3.8,0,5.2C74,28.1,74.9,28.5,75.8,28.5L75.8,28.5z M16.7,50.8c0-2-1.6-3.7-3.7-3.7H5.7c-2,0-3.7,1.6-3.7,3.7
s1.6,3.7,3.7,3.7H13C15.1,54.5,16.7,52.9,16.7,50.8L16.7,50.8z M21.2,74.2L16,79.4c-1.4,1.4-1.4,3.8,0,5.2c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1l5.2-5.2c1.4-1.4,1.4-3.8,0-5.2C25,72.8,22.6,72.8,21.2,74.2L21.2,74.2z M21.2,27.4c0.7,0.7,1.7,1.1,2.6,1.1
c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L21.2,17c-1.4-1.4-3.8-1.4-5.2,0c-1.4,1.4-1.4,3.8,0,5.2L21.2,27.4z M49.8,17.7
c2,0,3.7-1.6,3.7-3.7V6.7c0-2-1.6-3.7-3.7-3.7s-3.7,1.6-3.7,3.7V14C46.1,16.1,47.8,17.7,49.8,17.7L49.8,17.7z M94,47.1h-7.4
c-2,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7H94c2,0,3.7-1.6,3.7-3.7S96,47.1,94,47.1L94,47.1z M78.4,74.2c-1.4-1.4-3.8-1.4-5.2,0
c-1.4,1.4-1.4,3.8,0,5.2l5.2,5.2c0.7,0.7,1.7,1.1,2.6,1.1c0.9,0,1.9-0.4,2.6-1.1c1.4-1.4,1.4-3.8,0-5.2L78.4,74.2z M49.8,83.9
c-2,0-3.7,1.6-3.7,3.7V95c0,2,1.6,3.7,3.7,3.7s3.7-1.6,3.7-3.7v-7.4C53.5,85.6,51.9,83.9,49.8,83.9L49.8,83.9z M49.8,25.1
c-14.2,0-25.8,11.6-25.8,25.8c0,14.2,11.6,25.8,25.8,25.8C64,76.6,75.6,65,75.6,50.8C75.6,36.6,64,25.1,49.8,25.1L49.8,25.1z
M49.8,69.2c-10.1,0-18.4-8.3-18.4-18.4c0-10.1,8.3-18.4,18.4-18.4c10.1,0,18.4,8.3,18.4,18.4C68.2,61,60,69.2,49.8,69.2L49.8,69.2
z M49.8,69.2"/>
</g>
<path d="M91.9,75.3c3.5,0,6.3-2.8,6.3-6.3v-29c0-3.5-2.8-6.3-6.3-6.3H52.2v-0.7c0-1-0.3-1.9-0.9-2.6c0.4-0.5,0.7-1.1,0.9-1.8
c1.6-1,2.6-2.7,2.6-4.6c0-0.9-0.2-1.8-0.7-2.6c0.4-0.8,0.7-1.7,0.7-2.6c0-1.9-1-3.6-2.6-4.6c0-0.2,0-0.4,0-0.6c0-2.7-2-5-4.6-5.3
c-1-1.6-2.7-2.6-4.6-2.6c-0.2,0-0.5,0-0.7,0.1c-1.1-0.9-2.4-1.3-3.8-1.3c-0.2,0-0.4,0-0.6,0c-1.1-0.9-2.5-1.3-4-1.3
c-1.4,0-2.8,0.5-4,1.3c-0.2,0-0.4,0-0.6,0c-1.4,0-2.7,0.5-3.8,1.3c-1.7,0.2-3.2,1.1-4.1,2.6c-2.6,0.4-4.6,2.6-4.6,5.3
c0,0.2,0,0.4,0,0.6c-1.6,1-2.6,2.7-2.6,4.6c0,0.9,0.2,1.8,0.7,2.6c-0.4,0.8-0.7,1.7-0.7,2.6c0,1.9,1,3.7,2.6,4.6
c0.1,0.4,0.2,0.7,0.4,1.1c-1,0.7-1.7,2-1.7,3.3v2.6c0,2.3,1.8,4.1,4.1,4.1h0.7l0.1,0.7c0.3,1.6,1.1,3,2.3,4.1l0.5,0.5V49
c0,0.5-0.3,0.9-0.8,1l-11.3,3.5c-2.8,0.9-4.7,3.4-4.7,6.4v18.7c0,1.9,0.6,3.6,1.7,4.9H4.9c-1.7,0-3.1,1.4-3.1,3.1v3.2
c0,1.7,1.4,3.1,3.1,3.1h90.2c1.7,0,3.1-1.4,3.1-3.1v-3.2c0-1.7-1.4-3.1-3.1-3.1H78.7l-1.1-8.3H91.9z M95.2,39.9v29
c0,1.8-1.5,3.3-3.3,3.3H77.4c-0.1,0-0.1,0-0.2,0L76,63.5c-0.3-2.3-2.3-4.1-4.7-4.1h-7.2c-2.4,0-4.4,1.8-4.7,4.1l-1.2,8.8
c-0.1,0-0.1,0-0.2,0H43.6c-1.8,0-3.3-1.5-3.3-3.3v-29c0-1.8,1.5-3.3,3.3-3.3h48.3C93.7,36.6,95.2,38.1,95.2,39.9z M53.1,83.5
c0,0,0-0.1,0-0.1v-8.2h4.7l-1.1,8.3H53.1z M48.3,33.6l0.3-1.7c0.3,0.2,0.5,0.5,0.5,0.9v0.7H48.3z M18,20.3c-0.3-0.3-0.6-0.8-0.6-1.6
c0-1.1,0.7-2,1.7-2.3c0.4-0.1,0.8-0.4,1-0.8c0.2-0.4,0.2-0.8,0-1.2c-0.1-0.3-0.2-0.6-0.2-0.9c0-1.3,1-2.3,2.3-2.4c0.1,0,0.1,0,0.2,0
c0.7,0,1.3-0.4,1.5-1c0.3-0.9,1.2-1.6,2.2-1.6c0,0,0.1,0,0.1,0c0.4,0,0.8-0.1,1.1-0.4c0.6-0.6,1.3-0.9,2.1-0.9c0.2,0,0.4,0,0.7,0.1
c0.5,0.1,1,0,1.4-0.4c0.7-0.6,1.6-1,2.5-1s1.8,0.4,2.5,1c0.4,0.3,0.9,0.5,1.4,0.4c0.2-0.1,0.5-0.1,0.7-0.1c0.8,0,1.6,0.4,2.2,1
c0.4,0.4,1,0.6,1.6,0.4c0.2-0.1,0.5-0.1,0.7-0.1c1,0,1.9,0.6,2.2,1.6c0.2,0.6,0.8,1.1,1.5,1c0.1,0,0.1,0,0.2,0
c1.3,0,2.3,1.1,2.3,2.4c0,0.3-0.1,0.6-0.2,0.9c-0.2,0.4-0.1,0.9,0,1.2s0.5,0.7,1,0.8c1,0.3,1.7,1.2,1.7,2.3c0,0.7-0.3,1.3-0.6,1.6
c-0.5,0.6-0.5,1.4,0,2c0.3,0.3,0.6,0.8,0.6,1.6c0,1-0.6,1.9-1.6,2.2c-0.7,0.2-1.1,0.9-1,1.6c0,0,0,0.1,0,0.1c0,0.5-0.3,0.9-0.8,1
c0,0-1.5,0-1.5,0L46,23.6c-0.1-0.8-0.8-1.3-1.6-1.3c-0.1,0-0.1,0-0.2,0l0,0c-0.8,0-1.5-0.4-1.9-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0
c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7
c-0.4,0.7-1.2,1.1-2,1.1s-1.5-0.4-2-1.1c-0.3-0.4-0.8-0.7-1.3-0.7l0,0c-0.5,0-1,0.3-1.3,0.7c-0.4,0.7-1.1,1-1.9,1.1l0,0
c-0.1,0-0.1,0-0.2,0c-0.8-0.1-1.5,0.5-1.6,1.3l-0.9,5.2c0,0-1.4,0-1.5,0c-0.5-0.1-0.8-0.5-0.8-1c0,0,0-0.1,0-0.1
c0.1-0.7-0.4-1.3-1-1.6c-0.9-0.3-1.6-1.2-1.6-2.2c0-0.7,0.3-1.3,0.6-1.6C18.5,21.7,18.5,20.8,18,20.3z M19.7,36.5
c-0.6,0-1.1-0.5-1.1-1.1v-2.6c0-0.4,0.2-0.7,0.5-0.9l0.7,4.6H19.7z M22.2,31.8h0.2c1.4,0,2.5-1,2.8-2.3l0.7-4.2
c0.8-0.2,1.6-0.5,2.2-1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1c0.9,0.7,2,1.1,3.2,1.1c1.2,0,2.3-0.4,3.2-1.1
c0.7,0.5,1.4,0.8,2.2,1l0.7,4.2c0.2,1,0.8,1.8,1.7,2.1l-0.3,2h-1.7c-3.5,0-6.3,2.8-6.3,6.3v6.7c-0.3,0.1-0.6,0.2-0.9,0.2h-4.9
c-0.6,0-1.1-0.2-1.5-0.5L24.7,42c-0.7-0.6-1.1-1.4-1.3-2.2L22.2,31.8z M23.5,52.9c1.7-0.5,2.9-2.1,2.9-3.9v-1.7l1.6,1.3
c1,0.8,2.2,1.2,3.4,1.2h4.9c0.3,0,0.6,0,0.9-0.1v9.7c-0.9,0.1-1.8,0.2-2.7,0.2c-5,0-9.8-2.3-12.9-6.2L23.5,52.9z M9.6,78.6V59.9
c0-1.6,1-3,2.6-3.5l6.3-2c3.7,5.2,9.6,8.3,16,8.3c0.9,0,1.8-0.1,2.7-0.2v6.4c0,3.5,2.8,6.3,6.3,6.3h6.5v8.2c0,0,0,0.1,0,0.1h-8.3
v-1.7c0-3.5-2.8-6.3-6.3-6.3H19.4c-0.1,0-0.1,0-0.1-0.1v-9.7c0-0.8-0.7-1.5-1.5-1.5s-1.5,0.7-1.5,1.5v9.7c0,1.7,1.4,3.1,3.1,3.1h9.8
v5H14.6C11.8,83.5,9.6,81.3,9.6,78.6z M32.2,83.5v-5h3.3c1.8,0,3.3,1.5,3.3,3.3v1.7H32.2z M95.2,86.7v3.2c0,0.1,0,0.1-0.1,0.1H4.9
c-0.1,0-0.1,0-0.1-0.1v-3.2c0-0.1,0-0.1,0.1-0.1h90.2C95.2,86.6,95.2,86.6,95.2,86.7z M59.8,83.5l2.6-19.7c0.1-0.8,0.8-1.5,1.7-1.5
h7.2c0.9,0,1.6,0.6,1.7,1.5l2.6,19.7H59.8z"/>
<path d="M67.7,56c2.6,0,4.7-2.1,4.7-4.7c0-2.6-2.1-4.7-4.7-4.7c-2.6,0-4.7,2.1-4.7,4.7C63,53.8,65.1,56,67.7,56z M67.7,49.5
c0.9,0,1.7,0.8,1.7,1.7c0,0.9-0.8,1.7-1.7,1.7c-0.9,0-1.7-0.8-1.7-1.7C66,50.3,66.8,49.5,67.7,49.5z"/>
</svg>
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.1.0, 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 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;}
.st2{fill:#231F20;}
</style>
<g class="st0">
<g class="st1">
<path class="st2" d="M68.3,50.3c1.5-17-4.4-34.3-16.8-46.7c-0.8-0.8-2.1-0.8-2.8,0C36.1,16,30.2,33.3,31.7,50.3
c-4.3,4.6-6.7,10.6-6.7,17c0,6.4,2.4,12.5,6.9,17.2c1.1,1.1,3.9,0.6,3.4-1.9c-0.2-1.3-0.5-2.6-0.5-3.9c0-3.1,0.9-6.1,2.7-8.6
c0.3,0.2,0.6,0.3,1,0.3h23c0.3,0,0.7-0.1,1-0.3c1.8,2.5,2.7,5.5,2.7,8.6c0,1.3-0.3,2.5-0.5,3.9c-0.4,2.8,2.5,2.9,3.4,1.9
c4.4-4.7,6.9-10.8,6.9-17.2C74.9,60.9,72.6,54.9,68.3,50.3z M50,7.9c3.6,3.9,6.6,8.2,8.8,12.9H41.2C43.4,16.1,46.4,11.8,50,7.9
L50,7.9z M31,76c-1.2-2.7-1.9-5.6-1.9-8.7c0-4.1,1.2-8,3.4-11.4c0,0.2,2.1,8.2,2.9,10.3C33,69,31.5,72.3,31,76L31,76z M60.1,66.2
H39.8c-5.7-13.4-5.6-28.3-0.5-41.4h21.2C65.8,37.9,65.8,52.9,60.1,66.2z M64.5,66.2c1.1-2.9,2.9-10.2,2.9-10.3
c2.2,3.4,3.4,7.3,3.4,11.4c0,3-0.7,6-1.9,8.7C68.5,72.3,67,69,64.5,66.2L64.5,66.2z"/>
<path class="st2" d="M41.8,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2s2-0.9,2-2V75.7C43.8,74.6,42.9,73.7,41.8,73.7z"/>
<path class="st2" d="M50,73.7c-0.6,0-1.1,0.2-1.4,0.6c0,0,0,0,0,0c-0.2,0.2-0.4,0.5-0.5,0.9c0,0.2-0.1,0.3-0.1,0.5V96
c0,0.2,0,0.3,0.1,0.5c0.2,0.9,1,1.6,2,1.6c0.9,0,1.7-0.7,2-1.6c0-0.2,0.1-0.3,0.1-0.5V75.7c0-0.2,0-0.4-0.1-0.5
C51.7,74.3,50.9,73.7,50,73.7z"/>
<path class="st2" d="M58.2,73.7c-1.1,0-2,0.9-2,2v10.1c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2V75.7C60.2,74.6,59.3,73.7,58.2,73.7z"/>
</g>
</g>
<g class="st0">
<g class="st1">
<path d="M83.3,37.3h-5.9v-7.8C77.4,14.3,65.1,2,50,2S22.6,14.3,22.6,29.4v7.8h-5.9c-1.1,0-2,0.9-2,2v49c0,4.3,3.5,7.8,7.8,7.8
h54.8c4.3,0,7.8-3.5,7.8-7.8v-49C85.3,38.1,84.4,37.3,83.3,37.3z M55.9,78.2c0.1,0.6-0.1,1.1-0.5,1.5c-0.4,0.4-0.9,0.7-1.5,0.7
h-7.8c-0.6,0-1.1-0.2-1.5-0.7c-0.4-0.4-0.5-1-0.5-1.5L45.4,67c-2-1.5-3.2-3.8-3.2-6.3c0-4.3,3.5-7.8,7.8-7.8s7.8,3.5,7.8,7.8
c0,2.5-1.2,4.8-3.2,6.3L55.9,78.2z M65.7,37.3H34.3v-7.8c0-8.6,7-15.7,15.7-15.7s15.7,7,15.7,15.7V37.3z"/>
</g>
</g>
<g>
<path d="M55.8,98.2H44.2c-2.3,0-4.3-1.7-4.5-4.1L38.5,87c-2.2-0.7-4.4-1.6-6.5-2.7l-6,4.3c-0.7,0.6-1.7,1-2.8,1
c-1.2,0-2.3-0.5-3.2-1.3L11.8,80c-1.6-1.6-1.8-4.2-0.3-6l4.2-5.9c-1.1-2.1-2-4.3-2.7-6.5l-7.3-1.2c-2.2-0.2-4-2.1-4-4.5V44.2
c0-2.3,1.7-4.3,4.1-4.5l7.2-1.2c0.7-2.2,1.6-4.4,2.7-6.5l-4.3-6c-1.4-1.7-1.3-4.3,0.4-6l8.2-8.2c1.6-1.6,4.3-1.7,6-0.3l5.9,4.2
c2.1-1.1,4.3-2,6.5-2.7l1.2-7.3c0.2-2.2,2.1-4,4.5-4h11.7c2.3,0,4.3,1.7,4.5,4.1l1.2,7.2c2.2,0.7,4.4,1.6,6.5,2.7l6-4.3
c0.7-0.6,1.7-0.9,2.8-0.9c1.2,0,2.3,0.5,3.2,1.3l8.2,8.2c1.6,1.6,1.8,4.2,0.3,6L84.3,32c1.1,2.1,2,4.3,2.7,6.5l7.3,1.2
c2.2,0.2,4,2.1,4,4.5v11.7c0,2.3-1.7,4.3-4.1,4.5L87,61.5c-0.7,2.2-1.6,4.4-2.7,6.5l4.3,6c1.4,1.7,1.3,4.3-0.4,6L80,88.2
c-1.6,1.6-4.3,1.7-6,0.3L68,84.3c-2.1,1.1-4.3,2-6.5,2.7l-1.2,7.3C60.1,96.5,58.2,98.2,55.8,98.2L55.8,98.2z M31.9,80.8
c0.3,0,0.5,0.1,0.8,0.2c2.4,1.4,5,2.4,7.7,3.2c0.6,0.2,1,0.7,1.1,1.3l1.4,8.2c0.1,0.8,0.7,1.3,1.3,1.3h11.7c0.7,0,1.2-0.5,1.3-1.2
l1.4-8.3c0.1-0.6,0.5-1.1,1.1-1.3c2.7-0.8,5.3-1.8,7.7-3.2c0.5-0.3,1.2-0.3,1.7,0.1l6.8,4.9c0.7,0.6,1.4,0.4,1.9,0l8.2-8.2
c0.5-0.5,0.5-1.2,0.1-1.8l-4.9-6.9c-0.4-0.5-0.4-1.2-0.1-1.7c1.4-2.4,2.4-5,3.2-7.7c0.2-0.6,0.7-1,1.3-1.1l8.3-1.4
c0.8-0.1,1.3-0.7,1.3-1.3V44.2c0-0.7-0.5-1.2-1.2-1.3l-8.3-1.4c-0.6-0.1-1.1-0.5-1.3-1.1c-0.8-2.7-1.8-5.3-3.2-7.7
c-0.3-0.5-0.3-1.2,0.1-1.7l4.9-6.8c0.5-0.6,0.5-1.4,0-1.9l-8.2-8.2c-0.5-0.5-1.3-0.5-1.8-0.1l-6.9,4.9c-0.5,0.4-1.2,0.4-1.7,0.1
c-2.4-1.4-5-2.4-7.7-3.2c-0.6-0.2-1-0.7-1.1-1.3l-1.4-8.2C57.1,5.5,56.5,5,55.8,5H44.2c-0.7,0-1.2,0.5-1.3,1.2l-1.4,8.3
c-0.1,0.6-0.5,1.1-1.1,1.3c-2.7,0.8-5.3,1.8-7.7,3.2c-0.5,0.3-1.2,0.3-1.7-0.1L24.1,14c-0.7-0.5-1.4-0.4-1.9,0L14,22.3
c-0.5,0.5-0.5,1.2-0.1,1.8l4.9,6.9c0.4,0.5,0.4,1.2,0.1,1.7c-1.4,2.4-2.4,5-3.2,7.7c-0.2,0.6-0.7,1-1.3,1.1l-8.2,1.4
C5.5,42.9,5,43.5,5,44.2v11.7c0,0.7,0.5,1.2,1.2,1.3l8.4,1.4c0.6,0.1,1.1,0.5,1.3,1.1c0.7,2.7,1.8,5.3,3.2,7.7
c0.3,0.5,0.3,1.2-0.1,1.7L14,75.9c-0.5,0.6-0.5,1.4,0,1.9l8.2,8.2c0.5,0.5,1.3,0.5,1.8,0.1l6.9-4.9C31.2,80.9,31.5,80.8,31.9,80.8
L31.9,80.8z M50,69.1c-10.5,0-19.1-8.5-19.1-19.1c0-10.5,8.6-19.1,19.1-19.1c10.5,0,19.1,8.6,19.1,19.1
C69.1,60.5,60.5,69.1,50,69.1L50,69.1z M50,34.1c-8.8,0-15.9,7.1-15.9,15.9c0,8.8,7.1,15.9,15.9,15.9c8.8,0,15.9-7.1,15.9-15.9
C65.9,41.2,58.8,34.1,50,34.1L50,34.1z M50,34.1"/>
</g>
</svg>
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
/*!
Waypoints - 4.0.1
Copyright © 2011-2016 Caleb Troughton
Licensed under the MIT license.
https://github.com/imakewebthings/waypoints/blob/master/licenses.txt
*/
!function(){"use strict";function t(o){if(!o)throw new Error("No options passed to Waypoint constructor");if(!o.element)throw new Error("No element option passed to Waypoint constructor");if(!o.handler)throw new Error("No handler option passed to Waypoint constructor");this.key="waypoint-"+e,this.options=t.Adapter.extend({},t.defaults,o),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=o.handler,this.axis=this.options.horizontal?"horizontal":"vertical",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),i[this.key]=this,e+=1}var e=0,i={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete i[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var e=[];for(var o in i)e.push(i[o]);for(var n=0,r=e.length;r>n;n++)e[n][t]()},t.destroyAll=function(){t.invokeAll("destroy")},t.disableAll=function(){t.invokeAll("disable")},t.enableAll=function(){t.Context.refreshAll();for(var e in i)i[e].enabled=!0;return this},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:"default",horizontal:!1,offset:0},t.offsetAliases={"bottom-in-view":function(){return this.context.innerHeight()-this.adapter.outerHeight()},"right-in-view":function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){"use strict";function t(t){window.setTimeout(t,1e3/60)}function e(t){this.element=t,this.Adapter=n.Adapter,this.adapter=new this.Adapter(t),this.key="waypoint-context-"+i,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,o[t.waypointContextKey]=this,i+=1,n.windowContext||(n.windowContext=!0,n.windowContext=new e(window)),this.createThrottledScrollHandler(),this.createThrottledResizeHandler()}var i=0,o={},n=window.Waypoint,r=window.onload;e.prototype.add=function(t){var e=t.options.horizontal?"horizontal":"vertical";this.waypoints[e][t.key]=t,this.refresh()},e.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical),i=this.element==this.element.window;t&&e&&!i&&(this.adapter.off(".waypoints"),delete o[this.key])},e.prototype.createThrottledResizeHandler=function(){function t(){e.handleResize(),e.didResize=!1}var e=this;this.adapter.on("resize.waypoints",function(){e.didResize||(e.didResize=!0,n.requestAnimationFrame(t))})},e.prototype.createThrottledScrollHandler=function(){function t(){e.handleScroll(),e.didScroll=!1}var e=this;this.adapter.on("scroll.waypoints",function(){(!e.didScroll||n.isTouch)&&(e.didScroll=!0,n.requestAnimationFrame(t))})},e.prototype.handleResize=function(){n.Context.refreshAll()},e.prototype.handleScroll=function(){var t={},e={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};for(var i in e){var o=e[i],n=o.newScroll>o.oldScroll,r=n?o.forward:o.backward;for(var s in this.waypoints[i]){var a=this.waypoints[i][s];if(null!==a.triggerPoint){var l=o.oldScroll<a.triggerPoint,h=o.newScroll>=a.triggerPoint,p=l&&h,u=!l&&!h;(p||u)&&(a.queueTrigger(r),t[a.group.id]=a.group)}}}for(var c in t)t[c].flushTriggers();this.oldScroll={x:e.horizontal.newScroll,y:e.vertical.newScroll}},e.prototype.innerHeight=function(){return this.element==this.element.window?n.viewportHeight():this.adapter.innerHeight()},e.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},e.prototype.innerWidth=function(){return this.element==this.element.window?n.viewportWidth():this.adapter.innerWidth()},e.prototype.destroy=function(){var t=[];for(var e in this.waypoints)for(var i in this.waypoints[e])t.push(this.waypoints[e][i]);for(var o=0,n=t.length;n>o;o++)t[o].destroy()},e.prototype.refresh=function(){var t,e=this.element==this.element.window,i=e?void 0:this.adapter.offset(),o={};this.handleScroll(),t={horizontal:{contextOffset:e?0:i.left,contextScroll:e?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:e?0:i.top,contextScroll:e?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};for(var r in t){var s=t[r];for(var a in this.waypoints[r]){var l,h,p,u,c,d=this.waypoints[r][a],f=d.options.offset,w=d.triggerPoint,y=0,g=null==w;d.element!==d.element.window&&(y=d.adapter.offset()[s.offsetProp]),"function"==typeof f?f=f.apply(d):"string"==typeof f&&(f=parseFloat(f),d.options.offset.indexOf("%")>-1&&(f=Math.ceil(s.contextDimension*f/100))),l=s.contextScroll-s.contextOffset,d.triggerPoint=Math.floor(y+l-f),h=w<s.oldScroll,p=d.triggerPoint>=s.oldScroll,u=h&&p,c=!h&&!p,!g&&u?(d.queueTrigger(s.backward),o[d.group.id]=d.group):!g&&c?(d.queueTrigger(s.forward),o[d.group.id]=d.group):g&&s.oldScroll>=d.triggerPoint&&(d.queueTrigger(s.forward),o[d.group.id]=d.group)}}return n.requestAnimationFrame(function(){for(var t in o)o[t].flushTriggers()}),this},e.findOrCreateByElement=function(t){return e.findByElement(t)||new e(t)},e.refreshAll=function(){for(var t in o)o[t].refresh()},e.findByElement=function(t){return o[t.waypointContextKey]},window.onload=function(){r&&r(),e.refreshAll()},n.requestAnimationFrame=function(e){var i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||t;i.call(window,e)},n.Context=e}(),function(){"use strict";function t(t,e){return t.triggerPoint-e.triggerPoint}function e(t,e){return e.triggerPoint-t.triggerPoint}function i(t){this.name=t.name,this.axis=t.axis,this.id=this.name+"-"+this.axis,this.waypoints=[],this.clearTriggerQueues(),o[this.axis][this.name]=this}var o={vertical:{},horizontal:{}},n=window.Waypoint;i.prototype.add=function(t){this.waypoints.push(t)},i.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},i.prototype.flushTriggers=function(){for(var i in this.triggerQueues){var o=this.triggerQueues[i],n="up"===i||"left"===i;o.sort(n?e:t);for(var r=0,s=o.length;s>r;r+=1){var a=o[r];(a.options.continuous||r===o.length-1)&&a.trigger([i])}}this.clearTriggerQueues()},i.prototype.next=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints),o=i===this.waypoints.length-1;return o?null:this.waypoints[i+1]},i.prototype.previous=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints);return i?this.waypoints[i-1]:null},i.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},i.prototype.remove=function(t){var e=n.Adapter.inArray(t,this.waypoints);e>-1&&this.waypoints.splice(e,1)},i.prototype.first=function(){return this.waypoints[0]},i.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},i.findOrCreate=function(t){return o[t.axis][t.name]||new i(t)},n.Group=i}(),function(){"use strict";function t(t){this.$element=e(t)}var e=window.jQuery,i=window.Waypoint;e.each(["innerHeight","innerWidth","off","offset","on","outerHeight","outerWidth","scrollLeft","scrollTop"],function(e,i){t.prototype[i]=function(){var t=Array.prototype.slice.call(arguments);return this.$element[i].apply(this.$element,t)}}),e.each(["extend","inArray","isEmptyObject"],function(i,o){t[o]=e[o]}),i.adapters.push({name:"jquery",Adapter:t}),i.Adapter=t}(),function(){"use strict";function t(t){return function(){var i=[],o=arguments[0];return t.isFunction(arguments[0])&&(o=t.extend({},arguments[1]),o.handler=arguments[0]),this.each(function(){var n=t.extend({},o,{element:this});"string"==typeof n.context&&(n.context=t(this).closest(n.context)[0]),i.push(new e(n))}),i}}var e=window.Waypoint;window.jQuery&&(window.jQuery.fn.waypoint=t(window.jQuery)),window.Zepto&&(window.Zepto.fn.waypoint=t(window.Zepto))}();
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
# You can delete this file. It's just here to make Git happy.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment