split frontend from project and Implement ci/cd
2
.gitignore
vendored
@@ -18,4 +18,4 @@ yarn-error.log
|
||||
/.fleet
|
||||
/.idea
|
||||
/.vscode
|
||||
archive.tgz
|
||||
archive.tgz
|
||||
|
||||
91
.gitlab-ci.yml
Normal file
@@ -0,0 +1,91 @@
|
||||
default:
|
||||
image: witel/rms:1.0
|
||||
|
||||
|
||||
stages:
|
||||
- test
|
||||
- lint
|
||||
- deploy
|
||||
|
||||
variables:
|
||||
TAG_LATEST: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:latest
|
||||
TAG_COMMIT: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:$CI_COMMIT_SHORT_SHA
|
||||
TARGET_BRANCH_NAME: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME
|
||||
GIT_STRATEGY: fetch
|
||||
GIT_DEPTH: 10
|
||||
GIT_HTTP_LOW_SPEED_LIMIT: 1000 # Bytes per second
|
||||
GIT_HTTP_LOW_SPEED_TIME: 30
|
||||
MYSQL_ROOT_PASSWORD: $MYSQL_ROOT_PASSWORD
|
||||
|
||||
# https://docs.gitlab.com/ee/ci/yaml/index.html#cache
|
||||
cache:
|
||||
paths:
|
||||
- vendor/
|
||||
|
||||
services:
|
||||
- name: mysql:latest
|
||||
alias: mysql
|
||||
|
||||
before_script:
|
||||
- apk update
|
||||
- coman=$(ls && pwd)
|
||||
- echo "'$coman'"
|
||||
- cp .env.example .env
|
||||
- composer install
|
||||
- php artisan key:generate
|
||||
- apk add --no-cache ca-certificates
|
||||
- update-ca-certificates
|
||||
- git fetch
|
||||
|
||||
|
||||
test:
|
||||
stage: test
|
||||
script:
|
||||
- php artisan config:clear
|
||||
- cp .env.example .env.testing
|
||||
- sed -i "s/DB_HOST=127.0.0.1/DB_HOST=mysql/" .env.testing
|
||||
- sed -i "s/DB_DATABASE=/DB_DATABASE=$MYSQL_DATABASE/" .env.testing
|
||||
- sed -i "s/DB_USERNAME=/DB_USERNAME=$MYSQL_USERNAME/" .env.testing
|
||||
- sed -i "s/DB_PASSWORD=/DB_PASSWORD=$MYSQL_ROOT_PASSWORD/" .env.testing
|
||||
- cat .env.testing
|
||||
- php artisan key:generate --env=testing
|
||||
- php artisan migrate --env=testing --force
|
||||
- php artisan test
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
||||
when: always
|
||||
|
||||
.lint:
|
||||
stage: lint
|
||||
script:
|
||||
- log=$(git log && git log -p)
|
||||
- echo "'$log'"
|
||||
- echo "'$CI_COMMIT_SHA'"
|
||||
- CHANGED_FILES=$( git diff-tree --name-only -r origin/$TARGET_BRANCH_NAME -r $CI_COMMIT_SHA)
|
||||
- echo $CHANGED_FILES
|
||||
- composer require --dev squizlabs/php_codesniffer
|
||||
- vendor/bin/phpcs --standard=PSR12 $CHANGED_FILES
|
||||
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
||||
when: always
|
||||
allow_failure: true
|
||||
|
||||
deploy:
|
||||
stage: deploy
|
||||
script:
|
||||
- apt-get update && add --no-cache openssh-client
|
||||
- chmod og-rwx $ID_RSA
|
||||
- ssh -i $ID_RSA -o StrictHostKeyChecking=no $SERVER_USER@$SERVER_IP "
|
||||
echo -e '$SHECAN_DNS' | sudo tee /etc/resolv.conf &&
|
||||
dns=\$(cat /etc/resolv.conf) &&
|
||||
echo \"\$dns\" &&
|
||||
cd $PROJECT_PATH &&
|
||||
git checkout $TARGET_BRANCH_NAME &&
|
||||
ssh -T git@gitlab.com &&
|
||||
git pull ssh-origin $TARGET_BRANCH_NAME &&
|
||||
echo -e '$DEFAULT_DNS' | sudo tee /etc/resolv.conf"
|
||||
resource_group: develop_deploy
|
||||
rules:
|
||||
- if: '$CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_REF_NAME == "develop"'
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# RMTO Dashboard Project using Laravel
|
||||
git push sshorigin develop
|
||||
git push sshorigin develop :D
|
||||
|
||||
8
public/.gitignore
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
*
|
||||
!.gitignore
|
||||
!.htaccess
|
||||
!favicon.ico
|
||||
!index.php
|
||||
!robots.txt
|
||||
!vendor
|
||||
!web.config
|
||||
@@ -24,4 +24,4 @@
|
||||
</IfModule>
|
||||
<IfModule mod_deflate.c>
|
||||
AddOutputFilterByType DEFLATE application/json
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
<IfModule mod_negotiation.c>
|
||||
Options -MultiViews -Indexes
|
||||
</IfModule>
|
||||
|
||||
RewriteEngine On
|
||||
|
||||
# Handle Authorization Header
|
||||
RewriteCond %{HTTP:Authorization} .
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
|
||||
# Redirect Trailing Slashes If Not A Folder...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_URI} (.+)/$
|
||||
RewriteRule ^ %1 [L,R=301]
|
||||
|
||||
# Handle Front Controller...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
||||
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 11 KiB |
@@ -1,46 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352H16V8c0-4.416-3.576-8-8-8S0,3.584,0,8v352c0,4.416,3.576,8,8,8h352c4.424,0,8-3.584,8-8
|
||||
C368,355.584,364.424,352,360,352z"/>
|
||||
<path d="M72,304c2.048,0,4.096-0.784,5.656-2.344L288,91.312V168c0,4.416,3.576,8,8,8s8-3.584,8-8V72
|
||||
c0-1.04-0.208-2.08-0.616-3.056c-0.808-1.96-2.368-3.52-4.328-4.328C298.08,64.216,297.04,64,296,64h-96c-4.424,0-8,3.584-8,8
|
||||
s3.576,8,8,8h76.688L66.344,290.344c-3.128,3.128-3.128,8.184,0,11.312C67.904,303.216,69.952,304,72,304z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1,46 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352H16V8c0-4.416-3.576-8-8-8S0,3.584,0,8v352c0,4.416,3.576,8,8,8h352c4.424,0,8-3.584,8-8
|
||||
C368,355.584,364.424,352,360,352z"/>
|
||||
<path d="M68.944,303.384C69.92,303.784,70.96,304,72,304h96c4.424,0,8-3.584,8-8c0-4.416-3.576-8-8-8H91.312L301.656,77.656
|
||||
c3.128-3.128,3.128-8.184,0-11.312s-8.184-3.128-11.312,0L80,276.688V200c0-4.416-3.576-8-8-8s-8,3.584-8,8v96
|
||||
c0,1.04,0.216,2.08,0.616,3.056C65.424,301.016,66.984,302.576,68.944,303.384z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1009 B |
@@ -1,54 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352H16V8c0-4.416-3.584-8-8-8S0,3.584,0,8v352c0,4.416,3.584,8,8,8h352c4.424,0,8-3.584,8-8
|
||||
C368,355.584,364.424,352,360,352z"/>
|
||||
<path d="M88,240c22.056,0,40-17.944,40-40c0-6.88-1.84-13.544-5.112-19.392l52.592-45.04C182.376,140.984,190.96,144,200,144
|
||||
c6.96,0,13.728-1.888,19.72-5.296l60.488,69.072C274.936,214.672,272,223.16,272,232c0,22.056,17.944,40,40,40
|
||||
c22.056,0,40-17.944,40-40c0-22.056-17.944-40-40-40c-6.96,0-13.728,1.888-19.72,5.296l-60.488-69.072
|
||||
C237.056,121.32,240,112.84,240,104c0-22.056-17.944-40-40-40c-22.056,0-40,17.944-40,40c0,6.856,1.832,13.504,5.12,19.384
|
||||
l-52.6,45.04C105.624,163.016,97.04,160,88,160c-22.056,0-40,17.944-40,40C48,222.056,65.944,240,88,240z M296.224,213.944
|
||||
c0,0,0.008,0,0.008-0.008C300.624,210.112,306.224,208,312,208c13.232,0,24,10.768,24,24s-10.768,24-24,24s-24-10.768-24-24
|
||||
C288,225.072,290.992,218.496,296.224,213.944z M200,80c13.232,0,24,10.768,24,24c0,6.928-2.992,13.504-8.224,18.056
|
||||
c0,0-0.008,0-0.008,0.008c-9.768,8.504-25.816,7.224-33.872-2.4c-0.016-0.024-0.032-0.04-0.056-0.064
|
||||
c-0.016-0.016-0.032-0.032-0.04-0.056c-3.744-4.288-5.8-9.808-5.8-15.544C176,90.768,186.768,80,200,80z M88,176
|
||||
c7.072,0,13.672,3.04,18.208,8.456C109.944,188.744,112,194.264,112,200c0,13.232-10.768,24-24,24s-24-10.768-24-24
|
||||
S74.768,176,88,176z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,47 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352H16V8c0-4.416-3.584-8-8-8S0,3.584,0,8v352c0,4.416,3.584,8,8,8h352c4.416,0,8-3.584,8-8
|
||||
C368,355.584,364.416,352,360,352z"/>
|
||||
<path d="M160,123.312V184c0,4.416,3.584,8,8,8h60.688l96,96H248c-4.416,0-8,3.584-8,8c0,4.416,3.584,8,8,8h96
|
||||
c1.04,0,2.08-0.216,3.056-0.616c1.952-0.808,3.512-2.368,4.328-4.328c0.4-0.976,0.616-2.016,0.616-3.056v-96c0-4.416-3.584-8-8-8
|
||||
c-4.416,0-8,3.584-8,8v76.688l-98.344-98.344C236.16,176.84,234.12,176,232,176h-56v-56c0-2.12-0.84-4.16-2.344-5.656l-96-96
|
||||
c-3.128-3.128-8.184-3.128-11.312,0s-3.128,8.184,0,11.312L160,123.312z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1,47 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352H16V8c0-4.416-3.584-8-8-8S0,3.584,0,8v352c0,4.416,3.584,8,8,8h352c4.416,0,8-3.584,8-8
|
||||
C368,355.584,364.416,352,360,352z"/>
|
||||
<path d="M72,304c2.048,0,4.096-0.784,5.656-2.344L171.312,208H232c4.416,0,8-3.584,8-8v-60.688l96-96V120c0,4.416,3.584,8,8,8
|
||||
c4.416,0,8-3.584,8-8V24c0-1.04-0.216-2.08-0.616-3.056c-0.808-1.952-2.368-3.512-4.328-4.328C346.08,16.216,345.04,16,344,16
|
||||
h-96c-4.416,0-8,3.584-8,8s3.584,8,8,8h76.688l-98.344,98.344C224.84,131.84,224,133.88,224,136v56h-56
|
||||
c-2.12,0-4.16,0.84-5.656,2.344l-96,96c-3.128,3.128-3.128,8.184,0,11.312C67.904,303.216,69.952,304,72,304z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -1,48 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368.002 368.002" style="enable-background:new 0 0 368.002 368.002;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352.002h-8v-168c0-4.416-3.576-8-8-8h-64c-4.424,0-8,3.584-8,8v168h-32v-200c0-4.416-3.576-8-8-8h-64
|
||||
c-4.424,0-8,3.584-8,8v200h-32v-232c0-4.416-3.576-8-8-8H56c-4.424,0-8,3.584-8,8v232H16v-344c0-4.416-3.576-8-8-8s-8,3.584-8,8
|
||||
v352c0,4.416,3.576,8,8,8h48h64h48h64h48h64h16c4.424,0,8-3.584,8-8C368,355.586,364.424,352.002,360,352.002z M112,352.002H64
|
||||
v-224h48V352.002z M224,352.002h-48v-192h48V352.002z M336,352.002h-48v-160h48V352.002z"/>
|
||||
<path d="M260.944,111.386c0.976,0.4,2.016,0.616,3.056,0.616h80c4.424,0,8-3.584,8-8s-3.576-8-8-8h-60.688l82.344-82.344
|
||||
c3.128-3.128,3.128-8.184,0-11.312s-8.184-3.128-11.312,0L272,84.69V24.002c0-4.416-3.576-8-8-8s-8,3.584-8,8v80
|
||||
c0,1.04,0.216,2.08,0.616,3.056C257.424,109.018,258.984,110.578,260.944,111.386z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,48 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352h-8V120c0-4.416-3.576-8-8-8h-64c-4.424,0-8,3.584-8,8v232h-32V152c0-4.416-3.576-8-8-8h-64
|
||||
c-4.424,0-8,3.584-8,8v200h-32V184c0-4.416-3.576-8-8-8H56c-4.424,0-8,3.584-8,8v168H16V8c0-4.416-3.576-8-8-8S0,3.584,0,8v352
|
||||
c0,4.416,3.576,8,8,8h48h64h48h64h48h64h16c4.424,0,8-3.584,8-8C368,355.584,364.424,352,360,352z M112,352H64V192h48V352z
|
||||
M224,352h-48V160h48V352z M336,352h-48V128h48V352z"/>
|
||||
<path d="M56,112c2.048,0,4.096-0.784,5.656-2.344L144,27.312V88c0,4.416,3.576,8,8,8s8-3.584,8-8V8
|
||||
c0-1.04-0.208-2.08-0.616-3.056c-0.808-1.96-2.368-3.52-4.328-4.328C154.08,0.216,153.04,0,152,0H72c-4.424,0-8,3.584-8,8
|
||||
s3.576,8,8,8h60.688L50.344,98.344c-3.128,3.128-3.128,8.184,0,11.312C51.904,111.216,53.952,112,56,112z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,43 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352H16v-32h296c4.424,0,8-3.584,8-8v-64c0-4.416-3.576-8-8-8H16v-32h232c4.424,0,8-3.584,8-8v-64
|
||||
c0-4.416-3.576-8-8-8H16V96h168c4.416,0,8-3.584,8-8V24c0-4.416-3.584-8-8-8H16V8c0-4.416-3.584-8-8-8S0,3.584,0,8v16v64v48v64v48
|
||||
v64v48c0,4.416,3.584,8,8,8h352c4.424,0,8-3.584,8-8C368,355.584,364.424,352,360,352z M128,32h48v48h-48V32z M16,32h96v48H16V32z
|
||||
M192,144h48v48h-48V144z M16,144h160v48H16V144z M256,256h48v48h-48V256z M16,256h224v48H16V256z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 999 B |
@@ -1,45 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M314.376,54.304c-0.104-0.128-0.144-0.288-0.264-0.408s-0.28-0.16-0.408-0.272C280.416,20.504,234.56,0,184,0
|
||||
C82.536,0,0,82.544,0,184s82.536,184,184,184c50.568,0,96.424-20.512,129.712-53.64c0.12-0.104,0.28-0.144,0.392-0.264
|
||||
s0.152-0.272,0.264-0.392C347.496,280.416,368,234.56,368,184C368,133.448,347.496,87.592,314.376,54.304z M184,16
|
||||
c43.44,0,82.96,16.72,112.816,43.88L180.688,176H16.408C20.624,87.088,94.064,16,184,16z M184,352
|
||||
c-89.936,0-163.376-71.088-167.592-160h164.288l116.12,116.12C266.96,335.28,227.448,352,184,352z M308.128,296.808L195.32,184
|
||||
L308.128,71.192C335.288,101.04,352,140.56,352,184S335.288,266.952,308.128,296.808z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,44 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M184,0C82.536,0,0,82.544,0,184c0,50.552,20.496,96.4,53.608,129.688c0.112,0.128,0.152,0.296,0.28,0.424
|
||||
c0.128,0.128,0.288,0.168,0.424,0.28C87.6,347.504,133.448,368,184,368c101.464,0,184-82.544,184-184S285.464,0,184,0z
|
||||
M192,16.408C278.24,20.496,347.504,89.76,351.592,176H192V16.408z M16,184C16,94.064,87.096,20.624,176,16.408v164.28
|
||||
L59.872,296.816C32.72,266.96,16,227.44,16,184z M184,352c-43.44,0-82.96-16.712-112.816-43.872L187.312,192h164.28
|
||||
C347.376,280.912,273.936,352,184,352z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1,46 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M184,0C82.544,0,0,82.544,0,184s82.544,184,184,184c50.56,0,96.416-20.504,129.704-53.624
|
||||
c0.128-0.112,0.288-0.152,0.408-0.272s0.16-0.28,0.272-0.408C347.496,280.408,368,234.552,368,184C368,82.544,285.464,0,184,0z
|
||||
M256,184c0,39.696-32.296,72-72,72c-39.696,0-72-32.304-72-72s32.304-72,72-72C223.704,112,256,144.304,256,184z M176,16.408v80
|
||||
c-42.144,3.824-75.776,37.448-79.592,79.592h-80C20.496,89.76,89.76,20.496,176,16.408z M184,352
|
||||
c-89.936,0-163.376-71.088-167.592-160h80c4.056,44.784,41.768,80,87.592,80c21.384,0,41-7.688,56.272-20.416l56.544,56.544
|
||||
C266.96,335.28,227.44,352,184,352z M308.128,296.808l-56.544-56.544C264.312,225,272,205.384,272,184
|
||||
c0-45.824-35.216-83.536-80-87.592v-80C280.904,20.624,352,94.064,352,184C352,227.44,335.28,266.96,308.128,296.808z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,49 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M344,32h-88V16c0-8.8-7.2-16-16-16H128c-8.8,0-16,7.2-16,16v16H24C10.8,32,0,42.8,0,56v224c0,13.2,10.8,24,24,24h120v48
|
||||
h-24c-4.4,0-8,3.6-8,8c0,4.4,3.6,8,8,8h32h64h32c4.4,0,8-3.6,8-8c0-4.4-3.6-8-8-8h-24v-48h120c13.2,0,24-10.8,24-24V56
|
||||
C368,42.8,357.2,32,344,32z M128,16h112v48H128V16z M208,352h-48v-48h48V352z M352,280c0,4.4-3.6,8-8,8H24c-4.4,0-8-3.6-8-8V56
|
||||
c0-4.4,3.6-8,8-8h88v16c0,8.8,7.2,16,16,16h112c8.8,0,16-7.2,16-16V48h88c4.4,0,8,3.6,8,8V280z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M232,127.7h-64c-4.4,0-8,3.6-8,8c0,4.4,3.6,8,8,8h45l-82,82c-3.1,3.1-3.1,8.2,0,11.3c1.6,1.6,3.6,2.3,5.7,2.3
|
||||
s4.1-0.8,5.7-2.3l81.7-81.7v44.4c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8v-64C240,131.2,236.4,127.7,232,127.7z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,49 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M344,32h-88V16c0-8.824-7.176-16-16-16H128c-8.824,0-16,7.176-16,16v16H24C10.768,32,0,42.768,0,56v224
|
||||
c0,13.232,10.768,24,24,24h120v48h-24c-4.424,0-8,3.584-8,8c0,4.416,3.576,8,8,8h32h64h32c4.424,0,8-3.584,8-8
|
||||
c0-4.416-3.576-8-8-8h-24v-48h120c13.232,0,24-10.768,24-24V56C368,42.768,357.232,32,344,32z M128,16h112v48H128V16z M208,352
|
||||
h-48v-48h48V352z M352,280c0,4.408-3.584,8-8,8H24c-4.416,0-8-3.592-8-8V56c0-4.408,3.584-8,8-8h88v16c0,8.824,7.176,16,16,16
|
||||
h112c8.824,0,16-7.176,16-16V48h88c4.416,0,8,3.584,8,8V280z"/>
|
||||
<path d="M226.344,130.344L144,212.688V168c0-4.416-3.576-8-8-8s-8,3.584-8,8v64c0,1.04,0.216,2.08,0.616,3.056
|
||||
c0.808,1.96,2.368,3.52,4.328,4.328c0.976,0.4,2.016,0.616,3.056,0.616h64c4.416,0,8-3.584,8-8c0-4.416-3.576-8-8-8h-44.688
|
||||
l82.344-82.344c3.128-3.128,3.128-8.184,0-11.312S229.472,127.216,226.344,130.344z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,50 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M344,32h-88V16c0-8.824-7.176-16-16-16H128c-8.824,0-16,7.176-16,16v16H24c-6.408,0-12.44,2.496-16.968,7.032
|
||||
C2.496,43.568,0,49.592,0,56c0,0,0,221.864,0,224c0,13.232,10.768,24,24,24h120v48h-24c-4.416,0-8,3.584-8,8c0,4.416,3.584,8,8,8
|
||||
h32h64h32c4.424,0,8-3.584,8-8c0-4.416-3.576-8-8-8h-24v-48h120c13.232,0,24-10.768,24-24V56C368,42.768,357.232,32,344,32z
|
||||
M128,16h112v48H128V16z M208,352h-48v-48h48V352z M352,280c0,4.408-3.584,8-8,8H24c-4.408,0-8-3.592-8-8h-0.632
|
||||
C16,273.992,16,263.456,16,245V55.992c0-2.136,0.832-4.136,2.336-5.648C19.848,48.832,21.856,48,24,48h88v16
|
||||
c0,8.824,7.176,16,16,16h112c8.824,0,16-7.176,16-16V48h88c4.416,0,8,3.584,8,8V280z"/>
|
||||
<path d="M312,240h-24V120c0-4.416-3.576-8-8-8s-8,3.584-8,8v120h-32V136c0-4.416-3.576-8-8-8s-8,3.584-8,8v104h-32v-88
|
||||
c0-4.416-3.584-8-8-8c-4.416,0-8,3.584-8,8v88h-32v-72c0-4.416-3.584-8-8-8s-8,3.584-8,8v72H96v-48c0-4.416-3.584-8-8-8
|
||||
s-8,3.584-8,8v48H56c-4.416,0-8,3.584-8,8c0,4.416,3.584,8,8,8h256c4.424,0,8-3.584,8-8C320,243.584,316.424,240,312,240z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,45 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M240,80h112c8.824,0,16-7.176,16-16V16c0-8.824-7.176-16-16-16H240c-8.824,0-16,7.176-16,16v16h-40c-4.416,0-8,3.584-8,8
|
||||
v136h-32v-16c0-8.824-7.176-16-16-16H16c-8.824,0-16,7.176-16,16v48c0,8.824,7.176,16,16,16h112c8.824,0,16-7.176,16-16v-16h32
|
||||
v136c0,4.416,3.584,8,8,8h40v16c0,8.824,7.176,16,16,16h112c8.824,0,16-7.176,16-16v-48c0-8.824-7.176-16-16-16H240
|
||||
c-8.824,0-16,7.176-16,16v16h-32V192h32v16c0,8.824,7.176,16,16,16h112c8.824,0,16-7.176,16-16v-48c0-8.824-7.176-16-16-16H240
|
||||
c-8.824,0-16,7.176-16,16v16h-32V48h32v16C224,72.824,231.176,80,240,80z M240,16l112-0.008V64H240V16z M128,208H16v-48l112-0.008
|
||||
V208z M240,304l112-0.008V352H240V304z M240,160l112-0.008V208H240V160z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,45 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M352,256h-48v-72c0-4.416-3.584-8-8-8H192v-64h48c8.824,0,16-7.176,16-16V16c0-8.824-7.176-16-16-16H128
|
||||
c-8.824,0-16,7.176-16,16v80c0,8.824,7.176,16,16,16h48v64H72c-4.416,0-8,3.584-8,8v72H16c-8.824,0-16,7.176-16,16v80
|
||||
c0,8.824,7.176,16,16,16h112c8.824,0,16-7.176,16-16v-80c0-8.824-7.176-16-16-16H80v-64h208v64h-48c-8.824,0-16,7.176-16,16v80
|
||||
c0,8.824,7.176,16,16,16h112c8.824,0,16-7.176,16-16v-80C368,263.176,360.824,256,352,256z M128,271.992V352H16v-80l55.952-0.008
|
||||
c0.016,0,0.032,0.008,0.048,0.008s0.032-0.008,0.048-0.008H128z M128,96V16l112-0.008V96H128z M352,352H240v-80l55.952-0.008
|
||||
c0.016,0,0.032,0.008,0.048,0.008s0.032-0.008,0.048-0.008H352V352z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,47 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M184,0C82.544,0,0,82.544,0,184c0,4.416,3.584,8,8,8s8-3.584,8-8C16,91.36,91.36,16,184,16s168,75.36,168,168
|
||||
s-75.36,168-168,168c-4.416,0-8,3.584-8,8c0,4.416,3.584,8,8,8c101.456,0,184-82.544,184-184S285.456,0,184,0z"/>
|
||||
<path d="M304,184c0-4.416-3.584-8-8-8c-4.416,0-8,3.584-8,8c0,57.344-46.656,104-104,104S80,241.344,80,184S126.656,80,184,80
|
||||
c4.416,0,8-3.584,8-8s-3.584-8-8-8c-66.168,0-120,53.832-120,120s53.832,120,120,120S304,250.168,304,184z"/>
|
||||
<path d="M184,144c4.416,0,8-3.584,8-8s-3.584-8-8-8c-30.88,0-56,25.12-56,56s25.12,56,56,56s56-25.12,56-56c0-4.416-3.584-8-8-8
|
||||
c-4.416,0-8,3.584-8,8c0,22.056-17.944,40-40,40c-22.056,0-40-17.944-40-40C144,161.944,161.944,144,184,144z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,48 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,176h-64c-4.416,0-8,3.584-8,8c0,57.344-46.656,104-104,104S80,241.344,80,184S126.656,80,184,80
|
||||
c4.416,0,8-3.584,8-8V8c0-4.416-3.584-8-8-8C82.544,0,0,82.544,0,184s82.544,184,184,184s184-82.544,184-184
|
||||
C368,179.584,364.416,176,360,176z M184,352c-92.64,0-168-75.36-168-168C16,94.04,87.064,20.376,176,16.184v48.08
|
||||
C113.552,68.4,64,120.52,64,184c0,66.168,53.832,120,120,120c63.48,0,115.6-49.552,119.736-112h48.08
|
||||
C347.624,280.936,273.96,352,184,352z"/>
|
||||
<path d="M128,184c0,30.88,25.12,56,56,56s56-25.12,56-56s-25.12-56-56-56S128,153.12,128,184z M224,184c0,22.056-17.944,40-40,40
|
||||
c-22.056,0-40-17.944-40-40c0-22.056,17.944-40,40-40C206.056,144,224,161.944,224,184z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -1,47 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,144H8c-4.416,0-8,3.584-8,8v64c0,4.416,3.584,8,8,8h352c4.416,0,8-3.584,8-8v-64C368,147.584,364.416,144,360,144z
|
||||
M352,208H16v-48h336V208z"/>
|
||||
<path d="M8,96h224c4.416,0,8-3.584,8-8V24c0-4.416-3.584-8-8-8H8c-4.416,0-8,3.584-8,8v64C0,92.416,3.584,96,8,96z M16,32h208v48
|
||||
H16V32z"/>
|
||||
<path d="M296,272H8c-4.416,0-8,3.584-8,8v64c0,4.416,3.584,8,8,8h288c4.416,0,8-3.584,8-8v-64C304,275.584,300.416,272,296,272z
|
||||
M288,336H16v-48h272V336z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1009 B |
@@ -1,47 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M216,0h-64c-4.416,0-8,3.584-8,8v352c0,4.416,3.584,8,8,8h64c4.416,0,8-3.584,8-8V8C224,3.584,220.416,0,216,0z M208,352
|
||||
h-48V16h48V352z"/>
|
||||
<path d="M344,128h-64c-4.416,0-8,3.584-8,8v224c0,4.416,3.584,8,8,8h64c4.416,0,8-3.584,8-8V136C352,131.584,348.416,128,344,128
|
||||
z M336,352h-48V144h48V352z"/>
|
||||
<path d="M88,64H24c-4.416,0-8,3.584-8,8v288c0,4.416,3.584,8,8,8h64c4.416,0,8-3.584,8-8V72C96,67.584,92.416,64,88,64z M80,352
|
||||
H32V80h48V352z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1008 B |
@@ -1,51 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352h-8V168c0-4.416-3.576-8-8-8h-64c-4.424,0-8,3.584-8,8v184h-32V120c0-4.416-3.576-8-8-8h-64
|
||||
c-4.424,0-8,3.584-8,8v232h-32V152c0-4.416-3.576-8-8-8H56c-4.424,0-8,3.584-8,8v200H16V8c0-4.416-3.576-8-8-8S0,3.584,0,8v352
|
||||
c0,4.416,3.576,8,8,8h48h64h48h64h48h64h16c4.424,0,8-3.584,8-8C368,355.584,364.424,352,360,352z M112,352H64V160h48V352z
|
||||
M224,352h-48V128h48V352z M336,352h-48V176h48V352z"/>
|
||||
<path d="M56,64h266.376l-39.584,33.928c-3.36,2.872-3.752,7.928-0.864,11.28c1.576,1.84,3.824,2.792,6.072,2.792
|
||||
c1.84,0,3.696-0.632,5.2-1.928l56-48c0.072-0.064,0.096-0.16,0.168-0.224c0.592-0.544,1.032-1.208,1.44-1.904
|
||||
c0.144-0.248,0.36-0.448,0.48-0.712C351.736,58.24,352,57.16,352,56c0-1.16-0.264-2.24-0.712-3.232
|
||||
c-0.12-0.264-0.336-0.464-0.48-0.712c-0.408-0.696-0.848-1.36-1.44-1.904c-0.072-0.064-0.096-0.16-0.168-0.224l-56-48
|
||||
c-3.344-2.864-8.4-2.488-11.272,0.864c-2.88,3.352-2.496,8.408,0.864,11.28L322.376,48H56c-4.424,0-8,3.584-8,8S51.576,64,56,64z
|
||||
"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,43 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352h-8V184c0-4.416-3.576-8-8-8h-64c-4.424,0-8,3.584-8,8v168h-32V56c0-4.416-3.576-8-8-8h-64c-4.424,0-8,3.584-8,8
|
||||
v296h-32V248c0-4.416-3.576-8-8-8H56c-4.424,0-8,3.584-8,8v104H16V8c0-4.416-3.576-8-8-8S0,3.584,0,8v352c0,4.416,3.576,8,8,8h48
|
||||
h64h48h64h48h64h16c4.424,0,8-3.584,8-8C368,355.584,364.424,352,360,352z M112,352H64v-96h48V352z M224,352h-48V64h48V352z
|
||||
M336,352h-48V192h48V352z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 941 B |
@@ -1,43 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352h-8V184c0-4.416-3.576-8-8-8h-64c-4.424,0-8,3.584-8,8v168h-32V56c0-4.416-3.576-8-8-8h-64c-4.416,0-8,3.584-8,8
|
||||
v296h-32V120c0-4.416-3.584-8-8-8H56c-4.416,0-8,3.584-8,8v232H16V8c0-4.416-3.584-8-8-8S0,3.584,0,8v352c0,4.416,3.584,8,8,8h48
|
||||
h64h48h64h48h64h16c4.424,0,8-3.584,8-8C368,355.584,364.424,352,360,352z M112,352H64V128h48V352z M224,352h-48V64h48V352z
|
||||
M336,352h-48V192h48V352z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 941 B |
@@ -1,43 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352h-8V184c0-4.416-3.584-8-8-8h-64c-4.416,0-8,3.584-8,8v168h-32V120c0-4.416-3.584-8-8-8h-64c-4.416,0-8,3.584-8,8
|
||||
v232h-32V56c0-4.416-3.584-8-8-8H56c-4.416,0-8,3.584-8,8v296H16V8c0-4.416-3.584-8-8-8S0,3.584,0,8v352c0,4.416,3.584,8,8,8h48
|
||||
h64h48h64h48h64h16c4.416,0,8-3.584,8-8C368,355.584,364.416,352,360,352z M112,352H64V64h48V352z M224,352h-48V128h48V352z
|
||||
M336,352h-48V192h48V352z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 941 B |
@@ -1,43 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 368 368" style="enable-background:new 0 0 368 368;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360,352h-8V56c0-4.416-3.584-8-8-8h-64c-4.416,0-8,3.584-8,8v296h-32V120c0-4.416-3.584-8-8-8h-64c-4.416,0-8,3.584-8,8
|
||||
v232h-32V184c0-4.416-3.584-8-8-8H56c-4.416,0-8,3.584-8,8v168H16V8c0-4.416-3.584-8-8-8S0,3.584,0,8v352c0,4.416,3.584,8,8,8h48
|
||||
h64h48h64h48h64h16c4.416,0,8-3.584,8-8C368,355.584,364.416,352,360,352z M112,352H64V192h48V352z M224,352h-48V128h48V352z
|
||||
M336,352h-48V64h48V352z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 941 B |
@@ -1,52 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 449.6 449.6" style="enable-background:new 0 0 449.6 449.6;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M372.4,247.849H200.8v-171.2c0.1-5.4-4.2-9.9-9.7-10H191c-50.8-0.2-99.5,20-135.2,56c-36,36.7-55.8,84.7-55.8,135.2
|
||||
c0,105.4,85.8,191.2,191.2,191.2c50.8,0.2,99.5-20,135.4-56c36-36.7,55.9-84.7,55.9-135.2
|
||||
C382.4,252.349,377.9,247.849,372.4,247.849z M312.3,379.049c-32.1,32.2-75.7,50.2-121.1,50.1c-94.4-0.1-171.2-76.9-171.2-171.3
|
||||
c0-45.4,17.9-88.9,49.9-121.1c29.6-29.7,69.1-47.5,110.9-49.8v170.9c0,5.5,4.9,10,10.4,10h170.9
|
||||
C359.7,309.849,342.2,348.649,312.3,379.049z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M393.7,56.649c0-0.1,0-0.1-0.1-0.2c-36.7-36-84.5-55.9-135-55.9c-5.4,0-9.8,4.4-9.8,9.9v0.1v181.3c-0.2,5.4,4,9.9,9.4,10
|
||||
c0.1,0,0.1,0,0.2,0h181.2c5.5,0,10-4.5,10-10C449.6,141.349,429.8,93.249,393.7,56.649z M268.8,20.849c18.5,1.2,36.8,5.3,54,12.2
|
||||
l-54,54V20.849z M268.8,115.349l73-73.2c10.9,6,21.1,13.2,30.4,21.4l-103.4,103.5V115.349z M282,181.849l104.1-104.1
|
||||
c8.2,9.3,15.4,19.4,21.5,30.2l-73.9,73.9H282z M362,181.849l54.8-54.8c7.2,17.5,11.4,36,12.5,54.8H362z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,73 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 429.655 429.655" style="enable-background:new 0 0 429.655 429.655;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M418.407,40.127c-7.9-8.4-19-13.2-30.6-13.2c-23.1,0-41.8,18.7-41.8,41.8c0,3.7,0.5,7.4,1.5,11l-45.3,32.1
|
||||
c-16.2-16.4-42.7-16.6-59.1-0.4c-11.6,11.5-15.5,28.6-9.9,44l-41.8,35.2c-13.2-18.9-39.2-23.6-58.2-10.4
|
||||
c-7.2,5-12.6,12.2-15.5,20.4l-34.7-14.1c-3.9-22.8-25.4-38.1-48.2-34.2c-22.8,3.9-38.1,25.4-34.2,48.2
|
||||
c3.9,22.8,25.4,38.1,48.2,34.2c15-2.5,27.4-13,32.5-27.3l34.7,14.1c3.9,22.8,25.4,38.1,48.2,34.2c20.1-3.4,34.8-20.8,34.8-41.2
|
||||
c0-1.3-0.1-2.7-0.2-4l45.6-38.5c17.1,15.5,43.5,14.3,59-2.8c9.9-10.9,13.3-26.2,9.1-40.2l44.8-31.8c15.8,16.9,42.2,17.7,59.1,2
|
||||
C433.307,83.427,434.107,57.027,418.407,40.127z M41.807,215.427c-12,0-21.8-9.8-21.8-21.8s9.8-21.8,21.8-21.8s21.8,9.8,21.8,21.8
|
||||
C63.607,205.627,53.807,215.427,41.807,215.427z M157.107,236.427c-12,0-21.8-9.8-21.8-21.8s9.8-21.8,21.8-21.8
|
||||
s21.8,9.8,21.8,21.8C178.907,226.627,169.207,236.427,157.107,236.427z M272.507,163.027c-12,0-21.8-9.8-21.8-21.8
|
||||
s9.8-21.8,21.8-21.8s21.8,9.8,21.8,21.8S284.507,163.027,272.507,163.027z M387.807,90.527c-12,0-21.8-9.8-21.8-21.8
|
||||
s9.8-21.8,21.8-21.8s21.8,9.8,21.8,21.8C409.607,80.827,399.907,90.527,387.807,90.527z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M415.807,143.727h-56c-5.5,0-10,4.5-10,10v238c0,5.5,4.5,10,10,10h56c5.5,0,10-4.5,10-10v-238
|
||||
C425.807,148.227,421.307,143.727,415.807,143.727z M405.807,382.727h-36v-219h36V382.727z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M300.807,215.727h-56c-5.5,0-10,4.5-10,10v166c0,5.5,4.5,10,10,10h56c5.5,0,10-4.5,10-10v-166
|
||||
C310.807,220.227,306.307,215.727,300.807,215.727z M290.807,382.727h-36v-147h36V382.727z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M184.807,290.727h-56c-5.5,0-10,4.5-10,10v92c0,5.5,4.5,10,10,10h56c5.5,0,10-4.5,10-10v-92
|
||||
C194.807,295.227,190.307,290.727,184.807,290.727z M174.807,382.727h-36v-72h36V382.727z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M69.807,269.727h-56c-5.5,0-10,4.5-10,10v113c0,5.5,4.5,10,10,10h56c5.5,0,10-4.5,10-10v-113
|
||||
C79.807,274.227,75.307,269.727,69.807,269.727z M59.807,382.727h-36v-93h36V382.727z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,53 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 408 408" style="enable-background:new 0 0 408 408;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M249,150h-89c-5.5,0-10,4.5-10,10v190c0,5.5,4.5,10,10,10h89c5.5,0,10-4.5,10-10V160C259,154.5,254.5,150,249,150z
|
||||
M238,340h-68V170h68V340z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M398,48h-89c-5.5,0-10,4.5-10,10v292c0,5.5,4.5,10,10,10h89c5.5,0,10-4.5,10-10V58C408,52.5,403.5,48,398,48z M388,340
|
||||
h-69V68h69V340z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M99,220H10c-5.5,0-10,4.5-10,10v120c0,5.5,4.5,10,10,10h89c5.5,0,10-4.5,10-10V230C109,224.5,104.5,220,99,220z M89,340
|
||||
H20V240h69V340z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1021 B |
@@ -1,82 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 462.602 462.602" style="enable-background:new 0 0 462.602 462.602;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M462.179,208.602c-4.5-45.8-22.4-89.2-51.6-124.6c-3.5-4.3-9.8-4.9-14.1-1.4c-0.3,0.2-0.5,0.4-0.7,0.7l-82.7,83
|
||||
c-3.3,3.4-3.9,8.6-1.3,12.5c6.6,10.4,11.3,22,13.8,34.1c1,4.6,5.1,8,9.8,7.9h116.9c5.5,0,10-4.5,10-10c0-0.1,0-0.1,0-0.2
|
||||
C462.279,209.902,462.279,209.202,462.179,208.602z M343.279,200.802c-2.5-9-6-17.7-10.5-26l69.2-69.4
|
||||
c20.7,28.1,34.2,60.9,39.1,95.4H343.279z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M379.079,52.402c-0.2-0.2-0.5-0.4-0.7-0.6c-35.5-29.3-78.9-47.3-124.7-51.7c-0.7-0.1-1.3-0.1-2-0.1
|
||||
c-5.5-0.1-10.1,4.3-10.2,9.8c0,0.1,0,0.1,0,0.2v116.9c0,5.3,4.2,9.7,9.5,10c11.8,2.4,23,7.1,33.1,13.6c4,2.6,9.2,2.1,12.6-1.3
|
||||
l82.4-82.7C382.979,62.602,382.979,56.302,379.079,52.402z M287.979,129.502c-8.4-4.6-17.3-8.2-26.5-10.7v-97.6
|
||||
c34.6,4.9,67.4,18.4,95.4,39.2L287.979,129.502z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M207.479,0.502c-0.3,0-0.7,0-1,0.1c-108.5,10.8-195,98.8-205.7,209.2c-0.5,5.5,3.5,10.4,9,10.9c0.3,0.1,0.6,0.1,1,0.1
|
||||
h116.9c4.7,0,8.8-3.3,9.8-8c7.8-37.6,36.8-68,72.1-75.7c4.6-1,7.9-5.1,7.9-9.8v-116.8C217.479,5.002,212.979,0.502,207.479,0.502z
|
||||
M197.479,119.602c-18.7,5.7-35.6,16.2-49,30.5c-13.6,14.3-23.4,31.7-28.7,50.7h-97.7c6.7-44.8,27.4-86.3,59-118.6
|
||||
c31.3-32.1,72.1-53.3,116.4-60.4V119.602z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M211.579,324.702c-0.1,0-0.2,0-0.2,0c-37.2-7.8-66.3-36.9-74.1-74.1c-1-4.6-5.1-7.9-9.8-7.8h-117.2
|
||||
c-2.8-0.1-5.5,1.1-7.4,3.1c-1.9,2.1-2.8,4.9-2.5,7.7c10.6,109.5,97.7,196.9,207.1,207.8c0.3,0,0.7,0,1,0c5.5,0,10-4.4,10-9.9
|
||||
c0,0,0.2-29.3,0.4-58.5c0.1-14.6,0.2-29.3,0.3-40.3c0-5.5,0.1-10.1,0.1-13.3c0-1.6,0-2.9,0-3.8
|
||||
C219.279,327.702,214.379,325.402,211.579,324.702z M198.579,440.202c-91.4-14.3-162.9-86.1-177-177.5l98-0.2
|
||||
c11,38.6,41.1,68.7,79.6,79.8C199.179,359.702,198.879,404.402,198.579,440.202z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M453.179,245.002c-0.3-0.2-0.7-0.2-1-0.2h-117c-4.7,0-8.8,3.3-9.8,7.9c-3.9,17.9-13,34.3-26.2,47.2
|
||||
c-13.2,13.1-29.9,22.1-48.2,25.9c-4.6,1-8,5-8,9.8l-0.5,117c0,5.5,4.4,10,9.9,10c0,0,0,0,0.1,0c0.4,0,0.8,0,1.2-0.1
|
||||
c0.1,0,0.3,0,0.4,0c109.6-10.6,197.1-97.5,208-206.6C462.679,250.402,458.579,245.502,453.179,245.002z M262.679,441.202l0.1-23.6
|
||||
l19.7,19.7C275.979,438.902,269.379,440.202,262.679,441.202z M304.079,430.702l-41.3-41.3l0.2-28.1l61,61
|
||||
C317.479,425.402,310.879,428.302,304.079,430.702z M342.379,412.402l-71.5-71.5c6.7-2.4,13.1-5.4,19.3-9l69,69
|
||||
C353.779,405.002,348.179,408.802,342.379,412.402z M374.579,388.002l-67.9-67.9c2.3-1.9,4.5-3.9,6.6-6c2.6-2.6,5.1-5.3,7.5-8.1
|
||||
l67.9,67.9C384.179,378.802,379.479,383.502,374.579,388.002z M401.479,358.402l-69.1-69.1c3.6-6.2,6.5-12.7,8.9-19.4l71.6,71.6
|
||||
C409.379,347.302,405.579,352.902,401.479,358.402z M422.879,323.202l-58.4-58.4h28.3l38.4,38.4
|
||||
C428.779,310.002,425.979,316.702,422.879,323.202z M437.579,281.302l-16.5-16.5h19.8
|
||||
C439.979,270.402,438.879,275.902,437.579,281.302z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -1,96 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 503.2 503.2" style="enable-background:new 0 0 503.2 503.2;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M150.5,284.2c-6.6-10.3-11.3-21.7-13.8-33.6c-1-4.6-5.1-8-9.8-7.9H10c-5.5,0-10,4.5-10,10c0,0.1,0,0.1,0,0.2
|
||||
c0,0.5,0,1,0.1,1.5c4.4,45.7,22.4,89.1,51.6,124.5c1.8,2.2,4.4,3.5,7.2,3.6c0.2,0,0.3,0,0.5,0c2.7,0,5.2-1.1,7.1-2.9l82.7-82.7
|
||||
C152.5,293.4,153.1,288.1,150.5,284.2z M60.3,357.3c-20.6-27.9-34.1-60.4-39.1-94.7H119c2.5,8.9,6,17.4,10.5,25.5L60.3,357.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M211.2,325.6c-11.8-2.5-23-7.1-33-13.6c-4-2.6-9.2-2.1-12.6,1.3L83.1,396c-3.9,3.9-3.9,10.2,0,14.1
|
||||
c0.2,0.2,0.5,0.4,0.7,0.6c35.4,29.2,78.8,47.1,124.5,51.6c0.7,0.1,1.3,0.1,2,0.1h0.2c5.5,0,10-4.5,10-10V335.6
|
||||
C220.6,330.3,216.5,325.9,211.2,325.6z M200.6,441.2c-34.5-5-67.3-18.4-95.3-39.1l69-69.1c8.3,4.6,17.2,8.2,26.3,10.6V441.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M461.9,208.7C451.3,99.4,364.2,12,254.8,1c-5.5-0.6-10.4,3.5-11,8.9c0,0.3,0,0.6,0,0.9c0,0-0.2,29.3-0.4,58.5
|
||||
c-0.1,14.6-0.2,29.3-0.3,40.3c0,5.5-0.1,10.1-0.1,13.3c0,1.6,0,2.9,0,3.8c0,8.1,4.8,10.4,7.7,11c0.1,0,0.2,0,0.2,0
|
||||
c37.2,7.8,66.3,36.9,74.1,74.1c1,4.6,5.1,7.8,9.8,7.7H452c2.8,0.1,5.5-1,7.4-3.1C461.3,214.3,462.2,211.5,461.9,208.7z M342.7,200
|
||||
c-11-38.6-41.1-68.7-79.6-79.8c0-17.5,0.3-62.1,0.6-97.9c91.4,14.3,162.9,86.1,177,177.5L342.7,200z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M209.8,0.4c-0.4,0-0.8,0-1.2,0.1c-0.1,0-0.3,0-0.4,0C98.5,11.5,11.6,98,0.2,207.6c-0.6,5.5,3.4,10.4,8.9,11
|
||||
c0.3,0,0.7,0,1,0h117c4.7,0,8.8-3.3,9.8-7.9c7.9-36.4,37.8-66,74.3-73.5c4.6-1,8-5,8-9.8l0.5-117C219.7,4.9,215.3,0.4,209.8,0.4z
|
||||
M21.5,198.6c0.9-5.8,2-11.6,3.4-17.3l17.3,17.3H21.5z M70.4,198.6l-39-39c2.4-6.8,5.2-13.4,8.4-19.9l58.9,58.9H70.4z
|
||||
M121.3,192.8l-71.5-71.4c3.5-5.8,7.3-11.4,11.4-16.9l69,69C126.6,179.7,123.6,186.1,121.3,192.8z M148.9,149
|
||||
c-2.5,2.5-4.9,5.1-7.1,7.8L74,89c2.3-2.6,4.7-5.1,7.2-7.6c2.3-2.2,4.6-4.4,6.9-6.6l67.8,67.8C153.5,144.6,151.2,146.8,148.9,149z
|
||||
M172.5,130.9L103.6,62c5.4-4.1,11-7.9,16.8-11.4l71.4,71.3C185.1,124.3,178.7,127.3,172.5,130.9z M199.3,101.2l-60.6-60.6
|
||||
c6.5-3.1,13.1-6,19.9-8.4L199.4,73L199.3,101.2z M199.5,44.8l-19.3-19.3c6.4-1.6,12.9-2.9,19.4-3.8L199.5,44.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M370.9,238.2c-72.9,0-132.3,59.3-132.3,132.3s59.3,132.3,132.3,132.3s132.3-59.3,132.3-132.3S443.9,238.2,370.9,238.2z
|
||||
M370.9,482.7c-62,0-112.3-50.3-112.3-112.3s50.3-112.3,112.3-112.3s112.3,50.3,112.3,112.3C483.1,432.4,432.9,482.7,370.9,482.7z
|
||||
"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M443.6,359.6H426c-4.1-12-15-19.5-27.8-19.5s-23.7,7.5-27.8,19.5h-68.2c-5.5,0-10,4.5-10,10s4.5,10,10,10h68.2
|
||||
c4.1,11,15,19.5,27.8,19.5c12.4-0.2,23.4-7.9,27.8-19.5h17.6c5.5,0,10-4.5,10-10S449.1,359.6,443.6,359.6z M398.2,378.8
|
||||
c-5.3,0-9.5-4.3-9.5-9.5c0-5.3,4.3-9.5,9.5-9.5c5.3,0,9.5,4.3,9.5,9.5C407.7,374.5,403.5,378.8,398.2,378.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M443.6,410.6h-68.2c-4.1-12-15-19.5-27.8-19.5s-23.7,7.5-27.8,19.5h-17.6c-5.5,0-10,4.5-10,10s4.5,10,10,10h17.6
|
||||
c4.1,11,15,19.5,27.8,19.5c12.4-0.2,23.4-7.9,27.8-19.5h68.2c5.5,0,10-4.5,10-10S449.1,410.6,443.6,410.6z M347.6,429.6
|
||||
c-5.3,0-9.5-4.3-9.5-9.5c0-5.3,4.3-9.5,9.5-9.5c5.3,0,9.5,4.3,9.5,9.5C357.1,425.4,352.8,429.6,347.6,429.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M443.6,310.6h-68.2c-4.1-12-15-19.5-27.8-19.5s-23.7,7.5-27.8,19.5h-17.6c-5.5,0-10,4.5-10,10s4.5,10,10,10h17.6
|
||||
c4.1,11,15,19.5,27.8,19.5c12.4-0.2,23.4-7.9,27.8-19.5h68.2c5.5,0,10-4.5,10-10S449.1,310.6,443.6,310.6z M347.6,329.8
|
||||
c-5.3,0-9.5-4.3-9.5-9.5c0-5.3,4.3-9.5,9.5-9.5c5.3,0,9.5,4.3,9.5,9.5C357.1,325.5,352.8,329.7,347.6,329.8z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.9 KiB |
@@ -1,56 +0,0 @@
|
||||
<?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 fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 481.844 481.844" style="enable-background:new 0 0 481.844 481.844;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M453.4,368.972H60.1v-306.2c0-5.4-4.4-9.8-9.8-9.8c-0.1,0-0.1,0-0.2,0h-40c-5.5-0.1-10,4.3-10.1,9.7v0.1v336.3
|
||||
c0.1,16.5,13.5,29.9,30,29.8h423.3c5.3,0.1,9.6-4.2,9.7-9.5c0-0.1,0-0.2,0-0.4v-40C463.1,373.572,459,368.972,453.4,368.972z
|
||||
M443.1,408.972H30.2c-5.5,0.1-10-4.3-10.1-9.8c0,0,0,0,0-0.1v-326.1h20v306.2c0,5.5,4.5,9.9,10,9.8h0.1h392.9V408.972z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M457.5,123.972c-5.9-2.9-12.3-4.3-18.9-4.3c-23.8,0-43.2,19.3-43.2,43.1c0,9.5,3.1,18.7,8.8,26.2l-42.5,46.2
|
||||
c-15.2-18.3-42.4-20.8-60.7-5.6c-1.2,1-2.3,2.1-3.4,3.2l-35.8-29.4c0-0.2,0-0.4,0-0.6c0-23.9-19.3-43.2-43.2-43.2
|
||||
s-43.2,19.3-43.2,43.2c0,3.9,0.5,7.8,1.6,11.6l-39.6,49.5c-21.5-10.4-47.5-1.4-57.9,20.1c-10.4,21.5-1.4,47.5,20.1,57.9
|
||||
c21.5,10.4,47.5,1.4,57.9-20.1c7.1-14.7,5.4-32.2-4.6-45.2l34.9-43.6c16.6,17.1,43.9,17.4,61,0.8c2.8-2.8,5.3-5.9,7.2-9.3
|
||||
l31.4,25.7c-7,22.8,5.8,47,28.6,54c22.8,7,47-5.8,54-28.6c2.1-6.8,2.5-13.9,1.1-20.9l48.7-53c21.5,10.4,47.3,1.5,57.7-20
|
||||
S479,134.372,457.5,123.972z M118.6,325.972c-12.8,0-23.2-10.4-23.2-23.2s10.4-23.2,23.2-23.2s23.2,10.4,23.2,23.2
|
||||
C141.8,315.572,131.4,325.972,118.6,325.972z M218.6,225.972c-12.8,0-23.2-10.4-23.2-23.2s10.4-23.2,23.2-23.2
|
||||
s23.2,10.4,23.2,23.2S231.4,225.972,218.6,225.972z M328.6,285.972c-12.8,0-23.2-10.4-23.2-23.2c0-12.8,10.4-23.2,23.2-23.2
|
||||
s23.2,10.4,23.2,23.2S341.4,285.972,328.6,285.972z M438.6,185.972c-12.8,0-23.2-10.4-23.2-23.2s10.4-23.2,23.2-23.2
|
||||
s23.2,10.4,23.2,23.2S451.4,185.972,438.6,185.972z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,68 +0,0 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg fill="#164358" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="96.946px" height="96.946px" viewBox="0 0 96.946 96.946" style="enable-background:new 0 0 96.946 96.946;"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
<path d="M48.473,2.372L0,37.591l18.515,56.984h59.917l18.515-56.984L48.473,2.372z M49.023,6.642L92.48,38.214l-11.082,2.488
|
||||
c-0.352-0.85-1.188-1.451-2.166-1.451c-0.203,0-0.396,0.035-0.584,0.082L50.749,15.828c0.042-0.176,0.07-0.357,0.07-0.545
|
||||
c0-1.105-0.767-2.025-1.796-2.273V6.642z M64.893,77.723l-37.174,4.783c-0.079-0.162-0.177-0.312-0.29-0.451l6.233-9.592
|
||||
c0.235,0.078,0.483,0.131,0.745,0.131c1.296,0,2.347-1.051,2.347-2.346c0-0.002,0-0.004,0-0.004l19.603-4.85
|
||||
c0.408,0.69,1.152,1.16,2.013,1.16c0.338,0,0.657-0.074,0.946-0.203l6.267,9.641c-0.429,0.426-0.694,1.014-0.694,1.664
|
||||
C64.887,77.68,64.893,77.703,64.893,77.723z M34.354,44.817c-0.049-0.232-0.14-0.447-0.251-0.648l12.857-9.34
|
||||
c0.275,0.232,0.6,0.406,0.962,0.494v12.531L34.354,44.817z M47.645,48.92L35.212,68.053c-0.139-0.051-0.283-0.088-0.433-0.113
|
||||
l-1.927-20.438c0.708-0.256,1.252-0.838,1.458-1.568L47.645,48.92z M46.127,33.048c0,0.318,0.064,0.619,0.179,0.895l-12.947,9.408
|
||||
c-0.372-0.248-0.818-0.395-1.298-0.395c-0.761,0-1.431,0.367-1.859,0.93l-10.725-2.4c-0.025-0.109-0.059-0.215-0.099-0.316
|
||||
l28.167-23.732c0.121,0.051,0.248,0.088,0.377,0.121v13.217C46.894,31.022,46.127,31.942,46.127,33.048z M19.452,42.608l10.3,2.307
|
||||
c-0.021,0.127-0.039,0.254-0.039,0.387c0,1.191,0.892,2.166,2.042,2.316l1.924,20.41c-0.938,0.307-1.621,1.18-1.621,2.221
|
||||
c0,0.636,0.255,1.209,0.665,1.632l-6.172,9.497c-0.123-0.053-0.253-0.094-0.386-0.125l-7.472-37.453
|
||||
C19.059,43.494,19.327,43.081,19.452,42.608z M57.768,61.949l-8.4-12.927l13.302-2.985c0.163,0.494,0.478,0.922,0.901,1.209
|
||||
l-4.764,14.662c-0.143-0.026-0.289-0.045-0.438-0.045C58.158,61.863,57.96,61.897,57.768,61.949z M60.188,65.672
|
||||
c0.324-0.402,0.525-0.908,0.525-1.465c0-0.748-0.355-1.406-0.9-1.836l4.793-14.75c0.093,0.012,0.185,0.027,0.281,0.027
|
||||
c1.295,0,2.346-1.051,2.346-2.346c0-0.098-0.018-0.191-0.029-0.287L77.21,42.77c0.196,0.338,0.47,0.619,0.804,0.824L67.692,75.358
|
||||
c-0.149-0.028-0.302-0.047-0.46-0.047c-0.247,0-0.48,0.05-0.704,0.119L60.188,65.672z M49.023,17.558
|
||||
c0.131-0.033,0.258-0.07,0.379-0.121l27.652,23.297c-0.106,0.268-0.17,0.559-0.17,0.865c0,0.039,0.01,0.076,0.012,0.113
|
||||
l-10.078,2.264c-0.422-0.613-1.131-1.018-1.932-1.018c-0.48,0-0.927,0.145-1.299,0.393l-12.947-9.408
|
||||
c0.113-0.275,0.179-0.576,0.179-0.895c0-1.105-0.767-2.025-1.796-2.273V17.558L49.023,17.558z M49.023,35.324
|
||||
c0.363-0.088,0.688-0.262,0.963-0.494l12.857,9.342c-0.129,0.232-0.222,0.484-0.267,0.758l-13.554,3.043V35.324L49.023,35.324z
|
||||
M56.797,62.477c-0.474,0.431-0.775,1.043-0.775,1.73c0,0.045,0.011,0.088,0.013,0.131l-19.552,4.838
|
||||
c-0.096-0.186-0.213-0.356-0.354-0.512L48.473,49.67L56.797,62.477z M47.922,6.642v6.367c-1.028,0.248-1.795,1.168-1.795,2.273
|
||||
c0,0.188,0.028,0.369,0.07,0.545L17.8,39.752c-0.194-0.053-0.395-0.09-0.606-0.09c-0.747,0-1.405,0.355-1.834,0.9L4.562,38.145
|
||||
L47.922,6.642z M3.78,39.101l11.109,2.486c-0.025,0.137-0.042,0.277-0.042,0.422c0,1.109,0.771,2.033,1.805,2.277l7.47,37.441
|
||||
c-0.518,0.43-0.855,1.07-0.855,1.797c0,0.688,0.3,1.299,0.77,1.729l-3.507,5.395L3.78,39.101z M21.326,91.447l3.68-5.664
|
||||
c0.194,0.053,0.396,0.09,0.607,0.09c0.894,0,1.662-0.506,2.058-1.241l38.407-4.941c0.342,0.195,0.732,0.316,1.154,0.316
|
||||
c0.3,0,0.584-0.062,0.848-0.164l7.541,11.604H21.326z M76.417,90.647l-7.435-11.438c0.367-0.416,0.596-0.952,0.596-1.551
|
||||
c0-0.291-0.061-0.567-0.156-0.826l10.75-33.086c0.768-0.336,1.312-1.076,1.387-1.951l11.576-2.6L76.417,90.647z"/>
|
||||
</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>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg fill="#164358" id="Layer_1" height="512" viewBox="0 0 128 128" width="512" xmlns="http://www.w3.org/2000/svg" data-name="Layer 1"><path d="m123.173 60.98c-.007-.14-.022-.279-.03-.419-.05-.872-.112-1.741-.2-2.6 0-.022-.006-.044-.008-.066a58.8 58.8 0 0 0 -17.035-35.795 1.719 1.719 0 0 0 -.269-.221l-.013-.008a59.188 59.188 0 1 0 16.5 53.707 59.666 59.666 0 0 0 1.132-11.578q0-1.517-.077-3.02zm-36.16 38.533a4.249 4.249 0 1 1 0-6.011c.028.028.046.061.073.09v.007a4.249 4.249 0 0 1 -.073 5.914zm1.387-9.384a7.734 7.734 0 0 0 -12.06 7.421 35.749 35.749 0 1 1 -12.34-69.3 35.41 35.41 0 0 1 24 9.278l-8.144 8.144a24.023 24.023 0 0 0 -15.856-5.922c-.325 0-.641.013-.957.025a5.774 5.774 0 0 0 -11.092 3.19 24.249 24.249 0 1 0 33.387 32.581 24.156 24.156 0 0 0 2.45-6.783 25.27 25.27 0 0 0 .392-3.013h11.527a35.68 35.68 0 0 1 -4.254 15.274 35.778 35.778 0 0 1 -7.053 9.105zm-26.017-25.459a1.751 1.751 0 0 0 1.617 1.08h6.853a7.128 7.128 0 0 1 -4.9 5.068 7.093 7.093 0 1 1 1.662-12.908l-4.852 4.853a1.749 1.749 0 0 0 -.38 1.907zm7.753-9.28a10.573 10.573 0 1 0 4.315 10.36h10.214a21.63 21.63 0 0 1 -.311 2.335 20.756 20.756 0 0 1 -41.104-4.085 20.9 20.9 0 0 1 10.534-18.049 5.77 5.77 0 0 0 9.3-2.677c.3-.013.6-.024.918-.024a20.537 20.537 0 0 1 13.367 4.909zm-14.466-12.53-.012-.019a2.17 2.17 0 1 1 .012.019zm12.555 19.39 12.908-12.908 23.471-23.47a55.6 55.6 0 0 1 14.468 29.5c.024.155.045.311.068.467q.154 1.05.269 2.112.043.416.082.831.082.9.137 1.8c.02.34.04.679.054 1.019.009.216.01.434.017.651zm44.807 28.305a55.806 55.806 0 1 1 -10.9-67.165l-11.66 11.664a38.882 38.882 0 0 0 -26.472-10.304 39.25 39.25 0 1 0 13.574 76.074 7.745 7.745 0 0 0 13.183-8.11 39.041 39.041 0 0 0 12.45-26.964h16.5a55.138 55.138 0 0 1 -6.675 24.805z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 418 B |
@@ -1,41 +0,0 @@
|
||||
<?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="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve" fill="#FFF">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M492,236H276V20c0-11.046-8.954-20-20-20c-11.046,0-20,8.954-20,20v216H20c-11.046,0-20,8.954-20,20s8.954,20,20,20h216
|
||||
v216c0,11.046,8.954,20,20,20s20-8.954,20-20V276h216c11.046,0,20-8.954,20-20C512,244.954,503.046,236,492,236z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 769 B |
|
Before Width: | Height: | Size: 5.5 KiB |
@@ -1,118 +0,0 @@
|
||||
<?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="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve" fill="#FFF">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M501.333,490.667H10.667C4.779,490.667,0,495.445,0,501.333C0,507.221,4.779,512,10.667,512h490.667
|
||||
c5.888,0,10.667-4.779,10.667-10.667C512,495.445,507.221,490.667,501.333,490.667z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M96,362.667H32c-5.888,0-10.667,4.779-10.667,10.667v128C21.333,507.221,26.112,512,32,512h64
|
||||
c5.888,0,10.667-4.779,10.667-10.667v-128C106.667,367.445,101.888,362.667,96,362.667z M85.333,490.667H42.667V384h42.667
|
||||
V490.667z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M224,256h-64c-5.888,0-10.667,4.779-10.667,10.667v234.667c0,5.888,4.779,10.667,10.667,10.667h64
|
||||
c5.888,0,10.667-4.779,10.667-10.667V266.667C234.667,260.779,229.888,256,224,256z M213.333,490.667h-42.667V277.333h42.667
|
||||
V490.667z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M352,298.667h-64c-5.888,0-10.667,4.779-10.667,10.667v192c0,5.888,4.779,10.667,10.667,10.667h64
|
||||
c5.888,0,10.667-4.779,10.667-10.667v-192C362.667,303.445,357.888,298.667,352,298.667z M341.333,490.667h-42.667V320h42.667
|
||||
V490.667z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M480,170.667h-64c-5.888,0-10.667,4.779-10.667,10.667v320c0,5.888,4.779,10.667,10.667,10.667h64
|
||||
c5.888,0,10.667-4.779,10.667-10.667v-320C490.667,175.445,485.888,170.667,480,170.667z M469.333,490.667h-42.667V192h42.667
|
||||
V490.667z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M64,192c-23.531,0-42.667,19.136-42.667,42.667c0,23.531,19.136,42.667,42.667,42.667
|
||||
c23.531,0,42.667-19.136,42.667-42.667C106.667,211.136,87.531,192,64,192z M64,256c-11.776,0-21.333-9.579-21.333-21.333
|
||||
c0-11.755,9.557-21.333,21.333-21.333s21.333,9.579,21.333,21.333C85.333,246.421,75.776,256,64,256z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M192,85.333c-23.531,0-42.667,19.136-42.667,42.667c0,23.531,19.136,42.667,42.667,42.667s42.667-19.136,42.667-42.667
|
||||
C234.667,104.469,215.531,85.333,192,85.333z M192,149.333c-11.776,0-21.333-9.579-21.333-21.333
|
||||
c0-11.755,9.557-21.333,21.333-21.333s21.333,9.579,21.333,21.333C213.333,139.755,203.776,149.333,192,149.333z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M320,128c-23.531,0-42.667,19.136-42.667,42.667c0,23.531,19.136,42.667,42.667,42.667
|
||||
c23.531,0,42.667-19.136,42.667-42.667C362.667,147.136,343.531,128,320,128z M320,192c-11.776,0-21.333-9.579-21.333-21.333
|
||||
c0-11.755,9.557-21.333,21.333-21.333s21.333,9.579,21.333,21.333C341.333,182.421,331.776,192,320,192z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M448,0c-23.531,0-42.667,19.136-42.667,42.667c0,23.531,19.136,42.667,42.667,42.667
|
||||
c23.531,0,42.667-19.136,42.667-42.667C490.667,19.136,471.531,0,448,0z M448,64c-11.776,0-21.333-9.579-21.333-21.333
|
||||
c0-11.755,9.557-21.333,21.333-21.333s21.333,9.579,21.333,21.333C469.333,54.421,459.776,64,448,64z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M432.939,57.728c-4.16-4.16-10.923-4.16-15.083,0l-82.773,82.773c-4.16,4.16-4.16,10.923,0,15.083
|
||||
c2.091,2.069,4.821,3.115,7.552,3.115c2.709,0,5.44-1.024,7.531-3.115l82.773-82.773
|
||||
C437.099,68.651,437.099,61.888,432.939,57.728z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M294.208,146.048l-68.523-19.541c-5.739-1.664-11.563,1.664-13.163,7.339c-1.621,5.675,1.664,11.563,7.317,13.184
|
||||
l68.523,19.541c0.981,0.277,1.963,0.405,2.923,0.405c4.651,0,8.917-3.051,10.261-7.744
|
||||
C303.168,153.579,299.883,147.669,294.208,146.048z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M175.36,141.291c-3.669-4.608-10.368-5.355-14.976-1.707l-80.427,64.128c-4.608,3.691-5.376,10.389-1.685,14.997
|
||||
c2.112,2.645,5.227,4.011,8.341,4.011c2.325,0,4.672-0.768,6.635-2.304l80.427-64.128
|
||||
C178.283,152.597,179.051,145.899,175.36,141.291z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.9 KiB |
@@ -1,139 +0,0 @@
|
||||
<?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="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" fill="#ffff"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M350.688,496.97H66.121V126.245c0-4.151-3.365-7.515-7.515-7.515c-4.15,0-7.515,3.364-7.515,7.515v373.23
|
||||
c0,6.907,5.619,12.525,12.525,12.525h287.072c4.15,0,7.514-3.364,7.515-7.515C358.203,500.334,354.838,496.97,350.688,496.97z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M458.782,67.951L394.906,2.276C393.491,0.821,391.548,0,389.519,0H63.616C56.71,0,51.092,5.62,51.091,12.526v58.613
|
||||
c0,4.151,3.365,7.515,7.515,7.515c4.15,0,7.515-3.364,7.515-7.515V15.031h320.224l59.536,61.212V496.97h-42.59
|
||||
c-4.15,0-7.515,3.364-7.515,7.515s3.365,7.515,7.515,7.515h45.094c6.907,0,12.525-5.618,12.525-12.524V73.19
|
||||
C460.91,71.233,460.147,69.354,458.782,67.951z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M458.781,67.951L394.905,2.276c-2.133-2.192-5.381-2.874-8.214-1.723s-4.687,3.904-4.687,6.963V73.19
|
||||
c0,4.151,3.365,7.515,7.515,7.515h63.876c3.021,0,5.748-1.808,6.922-4.591C461.492,73.332,460.887,70.115,458.781,67.951z
|
||||
M397.034,65.675V26.019l38.569,39.656H397.034z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M290.78,39.899H109.714c-6.907,0-12.525,5.619-12.525,12.525v41.533c0,6.907,5.619,12.525,12.525,12.525H290.78
|
||||
c6.906,0,12.525-5.619,12.525-12.524V52.423C303.305,45.516,297.686,39.899,290.78,39.899z M288.275,91.451H112.219V54.928
|
||||
h176.056V91.451z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M172.247,145.811c-3.303-2.509-8.018-1.869-10.53,1.436l-33.203,43.688l-9.972-8.726
|
||||
c-3.123-2.734-7.87-2.417-10.604,0.707c-2.733,3.124-2.416,7.871,0.707,10.604l16.031,14.027c1.376,1.203,3.137,1.859,4.948,1.859
|
||||
c0.252,0,0.505-0.013,0.759-0.037c2.072-0.211,3.965-1.271,5.225-2.93l38.075-50.098
|
||||
C176.194,153.037,175.551,148.322,172.247,145.811z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M398.409,144.277H209.136c-4.15,0-7.515,3.364-7.515,7.515s3.365,7.515,7.515,7.515h189.273
|
||||
c4.15,0,7.515-3.364,7.515-7.515S402.559,144.277,398.409,144.277z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M332.021,169.326H209.136c-4.15,0-7.515,3.364-7.515,7.515s3.365,7.515,7.515,7.515h122.885
|
||||
c4.15,0,7.515-3.364,7.515-7.515S336.171,169.326,332.021,169.326z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360.076,194.376h-150.94c-4.15,0-7.515,3.364-7.515,7.515s3.365,7.515,7.515,7.515h150.94
|
||||
c4.15,0,7.515-3.364,7.515-7.515S364.226,194.376,360.076,194.376z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M172.247,248.014c-3.303-2.51-8.018-1.869-10.53,1.436l-33.203,43.688l-9.972-8.726c-3.123-2.733-7.87-2.416-10.604,0.707
|
||||
c-2.733,3.124-2.416,7.871,0.707,10.604l16.031,14.027c1.376,1.203,3.137,1.859,4.948,1.859c0.252,0,0.505-0.013,0.759-0.037
|
||||
c2.072-0.211,3.965-1.271,5.225-2.93l38.075-50.098C176.194,255.24,175.551,250.527,172.247,248.014z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M398.409,246.481H209.136c-4.15,0-7.515,3.364-7.515,7.515c0,4.151,3.365,7.515,7.515,7.515h189.273
|
||||
c4.15,0,7.515-3.364,7.515-7.515C405.924,249.845,402.559,246.481,398.409,246.481z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M332.021,271.53H209.136c-4.15,0-7.515,3.364-7.515,7.515s3.365,7.515,7.515,7.515h122.885
|
||||
c4.15,0,7.515-3.364,7.515-7.515S336.171,271.53,332.021,271.53z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360.076,296.579h-150.94c-4.15,0-7.515,3.364-7.515,7.515s3.365,7.515,7.515,7.515h150.94
|
||||
c4.15,0,7.515-3.364,7.515-7.515S364.226,296.579,360.076,296.579z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M398.409,348.685H209.136c-4.15,0-7.515,3.364-7.515,7.515s3.365,7.515,7.515,7.515h189.273
|
||||
c4.15,0,7.514-3.364,7.515-7.515C405.924,352.049,402.559,348.685,398.409,348.685z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M332.021,373.734H209.136c-4.15,0-7.515,3.364-7.515,7.515s3.365,7.515,7.515,7.515h122.885
|
||||
c4.15,0,7.515-3.364,7.515-7.515S336.171,373.734,332.021,373.734z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M360.076,398.783h-150.94c-4.15,0-7.515,3.364-7.515,7.515s3.365,7.515,7.515,7.515h150.94
|
||||
c4.15,0,7.515-3.364,7.515-7.515S364.226,398.783,360.076,398.783z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M158.681,348.685h-40.079c-6.907,0-12.525,5.619-12.525,12.525v40.078c0,6.907,5.619,12.525,12.525,12.525h40.079
|
||||
c6.907,0,12.525-5.618,12.525-12.524V361.21C171.206,354.303,165.587,348.685,158.681,348.685z M156.177,398.784h-35.069v-35.069
|
||||
h35.069V398.784z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.5 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Capa_1" enable-background="new 0 0 512 512" fill="#0051cd" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g><ellipse cx="482" cy="333.003" rx="10" ry="9.984"/><path d="m492 435.604v-57.672c0-5.502-4.49-9.984-10-9.984s-10 4.483-10 9.984v54.663h-20v-152.988l20-5.429v13.896c0 5.501 4.49 9.984 10 9.984 5.52 0 10-4.483 10-9.984v-202.264c6.217-7.041 10-16.272 10-26.373 0-22.021-17.944-39.937-40-39.937s-40 17.915-40 39.937c0 10.102 3.783 19.333 10 26.373v100.031l-352-64.503v-35.528c6.217-7.041 10-16.272 10-26.373 0-22.022-17.944-39.937-40-39.937s-40 17.915-40 39.937c0 10.102 3.783 19.333 10 26.373v349.794c-11.842 5.893-20 18.102-20 32.185v13.978c0 5.514 4.477 10.733 10 10.733h80c5.523 0 10-5.219 10-10.733v-13.978c0-14.083-8.158-26.293-20-32.185v-32.371l341.255 40.648c-5.749 6.372-9.255 14.678-9.255 23.908v13.978c0 5.514 4.478 10.733 10 10.733h80c5.522 0 10-5.219 10-10.733v-13.978c0-14.083-8.158-26.293-20-32.185zm-51.467-173.577 31.047-48.589.353 40.065zm31.467-70.48-20 5.436v-98.874c3.197.825 6.548 1.264 10 1.264s6.803-.439 10-1.264zm-10-152.079c11.028 0 20 8.958 20 19.968s-8.972 19.968-20 19.968-20-8.958-20-19.968 8.972-19.968 20-19.968zm-18.293 180.463-31.876 49.887-48.493 13.164 31.864-49.868zm-202.934 55.153 48.505-13.183-31.837 49.826-48.493 13.163zm-60.527 57.598-48.493 13.163 31.805-49.776 48.505-13.183zm137.741-78.583 48.505-13.183-31.857 49.856-48.493 13.164zm114.013 30.937v79.57l-203.917-24.216zm-8.187-80.393-88.804 24.135-7.211-1.329 50.279-31.187zm-74.993-13.742-50.241 31.164-49.367-9.097 50.179-31.125zm-78.685-14.419-50.142 31.103-49.367-9.097 50.079-31.064zm-78.686-14.419-50.042 31.041-49.367-9.097 49.979-31.002zm-111.449-20.423 32.763 6.004-32.763 20.322zm0 60.454 210.483 38.785-210.483 57.205zm-30-162.626c11.028 0 20 8.958 20 19.968s-8.972 19.968-20 19.968-20-8.958-20-19.968 8.972-19.968 20-19.968zm-10 269.487v-107.993h20v102.558zm17.635 15.902-17.635 27.6v-22.807zm-17.635-143.863v-40.935h20v40.935zm0-60.904v-21.981c3.197.825 6.548 1.264 10 1.264s6.803-.439 10-1.264v21.981zm20 265.926v46.579h-20v-41.15zm20 86.516h-60v-4.742c0-8.808 7.178-15.226 16-15.226h28c8.822 0 16 6.418 16 15.226zm-25.441-105.732 31.786-49.746 48.505-13.182-31.798 49.765zm25.441 16.324v-2.536l30.277-8.219c1.087-.109 2.147-.401 3.145-.854l45.08-12.237-39.586 28.467zm68.285 8.109 47.991-34.511 49.39 5.865-47.992 34.511zm78.76 9.353 47.992-34.511 49.389 5.865-47.991 34.511zm78.761 9.354 47.991-34.511 49.389 5.865-47.991 34.511zm78.76 9.353 47.434-34.111v39.744zm107.434 53.239h-60v-4.742c0-8.808 7.178-15.226 16-15.226h28c8.822 0 16 6.418 16 15.226z"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Capa_1" enable-background="new 0 0 512 512" fill="#ffff" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g><ellipse cx="482" cy="333.003" rx="10" ry="9.984"/><path d="m492 435.604v-57.672c0-5.502-4.49-9.984-10-9.984s-10 4.483-10 9.984v54.663h-20v-152.988l20-5.429v13.896c0 5.501 4.49 9.984 10 9.984 5.52 0 10-4.483 10-9.984v-202.264c6.217-7.041 10-16.272 10-26.373 0-22.021-17.944-39.937-40-39.937s-40 17.915-40 39.937c0 10.102 3.783 19.333 10 26.373v100.031l-352-64.503v-35.528c6.217-7.041 10-16.272 10-26.373 0-22.022-17.944-39.937-40-39.937s-40 17.915-40 39.937c0 10.102 3.783 19.333 10 26.373v349.794c-11.842 5.893-20 18.102-20 32.185v13.978c0 5.514 4.477 10.733 10 10.733h80c5.523 0 10-5.219 10-10.733v-13.978c0-14.083-8.158-26.293-20-32.185v-32.371l341.255 40.648c-5.749 6.372-9.255 14.678-9.255 23.908v13.978c0 5.514 4.478 10.733 10 10.733h80c5.522 0 10-5.219 10-10.733v-13.978c0-14.083-8.158-26.293-20-32.185zm-51.467-173.577 31.047-48.589.353 40.065zm31.467-70.48-20 5.436v-98.874c3.197.825 6.548 1.264 10 1.264s6.803-.439 10-1.264zm-10-152.079c11.028 0 20 8.958 20 19.968s-8.972 19.968-20 19.968-20-8.958-20-19.968 8.972-19.968 20-19.968zm-18.293 180.463-31.876 49.887-48.493 13.164 31.864-49.868zm-202.934 55.153 48.505-13.183-31.837 49.826-48.493 13.163zm-60.527 57.598-48.493 13.163 31.805-49.776 48.505-13.183zm137.741-78.583 48.505-13.183-31.857 49.856-48.493 13.164zm114.013 30.937v79.57l-203.917-24.216zm-8.187-80.393-88.804 24.135-7.211-1.329 50.279-31.187zm-74.993-13.742-50.241 31.164-49.367-9.097 50.179-31.125zm-78.685-14.419-50.142 31.103-49.367-9.097 50.079-31.064zm-78.686-14.419-50.042 31.041-49.367-9.097 49.979-31.002zm-111.449-20.423 32.763 6.004-32.763 20.322zm0 60.454 210.483 38.785-210.483 57.205zm-30-162.626c11.028 0 20 8.958 20 19.968s-8.972 19.968-20 19.968-20-8.958-20-19.968 8.972-19.968 20-19.968zm-10 269.487v-107.993h20v102.558zm17.635 15.902-17.635 27.6v-22.807zm-17.635-143.863v-40.935h20v40.935zm0-60.904v-21.981c3.197.825 6.548 1.264 10 1.264s6.803-.439 10-1.264v21.981zm20 265.926v46.579h-20v-41.15zm20 86.516h-60v-4.742c0-8.808 7.178-15.226 16-15.226h28c8.822 0 16 6.418 16 15.226zm-25.441-105.732 31.786-49.746 48.505-13.182-31.798 49.765zm25.441 16.324v-2.536l30.277-8.219c1.087-.109 2.147-.401 3.145-.854l45.08-12.237-39.586 28.467zm68.285 8.109 47.991-34.511 49.39 5.865-47.992 34.511zm78.76 9.353 47.992-34.511 49.389 5.865-47.991 34.511zm78.761 9.354 47.991-34.511 49.389 5.865-47.991 34.511zm78.76 9.353 47.434-34.111v39.744zm107.434 53.239h-60v-4.742c0-8.808 7.178-15.226 16-15.226h28c8.822 0 16 6.418 16 15.226z"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.57 59.25" fill="#FFFFFF"><title>Asset 103</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_6" data-name="Layer 6"><path d="M61.07,17.79H1.5a1.5,1.5,0,0,0,0,3H5.07v6.13a1.5,1.5,0,0,0,3,0V20.79H51.7v6.13a1.5,1.5,0,0,0,3,0V20.79h6.37a1.5,1.5,0,0,0,0-3Z"/><path d="M18.78,13a1.5,1.5,0,0,0,1.88-1l2.48-7.93A1.57,1.57,0,0,1,24.65,3H35.57a1.58,1.58,0,0,1,1.51,1.09l2.63,8a1.51,1.51,0,0,0,1.43,1,1.6,1.6,0,0,0,.47-.08,1.5,1.5,0,0,0,1-1.89l-2.63-8A4.58,4.58,0,0,0,35.57,0H24.65a4.56,4.56,0,0,0-4.38,3.22L17.8,11.14A1.5,1.5,0,0,0,18.78,13Z"/><path d="M28.68,7.24V13a1.5,1.5,0,0,0,3,0V7.24a1.5,1.5,0,0,0-3,0Z"/><path d="M46.55,28.05a1.5,1.5,0,1,0-2.91.71L49.32,52.3a3.19,3.19,0,0,1-3.11,4H31.34v-7a1.5,1.5,0,0,0-3,0v7H12.73a3.2,3.2,0,0,1-3.09-4L16,28.8A1.5,1.5,0,0,0,13.15,28l-6.4,23.4a6.2,6.2,0,0,0,6,7.84H46.21a6.21,6.21,0,0,0,6-7.66Z"/><path d="M28.34,43.08a1.5,1.5,0,0,0,3,0V36.65a1.5,1.5,0,0,0-3,0Z"/><path d="M29.84,31.4a1.5,1.5,0,0,0,1.5-1.5V24.8a1.5,1.5,0,0,0-3,0v5.1A1.5,1.5,0,0,0,29.84,31.4Z"/></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 1.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="640pt" viewBox="-40 -20 640 640" width="640pt" fill="#ffff" xmlns="http://www.w3.org/2000/svg"><path d="m428.667969 80h-300c-27.613281 0-50 22.386719-50 50v310c0 5.523438 4.476562 10 10 10 5.519531 0 10-4.476562 10-10v-310c0-16.566406 13.429687-30 30-30h300c16.566406 0 30 13.433594 30 30v420c0 16.566406-13.433594 30-30 30-16.570313 0-30-13.433594-30-30v-50c0-11.046875-8.957031-20-20-20h-360c-11.046875 0-20 8.953125-20 20v50c0 27.613281 22.386719 50 50 50h380c27.609375 0 50-22.386719 50-50v-420c0-27.613281-22.390625-50-50-50zm-380 500c-16.570313 0-30-13.433594-30-30v-50h360v50c0 10.820312 3.507812 21.34375 10 30zm0 0"/><path d="m378.667969 200c5.519531 0 10-4.476562 10-10s-4.480469-10-10-10h-160c-5.523438 0-10 4.476562-10 10s4.476562 10 10 10zm0 0"/><path d="m158.667969 250c0 5.523438 4.476562 10 10 10h210c5.519531 0 10-4.476562 10-10s-4.480469-10-10-10h-210c-5.523438 0-10 4.476562-10 10zm0 0"/><path d="m168.667969 320h210c5.519531 0 10-4.476562 10-10s-4.480469-10-10-10h-210c-5.523438 0-10 4.476562-10 10s4.476562 10 10 10zm0 0"/><path d="m168.667969 380h210c5.519531 0 10-4.476562 10-10s-4.480469-10-10-10h-210c-5.523438 0-10 4.476562-10 10s4.476562 10 10 10zm0 0"/><path d="m168.667969 440h170c5.519531 0 10-4.476562 10-10s-4.480469-10-10-10h-170c-5.523438 0-10 4.476562-10 10s4.476562 10 10 10zm0 0"/><path d="m508.667969 0h-300c-27.613281 0-50 22.386719-50 50 0 5.523438 4.476562 10 10 10 5.519531 0 10-4.476562 10-10 0-16.566406 13.429687-30 30-30h300c16.566406 0 30 13.433594 30 30v420c0 16.566406-13.433594 30-30 30-5.523438 0-10 4.476562-10 10s4.476562 10 10 10c27.609375 0 50-22.386719 50-50v-420c0-27.613281-22.390625-50-50-50zm0 0"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Capa_1" enable-background="new 0 0 512 512" fill="#ffff" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g><g><g><g><path d="m315.501 444.447h-119.002c-15.129 0-27.438-12.309-27.438-27.438s12.309-27.438 27.438-27.438h119.002c15.129 0 27.438 12.309 27.438 27.438s-12.309 27.438-27.438 27.438zm-119.002-39.875c-6.858 0-12.438 5.579-12.438 12.438s5.58 12.438 12.438 12.438h119.002c6.858 0 12.438-5.579 12.438-12.438s-5.579-12.438-12.438-12.438z"/></g></g><g><path d="m101.28 67.705c-21.045 0-38.167 17.122-38.167 38.167s17.122 38.167 38.167 38.167 38.167-17.122 38.167-38.167-17.122-38.167-38.167-38.167zm0 61.334c-12.774 0-23.167-10.393-23.167-23.167s10.393-23.167 23.167-23.167 23.167 10.393 23.167 23.167-10.393 23.167-23.167 23.167z"/><path d="m253.128 67.705c-21.045 0-38.167 17.122-38.167 38.167s17.122 38.167 38.167 38.167 38.167-17.122 38.167-38.167-17.121-38.167-38.167-38.167zm0 61.334c-12.774 0-23.167-10.393-23.167-23.167s10.393-23.167 23.167-23.167 23.167 10.393 23.167 23.167-10.393 23.167-23.167 23.167z"/><path d="m404.977 67.705c-21.045 0-38.167 17.122-38.167 38.167s17.122 38.167 38.167 38.167 38.166-17.122 38.166-38.167-17.122-38.167-38.166-38.167zm0 61.334c-12.774 0-23.167-10.393-23.167-23.167s10.393-23.167 23.167-23.167c12.773 0 23.166 10.393 23.166 23.167s-10.393 23.167-23.166 23.167z"/><path d="m127.939 237.957h-53.318c-4.142 0-7.5 3.357-7.5 7.5s3.358 7.5 7.5 7.5h53.318c4.142 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5z"/><path d="m127.939 273.791h-53.318c-4.142 0-7.5 3.357-7.5 7.5s3.358 7.5 7.5 7.5h53.318c4.142 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5z"/><path d="m127.939 309.624h-53.318c-4.142 0-7.5 3.357-7.5 7.5s3.358 7.5 7.5 7.5h53.318c4.142 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5z"/><path d="m279.787 237.957h-53.318c-4.142 0-7.5 3.357-7.5 7.5s3.358 7.5 7.5 7.5h53.318c4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5z"/><path d="m279.787 273.791h-53.318c-4.142 0-7.5 3.357-7.5 7.5s3.358 7.5 7.5 7.5h53.318c4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5z"/><path d="m279.787 309.624h-53.318c-4.142 0-7.5 3.357-7.5 7.5s3.358 7.5 7.5 7.5h53.318c4.143 0 7.5-3.357 7.5-7.5s-3.357-7.5-7.5-7.5z"/><path d="m431.636 237.957h-53.318c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.5 7.5 7.5h53.318c4.143 0 7.5-3.357 7.5-7.5s-3.358-7.5-7.5-7.5z"/><path d="m431.636 273.791h-53.318c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.5 7.5 7.5h53.318c4.143 0 7.5-3.357 7.5-7.5s-3.358-7.5-7.5-7.5z"/><path d="m431.636 309.624h-53.318c-4.143 0-7.5 3.357-7.5 7.5s3.357 7.5 7.5 7.5h53.318c4.143 0 7.5-3.357 7.5-7.5s-3.358-7.5-7.5-7.5z"/></g></g><path d="m509.783 344.504-32.131-64.929v-230.206c0-15.379-12.512-27.891-27.891-27.891h-83.828c-15.379 0-27.891 12.512-27.891 27.892v190.76h-12.238v-190.761c0-15.379-12.512-27.891-27.891-27.891h-83.828c-15.379 0-27.891 12.512-27.891 27.892v190.76h-12.238v-190.761c0-15.379-12.512-27.891-27.891-27.891h-83.827c-15.379 0-27.891 12.512-27.891 27.892v38.971c0 4.143 3.358 7.5 7.5 7.5s7.5-3.357 7.5-7.5v-38.971c0-7.108 5.783-12.892 12.891-12.892h83.829c7.108 0 12.891 5.782 12.891 12.891v294.13h-109.611v-62.028c.002-.094.002-.187 0-.281v-157.787c0-4.143-3.358-7.5-7.5-7.5s-7.5 3.357-7.5 7.5v156.17l-32.131 64.93c-1.277 2.59-2.216 6.275-2.216 9.976v112.463c0 13.002 10.578 23.58 23.58 23.58h464.84c13.002 0 23.58-10.578 23.58-23.58v-112.463c0-3.757-.975-7.491-2.217-9.975zm-32.131-31.111 14.898 30.106h-14.898zm-124.609-264.023c0-7.108 5.782-12.892 12.891-12.892h83.828c7.108 0 12.891 5.782 12.891 12.891v231.819c-.002.095-.002.19 0 .286v62.025h-109.61zm-27.238 205.76h12.238v88.369h-12.238zm-124.61-205.76c0-7.108 5.783-12.892 12.891-12.892h83.828c7.108 0 12.891 5.782 12.891 12.891v294.13h-109.61zm-27.238 205.76h12.238v88.369h-12.238zm-139.61 58.265v30.104h-14.897zm462.653 153.546c0 4.731-3.849 8.58-8.58 8.58h-464.84c-4.731 0-8.58-3.849-8.58-8.58v-108.442h482z"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 1009 B |
|
Before Width: | Height: | Size: 1002 B |
@@ -1,2 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg fill="#ffff" xmlns="http://www.w3.org/2000/svg" id="Outline" viewBox="0 0 512 512" width="512" height="512"><path d="M56,496H456a40.045,40.045,0,0,0,40-40V184a40.045,40.045,0,0,0-40-40h-8V104a8,8,0,0,0-2.343-5.657l-80-80A8,8,0,0,0,360,16H152a40.045,40.045,0,0,0-40,40V96H56a40.045,40.045,0,0,0-40,40V456A40.045,40.045,0,0,0,56,496ZM456,160a24.028,24.028,0,0,1,24,24V456a24.028,24.028,0,0,1-24,24H424a24.028,24.028,0,0,1-24-24v-8h8a40.045,40.045,0,0,0,40-40V160ZM368,43.313,420.687,96H392a24.027,24.027,0,0,1-24-24ZM128,56a24.027,24.027,0,0,1,24-24H352V72a40.045,40.045,0,0,0,40,40h40V408a24.027,24.027,0,0,1-24,24h-8V232a40.045,40.045,0,0,0-40-40H192V136a40.045,40.045,0,0,0-40-40H128ZM32,136a24.028,24.028,0,0,1,24-24h96a24.028,24.028,0,0,1,24,24v64a8,8,0,0,0,8,8H360a24.028,24.028,0,0,1,24,24V456a39.792,39.792,0,0,0,8.019,24H56a24.028,24.028,0,0,1-24-24Z"/><path d="M272,152a8,8,0,0,0,8,8H392a8,8,0,0,0,0-16H280A8,8,0,0,0,272,152Z"/><path d="M224,112h56a8,8,0,0,0,0-16H224a8,8,0,0,0,0,16Z"/><path d="M248,144H232a8,8,0,0,0,0,16h16a8,8,0,0,0,0-16Z"/><path d="M128,336h24v88a8,8,0,0,0,8,8h48a8,8,0,0,0,8-8V336h24a8,8,0,0,0,6.021-13.268l-56-64a8,8,0,0,0-12.042,0l-56,64A8,8,0,0,0,128,336Zm56-59.851L222.37,320H208a8,8,0,0,0-8,8v88H168V328a8,8,0,0,0-8-8H145.63Z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg height="511pt" viewBox="0 1 511 511.999" width="511pt" xmlns="http://www.w3.org/2000/svg" fill="#ffffff"><path d="m498.699219 222.695312c-.015625-.011718-.027344-.027343-.039063-.039062l-208.855468-208.847656c-8.902344-8.90625-20.738282-13.808594-33.328126-13.808594-12.589843 0-24.425781 4.902344-33.332031 13.808594l-208.746093 208.742187c-.070313.070313-.144532.144531-.210938.214844-18.28125 18.386719-18.25 48.21875.089844 66.558594 8.378906 8.382812 19.441406 13.234375 31.273437 13.746093.484375.046876.96875.070313 1.457031.070313h8.320313v153.695313c0 30.417968 24.75 55.164062 55.167969 55.164062h81.710937c8.285157 0 15-6.71875 15-15v-120.5c0-13.878906 11.292969-25.167969 25.171875-25.167969h48.195313c13.878906 0 25.167969 11.289063 25.167969 25.167969v120.5c0 8.28125 6.714843 15 15 15h81.710937c30.421875 0 55.167969-24.746094 55.167969-55.164062v-153.695313h7.71875c12.585937 0 24.421875-4.902344 33.332031-13.8125 18.359375-18.367187 18.367187-48.253906.027344-66.632813zm-21.242188 45.421876c-3.238281 3.238281-7.542969 5.023437-12.117187 5.023437h-22.71875c-8.285156 0-15 6.714844-15 15v168.695313c0 13.875-11.289063 25.164062-25.167969 25.164062h-66.710937v-105.5c0-30.417969-24.746094-55.167969-55.167969-55.167969h-48.195313c-30.421875 0-55.171875 24.75-55.171875 55.167969v105.5h-66.710937c-13.875 0-25.167969-11.289062-25.167969-25.164062v-168.695313c0-8.285156-6.714844-15-15-15h-22.328125c-.234375-.015625-.464844-.027344-.703125-.03125-4.46875-.078125-8.660156-1.851563-11.800781-4.996094-6.679688-6.679687-6.679688-17.550781 0-24.234375.003906 0 .003906-.003906.007812-.007812l.011719-.011719 208.847656-208.839844c3.234375-3.238281 7.535157-5.019531 12.113281-5.019531 4.574219 0 8.875 1.78125 12.113282 5.019531l208.800781 208.796875c.03125.03125.066406.0625.097656.09375 6.644531 6.691406 6.632813 17.539063-.03125 24.207032zm0 0"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,2 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="512px" viewBox="0 0 512 512" width="512px"><g><path d="m512 255.96875c0-5.691406-3.21875-10.890625-8.3125-13.429688l-99.242188-49.414062 99.242188-49.414062c5.09375-2.535157 8.3125-7.738282 8.3125-13.429688s-3.21875-10.890625-8.3125-13.425781l-223.171875-111.125c-15.351563-7.640625-33.679687-7.640625-49.03125 0l-223.171875 111.125c-5.09375 2.535156-8.3125 7.738281-8.3125 13.429687 0 5.6875 3.21875 10.890625 8.3125 13.425782l99.242188 49.414062-99.242188 49.414062c-5.09375 2.539063-8.3125 7.738282-8.3125 13.429688 0 5.6875 3.21875 10.890625 8.3125 13.425781l99.242188 49.414063-99.242188 49.414062c-5.09375 2.539063-8.3125 7.738282-8.3125 13.429688s3.21875 10.890625 8.3125 13.429687l223.171875 111.121094c7.675781 3.820313 16.09375 5.730469 24.515625 5.730469s16.839844-1.910156 24.515625-5.730469l223.171875-111.121094c5.09375-2.539062 8.3125-7.738281 8.3125-13.429687s-3.21875-10.890625-8.3125-13.429688l-99.242188-49.414062 99.242188-49.414063c5.09375-2.535156 8.3125-7.734375 8.3125-13.425781zm-267.144531-223.382812c6.980469-3.472657 15.3125-3.472657 22.289062 0l196.203125 97.695312-99.234375 49.410156c-.003906.003906-.003906.003906-.007812.003906l-96.960938 48.28125c-.4375.214844-.878906.421876-1.324219.609376-3.125 1.332031-6.472656 1.996093-9.820312 1.996093-3.828125 0-7.65625-.867187-11.144531-2.605469l-96.960938-48.28125h-.003906l-99.238281-49.414062zm125.9375 302.980468 92.554687 46.085938-196.203125 97.695312c-6.980469 3.472656-15.3125 3.472656-22.289062 0l-196.203125-97.695312 92.554687-46.085938 90.277344 44.949219c1.917969.957031 3.882813 1.792969 5.882813 2.507813 1.808593.648437 3.644531 1.183593 5.5 1.636718.199218.050782.394531.109375.597656.15625 12.347656 2.867188 25.539062 1.433594 37.050781-4.300781zm-6.683594-30.1875s0 0-.003906.003906l-96.960938 48.277344c-.003906 0-.003906.003906-.003906.003906-6.976563 3.472657-15.304687 3.472657-22.285156-.003906l-96.960938-48.277344h-.003906l-99.238281-49.414062 92.554687-46.085938 90.277344 44.949219c.960937.476563 1.929687.925781 2.910156 1.34375 6.871094 2.925781 14.238281 4.386719 21.605469 4.386719s14.734375-1.460938 21.601562-4.386719c.980469-.417969 1.953126-.867187 2.910157-1.34375l90.277343-44.949219 92.558594 46.085938zm0 0" data-original="#000000" class="active-path" data-old_color="#000000" fill="#000000"/></g> </svg>
|
||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1,50 +0,0 @@
|
||||
<?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 fill="#ffffff" 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 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M330.667,384c-5.896,0-10.667,4.771-10.667,10.667v74.667c0,11.76-9.573,21.333-21.333,21.333h-256
|
||||
c-11.76,0-21.333-9.573-21.333-21.333V42.667c0-11.76,9.573-21.333,21.333-21.333h256c11.76,0,21.333,9.573,21.333,21.333v74.667
|
||||
c0,5.896,4.771,10.667,10.667,10.667c5.896,0,10.667-4.771,10.667-10.667V42.667C341.333,19.135,322.198,0,298.667,0h-256
|
||||
C19.135,0,0,19.135,0,42.667v426.667C0,492.865,19.135,512,42.667,512h256c23.531,0,42.667-19.135,42.667-42.667v-74.667
|
||||
C341.333,388.771,336.563,384,330.667,384z"/>
|
||||
<path d="M508.542,248.135l-128-117.333c-4.365-3.979-11.083-3.677-15.073,0.656c-3.979,4.344-3.688,11.094,0.656,15.073
|
||||
l107.79,98.802H138.667c-5.896,0-10.667,4.771-10.667,10.667s4.771,10.667,10.667,10.667h335.249l-107.79,98.802
|
||||
c-4.344,3.979-4.635,10.729-0.656,15.073c2.104,2.292,4.979,3.458,7.865,3.458c2.573,0,5.156-0.927,7.208-2.802l128-117.333
|
||||
C510.75,261.844,512,258.99,512,256S510.75,250.156,508.542,248.135z"/>
|
||||
</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>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="19px" height="18px" viewBox="0 0 19 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 58 (84663) - https://sketch.com -->
|
||||
<title>plus</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round">
|
||||
<g id="سوالات-متداول" transform="translate(-1672.000000, -596.000000)" stroke="#FF5630" stroke-width="3">
|
||||
<path d="M1674,605 L1689,605 M1681.5,597.5 L1681.5,612.5" id="plus"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 657 B |
@@ -1,29 +0,0 @@
|
||||
<?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 fill="#0052CC" 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 512.005 512.005" style="enable-background:new 0 0 512.005 512.005;" xml:space="preserve" width="512" height="512">
|
||||
<g id="XMLID_1713_">
|
||||
<g id="XMLID_995_">
|
||||
<path id="XMLID_996_" d="M226.985,338.695c-2.64,0-5.21,1.07-7.08,2.931c-1.86,1.859-2.92,4.439-2.92,7.069s1.06,5.21,2.92,7.07 c1.87,1.86,4.44,2.93,7.08,2.93c2.63,0,5.2-1.069,7.07-2.93c1.86-1.86,2.92-4.44,2.92-7.07s-1.06-5.21-2.92-7.069 C232.184,339.766,229.615,338.695,226.985,338.695z"/>
|
||||
<path id="XMLID_1580_" d="M96.399,287.431c-6.969-4.88-15.423-6.756-23.801-5.276c-8.379,1.477-15.682,6.129-20.562,13.099 s-6.754,15.423-5.277,23.802s6.129,15.682,13.1,20.562c5.416,3.792,11.727,5.769,18.203,5.769c1.858,0,3.73-0.162,5.599-0.492 c17.297-3.049,28.889-19.603,25.839-36.9C108.021,299.613,103.369,292.311,96.399,287.431z M80.187,325.197 c-3.117,0.548-6.263-0.147-8.857-1.964c-2.594-1.816-4.325-4.533-4.875-7.651s0.147-6.264,1.964-8.857 c1.816-2.594,4.533-4.325,7.651-4.875c0.695-0.122,1.392-0.183,2.083-0.183c2.41,0,4.759,0.735,6.774,2.146 c2.594,1.816,4.325,4.533,4.875,7.651C90.937,317.901,86.623,324.062,80.187,325.197z"/>
|
||||
<path id="XMLID_1583_" d="M349.309,233.362c-8.379,1.477-15.681,6.129-20.562,13.099s-6.754,15.423-5.277,23.802 c1.478,8.38,6.129,15.682,13.099,20.563c5.416,3.792,11.727,5.769,18.203,5.769c1.858,0,3.731-0.162,5.6-0.492 c17.296-3.051,28.887-19.604,25.838-36.901c0,0,0,0,0-0.001C383.16,241.904,366.609,230.307,349.309,233.362z M356.899,276.406 c-3.118,0.547-6.264-0.148-8.857-1.964c-2.594-1.816-4.325-4.534-4.875-7.652s0.147-6.264,1.964-8.857 c1.816-2.594,4.533-4.325,7.651-4.875c0.693-0.122,1.383-0.181,2.064-0.181c5.641,0,10.656,4.053,11.668,9.796 C367.649,269.109,363.335,275.271,356.899,276.406z"/>
|
||||
<path id="XMLID_1584_" d="M255.425,148.945c2.63,0,5.21-1.069,7.07-2.939c1.86-1.86,2.93-4.431,2.93-7.07 c0-2.63-1.07-5.2-2.93-7.07c-1.86-1.859-4.44-2.93-7.07-2.93s-5.21,1.07-7.07,2.93c-1.86,1.86-2.93,4.44-2.93,7.07 c0,2.64,1.07,5.21,2.93,7.07C250.215,147.876,252.795,148.945,255.425,148.945z"/>
|
||||
<path id="XMLID_1587_" d="M270.616,304.943c5.398-0.952,9.996-4.26,12.615-9.074c2.62-4.815,2.898-10.473,0.765-15.523 l-8.65-20.469c-3.269-7.735-11.329-12.123-19.598-10.661l-89.828,15.839c-8.271,1.458-14.345,8.334-14.77,16.721l-1.127,22.194 c-0.278,5.475,1.919,10.695,6.028,14.324c3.31,2.924,7.492,4.488,11.815,4.488c1.043,0,2.095-0.091,3.144-0.276L270.616,304.943 C270.616,304.943,270.616,304.943,270.616,304.943z M170.131,302.353l0.909-17.893l86.535-15.258l6.974,16.503L170.131,302.353z"/>
|
||||
<path id="XMLID_1590_" d="M502.005,325.381h-27c-1.938,0-3.833,0.563-5.457,1.62l-38.476,25.056 c-4.31,0.951-15.813,3.493-27.329,6.048c-4.255,0.943-8.5,1.886-12.397,2.754c-0.065-0.701-0.151-1.405-0.276-2.111l-4.93-27.959 l12.57-2.217c15.955-2.813,26.647-18.083,23.833-34.038l-10.323-58.544c-3.997-22.668-22.163-39.336-43.776-42.528l-5.671-12.898 l6.765-1.193c16.291-2.872,27.208-18.463,24.335-34.754c-2.873-16.29-18.458-27.21-34.754-24.334l-21.204,3.739l-7.283-16.565 c-9.611-21.86-32.748-34.231-56.264-30.085L89.648,109.943c-23.488,4.141-40.997,23.653-42.577,47.453l-1.203,18.121 l-21.069,3.715c-7.892,1.391-14.769,5.772-19.365,12.336c-4.596,6.564-6.361,14.525-4.97,22.417s5.773,14.769,12.337,19.365 c5.101,3.571,11.044,5.434,17.144,5.434c1.75,0,3.513-0.153,5.273-0.464l6.557-1.156l-0.937,14.106 c-19.149,10.417-30.468,32.25-26.479,54.873l10.323,58.544c2.51,14.236,14.938,24.283,28.922,24.282 c1.687,0,3.397-0.146,5.115-0.449l12.57-2.216l4.93,27.959c2.188,12.409,13.02,21.165,25.208,21.165 c1.471,0,2.962-0.128,4.459-0.392l18.447-3.253c0,0,0,0,0,0c6.737-1.188,12.608-4.928,16.532-10.531 c3.923-5.604,5.43-12.4,4.242-19.137l-4.93-27.959l48.983-8.637c5.439-0.959,9.071-6.146,8.112-11.584 c-0.958-5.438-6.145-9.071-11.584-8.111L55.248,368.824c-5.098,0.908-9.971-2.515-10.869-7.609l-10.323-58.544 c-3.078-17.457,8.62-34.163,26.076-37.241l295.154-52.044c17.458-3.078,34.162,8.62,37.24,26.076l10.323,58.544 c0.898,5.095-2.516,9.971-7.61,10.87l-130.761,23.057c-5.439,0.959-9.071,6.146-8.112,11.584 c0.959,5.439,6.154,9.072,11.584,8.111l49.302-8.693l4.93,27.959c1.188,6.737,4.928,12.607,10.532,16.531 c4.354,3.049,9.428,4.639,14.635,4.639c0.363,0,0.728-0.032,1.092-0.048c-2.671,3.117-5.666,6.614-9.067,10.584 c-5.114,5.968-6.25,14.111-2.965,21.251c3.285,7.142,10.21,11.578,18.072,11.578h147.525c5.523,0,10-4.478,10-10v-90.048 C512.005,329.858,507.528,325.381,502.005,325.381z M120.483,377.631l4.93,27.958c0.26,1.476-0.07,2.965-0.929,4.192 s-2.146,2.047-3.621,2.308l0-0.001l-18.448,3.253c-3.048,0.534-5.961-1.504-6.498-4.55l-4.93-27.96l4.319-0.761L120.483,377.631z M362.594,139.978c5.434-0.952,10.627,2.683,11.584,8.111c0.958,5.431-2.681,10.628-8.111,11.585l-11.578,2.042l-8.286-18.848 L362.594,139.978z M277.843,97.066c14.414-2.543,28.592,5.041,34.482,18.438l34.742,79.022l-135.031,23.81l28.828-41.171 c3.168-4.523,2.068-10.759-2.456-13.927c-4.525-3.169-10.759-2.068-13.927,2.456l-40.299,57.553l-64.009,11.287l87.606-125.114 L277.843,97.066z M93.121,129.639l86.805-15.306L92.32,239.446l-31.015,5.469l5.723-86.194 C67.996,144.136,78.726,132.177,93.121,129.639z M31.744,218.625c-2.632,0.459-5.285-0.125-7.472-1.657 c-2.188-1.532-3.648-3.824-4.112-6.455c-0.958-5.431,2.681-10.627,8.112-11.585l16.232-2.862l-1.364,20.55L31.744,218.625z M344.185,371.042c-1.228-0.859-2.047-2.146-2.307-3.621l-4.93-27.959l29.496-5.2l4.93,27.958c0.537,3.046-1.504,5.962-4.55,6.499 l-18.447,3.253C346.899,372.229,345.412,371.901,344.185,371.042z M492.005,415.429H354.718 c13.731-16.027,23.415-27.327,27.439-32.018c8.949-2.03,36.206-8.068,55.003-12.218c1.175-0.259,2.293-0.729,3.301-1.385 l37.512-24.428h14.031V415.429z"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 5.5 KiB |
@@ -1,81 +0,0 @@
|
||||
<?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="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve" fill="#ffffff">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M502,208.749h-64c-5.523,0-10,4.478-10,10v50.5c0,5.522,4.477,10,10,10s10-4.478,10-10v-40.5h44V492h-22h-22V344.249
|
||||
c0-5.522-4.477-10-10-10s-10,4.478-10,10V492h-20V285c0-5.522-4.477-10-10-10h-64c-5.523,0-10,4.478-10,10v207h-20V355
|
||||
c0-5.522-4.477-10-10-10h-64c-5.523,0-10,4.478-10,10v137h-20v-79.625c0-5.522-4.477-10-10-10h-64c-5.523,0-10,4.478-10,10V492H30
|
||||
c-5.514,0-10-4.486-10-10V30c0-5.514,4.486-10,10-10h257.975v66.003c0,16.542,13.458,30,30,30h66V239c0,5.522,4.477,10,10,10
|
||||
s10-4.478,10-10V106.003c0-2.652-1.054-5.195-2.929-7.071l-96-96.003C303.17,1.054,300.627,0,297.975,0H30C13.458,0,0,13.458,0,30
|
||||
v452c0,16.542,13.458,30,30,30h472c5.523,0,10-4.478,10-10V218.749C512,213.227,507.523,208.749,502,208.749z M307.975,34.143
|
||||
l61.859,61.86h-51.859c-5.515,0-10-4.486-10-10V34.143z M180,492h-44v-69.625h44V492z M284,492h-44V365h44V492z M388,492h-44V295
|
||||
h44V492z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M445.07,297.82c-1.86-1.869-4.44-2.93-7.07-2.93s-5.21,1.061-7.07,2.93c-1.86,1.86-2.93,4.44-2.93,7.07
|
||||
s1.07,5.21,2.93,7.07c1.86,1.859,4.44,2.93,7.07,2.93s5.21-1.07,7.07-2.93s2.93-4.44,2.93-7.07S446.93,299.68,445.07,297.82z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M145.577,54.729c-5.523,0-10,4.478-10,10v17.989c-46.031,4.997-81.975,44.097-81.975,91.435
|
||||
c0,50.715,41.26,91.975,91.975,91.975c47.338,0,86.438-35.943,91.435-81.975H255c5.523,0,10-4.478,10-10
|
||||
C265,108.302,211.427,54.729,145.577,54.729z M145.577,246.127c-39.687,0-71.975-32.288-71.975-71.975
|
||||
c0-36.293,27.005-66.399,61.975-71.282v71.282c0,5.522,4.477,10,10,10h71.282C211.976,219.122,181.87,246.127,145.577,246.127z
|
||||
M155.577,164.153v-0.001V75.228c46.852,4.702,84.222,42.073,88.924,88.925H155.577z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M255,294.25H64c-5.523,0-10,4.478-10,10c0,5.522,4.477,10,10,10h191c5.523,0,10-4.478,10-10
|
||||
C265,298.728,260.523,294.25,255,294.25z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M128,342.5H64c-5.523,0-10,4.478-10,10c0,5.522,4.477,10,10,10h64c5.523,0,10-4.478,10-10
|
||||
C138,346.978,133.523,342.5,128,342.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M185.15,345.43c-1.86-1.86-4.44-2.93-7.07-2.93c-2.64,0-5.21,1.069-7.07,2.93c-1.87,1.86-2.93,4.44-2.93,7.07
|
||||
s1.06,5.21,2.93,7.069c1.86,1.86,4.43,2.931,7.07,2.931c2.63,0,5.21-1.07,7.07-2.931c1.86-1.859,2.93-4.439,2.93-7.069
|
||||
S187.01,347.29,185.15,345.43z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1 +0,0 @@
|
||||
<svg id="Layer_1" enable-background="new 0 0 512 512" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg" fill="#ffffff"><path d="m272.066 512h-32.133c-25.989 0-47.134-21.144-47.134-47.133v-10.871c-11.049-3.53-21.784-7.986-32.097-13.323l-7.704 7.704c-18.659 18.682-48.548 18.134-66.665-.007l-22.711-22.71c-18.149-18.129-18.671-48.008.006-66.665l7.698-7.698c-5.337-10.313-9.792-21.046-13.323-32.097h-10.87c-25.988 0-47.133-21.144-47.133-47.133v-32.134c0-25.989 21.145-47.133 47.134-47.133h10.87c3.531-11.05 7.986-21.784 13.323-32.097l-7.704-7.703c-18.666-18.646-18.151-48.528.006-66.665l22.713-22.712c18.159-18.184 48.041-18.638 66.664.006l7.697 7.697c10.313-5.336 21.048-9.792 32.097-13.323v-10.87c0-25.989 21.144-47.133 47.134-47.133h32.133c25.989 0 47.133 21.144 47.133 47.133v10.871c11.049 3.53 21.784 7.986 32.097 13.323l7.704-7.704c18.659-18.682 48.548-18.134 66.665.007l22.711 22.71c18.149 18.129 18.671 48.008-.006 66.665l-7.698 7.698c5.337 10.313 9.792 21.046 13.323 32.097h10.87c25.989 0 47.134 21.144 47.134 47.133v32.134c0 25.989-21.145 47.133-47.134 47.133h-10.87c-3.531 11.05-7.986 21.784-13.323 32.097l7.704 7.704c18.666 18.646 18.151 48.528-.006 66.665l-22.713 22.712c-18.159 18.184-48.041 18.638-66.664-.006l-7.697-7.697c-10.313 5.336-21.048 9.792-32.097 13.323v10.871c0 25.987-21.144 47.131-47.134 47.131zm-106.349-102.83c14.327 8.473 29.747 14.874 45.831 19.025 6.624 1.709 11.252 7.683 11.252 14.524v22.148c0 9.447 7.687 17.133 17.134 17.133h32.133c9.447 0 17.134-7.686 17.134-17.133v-22.148c0-6.841 4.628-12.815 11.252-14.524 16.084-4.151 31.504-10.552 45.831-19.025 5.895-3.486 13.4-2.538 18.243 2.305l15.688 15.689c6.764 6.772 17.626 6.615 24.224.007l22.727-22.726c6.582-6.574 6.802-17.438.006-24.225l-15.695-15.695c-4.842-4.842-5.79-12.348-2.305-18.242 8.473-14.326 14.873-29.746 19.024-45.831 1.71-6.624 7.684-11.251 14.524-11.251h22.147c9.447 0 17.134-7.686 17.134-17.133v-32.134c0-9.447-7.687-17.133-17.134-17.133h-22.147c-6.841 0-12.814-4.628-14.524-11.251-4.151-16.085-10.552-31.505-19.024-45.831-3.485-5.894-2.537-13.4 2.305-18.242l15.689-15.689c6.782-6.774 6.605-17.634.006-24.225l-22.725-22.725c-6.587-6.596-17.451-6.789-24.225-.006l-15.694 15.695c-4.842 4.843-12.35 5.791-18.243 2.305-14.327-8.473-29.747-14.874-45.831-19.025-6.624-1.709-11.252-7.683-11.252-14.524v-22.15c0-9.447-7.687-17.133-17.134-17.133h-32.133c-9.447 0-17.134 7.686-17.134 17.133v22.148c0 6.841-4.628 12.815-11.252 14.524-16.084 4.151-31.504 10.552-45.831 19.025-5.896 3.485-13.401 2.537-18.243-2.305l-15.688-15.689c-6.764-6.772-17.627-6.615-24.224-.007l-22.727 22.726c-6.582 6.574-6.802 17.437-.006 24.225l15.695 15.695c4.842 4.842 5.79 12.348 2.305 18.242-8.473 14.326-14.873 29.746-19.024 45.831-1.71 6.624-7.684 11.251-14.524 11.251h-22.148c-9.447.001-17.134 7.687-17.134 17.134v32.134c0 9.447 7.687 17.133 17.134 17.133h22.147c6.841 0 12.814 4.628 14.524 11.251 4.151 16.085 10.552 31.505 19.024 45.831 3.485 5.894 2.537 13.4-2.305 18.242l-15.689 15.689c-6.782 6.774-6.605 17.634-.006 24.225l22.725 22.725c6.587 6.596 17.451 6.789 24.225.006l15.694-15.695c3.568-3.567 10.991-6.594 18.244-2.304z"/><path d="m256 367.4c-61.427 0-111.4-49.974-111.4-111.4s49.973-111.4 111.4-111.4 111.4 49.974 111.4 111.4-49.973 111.4-111.4 111.4zm0-192.8c-44.885 0-81.4 36.516-81.4 81.4s36.516 81.4 81.4 81.4 81.4-36.516 81.4-81.4-36.515-81.4-81.4-81.4z"/></svg>
|
||||
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -1,15 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 63.72 64.67" fill="#0051CD">
|
||||
<title>Group 169</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_169" data-name="Group 169">
|
||||
<path id="Path_823" data-name="Path 823" d="M62.88,15.15,32.51.15a1.55,1.55,0,0,0-1.33,0L.83,15.15A1.51,1.51,0,0,0,0,16.5v6.88a1.5,1.5,0,0,0,1.5,1.5H3.38V58.76a5.77,5.77,0,0,0,5.78,5.77h4a1.4,1.4,0,0,0,1.23,0H54.24A5.77,5.77,0,0,0,60,58.76V24.88h2.2a1.5,1.5,0,0,0,1.5-1.5V16.5A1.52,1.52,0,0,0,62.88,15.15ZM48.46,61.53H15.25V28.22a3.31,3.31,0,0,1,3.31-3.3h26.6a3.32,3.32,0,0,1,3.31,3.3ZM60.71,21.88H58.52a1.5,1.5,0,0,0-1.5,1.5V58.76a2.77,2.77,0,0,1-2.78,2.77H51.46V28.22a6.3,6.3,0,0,0-6.31-6.3H18.55a6.3,6.3,0,0,0-6.3,6.3V61.53H9.15a2.77,2.77,0,0,1-2.78-2.77V23.38a1.5,1.5,0,0,0-1.5-1.5H3V17.43L31.84,3.17,60.71,17.43Z"/>
|
||||
<path id="Path_824" data-name="Path 824" d="M44,29.76H19.73a1.5,1.5,0,0,0,0,3H44a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_825" data-name="Path 825" d="M44,37.82H19.73a1.5,1.5,0,1,0,0,3H44a1.5,1.5,0,0,0,0-3Z"/>
|
||||
<path id="Path_826" data-name="Path 826" d="M44,45.89H19.73a1.5,1.5,0,0,0,0,3H44a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_827" data-name="Path 827" d="M44,54H19.73a1.5,1.5,0,0,0,0,3H44a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_828" data-name="Path 828" d="M25.07,14.94a1.5,1.5,0,0,0,1.5,1.5H37.14a1.5,1.5,0,0,0,0-3H26.58a1.51,1.51,0,0,0-1.51,1.5Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,9 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" viewBox="0 0 511.997 511.997" style="enable-background:new 0 0 511.997 511.997;" xml:space="preserve" width="512px" height="512px"><g><g transform="translate(1 1)">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M211.26,389.24l-60.331,60.331c-25.012,25.012-65.517,25.012-90.508,0.005c-24.996-24.996-24.996-65.505-0.005-90.496 l120.683-120.683c24.991-24.992,65.5-24.992,90.491,0c8.331,8.331,21.839,8.331,30.17,0c8.331-8.331,8.331-21.839,0-30.17 c-41.654-41.654-109.177-41.654-150.831,0L30.247,328.909c-41.654,41.654-41.654,109.177,0,150.831 c41.649,41.676,109.177,41.676,150.853,0l60.331-60.331c8.331-8.331,8.331-21.839,0-30.17S219.591,380.909,211.26,389.24z" data-original="#000000" class="active-path" data-old_color="#000000" fill="#FFFFFF"/>
|
||||
<path d="M479.751,30.24c-41.654-41.654-109.199-41.654-150.853,0l-72.384,72.384c-8.331,8.331-8.331,21.839,0,30.17 c8.331,8.331,21.839,8.331,30.17,0l72.384-72.384c24.991-24.992,65.521-24.992,90.513,0c24.991,24.991,24.991,65.5,0,90.491 L316.845,283.638c-24.992,24.992-65.5,24.992-90.491,0c-8.331-8.331-21.839-8.331-30.17,0s-8.331,21.839,0,30.17 c41.654,41.654,109.177,41.654,150.831,0l132.736-132.736C521.405,139.418,521.405,71.894,479.751,30.24z" data-original="#000000" class="active-path" data-old_color="#000000" fill="#FFFFFF"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></g> </svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,21 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.12 70.71" fill="#FFFFFF">
|
||||
<title>Group 175</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_175" data-name="Group 175">
|
||||
<path id="Path_858" data-name="Path 858" d="M60.38,18.66a1.5,1.5,0,1,0-2,2.28,2,2,0,0,1,.69,1.49V49.9a1.5,1.5,0,0,0,3,0V22.43A5,5,0,0,0,60.38,18.66Z"/>
|
||||
<path id="Path_859" data-name="Path 859" d="M60.62,54.37a1.5,1.5,0,0,0-1.5,1.5h0v9.89a2,2,0,0,1-1.95,1.95h-21V65.34a6.13,6.13,0,0,0,0-.74,1.5,1.5,0,0,0-3,.32v0a2.56,2.56,0,0,1,0,.39v2.37H6.94A4,4,0,0,1,3,63.77a3.25,3.25,0,0,1,3.25-3.24h6a3.48,3.48,0,0,0,3.48-3.48V41.38a1.5,1.5,0,0,0-3,0V57.05a.48.48,0,0,1-.48.48h-6A6.22,6.22,0,0,0,3,58.45V15.66a4,4,0,0,1,3.94-3.94h5.24a.56.56,0,0,1,.55.56V35.67a1.5,1.5,0,0,0,3,0V20.48h9.44a1.5,1.5,0,0,0,0-3H15.73v-5.2a3.55,3.55,0,0,0-3.55-3.56H6.94A7,7,0,0,0,0,15.66V63.77a7,7,0,0,0,6.94,6.94H57.17a5,5,0,0,0,4.95-5V55.87a1.5,1.5,0,0,0-1.5-1.5Z"/>
|
||||
<path id="Path_860" data-name="Path 860" d="M38.72,50.9a1.5,1.5,0,0,0-1.5-1.5H32.78a1.5,1.5,0,0,0,0,3h4.44a1.5,1.5,0,0,0,1.5-1.5Z"/>
|
||||
<path id="Path_861" data-name="Path 861" d="M35.19,34.69a1.5,1.5,0,0,0-1.5,1.5v1.15A4.63,4.63,0,0,0,34,39.1a1.47,1.47,0,0,0,1.4.95A1.26,1.26,0,0,0,36,40,1.5,1.5,0,0,0,36.82,38a1.88,1.88,0,0,1-.12-.66V36.19a1.5,1.5,0,0,0-1.5-1.5Z"/>
|
||||
<path id="Path_862" data-name="Path 862" d="M29.86,59H28a1.5,1.5,0,1,0,0,3h1.87a3.32,3.32,0,0,1,1.68.46,1.5,1.5,0,0,0,1.55-2.57l0,0A6.37,6.37,0,0,0,29.86,59Z"/>
|
||||
<path id="Path_863" data-name="Path 863" d="M22.11,54a1.46,1.46,0,0,0-1.55,1.38.13.13,0,0,0,0,.06v.24a6.26,6.26,0,0,0,2.31,4.88,1.5,1.5,0,0,0,2-2.25.27.27,0,0,0-.08-.07,3.31,3.31,0,0,1-1.22-2.56V55.6A1.49,1.49,0,0,0,22.11,54Z"/>
|
||||
<path id="Path_864" data-name="Path 864" d="M22.87,52.64A1.49,1.49,0,0,0,25,53a3.32,3.32,0,0,1,1.9-.6h1.49a1.5,1.5,0,0,0,0-3H26.86a6.29,6.29,0,0,0-3.63,1.15A1.5,1.5,0,0,0,22.87,52.64Z"/>
|
||||
<path id="Path_865" data-name="Path 865" d="M48.31,48.16a1.5,1.5,0,0,0,1.49-1.33c0-.24,0-.49,0-.74v-.62a6.34,6.34,0,0,0-1.38-3.94,1.5,1.5,0,1,0-2.37,1.83l0,0a3.32,3.32,0,0,1,.72,2.07v.62c0,.13,0,.26,0,.39a1.5,1.5,0,0,0,1.31,1.67Z"/>
|
||||
<path id="Path_866" data-name="Path 866" d="M41.65,52.4h1.88a6.33,6.33,0,0,0,3.2-.87A1.5,1.5,0,1,0,45.2,49h0a3.31,3.31,0,0,1-1.68.45H41.65a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_867" data-name="Path 867" d="M43.41,42.16a1.5,1.5,0,0,0,0-3H39a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_868" data-name="Path 868" d="M48.57,14.54a5.85,5.85,0,1,0-5.84,5.85A5.85,5.85,0,0,0,48.57,14.54Zm-8.68,0a2.84,2.84,0,1,1,2.84,2.85h0A2.85,2.85,0,0,1,39.89,14.54Z"/>
|
||||
<path id="Path_869" data-name="Path 869" d="M41.59,35.18a1.51,1.51,0,0,0,1.71,0c.54-.36,13.18-8.88,13.24-21.15A14.05,14.05,0,0,0,42.52,0h-.05A14.06,14.06,0,0,0,28.41,14C28.22,25.33,41,34.78,41.59,35.18ZM42.47,3a11,11,0,0,1,7.87,3.27,10.93,10.93,0,0,1,3.2,7.79c0,8.93-8.3,16-11,18-2.75-2.24-11.23-9.8-11.1-18A11.09,11.09,0,0,1,42.47,3Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 61.15 63.91" fill="#FFFFFF"><title>Asset 108</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_6" data-name="Layer 6"><path d="M59.23,33.72a1.5,1.5,0,0,0-1.5,1.5v8.33a1.5,1.5,0,0,0,3,0V35.22A1.5,1.5,0,0,0,59.23,33.72Z"/><path d="M35.39,31.15a1.5,1.5,0,0,0-1.5,1.5v1a4.49,4.49,0,0,0,2,3.76,1.47,1.47,0,0,0,.82.24,1.5,1.5,0,0,0,.82-2.75,1.51,1.51,0,0,1-.68-1.25v-1A1.5,1.5,0,0,0,35.39,31.15Z"/><path d="M36.73,47.41h4.43a1.5,1.5,0,0,0,0-3H36.73a1.5,1.5,0,1,0,0,3Z"/><path d="M45.43,46.6a1.48,1.48,0,0,0,.87-.28,5.86,5.86,0,0,0,2.44-4.75v-.31a1.5,1.5,0,0,0-3,0v.31a2.86,2.86,0,0,1-1.19,2.31,1.5,1.5,0,0,0,.88,2.72Z"/><path d="M25,46.72a1.5,1.5,0,0,0-2.06.51,5.83,5.83,0,0,0-.18,5.71,1.49,1.49,0,0,0,1.33.81,1.56,1.56,0,0,0,.69-.17,1.51,1.51,0,0,0,.64-2,2.78,2.78,0,0,1-.32-1.3,2.81,2.81,0,0,1,.41-1.47A1.51,1.51,0,0,0,25,46.72Z"/><path d="M44.51,38.68a1.5,1.5,0,1,0,1.71-2.47,5.78,5.78,0,0,0-3.32-1H41.09a1.5,1.5,0,0,0,0,3H42.9A2.8,2.8,0,0,1,44.51,38.68Z"/><path d="M32.48,53.4a5.77,5.77,0,0,0-1.89-.32h-2.9a1.5,1.5,0,1,0-.21,3h3.11a2.62,2.62,0,0,1,.92.16,1.62,1.62,0,0,0,.49.08,1.5,1.5,0,0,0,.48-2.92Z"/><path d="M32.29,44.41H27.82a1.5,1.5,0,0,0,0,3h4.43a1.5,1.5,0,0,0,0-3Z"/><path d="M56.77,5.13h-5a1.36,1.36,0,0,1-1.11-.57l-2-2.76A4.38,4.38,0,0,0,45.14,0h-6a4.36,4.36,0,0,0-3.35,1.56L33.15,4.64a1.36,1.36,0,0,1-1,.49H27.79A4.38,4.38,0,0,0,23.41,9.5v2.35h-8v-5A3.51,3.51,0,0,0,11.92,3.3H6.81A6.81,6.81,0,0,0,0,10.11v47a6.82,6.82,0,0,0,6.81,6.81H55.86A4.88,4.88,0,0,0,60.73,59V49.38a1.5,1.5,0,0,0-3,0V59a1.88,1.88,0,0,1-1.87,1.88H36.43v-2a6,6,0,0,0-.14-1.27,1.5,1.5,0,1,0-2.93.65,2.56,2.56,0,0,1,.07.62v2H6.81A3.82,3.82,0,0,1,3,57.1,3.14,3.14,0,0,1,6.13,54H12a3.44,3.44,0,0,0,3.44-3.43V35.22a1.5,1.5,0,0,0-3,0V50.53A.44.44,0,0,1,12,51H6.13A6.18,6.18,0,0,0,3,51.83V10.11A3.82,3.82,0,0,1,6.81,6.3h5.11a.51.51,0,0,1,.51.51V29.65a1.5,1.5,0,1,0,3,0V14.85h8v11a4.38,4.38,0,0,0,4.38,4.37h29a4.38,4.38,0,0,0,4.38-4.37V9.5A4.38,4.38,0,0,0,56.77,5.13Zm1.38,20.69a1.38,1.38,0,0,1-1.38,1.37h-29a1.38,1.38,0,0,1-1.38-1.37V9.5a1.37,1.37,0,0,1,1.38-1.37H32.1a4.34,4.34,0,0,0,3.35-1.57L38,3.49A1.38,1.38,0,0,1,39.09,3h6a1.36,1.36,0,0,1,1.11.57l2,2.76a4.42,4.42,0,0,0,3.54,1.8h5A1.37,1.37,0,0,1,58.15,9.5Z"/><path d="M42.28,8.23a8.45,8.45,0,1,0,8.45,8.45A8.46,8.46,0,0,0,42.28,8.23Zm0,13.9a5.45,5.45,0,1,1,5.45-5.45A5.45,5.45,0,0,1,42.28,22.13Z"/></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1,2 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="512px" viewBox="0 0 60 52" width="512px" fill="#ffffff"><g transform="matrix(-1 0 0 1 60 0)"><g id="Page-1" fill="#ffffff" fill-rule="evenodd"><g id="029---Roller" fill="#ffffff" fill-rule="nonzero"><path id="Shape" d="m45 22c-3.2502888.006605-6.4098595 1.0724336-9 3.036v-2.436c7.2786356-4.569571 16.8243389-2.9760433 22.224 3.71.2210431.2898487.5822917.4364606.9428129.3826384.3605211-.0538222.6631971-.2995514.7899458-.641322.1267486-.3417705.0574891-.7254354-.1807587-1.0013164-5.7421456-7.1089019-15.7365111-9.1135759-23.776-4.769v-11.281c-.0055111-4.96827817-4.0317218-8.99448887-9-9h-14c-2.7600532.00330612-4.99669388 2.23994685-5 5v25c-1.65685425 0-3 1.3431458-3 3v1.95c-3.86092588 1.9175246-5.81859836 6.3046563-4.66707636 10.4588886s5.08843955 6.9074279 9.3855816 6.5635974c4.29714206-.3438306 7.74618606-3.6880048 8.22249476-7.972486h13.807c3.4329643 6.4974924 11.0688006 9.5497318 18.0346628 7.2089169 6.9658623-2.340815 11.2089355-9.3848544 10.0214818-16.6369303-1.1874536-7.2520759-7.4554956-12.5750272-14.8041446-12.5719866zm-11-13v10h-12c-.5522847 0-1-.4477153-1-1v-16h6c3.8641657.00440864 6.9955914 3.13583434 7 7zm-24-4c0-1.65685425 1.3431458-3 3-3h6v16c0 1.6568542 1.3431458 3 3 3h12v2h-4c-.5522847 0-1 .4477153-1 1s.4477153 1 1 1h4v1.843c-.8837912.9507144-1.6407518 2.011871-2.252 3.157h-10.748v-6c0-.5522847-.4477153-1-1-1s-1 .4477153-1 1v6h-9zm-1 45c-3.86599325 0-7-3.1340068-7-7s3.13400675-7 7-7c3.8659932 0 7 3.1340068 7 7-.0044086 3.8641657-3.1358343 6.9955914-7 7zm8.941-8c-.2766279-2.5500647-1.6320693-4.8595829-3.7235569-6.3445181-2.0914876-1.4849351-4.71876616-2.0031081-7.2174431-1.4234819v-1.232c0-.5522847.44771525-1 1-1h22.864c-.2307193.6528016-.4148479 1.3211451-.551 2h-5.313c-1.6568542 0-3 1.3431458-3 3s1.3431458 3 3 3h5.313c.1361521.6788549.3202807 1.3471984.551 2zm7.059-4c-.5522847 0-1-.4477153-1-1s.4477153-1 1-1h15.422c.3974352-.0002048.757026-.2357446.916-.6.7576631-1.7360243 2.6290961-2.70262 4.4832991-2.3156253s3.1827615 2.0214675 3.1827615 3.9156253-1.3285585 3.5286306-3.1827615 3.9156253-3.725636-.579601-4.4832991-2.3156253c-.158974-.3642554-.5185648-.5997952-.916-.6zm20 12c-6.0163741-.0237395-11.2392076-4.151809-12.652-10h7.461c1.357817 2.3518081 4.1259656 3.4984128 6.7490667 2.795555 2.6231011-.7028579 4.4470857-3.0799209 4.4470857-5.795555s-1.8239846-5.0926971-4.4470857-5.795555c-2.6231011-.7028578-5.3912497.4437469-6.7490667 2.795555h-7.461c1.5665422-6.6051211 7.9514659-10.8929408 14.6582531-9.8438054s11.4772603 7.0819816 10.951862 13.8499677c-.5253984 6.7679861-6.1697665 11.9923289-12.9581151 11.9938377z" data-original="#000000" class="active-path" fill="#ffffff"/><path id="Shape" d="m24 7c.2651948-.00005664.5195073-.10545063.707-.293l1-1c.3789722-.39237889.3735524-1.01608478-.0121814-1.40181858-.3857338-.38573379-1.0094397-.39115363-1.4018186-.01218142l-1 1c-.2859079.28599425-.3714219.71603662-.216678 1.08965456s.5192821.61725909.923678.61734544z" data-original="#000000" class="active-path" fill="#ffffff"/><path id="Shape" d="m24.293 10.707c.3904999.3903819 1.0235001.3903819 1.414 0l4-4c.3789722-.39237889.3735524-1.01608478-.0121814-1.40181858-.3857338-.38573379-1.0094397-.39115363-1.4018186-.01218142l-4 4c-.3903819.39049985-.3903819 1.0235001 0 1.414z" data-original="#000000" class="active-path" fill="#ffffff"/><path id="Shape" d="m9 40c-1.65685425 0-3 1.3431458-3 3s1.34314575 3 3 3c1.6568542 0 3-1.3431458 3-3s-1.3431458-3-3-3zm0 4c-.55228475 0-1-.4477153-1-1s.44771525-1 1-1 1 .4477153 1 1-.44771525 1-1 1z" data-original="#000000" class="active-path" fill="#ffffff"/></g></g></g> </svg>
|
||||
|
Before Width: | Height: | Size: 3.6 KiB |
@@ -1,100 +0,0 @@
|
||||
<?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="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 480 480" style="enable-background:new 0 0 480 480;" xml:space="preserve" fill="#ffff">
|
||||
<g>
|
||||
<g>
|
||||
<path d="M429.688,90.304l-40-40c-2.678-2.681-6.869-3.115-10.04-1.04L335.2,78.4l-47.928-20L279.92,6.864
|
||||
C279.355,2.924,275.98-0.001,272,0h-64c-3.98-0.001-7.355,2.924-7.92,6.864L192.72,58.4l-47.88,20l-44.456-29.12
|
||||
c-3.171-2.075-7.362-1.641-10.04,1.04l-40,40c-2.684,2.685-3.112,6.886-1.024,10.056l29.6,44.96L73.96,156.8l14.688,6.352
|
||||
l6.68-15.424c1.073-2.478,0.823-5.33-0.664-7.584l-28.416-43.12L97.04,66.232l42.576,27.888c2.229,1.443,5.025,1.701,7.48,0.688
|
||||
l56-23.448c2.586-1.096,4.408-3.467,4.8-6.248L214.936,16h50.128l7.016,49.136c0.392,2.781,2.214,5.152,4.8,6.248l56,23.432
|
||||
c2.452,1.013,5.246,0.755,7.472-0.688l42.592-27.872l31.008,31.008l-20.8,35.2c-1.238,2.087-1.462,4.624-0.608,6.896l8.872,23.432
|
||||
l14.968-5.664l-7.512-19.832l22.04-37.264C432.772,96.89,432.268,92.887,429.688,90.304z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M325.656,306.344l-24-24c-1.5-1.5-3.534-2.344-5.656-2.344H184c-2.122,0-4.156,0.844-5.656,2.344l-24,24
|
||||
c-1.5,1.5-2.344,3.534-2.344,5.656v160c0,4.418,3.582,8,8,8h160c4.418,0,8-3.582,8-8V312
|
||||
C328,309.878,327.156,307.844,325.656,306.344z M267.312,296h25.376L264,324.688L251.312,312L267.312,296z M252.688,336
|
||||
l-10.344,10.344c-1.505,1.497-2.349,3.533-2.344,5.656c-0.015-2.102-0.857-4.114-2.344-5.6L227.312,336L240,323.312L252.688,336z
|
||||
M244.688,296L240,300.688L235.312,296H244.688z M212.688,296l16,16L216,324.688L187.312,296H212.688z M209,464h-41V315.312l8-8
|
||||
l34.344,34.344l13.2,13.2L209,464z M225.144,464l14.784-110.944c0.048-0.337,0.072-0.676,0.072-1.016
|
||||
c0.002,0.513,0.055,1.025,0.16,1.528L262.24,464H225.144z M312,464h-33.44l-21.872-109.368l12.968-12.976L304,307.312l8,8V464z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M296,104h-72c-26.499,0.026-47.974,21.501-48,48v48c0.04,35.33,28.67,63.96,64,64c35.33-0.04,63.96-28.67,64-64v-88
|
||||
C304,107.582,300.418,104,296,104z M288,200c0,26.51-21.49,48-48,48c-26.51,0-48-21.49-48-48v-32h64
|
||||
c11.824-0.003,23.227-4.393,32-12.32V200z M256,152h-64c0-17.673,14.327-32,32-32h64C288,137.673,273.673,152,256,152z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M477.656,338.344l-24-24c-1.5-1.5-3.534-2.344-5.656-2.344h-64c-2.122,0-4.156,0.844-5.656,2.344l-24,24
|
||||
c-1.5,1.5-2.344,3.534-2.344,5.656v128c0,4.418,3.582,8,8,8h112c4.418,0,8-3.582,8-8V344
|
||||
C480,341.878,479.156,339.844,477.656,338.344z M464,464h-40V344h-16v120h-40V347.312l16-16l18.344,18.344L408,344l5.656-5.656
|
||||
L403.312,328h26.008l-10.808,10.168L424,344l5.488,5.832l19.072-17.96l15.44,15.44V464z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M424,176h-15.736c-22.02,0.044-39.881,17.844-40,39.864l-0.128,40.056c-0.088,26.465,21.294,47.991,47.76,48.08
|
||||
c0.053,0,0.107,0,0.16,0c26.457-0.031,47.9-21.463,47.944-47.92V216C463.974,193.92,446.08,176.026,424,176z M384.264,215.92
|
||||
C384.307,202.799,394.88,192.144,408,192c0.001,13.152-10.584,23.855-23.736,24V215.92z M448,256.056
|
||||
c-0.031,17.62-14.3,31.9-31.92,31.944c-17.629,0-31.92-14.291-31.92-31.92c0-0.027,0-0.053,0-0.08l0.08-24
|
||||
c12.506-0.075,24.257-5.995,31.76-16c7.554,10.072,19.41,16,32,16V256.056z M424,192c13.255,0,24,10.745,24,24
|
||||
C434.745,216,424,205.255,424,192z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M125.656,338.344l-24-24c-1.5-1.5-3.534-2.344-5.656-2.344H32c-2.122,0-4.156,0.844-5.656,2.344l-24,24
|
||||
C0.844,339.844,0,341.878,0,344v128c0,4.418,3.582,8,8,8h112c4.418,0,8-3.582,8-8V344
|
||||
C128,341.878,127.156,339.844,125.656,338.344z M112,464H72V344H56v120H16V347.312l16-16l18.344,18.344L56,344l5.656-5.656
|
||||
L51.312,328H77.32l-10.808,10.168L72,344l5.488,5.832l19.072-17.96l15.44,15.44V464z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path d="M72,176H56.264c-22.02,0.044-39.881,17.844-40,39.864l-0.128,40.056c-0.088,26.465,21.294,47.991,47.76,48.08
|
||||
c0.053,0,0.107,0,0.16,0c26.457-0.031,47.9-21.463,47.944-47.92V216C111.974,193.92,94.08,176.026,72,176z M72,192
|
||||
c10.134,0.042,19.15,6.445,22.528,16H80c-10.134-0.042-19.15-6.445-22.528-16H72z M40,198.464v1.464
|
||||
c0.01,2.129-0.841,4.172-2.36,5.664c-1.04,1.012-2.347,1.706-3.768,2C35.181,204.116,37.279,200.992,40,198.464z M96,256.08
|
||||
c-0.044,17.611-14.309,31.876-31.92,31.92c-17.629,0-31.92-14.291-31.92-31.92c0-0.027,0-0.053,0-0.08l0.104-32.064
|
||||
c6.263-0.035,12.26-2.539,16.688-6.968c1.265-1.281,2.383-2.697,3.336-4.224C59.711,219.955,69.651,223.992,80,224h16V256.08z"/>
|
||||
</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>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 134 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 16 KiB |
@@ -1,19 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.12 66.04" fill="#164358">
|
||||
<title>Group 177</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_177" data-name="Group 177">
|
||||
<path id="Path_875" data-name="Path 875" d="M24.78,31.14l-3-.74a3,3,0,0,0-3.12,1.07,9.29,9.29,0,0,0-.94,2l-3.35-6.22a5,5,0,0,0-4.36-2.6H1.5a1.5,1.5,0,0,0,0,3h8.55a2,2,0,0,1,1.72,1l4.73,8.77a1.56,1.56,0,0,0,.22.4l.34.64H1.5a1.5,1.5,0,0,0,0,3h18a4.74,4.74,0,0,1,4.64,4.83v5.85A4.74,4.74,0,0,1,19.52,57H1.5a1.5,1.5,0,0,0,0,3H8.89V61A5.08,5.08,0,0,0,14,66h1.51A5.08,5.08,0,0,0,20.54,61v-1a7.77,7.77,0,0,0,6.62-7.75V46.34a7.77,7.77,0,0,0-6.65-7.76l-.9-1.66c.17-.39.38-.9.67-1.65s.64-1.61.81-2h0l2.95.74a.43.43,0,0,1,.33.42v.43a.43.43,0,0,1-.43.43H22.7a1.5,1.5,0,0,0,0,3h1.24a3.43,3.43,0,0,0,3.43-3.43v-.43A3.44,3.44,0,0,0,24.78,31.14ZM15.48,63H14A2.06,2.06,0,0,1,11.89,61V60h5.66V61A2.08,2.08,0,0,1,15.47,63Z"/>
|
||||
<path id="Path_876" data-name="Path 876" d="M60.38,56.47H54.92a1.5,1.5,0,0,0,0,3h5.46a1.5,1.5,0,0,0,0-3Z"/>
|
||||
<path id="Path_877" data-name="Path 877" d="M19.7,49.26a4.55,4.55,0,1,0-4.54,4.55h0A4.55,4.55,0,0,0,19.7,49.26Zm-6.09,0a1.55,1.55,0,1,1,1.55,1.55h0A1.55,1.55,0,0,1,13.61,49.26Z"/>
|
||||
<path id="Path_878" data-name="Path 878" d="M1.86,50.76H6.32a1.5,1.5,0,0,0,0-3H1.86a1.5,1.5,0,1,0,0,3Z"/>
|
||||
<path id="Path_879" data-name="Path 879" d="M47.45,14.48l4-.78-4.92,5.77a1.51,1.51,0,0,0,0,1.9l1.45,1.83-8.37,3.28a1.5,1.5,0,1,0,1.07,2.8h0l10.25-4a1.51,1.51,0,0,0,.85-2,1.63,1.63,0,0,0-.22-.38l-1.93-2.45,4.59-5.37a2.77,2.77,0,0,0,.54-3,2.54,2.54,0,0,0-2.36-1.63,1.36,1.36,0,0,0-.29,0l-5.19,1a1.5,1.5,0,1,0,.48,3l.09,0Z"/>
|
||||
<path id="Path_880" data-name="Path 880" d="M35.29,14l4.89-5.53-1.09,5.89a1.5,1.5,0,0,0,1.2,1.75,1.27,1.27,0,0,0,.28,0A1.49,1.49,0,0,0,42,14.93L43.37,7.7a2.69,2.69,0,0,0-1.45-3,2.48,2.48,0,0,0-3,.61L33,12a1.5,1.5,0,0,0,2.25,2Z"/>
|
||||
<path id="Path_881" data-name="Path 881" d="M31,9.5a1.5,1.5,0,0,0,.87-1.94h0L29.66,1.69a2.55,2.55,0,0,0-4.92.44l-1.67,8.1L17.92,7.41a2.46,2.46,0,0,0-3,.43,2.8,2.8,0,0,0-.46,3.3l2.6,4.77-2.2,1.8a1.5,1.5,0,0,0-.21,2.11,1.83,1.83,0,0,0,.36.32l7,4.37A1.5,1.5,0,1,0,23.6,22l-5.2-3.26L20,17.44a1.49,1.49,0,0,0,.37-1.88l-2.67-4.88,4.54,2.48a2.47,2.47,0,0,0,2.23.08,2.67,2.67,0,0,0,1.48-1.9l1.49-7.19,1.72,4.48A1.49,1.49,0,0,0,31,9.5Z"/>
|
||||
<path id="Path_882" data-name="Path 882" d="M31.23,28.24l-.58-6.69a1.5,1.5,0,0,0-3,.2.13.13,0,0,1,0,.06l.58,6.69a1.51,1.51,0,0,0,1.5,1.37h.13a1.5,1.5,0,0,0,1.36-1.62Z"/>
|
||||
<path id="Path_883" data-name="Path 883" d="M35.64,18.09,33.1,24a1.5,1.5,0,0,0,2.76,1.19l2.53-5.88a1.5,1.5,0,0,0-2.74-1.23v0Z"/>
|
||||
<path id="Path_884" data-name="Path 884" d="M62.62,27.65c-2.88,0-5.14,1.36-7.32,2.67l-.32.19c-1,.62-2,1.26-3,1.9-1.5,1-3.06,2-4.63,2.8-2.79,1.54-5.85,2.06-9.1,2.61-.86.14-1.72.29-2.66.47a6.69,6.69,0,0,0-5.09,6.48V45a1.38,1.38,0,0,0,0,.7l-.09,6.75a8,8,0,0,0,8,8h.42a6.88,6.88,0,1,0-.45-3,5,5,0,0,1-5-5l.07-5.61h4.07a1.5,1.5,0,0,0,0-3h-3.9a3.65,3.65,0,0,1,2.59-2.59c.84-.16,1.67-.3,2.51-.44,3.35-.57,6.82-1.16,10-2.94,1.65-.91,3.24-1.92,4.78-2.9,1-.62,2-1.25,3-1.85l.33-.2c1.91-1.15,3.72-2.24,5.77-2.24a1.5,1.5,0,1,0,0-3ZM45.25,54.06A3.91,3.91,0,1,1,41.34,58a3.89,3.89,0,0,1,3.91-3.91Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
@@ -1,12 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.76 62.6" fill="#164358">
|
||||
<title>Group 183</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_183" data-name="Group 183">
|
||||
<path id="Path_901" data-name="Path 901" d="M58.29,19.07a3.82,3.82,0,0,0-2.86-4.56L55,14.42l2.73-1.92A2.5,2.5,0,0,0,58.34,9a2.46,2.46,0,0,0-1.59-1h0L15.7.17A9.68,9.68,0,0,0,4.38,7.87L1.92,20.81a6,6,0,0,0,4.78,7l4.65.88a2.46,2.46,0,0,0,1.72-.29l3.81-2.19a7.15,7.15,0,0,0,2.17,3v9.56L11.6,41.44h0L10.3,38.4a4.86,4.86,0,0,0-4.87-3L3,35.62V32.47a1.5,1.5,0,0,0-3,0V61.1a1.5,1.5,0,0,0,3,0V38.63l2.66-.21a1.87,1.87,0,0,1,1.87,1.14l4.76,11.33a1.86,1.86,0,0,1-.56,2.17L6.05,57.63A1.5,1.5,0,0,0,7.89,60l0,0,5.68-4.57a4.89,4.89,0,0,0,1.8-4.2L26,46.68A4,4,0,0,0,28.45,43l.36-14.17a7.3,7.3,0,0,0,2-6.9,1.5,1.5,0,1,0-2.92.68,4.2,4.2,0,0,1,0,1.8,4.33,4.33,0,0,1-8.42.33l10.85-6.25,13.81,2.64a2.55,2.55,0,0,0,1.91-.42l5.55-3.91,3.18.67a.82.82,0,0,1,.53.95l-3.25,8.89a3.75,3.75,0,0,1-4.28,2.42L33.34,26.88a1.5,1.5,0,0,0-.62,2.94h.05l14.48,2.84a7.39,7.39,0,0,0,1.33.12,6.74,6.74,0,0,0,6.35-4.46l3.3-9A.9.9,0,0,0,58.29,19.07ZM23.42,44a1.83,1.83,0,1,1,1.83-1.83h0A1.84,1.84,0,0,1,23.42,44Zm-4.83-1.82a4.79,4.79,0,0,0,1.77,3.69l-5.89,2.51-1.73-4.11ZM23.7,30.9a7.26,7.26,0,0,0,2.07-.31l-.19,7.24a4.48,4.48,0,0,0-3.53-.32V30.69l.24.07a6.61,6.61,0,0,0,1.41.13ZM44.54,18.12,30.76,15.49a2.57,2.57,0,0,0-1.72.29l-17.31,10L7.26,24.9a3,3,0,0,1-2.4-3.53L7.33,8.43a6.67,6.67,0,0,1,7.81-5.31L55,10.72Z"/>
|
||||
<path id="Path_902" data-name="Path 902" d="M20.47,9.73l-5.9-1.12A1.5,1.5,0,0,0,14,11.55H14l5.89,1.11a1.5,1.5,0,1,0,.61-2.93Z"/>
|
||||
<path id="Path_903" data-name="Path 903" d="M61.74,20.49a1.5,1.5,0,0,0-1.9.93l-2.67,7.84a1.5,1.5,0,1,0,2.81,1,.31.31,0,0,0,0-.08l2.68-7.84a1.49,1.49,0,0,0-.94-1.9Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1,19 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71.76 59.77" fill="#164358">
|
||||
<title>Group 170</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_170" data-name="Group 170">
|
||||
<path id="Path_829" data-name="Path 829" d="M70.26,56.77h-2.1V15a4.6,4.6,0,0,0-4.6-4.6H52.82V4.6A4.4,4.4,0,0,0,48.67,0H23.08a4.39,4.39,0,0,0-4.14,4.6v5.82H9A4.6,4.6,0,0,0,4.41,15h0V56.77H1.5a1.5,1.5,0,0,0,0,3H70.26a1.5,1.5,0,0,0,0-3Zm-28,0H37.38V47.51a1.5,1.5,0,0,0-3,0v9.26H29.49V43.6c0-.58.33-1,.56-1H41.7c.23,0,.56.37.56,1ZM7.41,15A1.6,1.6,0,0,1,9,13.42h9.92V53a1.5,1.5,0,0,0,3,0V4.6c0-.87.53-1.6,1.15-1.6H48.67c.63,0,1.15.73,1.15,1.6V53a1.5,1.5,0,0,0,3,0V13.42H63.56a1.6,1.6,0,0,1,1.6,1.6h0V56.77H45.27V43.6a3.79,3.79,0,0,0-3.57-4H30.06a3.77,3.77,0,0,0-3.57,4V56.77H7.41Z"/>
|
||||
<path id="Path_830" data-name="Path 830" d="M57.92,23.36H60.5a1.5,1.5,0,0,0,0-3H57.92a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_831" data-name="Path 831" d="M57.92,32.64H60.5a1.5,1.5,0,0,0,0-3H57.92a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_832" data-name="Path 832" d="M57.92,41.92H60.5a1.5,1.5,0,0,0,0-3H57.92a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_833" data-name="Path 833" d="M57.92,51.2H60.5a1.5,1.5,0,0,0,0-3H57.92a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_834" data-name="Path 834" d="M14.2,20.36H11.62a1.5,1.5,0,1,0,0,3H14.2a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_835" data-name="Path 835" d="M14.2,29.64H11.62a1.5,1.5,0,1,0,0,3H14.2a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_836" data-name="Path 836" d="M14.2,38.92H11.62a1.5,1.5,0,1,0,0,3H14.2a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_837" data-name="Path 837" d="M14.2,48.2H11.62a1.5,1.5,0,1,0,0,3H14.2a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_838" data-name="Path 838" d="M28.41,22.41l2.27,1.66-1,3a2.36,2.36,0,0,0,1.52,3,2.45,2.45,0,0,0,.71.11,2.29,2.29,0,0,0,1.3-.4L36,27.9l2.48,1.7A2.35,2.35,0,0,0,42,26.9l-.94-2.75,2.3-1.73a2.36,2.36,0,0,0,.48-3.29A2.39,2.39,0,0,0,42,18.19H39l-1-3a2.35,2.35,0,0,0-2.22-1.59h0a2.35,2.35,0,0,0-2.22,1.62l-1,2.94H29.8a2.35,2.35,0,0,0-1.39,4.25Zm4.65-1.24h0a2.34,2.34,0,0,0,2.24-1.62L35.8,18l.54,1.59a2.37,2.37,0,0,0,2.22,1.59H40L38.89,22a2.33,2.33,0,0,0-.81,2.64L38.54,26l-1.24-.84a2.32,2.32,0,0,0-2.63,0l-1.53,1,.53-1.64a2.33,2.33,0,0,0-.84-2.62l-1-.76Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1,12 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75.79 44.93" fill="#164358">
|
||||
<title>Group 173</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_173" data-name="Group 173">
|
||||
<path id="Path_851" data-name="Path 851" d="M32.83,35.35H27.65a1.5,1.5,0,0,0,0,3h5.18a1.5,1.5,0,0,0,0-3Z"/>
|
||||
<path id="Path_852" data-name="Path 852" d="M25.18,6.09a1.5,1.5,0,0,0-1.5,1.5V19.38a1.5,1.5,0,0,0,1.5,1.5H40.93a1.5,1.5,0,0,0,0-3h-3.3l.31-.83A1.5,1.5,0,1,0,35.14,16l-.71,1.89H26.68V7.59A1.5,1.5,0,0,0,25.18,6.09Z"/>
|
||||
<path id="Path_853" data-name="Path 853" d="M74.3,38.23H73.07L63.75,22.94a1.5,1.5,0,0,0-1.28-.72H54.75a1.51,1.51,0,0,0-1.32.81l-4.65-1.89v-.45a6.87,6.87,0,0,0-1.2-4L38.85,3a7,7,0,0,0-5.74-3L21.64.12A3.68,3.68,0,0,0,18,3.79V17.44H7.23A7.23,7.23,0,0,0,0,24.67V36.94a1.5,1.5,0,0,0,1.5,1.5H8.57c0,.2.07.4.13.61A8.09,8.09,0,1,0,21,30.15V3.78a.67.67,0,0,1,.66-.66L33.12,3a3.93,3.93,0,0,1,3.23,1.66l8.72,13.69a4,4,0,0,1,.7,2.33l.1,8.35a8.07,8.07,0,1,0,5.78,10,8.15,8.15,0,0,0,.3-2.19,8.06,8.06,0,0,0-3.07-6.33v-.83l4.38,1.77v1.46a8.3,8.3,0,0,0,8.3,8.3H74.29a1.5,1.5,0,0,0,0-3Zm-52.92,0a5.09,5.09,0,0,1-9.79,0,5,5,0,0,1-.19-1.39,5.09,5.09,0,0,1,10.17-.14v.14a5.34,5.34,0,0,1-.19,1.38Zm-4.9-9.46a8.08,8.08,0,0,0-8,6.67H3V24.67a4.23,4.23,0,0,1,4.12-4.22v1.83a1.5,1.5,0,0,0,3,0V20.44h2.17v1.84a1.5,1.5,0,0,0,3,0V20.44H18v8.48a7.86,7.86,0,0,0-1.53-.15Zm32.28,9.46a5.09,5.09,0,0,1-9.78,0,5.42,5.42,0,0,1-.19-1.39,5.08,5.08,0,0,1,10.16,0,5,5,0,0,1-.19,1.39Zm.08-11.79,0-2.05,4.44,1.8v2ZM61.55,38.22a5.3,5.3,0,0,1-3.8-1.61,5.19,5.19,0,0,1-1.5-3.69v-7.7h5.37l7.93,13Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,14 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.77 44.35" fill="#164358">
|
||||
<title>Group 176</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_176" data-name="Group 176">
|
||||
<path id="Path_870" data-name="Path 870" d="M64.49,13.21c-.13-.59-.45-.92-1.81-1.86a1.5,1.5,0,0,0-2,.26L57.81,15a1.78,1.78,0,0,1-1.21.63l-1.14.1a1.79,1.79,0,0,1-1.93-1.63h0l-.06-.71a1.8,1.8,0,0,1,.41-1.3L57,8.36a1.49,1.49,0,0,0,0-2c-1.33-1.49-1.73-1.74-2.33-1.8a11.34,11.34,0,0,0-2.91.11,11,11,0,0,0-5.19,2.38L44.18,2.66A5.06,5.06,0,0,0,39.72,0H18.42A5.06,5.06,0,0,0,14,2.66l-2.8,5.19A14.61,14.61,0,0,0,9.86,5,3.32,3.32,0,0,0,6.43,3.79l-3.54.89A3.81,3.81,0,0,0,0,8.38v.51a3.82,3.82,0,0,0,3.82,3.82H5.3a1.5,1.5,0,1,0,0-3H3.82A.82.82,0,0,1,3,8.89V8.38a.83.83,0,0,1,.62-.8L7.16,6.7a.33.33,0,0,1,.3.08c.19.36.68,1.61,1,2.45s.63,1.59.83,2L7.65,14.35a8,8,0,0,0-6.84,8v6a8,8,0,0,0,7,8v1.08A5.18,5.18,0,0,0,13,42.59h1.57a5.18,5.18,0,0,0,5.18-5.18v-1H26.5a1.5,1.5,0,0,0,0-3H8.64a4.94,4.94,0,0,1-4.83-5v-6a4.93,4.93,0,0,1,4.83-5H39.5a1.5,1.5,0,0,0,0-3H11.1l1-1.8,0,0a1.54,1.54,0,0,0,.39-.76l4.1-7.61A2.07,2.07,0,0,1,18.42,3h21.3a2.07,2.07,0,0,1,1.82,1.09l2.89,5.35A11,11,0,0,0,43.3,19.81L31.15,34.17a9.82,9.82,0,0,0-1.9,2.91,5.31,5.31,0,0,0,1.46,5.86l.14.12a1.49,1.49,0,0,1,.14.12,5.11,5.11,0,0,0,3.3,1.17A5.41,5.41,0,0,0,37,43.62a9.87,9.87,0,0,0,2.55-2.36l12.27-14.6a10.6,10.6,0,0,0,1.78.15,11.87,11.87,0,0,0,4.08-.74A10.9,10.9,0,0,0,64.55,18,11.47,11.47,0,0,0,64.49,13.21ZM16.71,37.41a2.18,2.18,0,0,1-2.18,2.18H13a2.19,2.19,0,0,1-2.18-2.18v-1h5.93Zm20.54,1.93A7.35,7.35,0,0,1,35.51,41a2.37,2.37,0,0,1-2.59-.14L32,42l.88-1.22a.69.69,0,0,0-.13-.11l-.08-.07a2.34,2.34,0,0,1-.57-2.52,7.24,7.24,0,0,1,1.37-2L44.9,22.56a10.83,10.83,0,0,0,3.83,3.12Zm24.35-22a7.88,7.88,0,0,1-5,5.87,8.15,8.15,0,1,1-6-15.14,7.77,7.77,0,0,1,1.65-.46,7.87,7.87,0,0,1,1.38-.12h.15l-2.21,2.62a4.77,4.77,0,0,0-1.11,3.49l.06.71a4.79,4.79,0,0,0,5.18,4.37h0l1.14-.1a4.81,4.81,0,0,0,3.25-1.69L61.74,15a8.72,8.72,0,0,1-.14,2.39Z"/>
|
||||
<path id="Path_871" data-name="Path 871" d="M58.91,31.76H51.76a1.5,1.5,0,1,0,0,3h7.15a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_872" data-name="Path 872" d="M54,37.94H47.77a1.5,1.5,0,0,0,0,3H54a1.5,1.5,0,0,0,0-3Z"/>
|
||||
<path id="Path_873" data-name="Path 873" d="M8.5,25.33a4.64,4.64,0,1,0,4.64-4.64A4.64,4.64,0,0,0,8.5,25.33Zm6.28,0a1.64,1.64,0,1,1-1.64-1.64A1.63,1.63,0,0,1,14.78,25.33Z"/>
|
||||
<path id="Path_874" data-name="Path 874" d="M33.37,25.33a1.5,1.5,0,0,0-1.5-1.5H25.26a1.5,1.5,0,0,0,0,3h6.61A1.5,1.5,0,0,0,33.37,25.33Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,12 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56.59 60.21" fill="#164358">
|
||||
<title>Group 163</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_163" data-name="Group 163">
|
||||
<path id="Path_801" data-name="Path 801" d="M54.62,6.53,45.12.33a1.5,1.5,0,0,0-1.69,2.48l.06,0L53,9a1.32,1.32,0,0,1,.6,1.1v8.35l-1-1A4.9,4.9,0,0,1,51.15,14v-3.5a1.5,1.5,0,0,0-3,0V14a7.86,7.86,0,0,0,2.33,5.6l2.72,2.73a1.66,1.66,0,0,0,.39.26V32.82a1.5,1.5,0,0,0,3,0V10.14A4.29,4.29,0,0,0,54.62,6.53Z"/>
|
||||
<path id="Path_802" data-name="Path 802" d="M55.08,35.49a1.5,1.5,0,0,0-1.5,1.5v5.75a3,3,0,1,1-6,0V21.24a6.38,6.38,0,0,0-6.38-6.37h0v-7A7.93,7.93,0,0,0,33.24,0H14.09A7.94,7.94,0,0,0,6.17,7.91v26a1.5,1.5,0,0,0,3,0V23.56h29V57.21h-29V38.68a1.5,1.5,0,0,0-3,0V57.21H1.5a1.5,1.5,0,0,0,0,3H46.82a1.5,1.5,0,0,0,0-3H41.15V17.87h0a3.38,3.38,0,0,1,3.38,3.38v21.5a6,6,0,0,0,12.05,0V37a1.5,1.5,0,0,0-1.5-1.5ZM9.17,20.56V7.92A4.94,4.94,0,0,1,14.09,3H33.24a4.93,4.93,0,0,1,4.91,4.92V20.56Z"/>
|
||||
<path id="Path_803" data-name="Path 803" d="M29.78,47.68a8.13,8.13,0,0,0,0-11.49L25.09,31.5a1.51,1.51,0,0,0-2.12,0l-4.69,4.69a8.13,8.13,0,1,0,11.5,11.49Zm-9.37-9.37L24,34.68l3.63,3.63a5.13,5.13,0,1,1-7.25,0Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,17 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75.26 69.29" fill="#164358">
|
||||
<title>Group 171</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_171" data-name="Group 171">
|
||||
<path id="Path_839" data-name="Path 839" d="M23.84,36.6H27a1.5,1.5,0,0,0,0-3H23.84a1.5,1.5,0,1,0,0,3Z"/>
|
||||
<path id="Path_840" data-name="Path 840" d="M36,36.6h3.16a1.5,1.5,0,0,0,0-3H36a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_841" data-name="Path 841" d="M48.1,36.6h3.16a1.5,1.5,0,0,0,0-3H48.1a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_842" data-name="Path 842" d="M23.84,45H27a1.5,1.5,0,0,0,0-3H23.84a1.5,1.5,0,1,0,0,3Z"/>
|
||||
<path id="Path_843" data-name="Path 843" d="M36,45h3.16a1.5,1.5,0,0,0,0-3H36a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_844" data-name="Path 844" d="M48.1,45h3.16a1.5,1.5,0,0,0,0-3H48.1a1.5,1.5,0,0,0,0,3Z"/>
|
||||
<path id="Path_845" data-name="Path 845" d="M33.77,20.75a1.5,1.5,0,0,0,1.5-1.5v-4h5v4a1.5,1.5,0,0,0,3,0v-11a1.5,1.5,0,0,0-3,0v4h-5v-4a1.5,1.5,0,0,0-3,0v11A1.51,1.51,0,0,0,33.77,20.75Z"/>
|
||||
<path id="Path_846" data-name="Path 846" d="M73.76,66.29H71V32.24a5,5,0,0,0-5.11-4.76h-4V17.37a5,5,0,0,0-5.12-4.76H52.07V5.68A5.7,5.7,0,0,0,46.38,0H29.15a5.69,5.69,0,0,0-5.68,5.68v6.93H18.54a5,5,0,0,0-5.12,4.76V27.49H9.08A5,5,0,0,0,4,32.24V66.29H1.5a1.5,1.5,0,0,0,0,3H73.76a1.5,1.5,0,0,0,0-3ZM26.47,5.69A2.7,2.7,0,0,1,29.15,3H46.38a2.7,2.7,0,0,1,2.69,2.69V21.81a2.69,2.69,0,0,1-2.69,2.68H29.15a2.68,2.68,0,0,1-2.68-2.68ZM7,32.24a2,2,0,0,1,2.12-1.75h4.34V38.2a1.5,1.5,0,0,0,3,0V17.37a2,2,0,0,1,2.12-1.76h4.93V21.8a5.7,5.7,0,0,0,5.68,5.69H46.38a5.71,5.71,0,0,0,5.69-5.69V15.61h4.74a2,2,0,0,1,2.12,1.76V28.53a1.3,1.3,0,0,0,0,.91V50.92a1.5,1.5,0,0,0,3,0V30.49h4A2,2,0,0,1,68,32.24V66.29H61.93v-9a1.5,1.5,0,0,0-3,0v9H47.47V55.62a3.69,3.69,0,0,0-3.69-3.69H31.46a3.69,3.69,0,0,0-3.68,3.69V66.29H16.32V44.51a1.5,1.5,0,0,0-3,0V66.29H7Zm30.66,25a1.5,1.5,0,0,0-1.5,1.5v7.53H30.78V55.62a.67.67,0,0,1,.68-.68H43.78a.68.68,0,0,1,.69.68h0V66.29H39.12V58.76a1.48,1.48,0,0,0-1.49-1.5Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.17 61.23" fill="#164358"><title>Asset 113</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_6" data-name="Layer 6"><path d="M60.67,39.53a1.5,1.5,0,0,0,1.5-1.5V33.69a3.83,3.83,0,0,0-3.82-3.82H57a16.24,16.24,0,0,0,.58-4.57,13.06,13.06,0,0,0-1.15-5.53c-.15-.32-.32-.63-.48-.9a21.3,21.3,0,0,0-6.11-6.4c-.5-.38-7.4-5.88-11.43-9.1V1.5a1.5,1.5,0,0,0-3,0V3.38l-8.79,7.05c-1.05.82-2,1.53-2.65,2a21.36,21.36,0,0,0-6.09,6.37,10.28,10.28,0,0,0-.49.93,12.87,12.87,0,0,0-1.16,5.5,16.49,16.49,0,0,0,.58,4.6H15.31a4.89,4.89,0,0,0-1.46.34V20.16c0-1.84,0-3.67,0-5.51,0-1.54,0-3.07,0-4.61A9.22,9.22,0,0,0,11.77,4.1,22.83,22.83,0,0,0,7.51.28,1.5,1.5,0,0,0,5.69.34C3,2.5.5,5,.09,8.21A13.65,13.65,0,0,0,0,10.4c0,1.7,0,3.41,0,5.12V57.21a4,4,0,0,0,4,4H58.14a4,4,0,0,0,4-4V42.29a1.5,1.5,0,0,0-3,0V57.21a1,1,0,0,1-1,1h-12c0-.9,0-1.44,0-2,0-.74,0-1.47,0-3.06V52.8a16.64,16.64,0,0,0-1-6.81c-1.45-3.34-4.56-5.27-7.11-6.58a12,12,0,0,0-1.4-.54,1.49,1.49,0,0,0-1,0c-.22.09-1.38.54-1.87.8a19.93,19.93,0,0,0-3.18,2A11.27,11.27,0,0,0,27.3,46a17.87,17.87,0,0,0-1,7.21c0,1.6,0,2.32,0,3,0,.53,0,1.06,0,1.93H13.85V53.82a1.5,1.5,0,0,0-3,0v4.41H4.08a1,1,0,0,1-1-1V32.87h7.79V49.19a1.5,1.5,0,0,0,3,0V34c.7-.93,1.11-1.13,1.62-1.16H58.35a.82.82,0,0,1,.82.82V38A1.5,1.5,0,0,0,60.67,39.53ZM29.36,56.26c0-.73,0-1.44,0-3a15.67,15.67,0,0,1,.74-6,8.32,8.32,0,0,1,2.49-3.13,15.62,15.62,0,0,1,2.7-1.72c.18-.1.64-.29,1.06-.47l.44.18c2.1,1.08,4.66,2.64,5.73,5.1a14.44,14.44,0,0,1,.75,5.62v.36c0,1.58,0,2.31,0,3,0,.56,0,1.11,0,2H29.38C29.37,57.34,29.36,56.8,29.36,56.26ZM3.07,8.58C3.31,6.68,4.86,5,6.68,3.41A18,18,0,0,1,9.48,6a6.22,6.22,0,0,1,1.41,4c0,.59,0,1.17,0,1.76H3c0-.49,0-1,0-1.47A10.28,10.28,0,0,1,3.07,8.58Zm0,21.29V15.52c0-.24,0-.48,0-.72h7.82c0,1.78,0,3.57,0,5.36v9.71Zm16.85,0-.05-.19a13.52,13.52,0,0,1-.64-4.38v0a213.16,213.16,0,0,1,34.46,0l.82.07h.07a13.79,13.79,0,0,1-.65,4.37c0,.05,0,.09,0,.14Zm.57-9.55a18.46,18.46,0,0,1,5.29-5.46c.68-.51,1.62-1.24,2.7-2.08l8.32-6.67H37c2.84,2.26,10.45,8.32,11,8.75a18.4,18.4,0,0,1,5.31,5.49,7.73,7.73,0,0,1,.37.69,8.13,8.13,0,0,1,.46,1.28l-.23,0a215.56,215.56,0,0,0-34.28-.07,8.7,8.7,0,0,1,.44-1.18C20.2,20.81,20.33,20.58,20.48,20.32Z"/><path d="M48,37.56a1.5,1.5,0,0,0,0,3h6.46a1.5,1.5,0,1,0,0-3Z"/><path d="M18.22,37.56a1.5,1.5,0,0,0,0,3h6.2a1.5,1.5,0,0,0,0-3Z"/></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1,29 +0,0 @@
|
||||
<?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 fill="#164358" 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 512.005 512.005" style="enable-background:new 0 0 512.005 512.005;" xml:space="preserve" width="512" height="512">
|
||||
<g id="XMLID_1713_">
|
||||
<g id="XMLID_995_">
|
||||
<path id="XMLID_996_" d="M226.985,338.695c-2.64,0-5.21,1.07-7.08,2.931c-1.86,1.859-2.92,4.439-2.92,7.069s1.06,5.21,2.92,7.07 c1.87,1.86,4.44,2.93,7.08,2.93c2.63,0,5.2-1.069,7.07-2.93c1.86-1.86,2.92-4.44,2.92-7.07s-1.06-5.21-2.92-7.069 C232.184,339.766,229.615,338.695,226.985,338.695z"/>
|
||||
<path id="XMLID_1580_" d="M96.399,287.431c-6.969-4.88-15.423-6.756-23.801-5.276c-8.379,1.477-15.682,6.129-20.562,13.099 s-6.754,15.423-5.277,23.802s6.129,15.682,13.1,20.562c5.416,3.792,11.727,5.769,18.203,5.769c1.858,0,3.73-0.162,5.599-0.492 c17.297-3.049,28.889-19.603,25.839-36.9C108.021,299.613,103.369,292.311,96.399,287.431z M80.187,325.197 c-3.117,0.548-6.263-0.147-8.857-1.964c-2.594-1.816-4.325-4.533-4.875-7.651s0.147-6.264,1.964-8.857 c1.816-2.594,4.533-4.325,7.651-4.875c0.695-0.122,1.392-0.183,2.083-0.183c2.41,0,4.759,0.735,6.774,2.146 c2.594,1.816,4.325,4.533,4.875,7.651C90.937,317.901,86.623,324.062,80.187,325.197z"/>
|
||||
<path id="XMLID_1583_" d="M349.309,233.362c-8.379,1.477-15.681,6.129-20.562,13.099s-6.754,15.423-5.277,23.802 c1.478,8.38,6.129,15.682,13.099,20.563c5.416,3.792,11.727,5.769,18.203,5.769c1.858,0,3.731-0.162,5.6-0.492 c17.296-3.051,28.887-19.604,25.838-36.901c0,0,0,0,0-0.001C383.16,241.904,366.609,230.307,349.309,233.362z M356.899,276.406 c-3.118,0.547-6.264-0.148-8.857-1.964c-2.594-1.816-4.325-4.534-4.875-7.652s0.147-6.264,1.964-8.857 c1.816-2.594,4.533-4.325,7.651-4.875c0.693-0.122,1.383-0.181,2.064-0.181c5.641,0,10.656,4.053,11.668,9.796 C367.649,269.109,363.335,275.271,356.899,276.406z"/>
|
||||
<path id="XMLID_1584_" d="M255.425,148.945c2.63,0,5.21-1.069,7.07-2.939c1.86-1.86,2.93-4.431,2.93-7.07 c0-2.63-1.07-5.2-2.93-7.07c-1.86-1.859-4.44-2.93-7.07-2.93s-5.21,1.07-7.07,2.93c-1.86,1.86-2.93,4.44-2.93,7.07 c0,2.64,1.07,5.21,2.93,7.07C250.215,147.876,252.795,148.945,255.425,148.945z"/>
|
||||
<path id="XMLID_1587_" d="M270.616,304.943c5.398-0.952,9.996-4.26,12.615-9.074c2.62-4.815,2.898-10.473,0.765-15.523 l-8.65-20.469c-3.269-7.735-11.329-12.123-19.598-10.661l-89.828,15.839c-8.271,1.458-14.345,8.334-14.77,16.721l-1.127,22.194 c-0.278,5.475,1.919,10.695,6.028,14.324c3.31,2.924,7.492,4.488,11.815,4.488c1.043,0,2.095-0.091,3.144-0.276L270.616,304.943 C270.616,304.943,270.616,304.943,270.616,304.943z M170.131,302.353l0.909-17.893l86.535-15.258l6.974,16.503L170.131,302.353z"/>
|
||||
<path id="XMLID_1590_" d="M502.005,325.381h-27c-1.938,0-3.833,0.563-5.457,1.62l-38.476,25.056 c-4.31,0.951-15.813,3.493-27.329,6.048c-4.255,0.943-8.5,1.886-12.397,2.754c-0.065-0.701-0.151-1.405-0.276-2.111l-4.93-27.959 l12.57-2.217c15.955-2.813,26.647-18.083,23.833-34.038l-10.323-58.544c-3.997-22.668-22.163-39.336-43.776-42.528l-5.671-12.898 l6.765-1.193c16.291-2.872,27.208-18.463,24.335-34.754c-2.873-16.29-18.458-27.21-34.754-24.334l-21.204,3.739l-7.283-16.565 c-9.611-21.86-32.748-34.231-56.264-30.085L89.648,109.943c-23.488,4.141-40.997,23.653-42.577,47.453l-1.203,18.121 l-21.069,3.715c-7.892,1.391-14.769,5.772-19.365,12.336c-4.596,6.564-6.361,14.525-4.97,22.417s5.773,14.769,12.337,19.365 c5.101,3.571,11.044,5.434,17.144,5.434c1.75,0,3.513-0.153,5.273-0.464l6.557-1.156l-0.937,14.106 c-19.149,10.417-30.468,32.25-26.479,54.873l10.323,58.544c2.51,14.236,14.938,24.283,28.922,24.282 c1.687,0,3.397-0.146,5.115-0.449l12.57-2.216l4.93,27.959c2.188,12.409,13.02,21.165,25.208,21.165 c1.471,0,2.962-0.128,4.459-0.392l18.447-3.253c0,0,0,0,0,0c6.737-1.188,12.608-4.928,16.532-10.531 c3.923-5.604,5.43-12.4,4.242-19.137l-4.93-27.959l48.983-8.637c5.439-0.959,9.071-6.146,8.112-11.584 c-0.958-5.438-6.145-9.071-11.584-8.111L55.248,368.824c-5.098,0.908-9.971-2.515-10.869-7.609l-10.323-58.544 c-3.078-17.457,8.62-34.163,26.076-37.241l295.154-52.044c17.458-3.078,34.162,8.62,37.24,26.076l10.323,58.544 c0.898,5.095-2.516,9.971-7.61,10.87l-130.761,23.057c-5.439,0.959-9.071,6.146-8.112,11.584 c0.959,5.439,6.154,9.072,11.584,8.111l49.302-8.693l4.93,27.959c1.188,6.737,4.928,12.607,10.532,16.531 c4.354,3.049,9.428,4.639,14.635,4.639c0.363,0,0.728-0.032,1.092-0.048c-2.671,3.117-5.666,6.614-9.067,10.584 c-5.114,5.968-6.25,14.111-2.965,21.251c3.285,7.142,10.21,11.578,18.072,11.578h147.525c5.523,0,10-4.478,10-10v-90.048 C512.005,329.858,507.528,325.381,502.005,325.381z M120.483,377.631l4.93,27.958c0.26,1.476-0.07,2.965-0.929,4.192 s-2.146,2.047-3.621,2.308l0-0.001l-18.448,3.253c-3.048,0.534-5.961-1.504-6.498-4.55l-4.93-27.96l4.319-0.761L120.483,377.631z M362.594,139.978c5.434-0.952,10.627,2.683,11.584,8.111c0.958,5.431-2.681,10.628-8.111,11.585l-11.578,2.042l-8.286-18.848 L362.594,139.978z M277.843,97.066c14.414-2.543,28.592,5.041,34.482,18.438l34.742,79.022l-135.031,23.81l28.828-41.171 c3.168-4.523,2.068-10.759-2.456-13.927c-4.525-3.169-10.759-2.068-13.927,2.456l-40.299,57.553l-64.009,11.287l87.606-125.114 L277.843,97.066z M93.121,129.639l86.805-15.306L92.32,239.446l-31.015,5.469l5.723-86.194 C67.996,144.136,78.726,132.177,93.121,129.639z M31.744,218.625c-2.632,0.459-5.285-0.125-7.472-1.657 c-2.188-1.532-3.648-3.824-4.112-6.455c-0.958-5.431,2.681-10.627,8.112-11.585l16.232-2.862l-1.364,20.55L31.744,218.625z M344.185,371.042c-1.228-0.859-2.047-2.146-2.307-3.621l-4.93-27.959l29.496-5.2l4.93,27.958c0.537,3.046-1.504,5.962-4.55,6.499 l-18.447,3.253C346.899,372.229,345.412,371.901,344.185,371.042z M492.005,415.429H354.718 c13.731-16.027,23.415-27.327,27.439-32.018c8.949-2.03,36.206-8.068,55.003-12.218c1.175-0.259,2.293-0.729,3.301-1.385 l37.512-24.428h14.031V415.429z"/>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.9 KiB |
@@ -1 +0,0 @@
|
||||
<svg fill="#164358" id="Layer_1" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg" data-name="Layer 1"><path d="m36.906 91.393v273.35a26.029 26.029 0 0 0 26 26h187.094v28.234a28.139 28.139 0 1 0 12 0v-28.234h187.094a26.029 26.029 0 0 0 26-26v-273.35a26.947 26.947 0 0 0 -.041-53.893h-438.106a26.947 26.947 0 0 0 -.041 53.893zm235.233 355.021a16.139 16.139 0 1 1 -16.139-16.086 16.131 16.131 0 0 1 16.139 16.086zm176.955-67.671h-386.188a14.015 14.015 0 0 1 -14-14v-273.349h414.188v273.349a14.015 14.015 0 0 1 -14 14zm-412.147-329.243h438.106a14.947 14.947 0 0 1 0 29.894h-438.106a14.947 14.947 0 0 1 0-29.894z"/><path d="m410.508 350.21h-14.2v-194.982a8.009 8.009 0 0 0 -8-8h-37.98a8.009 8.009 0 0 0 -8 8v194.982h-18.579v-174.982a8.009 8.009 0 0 0 -8-8h-37.979a8.009 8.009 0 0 0 -8 8v174.982h-18.58v-154.982a8.009 8.009 0 0 0 -8-8h-37.979a8.009 8.009 0 0 0 -8 8v154.982h-18.579v-132.982a8.009 8.009 0 0 0 -8-8h-37.979a8.009 8.009 0 0 0 -8 8v132.982h-29.979v-231.956a6 6 0 1 0 -12 0v243.956h327.834a6 6 0 0 0 0-12zm-56.18-190.982h29.979v190.982h-29.979zm-72.558 20h29.979v170.982h-29.979zm-72.559 20h29.979v150.982h-29.979zm-72.558 22h29.979v128.982h-29.979z"/><path d="m125.062 192.533h43.714a7.958 7.958 0 0 0 3.022-.593l159.302-64.987h64.982a6 6 0 0 0 0-12h-65.764a7.962 7.962 0 0 0 -3.022.593l-159.3 64.987h-42.934a6 6 0 1 0 0 12z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.8 61.84" fill="#164358"><title>Asset 105</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_6" data-name="Layer 6"><path d="M44.19,19.74a1.53,1.53,0,0,0,1.06-.44l5.56-5.57a4.09,4.09,0,0,0,1.56.3,4.22,4.22,0,0,0,3-1.25L59.68,8.5a1.52,1.52,0,0,0,.44-1.06,1.5,1.5,0,0,0-.44-1.06L55.74,2.44a1.51,1.51,0,0,0-2.12,0L49.34,6.72a4.27,4.27,0,0,0-1.26,3,4.33,4.33,0,0,0,.5,2l-5.46,5.46a1.51,1.51,0,0,0,0,2.12A1.53,1.53,0,0,0,44.19,19.74Zm7.27-10.9,3.22-3.22L56.5,7.44l-3.23,3.22a1.28,1.28,0,0,1-1.81,0,1.28,1.28,0,0,1,0-1.82Z"/><path d="M64.76,46.67A12.25,12.25,0,0,0,53.38,35.5a12.11,12.11,0,0,0-4.45.55L40.61,27.7a1.5,1.5,0,1,0-2.12,2.11l7.56,7.59A12.37,12.37,0,0,0,43.1,40,13,13,0,0,0,42,41.61l-9.55-9.53,9.46-9.45a1.5,1.5,0,1,0-2.13-2.12l-3.18,3.18-8.84-8.86a12.68,12.68,0,0,0-.19-6.08A12,12,0,0,0,19.35.49,12.55,12.55,0,0,0,14.16.12c-.57.07-.92.31-2.13,1.77a1.49,1.49,0,0,0,.09,2l3.5,3.49a2.18,2.18,0,0,1,.63,1.53V10.2a2.18,2.18,0,0,1-.63,1.52,2.14,2.14,0,0,1-1.53.63H13.3a2.1,2.1,0,0,1-1.52-.63L7.93,7.87a1.51,1.51,0,0,0-2-.13c-1.82,1.38-2,1.74-2.14,2.3A12.22,12.22,0,0,0,15.05,24.4l.77,0a12.2,12.2,0,0,0,4-.69l8.36,8.34-5.43,5.44-3.33-3.33a4.16,4.16,0,0,0-5.88,0l-1.2,1.21a4.17,4.17,0,0,0-1.15,3.71h0l-8.78,8.5A8.33,8.33,0,1,0,14.22,59.4l6.34-6.35a1.5,1.5,0,1,0-2.12-2.12L12.1,57.28A5.33,5.33,0,0,1,3,53.51a5.28,5.28,0,0,1,1.54-3.75l8.29-8,7.85,7.84a4.15,4.15,0,0,0,5.88,0l1.21-1.2a4.16,4.16,0,0,0,0-5.88l-2.86-2.86,5.43-5.44L40.78,44.62a12.63,12.63,0,0,0,.07,6.54,12,12,0,0,0,8.23,8.26,13.25,13.25,0,0,0,3.5.49,11.9,11.9,0,0,0,1.69-.12c.57-.08.92-.32,2.13-1.77a1.49,1.49,0,0,0-.09-2l-3.5-3.49A2.18,2.18,0,0,1,52.18,51V49.71a2.18,2.18,0,0,1,.63-1.52,2.14,2.14,0,0,1,1.53-.63h.79a2.16,2.16,0,0,1,1.52.63L60.5,52a1.5,1.5,0,0,0,2,.14c1.82-1.38,2-1.74,2.14-2.31A12.13,12.13,0,0,0,64.76,46.67Zm-39.11-.42-1.21,1.21a1.16,1.16,0,0,1-1.64,0l-8.3-8.31a1.15,1.15,0,0,1,0-1.63l1.21-1.21a1.15,1.15,0,0,1,1.63,0l8.31,8.31A1.15,1.15,0,0,1,25.65,46.25ZM15.24,21.41A9.23,9.23,0,0,1,6.66,13a8.91,8.91,0,0,1,0-2l0-.05,2.9,2.9a5.07,5.07,0,0,0,3.64,1.51h.79a5.16,5.16,0,0,0,5.16-5.15V8.93a5.14,5.14,0,0,0-1.51-3.65L15.46,3a9.92,9.92,0,0,1,3.08.37,8.94,8.94,0,0,1,6.15,6.17,9.24,9.24,0,0,1-9.45,11.86Zm7.44.9a12.06,12.06,0,0,0,2.65-2.4,12.52,12.52,0,0,0,1.29-2l7.87,7.89L30.34,30Zm39,26.61a.1.1,0,0,1,0,0l-2.9-2.89a5.07,5.07,0,0,0-3.64-1.51h-.79a5.16,5.16,0,0,0-5.16,5.15V51a5.15,5.15,0,0,0,1.51,3.65L53,56.9a9.89,9.89,0,0,1-3.08-.37,8.91,8.91,0,0,1-6.14-6.17,9.23,9.23,0,0,1,8.86-11.88,5.62,5.62,0,0,1,.58,0,9.23,9.23,0,0,1,8.58,8.41A9,9,0,0,1,61.72,48.92Z"/><path d="M12.87,45.67a1.49,1.49,0,0,0-2.12,0L5.66,50.76a1.5,1.5,0,0,0,1.06,2.56,1.49,1.49,0,0,0,1.06-.44l5.09-5.09A1.49,1.49,0,0,0,12.87,45.67Z"/><path d="M11.13,55.5a1.5,1.5,0,0,0,1.06-.43L17.28,50a1.49,1.49,0,0,0,0-2.12,1.51,1.51,0,0,0-2.12,0l-5.09,5.09a1.5,1.5,0,0,0,0,2.13A1.48,1.48,0,0,0,11.13,55.5Z"/></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.9 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62.7 62.42" fill="#164358"><title>Asset 104</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_6" data-name="Layer 6"><path d="M57.38,28.81A5.32,5.32,0,0,0,62.7,23.5v-5a5.32,5.32,0,0,0-5.32-5.31H49.05V10.46a5.35,5.35,0,1,0-3,0v2.64H17.66V10.56a5.37,5.37,0,1,0-3-.15v2.74H5.31A5.31,5.31,0,0,0,0,18.46v5a5.31,5.31,0,0,0,5.31,5.31h9.35v3.07H5.31A5.31,5.31,0,0,0,0,37.19v5a5.31,5.31,0,0,0,5.31,5.31h9.35v6.55h-3.8A2.67,2.67,0,0,0,8.2,56.75v2.66H1.5a1.5,1.5,0,0,0,0,3H61.2a1.5,1.5,0,0,0,0-3H55.42v-3a2.33,2.33,0,0,0-2.33-2.33H49V47.54h8.41a5.32,5.32,0,0,0,5.32-5.31v-5a5.32,5.32,0,0,0-5.32-5.31H49.05V28.81ZM45.11,5.36a2.36,2.36,0,1,1,2.36,2.36A2.36,2.36,0,0,1,45.11,5.36ZM16.41,3a2.36,2.36,0,1,1-2.36,2.36A2.36,2.36,0,0,1,16.41,3Zm9.14,22.81-8.91-9.66h8.21l8.92,9.66Zm12.3,0-8.92-9.66h8.35l8.91,9.66Zm12.42,0-8.91-9.66h7.71l8.85,9.59a1.9,1.9,0,0,1-.54.07Zm9.43-7.35v4.79l-6.55-7.1h4.23A2.32,2.32,0,0,1,59.7,18.46ZM12.55,16.15l8.92,9.66h-7.9L4.73,16.23a2.25,2.25,0,0,1,.58-.08ZM3,23.5V18.78l6.49,7H5.31A2.31,2.31,0,0,1,3,23.5ZM37.28,34.88l8.91,9.66H37.85l-8.92-9.66Zm-12.43,0,8.92,9.66H25.55l-8.92-9.66Zm-12.3,0,8.92,9.66h-7.9L4.73,35a2.25,2.25,0,0,1,.58-.08ZM3,42.23V37.51l6.49,7H5.31A2.32,2.32,0,0,1,3,42.23Zm8.2,14.86H21v2.32H11.2Zm41.22,2.32H42.67V57.09h9.75ZM46,54.09H42a2.34,2.34,0,0,0-2.33,2.33v3H24V56.75a2.67,2.67,0,0,0-2.67-2.66H17.66V47.54H46Zm4.3-9.55-8.91-9.66h7.71l8.85,9.59a2.35,2.35,0,0,1-.54.07Zm9.43-7.35V42l-6.55-7.1h4.23A2.32,2.32,0,0,1,59.7,37.19ZM46.05,31.88H17.66V28.81H46.05Z"/></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.63 59.25" fill="#164358"><title>Asset 101</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_6" data-name="Layer 6"><path d="M49.62,50.45l-6.12-42A8.6,8.6,0,0,0,34.91,0H15.08A8.59,8.59,0,0,0,6.5,8.46L0,50.44a1.64,1.64,0,0,0,0,.23,8.59,8.59,0,0,0,8.58,8.58H41.05a8.59,8.59,0,0,0,8.58-8.58A1.55,1.55,0,0,0,49.62,50.45Zm-8.57,5.8H26.23V48.41a1.5,1.5,0,0,0-3,0v7.84H8.58A5.59,5.59,0,0,1,3,50.78l6.48-42a1.64,1.64,0,0,0,0-.23A5.58,5.58,0,0,1,15.08,3H34.91A5.59,5.59,0,0,1,40.5,8.58a1.55,1.55,0,0,0,0,.22l6.12,42A5.59,5.59,0,0,1,41.05,56.25Z"/><path d="M24.73,4.88a1.5,1.5,0,0,0-1.5,1.5v5.76a1.5,1.5,0,1,0,3,0V6.38A1.5,1.5,0,0,0,24.73,4.88Z"/><path d="M24.73,33.47a1.5,1.5,0,0,0-1.5,1.5V41.4a1.5,1.5,0,0,0,3,0V35A1.5,1.5,0,0,0,24.73,33.47Z"/><path d="M24.73,19.67a1.5,1.5,0,0,0-1.5,1.5v5.1a1.5,1.5,0,0,0,3,0v-5.1A1.5,1.5,0,0,0,24.73,19.67Z"/><path d="M13.89,35.7a5.41,5.41,0,0,0-5.4,5.4v6a5.4,5.4,0,0,0,10.8,0v-6A5.4,5.4,0,0,0,13.89,35.7Zm2.4,11.38a2.4,2.4,0,1,1-4.8,0v-6a2.4,2.4,0,0,1,4.8,0Z"/><path d="M34.3,21.41a4.92,4.92,0,0,0-4.91,4.92v5.23a4.92,4.92,0,0,0,9.83,0V26.33A4.93,4.93,0,0,0,34.3,21.41Zm1.92,10.15a1.92,1.92,0,0,1-3.83,0V26.33a1.92,1.92,0,1,1,3.83,0Z"/><path d="M15.53,10.16a4.92,4.92,0,0,0-4.91,4.92v5.23a4.92,4.92,0,0,0,9.83,0V15.08A4.93,4.93,0,0,0,15.53,10.16Zm1.92,10.15a1.92,1.92,0,0,1-3.83,0V15.08a1.92,1.92,0,1,1,3.83,0Z"/></g></g></svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,15 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 63.72 64.67" fill="#164358">
|
||||
<title>Group 169</title>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="Layer_6" data-name="Layer 6">
|
||||
<g id="Group_169" data-name="Group 169">
|
||||
<path id="Path_823" data-name="Path 823" d="M62.88,15.15,32.51.15a1.55,1.55,0,0,0-1.33,0L.83,15.15A1.51,1.51,0,0,0,0,16.5v6.88a1.5,1.5,0,0,0,1.5,1.5H3.38V58.76a5.77,5.77,0,0,0,5.78,5.77h4a1.4,1.4,0,0,0,1.23,0H54.24A5.77,5.77,0,0,0,60,58.76V24.88h2.2a1.5,1.5,0,0,0,1.5-1.5V16.5A1.52,1.52,0,0,0,62.88,15.15ZM48.46,61.53H15.25V28.22a3.31,3.31,0,0,1,3.31-3.3h26.6a3.32,3.32,0,0,1,3.31,3.3ZM60.71,21.88H58.52a1.5,1.5,0,0,0-1.5,1.5V58.76a2.77,2.77,0,0,1-2.78,2.77H51.46V28.22a6.3,6.3,0,0,0-6.31-6.3H18.55a6.3,6.3,0,0,0-6.3,6.3V61.53H9.15a2.77,2.77,0,0,1-2.78-2.77V23.38a1.5,1.5,0,0,0-1.5-1.5H3V17.43L31.84,3.17,60.71,17.43Z"/>
|
||||
<path id="Path_824" data-name="Path 824" d="M44,29.76H19.73a1.5,1.5,0,0,0,0,3H44a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_825" data-name="Path 825" d="M44,37.82H19.73a1.5,1.5,0,1,0,0,3H44a1.5,1.5,0,0,0,0-3Z"/>
|
||||
<path id="Path_826" data-name="Path 826" d="M44,45.89H19.73a1.5,1.5,0,0,0,0,3H44a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_827" data-name="Path 827" d="M44,54H19.73a1.5,1.5,0,0,0,0,3H44a1.5,1.5,0,1,0,0-3Z"/>
|
||||
<path id="Path_828" data-name="Path 828" d="M25.07,14.94a1.5,1.5,0,0,0,1.5,1.5H37.14a1.5,1.5,0,0,0,0-3H26.58a1.51,1.51,0,0,0-1.51,1.5Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,33 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg viewBox="0 0 34 33" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#164358">
|
||||
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>Group 90</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1">
|
||||
<g id="map-layer-selected" transform="translate(-213.000000, -282.000000)">
|
||||
<g id="Layers" transform="translate(0.000000, 170.000000)">
|
||||
<g id="Group-3" transform="translate(205.333333, 107.000000)">
|
||||
<g id="وضعیت-آب-و-هوا" transform="translate(3.000000, 0.000000)">
|
||||
<g id="ic_weather">
|
||||
<g id="Group-90" transform="translate(4.000000, 5.000000)">
|
||||
<path d="M29.1917157,13.7757231 C28.8403686,13.7760675 28.5484265,13.5021799 28.5227995,13.1481745 C28.4971726,12.7941692 28.7465651,12.4802855 29.0942234,12.4289846 C30.3802183,12.2365692 31.4058985,11.3665538 31.9350711,10.6166923 C32.1489033,10.3251395 32.3104862,9.99797194 32.4124822,9.65004615 C30.7670051,9.61890769 29.8299391,9.05570769 29.5413147,8.84992308 C28.5838122,8.40992308 27.1224315,7.02663077 27.3396954,4.50746154 C24.8559848,5.1304 24.4167665,7.68713846 24.3976701,7.80661538 C24.3595179,8.04543369 24.1981493,8.24554821 23.9743502,8.33157775 C23.7505511,8.41760729 23.498322,8.3764819 23.3126751,8.22369314 C23.1270282,8.07090437 23.0361676,7.82966446 23.0743198,7.59084615 C23.3125228,6.10161538 24.6712183,3.23061538 28.1075736,3.02923077 C28.3187884,3.01684996 28.523384,3.10597483 28.6594595,3.26964055 C28.7955351,3.43330627 28.8471038,3.65228448 28.7985635,3.86032308 C28.1209746,6.76313846 30.0498832,7.59930769 30.1322995,7.63416923 C30.1930784,7.65941729 30.2498128,7.69363601 30.3006497,7.73570769 C30.329797,7.75821538 31.2073959,8.41889231 33.062599,8.27910769 C33.4030458,8.25535267 33.7073808,8.4923216 33.7713452,8.83096923 C33.9138985,9.60943077 33.6490609,10.5232769 33.0252437,11.4049692 C32.140691,12.6635129 30.7965235,13.5144568 29.2897107,13.7698 C29.2572277,13.7741374 29.2244788,13.7761168 29.1917157,13.7757231 Z" id="Path_439"></path>
|
||||
<path d="M13.2708071,15.3878154 C12.9007483,15.3878154 12.6007563,15.0847466 12.6007563,14.7108923 C12.6018397,10.776946 15.4859721,7.45172869 19.3461034,6.93394525 C23.2062347,6.4161618 26.8493412,8.86583996 27.8665228,12.6632 C27.9288829,12.8966978 27.8632011,13.1460686 27.694219,13.3173768 C27.525237,13.488685 27.2786271,13.5559048 27.047285,13.4937152 C26.8159429,13.4315257 26.6350149,13.2493747 26.5726548,13.0158769 C25.7304607,9.87397082 22.7157951,7.84747305 19.5218436,8.27622907 C16.3278921,8.70498509 13.9416694,11.4564981 13.9408579,14.7115692 C13.9404881,15.0851591 13.6406044,15.3878156 13.2708071,15.3878154 Z" id="Path_440"></path>
|
||||
<path d="M27.3068629,24.3580615 L13.3924213,24.3580615 C10.5911686,24.3580615 8.32030457,22.0639066 8.32030457,19.2339231 C8.32030457,16.4039395 10.5911686,14.1097846 13.3924213,14.1097846 L14.8181218,14.1097846 C15.1881806,14.1097846 15.4881726,14.4128534 15.4881726,14.7867077 C15.4881726,15.160562 15.1881806,15.4636308 14.8181218,15.4636308 L13.3924213,15.4636308 C11.3312862,15.4636308 9.66040609,17.1516481 9.66040609,19.2339231 C9.66040609,21.316198 11.3312862,23.0042154 13.3924213,23.0042154 L27.3068629,23.0042154 C29.8937667,22.9886194 31.9827162,20.8656134 31.9827162,18.2521308 C31.9827162,15.6386481 29.8937667,13.5156421 27.3068629,13.5000462 C26.9368041,13.5000462 26.6368122,13.1969774 26.6368122,12.8231231 C26.6368122,12.4492688 26.9368041,12.1462 27.3068629,12.1462 C30.6324205,12.1638873 33.3190694,14.8924183 33.3190694,18.2521308 C33.3190694,21.6118432 30.6324205,24.3403742 27.3068629,24.3580615 Z" id="Path_441"></path>
|
||||
<path d="M10.2971218,7.13172308 C10.0885046,7.1318482 9.89173214,7.03380201 9.76485037,6.86650711 C9.6379686,6.69921221 9.5954558,6.48175841 9.64985279,6.27829231 C10.5621987,2.87302799 13.5123426,0.427386787 16.9962882,0.188167176 C20.4802339,-0.0510524341 23.7308015,1.96882674 25.0908376,5.21806154 C25.2350217,5.56238134 25.0756135,5.95959087 24.7347893,6.10525385 C24.3939652,6.25091682 24.0007882,6.08987365 23.8566041,5.74555385 C22.7192556,3.02846237 20.001136,1.3392948 17.0877345,1.53905941 C14.174333,1.73882402 11.7070644,3.78354061 10.9435533,6.63096923 C10.864775,6.92623894 10.5998245,7.13148108 10.2971218,7.13172308 Z" id="Path_442"></path>
|
||||
<path d="M8.62182741,18.3848923 C8.55874606,18.3848633 8.49598288,18.3758622 8.43538579,18.3581538 C5.39308483,17.4679303 3.46276895,14.4519241 3.90763817,11.2838117 C4.35250738,8.11569933 7.03697338,5.76106569 10.2043198,5.76078462 C10.5743786,5.76078462 10.8743706,6.0638534 10.8743706,6.43770769 C10.8743706,6.81156198 10.5743786,7.11463077 10.2043198,7.11463077 C7.70464449,7.11513602 5.58616423,8.9734343 5.23493915,11.473695 C4.88371407,13.9739557 6.40676289,16.3543462 8.80759898,17.0574462 C9.12857099,17.1507598 9.33250713,17.4686309 9.28575085,17.8027317 C9.23899458,18.1368325 8.95582516,18.3851293 8.62182741,18.3848923 Z" id="Path_443"></path>
|
||||
<g id="Group_89" transform="translate(1.011391, 16.056108)">
|
||||
<path d="M5.17865482,6.2832 L0.826172589,6.2832 C0.456113772,6.2832 0.156121827,5.98013122 0.156121827,5.60627692 C0.156121827,5.23242263 0.456113772,4.92935385 0.826172589,4.92935385 L5.17865482,4.92935385 C5.54871364,4.92935385 5.84870558,5.23242263 5.84870558,5.60627692 C5.84870558,5.98013122 5.54871364,6.2832 5.17865482,6.2832 Z" id="Path_444"></path>
|
||||
<path d="M21.7655939,4.29338462 L15.2959188,4.29338462 C14.92586,4.29338462 14.625868,3.99031583 14.625868,3.61646154 C14.625868,3.24260725 14.92586,2.93953846 15.2959188,2.93953846 L21.7655939,2.93953846 C22.1720573,2.93953846 22.5015609,2.60665529 22.5015609,2.19602308 C22.5015609,1.78539087 22.1720573,1.45250769 21.7655939,1.45250769 L21.1670711,1.45250769 C20.7970122,1.45250769 20.4970203,1.14943891 20.4970203,0.775584615 C20.4970203,0.401730323 20.7970122,0.0986615385 21.1670711,0.0986615385 L21.7655939,0.0986615385 C22.9121749,0.0986615385 23.8416624,1.03768228 23.8416624,2.19602308 C23.8416624,3.35436387 22.9121749,4.29338462 21.7655939,4.29338462 Z" id="Path_445"></path>
|
||||
<path d="M8.87364975,12.8760923 L8.05736041,12.8760923 C7.68730159,12.8760923 7.38730964,12.5730235 7.38730964,12.1991692 C7.38730964,11.8253149 7.68730159,11.5222462 8.05736041,11.5222462 L8.8743198,11.5222462 C9.15325163,11.5222462 9.37937056,11.2938081 9.37937056,11.0120154 C9.37937056,10.7302227 9.15325163,10.5017846 8.8743198,10.5017846 L2.30296447,10.5017846 C1.93290565,10.5017846 1.63291371,10.1987158 1.63291371,9.82486154 C1.63291371,9.45100725 1.93290565,9.14793846 2.30296447,9.14793846 L8.8743198,9.14793846 C9.53352925,9.14793841 10.1426639,9.50322945 10.4722687,10.0799769 C10.8018734,10.6567243 10.8018734,11.3673065 10.4722687,11.9440539 C10.1426639,12.5208013 9.53352925,12.8760924 8.8743198,12.8760923 L8.87364975,12.8760923 Z" id="Path_446"></path>
|
||||
<path d="M20.0670152,16.8689231 L19.4564315,16.8689231 C19.0863727,16.8689231 18.7863807,16.5658543 18.7863807,16.192 C18.7863807,15.8181457 19.0863727,15.5150769 19.4564315,15.5150769 L20.0670152,15.5150769 C20.2978394,15.5150769 20.4849594,15.3260378 20.4849594,15.0928462 C20.4849594,14.8596545 20.2978394,14.6706154 20.0670152,14.6706154 L14.6481472,14.6706154 C14.2780884,14.6706154 13.9780964,14.3675466 13.9780964,13.9936923 C13.9780964,13.619838 14.2780884,13.3167692 14.6481472,13.3167692 L20.0670152,13.3167692 C21.037957,13.3167692 21.8250609,14.111946 21.8250609,15.0928462 C21.8250609,16.0737464 21.037957,16.8689231 20.0670152,16.8689231 Z" id="Path_447"></path>
|
||||
<path d="M31.0401015,12.5262923 L25.6212335,12.5262923 C25.2511747,12.5262923 24.9511827,12.2232235 24.9511827,11.8493692 C24.9511827,11.4755149 25.2511747,11.1724462 25.6212335,11.1724462 L31.0401015,11.1724462 C31.2618335,11.1597592 31.4352029,10.9744113 31.4352029,10.7500462 C31.4352029,10.525681 31.2618335,10.3403331 31.0401015,10.3276462 L30.4295178,10.3276462 C30.0594589,10.3276462 29.759467,10.0245774 29.759467,9.65072308 C29.759467,9.27686878 30.0594589,8.9738 30.4295178,8.9738 L31.0401015,8.9738 C31.9922363,9.00035856 32.7504396,9.78777928 32.7504396,10.7500462 C32.7504396,11.712313 31.9922363,12.4997337 31.0401015,12.5262923 Z" id="Path_448"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 8.7 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 6.2 KiB |