Merge pull request #10 from AliasIO/master

update
main
֍ DaAwesomeP ֎ 8 years ago committed by GitHub
commit 32f99b0641

2
.gitignore vendored

@ -5,6 +5,8 @@ build/*
drivers/npm/node_modules drivers/npm/node_modules
drivers/npm/npm-debug.log drivers/npm/npm-debug.log
src/icons/converted/*
package.json package.json
node_modules/ node_modules/
npm-debug.log npm-debug.log

@ -30,6 +30,24 @@ echo "Compressing SVG icons..."
node $WAPPALYZER_NODE_PATH/node_modules/svgo/bin/svgo -q -f $WAPPALYZER_ROOT/src/icons $WAPPALYZER_ROOT/src/icons node $WAPPALYZER_NODE_PATH/node_modules/svgo/bin/svgo -q -f $WAPPALYZER_ROOT/src/icons $WAPPALYZER_ROOT/src/icons
echo "Converting SVG icons to PNG..."
OIFS="$IFS"
IFS=$'\n'
for svg in $(find $WAPPALYZER_ROOT/src/icons -type f -name "*.svg")
do
echo " Converting $(basename "$svg")..."
dest="$WAPPALYZER_ROOT/src/icons/converted/$(basename "$svg").png"
if [[ ! -f "$dest" ]]; then
svg2png "$svg" --width=32 --height=32 --output "$dest" || true
fi
done
IFS="$OIFS"
wappalyzer links wappalyzer links
# Npm Module # Npm Module

@ -36,9 +36,12 @@ ln -f $path/utils/*.js $path/drivers/firefox/data/js
ln -f $path/wappalyzer.js $path/drivers/chrome/js ln -f $path/wappalyzer.js $path/drivers/chrome/js
ln -f $path/apps.json $path/drivers/chrome ln -f $path/apps.json $path/drivers/chrome
ln -f $path/icons/*.png $path/drivers/chrome/images/icons ln -f $path/icons/*.png $path/drivers/chrome/images/icons
ln -f $path/icons/*.svg $path/drivers/chrome/images/icons
ln -f $path/utils/*.js $path/drivers/chrome/js ln -f $path/utils/*.js $path/drivers/chrome/js
if [ compgen -G "$path/icons/converted/*.png" > /dev/null ]; then
ln -f $path/icons/converted/*.png $path/drivers/chrome/images/icons/converted
fi
ln -f $path/wappalyzer.js $path/drivers/bookmarklet/js ln -f $path/wappalyzer.js $path/drivers/bookmarklet/js
ln -f $path/icons/*.png $path/drivers/bookmarklet/images/icons ln -f $path/icons/*.png $path/drivers/bookmarklet/images/icons
ln -f $path/icons/*.svg $path/drivers/bookmarklet/images/icons ln -f $path/icons/*.svg $path/drivers/bookmarklet/images/icons

@ -8,8 +8,8 @@ ENV WAPPALYZER_ROOT /home/wappalyzer/synced
ENV WAPPALYZER_NODE_PATH /home/wappalyzer/node ENV WAPPALYZER_NODE_PATH /home/wappalyzer/node
# Install packages # Install packages
RUN apt-get update && apt-get install -y curl zip libfreetype6 libfontconfig RUN apt-get update && apt-get install -y sudo curl bzip2 zip libfreetype6 libfontconfig
RUN curl -sL https://deb.nodesource.com/setup_4.x | bash - RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get install -y nodejs RUN apt-get install -y nodejs
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
@ -27,21 +27,23 @@ RUN echo "cd \$WAPPALYZER_ROOT" >> .bashrc
RUN echo "wappalyzer" >> .bashrc RUN echo "wappalyzer" >> .bashrc
# PhantomJS
# RUN su wappalyzer -c "\
# mkdir phantomjs && \
# curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 | tar xvjC phantomjs && \
# ln -s /home/wappalyzer/phantomjs/phantomjs-*-linux-x86_64/bin/phantomjs /usr/bin/phantomjs"
# Node JS # Node JS
RUN su wappalyzer -c "mkdir $WAPPALYZER_NODE_PATH" RUN su wappalyzer -c "mkdir $WAPPALYZER_NODE_PATH"
ADD node/package.json $WAPPALYZER_NODE_PATH/package.json ADD node/package.json $WAPPALYZER_NODE_PATH/package.json
RUN npm i -g npm svg2png --prefix=/usr/local
RUN ln -s -f /usr/local/bin/npm /usr/bin/npm
RUN su wappalyzer -c "cd $WAPPALYZER_NODE_PATH && npm i" RUN su wappalyzer -c "cd $WAPPALYZER_NODE_PATH && npm i"
# PhantomJS
RUN su wappalyzer -c "\
mkdir phantomjs && \
curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.8-linux-x86_64.tar.bz2 | tar xvjC phantomjs && \
ln -s /home/wappalyzer/phantomjs/phantomjs-*-linux-x86_64/bin/phantomjs bin/phantomjs"
# SSH # SSH
RUN rm -f /etc/service/sshd/down RUN rm -f /etc/service/sshd/down
RUN su wappalyzer -c "mkdir .ssh && chmod 700 .ssh" RUN su wappalyzer -c "mkdir .ssh && chmod 700 .ssh"

@ -18,6 +18,7 @@
"jsonlint": "*", "jsonlint": "*",
"jpm": "*", "jpm": "*",
"imagemin-cli": "*", "imagemin-cli": "*",
"phantomjs-prebuilt": "*",
"svgo": "*" "svgo": "*"
}, },
"engines": { "engines": {

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 926 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 635 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 752 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 554 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 800 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 780 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 594 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 834 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 851 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 964 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 842 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -19,7 +19,7 @@
* Log messages to console * Log messages to console
*/ */
log: function(args) { log: function(args) {
console.log(args.message); console.log('[wappalyzer ' + args.type + '] ' + args.message);
}, },
/** /**
@ -192,8 +192,14 @@
w.driver.categoryOrder.forEach(function(match) { w.driver.categoryOrder.forEach(function(match) {
for ( appName in w.detected[url] ) { for ( appName in w.detected[url] ) {
w.apps[appName].cats.forEach(function(cat) { w.apps[appName].cats.forEach(function(cat) {
var icon = w.apps[appName].icon;
if ( cat == match && !found ) { if ( cat == match && !found ) {
chrome.pageAction.setIcon({ tabId: tab.id, path: 'images/icons/' + w.apps[appName].icon }); if ( /\.svg$/i.test(icon) ) {
icon = 'converted/' + icon + '.png';
}
chrome.pageAction.setIcon({ tabId: tab.id, path: 'images/icons/' + icon });
found = true; found = true;
} }

@ -1,9 +1,14 @@
document.addEventListener('DOMContentLoaded', function() { document.addEventListener('DOMContentLoaded', function() {
var var
d = document, slugify, popup,
detectedApps = d.getElementById('detected-apps'); d = document,
detectedApps = d.getElementById('detected-apps');
var popup = { slugify = function(string) {
return string.toLowerCase().replace(/ /g, '-').replace(/[^\w-]/g, '');
};
popup = {
init: function() { init: function() {
d.getElementById('options').addEventListener('click', function() { d.getElementById('options').addEventListener('click', function() {
window.open(chrome.extension.getURL('options.html')); window.open(chrome.extension.getURL('options.html'));
@ -34,14 +39,14 @@ document.addEventListener('DOMContentLoaded', function() {
html = html =
'<div class="detected-app">' + '<div class="detected-app">' +
'<a target="_blank" href="https://wappalyzer.com/applications/' + appName.toLowerCase().replace(/ /g, '-').replace(/[^\w-]/g, '') + '?pk_campaign=chrome&pk_kwd=popup">' + '<a target="_blank" href="https://wappalyzer.com/applications/' + slugify(appName) + '?pk_campaign=chrome&pk_kwd=popup">' +
'<img src="images/icons/' + response.apps[appName].icon + '"/>' + '<img src="images/icons/' + response.apps[appName].icon + '"/>' +
'<span class="label"><span class="name">' + appName + '</span>' + ( version ? ' ' + version : '' ) + ( confidence < 100 ? ' (' + confidence + '% sure)' : '' ) + '</span>' + '<span class="label"><span class="name">' + appName + '</span>' + ( version ? ' ' + version : '' ) + ( confidence < 100 ? ' (' + confidence + '% sure)' : '' ) + '</span>' +
'</a>'; '</a>';
response.apps[appName].cats.forEach(function(cat) { response.apps[appName].cats.forEach(function(cat) {
html += html +=
'<a target="_blank" href="https://wappalyzer.com/categories/' + response.categories[cat] + '?pk_campaign=chrome&pk_kwd=popup">' + '<a target="_blank" href="https://wappalyzer.com/categories/' + slugify(response.categories[cat]) + '?pk_campaign=chrome&pk_kwd=popup">' +
'<span class="category"><span class="name">' + chrome.i18n.getMessage('categoryName' + cat) + '</span></span>' + '<span class="category"><span class="name">' + chrome.i18n.getMessage('categoryName' + cat) + '</span></span>' +
'</a>'; '</a>';
}); });

@ -1,7 +1,7 @@
{ "name": "Wappalyzer", { "name": "Wappalyzer",
"homepage_url": "https://wappalyzer.com?pk_campaign=chrome&pk_kwd=context", "homepage_url": "https://wappalyzer.com?pk_campaign=chrome&pk_kwd=context",
"description": "Identifies software on the web", "description": "Identifies software on the web",
"version": "2.45", "version": "2.48",
"default_locale": "en", "default_locale": "en",
"manifest_version": 2, "manifest_version": 2,
"icons": { "icons": {

@ -1,11 +1,15 @@
(function() { (function() {
self.port.on('displayApps', function(message) { self.port.on('displayApps', function(message) {
var var
div, a, img, label, name, div, a, img, label, name, slugify,
d = document, d = document,
detectedApps = d.getElementById('detected-apps'), detectedApps = d.getElementById('detected-apps'),
empty = d.getElementById('empty'); empty = d.getElementById('empty');
slugify = function(string) {
return string.toLowerCase().replace(/ /g, '-').replace(/[^\w-]/g, '');
};
while ( detectedApps.firstChild ) { while ( detectedApps.firstChild ) {
detectedApps.removeChild(detectedApps.firstChild); detectedApps.removeChild(detectedApps.firstChild);
} }
@ -31,7 +35,7 @@
a.addEventListener('click', function(e) { a.addEventListener('click', function(e) {
e.preventDefault(); e.preventDefault();
self.port.emit('goToUrl', 'applications/' + appName.toLowerCase().replace(/ /g, '-').replace(/[^\w-]/g, '')); self.port.emit('goToUrl', 'applications/' + slugify(appName));
}); });
}(appName)); }(appName));
@ -64,7 +68,7 @@
a.addEventListener('click', function(e) { a.addEventListener('click', function(e) {
e.preventDefault(); e.preventDefault();
self.port.emit('goToUrl', 'categories/' + message.categories[cat]); self.port.emit('goToUrl', 'categories/' + slugify(message.categories[cat]));
}); });
}(appName)); }(appName));

@ -347,7 +347,7 @@
* Log messages to console * Log messages to console
*/ */
log: function(args) { log: function(args) {
console.log(args.message); console.log('[wappalyzer ' + args.type + '] ' + args.message);
}, },
/** /**

@ -217,7 +217,7 @@ var wappalyzer = (function() {
message = JSON.stringify(message); message = JSON.stringify(message);
} }
driver('log', { message: '[wappalyzer ' + type + '] ' + message, type: type }); driver('log', { message: message, type: type });
}, },
/** /**

@ -8,7 +8,7 @@
"description": "Identifies software on the web", "description": "Identifies software on the web",
"author": "Elbert Alias", "author": "Elbert Alias",
"license": "GPLv3", "license": "GPLv3",
"version": "3.2.3", "version": "3.2.6",
"main": "driver.js", "main": "driver.js",
"preferences": [{ "preferences": [{
"name": "tracking", "name": "tracking",

@ -462,7 +462,7 @@ var wappalyzer = (function() {
w.detected[url][app].confidence[id] = confidence[id]; w.detected[url][app].confidence[id] = confidence[id];
} }
if ( w.detected[url][app].getConfidence() >= 100 ) { if ( w.detected[url][app].getConfidence() >= 500 ) {
// Per hostname // Per hostname
if ( /(www.)?((.+?)\.(([a-z]{2,3}\.)?[a-z]{2,6}))$/.test(hostname) && !/((local|dev(elopment)?|stag(e|ing)?|test(ing)?|demo(shop)?|admin|google|cache)\.|\/admin|\.local)/.test(url) ) { if ( /(www.)?((.+?)\.(([a-z]{2,3}\.)?[a-z]{2,6}))$/.test(hostname) && !/((local|dev(elopment)?|stag(e|ing)?|test(ing)?|demo(shop)?|admin|google|cache)\.|\/admin|\.local)/.test(url) ) {
if ( !w.ping.hostnames.hasOwnProperty(hostname) ) { if ( !w.ping.hostnames.hasOwnProperty(hostname) ) {

@ -6,6 +6,7 @@ ENV DEBIAN_FRONTEND noninteractive
RUN \ RUN \
apt-get update && apt-get install -y \ apt-get update && apt-get install -y \
bzip2 \
libfreetype6 \ libfreetype6 \
libfontconfig \ libfontconfig \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

@ -6,7 +6,8 @@
scriptPath = require('fs').absolute(require('system').args[0]), scriptPath = require('fs').absolute(require('system').args[0]),
resourceTimeout = 9000, resourceTimeout = 9000,
args = [], args = [],
debug = false; debug = false; // Output debug messages
quiet = false; // Don't output errors
try { try {
// Working directory // Working directory
@ -14,15 +15,28 @@
require('fs').changeWorkingDirectory(scriptDir); require('fs').changeWorkingDirectory(scriptDir);
require('system').args.forEach(function(arg) { require('system').args.forEach(function(arg, i) {
var arr = /^(--[^=]+)=(.+)$/.exec(arg);
if ( arr && arr.length === 3 ) {
arg = arr[1];
value = arr[2];
}
switch ( arg ) { switch ( arg ) {
case '-v': case '-v':
case '--verbose': case '--verbose':
debug = true; debug = true;
break;
case '-q':
case '--quiet':
quiet = true;
break; break;
case '--resource-timeout': case '--resource-timeout':
resourceTimeout = arg; resourceTimeout = value;
break; break;
default: default:
url = originalUrl = arg; url = originalUrl = arg;
@ -42,8 +56,12 @@
* Log messages to console * Log messages to console
*/ */
log: function(args) { log: function(args) {
if ( debug || args.type !== 'debug' ) { if ( args.type === 'error' ) {
console.log(args.message); if ( !quiet ) {
require('system').stderr.write(args.message + "\n");
}
} else if ( debug || args.type !== 'debug' ) {
require('system').stdout.write(args.message + "\n");
} }
}, },
@ -68,16 +86,26 @@
apps.push({ apps.push({
name: app, name: app,
confidence: wappalyzer.detected[url][app].confidenceTotal, confidence: wappalyzer.detected[url][app].confidenceTotal,
version: wappalyzer.detected[url][app].version, version: wappalyzer.detected[url][app].version,
categories: cats icon: wappalyzer.apps[app].icon,
categories: cats
}); });
} }
console.log(JSON.stringify({ applications: apps })); wappalyzer.driver.sendResponse(apps);
} }
}, },
/**
* Send response
*/
sendResponse: function(apps) {
apps = apps || [];
require('system').stdout.write(JSON.stringify({ url: url, originalUrl: originalUrl, applications: apps }) + "\n");
},
/** /**
* Initialize * Initialize
*/ */
@ -104,21 +132,21 @@
page.settings.resourceTimeout = resourceTimeout; page.settings.resourceTimeout = resourceTimeout;
page.onConsoleMessage = function(message) { page.onConsoleMessage = function(message) {
wappalyzer.log(message); require('system').stdout.write(message + "\n");
}; };
page.onError = function(message) { page.onError = function(message) {
wappalyzer.log(message); wappalyzer.log(message, 'error');
console.log(JSON.stringify({ applications: [] })); wappalyzer.driver.sendResponse();
phantom.exit(1); phantom.exit(1);
}; };
page.onResourceTimeout = function() { page.onResourceTimeout = function() {
wappalyzer.log('Resource timeout'); wappalyzer.log('Resource timeout', 'error');
console.log(JSON.stringify({ applications: [] })); wappalyzer.driver.sendResponse();
phantom.exit(1); phantom.exit(1);
}; };
@ -172,9 +200,9 @@
phantom.exit(0); phantom.exit(0);
} else { } else {
wappalyzer.log('Failed to fetch page'); wappalyzer.log('Failed to fetch page', 'error');
console.log(JSON.stringify({ applications: [] })); wappalyzer.driver.sendResponse();
phantom.exit(1); phantom.exit(1);
} }
@ -184,9 +212,9 @@
wappalyzer.init(); wappalyzer.init();
} catch ( e ) { } catch ( e ) {
wappalyzer.log(e); wappalyzer.log(e, 'error');
console.log(JSON.stringify({ applications: [] })); wappalyzer.driver.sendResponse();
phantom.exit(1); phantom.exit(1);
} }

Before

Width:  |  Height:  |  Size: 249 B

After

Width:  |  Height:  |  Size: 249 B

@ -1,16 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-10 -10 120 120"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="-10 -10 120 120"><defs><filter id="a" x="-50%" y="-50%" width="200%" height="200%"><feOffset result="offOut" in="SourceAlpha"/><feGaussianBlur result="blurOut" in="offOut" stdDeviation="3"/><feComponentTransfer in="blurOut" result="opacityOut"><feFuncA type="linear" slope=".5"/></feComponentTransfer><feBlend in="SourceGraphic" in2="opacityOut"/></filter></defs><path d="M5 18.25l45-16L96 18l-7.5 59L50 98.25l-38-21z" filter="url(#a)" class="outline"/><path d="M5 18.25l45-16v96l-38-21z" fill="#de3641" class="left"/><path d="M50 2.25L96 18l-7.5 59L50 98.25z" fill="#b13138" class="right"/><path d="M50 13l29.25 62.5h-10L63 61.25H50v-8.5h9.5L50 33.1l-8 19.65h8v8.5H38.1L32.5 75.5H21.75z" fill="#fff" class="letter"/></svg>
<defs>
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feOffset result="offOut" in="SourceAlpha" dx="0" dy="0"></feOffset>
<feGaussianBlur result="blurOut" in="offOut" stdDeviation="3"></feGaussianBlur>
<feComponentTransfer in="blurOut" result="opacityOut">
<feFuncA type="linear" slope="0.5"></feFuncA>
</feComponentTransfer>
<feBlend in="SourceGraphic" in2="opacityOut" mode="normal"></feBlend>
</filter>
</defs>
<path d=" M 5 18.25 L 50 2.25 L 96 18 L 88.5 77 L 50 98.25 L 12 77.25 Z" fill="black" filter="url(#shadow)" class="outline"></path>
<path d=" M 5 18.25 L 50 2.25 L 50 98.25 L 12 77.25 Z" fill="#de3641" class="left"></path>
<path d=" M 50 2.25 L 96 18 L 88.5 77 L 50 98.25 Z" fill="#b13138" class="right"></path>
<path d=" M 50 13 L 79.25 75.5 L 69.25 75.5 L 63 61.25 L 50 61.25 L 50 52.75 L 59.5 52.75 L 50 33.1 L 42 52.75 L 50 52.75 L 50 61.25 L 38.1 61.25 L 32.5 75.5 L 21.75 75.5 Z" fill="white" class="letter"></path>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 772 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 574 B

@ -0,0 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 612 792"><style>.st0{fill:#34313f}</style><path class="st0" d="M310.3 379.2h21.1c6 0 9.8-3.3 9.8-8.6 0-5-3.8-8.6-9.8-8.6h-21.1c-.7 0-1.3.6-1.3 1.2V378c.1.7.6 1.2 1.3 1.2zm0 34.1h21.8c6.7 0 10.7-3.4 10.7-9.4 0-5.2-3.8-9.4-10.7-9.4h-21.8c-.7 0-1.3.6-1.3 1.2V412c.1.8.6 1.3 1.3 1.3z"/><path class="st0" d="M387.5 284.4l-62.4 62.2h10.2c15.9 0 25.3 10 25.3 20.9 0 8.6-5.8 14.9-12 17.7-1 .4-1 1.8.1 2.2 7.2 2.8 12.3 10.3 12.3 19.1 0 12.4-8.3 22.3-24.4 22.3h-44.2c-.7 0-1.3-.6-1.3-1.2v-47.1l-68.5 68.2c-.9.9-.3 2.5 1 2.5h164.7c.6 0 1.1-.5 1.1-1.1V285.3c.3-1.1-1.1-1.7-1.9-.9z"/></svg>

After

Width:  |  Height:  |  Size: 643 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

@ -1 +1 @@
<?xml version="1.0"?><svg viewBox="0 0 8 8" version="1.1" xmlns="http://www.w3.org/2000/svg"><circle cx="4" cy="4" r="4" fill="#F58F35"/></svg> <svg viewBox="0 0 8 8" xmlns="http://www.w3.org/2000/svg"><circle cx="4" cy="4" r="4" fill="#F58F35"/></svg>

Before

Width:  |  Height:  |  Size: 144 B

After

Width:  |  Height:  |  Size: 108 B

@ -1,11 +1 @@
<?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path fill="#2E9FFF" d="M0 0h200v200H0z"/><path fill="#FFF" d="M102.535 167.5c-16.518 0-31.621-6.036-43.298-16.021L30.5 155.405l11.102-27.401A67.658 67.658 0 0 1 35.564 100c0-37.277 29.984-67.5 66.971-67.5 36.984 0 66.965 30.223 66.965 67.5 0 37.284-29.98 67.5-66.965 67.5zm36.567-67.693v-.188c0-19.479-13.736-33.367-37.42-33.367h-25.58v67.5h25.201c23.868.001 37.799-14.468 37.799-33.945zm-37.138 17.361h-7.482V82.841h7.482c10.989 0 18.283 6.265 18.283 17.07v.188c0 10.896-7.294 17.069-18.283 17.069z"/></svg>
<!-- 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 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" width="200px" height="200px" viewBox="0 0 200 200" enable-background="new 0 0 200 200" xml:space="preserve">
<g id="background">
<rect fill="#2E9FFF" width="200" height="200"/>
</g>
<g id="Layer_2">
</g>
<path fill="#FFFFFF" d="M102.535,167.5c-16.518,0-31.621-6.036-43.298-16.021L30.5,155.405l11.102-27.401 c-3.868-8.535-6.038-18.01-6.038-28.004c0-37.277,29.984-67.5,66.971-67.5c36.984,0,66.965,30.223,66.965,67.5 C169.5,137.284,139.52,167.5,102.535,167.5z M139.102,99.807v-0.188c0-19.479-13.736-33.367-37.42-33.367h-25.58v67.5h25.201 C125.171,133.753,139.102,119.284,139.102,99.807L139.102,99.807z M101.964,117.168h-7.482V82.841h7.482 c10.989,0,18.283,6.265,18.283,17.07v0.188C120.247,110.995,112.953,117.168,101.964,117.168z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 596 B

@ -1,12 +1 @@
<?xml version="1.0" encoding="utf-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><path fill="#3DA8CC" d="M28.012 27.998H.004v8h28.008v-8zm3.988-20H.004v8h32.01l-.014-8zm20.02 0H40.016L51.309 30.31 40.016 47.998H.004L0 56.002h48.879L64 30.311 52.02 7.998z"/></svg>
<!-- 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 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"
width="64px" height="64px" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
<g>
<g>
<path fill="#3DA8CC" d="M28.012,27.998H0.004v8h28.008V27.998z M32,7.998H0.004v8h32.01L32,7.998z M52.02,7.998H40.016
l11.293,22.312L40.016,47.998H0.004L0,56.002h48.879L64,30.311L52.02,7.998z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 689 B

After

Width:  |  Height:  |  Size: 265 B

@ -1,60 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg width="494" height="455" viewBox="0 0 494 455" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>logo</title><defs><path id="a" d="M0 1173.333h2000V0H0v1173.333z"/></defs><g transform="matrix(1 0 0 -1 -359 814.333)" fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path d="M851.199 554.108l-27.559 84.815-54.617 168.097c-2.81 8.648-15.046 8.648-17.856 0l-54.619-168.097H515.181l-54.62 168.097c-2.809 8.648-15.045 8.648-17.856 0l-54.617-168.097-27.557-84.815a18.775 18.775 0 0 1 6.82-20.992l238.513-173.29 238.515 173.29a18.777 18.777 0 0 1 6.82 20.992" fill="#FC6D26"/><path d="M605.865 359.827l90.684 279.096H515.18l90.684-279.096z" fill="#E24329"/><path d="M605.865 359.827L515.18 638.922H388.089l217.776-279.095z" fill="#FC6D26"/><path d="M388.089 638.923l-27.56-84.815a18.773 18.773 0 0 1 6.822-20.99l238.514-173.29-217.776 279.095z" fill="#FCA326"/><path d="M388.089 638.922H515.18L460.56 807.02c-2.81 8.649-15.046 8.649-17.855 0l-54.617-168.098z" fill="#E24329"/><path d="M605.865 359.827l90.684 279.095H823.64L605.865 359.827z" fill="#FC6D26"/><path d="M823.64 638.923l27.559-84.815a18.773 18.773 0 0 0-6.821-20.99l-238.514-173.29L823.64 638.923z" fill="#FCA326"/><path d="M823.64 638.922H696.548l54.619 168.098c2.81 8.649 15.047 8.649 17.856 0l54.617-168.098z" fill="#E24329"/></g></g></svg>
<svg width="494px" height="455px" viewBox="0 0 494 455" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.2.2 (9983) - http://www.bohemiancoding.com/sketch -->
<title>logo</title>
<desc>Created with Sketch.</desc>
<defs>
<path id="path-1" d="M0,1173.3333 L1999.99995,1173.3333 L1999.99995,0 L0,0 L0,1173.3333 L0,1173.3333 Z"></path>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="gitlab_logo" sketch:type="MSLayerGroup" transform="translate(-359.000000, -360.000000)">
<g id="g10" transform="translate(999.999975, 587.666648) scale(1, -1) translate(-999.999975, -587.666648) translate(0.000000, 0.999996)">
<g id="g16">
<g id="g18-Clipped">
<mask id="mask-2" sketch:name="path22" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="path22"></g>
<g id="g18" mask="url(#mask-2)">
<g transform="translate(358.666658, 358.666658)">
<g id="g44" transform="translate(0.532000, 0.774933)">
<path d="M491.999988,194.666662 L464.441322,279.481326 L409.82399,447.578655 C407.014656,456.226655 394.778657,456.226655 391.96799,447.578655 L337.349325,279.481326 L155.982663,279.481326 L101.362664,447.578655 C98.5533309,456.226655 86.3173312,456.226655 83.5066646,447.578655 L28.8893326,279.481326 L1.33199997,194.666662 C-1.18266664,186.930662 1.57199996,178.455996 8.1519998,173.674662 L246.665327,0.385333324 L485.179988,173.674662 C491.759988,178.455996 494.513321,186.930662 491.999988,194.666662" id="path46" fill="#FC6D26" sketch:type="MSShapeGroup"></path>
</g>
<g id="g48" transform="translate(155.197863, 1.160267)">
<path d="M91.9999977,0 L91.9999977,0 L182.683995,279.095993 L1.31599997,279.095993 L91.9999977,0 L91.9999977,0 Z" id="path50" fill="#E24329" sketch:type="MSShapeGroup"></path>
</g>
<g id="g52" transform="translate(247.197860, 1.160267)">
<g id="path54"></g>
</g>
<g id="g56" transform="translate(28.531199, 1.160800)">
<path d="M218.666661,0 L127.982663,279.09466 L0.890666644,279.09466 L218.666661,0 L218.666661,0 Z" id="path58" fill="#FC6D26" sketch:type="MSShapeGroup"></path>
</g>
<g id="g60" transform="translate(247.197860, 1.160800)">
<g id="path62"></g>
</g>
<g id="g64" transform="translate(0.088533, 0.255867)">
<path d="M29.3333326,279.999993 L29.3333326,279.999993 L1.77466662,195.185328 C-0.738666648,187.449329 2.01466662,178.974662 8.59599979,174.194662 L247.109327,0.905333311 L29.3333326,279.999993 L29.3333326,279.999993 Z" id="path66" fill="#FCA326" sketch:type="MSShapeGroup"></path>
</g>
<g id="g68" transform="translate(247.197860, 1.160267)">
<g id="path70"></g>
</g>
<g id="g72" transform="translate(29.421866, 280.255593)">
<path d="M0,0 L127.091997,0 L72.4733315,168.097329 C69.6626649,176.746662 57.4266652,176.746662 54.617332,168.097329 L0,0 L0,0 Z" id="path74" fill="#E24329" sketch:type="MSShapeGroup"></path>
</g>
<g id="g76" transform="translate(247.197860, 1.160800)">
<path d="M0,0 L90.6839977,279.09466 L217.775995,279.09466 L0,0 L0,0 Z" id="path78" fill="#FC6D26" sketch:type="MSShapeGroup"></path>
</g>
<g id="g80" transform="translate(246.307061, 0.255867)">
<path d="M218.666661,279.999993 L218.666661,279.999993 L246.225327,195.185328 C248.73866,187.449329 245.985327,178.974662 239.403994,174.194662 L0.890666644,0.905333311 L218.666661,279.999993 L218.666661,279.999993 Z" id="path82" fill="#FCA326" sketch:type="MSShapeGroup"></path>
</g>
<g id="g84" transform="translate(336.973725, 280.255593)">
<path d="M127.999997,0 L0.907999977,0 L55.5266653,168.097329 C58.3373319,176.746662 70.5733316,176.746662 73.3826648,168.097329 L127.999997,0 L127.999997,0 Z" id="path86" fill="#E24329" sketch:type="MSShapeGroup"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -1,24 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg width="256" height="252" viewBox="0 0 256 252" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid"><defs><linearGradient x1=".041%" y1="50.091%" x2="100.078%" y2="50.091%" id="a"><stop stop-color="#4284F0" offset="0%"/><stop stop-color="#4487F4" offset="100%"/></linearGradient><linearGradient x1="28.448%" y1="81.561%" x2="55.474%" y2="42.237%" id="b"><stop stop-color="#F5B406" offset="0%"/><stop stop-color="#F4B913" offset="100%"/></linearGradient></defs><path d="M254.2 154.4L209.4 252H102.3l58.6-126h75c14.6 0 24.3 15.1 18.3 28.4z" fill="#437DE6"/><path d="M235.9 127.8c6.3 0 12 3.1 15.4 8.4 3.4 5.3 3.8 11.8 1.2 17.5l-44.2 96.6H107.2l56.9-122.5h71.8zm0-1.8H163l-58.6 126h105l44.7-97.6c6.1-13.3-3.6-28.4-18.2-28.4z" fill="#196CEA"/><path d="M62.1 1.8s56.2 61 69.4 67.3L149.8 29c6.4-12.7-1.8-27.5-17.1-27.3l-70.6.1z" fill="url(#a)" transform="translate(102 126)"/><path d="M112.9 10.9L0 252h104.4L165 121.7 221.6 0H130c-7.3 0-14 4.2-17.1 10.9z" fill="url(#b)"/><path d="M218.8 1.8L163.4 121l-60.1 129.3H2.8L114.5 11.6c2.8-6 8.9-9.9 15.5-9.9h88.8v.1zm2.8-1.8H130c-7.3 0-14 4.2-17.1 10.9L0 252h104.4L165 121.7 221.6 0z" fill="#F3AA00"/></svg>
<svg width="256px" height="252px" viewBox="0 0 256 252" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
<defs>
<linearGradient x1="0.0407161537%" y1="50.0909506%" x2="100.078192%" y2="50.0909506%" id="linearGradient-1">
<stop stop-color="#4284F0" offset="0%"></stop>
<stop stop-color="#4487F4" offset="100%"></stop>
</linearGradient>
<linearGradient x1="28.4480596%" y1="81.5611444%" x2="55.4742329%" y2="42.2373747%" id="linearGradient-2">
<stop stop-color="#F5B406" offset="0%"></stop>
<stop stop-color="#F4B913" offset="100%"></stop>
</linearGradient>
</defs>
<g>
<g transform="translate(102.000000, 126.000000)">
<path d="M152.2,28.4 L107.4,126 L0.3,126 L58.9,0 L133.9,0 C148.5,0 158.2,15.1 152.2,28.4 L152.2,28.4 L152.2,28.4 Z" fill="#437DE6"></path>
<path d="M133.9,1.8 C140.2,1.8 145.9,4.9 149.3,10.2 C152.7,15.5 153.1,22 150.5,27.7 L106.3,124.3 L5.2,124.3 L62.1,1.8 L133.9,1.8 L133.9,1.8 Z M133.9,0 L61,0 L2.4,126 L107.4,126 L152.1,28.4 C158.2,15.1 148.5,0 133.9,0 L133.9,0 L133.9,0 Z" fill="#196CEA"></path>
<path d="M62.1,1.8 C62.1,1.8 118.3,62.8 131.5,69.1 L149.8,29 C156.2,16.3 148,1.5 132.7,1.7 L62.1,1.8 L62.1,1.8 Z" fill="url(#linearGradient-1)"></path>
</g>
<g>
<path d="M112.9,10.9 L0,252 L104.4,252 L165,121.7 L221.6,0 L130,0 C122.7,0 116,4.2 112.9,10.9 L112.9,10.9 L112.9,10.9 Z" fill="url(#linearGradient-2)"></path>
<path d="M218.8,1.8 L163.4,121 L103.3,250.3 L2.8,250.3 L114.5,11.6 C117.3,5.6 123.4,1.7 130,1.7 L218.8,1.7 L218.8,1.8 L218.8,1.8 Z M221.6,0 L130,0 C122.7,0 116,4.2 112.9,10.9 L0,252 L104.4,252 L165,121.7 L221.6,0 L221.6,0 Z" fill="#F3AA00"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -1,20 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg width="256" height="256" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid"><defs><filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="a"><feOffset dy="16" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="9" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.214965466 0" in="shadowBlurOuter1" result="shadowMatrixOuter1"/><feMerge><feMergeNode in="shadowMatrixOuter1"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><path d="M127.979 155.387L256 27.93v-7.323C256 9.227 246.773 0 235.392 0H20.608C9.227 0 0 9.227 0 20.608v150.304l71.067-70.656 56.912 55.13" fill="#FF9C0B"/><path d="M71.088 157.83L0 228.767v6.624C0 246.773 9.227 256 20.608 256h214.784c11.381 0 20.608-9.227 20.608-20.608V86.597L127.979 214.053 71.088 157.83" fill="#FB5722"/><path d="M0 170.912l71.067-70.656 56.912 55.13L256 27.932l-.021 58.682-128 127.44-56.891-56.224L0 228.768v-57.856" fill="#F2F2F2" filter="url(#a)"/><path d="M99.552 185.968l.005-58.117-28.469 29.978 28.464 28.139" fill="#FF9B07"/></svg>
<svg width="256px" height="256px" viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
<defs>
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-1">
<feOffset dx="0" dy="16" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="9" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.214965466 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"></feColorMatrix>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
</defs>
<g>
<path d="M127.978667,155.386667 L256,27.9306667 L256,20.608 C256,9.22666667 246.773333,0 235.392,0 L20.608,0 C9.22666667,0 0,9.22666667 0,20.608 L0,170.912 L71.0666667,100.256 L127.978667,155.386667" fill="#FF9C0B"></path>
<path d="M71.088,157.829333 L0,228.768 L0,235.392 C0,246.773333 9.22666667,256 20.608,256 L235.392,256 C246.773333,256 256,246.773333 256,235.392 L256,86.5973333 L127.978667,214.053333 L71.088,157.829333" fill="#FB5722"></path>
<path d="M0,170.912 L71.0666667,100.256 L127.978667,155.386667 L256,27.9306667 L255.978667,86.6133333 L127.978667,214.053333 L71.088,157.829333 L0,228.768 L0,170.912" fill="#F2F2F2" filter="url(#filter-1)"></path>
<path d="M99.552,185.968 L99.5573333,127.850667 L71.088,157.829333 L99.552,185.968" fill="#FF9B07"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 674 B

@ -1,5 +1 @@
<?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="1000" height="400"><path d="M0 0v27.367h194.648V0H0zm222.227 0v27.367h277.382S471.276 0 433.75 0H222.227zm331.796 0v27.367h167.813L711.875 0H554.023zm288.125 0l-9.96 27.367h166.289V0H842.148zM0 53.222V80.59h194.648V53.222H0zm222.227.039v27.328h309.57s-3.616-21.063-9.922-27.328H222.227zm331.796 0v27.328h186.211l-9.218-27.328H554.023zm268.204 0l-9.22 27.328h185.47V53.261h-176.25zm-766.29 53.183v27.406h84.297v-27.406H55.937zm222.227 0v27.406h84.297v-27.406h-84.297zm166.29 0v27.406h84.296s5.352-14.473 5.352-27.406h-89.649zm165.507 0v27.406h149.453l-9.96-27.406H609.96zm193.906 0l-10 27.406h150.196v-27.406H803.866zm-747.93 53.261v27.367h84.297v-27.367H55.937zm222.227 0v27.367h215.313s18.01-14.042 23.75-27.367H278.164zm331.797 0v27.367h84.297v-15.234l5.351 15.234h154.414l5.743-15.234v15.234h84.297v-27.367H785.82l-8.398 23.18-8.438-23.18H609.961zM55.937 212.928v27.367h84.297v-27.367H55.937zm222.227 0v27.367h239.063c-5.74-13.282-23.75-27.367-23.75-27.367H278.164zm331.797 0v27.367h84.297v-27.367H609.96zm99.61 0l10.195 27.367h115.78l9.688-27.367H709.57zm150.195 0v27.367h84.297v-27.367h-84.297zM55.937 266.15v27.367h84.297V266.15H55.937zm222.227 0v27.367h84.297V266.15h-84.297zm166.29 0v27.367h89.648c0-12.916-5.352-27.367-5.352-27.367h-84.297zm165.507 0v27.367h84.297V266.15H609.96zm118.75 0l9.883 27.367h77.617l9.96-27.367h-97.46zm131.055 0v27.367h84.297V266.15h-84.297zM1.523 319.372v27.406h194.649v-27.406H1.523zm220.704 0v27.406h299.648c6.306-6.276 9.922-27.406 9.922-27.406h-309.57zm333.32 0v27.406h138.71v-27.406h-138.71zm192.344 0l10.156 27.406h39.492l9.531-27.406h-59.18zm111.875 0v27.406H1000v-27.406H859.766zM1.523 372.633V400h194.649v-27.367H1.523zm220.704 0v27.328H433.75c37.526 0 65.86-27.328 65.86-27.328H222.226zm333.32 0V400h138.71v-27.367h-138.71zm211.601 0l9.766 27.29 1.68.038 9.922-27.328h-21.368zm92.618 0V400H1000v-27.367H859.766z" fill="#1f70c1"/></svg>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000" height="400">
<path d="M 0,0 0,27.367 194.64844,27.367 194.64844,0 0,0 z M 222.22657,0 222.22657,27.367 499.60937,27.367 C 499.60936,27.367 471.27625,0 433.75,0 L 222.22657,0 z M 554.02344,0 554.02344,27.367 721.83594,27.367 711.875,0 554.02344,0 z M 842.14844,0 832.1875,27.367 998.47656,27.367 998.47656,0 842.14844,0 z M 0,53.22221 0,80.589202 194.64844,80.589202 194.64844,53.22221 0,53.22221 z M 222.22657,53.260975 222.22657,80.589202 531.79688,80.589202 C 531.79688,80.589214 528.18125,59.526386 521.875,53.260975 L 222.22657,53.260975 z M 554.02344,53.260975 554.02344,80.589202 740.23438,80.589202 731.01562,53.260975 554.02344,53.260975 z M 822.22656,53.260975 813.00781,80.589202 998.47656,80.589202 998.47656,53.260975 822.22656,53.260975 z M 55.937496,106.44442 55.937496,133.85017 140.23437,133.85017 140.23437,106.44442 55.937496,106.44442 z M 278.16407,106.44442 278.16407,133.85017 362.46093,133.85017 362.46093,106.44442 278.16407,106.44442 z M 444.45313,106.44442 444.45313,133.85017 528.75,133.85017 C 528.75001,133.85017 534.10156,119.37715 534.10156,106.44442 L 444.45313,106.44442 z M 609.96094,106.44442 609.96094,133.85017 759.41407,133.85017 749.45313,106.44442 609.96094,106.44442 z M 803.86719,106.44442 793.86719,133.85017 944.0625,133.85017 944.0625,106.44442 803.86719,106.44442 z M 55.937496,159.7054 55.937496,187.07238 140.23437,187.07238 140.23437,159.7054 55.937496,159.7054 z M 278.16407,159.7054 278.16407,187.07238 493.47657,187.07238 C 493.47658,187.07237 511.48781,173.0301 517.22656,159.7054 L 278.16407,159.7054 z M 609.96094,159.7054 609.96094,187.07238 694.25781,187.07238 694.25781,171.83835 699.60937,187.07238 854.02344,187.07238 859.76563,171.83835 859.76563,187.07238 944.0625,187.07238 944.0625,159.7054 785.82031,159.7054 777.42187,182.88593 768.98438,159.7054 609.96094,159.7054 z M 55.937496,212.92761 55.937496,240.29459 140.23437,240.29459 140.23437,212.92761 55.937496,212.92761 z M 278.16407,212.92761 278.16407,240.29459 517.22656,240.29459 C 511.48657,227.01331 493.47657,212.92761 493.47657,212.92761 L 278.16407,212.92761 z M 609.96094,212.92761 609.96094,240.29459 694.25781,240.29459 694.25781,212.92761 609.96094,212.92761 z M 709.57031,212.92761 719.76563,240.29459 835.54688,240.29459 845.23438,212.92761 709.57031,212.92761 z M 859.76563,212.92761 859.76563,240.29459 944.0625,240.29459 944.0625,212.92761 859.76563,212.92761 z M 55.937496,266.14982 55.937496,293.5168 140.23437,293.5168 140.23437,266.14982 55.937496,266.14982 z M 278.16407,266.14982 278.16407,293.5168 362.46093,293.5168 362.46093,266.14982 278.16407,266.14982 z M 444.45313,266.14982 444.45313,293.5168 534.10156,293.5168 C 534.10158,280.60147 528.75,266.14982 528.75,266.14982 L 444.45313,266.14982 z M 609.96094,266.14982 609.96094,293.5168 694.25781,293.5168 694.25781,266.14982 609.96094,266.14982 z M 728.71093,266.14982 738.59375,293.5168 816.21093,293.5168 826.17187,266.14982 728.71093,266.14982 z M 859.76563,266.14982 859.76563,293.5168 944.0625,293.5168 944.0625,266.14982 859.76563,266.14982 z M 1.52343,319.37203 1.52343,346.77778 196.17187,346.77778 196.17187,319.37203 1.52343,319.37203 z M 222.22657,319.37203 222.22657,346.77778 521.875,346.77778 C 528.18125,340.50245 531.79688,319.37203 531.79688,319.37203 L 222.22657,319.37203 z M 555.54687,319.37203 555.54687,346.77778 694.25781,346.77778 694.25781,319.37203 555.54687,319.37203 z M 747.89062,319.37203 758.04687,346.77778 797.53906,346.77778 807.07031,319.37203 747.89062,319.37203 z M 859.76563,319.37203 859.76563,346.77778 1000,346.77778 1000,319.37203 859.76563,319.37203 z M 1.52343,372.633 1.52343,400 196.17187,400 196.17187,372.633 1.52343,372.633 z M 222.22657,372.633 222.22657,399.96124 433.75,399.96124 C 471.27624,399.96122 499.60937,372.633 499.60937,372.633 L 222.22657,372.633 z M 555.54687,372.633 555.54687,400 694.25781,400 694.25781,372.633 555.54687,372.633 z M 767.14844,372.633 776.91407,399.92246 778.59375,399.96124 788.51563,372.633 767.14844,372.633 z M 859.76563,372.633 859.76563,400 1000,400 1000,372.633 859.76563,372.633 z" fill="#1f70c1"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" viewBox="-67.5 342.9 72.8 108.5"><style>.st0{fill:#ED5153;}</style><path d="M-31.1 342.9l5 8.7c1 1.8 1 4 0 5.8l-29.8 51.7 14.1 24.4c2.2 3.8 6.3 6.2 10.7 6.2 4.4 0 8.5-2.4 10.7-6.2l14.1-24.4-3.7-6.6-16 27.7c-1 1.8-3 2.9-5 2.9-2.1 0-4-1.1-5-2.9l-12.3-21.1 27.7-48 5 8.7c1 1.8 1 4 0 5.8l-19.3 33.5 3.8 6.6 21-36.4 13.8 23.9c2.1 3.7 2.1 8.2 0 11.9l-14 24.3c-2.1 3.7-8.8 12-20.8 12s-18.6-8.3-20.8-12l-14-24.3c-2.1-3.7-2.1-8.2 0-11.9l34.8-60.3" class="st0"/></svg> <svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" viewBox="-67.5 342.9 72.8 108.5"><style>.st0{fill:#ed5153}</style><path d="M-31.1 342.9l5 8.7c1 1.8 1 4 0 5.8l-29.8 51.7 14.1 24.4c2.2 3.8 6.3 6.2 10.7 6.2 4.4 0 8.5-2.4 10.7-6.2l14.1-24.4-3.7-6.6-16 27.7c-1 1.8-3 2.9-5 2.9-2.1 0-4-1.1-5-2.9l-12.3-21.1 27.7-48 5 8.7c1 1.8 1 4 0 5.8l-19.3 33.5 3.8 6.6 21-36.4 13.8 23.9c2.1 3.7 2.1 8.2 0 11.9l-14 24.3c-2.1 3.7-8.8 12-20.8 12s-18.6-8.3-20.8-12l-14-24.3c-2.1-3.7-2.1-8.2 0-11.9l34.8-60.3" class="st0"/></svg>

Before

Width:  |  Height:  |  Size: 511 B

After

Width:  |  Height:  |  Size: 510 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

@ -1,9 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" height="439" width="439"><path fill="#f3f3f3" d="M0 0h439v439H0z"/><path fill="#f8682c" d="M17 17h194v194H17z"/><path fill="#91c300" d="M228 17h194v194H228z"/><path fill="#00b4f1" d="M17 228h194v194H17z"/><path fill="#ffc300" d="M228 228h194v194H228z"/></svg>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="439" width="439">
<rect height="439" width="439" fill="#f3f3f3"/>
<rect height="194" width="194" x="17" y="17" fill="#f8682c"/>
<rect height="194" width="194" x="228" y="17" fill="#91c300"/>
<rect height="194" width="194" x="17" y="228" fill="#00b4f1"/>
<rect height="194" width="194" x="228" y="228" fill="#ffc300"/>
</svg>

Before

Width:  |  Height:  |  Size: 540 B

After

Width:  |  Height:  |  Size: 299 B

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="108" height="108" viewBox="0 0 108 108"><path fill="#FF9600" d="M54 108l54-43.199v-43.2L81 0 54 21.601 27 0 0 21.601v43.2"/><path fill="#BC1B00" d="M26.861 86.29L54 108l27.139-21.71L54 64.801"/><g><path fill="#FFC600" d="M27 0v43.2L0 21.601"/><path fill="#FF9000" d="M27 43.2v43.2L0 64.801"/><path fill="#FF7200" d="M54 21.601v43.2L27 43.2"/><path fill="#FFCE25" d="M81 0v43.2L54 21.601"/><path fill="#E12D1A" d="M81 43.2v43.2L54 64.801"/><path fill="#BC1B00" d="M54 64.801V108L27 86.4"/><path fill="#FFC600" d="M108 21.601v43.2L81 43.2"/><path fill="#FF8A00" d="M81 43.2v43.2l27-21.599"/><path fill="#FFE748" d="M81 0v43.2l27-21.599"/><path fill="#FF9600" d="M54 21.601v43.2L81 43.2"/><path fill="#FF9C00" d="M27 0v43.2l27-21.599"/><path fill="#DD2A00" d="M27 43.2v43.2l27-21.599"/><path fill="#B1150A" d="M54 64.801V108l27-21.6"/><path fill="#FFA800" d="M0 21.601v43.2L27 43.2"/></g></svg> <svg xmlns="http://www.w3.org/2000/svg" width="108" height="108" viewBox="0 0 108 108"><path fill="#FF9600" d="M54 108l54-43.199v-43.2L81 0 54 21.601 27 0 0 21.601v43.2"/><path fill="#BC1B00" d="M26.861 86.29L54 108l27.139-21.71L54 64.801"/><path fill="#FFC600" d="M27 0v43.2L0 21.601"/><path fill="#FF9000" d="M27 43.2v43.2L0 64.801"/><path fill="#FF7200" d="M54 21.601v43.2L27 43.2"/><path fill="#FFCE25" d="M81 0v43.2L54 21.601"/><path fill="#E12D1A" d="M81 43.2v43.2L54 64.801"/><path fill="#BC1B00" d="M54 64.801V108L27 86.4"/><path fill="#FFC600" d="M108 21.601v43.2L81 43.2"/><path fill="#FF8A00" d="M81 43.2v43.2l27-21.599"/><path fill="#FFE748" d="M81 0v43.2l27-21.599"/><path fill="#FF9600" d="M54 21.601v43.2L81 43.2"/><path fill="#FF9C00" d="M27 0v43.2l27-21.599"/><path fill="#DD2A00" d="M27 43.2v43.2l27-21.599"/><path fill="#B1150A" d="M54 64.801V108l27-21.6"/><path fill="#FFA800" d="M0 21.601v43.2L27 43.2"/></svg>

Before

Width:  |  Height:  |  Size: 938 B

After

Width:  |  Height:  |  Size: 931 B

@ -1,42 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 86.017999 84.438005" height="84.438" width="86.018"><g fill="#5d87a1" fill-rule="evenodd"><path d="M79.232 65.308c-4.683-.117-8.309.35-11.35 1.639-.878.35-2.28.35-2.4 1.462.471.467.527 1.227.94 1.874.7 1.17 1.926 2.747 3.04 3.568 1.228.936 2.457 1.869 3.746 2.688 2.28 1.41 4.855 2.226 7.075 3.63 1.291.818 2.574 1.87 3.865 2.75.641.468 1.047 1.23 1.87 1.52v-.178c-.413-.525-.528-1.286-.935-1.874-.584-.58-1.17-1.11-1.756-1.693-1.698-2.281-3.807-4.268-6.083-5.907-1.874-1.29-5.971-3.045-6.729-5.204l-.118-.12c1.287-.118 2.811-.587 4.038-.942 1.987-.525 3.8-.406 5.848-.93.937-.237 1.874-.531 2.814-.819v-.53c-1.059-1.05-1.817-2.457-2.928-3.45-2.981-2.574-6.261-5.088-9.654-7.197-1.816-1.17-4.156-1.927-6.087-2.924-.699-.352-1.868-.525-2.279-1.113-1.054-1.287-1.641-2.981-2.4-4.505-1.695-3.214-3.336-6.782-4.796-10.18-1.053-2.28-1.696-4.56-2.984-6.668-6.029-9.947-12.579-15.97-22.641-21.88-2.165-1.23-4.739-1.756-7.486-2.4-1.465-.061-2.927-.175-4.389-.232-.938-.412-1.875-1.524-2.693-2.05C11.424 1.538 2.828-3.025.37 3c-1.58 3.805 2.34 7.548 3.685 9.479.994 1.344 2.283 2.867 2.982 4.386.41.995.527 2.05.938 3.101.935 2.574 1.812 5.442 3.043 7.842.641 1.228 1.342 2.517 2.161 3.623.473.648 1.289.937 1.465 1.993-.816 1.169-.88 2.924-1.347 4.387-2.105 6.612-1.288 14.802 1.697 19.657.934 1.463 3.16 4.681 6.144 3.45 2.632-1.051 2.047-4.386 2.807-7.31.175-.707.058-1.17.408-1.638v.118c.819 1.636 1.64 3.212 2.4 4.855 1.816 2.864 4.972 5.848 7.607 7.836 1.4 1.057 2.513 2.867 4.268 3.513v-.177h-.115c-.353-.525-.878-.76-1.346-1.168-1.053-1.054-2.22-2.342-3.043-3.511-2.456-3.275-4.624-6.904-6.55-10.648-.939-1.818-1.756-3.805-2.517-5.618-.35-.698-.35-1.755-.937-2.105-.88 1.286-2.163 2.4-2.806 3.974-1.112 2.519-1.229 5.619-1.641 8.838-.233.06-.115 0-.233.116-1.87-.468-2.513-2.398-3.217-4.03-1.755-4.16-2.05-10.83-.526-15.627.407-1.226 2.167-5.087 1.462-6.257-.354-1.116-1.522-1.754-2.165-2.635-.759-1.111-1.582-2.513-2.104-3.744-1.405-3.275-2.11-6.904-3.627-10.179-.703-1.523-1.934-3.103-2.925-4.505-1.114-1.58-2.341-2.69-3.22-4.56-.29-.646-.7-1.7-.234-2.4.115-.468.353-.645.821-.762.757-.644 2.924.174 3.683.525 2.166.875 3.98 1.699 5.791 2.925.82.586 1.698 1.697 2.749 1.992h1.231c1.871.407 3.979.114 5.735.643 3.099.994 5.906 2.456 8.424 4.036 7.661 4.856 13.98 11.761 18.249 20.009.703 1.344.998 2.574 1.641 3.975 1.229 2.872 2.751 5.797 3.977 8.603 1.228 2.75 2.4 5.556 4.158 7.84.875 1.227 4.386 1.87 5.966 2.515 1.168.525 2.984.993 4.038 1.636 1.988 1.227 3.973 2.633 5.848 3.98.934.703 3.86 2.164 4.037 3.335"/><path d="M19.558 14.466a9.37 9.37 0 0 0-2.399.294v.118h.114c.472.933 1.292 1.582 1.872 2.4.472.936.882 1.868 1.35 2.806.057-.058.113-.119.113-.119.825-.582 1.234-1.517 1.234-2.924-.354-.412-.409-.818-.704-1.23-.35-.583-1.111-.876-1.58-1.345"/></g></svg>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
viewBox="0 0 86.017999 84.438005"
height="84.438004"
width="86.017998">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-967.92418)"
id="layer1">
<g
id="g4740">
<path
id="path26"
style="fill:#5d87a1;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 79.231723,1033.2325 c -4.6825,-0.1171 -8.30875,0.3502 -11.35,1.6383 -0.8775,0.3506 -2.28,0.3506 -2.4,1.4624 0.47125,0.4672 0.5275,1.227 0.94,1.8735 0.7,1.17 1.92625,2.7471 3.04,3.5683 1.22875,0.9365 2.4575,1.8692 3.74625,2.688 2.28,1.4102 4.855,2.2257 7.075,3.6304 1.29125,0.8179 2.57375,1.8701 3.865,2.75 0.64125,0.4678 1.0475,1.2295 1.87,1.519 l 0,-0.1772 c -0.4125,-0.5249 -0.5275,-1.2857 -0.935,-1.874 -0.58375,-0.5805 -1.17,-1.1104 -1.75625,-1.6929 -1.6975,-2.2813 -3.80625,-4.2685 -6.0825,-5.9068 -1.87375,-1.2905 -5.97125,-3.0458 -6.72875,-5.204 0,0 -0.06125,-0.062 -0.11875,-0.1196 1.2875,-0.1187 2.81125,-0.5875 4.03875,-0.9424 1.98625,-0.525 3.8,-0.4062 5.8475,-0.9312 0.9375,-0.2358 1.87375,-0.5303 2.81375,-0.8179 l 0,-0.5302 c -1.05875,-1.0508 -1.81625,-2.457 -2.9275,-3.4507 -2.98125,-2.5732 -6.26125,-5.087 -9.65375,-7.1963 -1.81625,-1.1704 -4.15625,-1.9273 -6.0875,-2.9243 -0.69875,-0.3516 -1.8675,-0.5249 -2.27875,-1.1132 -1.05375,-1.2867 -1.64125,-2.981 -2.4,-4.5045 -1.695,-3.2142 -3.33625,-6.7817 -4.79625,-10.1804 -1.0525,-2.28 -1.69625,-4.56 -2.98375,-6.66752 -6.02875,-9.9475 -12.57875,-15.97 -22.64125,-21.88 -2.165,-1.23 -4.73875,-1.75625 -7.48625,-2.4 -1.465,-0.0613 -2.92625,-0.175 -4.38875,-0.2325 -0.9375,-0.41125 -1.875,-1.52375 -2.6925,-2.05 -3.33625,-2.105 -11.9325007,-6.6675 -14.39125069,-0.6425 -1.57999991,3.805 2.33999999,7.5475 3.68624999,9.47875 0.99375,1.34375 2.2825,2.8675 2.98125,4.38625 0.41,0.995 0.5275,2.05 0.93875,3.10125 0.935,2.57375 1.81125,5.44125 3.0425007,7.84125 0.64125,1.22875 1.3425,2.5175 2.16125,3.62375 0.4725,0.64747 1.28875,0.93627 1.465,1.99247 -0.81625,1.1688 -0.88,2.9238 -1.3475,4.3875 -2.105,6.6113 -1.2875,14.8018 1.6975,19.6568 0.93375,1.4624 3.16,4.6811 6.14375,3.4496 2.6325,-1.0512 2.0475,-4.3861 2.8075,-7.3095 0.175,-0.707 0.0575,-1.1709 0.4075,-1.6382 l 0,0.1182 c 0.81875,1.6358 1.64,3.2114 2.4,4.855 1.81625,2.8638 4.9725,5.8481 7.6075,7.8354 1.4,1.0571 2.5125,2.8677 4.2675,3.5132 l 0,-0.1767 -0.115,0 c -0.3525,-0.525 -0.8775,-0.7608 -1.34625,-1.1685 -1.0525,-1.0538 -2.22,-2.3414 -3.0425,-3.5108 -2.45625,-3.2748 -4.62375,-6.9042 -6.55,-10.648 -0.93875,-1.8178 -1.75625,-3.8051 -2.5175,-5.6176 -0.35,-0.6987 -0.35,-1.7549 -0.93625,-2.105 -0.88,1.2856 -2.16375,2.3989 -2.80625,3.9736 -1.1125,2.5187 -1.22875,5.6187 -1.64125,8.8379 -0.2325,0.061 -0.115,0 -0.2325,0.1163 -1.87,-0.4678 -2.51375,-2.398 -3.2175,-4.0308 -1.755,-4.1592 -2.05,-10.8284 -0.52625,-15.6259 0.4075,-1.2262 2.1675,-5.0875 1.4625,-6.2575 -0.35375,-1.11622 -1.5225,-1.75372 -2.165,-2.63497 -0.75875,-1.11125 -1.5825,-2.5125 -2.10375,-3.74375 -1.405,-3.275 -2.11125,-6.90375 -3.6275007,-10.17875 -0.7025,-1.52375 -1.93375,-3.10375 -2.925,-4.505 -1.11375,-1.58 -2.34125,-2.69125 -3.22,-4.56125 -0.29,-0.645 -0.6999999,-1.69875 -0.23375,-2.39875 0.115,-0.46875 0.3525,-0.645 0.82125,-0.7625 0.75625,-0.64375 2.92375,0.17375 3.6825,0.525 2.16625,0.875 3.9800007,1.69875 5.7912507,2.925 0.82,0.58625 1.6975,1.6975 2.74875,1.9925 l 1.23125,0 c 1.87125,0.40625 3.97875,0.11375 5.735,0.6425 3.09875,0.99375 5.90625,2.45625 8.42375,4.03625 7.66125,4.85625 13.98,11.76125 18.24875,20.00872 0.70375,1.3438 0.99875,2.5738 1.64125,3.975 1.22875,2.8725 2.75125,5.7975 3.9775,8.6029 1.2275,2.75 2.4,5.5558 4.1575,7.8409 0.875,1.2265 4.38625,1.8701 5.96625,2.5141 1.1675,0.5249 2.98375,0.9936 4.0375,1.6363 1.98875,1.2265 3.97375,2.6327 5.84875,3.9805 0.93375,0.7021 3.86,2.163 4.03625,3.3348" />
<path
id="path28"
style="fill:#5d87a1;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 19.557973,982.39053 c -0.9925,0 -1.6925,0.12 -2.39875,0.29375 l 0,0.1175 0.11375,0 c 0.4725,0.93375 1.2925,1.5825 1.8725,2.4 0.47125,0.93625 0.88125,1.86875 1.34875,2.80625 0.0575,-0.0575 0.11375,-0.11875 0.11375,-0.11875 0.825,-0.5825 1.23375,-1.5175 1.23375,-2.92375 -0.35375,-0.4125 -0.40875,-0.81875 -0.70375,-1.23 -0.35,-0.58375 -1.11125,-0.87625 -1.58,-1.345" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

@ -1,35 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120.305 106.693" height="106.693" width="120.305"><path d="M29.727 0l-3.054 5.7L3.054 48.624 0 54.045l3.054 5.414L26.674 101l3.191 5.694H91.69l3.054-6.25 17.644-35.565 7.918-16.115h-17.92l-45.149.138c-5.872-.08-11.274 5.241-11.274 11.114 0 5.872 5.402 11.198 11.274 11.114l27.23-.138-6.67 13.474H42.789L25.42 53.902l17.506-31.674h37.24l8.682 17.817h22.37l-14.1-33.79L94.057 0h-64.33" fill="#090"/></svg>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
viewBox="0 0 120.305 106.693"
height="106.693"
width="120.305">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-945.66918)"
id="layer1">
<path
d="m 29.727295,945.66933 -3.05408,5.69917 -23.6190998,42.92604 -3.054080047412,5.4191 3.054080047412,5.41466 23.6190998,41.539 3.19189,5.6947 61.82399,0 3.05407,-6.2504 17.644315,-35.5642 7.91749,-16.11505 -17.91993,0 -45.148805,0.13781 c -5.87255,-0.08 -11.27386,5.24128 -11.27386,11.11384 0,5.8725 5.40131,11.1983 11.27386,11.1138 l 27.22887,-0.1378 -6.6683,13.4744 -35.00854,0 -17.36869,-30.56302 17.5065,-31.6744 37.2402,0 8.68212,17.81769 22.369915,0 -14.101225,-33.79047 -3.05853,-6.25487 -64.33126,0"
id="path8"
style="fill:#009900" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 456 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 887 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

@ -1 +1 @@
<svg viewBox="0 0 257 257" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M126.043 193.035c-4.806.12-8.765 4.12-8.816 8.89-.04 4.895 4.256 9.196 9.14 9.17 4.998-.064 9.017-4.195 8.952-9.273-.086-5.142-4.045-8.902-9.277-8.787M97.752 193.035c-4.8.12-8.765 4.12-8.81 8.89-.044 4.895 4.25 9.196 9.132 9.17 5.007-.064 9.018-4.195 8.94-9.273-.064-5.142-4.03-8.902-9.262-8.787" fill-rule="nonzero"/><path d="M256.354 128.174c0 70.793-57.384 128.176-128.18 128.176C57.385 256.35 0 198.967 0 128.174 0 57.384 57.383 0 128.175 0c70.795 0 128.18 57.383 128.18 128.174" fill="#eb1974"/><path d="M88.98 186.125h.092l-.11-.115c.005.04.013.076.018.115" fill="#fff" fill-rule="nonzero"/><path d="M182.202 66.463c-.103-1.37-.258-2.582-.478-3.643-.245-.01-.49-.025-.736-.04-16.728-.58-18.614-.036-18.614-.036-3.967.606-11.317 5.774-13.59 13.137-3.682 11.886-9.703 34.286-14.75 53.417-4.205-4.637-6.414-10.797-6.796-11.924l-.057-.232L111.72 64.32c-3.967-.66-7.887-.994-11.756-.994-1.977 0-7.377-.4-13.022.27l7.655 23.088 1.13 3.422c3.345 10.322 11.47 35.86 11.47 35.86 5.26 15.645 14.108 22.157 21.193 24.843-1.905 7.248-3.158 12.015-3.307 12.312-.962 2.027-1.955 3.202-3.235 4.015-1.266.84-2.247 1.267-4.21 1.37-.596.026-28.925.155-28.925.155-.336 1.668-.556 3.164-.67 4.483-.117 1.343-.164 2.726-.164 4.172 0 1.55.047 3.05.163 4.482.114 1.447.334 3.062.67 4.834h28.756c3.313 0 6.407-.298 9.276-.907 2.867-.606 5.458-1.69 7.782-3.227 2.316-1.55 4.39-3.71 6.21-6.46 1.822-2.764 3.4-6.24 4.716-10.438l22.866-78.787c.477-1.15 3.023-6.42 8.643-6.42.45 0 .81-.027 1.084-.066h3.384c.414-1.912.71-3.927.865-6.056.154-2.106.064-1.707.064-3.502 0-1.487-.04-2.918-.155-4.303M125.766 193.553c-4.8.104-8.765 4.11-8.817 8.875-.04 4.896 4.255 9.21 9.145 9.174 5-.055 9.004-4.2 8.94-9.264-.078-5.154-4.038-8.914-9.27-8.785M97.474 193.553c-4.8.104-8.765 4.11-8.81 8.875-.04 4.896 4.257 9.21 9.14 9.174 5-.055 9.018-4.2 8.94-9.264-.072-5.154-4.038-8.914-9.27-8.785" fill="#fff" fill-rule="nonzero"/></svg> <svg viewBox="0 0 257 257" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M126.043 193.035c-4.806.12-8.765 4.12-8.816 8.89-.04 4.895 4.256 9.196 9.14 9.17 4.998-.064 9.017-4.195 8.952-9.273-.086-5.142-4.045-8.902-9.277-8.787m-28.29 0c-4.8.12-8.765 4.12-8.81 8.89-.044 4.895 4.25 9.196 9.132 9.17 5.007-.064 9.018-4.195 8.94-9.273-.064-5.142-4.03-8.902-9.262-8.787" fill-rule="nonzero"/><path d="M256.354 128.174c0 70.793-57.384 128.176-128.18 128.176C57.385 256.35 0 198.967 0 128.174 0 57.384 57.383 0 128.175 0c70.795 0 128.18 57.383 128.18 128.174" fill="#eb1974"/><path d="M88.98 186.125h.092l-.11-.115c.005.04.013.076.018.115" fill="#fff" fill-rule="nonzero"/><path d="M182.202 66.463c-.103-1.37-.258-2.582-.478-3.643-.245-.01-.49-.025-.736-.04-16.728-.58-18.614-.036-18.614-.036-3.967.606-11.317 5.774-13.59 13.137-3.682 11.886-9.703 34.286-14.75 53.417-4.205-4.637-6.414-10.797-6.796-11.924l-.057-.232L111.72 64.32a71.562 71.562 0 0 0-11.756-.994c-1.977 0-7.377-.4-13.022.27l7.655 23.088 1.13 3.422c3.345 10.322 11.47 35.86 11.47 35.86 5.26 15.645 14.108 22.157 21.193 24.843-1.905 7.248-3.158 12.015-3.307 12.312-.962 2.027-1.955 3.202-3.235 4.015-1.266.84-2.247 1.267-4.21 1.37-.596.026-28.925.155-28.925.155-.336 1.668-.556 3.164-.67 4.483a48.049 48.049 0 0 0-.164 4.172c0 1.55.047 3.05.163 4.482.114 1.447.334 3.062.67 4.834h28.756c3.313 0 6.407-.298 9.276-.907 2.867-.606 5.458-1.69 7.782-3.227 2.316-1.55 4.39-3.71 6.21-6.46 1.822-2.764 3.4-6.24 4.716-10.438l22.866-78.787c.477-1.15 3.023-6.42 8.643-6.42.45 0 .81-.027 1.084-.066h3.384c.414-1.912.71-3.927.865-6.056.154-2.106.064-1.707.064-3.502 0-1.487-.04-2.918-.155-4.303m-56.437 127.087c-4.8.104-8.765 4.11-8.817 8.875-.04 4.896 4.255 9.21 9.145 9.174 5-.055 9.004-4.2 8.94-9.264-.078-5.154-4.038-8.914-9.27-8.785m-28.29 0c-4.8.104-8.765 4.11-8.81 8.875-.04 4.896 4.257 9.21 9.14 9.174 5-.055 9.018-4.2 8.94-9.264-.072-5.154-4.038-8.914-9.27-8.785" fill="#fff" fill-rule="nonzero"/></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,23 +1 @@
<?xml version="1.0" encoding="utf-8"?> <svg width="256" height="292" viewBox="0 0 256 292" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid"><path d="M223.774 57.34c-.201-1.46-1.48-2.268-2.537-2.357a19614 19614 0 0 0-23.383-1.743s-15.507-15.395-17.209-17.099c-1.703-1.703-5.029-1.185-6.32-.805-.19.056-3.388 1.043-8.678 2.68-5.18-14.906-14.322-28.604-30.405-28.604-.444 0-.901.018-1.358.044C129.31 3.407 123.644.779 118.75.779c-37.465 0-55.364 46.835-60.976 70.635-14.558 4.511-24.9 7.718-26.221 8.133-8.126 2.549-8.383 2.805-9.45 10.462C21.3 95.806.038 260.235.038 260.235l165.678 31.042 89.77-19.42S223.973 58.8 223.775 57.34zM156.49 40.848l-14.019 4.339c.005-.988.01-1.96.01-3.023 0-9.264-1.286-16.723-3.349-22.636 8.287 1.04 13.806 10.469 17.358 21.32zm-27.638-19.483c2.304 5.773 3.802 14.058 3.802 25.238 0 .572-.005 1.095-.01 1.624-9.117 2.824-19.024 5.89-28.953 8.966 5.575-21.516 16.025-31.908 25.161-35.828zm-11.131-10.537c1.617 0 3.246.549 4.805 1.622-12.007 5.65-24.877 19.88-30.312 48.297l-22.886 7.088C75.694 46.16 90.81 10.828 117.72 10.828z" fill="#95BF46"/><path d="M221.237 54.983a19614 19614 0 0 0-23.383-1.743s-15.507-15.395-17.209-17.099c-.637-.634-1.496-.959-2.394-1.099l-12.527 256.233 89.762-19.418S223.972 58.8 223.774 57.34c-.201-1.46-1.48-2.268-2.537-2.357" fill="#5E8E3E"/><path d="M135.242 104.585l-11.069 32.926s-9.698-5.176-21.586-5.176c-17.428 0-18.305 10.937-18.305 13.693 0 15.038 39.2 20.8 39.2 56.024 0 27.713-17.577 45.558-41.277 45.558-28.44 0-42.984-17.7-42.984-17.7l7.615-25.16s14.95 12.835 27.565 12.835c8.243 0 11.596-6.49 11.596-11.232 0-19.616-32.16-20.491-32.16-52.724 0-27.129 19.472-53.382 58.778-53.382 15.145 0 22.627 4.338 22.627 4.338" fill="#FFF"/></svg>
<!-- Generator: Adobe Illustrator 19.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 109.5 124.5" style="enable-background:new 0 0 109.5 124.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#95BF47;}
.st1{fill:#5E8E3E;}
.st2{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M95.9,24.2c-0.1-0.6-0.6-1-1.1-1c-0.5,0-10-0.7-10-0.7s-6.6-6.6-7.4-7.3c-0.7-0.7-2.2-0.5-2.7-0.3
c-0.1,0-1.5,0.4-3.7,1.1c-2.2-6.4-6.1-12.3-13-12.3c-0.2,0-0.4,0-0.6,0C55.4,1.1,53,0,50.9,0C34.8,0,27.1,20.1,24.7,30.3
c-6.2,1.9-10.7,3.3-11.2,3.5c-3.5,1.1-3.6,1.2-4,4.5C9.1,40.7,0,111.2,0,111.2l71,13.3l38.5-8.3C109.5,116.2,96,24.9,95.9,24.2z
M67,17.2c-1.8,0.6-3.8,1.2-6,1.9c0-0.4,0-0.8,0-1.3c0-4-0.6-7.2-1.4-9.7C63.2,8.5,65.5,12.5,67,17.2z M55.2,8.8
c1,2.5,1.6,6,1.6,10.8c0,0.2,0,0.5,0,0.7c-3.9,1.2-8.2,2.5-12.4,3.8C46.8,15,51.3,10.5,55.2,8.8z M50.4,4.3c0.7,0,1.4,0.2,2.1,0.7
c-5.1,2.4-10.7,8.5-13,20.7c-3.4,1.1-6.7,2.1-9.8,3C32.4,19.4,38.9,4.3,50.4,4.3z"/>
<path class="st1" d="M94.8,23.2c-0.5,0-10-0.7-10-0.7s-6.6-6.6-7.4-7.3c-0.3-0.3-0.6-0.4-1-0.5L71,124.5l38.5-8.3
c0,0-13.5-91.3-13.6-91.9C95.8,23.6,95.2,23.3,94.8,23.2z"/>
<path class="st2" d="M57.9,44.5l-4.7,14.1c0,0-4.2-2.2-9.2-2.2c-7.5,0-7.8,4.7-7.8,5.9c0,6.4,16.8,8.9,16.8,24
c0,11.9-7.5,19.5-17.7,19.5c-12.2,0-18.4-7.6-18.4-7.6l3.3-10.8c0,0,6.4,5.5,11.8,5.5c3.5,0,5-2.8,5-4.8c0-8.4-13.8-8.8-13.8-22.6
c0-11.6,8.3-22.9,25.2-22.9C54.7,42.6,57.9,44.5,57.9,44.5z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 B

@ -0,0 +1 @@
<svg width="101" height="102" viewBox="0 0 101 102" xmlns="http://www.w3.org/2000/svg"><title>Artboard 1</title><path d="M41.115 67.919c7.884-5.398 9.899-16.164 4.504-24.048l-14.282 9.766h-.001c-3.937 2.697-9.321 1.693-12.023-2.253-2.699-3.942-1.689-9.324 2.252-12.023l.013-.008 13.021-8.913 8.377-5.738c7.885-5.399 9.901-16.164 4.505-24.048L11.818 25.068c-.01.008-.02.012-.029.018C-.033 33.18-3.057 49.334 5.042 61.157c8.093 11.828 24.246 14.849 36.067 6.756l.006.006m18.773-33.83v.003l-.012.008c-.03.022-.06.048-.09.071l.106-.075c-7.885 5.399-9.901 16.165-4.503 24.048l14.275-9.772-.005-.006c3.943-2.7 9.329-1.696 12.022 2.248 2.705 3.942 1.695 9.325-2.248 12.025L58.024 77.297c-7.887 5.4-9.904 16.166-4.505 24.049l14.278-9.77 21.408-14.662v-.002c11.826-8.095 14.852-24.242 6.756-36.068-8.098-11.829-24.251-14.849-36.073-6.755" fill="#0F507F" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 872 B

@ -1,26 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 83.097 84.171997" height="84.172" width="83.097"><path d="M62.872 58.006c-1.247.368-2.242.506-3.547.506-10.691 0-26.389-37.359-26.389-49.793 0-4.577 1.083-6.104 2.613-7.415C22.465 2.831 6.765 7.633 1.745 13.737.66 15.266 0 17.663 0 20.717c0 19.41 20.718 63.455 35.332 63.455 6.763.001 18.162-11.113 27.54-26.166M56.048 0c13.52 0 27.049 2.18 27.049 9.812 0 15.483-9.819 34.246-14.832 34.246-8.942 0-20.065-24.867-20.065-37.301C48.201 1.087 50.381 0 56.048 0" fill="#ff8700"/></svg>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
enable-background="new 0 0 400 168"
viewBox="0 0 83.097 84.171997"
height="84.171997"
width="83.097"
y="0px"
x="0px"
id="Ebene_1"
version="1.1"><metadata
id="metadata15"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs13" /><path
style="fill:#ff8700"
id="path7"
d="m 62.872,58.005999 c -1.247,0.368 -2.242,0.506 -3.547,0.506 -10.691,0 -26.389,-37.359 -26.389,-49.7930005 0,-4.577 1.083,-6.104 2.613,-7.415 -13.084,1.527 -28.7839999,6.329 -33.8039999,12.4330005 -1.08500004,1.529 -1.745000038964841,3.926 -1.745000038964841,6.98 0,19.41 20.71799993896484,63.455 35.331999938964841,63.455 6.763,0.001 18.162,-11.113 27.54,-26.166" /><path
style="fill:#ff8700"
id="path9"
d="m 56.048,-1.4985823e-6 c 13.52,0 27.049,2.1799999985823 27.049,9.8119999985823 0,15.4830005 -9.819,34.2460005 -14.832,34.2460005 -8.942,0 -20.065,-24.867 -20.065,-37.3010005 10e-4,-5.67 2.181,-6.7569999985823 7.848,-6.7569999985823" /></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 533 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

@ -1,58 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 257 257" height="257" width="257"><path d="M139.848 80.757c11.253 31.154 45.644 47.287 76.79 36.03 31.164-11.255 47.29-45.638 36.04-76.795-11.263-31.15-45.636-47.287-76.8-36.033-31.15 11.255-47.286 45.64-36.03 76.798M63.506 191.985c-11.771 20.827-4.431 47.251 16.392 59.022 20.828 11.778 47.264 4.433 59.032-16.392 11.767-20.83 4.43-47.256-16.4-59.03-20.824-11.771-47.26-4.429-59.024 16.4M1.239 107.904c-2.736 13.574 6.049 26.802 19.622 29.544 13.574 2.74 26.808-6.043 29.54-19.615 2.748-13.58-6.037-26.81-19.615-29.55C17.21 85.54 3.983 94.328 1.24 107.903" fill="#2d79bd"/></svg>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
viewBox="0 0 257 257"
height="257"
width="257">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-795.36218)"
id="layer1">
<g
id="g4882">
<g
id="g82"
transform="matrix(1.25,0,0,-1.25,139.84837,876.11962)">
<path
d="M 0,0 C 9.002,-24.923 36.515,-37.829 61.432,-28.824 86.363,-19.82 99.263,7.687 90.264,32.612 81.253,57.533 53.755,70.442 28.823,61.439 3.903,52.435 -9.005,24.927 0,0"
style="fill:#2d79bd;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path84" />
</g>
<g
id="g86"
transform="matrix(1.25,0,0,-1.25,63.505872,987.34696)">
<path
d="M 0,0 C -9.417,-16.662 -3.545,-37.801 13.114,-47.218 29.776,-56.64 50.925,-50.764 60.339,-34.104 69.753,-17.44 63.884,3.701 47.219,13.12 30.56,22.537 9.411,16.663 0,0"
style="fill:#2d79bd;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path88" />
</g>
<g
id="g90"
transform="matrix(1.25,0,0,-1.25,1.2388721,903.26612)">
<path
d="M 0,0 C -2.189,-10.859 4.839,-21.442 15.698,-23.635 26.557,-25.827 37.144,-18.801 39.33,-7.943 41.528,2.92 34.5,13.505 23.638,15.697 12.776,17.891 2.195,10.861 0,0"
style="fill:#2d79bd;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path92" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 633 B

@ -1,6 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> <svg width="256" height="255" viewBox="0 0 256 255" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid"><path d="M18.124 127.5c0 43.296 25.16 80.711 61.646 98.442L27.594 82.986a108.965 108.965 0 0 0-9.47 44.514zm183.221-5.52c0-13.517-4.856-22.879-9.02-30.165-5.545-9.01-10.742-16.64-10.742-25.65 0-10.055 7.626-19.415 18.368-19.415.485 0 .944.06 1.417.088-19.46-17.829-45.387-28.714-73.863-28.714-38.213 0-71.832 19.606-91.39 49.302 2.566.077 4.984.13 7.039.13 11.44 0 29.15-1.387 29.15-1.387 5.897-.348 6.592 8.312.702 9.01 0 0-5.926.697-12.52 1.042L100.32 194.7l23.937-71.79-17.042-46.692c-5.89-.345-11.47-1.042-11.47-1.042-5.894-.346-5.203-9.358.691-9.01 0 0 18.064 1.388 28.811 1.388 11.44 0 29.151-1.388 29.151-1.388 5.9-.348 6.594 8.312.702 9.01 0 0-5.938.697-12.52 1.042l39.529 117.581 10.91-36.458c4.728-15.129 8.327-25.995 8.327-35.36zm-71.921 15.088l-32.818 95.363a109.376 109.376 0 0 0 30.899 4.456c12.737 0 24.952-2.202 36.323-6.2a9.605 9.605 0 0 1-.779-1.507l-33.625-92.112zm94.058-62.045a83.98 83.98 0 0 1 .737 11.247c0 11.1-2.073 23.577-8.317 39.178l-33.411 96.6c32.518-18.963 54.39-54.193 54.39-94.545.002-19.017-4.856-36.9-13.4-52.48zM127.505 0C57.2 0 0 57.196 0 127.5c0 70.313 57.2 127.507 127.505 127.507 70.302 0 127.51-57.194 127.51-127.507C255.014 57.196 197.808 0 127.506 0zm0 249.163c-67.08 0-121.659-54.578-121.659-121.663 0-67.08 54.576-121.654 121.659-121.654 67.078 0 121.652 54.574 121.652 121.654 0 67.085-54.574 121.663-121.652 121.663z" fill="#464342"/></svg>
<svg width="256px" height="255px" viewBox="0 0 256 255" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
<g fill="#464342">
<path d="M18.1239675,127.500488 C18.1239675,170.795707 43.284813,208.211252 79.7700163,225.941854 L27.5938862,82.985626 C21.524813,96.5890081 18.1239675,111.643057 18.1239675,127.500488 L18.1239675,127.500488 Z M201.345041,121.980878 C201.345041,108.462829 196.489366,99.1011382 192.324683,91.8145041 C186.780098,82.8045528 181.583089,75.1745041 181.583089,66.1645528 C181.583089,56.1097886 189.208976,46.7501789 199.950569,46.7501789 C200.435512,46.7501789 200.89548,46.8105366 201.367935,46.8375935 C181.907772,29.0091707 155.981008,18.1239675 127.50465,18.1239675 C89.2919675,18.1239675 55.6727154,37.7298211 36.1147317,67.4258211 C38.6809756,67.5028293 41.0994472,67.5569431 43.1536911,67.5569431 C54.5946016,67.5569431 72.3043902,66.1687154 72.3043902,66.1687154 C78.2007154,65.8211382 78.8958699,74.4814309 73.0057886,75.1786667 C73.0057886,75.1786667 67.0803252,75.8759024 60.4867642,76.2213984 L100.318699,194.699447 L124.25574,122.909138 L107.214049,76.2172358 C101.323967,75.8717398 95.744,75.1745041 95.744,75.1745041 C89.8497561,74.8290081 90.540748,65.8169756 96.4349919,66.1645528 C96.4349919,66.1645528 114.498602,67.5527805 125.246439,67.5527805 C136.685268,67.5527805 154.397138,66.1645528 154.397138,66.1645528 C160.297626,65.8169756 160.990699,74.4772683 155.098537,75.1745041 C155.098537,75.1745041 149.160585,75.8717398 142.579512,76.2172358 L182.107577,193.798244 L193.017756,157.340098 C197.746472,142.211122 201.345041,131.34465 201.345041,121.980878 L201.345041,121.980878 Z M129.42361,137.068228 L96.6056585,232.43135 C106.404423,235.31187 116.76722,236.887415 127.50465,236.887415 C140.242211,236.887415 152.457366,234.685398 163.827512,230.68722 C163.534049,230.218927 163.267642,229.721496 163.049106,229.180358 L129.42361,137.068228 L129.42361,137.068228 Z M223.481756,75.0225691 C223.95213,78.5066667 224.218537,82.2467642 224.218537,86.2699187 C224.218537,97.3694959 222.145561,109.846894 215.901659,125.448325 L182.490537,222.04774 C215.00878,203.085008 236.881171,167.854829 236.881171,127.502569 C236.883252,108.485724 232.025496,90.603187 223.481756,75.0225691 L223.481756,75.0225691 Z M127.50465,0 C57.2003902,0 0,57.1962276 0,127.500488 C0,197.813073 57.2003902,255.00722 127.50465,255.00722 C197.806829,255.00722 255.015545,197.813073 255.015545,127.500488 C255.013463,57.1962276 197.806829,0 127.50465,0 L127.50465,0 Z M127.50465,249.162927 C60.4243252,249.162927 5.84637398,194.584976 5.84637398,127.500488 C5.84637398,60.4201626 60.4222439,5.84637398 127.50465,5.84637398 C194.582894,5.84637398 249.156683,60.4201626 249.156683,127.500488 C249.156683,194.584976 194.582894,249.162927 127.50465,249.162927 L127.50465,249.162927 Z"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -1,72 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" height="128" width="128" viewBox="0 0 128 128"><g fill="#333"><path style="text-indent:0;text-decoration-line:none;text-transform:none;block-progression:tb" d="M63.358 7.575c-21.622 0-44.203 17.47-50.532 38.914L2.394 81.844c-6.327 21.443 5.943 38.914 27.567 38.914h35.335c21.622 0 44.203-17.47 50.531-38.914l10.432-35.355c6.328-21.444-5.942-38.914-27.566-38.914H63.358zm-1.539 5.214h35.335c18.582 0 29.205 14.94 23.667 33.7L110.39 81.843c-5.536 18.76-24.974 33.7-43.556 33.7H31.498c-18.582 0-29.204-14.94-23.667-33.7l10.432-35.354c5.536-18.76 24.974-33.7 43.556-33.7z" color="#000"/><path d="M29.255 98.15c.163-3.303.875-6.448 2.43-9.391.61-1.154 1.332-2.245 1.997-3.368 5.145-8.086 11.172-15.657 18.245-22.15 1.705-1.565 3.512-3.015 5.268-4.522 10.386-8.279 22.03-14.778 33.972-20.507 3.212-1.508 6.531-2.752 9.877-3.922l10.552 1.339c-3.621 1.055-7.216 2.197-10.685 3.698-1.663.736-3.342 1.44-4.99 2.21-10.434 4.884-20.426 10.807-29.452 17.98-4.271 3.693-5.986 4.972-9.815 9.068-4.903 5.243-9.062 11.138-12.669 17.332-2.172 4.148-3.908 7.44-3.307 12.233H29.255z"/><path d="M39.037 98.15c.386-4.132 1.934-8.053 3.597-11.813 2.351-4.665 5.513-8.91 9.219-12.59 2.728-2.71 4.4-3.928 7.398-6.347 7.41-5.762 15.491-10.603 23.875-14.794 3.637-1.838 7.439-3.297 11.254-4.711l10.693 1.33c-4.005 1.298-7.987 2.69-11.786 4.522-8.5 4.012-16.707 8.736-24.12 14.541-3.035 2.438-4.487 3.465-7.224 6.208-3.563 3.57-6.536 7.723-8.705 12.277-1.53 3.553-3.093 7.429-2.755 11.376H39.037zm-17.391 0c.158-2.89.206-5.762.836-8.605.174-.788.413-1.56.62-2.34 2.11-6.294 5.59-12.005 8.913-17.712 3.98-6.479 8.74-12.414 13.692-18.166 2.018-2.365 4.164-4.612 6.303-6.865l10.946.863c-2.324 2.197-4.665 4.377-6.803 6.76-5.095 5.599-9.924 11.474-13.886 17.943-3.174 5.616-6.397 11.284-8.384 17.45-.19.747-.413 1.486-.57 2.242-.564 2.782-.56 5.616-.287 8.43H21.648z"/></g></svg>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="128"
width="128"
version="1.1"
viewBox="0 0 128 128"
id="svg2"
inkscape:version="0.91 r13725"
sodipodi:docname="caddy-icon.svg">
<metadata
id="metadata36">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs34" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
id="namedview32"
showgrid="false"
units="px"
/>
<g
transform="translate(1562.2,265.03878)"
id="g4"
style="fill:#333333">
<g
transform="matrix(2.1214715,0,0,2.1214715,-3716.2042,-976.81216)"
id="g20">
<path
style="color:#000000;text-indent:0;text-decoration:none;text-decoration-line:none;text-transform:none;block-progression:tb"
d="m 1045.2,339.08 c -10.192,0 -20.836,8.2351 -23.819,18.343 l -4.9175,16.665 c -2.9826,10.108 2.8012,18.343 12.994,18.343 l 16.656,0 c 10.192,0 20.836,-8.2351 23.819,-18.343 l 4.9175,-16.665 c 2.9826,-10.108 -2.8012,-18.343 -12.994,-18.343 l -16.656,0 z m -0.7253,2.4577 16.656,0 c 8.7589,0 13.766,7.0421 11.156,15.885 l -4.9175,16.665 c -2.6094,8.8432 -11.772,15.885 -20.531,15.885 l -16.656,0 c -8.7589,0 -13.766,-7.0421 -11.156,-15.885 l 4.9175,-16.665 c 2.6094,-8.8432 11.772,-15.885 20.531,-15.885 z"
id="path22"
inkscape:connector-curvature="0" />
<g
transform="matrix(2.5618,0,0,2.5618,-1556.5,131.33)"
id="g24">
<path
d="m 1009.3,97.761 c 0.03,-0.60776 0.1611,-1.1863 0.4473,-1.7279 0.1122,-0.2123 0.2449,-0.41309 0.3673,-0.61964 0.9468,-1.4879 2.0556,-2.881 3.3571,-4.0757 0.3137,-0.28796 0.6463,-0.55472 0.9694,-0.83207 1.911,-1.5232 4.0535,-2.7191 6.2507,-3.7732 0.5911,-0.27739 1.2018,-0.5063 1.8174,-0.72166 l 1.9416,0.24631 c -0.6663,0.19418 -1.3278,0.40441 -1.966,0.68043 -0.306,0.1356 -0.615,0.2649 -0.9181,0.4068 -1.9199,0.89863 -3.7584,1.9885 -5.4193,3.3084 -0.7859,0.6794 -1.1013,0.91473 -1.8059,1.6683 -0.9022,0.96481 -1.6674,2.0495 -2.3311,3.1891 -0.3996,0.76324 -0.719,1.3691 -0.6085,2.2509 l -2.1019,0 z"
id="path26"
inkscape:connector-curvature="0" />
<path
d="m 1011.1,97.761 c 0.071,-0.76014 0.3558,-1.4816 0.6618,-2.1736 0.4326,-0.8583 1.0144,-1.6394 1.6963,-2.3166 0.5019,-0.49839 0.8095,-0.72268 1.3612,-1.1677 1.3633,-1.0602 2.8504,-1.9509 4.3931,-2.7222 0.6691,-0.33806 1.3687,-0.60656 2.0706,-0.86674 l 1.9675,0.24466 c -0.7369,0.23898 -1.4696,0.49511 -2.1686,0.83207 -1.5639,0.73834 -3.074,1.6075 -4.4379,2.6756 -0.5585,0.44866 -0.8257,0.63759 -1.3294,1.1422 -0.6556,0.65698 -1.2026,1.4211 -1.6017,2.259 -0.2814,0.65376 -0.5691,1.3669 -0.5068,2.0932 l -2.1061,0 z"
id="path28"
inkscape:connector-curvature="0" />
<path
d="m 1007.9,97.761 c 0.029,-0.5316 0.038,-1.0602 0.1538,-1.5832 0.032,-0.14504 0.076,-0.28717 0.114,-0.43076 0.3884,-1.158 1.0287,-2.2087 1.6402,-3.2588 0.7323,-1.1921 1.6082,-2.2842 2.5193,-3.3425 0.3712,-0.43529 0.7661,-0.84862 1.1597,-1.2633 l 2.014,0.15887 c -0.4276,0.40419 -0.8583,0.80532 -1.2517,1.2439 -0.9375,1.0301 -1.8261,2.1112 -2.5551,3.3014 -0.584,1.0333 -1.1769,2.0762 -1.5426,3.2108 -0.035,0.13749 -0.076,0.27345 -0.1047,0.41247 -0.1039,0.51188 -0.1033,1.0334 -0.053,1.5511 l -2.0935,0 z"
id="path30"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -1,59 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" width="92.721" height="69.828" viewBox="0 0 92.721002 69.828004"><path d="M79.885 0h-67.42c-1.43 0-2.844 1.04-3.163 2.44L.061 43.94c-.31 1.398.594 2.612 2.032 2.612h66.595c1.43 0 2.848-1.262 3.157-2.658L81.09 2.407C81.4 1.005 81.31 0 79.885 0" fill="#2e64b3"/><path d="M90.841 10.948H42.087c-1.432 0-2.849 1.17-3.164 2.57l-8.2 36.995c-.313 1.405.593 2.882 2.025 2.882h48.535c1.43 0 2.845-1.465 3.16-2.866l8.202-36.703c.316-1.393-.364-2.878-1.804-2.878" fill="#56c5f2"/><path d="M42.087 10.948c-1.432 0-2.849 1.295-3.164 2.69l-7.33 32.914h37.095c1.43 0 2.848-1.297 3.157-2.688l7.306-32.916H42.087" fill="#88d6f6"/><path d="M47.711 23.96H25.6c-1.436 0-2.853 1-3.173 2.4L13.207 67c-.323 1.397.582 2.828 2.018 2.828h22.087c1.43 0 2.852-1.496 3.169-2.895l9.221-40.403c.319-1.392-.527-2.562-1.96-2.562" fill="#41b73c"/><path d="M47.711 23.96H25.6c-1.436 0-2.853 1.128-3.173 2.52l-4.592 20.072h27.282l4.585-20.08" fill="#7fcd48"/><path d="M47.711 23.96H36.657l-5.935 26.704c-.312 1.403.594 2.73 2.026 2.73h10.897l6.057-26.714c.319-1.392-.527-2.666-1.96-2.666" fill="#acd91a"/><path d="M47.788 23.96h-11.13l-4.989 22.592h13.525L49.78 26.53c.319-1.398-.558-2.57-1.99-2.57" fill="#fff"/></svg>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="92.721001"
height="69.828003"
viewBox="0 0 92.721002 69.828004"
id="svg2"
version="1.1">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-982.53418)">
<path
id="path26"
style="fill:#2e64b3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 79.884751,982.53414 -67.419406,0 c -1.43116,0 -2.8442404,1.0395 -3.1630904,2.44038 l -9.24120997,41.49898 c -0.31055,1.399 0.59424,2.6124 2.03173997,2.6124 l 66.5952164,0 c 1.42925,0 2.84813,-1.2613 3.15675,-2.6578 l 9.24563,-41.48671 c 0.3105,-1.40237 0.21962,-2.40725 -1.20563,-2.40725" />
<path
id="path28"
style="fill:#56c5f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 90.841251,993.48189 -48.75437,0 c -1.43163,0 -2.84863,1.17088 -3.1635,2.57075 l -8.20125,36.99416 c -0.3125,1.4052 0.59425,2.8823 2.02537,2.8823 l 48.53575,0 c 1.42913,0 2.84425,-1.4648 3.16063,-2.8662 l 8.20112,-36.70313 c 0.3155,-1.39213 -0.36425,-2.87788 -1.80375,-2.87788" />
<path
id="path30"
style="fill:#88d6f6;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 42.086881,993.48189 c -1.43163,0 -2.84863,1.29488 -3.1635,2.69088 l -7.33113,32.91313 37.09575,0 c 1.42925,0 2.84813,-1.2964 3.15675,-2.688 l 7.30613,-32.91601 -37.064,0" />
<path
id="path32"
style="fill:#41b73c;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 47.711001,1006.4936 -22.11137,0 c -1.4355,0 -2.853,1.0009 -3.17238,2.4009 l -9.220746,40.6406 c -0.32275,1.3965 0.58263,2.8271 2.018126,2.8271 l 22.08737,0 c 1.42975,0 2.85213,-1.4956 3.169,-2.8955 l 9.22113,-40.4023 c 0.31887,-1.3921 -0.52688,-2.5625 -1.95988,-2.5625" />
<path
id="path34"
style="fill:#7fcd48;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 47.711001,1006.4936 -22.11137,0 c -1.4355,0 -2.853,1.1289 -3.17238,2.5214 l -4.59225,20.0709 27.28225,0 4.58488,-20.0796" />
<path
id="path36"
style="fill:#acd91a;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 47.711001,1006.4936 -11.05375,0 -5.93512,26.7045 c -0.3125,1.4029 0.59425,2.731 2.02537,2.731 l 10.897,0 6.05763,-26.7153 c 0.31887,-1.392 -0.52688,-2.666 -1.95988,-2.666" />
<path
id="path38"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 47.788131,1006.4936 -11.13088,0 -4.98787,22.5923 13.525,0 4.58437,-20.0215 c 0.31888,-1.3985 -0.5575,-2.5708 -1.99062,-2.5708" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -1,50 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 67.752999 58.881001" height="58.881" width="67.753"><g fill-rule="evenodd"><path d="M59.421 0H7.623C3.51 0 0 3.607 0 7.717v18.172C0 44.108 15.446 58.88 33.88 58.88c18.432 0 33.873-14.773 33.873-32.992V7.717C67.753 3.607 63.535 0 59.42 0" fill="#f89c15"/><path d="M11.638 26.32c0 12.153 9.774 21.848 22.07 21.848 12.298 0 22.075-9.846 22.075-22.163H44.654c0 6.158-4.548 11.16-10.693 11.16-6.152 0-10.693-4.77-10.693-10.845V15.74h-11.63v10.58" fill="#fff"/><path d="M11.638 26.081c0 12.15 9.774 21.967 22.07 21.967 12.298 0 22.075-9.726 22.075-22.043H44.654c0 6.158-4.548 11.04-10.693 11.04-6.152 0-10.693-4.892-10.693-10.964v-10.34h-11.63v10.34M47.435 9.026l-2.598 10.637 10.764 2.748 2.784-10.636-10.95-2.75" fill="#fff"/></g></svg>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
viewBox="0 0 67.752999 58.881001"
height="58.881001"
width="67.752998">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-993.48118)"
id="layer1">
<g
id="g4790">
<path
id="path40"
style="fill:#f89c15;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 59.421119,993.48124 -51.7978198,0 c -4.11329,0 -7.62305002397,3.60688 -7.62305002397,7.71676 l 0,18.1719 c 0,18.2192 15.44536982397,32.9922 33.87886982397,32.9922 18.43263,0 33.87363,-14.773 33.87363,-32.9922 l 0,-18.1719 c 0,-4.10988 -4.21738,-7.71676 -8.33163,-7.71676" />
<path
id="path42"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 11.638439,1019.801 c 0,12.1534 9.77343,21.8482 22.07031,21.8482 12.29737,0 22.07475,-9.8462 22.07475,-22.1631 l -11.129,0 c 0,6.1583 -4.54875,11.1596 -10.69325,11.1596 -6.15188,0 -10.69288,-4.769 -10.69288,-10.8447 l 0,-10.5795 -11.62993,0 0,10.5795" />
<path
id="path44"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 11.638439,1019.5622 c 0,12.1504 9.77343,21.9674 22.07031,21.9674 12.29737,0 22.07475,-9.7266 22.07475,-22.0435 l -11.129,0 c 0,6.1583 -4.54875,11.04 -10.69325,11.04 -6.15188,0 -10.69288,-4.8921 -10.69288,-10.9639 l 0,-10.3407 -11.62993,0 0,10.3407" />
<path
id="path46"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 47.434869,1002.5071 -2.59775,10.6373 10.76425,2.7475 2.78363,-10.6358 -10.95013,-2.749" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 785 B

@ -1,46 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns="http://www.w3.org/2000/svg" width="64.326" height="61.964" viewBox="0 0 64.325997 61.964002"><g fill="#2e64b3"><path d="M4.088 14.555c-5.697 8.183-4.993 18.83-.634 27.526.097.213.21.414.316.619a5 5 0 0 0 .206.396c.032.072.084.151.126.222.07.142.144.273.219.408.14.236.28.476.42.71.079.13.154.26.243.391.149.252.321.502.476.753.07.108.135.213.21.318.223.34.448.677.695 1.008 0 .01.01.018.018.023.038.056.08.11.117.16.21.288.42.568.64.846.074.102.158.205.233.305.2.243.396.485.592.725.075.087.149.178.229.266a27.723 27.723 0 0 0 .83.955c.01.012.019.024.037.035.27.296.546.588.826.877.089.089.177.175.275.269.215.217.43.436.658.65.094.089.187.175.276.261.298.28.597.56.91.828.004 0 .009.01.013.012.051.045.108.09.155.134.274.235.55.468.83.7.112.093.224.181.336.272.233.185.466.362.7.54.12.09.242.183.368.28.252.188.514.372.77.554.093.068.186.136.285.199.023.02.05.04.074.059.257.168.5.33.752.497.111.072.22.142.326.214.392.25.784.49 1.171.723.112.06.224.122.331.184.29.168.584.334.882.493.163.09.327.17.494.254.202.11.411.222.626.331.052.021.103.04.15.065.088.04.172.084.256.126.327.161.662.313 1.008.467.065.031.135.058.205.093.387.168.774.33 1.17.486.095.035.187.077.286.109.359.14.732.278 1.1.41.047.02.09.034.136.05.41.14.816.273 1.232.401.097.028.196.062.298.088.425.128.835.278 1.27.36 27.54 5.02 35.542-16.551 35.542-16.551-6.723 8.75-18.653 11.062-29.953 8.49-.42-.094-.835-.228-1.26-.354a5.084 5.084 0 0 1-.308-.095 37.45 37.45 0 0 1-1.213-.392c-.056-.02-.116-.04-.173-.063a30.491 30.491 0 0 1-1.068-.396c-.098-.043-.2-.078-.299-.115a31.65 31.65 0 0 1-1.157-.485c-.083-.03-.154-.066-.233-.098a73.47 73.47 0 0 1-.97-.455c-.098-.042-.187-.09-.285-.138-.252-.12-.504-.252-.75-.383-.174-.088-.342-.17-.505-.26-.303-.164-.607-.337-.91-.504a3.627 3.627 0 0 0-.304-.176 43.49 43.49 0 0 1-1.175-.72 6.745 6.745 0 0 1-.317-.213 29.08 29.08 0 0 1-.84-.555l-.27-.194a48.514 48.514 0 0 1-.794-.57 13.394 13.394 0 0 0-.35-.265c-.238-.184-.476-.366-.713-.557-.104-.086-.21-.171-.313-.254a29.08 29.08 0 0 1-.892-.752c-.027-.03-.069-.056-.102-.082-.313-.28-.625-.566-.933-.851-.094-.088-.172-.17-.266-.255-.223-.219-.448-.433-.667-.655l-.266-.268a26.37 26.37 0 0 1-.826-.873.343.343 0 0 1-.042-.042 40.01 40.01 0 0 1-.835-.952c-.075-.086-.145-.175-.219-.259-.201-.247-.402-.497-.607-.744-.065-.096-.14-.186-.215-.28a33.82 33.82 0 0 1-.694-.926C5.777 30.411 3.514 18.605 8.53 8.916"/><path d="M21.77 7.656c-4.129 5.925-3.9 13.86-.685 20.13a24.573 24.573 0 0 0 1.819 3.037c.616.886 1.297 1.936 2.123 2.648.29.327.602.644.924.963l.243.24c.308.297.62.589.942.873.01.012.028.024.038.036.004 0 .009.01.009.01.359.317.723.618 1.101.912.088.063.168.134.256.196.374.292.757.571 1.143.847.014 0 .024.014.043.022.167.12.345.233.527.35.079.05.163.111.242.16.284.185.565.357.854.528.042.02.084.044.126.065.242.147.499.291.756.422.089.054.177.096.266.145.177.088.354.182.527.273.023.012.056.025.084.038.364.18.733.345 1.096.51l.247.1c.3.13.602.256.901.37.135.044.261.097.387.142.275.098.556.193.831.284l.378.122c.392.124.789.282 1.204.347 21.256 3.525 26.174-12.85 26.174-12.85-4.428 6.38-13 9.416-22.143 7.042-.41-.105-.812-.222-1.204-.35a4.434 4.434 0 0 1-.36-.115c-.284-.09-.569-.187-.844-.29a14.729 14.729 0 0 1-.382-.141c-.303-.119-.607-.236-.901-.367-.088-.035-.172-.065-.242-.102a32.154 32.154 0 0 1-1.116-.513l-.555-.287c-.112-.056-.219-.11-.317-.161-.248-.128-.476-.264-.71-.401l-.168-.091c-.284-.173-.578-.345-.848-.525-.094-.053-.173-.114-.261-.17a33.09 33.09 0 0 1-.56-.366 36.06 36.06 0 0 1-1.144-.838c-.088-.072-.172-.137-.256-.208-4.013-3.158-7.185-7.478-8.687-12.37-1.587-5.081-1.237-10.785 1.497-15.41"/><path d="M36.635 2.503c-2.435 3.574-2.669 8.014-.99 11.955 1.783 4.19 5.427 7.477 9.673 9.033.172.068.345.124.523.185.08.023.153.049.238.074.247.077.494.17.75.22 11.743 2.267 14.926-6.027 15.78-7.247-2.795 4.018-7.484 4.98-13.237 3.584a13.84 13.84 0 0 1-1.385-.432 18.106 18.106 0 0 1-1.657-.683 17.393 17.393 0 0 1-2.897-1.771C38.282 13.516 35.09 6.067 38.45 0"/></g></svg>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="64.325996"
height="61.964001"
viewBox="0 0 64.325997 61.964002"
id="svg2"
version="1.1">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-990.39819)">
<g
id="g4796">
<path
d="m 4.0875842,1004.9527 c -5.696288,8.1836 -4.99218502,18.8306 -0.633788,27.5269 0.09718,0.2124 0.209475,0.4131 0.316413,0.6181 0.06102,0.1329 0.13085,0.2661 0.205562,0.3965 0.03271,0.072 0.08399,0.1514 0.125975,0.2218 0.07031,0.142 0.144538,0.2728 0.219238,0.4081 0.140137,0.2359 0.279787,0.4756 0.419925,0.7095 0.0791,0.1304 0.1543,0.2612 0.242675,0.3916 0.1489248,0.2524 0.3217748,0.5015 0.4760748,0.7534 0.069825,0.1075 0.13525,0.2124 0.2099625,0.3174 0.223625,0.3408 0.4482375,0.6767 0.6953125,1.0078 0,0.01 0.00927,0.018 0.01855,0.023 0.037113,0.056 0.0791,0.1099 0.1162125,0.1611 0.2099625,0.2872 0.419925,0.567 0.63965,0.8448 0.0747,0.1026 0.1582,0.2051 0.2334,0.3052 0.2001875,0.2432 0.396475,0.4853 0.5917875,0.7255 0.0752,0.087 0.149425,0.1778 0.2290125,0.2662 0.261225,0.315 0.5366125,0.6275 0.8168875,0.9361 0,0 0.00879,0.011 0.013675,0.018 0.00927,0.012 0.01855,0.024 0.037112,0.035 0.2705,0.2969 0.5459,0.588 0.826175,0.8775 0.088375,0.089 0.176749,0.1748 0.274899,0.2685 0.21435,0.2174 0.4292,0.4361 0.6582,0.6505 0.09326,0.089 0.186038,0.1753 0.275388,0.2611 0.298337,0.2804 0.596687,0.5607 0.909187,0.8282 0.0049,0 0.0098,0.01 0.01415,0.012 0.05128,0.045 0.107425,0.089 0.1543,0.1334 0.2749,0.2352 0.550788,0.4687 0.830038,0.6996 0.112375,0.094 0.224125,0.1821 0.3365,0.273 0.233376,0.1845 0.466251,0.3613 0.69925,0.539 0.1215,0.091 0.243125,0.1841 0.369125,0.2803 0.251875,0.1885 0.513125,0.3726 0.7695,0.5547 0.09325,0.068 0.186501,0.1358 0.284626,0.1983 0.0235,0.021 0.05125,0.04 0.07475,0.059 0.256376,0.1679 0.499,0.331 0.7515,0.497 0.11125,0.072 0.21925,0.1421 0.326625,0.2139 0.391625,0.25 0.78325,0.4902 1.170875,0.7236 0.111875,0.059 0.223625,0.1216 0.331125,0.1841 0.289,0.168 0.583375,0.334 0.88175,0.4926 0.163125,0.091 0.326625,0.1705 0.494125,0.254 0.20125,0.1098 0.411125,0.2217 0.626,0.3315 0.05125,0.021 0.1025,0.04 0.149,0.065 0.08837,0.04 0.17225,0.084 0.256251,0.126 0.32725,0.1611 0.662624,0.313 1.008375,0.4669 0.06488,0.031 0.13475,0.058 0.205,0.093 0.386749,0.1679 0.7745,0.329 1.170999,0.4853 0.09375,0.035 0.1865,0.077 0.284625,0.1094 0.359375,0.1402 0.732375,0.2778 1.101,0.4107 0.04687,0.019 0.0885,0.033 0.135375,0.049 0.410625,0.1406 0.816375,0.273 1.231875,0.4018 0.09763,0.028 0.19575,0.062 0.298375,0.088 0.42475,0.128 0.834875,0.2779 1.269,0.3594 27.541,5.02 35.5425,-16.5513 35.5425,-16.5513 -6.722625,8.75 -18.652875,11.062 -29.952625,8.4913 -0.420375,-0.095 -0.8355,-0.2285 -1.25975,-0.355 -0.09863,-0.028 -0.2105,-0.06 -0.308625,-0.095 -0.410125,-0.1235 -0.815875,-0.2568 -1.212375,-0.3921 -0.05625,-0.019 -0.11675,-0.039 -0.172875,-0.063 -0.358875,-0.1235 -0.713375,-0.2587 -1.068375,-0.3959 -0.09812,-0.043 -0.200625,-0.078 -0.298875,-0.1147 -0.392,-0.1539 -0.77875,-0.3194 -1.15675,-0.4854 -0.08388,-0.03 -0.15425,-0.066 -0.233875,-0.098 -0.3305,-0.1518 -0.647875,-0.3008 -0.970125,-0.455 -0.09775,-0.042 -0.186625,-0.089 -0.28475,-0.1378 -0.251875,-0.1191 -0.503375,-0.2519 -0.7505,-0.3827 -0.17275,-0.088 -0.34125,-0.17 -0.504375,-0.2608 -0.30325,-0.1631 -0.606375,-0.336 -0.909625,-0.5039 -0.09375,-0.063 -0.19625,-0.1172 -0.30375,-0.1753 -0.391625,-0.2329 -0.7885,-0.4737 -1.17525,-0.7207 -0.111875,-0.07 -0.214875,-0.1401 -0.317375,-0.2125 -0.28475,-0.1791 -0.565,-0.3686 -0.839875,-0.5551 -0.08888,-0.063 -0.17725,-0.1284 -0.2705,-0.1939 -0.266125,-0.1865 -0.527375,-0.375 -0.793,-0.5692 -0.11225,-0.088 -0.229,-0.1769 -0.350125,-0.2656 -0.23825,-0.1842 -0.476,-0.3663 -0.71375,-0.5577 -0.103125,-0.086 -0.2095,-0.1705 -0.313,-0.254 -0.307625,-0.247 -0.59675,-0.4951 -0.891125,-0.7513 -0.02787,-0.03 -0.06937,-0.056 -0.102625,-0.082 -0.3125,-0.2797 -0.625,-0.5663 -0.933,-0.8515 -0.09337,-0.088 -0.171875,-0.1703 -0.265625,-0.2543 -0.223624,-0.2193 -0.447749,-0.4337 -0.666999,-0.6558 -0.09325,-0.093 -0.17775,-0.1792 -0.266125,-0.2676 -0.280251,-0.2828 -0.55575,-0.5743 -0.82575,-0.8726 -0.01412,-0.012 -0.02825,-0.025 -0.0425,-0.042 -0.284125,-0.3125 -0.5595,-0.63 -0.834375,-0.9523 -0.07525,-0.086 -0.145125,-0.1747 -0.21925,-0.2587 -0.20125,-0.2471 -0.401876,-0.4971 -0.607,-0.7442 -0.06487,-0.096 -0.140125,-0.1865 -0.21475,-0.2802 -0.237875,-0.3057 -0.466375,-0.6109 -0.694888,-0.9259 -6.2709995,-8.5546 -8.5336868,-20.3607 -3.5175745,-30.0487"
style="fill:#2e64b3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path48" />
<path
d="m 21.770684,998.0544 c -4.129375,5.9252 -3.900375,13.8593 -0.686,20.1293 0.53175,1.0498 1.138125,2.0698 1.81925,3.0376 0.61625,0.8862 1.297375,1.936 2.123125,2.6479 0.289,0.3268 0.6015,0.6441 0.92375,0.9629 0.07963,0.08 0.15925,0.1572 0.24275,0.2407 0.308125,0.2959 0.620625,0.5879 0.942375,0.8722 0.0098,0.012 0.02787,0.024 0.03762,0.036 0.0044,0 0.0093,0.01 0.0093,0.01 0.358875,0.3174 0.723125,0.6186 1.101125,0.9125 0.08837,0.063 0.167875,0.1334 0.25625,0.1959 0.373625,0.292 0.756375,0.5712 1.143125,0.8466 0.01412,0 0.02338,0.014 0.0425,0.022 0.1675,0.1211 0.34475,0.2329 0.526875,0.3496 0.079,0.051 0.163,0.1119 0.242625,0.1611 0.284125,0.1847 0.5645,0.3565 0.8535,0.5274 0.0425,0.021 0.084,0.044 0.126,0.065 0.242625,0.147 0.499,0.2915 0.756375,0.4224 0.08838,0.054 0.17675,0.096 0.265625,0.1446 0.17725,0.088 0.3545,0.1816 0.526875,0.2729 0.02338,0.012 0.05662,0.025 0.08438,0.038 0.36375,0.1796 0.7325,0.3448 1.09625,0.5108 0.08837,0.035 0.1635,0.065 0.247,0.1001 0.299375,0.1284 0.602125,0.2549 0.900875,0.3686 0.134875,0.045 0.26125,0.098 0.38725,0.1425 0.274875,0.098 0.555125,0.1934 0.830625,0.2843 0.13475,0.044 0.25625,0.082 0.377875,0.1216 0.391625,0.124 0.788625,0.2826 1.203625,0.3471 21.256875,3.5254 26.17425,-12.8491 26.17425,-12.8491 -4.427625,6.3784 -12.999,9.4155 -22.143,7.041 -0.410625,-0.105 -0.8115,-0.2221 -1.204125,-0.3501 -0.126,-0.033 -0.23725,-0.072 -0.358875,-0.1143 -0.284625,-0.091 -0.569875,-0.187 -0.84475,-0.2895 -0.126,-0.046 -0.256375,-0.093 -0.38225,-0.1421 -0.30325,-0.1186 -0.6065,-0.2354 -0.900875,-0.3663 -0.08837,-0.035 -0.172375,-0.065 -0.24225,-0.1025 -0.377875,-0.1636 -0.7515,-0.3388 -1.11525,-0.5131 -0.1865,-0.096 -0.368625,-0.189 -0.555125,-0.2871 -0.111875,-0.056 -0.21925,-0.1099 -0.317375,-0.1611 -0.247625,-0.128 -0.476125,-0.2638 -0.7095,-0.4009 -0.05513,-0.03 -0.111875,-0.059 -0.168,-0.091 -0.284125,-0.1724 -0.578625,-0.3452 -0.848625,-0.5249 -0.09375,-0.053 -0.172875,-0.1142 -0.26125,-0.1698 -0.187,-0.1193 -0.368625,-0.2379 -0.5605,-0.3663 -0.38675,-0.2686 -0.764625,-0.5527 -1.142625,-0.8379 -0.08888,-0.072 -0.17275,-0.1372 -0.25675,-0.2075 -4.01275,-3.1587 -7.185125,-7.4786 -8.687,-12.3706 -1.5865,-5.0811 -1.236875,-10.7851 1.4975,-15.4106"
style="fill:#2e64b3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path50" />
<path
d="m 36.635434,992.901 c -2.4355,3.5738 -2.669,8.0137 -0.98975,11.9556 1.78275,4.1904 5.42625,7.477 9.672375,9.0326 0.172375,0.068 0.34525,0.1241 0.5225,0.1846 0.0795,0.023 0.15375,0.049 0.23825,0.074 0.247,0.077 0.494125,0.1704 0.7505,0.2197 11.743125,2.2675 14.92575,-6.026 15.77925,-7.2461 -2.794375,4.0175 -7.483375,4.9805 -13.23625,3.5835 -0.45275,-0.1099 -0.947375,-0.273 -1.38575,-0.4316 -0.559625,-0.1983 -1.11475,-0.4288 -1.65625,-0.6836 -1.01225,-0.4918 -1.99225,-1.0845 -2.8975,-1.7705 -5.150875,-3.9053 -8.34175,-11.354 -4.982875,-17.4214"
style="fill:#2e64b3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path52" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

@ -0,0 +1 @@
<svg id="Ebene_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><style>.st0{fill:#3d3d3d}</style><path class="st0" d="M52.9 46.2l-3.6-3.6c-9.9-9.9-25.9-9.9-35.8 0s-9.9 25.9 0 35.8 25.9 9.9 35.8 0L60 67.7l10.7 10.8c9.9 9.9 25.9 9.9 35.8 0s9.9-25.9 0-35.8-25.9-9.9-35.8 0L42.1 71.3c-5.9 5.9-15.5 5.9-21.5 0-5.9-5.9-5.9-15.5 0-21.5s15.5-5.9 21.5 0l3.6 3.6 7.2-7.2zm46.5 25.1c-5.9 5.9-15.5 5.9-21.5 0L67.2 60.6l10.7-10.7c5.9-5.9 15.5-5.9 21.5 0s5.9 15.5 0 21.4z"/></svg>

After

Width:  |  Height:  |  Size: 477 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B

@ -1,20 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> <svg width="256" height="296" viewBox="0 0 256 296" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid"><defs><radialGradient fx="50%" fy="50%" id="a"><stop stop-color="#93B4E7" offset="0%"/><stop stop-color="#B9D1F8" offset="59.273%"/><stop stop-color="#9CB6E0" offset="100%"/></radialGradient></defs><path d="M128.032.456L.298 74.203v147.495l127.734 73.748 127.735-73.748V74.203L128.032.456z" fill="url(#a)"/><path d="M128.034 75.263L64.69 111.834v73.144l63.344 36.572 63.344-36.572v-73.144l-63.344-36.571z" fill="#6F95DB"/><path d="M128 0L0 74.25l128 69.693 128-69.238L128 0zm0 153.509L0 221.38l128 73.793 127.544-74.249L128 153.51z" fill="#FFF" fill-opacity=".1"/></svg>
<svg width="256px" height="296px" viewBox="0 0 256 296" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
<defs>
<radialGradient cx="50%" cy="50%" fx="50%" fy="50%" r="50%" id="radialGradient-1">
<stop stop-color="#93B4E7" offset="0%"></stop>
<stop stop-color="#B9D1F8" offset="59.2733578%"></stop>
<stop stop-color="#9CB6E0" offset="100%"></stop>
</radialGradient>
</defs>
<g>
<path d="M128.032342,0.455516014 L0.297907473,74.2031032 L0.297907473,221.698278 L128.032342,295.44632 L255.767231,221.698278 L255.767231,74.2031032 L128.032342,0.455516014 Z" fill="url(#radialGradient-1)"></path>
<path d="M128.033708,75.2626335 L64.6901068,111.834192 L64.6901068,184.977765 L128.033708,221.549779 L191.378221,184.977765 L191.378221,111.834192 L128.033708,75.2626335 Z" fill="#6F95DB"></path>
<g fill="#FFFFFF" fill-opacity="0.1">
<path d="M128,0 L0,74.2491103 L128,143.94306 L256,74.7046263 L128,0 Z"></path>
</g>
<g transform="translate(0.000000, 153.508897)" fill="#FFFFFF" fill-opacity="0.1">
<path d="M128,0 L0,67.8718861 L128,141.66548 L255.544484,67.4163701 L128,0 Z"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 688 B

@ -217,7 +217,7 @@ var wappalyzer = (function() {
message = JSON.stringify(message); message = JSON.stringify(message);
} }
driver('log', { message: '[wappalyzer ' + type + '] ' + message, type: type }); driver('log', { message: message, type: type });
}, },
/** /**

Loading…
Cancel
Save