1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-12 09:34:36 +02:00

Added workflow for building the repo

This commit is contained in:
Thomas Bui
2020-08-18 10:15:26 -07:00
parent effdb962bd
commit 330c994480
16 changed files with 587 additions and 129 deletions

View File

@@ -0,0 +1,19 @@
import argparse
from pathlib import Path
class PathResolverAction(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
path = Path(values).resolve()
if not path.exists():
raise ValueError(f"{path} doesn't exist.")
if self.dest == "icons_folder_path":
if not path.is_dir():
raise ValueError("icons_folder_path must be a directory")
elif self.dest == "download_path":
if not path.is_dir():
raise ValueError("download_path must be a directory")
setattr(namespace, self.dest, str(path))

View File

@@ -0,0 +1,232 @@
from selenium.webdriver.firefox.webdriver import WebDriver
from selenium.webdriver.firefox.options import Options
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as ec
from selenium.common.exceptions import TimeoutException as SeleniumTimeoutException
from typing import List
class SeleniumRunner:
"""
A runner that upload and download Icomoon resources using Selenium.
The WebDriver will use Firefox.
"""
"""
The long wait time for the driver in seconds.
"""
LONG_WAIT_IN_SEC = 20
"""
The medium wait time for the driver in seconds.
"""
MED_WAIT_IN_SEC = 5
"""
The short wait time for the driver in seconds.
"""
SHORT_WAIT_IN_SEC = 0.6
"""
The Icomoon Url.
"""
ICOMOON_URL = "https://icomoon.io/app/#/select"
def __init__(self, icomoon_json_path: str, download_path: str,
headless=True):
"""
Create a SeleniumRunner object.
:param icomoon_json_path: a path to the iconmoon.json.
:param download_path: the location where you want to download
the icomoon.zip to.
svg folders.
:param headless: whether to run browser in headless (no UI) mode.
"""
self.icomoon_json_path = icomoon_json_path
self.download_path = download_path
self.headless = headless
self.driver = None
self.set_options()
def set_options(self):
"""
Build the WebDriver with Firefox Options allowing downloads and
set download to download_path.
:raises AssertionError: if the page title does not contain
"IcoMoon App".
"""
options = Options()
allowed_mime_types = "application/zip, application/gzip, application/octet-stream"
# disable prompt to download from Firefox
options.set_preference("browser.helperApps.neverAsk.saveToDisk", allowed_mime_types)
options.set_preference("browser.helperApps.neverAsk.openFile", allowed_mime_types)
# set the default download path to downloadPath
options.set_preference("browser.download.folderList", 2)
options.set_preference("browser.download.dir", self.download_path)
options.headless = self.headless
self.driver = WebDriver(options=options)
self.driver.get(self.ICOMOON_URL)
assert "IcoMoon App" in self.driver.title
def upload_icomoon(self):
"""
Upload the icomoon_test.json to icomoon.io.
:raises TimeoutException: happens when elements are not found.
"""
print("Uploading JSON file...")
try:
# find the file input and enter the file path
import_btn = WebDriverWait(self.driver, SeleniumRunner.LONG_WAIT_IN_SEC).until(
ec.presence_of_element_located((By.CSS_SELECTOR, "div#file input"))
)
import_btn.send_keys(self.icomoon_json_path)
except Exception as e:
print("hi")
self.close()
raise e
try:
confirm_btn = WebDriverWait(self.driver, SeleniumRunner.MED_WAIT_IN_SEC).until(
ec.element_to_be_clickable((By.XPATH, "//div[@class='overlay']//button[text()='Yes']"))
)
confirm_btn.click()
except SeleniumTimeoutException as e:
print(e.stacktrace)
print("Cannot find the confirm button when uploading the icomoon_test.json",
"Ensure that the icomoon_test.json is in the correct format for Icomoon.io",
sep='\n')
self.close()
print("JSON file uploaded.")
def upload_svgs(self, svgs: List[str]):
"""
Upload the SVGs provided in folder_info
:param svgs: a list of svg Paths that we'll upload to icomoon.
"""
try:
print("Uploading SVGs...")
edit_mode_btn = self.driver.find_element_by_css_selector(
"div.btnBar button i.icon-edit"
)
edit_mode_btn.click()
self.click_hamburger_input()
for svg in svgs:
import_btn = self.driver.find_element_by_css_selector(
"li.file input[type=file]"
)
import_btn.send_keys(svg)
print(f"Uploaded {svg}")
self.test_for_possible_alert()
self.remove_color_from_icon()
self.click_hamburger_input()
select_all_button = WebDriverWait(self.driver, self.LONG_WAIT_IN_SEC).until(
ec.element_to_be_clickable((By.XPATH, "//button[text()='Select All']"))
)
select_all_button.click()
except Exception as e:
self.close()
raise e
def click_hamburger_input(self):
"""
Click the hamburger input until the pop up menu appears. This
method is needed because sometimes, we need to click the hamburger
input two times before the menu appears.
:return: None.
"""
try:
hamburger_input = self.driver.find_element_by_css_selector(
"button.btn5.lh-def.transparent i.icon-menu"
)
menu_appear_callback = ec.element_to_be_clickable(
(By.CSS_SELECTOR, "h1#setH2 ul")
)
while not menu_appear_callback(self.driver):
hamburger_input.click()
except Exception as e:
self.close()
raise e
def test_for_possible_alert(self):
"""
Test for the possible alert when we upload the svgs.
:return: None.
"""
try:
dismiss_btn = WebDriverWait(self.driver, self.SHORT_WAIT_IN_SEC, 0.15).until(
ec.element_to_be_clickable((By.XPATH, "//div[@class='overlay']//button[text()='Dismiss']"))
)
dismiss_btn.click()
except SeleniumTimeoutException:
pass
def remove_color_from_icon(self):
"""
Remove the color from the most recent uploaded icon.
:return: None.
"""
try:
recently_uploaded_icon = WebDriverWait(self.driver, self.LONG_WAIT_IN_SEC).until(
ec.element_to_be_clickable((By.XPATH, "//div[@id='set0']//mi-box[1]//div"))
)
recently_uploaded_icon.click()
color_tab = WebDriverWait(self.driver, self.LONG_WAIT_IN_SEC).until(
ec.element_to_be_clickable((By.CSS_SELECTOR, "div.overlayWindow i.icon-droplet"))
)
color_tab.click()
color_tab = self.driver\
.find_element_by_css_selector("div.overlayWindow i.icon-droplet-cross")
color_tab.click()
close_btn = self.driver\
.find_element_by_css_selector("div.overlayWindow i.icon-close")
close_btn.click()
except Exception as e:
self.close()
raise e
def download_icomoon_fonts(self):
"""
Download the icomoon.zip from icomoon.io.
"""
try:
print("Downloading Font files...")
self.driver.find_element_by_css_selector(
"a[href='#/select/font']"
).click()
button = WebDriverWait(self.driver, SeleniumRunner.LONG_WAIT_IN_SEC).until(
ec.presence_of_element_located((By.CSS_SELECTOR, "button.btn4 span"))
)
button.click()
print("Font files downloaded.")
except Exception as e:
self.close()
raise e
def close(self, err=True):
"""
Close the SeleniumRunner instance.
:param err, whether this was called due to an error or not.
"""
print("Closing down SeleniumRunner...")
self.driver.quit()
if err:
code = 1
else:
code = 0
exit(code)

View File

@@ -0,0 +1,143 @@
import json
from zipfile import ZipFile
from pathlib import Path
from typing import List
import os
import re
def find_new_icons(devicon_json_path: str, icomoon_json_path: str) -> List[dict]:
"""
Find the newly added icons by finding the difference between
the devicon_test.json and the icomoon_test.json.
:param devicon_json_path, the path to the devicon_test.json.
:param icomoon_json_path: a path to the iconmoon.json.
:return: a list of the new icons as JSON objects.
"""
with open(devicon_json_path) as json_file:
devicon_json = json.load(json_file)
with open(icomoon_json_path) as json_file:
icomoon_json = json.load(json_file)
new_icons = []
for icon in devicon_json:
if is_not_in_icomoon_json(icon, icomoon_json):
new_icons.append(icon)
return new_icons
def is_not_in_icomoon_json(icon, icomoon_json) -> bool:
"""
Checks whether the icon's name is not in the icomoon_json.
:param icon: the icon object we are searching for.
:param icomoon_json: the icomoon json object parsed from
icomoon_test.json.
:return: True if icon's name is not in the icomoon_test.json, else False.
"""
pattern = re.compile(f"^{icon['name']}-")
for font in icomoon_json["icons"]:
if pattern.search(font["properties"]["name"]):
return False
return True
def get_svgs_paths(new_icons: List[dict], icons_folder_path: str) -> List[str]:
"""
Get all the suitable svgs file path listed in the devicon_test.json.
:param new_icons, a list containing the info on the new icons.
:param icons_folder_path, the path where the function can find the
listed folders.
:return: a list of svg file paths that can be uploaded to Icomoon.
"""
file_paths = []
for icon_info in new_icons:
folder_path = Path(icons_folder_path, icon_info['name'])
if not (folder_path.exists() and folder_path.is_dir()):
print(f"Invalid path. This is not a directory: {folder_path}\nSkipping entry...")
continue
try:
aliases = icon_info["aliases"]
except KeyError:
continue
for font_version in icon_info["versions"]["font"]:
if is_alias(font_version, aliases):
continue
file_name = f"{icon_info['name']}-{font_version}.svg"
path = Path(folder_path, file_name)
if path.exists():
file_paths.append(str(path))
return file_paths
def is_alias(font_version: str, aliases: List[dict]):
"""
Check whether the font version is an alias of another version.
:return: True if it is, else False.
"""
for alias in aliases:
if font_version == alias["alias"]:
return True
return False
def extract_files(zip_path: str, extract_path: str, delete=True):
"""
Extract the style.css and font files from the devicon.zip
folder. Must call the gulp task "get-icomoon-files"
before calling this.
:param zip_path, path where the zip file returned
from the icomoon.io is located.
:param extract_path, the location where the function
will put the extracted files.
:param delete, whether the function should delete the zip file
when it's done.
"""
print("Extracting zipped files...")
icomoon_zip = ZipFile(zip_path)
target_files = ('selection.json', 'fonts/', 'fonts/devicon.ttf',
'fonts/devicon.woff', 'fonts/devicon.eot',
'fonts/devicon.svg', "style.css")
for file in target_files:
icomoon_zip.extract(file, extract_path)
print("Files extracted")
if delete:
print("Deleting devicon zip file...")
icomoon_zip.close()
os.remove(zip_path)
def rename_extracted_files(extract_path: str):
"""
Rename the extracted files selection.json and style.css.
:param extract_path, the location where the function
can find the extracted files.
:return: None.
"""
print("Renaming files")
old_to_new_list = [
{
"old": Path(extract_path, "selection.json"),
"new": Path(extract_path, "icomoon.json")
},
{
"old": Path(extract_path, "style.css"),
"new": Path(extract_path, "devicon.css")
}
]
for dict_ in old_to_new_list:
os.replace(dict_["old"], dict_["new"])
print("Files renamed")

Binary file not shown.

51
.github/scripts/icomoon_upload.py vendored Normal file
View File

@@ -0,0 +1,51 @@
from build_assets.SeleniumRunner import SeleniumRunner
import build_assets.filehandler as filehandler
from pathlib import Path
from argparse import ArgumentParser
from build_assets.PathResolverAction import PathResolverAction
def main():
parser = ArgumentParser(description="Upload svgs to Icomoon to create icon files.")
parser.add_argument("--headless",
help="Whether to run the browser in headless/no UI mode",
action="store_true")
parser.add_argument("icomoon_json_path",
help="The path to the icomoon_test.json aka the selection.json created by Icomoon",
action=PathResolverAction)
parser.add_argument("devicon_json_path",
help="The path to the devicon_test.json",
action=PathResolverAction)
parser.add_argument("icons_folder_path",
help="The path to the icons folder",
action=PathResolverAction)
parser.add_argument("download_path",
help="The path where you'd like to download the Icomoon files to",
action=PathResolverAction)
args = parser.parse_args()
runner = SeleniumRunner(args.icomoon_json_path, args.download_path,
args.headless)
runner.upload_icomoon()
new_icons = filehandler.find_new_icons(args.devicon_json_path, args.icomoon_json_path)
svgs = filehandler.get_svgs_paths(new_icons, args.icons_folder_path)
runner.upload_svgs(svgs)
runner.download_icomoon_fonts()
zip_name = "devicon-v1.0.zip"
zip_path = str(Path(args.download_path, zip_name))
# filehandler.extract_files(zip_path, args.download_path)
# filehandler.rename_extracted_files(args.download_path)
runner.close(err=False)
print("Task completed.")
if __name__ == "__main__":
main()

1
.github/scripts/requirements.txt vendored Normal file
View File

@@ -0,0 +1 @@
selenium

View File

@@ -6,7 +6,16 @@ jobs:
name: Get Fonts From Icomoon
runs-on: windows-2019
steps:
- name: Hello World
uses: actions/hello-world-javascript-action@v1
with:
who-to-greet: 'Mona the Octocat'
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./.github/scripts/requirements.txt
- name: Add geckodriver to PATH
run: set PATH=${{ format('{0}/.github/scripts/build_assets/geckodriver.exe', github.workspace) }};%PATH%
- name: Run icomoon_upload.py
run: python ./.github/scripts/icomoon_upload.py ./icomoon.json ./devicon.json ./icons ./ --headless

View File

@@ -1,12 +1,15 @@
[
{
"name": "amazonwebservices",
"tags": ["cloud", "hosting", "server"],
"name": "haskell",
"color": "#5d5086",
"tags": ["language", "functional"],
"versions": {
"svg": ["original", "original-wordmark", "plain-wordmark"],
"font": ["original", "plain-wordmark"]
}
"svg": ["original", "original-wordmark", "plain", "plain-wordmark"],
"font": ["plain", "plain-wordmark"]
},
"aliases": []
},
{
"name": "android",
"tags": ["os", "mobile"],

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -1,47 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#333333;fill-opacity:0.937;}
.st1{fill:#463B63;}
.st2{fill:#5E5187;}
.st3{fill:#904F8C;}
</style>
<g id="Layer_1">
</g>
<g id="Layer_2">
<g id="XMLID_116_">
<path id="XMLID_129_" class="st0" d="M47.1,52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1V52.5h5.1v6.9h6.3v-6.9H47.1z M53.8,71.5
c-0.7,0-1.3-0.1-1.9-0.3c-0.6-0.2-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4C49.1,68.3,49,67.7,49,67c0-0.7,0.1-1.3,0.4-1.9
c0.3-0.6,0.7-1.1,1.2-1.5c0.5-0.4,1.2-0.7,1.9-1c0.7-0.2,1.5-0.3,2.4-0.3c1.1,0,2.1,0.2,2.8,0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4
c-0.4-0.3-1-0.5-1.8-0.5c-0.8,0-1.5,0.1-2.2,0.4c-0.7,0.2-1.4,0.6-2.1,1.1l-1.4-3.1c1.8-1.2,3.9-1.8,6.2-1.8
c2.2,0,3.9,0.5,5.1,1.5c1.2,1,1.8,2.5,1.8,4.4v2.7c0,0.5,0.1,0.8,0.3,1c0.2,0.2,0.5,0.3,0.9,0.3v4.2c-0.5,0.1-0.9,0.1-1.3,0.2
c-0.4,0.1-0.8,0.1-1.1,0.1c-0.9,0-1.6-0.2-2.1-0.5c-0.5-0.3-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6,0.8-1.3,1.4-2.1,1.8
C55.6,71.3,54.7,71.5,53.8,71.5L53.8,71.5z M55.3,67.9c0.3,0,0.6,0,0.9-0.1c0.3-0.1,0.6-0.2,0.8-0.4c0.2-0.1,0.4-0.3,0.5-0.4
c0.1-0.2,0.2-0.4,0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3c-0.4-0.1-0.7-0.1-0.9-0.1c-0.6,0-1.1,0.1-1.5,0.4c-0.4,0.3-0.6,0.7-0.6,1.1
c0,0.4,0.1,0.7,0.4,0.9C54.4,67.8,54.8,67.9,55.3,67.9L55.3,67.9z M71.8,71.5c-0.6,0-1.2,0-1.9-0.1c-0.7-0.1-1.3-0.2-2-0.3
c-0.6-0.1-1.2-0.3-1.8-0.5c-0.6-0.2-1.1-0.4-1.6-0.7l1.9-3.4c1,0.5,1.9,0.9,2.8,1.2c0.9,0.3,1.7,0.4,2.5,0.4
c0.9,0,1.3-0.2,1.3-0.7c0-0.2-0.2-0.4-0.5-0.6c-0.4-0.2-1-0.4-2-0.6c-1-0.3-1.8-0.5-2.5-0.8c-0.7-0.3-1.2-0.6-1.6-0.9
c-0.4-0.3-0.7-0.7-0.9-1.1c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.7,0.1-1.4,0.4-1.9c0.3-0.6,0.7-1.1,1.2-1.6c0.5-0.4,1.1-0.8,1.9-1
c0.7-0.2,1.5-0.4,2.4-0.4c0.9,0,1.9,0.1,3,0.4c1.1,0.3,2.2,0.6,3.3,1.2l-1.9,3.2c-1-0.5-1.8-0.8-2.4-1c-0.6-0.2-1.3-0.3-1.9-0.3
c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.3,0.3-0.3,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3c0.2,0.1,0.4,0.2,0.7,0.3
c0.3,0.1,0.7,0.2,1.2,0.3c1.1,0.3,1.9,0.5,2.7,0.8c0.7,0.3,1.3,0.6,1.7,0.9c0.4,0.3,0.7,0.7,0.9,1.2c0.2,0.4,0.3,0.9,0.3,1.5
c0,1.4-0.5,2.5-1.6,3.4C75.1,71.1,73.7,71.5,71.8,71.5L71.8,71.5z M88.7,71.2l-3.1-5.1l-1,1.1v3.9h-5V52h5v10.5l3.7-5.1h5.3
l-4.8,6.1l5.2,7.8H88.7L88.7,71.2z"/>
<path id="XMLID_117_" class="st0" d="M101,71.5c-1.2,0-2.3-0.2-3.2-0.6c-0.9-0.4-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2
c-0.3-0.8-0.5-1.7-0.5-2.7c0-1,0.2-1.9,0.5-2.8c0.3-0.9,0.8-1.7,1.4-2.3c0.6-0.7,1.4-1.2,2.4-1.6c0.9-0.4,2-0.6,3.3-0.6
c1.2,0,2.3,0.2,3.3,0.6c0.9,0.4,1.7,0.9,2.4,1.6c0.6,0.6,1.1,1.4,1.4,2.3c0.3,0.9,0.5,1.8,0.5,2.7c0,0.3,0,0.5-0.1,0.8
c0,0.3,0,0.5-0.1,0.7h-9.7c0.1,0.7,0.3,1.3,0.8,1.6c0.5,0.3,1,0.5,1.6,0.5c0.5,0,1.1-0.1,1.5-0.4c0.5-0.2,0.8-0.6,1-1l4.2,1.2
c-0.6,1.1-1.4,2-2.6,2.7C104.1,71.1,102.7,71.5,101,71.5L101,71.5z M103.2,62.8c-0.1-0.7-0.3-1.2-0.7-1.6
c-0.4-0.4-0.9-0.6-1.6-0.6c-0.6,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,0.9-0.7,1.6H103.2L103.2,62.8z M110.1,52h5v13.4
c0,1.1,0.4,1.6,1.3,1.6c0.2,0,0.4,0,0.7-0.1c0.2-0.1,0.5-0.2,0.7-0.3l0.6,4c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.2-1.4,0.2-2.1,0.2
c-1.3,0-2.4-0.3-3.1-1c-0.7-0.7-1.1-1.7-1.1-3L110.1,52L110.1,52z M119.7,52h5v13.4c0,1.1,0.4,1.6,1.3,1.6c0.2,0,0.4,0,0.7-0.1
c0.2-0.1,0.5-0.2,0.7-0.3l0.6,4c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.2-1.4,0.2-2.1,0.2c-1.3,0-2.4-0.3-3.1-1c-0.7-0.7-1.1-1.7-1.1-3
L119.7,52L119.7,52z"/>
</g>
<path id="XMLID_23_" class="st1" d="M0,71.3l6.2-9.3L0,52.6h4.7l6.2,9.3l-6.2,9.3H0z"/>
<path id="XMLID_22_" class="st2" d="M6.2,71.3l6.2-9.3l-6.2-9.3h4.7l12.5,18.7h-4.7l-3.9-5.8l-3.9,5.8H6.2z"/>
<path id="XMLID_111_" class="st3" d="M21.3,65.8l-2.1-3.1h7.3v3.1L21.3,65.8L21.3,65.8z M18.2,61.1L16.1,58h10.4v3.1H18.2z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#333333;fill-opacity:0.937;}
.st1{fill:#463B63;}
.st2{fill:#5E5187;}
.st3{fill:#904F8C;}
</style>
<g id="Layer_1">
</g>
<g id="Layer_2">
<g id="XMLID_116_">
<path id="XMLID_129_" class="st0" d="M47.1,52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1V52.5h5.1v6.9h6.3v-6.9H47.1z M53.8,71.5
c-0.7,0-1.3-0.1-1.9-0.3c-0.6-0.2-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4C49.1,68.3,49,67.7,49,67c0-0.7,0.1-1.3,0.4-1.9
c0.3-0.6,0.7-1.1,1.2-1.5c0.5-0.4,1.2-0.7,1.9-1c0.7-0.2,1.5-0.3,2.4-0.3c1.1,0,2.1,0.2,2.8,0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4
c-0.4-0.3-1-0.5-1.8-0.5c-0.8,0-1.5,0.1-2.2,0.4c-0.7,0.2-1.4,0.6-2.1,1.1l-1.4-3.1c1.8-1.2,3.9-1.8,6.2-1.8
c2.2,0,3.9,0.5,5.1,1.5c1.2,1,1.8,2.5,1.8,4.4v2.7c0,0.5,0.1,0.8,0.3,1c0.2,0.2,0.5,0.3,0.9,0.3v4.2c-0.5,0.1-0.9,0.1-1.3,0.2
c-0.4,0.1-0.8,0.1-1.1,0.1c-0.9,0-1.6-0.2-2.1-0.5c-0.5-0.3-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6,0.8-1.3,1.4-2.1,1.8
C55.6,71.3,54.7,71.5,53.8,71.5L53.8,71.5z M55.3,67.9c0.3,0,0.6,0,0.9-0.1c0.3-0.1,0.6-0.2,0.8-0.4c0.2-0.1,0.4-0.3,0.5-0.4
c0.1-0.2,0.2-0.4,0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3c-0.4-0.1-0.7-0.1-0.9-0.1c-0.6,0-1.1,0.1-1.5,0.4c-0.4,0.3-0.6,0.7-0.6,1.1
c0,0.4,0.1,0.7,0.4,0.9C54.4,67.8,54.8,67.9,55.3,67.9L55.3,67.9z M71.8,71.5c-0.6,0-1.2,0-1.9-0.1c-0.7-0.1-1.3-0.2-2-0.3
c-0.6-0.1-1.2-0.3-1.8-0.5c-0.6-0.2-1.1-0.4-1.6-0.7l1.9-3.4c1,0.5,1.9,0.9,2.8,1.2c0.9,0.3,1.7,0.4,2.5,0.4
c0.9,0,1.3-0.2,1.3-0.7c0-0.2-0.2-0.4-0.5-0.6c-0.4-0.2-1-0.4-2-0.6c-1-0.3-1.8-0.5-2.5-0.8c-0.7-0.3-1.2-0.6-1.6-0.9
c-0.4-0.3-0.7-0.7-0.9-1.1c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.7,0.1-1.4,0.4-1.9c0.3-0.6,0.7-1.1,1.2-1.6c0.5-0.4,1.1-0.8,1.9-1
c0.7-0.2,1.5-0.4,2.4-0.4c0.9,0,1.9,0.1,3,0.4c1.1,0.3,2.2,0.6,3.3,1.2l-1.9,3.2c-1-0.5-1.8-0.8-2.4-1c-0.6-0.2-1.3-0.3-1.9-0.3
c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.3,0.3-0.3,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3c0.2,0.1,0.4,0.2,0.7,0.3
c0.3,0.1,0.7,0.2,1.2,0.3c1.1,0.3,1.9,0.5,2.7,0.8c0.7,0.3,1.3,0.6,1.7,0.9c0.4,0.3,0.7,0.7,0.9,1.2c0.2,0.4,0.3,0.9,0.3,1.5
c0,1.4-0.5,2.5-1.6,3.4C75.1,71.1,73.7,71.5,71.8,71.5L71.8,71.5z M88.7,71.2l-3.1-5.1l-1,1.1v3.9h-5V52h5v10.5l3.7-5.1h5.3
l-4.8,6.1l5.2,7.8H88.7L88.7,71.2z"/>
<path id="XMLID_117_" class="st0" d="M101,71.5c-1.2,0-2.3-0.2-3.2-0.6c-0.9-0.4-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2
c-0.3-0.8-0.5-1.7-0.5-2.7c0-1,0.2-1.9,0.5-2.8c0.3-0.9,0.8-1.7,1.4-2.3c0.6-0.7,1.4-1.2,2.4-1.6c0.9-0.4,2-0.6,3.3-0.6
c1.2,0,2.3,0.2,3.3,0.6c0.9,0.4,1.7,0.9,2.4,1.6c0.6,0.6,1.1,1.4,1.4,2.3c0.3,0.9,0.5,1.8,0.5,2.7c0,0.3,0,0.5-0.1,0.8
c0,0.3,0,0.5-0.1,0.7h-9.7c0.1,0.7,0.3,1.3,0.8,1.6c0.5,0.3,1,0.5,1.6,0.5c0.5,0,1.1-0.1,1.5-0.4c0.5-0.2,0.8-0.6,1-1l4.2,1.2
c-0.6,1.1-1.4,2-2.6,2.7C104.1,71.1,102.7,71.5,101,71.5L101,71.5z M103.2,62.8c-0.1-0.7-0.3-1.2-0.7-1.6
c-0.4-0.4-0.9-0.6-1.6-0.6c-0.6,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,0.9-0.7,1.6H103.2L103.2,62.8z M110.1,52h5v13.4
c0,1.1,0.4,1.6,1.3,1.6c0.2,0,0.4,0,0.7-0.1c0.2-0.1,0.5-0.2,0.7-0.3l0.6,4c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.2-1.4,0.2-2.1,0.2
c-1.3,0-2.4-0.3-3.1-1c-0.7-0.7-1.1-1.7-1.1-3L110.1,52L110.1,52z M119.7,52h5v13.4c0,1.1,0.4,1.6,1.3,1.6c0.2,0,0.4,0,0.7-0.1
c0.2-0.1,0.5-0.2,0.7-0.3l0.6,4c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.2-1.4,0.2-2.1,0.2c-1.3,0-2.4-0.3-3.1-1c-0.7-0.7-1.1-1.7-1.1-3
L119.7,52L119.7,52z"/>
</g>
<path id="XMLID_23_" class="st1" d="M0,71.3l6.2-9.3L0,52.6h4.7l6.2,9.3l-6.2,9.3H0z"/>
<path id="XMLID_22_" class="st2" d="M6.2,71.3l6.2-9.3l-6.2-9.3h4.7l12.5,18.7h-4.7l-3.9-5.8l-3.9,5.8H6.2z"/>
<path id="XMLID_111_" class="st3" d="M21.3,65.8l-2.1-3.1h7.3v3.1L21.3,65.8L21.3,65.8z M18.2,61.1L16.1,58h10.4v3.1H18.2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#463B63;}
.st1{fill:#5E5187;}
.st2{fill:#904F8C;}
</style>
<g id="Layer_1">
<path id="XMLID_9_" class="st0" d="M0,110.2L30.1,65L0,19.9h22.6L52.7,65l-30.1,45.1H0z"/>
<path id="XMLID_8_" class="st1" d="M30.1,110.2L60.2,65L30.1,19.9h22.6l60.2,90.3H90.4L71.5,81.9l-18.8,28.2H30.1z"/>
<path id="XMLID_1_" class="st2" d="M102.9,83.8l-10-15.1H128v15.1L102.9,83.8L102.9,83.8z M87.8,61.3l-10-15.1H128v15.1H87.8z"/>
</g>
<g id="Layer_2">
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#463B63;}
.st1{fill:#5E5187;}
.st2{fill:#904F8C;}
</style>
<g id="Layer_1">
<path id="XMLID_9_" class="st0" d="M0,110.2L30.1,65L0,19.9h22.6L52.7,65l-30.1,45.1H0z"/>
<path id="XMLID_8_" class="st1" d="M30.1,110.2L60.2,65L30.1,19.9h22.6l60.2,90.3H90.4L71.5,81.9l-18.8,28.2H30.1z"/>
<path id="XMLID_1_" class="st2" d="M102.9,83.8l-10-15.1H128v15.1L102.9,83.8L102.9,83.8z M87.8,61.3l-10-15.1H128v15.1H87.8z"/>
</g>
<g id="Layer_2">
</g>
</svg>

Before

Width:  |  Height:  |  Size: 833 B

After

Width:  |  Height:  |  Size: 816 B

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -1,44 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.937;}
</style>
<g id="Layer_1">
</g>
<g id="Layer_2">
<g id="XMLID_116_">
<path id="XMLID_129_" class="st0" d="M47.1,52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1V52.5h5.1v6.9h6.3v-6.9H47.1z M53.8,71.5
c-0.7,0-1.3-0.1-1.9-0.3c-0.6-0.2-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4C49.1,68.3,49,67.7,49,67c0-0.7,0.1-1.3,0.4-1.9
c0.3-0.6,0.7-1.1,1.2-1.5c0.5-0.4,1.2-0.7,1.9-1c0.7-0.2,1.5-0.3,2.4-0.3c1.1,0,2.1,0.2,2.8,0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4
c-0.4-0.3-1-0.5-1.8-0.5c-0.8,0-1.5,0.1-2.2,0.4c-0.7,0.2-1.4,0.6-2.1,1.1l-1.4-3.1c1.8-1.2,3.9-1.8,6.2-1.8
c2.2,0,3.9,0.5,5.1,1.5c1.2,1,1.8,2.5,1.8,4.4v2.7c0,0.5,0.1,0.8,0.3,1c0.2,0.2,0.5,0.3,0.9,0.3v4.2c-0.5,0.1-0.9,0.1-1.3,0.2
c-0.4,0.1-0.8,0.1-1.1,0.1c-0.9,0-1.6-0.2-2.1-0.5c-0.5-0.3-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6,0.8-1.3,1.4-2.1,1.8
C55.6,71.3,54.7,71.5,53.8,71.5L53.8,71.5z M55.3,67.9c0.3,0,0.6,0,0.9-0.1c0.3-0.1,0.6-0.2,0.8-0.4c0.2-0.1,0.4-0.3,0.5-0.4
c0.1-0.2,0.2-0.4,0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3c-0.4-0.1-0.7-0.1-0.9-0.1c-0.6,0-1.1,0.1-1.5,0.4c-0.4,0.3-0.6,0.7-0.6,1.1
c0,0.4,0.1,0.7,0.4,0.9C54.4,67.8,54.8,67.9,55.3,67.9L55.3,67.9z M71.8,71.5c-0.6,0-1.2,0-1.9-0.1c-0.7-0.1-1.3-0.2-2-0.3
c-0.6-0.1-1.2-0.3-1.8-0.5c-0.6-0.2-1.1-0.4-1.6-0.7l1.9-3.4c1,0.5,1.9,0.9,2.8,1.2c0.9,0.3,1.7,0.4,2.5,0.4
c0.9,0,1.3-0.2,1.3-0.7c0-0.2-0.2-0.4-0.5-0.6c-0.4-0.2-1-0.4-2-0.6c-1-0.3-1.8-0.5-2.5-0.8c-0.7-0.3-1.2-0.6-1.6-0.9
c-0.4-0.3-0.7-0.7-0.9-1.1c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.7,0.1-1.4,0.4-1.9c0.3-0.6,0.7-1.1,1.2-1.6c0.5-0.4,1.1-0.8,1.9-1
c0.7-0.2,1.5-0.4,2.4-0.4c0.9,0,1.9,0.1,3,0.4c1.1,0.3,2.2,0.6,3.3,1.2l-1.9,3.2c-1-0.5-1.8-0.8-2.4-1c-0.6-0.2-1.3-0.3-1.9-0.3
c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.3,0.3-0.3,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3c0.2,0.1,0.4,0.2,0.7,0.3
c0.3,0.1,0.7,0.2,1.2,0.3c1.1,0.3,1.9,0.5,2.7,0.8c0.7,0.3,1.3,0.6,1.7,0.9c0.4,0.3,0.7,0.7,0.9,1.2c0.2,0.4,0.3,0.9,0.3,1.5
c0,1.4-0.5,2.5-1.6,3.4C75.1,71.1,73.7,71.5,71.8,71.5L71.8,71.5z M88.7,71.2l-3.1-5.1l-1,1.1v3.9h-5V52h5v10.5l3.7-5.1h5.3
l-4.8,6.1l5.2,7.8H88.7L88.7,71.2z"/>
<path id="XMLID_117_" class="st0" d="M101,71.5c-1.2,0-2.3-0.2-3.2-0.6c-0.9-0.4-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2
c-0.3-0.8-0.5-1.7-0.5-2.7c0-1,0.2-1.9,0.5-2.8c0.3-0.9,0.8-1.7,1.4-2.3c0.6-0.7,1.4-1.2,2.4-1.6c0.9-0.4,2-0.6,3.3-0.6
c1.2,0,2.3,0.2,3.3,0.6c0.9,0.4,1.7,0.9,2.4,1.6c0.6,0.6,1.1,1.4,1.4,2.3c0.3,0.9,0.5,1.8,0.5,2.7c0,0.3,0,0.5-0.1,0.8
c0,0.3,0,0.5-0.1,0.7h-9.7c0.1,0.7,0.3,1.3,0.8,1.6c0.5,0.3,1,0.5,1.6,0.5c0.5,0,1.1-0.1,1.5-0.4c0.5-0.2,0.8-0.6,1-1l4.2,1.2
c-0.6,1.1-1.4,2-2.6,2.7C104.1,71.1,102.7,71.5,101,71.5L101,71.5z M103.2,62.8c-0.1-0.7-0.3-1.2-0.7-1.6
c-0.4-0.4-0.9-0.6-1.6-0.6c-0.6,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,0.9-0.7,1.6H103.2L103.2,62.8z M110.1,52h5v13.4
c0,1.1,0.4,1.6,1.3,1.6c0.2,0,0.4,0,0.7-0.1c0.2-0.1,0.5-0.2,0.7-0.3l0.6,4c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.2-1.4,0.2-2.1,0.2
c-1.3,0-2.4-0.3-3.1-1c-0.7-0.7-1.1-1.7-1.1-3L110.1,52L110.1,52z M119.7,52h5v13.4c0,1.1,0.4,1.6,1.3,1.6c0.2,0,0.4,0,0.7-0.1
c0.2-0.1,0.5-0.2,0.7-0.3l0.6,4c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.2-1.4,0.2-2.1,0.2c-1.3,0-2.4-0.3-3.1-1c-0.7-0.7-1.1-1.7-1.1-3
L119.7,52L119.7,52z"/>
</g>
<path id="XMLID_23_" d="M0,71.3l6.2-9.3L0,52.6h4.7l6.2,9.3l-6.2,9.3H0z"/>
<path id="XMLID_22_" d="M6.2,71.3l6.2-9.3l-6.2-9.3h4.7l12.5,18.7h-4.7l-3.9-5.8l-3.9,5.8H6.2z"/>
<path id="XMLID_111_" d="M21.3,65.8l-2.1-3.1h7.3v3.1L21.3,65.8L21.3,65.8z M18.2,61.1L16.1,58h10.4v3.1H18.2z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.937;}
</style>
<g id="Layer_1">
</g>
<g id="Layer_2">
<g id="XMLID_116_">
<path id="XMLID_129_" class="st0" d="M47.1,52.5v18.7h-5.1v-7.3h-6.3v7.3h-5.1V52.5h5.1v6.9h6.3v-6.9H47.1z M53.8,71.5
c-0.7,0-1.3-0.1-1.9-0.3c-0.6-0.2-1.1-0.5-1.6-0.9c-0.4-0.4-0.8-0.9-1-1.4C49.1,68.3,49,67.7,49,67c0-0.7,0.1-1.3,0.4-1.9
c0.3-0.6,0.7-1.1,1.2-1.5c0.5-0.4,1.2-0.7,1.9-1c0.7-0.2,1.5-0.3,2.4-0.3c1.1,0,2.1,0.2,2.8,0.5v-0.4c0-0.6-0.2-1.1-0.6-1.4
c-0.4-0.3-1-0.5-1.8-0.5c-0.8,0-1.5,0.1-2.2,0.4c-0.7,0.2-1.4,0.6-2.1,1.1l-1.4-3.1c1.8-1.2,3.9-1.8,6.2-1.8
c2.2,0,3.9,0.5,5.1,1.5c1.2,1,1.8,2.5,1.8,4.4v2.7c0,0.5,0.1,0.8,0.3,1c0.2,0.2,0.5,0.3,0.9,0.3v4.2c-0.5,0.1-0.9,0.1-1.3,0.2
c-0.4,0.1-0.8,0.1-1.1,0.1c-0.9,0-1.6-0.2-2.1-0.5c-0.5-0.3-0.8-0.8-0.9-1.4l-0.1-0.5c-0.6,0.8-1.3,1.4-2.1,1.8
C55.6,71.3,54.7,71.5,53.8,71.5L53.8,71.5z M55.3,67.9c0.3,0,0.6,0,0.9-0.1c0.3-0.1,0.6-0.2,0.8-0.4c0.2-0.1,0.4-0.3,0.5-0.4
c0.1-0.2,0.2-0.4,0.2-0.5v-1c-0.3-0.1-0.6-0.2-1-0.3c-0.4-0.1-0.7-0.1-0.9-0.1c-0.6,0-1.1,0.1-1.5,0.4c-0.4,0.3-0.6,0.7-0.6,1.1
c0,0.4,0.1,0.7,0.4,0.9C54.4,67.8,54.8,67.9,55.3,67.9L55.3,67.9z M71.8,71.5c-0.6,0-1.2,0-1.9-0.1c-0.7-0.1-1.3-0.2-2-0.3
c-0.6-0.1-1.2-0.3-1.8-0.5c-0.6-0.2-1.1-0.4-1.6-0.7l1.9-3.4c1,0.5,1.9,0.9,2.8,1.2c0.9,0.3,1.7,0.4,2.5,0.4
c0.9,0,1.3-0.2,1.3-0.7c0-0.2-0.2-0.4-0.5-0.6c-0.4-0.2-1-0.4-2-0.6c-1-0.3-1.8-0.5-2.5-0.8c-0.7-0.3-1.2-0.6-1.6-0.9
c-0.4-0.3-0.7-0.7-0.9-1.1c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.7,0.1-1.4,0.4-1.9c0.3-0.6,0.7-1.1,1.2-1.6c0.5-0.4,1.1-0.8,1.9-1
c0.7-0.2,1.5-0.4,2.4-0.4c0.9,0,1.9,0.1,3,0.4c1.1,0.3,2.2,0.6,3.3,1.2l-1.9,3.2c-1-0.5-1.8-0.8-2.4-1c-0.6-0.2-1.3-0.3-1.9-0.3
c-0.4,0-0.7,0.1-0.9,0.2c-0.2,0.1-0.3,0.3-0.3,0.5c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3c0.2,0.1,0.4,0.2,0.7,0.3
c0.3,0.1,0.7,0.2,1.2,0.3c1.1,0.3,1.9,0.5,2.7,0.8c0.7,0.3,1.3,0.6,1.7,0.9c0.4,0.3,0.7,0.7,0.9,1.2c0.2,0.4,0.3,0.9,0.3,1.5
c0,1.4-0.5,2.5-1.6,3.4C75.1,71.1,73.7,71.5,71.8,71.5L71.8,71.5z M88.7,71.2l-3.1-5.1l-1,1.1v3.9h-5V52h5v10.5l3.7-5.1h5.3
l-4.8,6.1l5.2,7.8H88.7L88.7,71.2z"/>
<path id="XMLID_117_" class="st0" d="M101,71.5c-1.2,0-2.3-0.2-3.2-0.6c-0.9-0.4-1.7-0.9-2.4-1.6c-0.6-0.6-1.1-1.4-1.4-2.2
c-0.3-0.8-0.5-1.7-0.5-2.7c0-1,0.2-1.9,0.5-2.8c0.3-0.9,0.8-1.7,1.4-2.3c0.6-0.7,1.4-1.2,2.4-1.6c0.9-0.4,2-0.6,3.3-0.6
c1.2,0,2.3,0.2,3.3,0.6c0.9,0.4,1.7,0.9,2.4,1.6c0.6,0.6,1.1,1.4,1.4,2.3c0.3,0.9,0.5,1.8,0.5,2.7c0,0.3,0,0.5-0.1,0.8
c0,0.3,0,0.5-0.1,0.7h-9.7c0.1,0.7,0.3,1.3,0.8,1.6c0.5,0.3,1,0.5,1.6,0.5c0.5,0,1.1-0.1,1.5-0.4c0.5-0.2,0.8-0.6,1-1l4.2,1.2
c-0.6,1.1-1.4,2-2.6,2.7C104.1,71.1,102.7,71.5,101,71.5L101,71.5z M103.2,62.8c-0.1-0.7-0.3-1.2-0.7-1.6
c-0.4-0.4-0.9-0.6-1.6-0.6c-0.6,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.6,0.9-0.7,1.6H103.2L103.2,62.8z M110.1,52h5v13.4
c0,1.1,0.4,1.6,1.3,1.6c0.2,0,0.4,0,0.7-0.1c0.2-0.1,0.5-0.2,0.7-0.3l0.6,4c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.2-1.4,0.2-2.1,0.2
c-1.3,0-2.4-0.3-3.1-1c-0.7-0.7-1.1-1.7-1.1-3L110.1,52L110.1,52z M119.7,52h5v13.4c0,1.1,0.4,1.6,1.3,1.6c0.2,0,0.4,0,0.7-0.1
c0.2-0.1,0.5-0.2,0.7-0.3l0.6,4c-0.6,0.3-1.3,0.5-2,0.7c-0.7,0.2-1.4,0.2-2.1,0.2c-1.3,0-2.4-0.3-3.1-1c-0.7-0.7-1.1-1.7-1.1-3
L119.7,52L119.7,52z"/>
</g>
<path id="XMLID_23_" d="M0,71.3l6.2-9.3L0,52.6h4.7l6.2,9.3l-6.2,9.3H0z"/>
<path id="XMLID_22_" d="M6.2,71.3l6.2-9.3l-6.2-9.3h4.7l12.5,18.7h-4.7l-3.9-5.8l-3.9,5.8H6.2z"/>
<path id="XMLID_111_" d="M21.3,65.8l-2.1-3.1h7.3v3.1L21.3,65.8L21.3,65.8z M18.2,61.1L16.1,58h10.4v3.1H18.2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<g id="Layer_1">
<path id="XMLID_9_" d="M0,110.2L30.1,65L0,19.9h22.6L52.7,65l-30.1,45.1H0z"/>
<path id="XMLID_8_" d="M30.1,110.2L60.2,65L30.1,19.9h22.6l60.2,90.3H90.4L71.5,81.9l-18.8,28.2H30.1z"/>
<path id="XMLID_1_" d="M102.9,83.8l-10-15.1H128v15.1L102.9,83.8L102.9,83.8z M87.8,61.3l-10-15.1H128v15.1H87.8z"/>
</g>
<g id="Layer_2">
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<g id="Layer_1">
<path id="XMLID_9_" d="M0,110.2L30.1,65L0,19.9h22.6L52.7,65l-30.1,45.1H0z"/>
<path id="XMLID_8_" d="M30.1,110.2L60.2,65L30.1,19.9h22.6l60.2,90.3H90.4L71.5,81.9l-18.8,28.2H30.1z"/>
<path id="XMLID_1_" d="M102.9,83.8l-10-15.1H128v15.1L102.9,83.8L102.9,83.8z M87.8,61.3l-10-15.1H128v15.1H87.8z"/>
</g>
<g id="Layer_2">
</g>
</svg>

Before

Width:  |  Height:  |  Size: 696 B

After

Width:  |  Height:  |  Size: 684 B