This commit is contained in:
telangpu
2026-05-07 23:00:28 +08:00
parent 40067a1ea1
commit f421220d77
273 changed files with 34552 additions and 0 deletions

5
a4_se_post_instabox/.env Normal file
View File

@@ -0,0 +1,5 @@
# 平台本地运行端口号
VITE_PORT = 8848
# 是否隐藏首页 隐藏 true 不隐藏 false 勿删除VITE_HIDE_HOME只需在.env文件配置
VITE_HIDE_HOME = false

View File

@@ -0,0 +1,11 @@
# 平台本地运行端口号
VITE_PORT = 8848
# 开发环境读取配置文件路径
VITE_PUBLIC_PATH = ./
# 网站前缀
VITE_BASE_URL = "up.xx.sczqb6.top"
# 开发环境路由历史模式Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数"
VITE_ROUTER_HISTORY = "hash"

View File

@@ -0,0 +1,16 @@
# 网站前缀
VITE_BASE_URL=/
# 线上环境平台打包路径
VITE_PUBLIC_PATH = ./
# 线上环境路由历史模式Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数"
VITE_ROUTER_HISTORY = "hash"
# 是否在打包时使用cdn替换本地库 替换 true 不替换 false
VITE_CDN = false
# 是否启用gzip压缩或brotli压缩分两种情况删除原始文件和不删除原始文件
# 压缩时不删除原始文件的配置gzip、brotli、both同时开启 gzip 与 brotli 压缩、none不开启压缩默认
# 压缩时删除原始文件的配置gzip-clear、brotli-clear、both-clear同时开启 gzip 与 brotli 压缩、none不开启压缩默认
VITE_COMPRESSION = "none"

View File

@@ -0,0 +1,25 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier'
],
overrides: [
{
files: [
'cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}'
],
'extends': [
'plugin:cypress/recommended'
]
}
],
parserOptions: {
ecmaVersion: 'latest'
}
}

28
a4_se_post_instabox/.gitignore vendored Normal file
View File

@@ -0,0 +1,28 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
/cypress/videos/
/cypress/screenshots/
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

View File

@@ -0,0 +1 @@
{}

View File

@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
}

View File

@@ -0,0 +1,68 @@
# vue3-clean-architecture
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
## Type Support for `.vue` Imports in TS
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
1. Disable the built-in TypeScript Extension
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
## Customize configuration
See [Vite Configuration Reference](https://vitejs.dev/config/).
## Project Setup
```sh
npm install
```
### Compile and Hot-Reload for Development
```sh
npm run dev
```
### Type-Check, Compile and Minify for Production
```sh
npm run build
```
### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
```sh
npm run test:e2e:dev
```
This runs the end-to-end tests against the Vite development server.
It is much faster than the production build.
But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments):
```sh
npm run build
npm run test:e2e
```
### Lint with [ESLint](https://eslint.org/)
```sh
npm run lint
```

View File

@@ -0,0 +1,8 @@
import { defineConfig } from 'cypress'
export default defineConfig({
e2e: {
specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}',
baseUrl: 'http://localhost:4173'
}
})

View File

@@ -0,0 +1,8 @@
// https://docs.cypress.io/api/introduction/api.html
describe('My First Test', () => {
it('visits the app root url', () => {
cy.visit('/')
cy.contains('h1', 'You did it!')
})
})

View File

@@ -0,0 +1,10 @@
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["./**/*", "../support/**/*"],
"compilerOptions": {
"isolatedModules": false,
"target": "es5",
"lib": ["es5", "dom"],
"types": ["cypress"]
}
}

View File

@@ -0,0 +1,5 @@
{
"name": "Using fixtures to represent data",
"email": "hello@cypress.io",
"body": "Fixtures are a great way to mock data for responses to routes"
}

View File

@@ -0,0 +1,39 @@
/// <reference types="cypress" />
// ***********************************************
// This example commands.ts shows you how to
// create various custom commands and overwrite
// existing commands.
//
// For more comprehensive examples of custom
// commands please read more here:
// https://on.cypress.io/custom-commands
// ***********************************************
//
//
// -- This is a parent command --
// Cypress.Commands.add('login', (email, password) => { ... })
//
//
// -- This is a child command --
// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
//
//
// -- This is a dual command --
// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
//
//
// -- This will overwrite an existing command --
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
//
// declare global {
// namespace Cypress {
// interface Chainable {
// login(email: string, password: string): Chainable<void>
// drag(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
// dismiss(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
// }
// }
// }
export {}

View File

@@ -0,0 +1,20 @@
// ***********************************************************
// This example support/index.js is processed and
// loaded automatically before your test files.
//
// This is a great place to put global configuration and
// behavior that modifies Cypress.
//
// You can change the location of this file or turn off
// automatically serving support files with the
// 'supportFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/configuration
// ***********************************************************
// Import commands.js using ES2015 syntax:
import './commands'
// Alternatively you can use CommonJS syntax:
// require('./commands')

4
a4_se_post_instabox/env.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
VITE_BASE_URL: string;
}

View File

@@ -0,0 +1,161 @@
<!DOCTYPE html>
<html lang="sv-SE" style="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="shortcut icon"
href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAAEEfUpiAAAABGdBTUEAALGPC/xhBQAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACPTkDJAAAFJElEQVRYCbVXTWgVVxT+7uRPUxA1VmNIMItCMdBmk6JdaIwpNgZUCroSV26sP4tWxZ/aWFJKq0gQxWThTiwILopZRCuG5OmigWRj1Wqxu9SkoXaRaJ5a9U3Pd+/MvDt3Ju89W3pgZu655/eee8+5Z4AA/NbWJxyW8+WvXetjxw74Ap6mtLcDO3eSBsWX5uAgBOE657e1fUxcuVRPc61cCdTX66G2gvv3NcKXUdre/j5evrwdzQYDdfOmohvnImImA1RWAvwK0J4Hz+sPBIA9e4B9+yKUA22CA9c7TRQTeYZt2yoxNXUHSk2oTKaNDATNkCYtjL8LYwOdfGp4g/f27Wbg+/X+unW1noT0LT1TLiGg9xLlCHK5SRMpzgwOAs+eAffuRXQO8gytrcDdu0BLS4xBiQ/dYubL2GyA6EiKp13i8UiCwfOWcy6KAxF/48YqZLN/RY5z0gWlvtZKg3kTJwrOzj53eQvi4pUo+tDzuQNpwtyk5mZgYABoagL681uuFfv+atmgaU9vn22qqsrEe3gYcookjhLIvj7g4UObKxwv8Lj3Iaa/L14AHR3Ac1kRBbkvtO6EP5QxMWAepcHChcCVK8CrV8CWLcDT+KkR433RLsh+jkv0TeKkKXPnZBvV8PAfkYKQzgOIXO5XwReEc9GXFjOZ3REug4QCEnWO53KHZdgiXk2IqzewdOln6vLlv0m3Iaag0LHUQkrNorq6Rl29KpE2ECl4oxhUVDSrwcGfqUJniwj/9EYBlBKkjz0V6KDJqTIOOe/GRuDAAcj6HYKgzBkBL4h4kmG3BLu6Gli/HqitBRoa4jxSKZgGZV+tWPFtnCJYVxewaROwWhzj+OxZc5hGR+Os2WyNqbX29MmTwKpVkAQDuruBM2cMtbfX5jJj3/9IBzFG4Zmn8JEjeeENG+RwpJx2peqSCrhmV/j6dWDr1pidABlLKiDltlwU9IKWKUxwE4lznvcd01lyNgU6O00MSGJRuXYtwaSGhn7UJzG19CfYnYmgNpolBBXWYZkbNfeK7G9wlJnXsp7lc0tYFFNMo1MVJVPIInnRK1v2aYhb3xkx8q42Zk0mFFg0PQxypUuU8tpLFhlXwOAzsjnfy9PtGnTZUx0IjP4gRtOT1NVSDOfNqNQnac7EHAgMj4rh0mtzMeM2XTZfHPnAdiRKBF1NpV/434zTES5MbGhbgWM6AgUOju1/fLxoEXDhgpyK4Fgwc1k7x8eBJ7r1jPO7WHBBKX0BvX6dTFNXgDhv+YMHAWY5m6lDh8ztz0LF/vHECWD+fOD8eeDixTQN8bmyso5yCcnh+GwKVlEBHD8OrFmTJ+ZyxjhpoeGQyiiUAmKb9Vzq7xzABunUqXhbwlDv329W3NNjVhyKj40BR48CbG9KgxY2sfHeyBZkaGns2DFgehrYtcuU+tOnzV3BcBNomJX70SPg0iWALVEpILZZzW8U5b11C9i82ayWN968eUaEVyQNT8gaeG2w/1q8GAhb9WKKxbbS/enU1J/CW2qVAxobgclJYO9e45ht6MED88/ChrAwzGDZsrdNGrKf8/3f5DH/FIUF41R2HjU1xqHiRo0sOzSl3mFB0oVIVyZp2WRyJK69BCybNblfuvER3R7yBhTQEbDNyOX8njgyoKuWTfivY5Zh3++UX6c7tqqEAyEx+GP6QvDP/9XWUBFDDfTIir+xG2KSQpjTgZAh/OrD+vhxmxQuSQc0iVN1YqBO000Lz3T+RaplP5YsGUpr5UNd9vcfsm7uPPXRNBYAAAAASUVORK5CYII=">
<title>Instabox ♥ Okrånglig frakt</title>
<link rel="preload" href="/Static_zy/_next/static/css/5c6fd553fc49fa69.css" as="style">
<link rel="stylesheet" href="/Static_zy/_next/static/css/5c6fd553fc49fa69.css" data-n-g="">
<link rel="preload" href="/Static_zy/_next/static/css/e100b565efd85d98.css" as="style"><noscript data-n-css=""></noscript>
<style data-n-href="/Static_zy/_next/static/css/e100b565efd85d98.css">
.heroImage_container__QViEh {
background-size: cover;
background-position: 50%;
position: relative;
min-height: 400px;
overflow-x: hidden;
background-image: var(--background-image);
background-color: var(--background-color)
}
.heroImage_blendMode_backDrop__H_tPu {
background-image: var(--background-image), linear-gradient(to bottom, rgba(0, 0, 0, .23), rgba(0, 0, 0, .23));
background-blend-mode: multiply
}
.heroImage_blendMode_overlay__GiEur {
background-image: var(--background-image), linear-gradient(to bottom, hsla(0, 0%, 100%, .3), hsla(0, 0%, 100%, .3));
background-blend-mode: overlay
}
.heroImage_fullscreen__J8_0U {
--height: 90vh;
min-height: calc(var(--height) - var(--header-height))
}
@media screen and (min-width:768px) {
.heroImage_fullscreen__J8_0U {
--height: 100vh
}
}
.heroImage_content__zz7hO {
position: absolute;
width: 100%
}
.heroImage_content_bottom___5hdz {
bottom: var(--gap-md)
}
.heroImage_content_top__Y7Qoj {
top: var(--gap-md)
}
.heroImage_content_center__fDbI1 {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center
}
.textWithImage_container____DpW {
position: relative;
background-color: var(--color-better-blush);
padding: var(--spacing-zl) 0;
overflow-x: hidden
}
.textWithImage_container____DpW+.textWithImage_container____DpW {
padding-top: 0
}
.textWithImage_image__56j1J>span {
border-radius: 20px
}
@media screen and (min-width:992px) {
.textWithImage_image__56j1J {
max-width: 595px;
max-height: 568px
}
}
.textWithImage_image__56j1J.textWithImage_rtl__dGREw {
margin-right: 0;
margin-left: auto
}
.textWithImage_inlineImage__NcNip>span {
border-radius: 20px
}
.textWithImage_animation__PVYNh {
background-color: var(--color-silly-salmon);
border-radius: 20px;
padding: var(--spacing-md) var(--spacing-xs) 0;
overflow-y: hidden
}
.pageSection_container__C8uoD {
padding: var(--gap-xxl) 0
}
.partner_card__9JosG {
min-height: 100px;
cursor: pointer;
transition: background-color .15s, transform .3s ease
}
.partner_card__9JosG:hover {
background-color: var(--color-white);
transform: scale(1.15)
}
.partner_card__9JosG,
.partner_link__AKrxI {
display: inline-flex;
align-items: center;
justify-content: center
}
.partnerGrid_grid__fGudu {
--max-col-w: 150px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(var(--max-col-w), 1fr));
justify-content: center;
grid-gap: var(--gap-md);
gap: var(--gap-md);
padding-top: var(--gap-md)
}
@media screen and (min-width:768px) {
.partnerGrid_grid__fGudu {
--max-col-w: 250px
}
}
.homePage_row__9nhA_ {
--gutter-x: 3rem;
--gutter-y: 3rem
}
/*# sourceMappingURL=e100b565efd85d98.css.map*/
</style>
<link rel="stylesheet" type="text/css" href="/Static_zy/_next/static/css/b9e96c1ab25a9ea3.css">
</head>
<body class="dpdgroup_site">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>

View File

@@ -0,0 +1,396 @@
/**
* 静态资源提取脚本
* 从 header.html 和 footer.html 中提取 base64 图片、内联 CSS 和字体
*
* 功能:
* 1. 提取 base64 图片到 assets/images/
* 2. 提取所有内联 CSS 到 assets/css/
* 3. 提取字体文件到 assets/fonts/
* 4. 去除所有 meta 标签
* 5. 去除所有 script 标签
* 6. 只保留 body 内的内容
* 7. 把引入的 style 放到顶部
* 8. 给所有 HTML 属性值自动加上双引号
*
* 使用方法:
* - node extract-resources.js # 正常运行,从备份恢复
* - node extract-resources.js --keep # 保持当前文件,不从备份恢复
*/
const fs = require('fs');
const path = require('path');
// 检查命令行参数
const KEEP_CURRENT = process.argv.includes('--keep');
const PUBLIC_DIR = path.join(__dirname, 'public/Static_zy');
const STATIC_DIR = path.join(__dirname, 'public/Static_zy/st');
const FILES_TO_PROCESS = ['footer.html'];
// const FILES_TO_PROCESS = ['home.html', 'page2.html', 'page3.html', 'page4.html', 'page5.html'];
// 创建资源目录 (public)
const ASSETS_DIR = path.join(STATIC_DIR, 'assets');
const IMG_DIR = path.join(ASSETS_DIR, 'images');
const CSS_DIR = path.join(ASSETS_DIR, 'css');
const FONTS_DIR = path.join(ASSETS_DIR, 'fonts');
// 清理旧资源文件的函数
function cleanDirectory(dir) {
if (fs.existsSync(dir)) {
const files = fs.readdirSync(dir);
files.forEach(file => {
const filePath = path.join(dir, file);
if (fs.statSync(filePath).isFile()) {
fs.unlinkSync(filePath);
}
});
}
}
[ASSETS_DIR, IMG_DIR, CSS_DIR, FONTS_DIR].forEach(dir => {
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir, { recursive: true });
}
});
// 清理旧资源文件
console.log('🧹 清理旧资源文件...');
cleanDirectory(IMG_DIR);
cleanDirectory(CSS_DIR);
cleanDirectory(FONTS_DIR);
console.log('🚀 开始提取静态资源...\n');
console.log(`📂 工作目录: ${PUBLIC_DIR}\n`);
FILES_TO_PROCESS.forEach(filename => {
const filePath = path.join(PUBLIC_DIR, filename);
const backupPath = filePath + '.backup';
if (!fs.existsSync(filePath)) {
console.log(`⚠️ 文件不存在: ${filename}`);
return;
}
// 创建备份
if (!fs.existsSync(backupPath)) {
fs.copyFileSync(filePath, backupPath);
console.log(`📄 处理文件: ${filename} (已创建备份)`);
} else if (!KEEP_CURRENT) {
// 如果备份存在且未指定 --keep从备份恢复
fs.copyFileSync(backupPath, filePath);
console.log(`📄 处理文件: ${filename} (从备份恢复)`);
} else {
console.log(`📄 处理文件: ${filename} (保持当前版本)`);
}
let content = fs.readFileSync(filePath, 'utf8');
const originalSize = content.length;
let imageCount = 0;
let cssCount = 0;
let fontCount = 0;
// 1. 提取 base64 图片
console.log(' 提取 base64 图片...');
content = content.replace(/url\s*\(\s*["']?(data:image\/([^;]+);base64,([^"')]+))["']?\s*\)/gi,
(match, dataUrl, imageType, base64Data) => {
imageCount++;
// 修复图片扩展名,处理 svg+xml 等情况
let ext = imageType.split('/').pop();
if (ext.includes('svg')) {
ext = 'svg';
} else if (ext.includes('+')) {
ext = ext.split('+')[0];
}
const imageName = `${filename.replace('.html', '')}_img_${imageCount}.${ext}`;
const imagePath = path.join(IMG_DIR, imageName);
try {
const buffer = Buffer.from(base64Data, 'base64');
fs.writeFileSync(imagePath, buffer);
return `url("/Static_zy/st/assets/images/${imageName}")`;
} catch (e) {
console.log(` ⚠️ 无法保存图片 ${imageName}:`, e.message);
return match;
}
}
);
// 2. 提取 img src 中的 base64 (有引号的)
content = content.replace(/<img([^>]*?)src\s*=\s*["'](data:image\/([^;]+);base64,([^"']+))["']([^>]*)>/gi,
(match, beforeAttrs, dataUrl, imageType, base64Data, afterAttrs) => {
imageCount++;
// 修复图片扩展名
let ext = imageType.split('/').pop();
if (ext.includes('svg')) {
ext = 'svg';
} else if (ext.includes('+')) {
ext = ext.split('+')[0];
}
const imageName = `${filename.replace('.html', '')}_inline_${imageCount}.${ext}`;
const imagePath = path.join(IMG_DIR, imageName);
try {
const buffer = Buffer.from(base64Data, 'base64');
fs.writeFileSync(imagePath, buffer);
// 确保属性间有正确的空格
const before = beforeAttrs ? ' ' + beforeAttrs.trim() : '';
const after = afterAttrs ? ' ' + afterAttrs.trim() : '';
return `<img${before} src="/Static_zy/st/assets/images/${imageName}"${after}>`;
} catch (e) {
console.log(` ⚠️ 无法保存图片 ${imageName}:`, e.message);
return match;
}
}
);
// 3. 提取 img src 中的 base64 (没有引号的,直到遇到空白字符或>)
content = content.replace(/<img([^>]*?)src\s*=\s*(data:image\/([^;\s>]+);base64,([^\s>]+))([^>]*)>/gi,
(match, beforeAttrs, dataUrl, imageType, base64Data, afterAttrs) => {
imageCount++;
// 修复图片扩展名
let ext = imageType.split('/').pop();
if (ext.includes('svg')) {
ext = 'svg';
} else if (ext.includes('+')) {
ext = ext.split('+')[0];
}
const imageName = `${filename.replace('.html', '')}_inline_${imageCount}.${ext}`;
const imagePath = path.join(IMG_DIR, imageName);
try {
const buffer = Buffer.from(base64Data, 'base64');
fs.writeFileSync(imagePath, buffer);
// 确保属性间有正确的空格
const before = beforeAttrs ? ' ' + beforeAttrs.trim() : '';
const after = afterAttrs ? ' ' + afterAttrs.trim() : '';
return `<img${before} src="/Static_zy/st/assets/images/${imageName}"${after}>`;
} catch (e) {
console.log(` ⚠️ 无法保存图片 ${imageName}:`, e.message);
return match;
}
}
);
// 4. 提取 CSS 变量中的 base64
content = content.replace(/--[^:]+:\s*url\s*\(\s*["']?(data:image\/([^;]+);base64,([^"')]+))["']?\s*\)/gi,
(match, dataUrl, imageType, base64Data) => {
imageCount++;
// 修复图片扩展名
let ext = imageType.split('/').pop();
if (ext.includes('svg')) {
ext = 'svg';
} else if (ext.includes('+')) {
ext = ext.split('+')[0];
}
const imageName = `${filename.replace('.html', '')}_var_${imageCount}.${ext}`;
const imagePath = path.join(IMG_DIR, imageName);
try {
const buffer = Buffer.from(base64Data, 'base64');
fs.writeFileSync(imagePath, buffer);
const varName = match.split(':')[0];
return `${varName}: url("/Static_zy/st/assets/images/${imageName}")`;
} catch (e) {
console.log(` ⚠️ 无法保存图片 ${imageName}:`, e.message);
return match;
}
}
);
// 5. 提取所有内联 CSS (style 标签)
console.log(' 提取内联 CSS...');
const cssLinks = []; // 用于收集所有 CSS 链接
const styleMatches = content.match(/<style[^>]*>([\s\S]*?)<\/style>/gi);
if (styleMatches && styleMatches.length > 0) {
styleMatches.forEach((styleTag, index) => {
const cssContent = styleTag.replace(/<\/?style[^>]*>/gi, '').trim();
// 提取所有 CSS不管大小
if (cssContent.length > 0) {
cssCount++;
const cssName = `${filename.replace('.html', '')}_styles_${cssCount}.css`;
const cssPath = path.join(CSS_DIR, cssName);
fs.writeFileSync(cssPath, cssContent);
// 收集 CSS 链接,稍后会统一放到顶部
cssLinks.push(`<link rel="stylesheet" href="/Static_zy/st/assets/css/${cssName}">`);
// 先删除原 style 标签
content = content.replace(styleTag, '');
}
});
}
// 6. 提取字体 (data:font)
console.log(' 提取字体文件...');
content = content.replace(/url\s*\(\s*["']?(data:font\/([^;]+);base64,([^"')]+))["']?\s*\)/gi,
(match, dataUrl, fontType, base64Data) => {
fontCount++;
const fontExt = fontType.includes('woff2') ? 'woff2' :
fontType.includes('woff') ? 'woff' :
fontType.includes('ttf') ? 'ttf' : 'font';
const fontName = `${filename.replace('.html', '')}_font_${fontCount}.${fontExt}`;
const fontPath = path.join(FONTS_DIR, fontName);
try {
const buffer = Buffer.from(base64Data, 'base64');
fs.writeFileSync(fontPath, buffer);
return `url("/Static_zy/st/assets/fonts/${fontName}")`;
} catch (e) {
console.log(` ⚠️ 无法保存字体 ${fontName}:`, e.message);
return match;
}
}
);
// 7. 提取 woff2 字体 (特殊处理)
content = content.replace(/url\s*\(\s*data:application\/font-woff2;charset=utf-8;base64,([^)]+)\)/gi,
(match, base64Data) => {
fontCount++;
const fontName = `${filename.replace('.html', '')}_font_${fontCount}.woff2`;
const fontPath = path.join(FONTS_DIR, fontName);
try {
const buffer = Buffer.from(base64Data, 'base64');
fs.writeFileSync(fontPath, buffer);
return `url("/Static_zy/st/assets/fonts/${fontName}")`;
} catch (e) {
console.log(` ⚠️ 无法保存字体 ${fontName}:`, e.message);
return match;
}
}
);
// 8. 去除 DOCTYPE 声明
console.log(' 去除 DOCTYPE 和 HTML 注释...');
let removedCount = 0;
if (content.match(/<!DOCTYPE[^>]*>/i)) {
content = content.replace(/<!DOCTYPE[^>]*>/gi, '');
removedCount++;
}
// 去除所有 HTML 注释(包括多行注释)
const commentCount = (content.match(/<!--[\s\S]*?-->/g) || []).length;
content = content.replace(/<!--[\s\S]*?-->/g, '');
removedCount += commentCount;
if (removedCount > 0) {
console.log(` - 已删除 DOCTYPE 和 ${commentCount} 个 HTML 注释`);
}
// 9. 去除所有 meta、title 和 link 标签
console.log(' 去除 meta、title 和 link 标签...');
const metaCount = (content.match(/<meta[^>]*>/gi) || []).length;
content = content.replace(/<meta[^>]*>/gi, '');
const titleCount = (content.match(/<title[^>]*>[\s\S]*?<\/title>/gi) || []).length;
content = content.replace(/<title[^>]*>[\s\S]*?<\/title>/gi, '');
// 去除 link 标签canonical、icon、preload 等,但不包括我们生成的 stylesheet
const linkCount = (content.match(/<link(?![^>]*rel=["']stylesheet["'])[^>]*>/gi) || []).length;
content = content.replace(/<link(?![^>]*rel=["']stylesheet["'])[^>]*>/gi, '');
if (metaCount > 0 || titleCount > 0 || linkCount > 0) {
console.log(` - 已删除 ${metaCount} 个 meta、${titleCount} 个 title 和 ${linkCount} 个 link 标签`);
}
// 10. 去除所有 script 标签(包括内联和外部脚本)
console.log(' 去除 script 标签...');
const scriptCount = (content.match(/<script[^>]*>[\s\S]*?<\/script>/gi) || []).length;
content = content.replace(/<script[^>]*>[\s\S]*?<\/script>/gi, '');
if (scriptCount > 0) {
console.log(` - 已删除 ${scriptCount} 个 script 标签`);
}
// 11. 提取 body 内容并重组 HTML
console.log(' 重组 HTML 结构...');
const bodyMatch = content.match(/<body[^>]*>([\s\S]*?)<\/body>/i);
if (bodyMatch) {
const bodyContent = bodyMatch[1];
// 重新构建 HTMLCSS 链接 + body 内容
let newContent = '';
// 将所有 CSS 链接放到顶部
if (cssLinks.length > 0) {
newContent = cssLinks.join('\n') + '\n\n';
}
// 添加 body 内容
newContent += bodyContent;
content = newContent;
console.log(` - 已提取 body 内容并移除其他标签`);
} else {
// 如果找不到 body 标签,尝试去除 html、head、body 等标签
content = content.replace(/<\/?html[^>]*>/gi, '');
content = content.replace(/<head[^>]*>[\s\S]*?<\/head>/gi, '');
content = content.replace(/<\/?body[^>]*>/gi, '');
// 将 CSS 链接放到最前面
if (cssLinks.length > 0) {
content = cssLinks.join('\n') + '\n\n' + content;
}
console.log(` - 已去除 HTML 结构标签`);
}
// 清理多余的空行
content = content.replace(/\n\s*\n\s*\n/g, '\n\n');
// 12. 给所有HTML属性值加上引号
console.log(' 给HTML属性加上引号...');
// 匹配没有引号的属性值:属性名=值(值不以引号开头,且到空格或>结束)
// 排除已经有引号的属性
content = content.replace(/(\s+[\w\-:]+)=([^"'\s>][^\s>]*)/g, (match, attrName, attrValue) => {
// 如果属性值为空或只是一个标志,保持原样
if (!attrValue || attrValue === '') {
return match;
}
// 给属性值加上双引号
return `${attrName}="${attrValue}"`;
});
// 保存修改后的文件
const outputPath = path.join(PUBLIC_DIR, filename);
fs.writeFileSync(outputPath, content);
const newSize = content.length;
const reduction = ((originalSize - newSize) / originalSize * 100).toFixed(1);
console.log(` ✅ 完成:`);
console.log(` - 提取图片: ${imageCount}`);
console.log(` - 提取 CSS: ${cssCount}`);
console.log(` - 提取字体: ${fontCount}`);
console.log(` - 删除 meta: ${metaCount}`);
console.log(` - 删除 title: ${titleCount}`);
console.log(` - 删除 link: ${linkCount}`);
console.log(` - 删除 script: ${scriptCount}`);
console.log(` - 原始大小: ${(originalSize / 1024).toFixed(2)} KB`);
console.log(` - 新大小: ${(newSize / 1024).toFixed(2)} KB`);
console.log(` - 减少: ${reduction}%`);
// 验证生成的文件
if (imageCount > 0 || cssCount > 0 || fontCount > 0) {
console.log(` 提示: 请确保资源路径 /Static_zy/st/assets/ 在服务器上可访问\n`);
} else {
console.log(` 未找到可提取的资源\n`);
}
});
console.log('✅ 资源提取完成!');
console.log('\n📁 资源文件位置:');
console.log(` - 图片: ${IMG_DIR}`);
console.log(` - CSS: ${CSS_DIR}`);
console.log(` - 字体: ${FONTS_DIR}`);
console.log('\n✨ 自动优化:');
console.log(' ✅ DOCTYPE 和 HTML 注释已删除');
console.log(' ✅ 所有 meta、title 和 link 标签已删除(保留生成的 stylesheet');
console.log(' ✅ 所有 script 标签已删除');
console.log(' ✅ 所有 style 已提取到 CSS 文件');
console.log(' ✅ 只保留 body 内的内容');
console.log(' ✅ CSS 引用已放到顶部');
console.log(' ✅ 图片扩展名已修复svg+xml → svg');
console.log(' ✅ 使用绝对路径(/Static_zy/st/assets/');
console.log(' ✅ HTML 属性值已自动加上双引号');
console.log('\n💡 提示: 刷新浏览器测试页面,所有资源应该正常加载');

8849
a4_se_post_instabox/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,59 @@
{
"name": "vue3-clean-architecture",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"test:e2e": "start-server-and-test preview :4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' :4173 'cypress open --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"zip": "node zip.js",
"prod": "pnpm run build && pnpm run zip"
},
"dependencies": {
"@types/lodash": "^4.17.12",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"install": "^0.13.0",
"lodash": "^4.17.21",
"mitt": "^3.0.1",
"moment": "^2.30.1",
"pinia": "^2.2.2",
"socket.io-client": "^4.8.1",
"uuid": "^13.0.0",
"vue": "^3.2.45",
"vue-i18n": "^10.0.4",
"vue-router": "^4.1.6",
"vue-scrollto": "^2.20.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.12",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.2.6",
"@vue/tsconfig": "^0.1.3",
"archiver": "^7.0.1",
"cypress": "^12.0.2",
"eslint": "^8.22.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"start-server-and-test": "^1.15.2",
"typescript": "~4.7.4",
"vite": "^4.0.0",
"vitest": "^0.25.6",
"vue-tsc": "^1.0.12"
}
}

5279
a4_se_post_instabox/pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"pageProps":{"market":{"code":"se","phone":"010-206 90 01","phone_caption":null,"sms":"71020","email":"info@instabox.se","locations_email":"https://docs.google.com/forms/d/e/1FAIpQLSc0nDr6-HJF6XtiG67R7i8TEshccc9ZXvF5CohP36vv9Jo9WA/viewform","merchants_email":"https://docs.google.com/forms/d/1jjp4zQ4dI6NZR8mH8_li2BqOW0XSgEjBPWnTUTazkww/viewform?edit_requested=true","facebook_link":"https://www.facebook.com/Instaboxglobal/","instagram_link":"https://www.instagram.com/instabox/","linkedin_link":"https://www.linkedin.com/company/10270668","opening_hours":[{"days":["0","1","2","3","4"],"open":"08:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"},{"days":["5","6"],"open":"09:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"}],"special_opening_hours":[],"legal_entity":{"name":"Instabox Sweden AB","organization_number":"556831-5393","address":"Hälsingegatan 40","postal_code":"11343","city":"Stockholm","__typename":"legal_entities"},"__typename":"markets"},"pageLinks":[{"meta_title":"About","slug":"about","translations":[],"__typename":"pages"},{"meta_title":"Help","slug":"help","translations":[],"__typename":"pages"},{"meta_title":"Places","slug":"places","translations":[],"__typename":"pages"},{"meta_title":"Track parcel","slug":"search","translations":[],"__typename":"pages"},{"meta_title":"News","slug":"https://press.instabee.com/","translations":[{"meta_title":"News","slug":"https://press.instabee.com/","__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Work","slug":"https://career.instabee.com/","translations":[],"__typename":"pages"},{"meta_title":"Return","slug":"returns","translations":[],"__typename":"pages"},{"meta_title":"Sustainability","slug":"sustainability","translations":[],"__typename":"pages"}],"slug":"returns","banners":[],"meta_title":"Return","meta_description":"Something that didnt fit? follow these steps ","translations":[],"content":[{"item":{"__typename":"images","image":{"id":"5eda4c75-a5f2-49d4-b0b3-81db04d1d1e4","title":"returns-se-home","width":2560,"height":1708,"__typename":"directus_files"},"translations":[]},"__typename":"pages_content"},{"item":{"__typename":"images","image":{"id":"68b4e382-2f01-4daf-be70-2098e964b293","title":"returns-se-locker","width":1709,"height":2560,"__typename":"directus_files"},"translations":[]},"__typename":"pages_content"}],"__typename":"pages"},"__N_SSG":true}

View File

@@ -0,0 +1 @@
{"pageProps":{"market":{"code":"se","phone":"010-206 90 01","phone_caption":null,"sms":"71020","email":"info@instabox.se","locations_email":"https://docs.google.com/forms/d/e/1FAIpQLSc0nDr6-HJF6XtiG67R7i8TEshccc9ZXvF5CohP36vv9Jo9WA/viewform","merchants_email":"https://docs.google.com/forms/d/1jjp4zQ4dI6NZR8mH8_li2BqOW0XSgEjBPWnTUTazkww/viewform?edit_requested=true","facebook_link":"https://www.facebook.com/Instaboxglobal/","instagram_link":"https://www.instagram.com/instabox/","linkedin_link":"https://www.linkedin.com/company/10270668","opening_hours":[{"days":["0","1","2","3","4"],"open":"08:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"},{"days":["5","6"],"open":"09:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"}],"special_opening_hours":[],"legal_entity":{"name":"Instabox Sweden AB","organization_number":"556831-5393","address":"Hälsingegatan 40","postal_code":"11343","city":"Stockholm","__typename":"legal_entities"},"__typename":"markets"},"pageLinks":[{"meta_title":"About","slug":"about","translations":[],"__typename":"pages"},{"meta_title":"Help","slug":"help","translations":[],"__typename":"pages"},{"meta_title":"Places","slug":"places","translations":[],"__typename":"pages"},{"meta_title":"Track parcel","slug":"search","translations":[],"__typename":"pages"},{"meta_title":"News","slug":"https://press.instabee.com/","translations":[{"meta_title":"News","slug":"https://press.instabee.com/","__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Work","slug":"https://career.instabee.com/","translations":[],"__typename":"pages"},{"meta_title":"Return","slug":"returns","translations":[],"__typename":"pages"},{"meta_title":"Sustainability","slug":"sustainability","translations":[],"__typename":"pages"}],"fullBleed":true,"banners":[],"meta_title":"Track parcel","meta_description":null,"slug":"search","translations":[],"content":[{"item":{"__typename":"images","image":{"id":"f159c122-3f5a-49ed-b99c-997958328008","title":"Instabox Photos Home Delivery C Nl","width":2560,"height":2560,"__typename":"directus_files"},"translations":[]},"__typename":"pages_content"}],"__typename":"pages"},"__N_SSG":true}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"pageProps":{"market":{"code":"se","phone":"010-206 90 01","phone_caption":null,"sms":"71020","email":"info@instabox.se","locations_email":"https://docs.google.com/forms/d/e/1FAIpQLSc0nDr6-HJF6XtiG67R7i8TEshccc9ZXvF5CohP36vv9Jo9WA/viewform","merchants_email":"https://docs.google.com/forms/d/1jjp4zQ4dI6NZR8mH8_li2BqOW0XSgEjBPWnTUTazkww/viewform?edit_requested=true","facebook_link":"https://www.facebook.com/Instaboxglobal/","instagram_link":"https://www.instagram.com/instabox/","linkedin_link":"https://www.linkedin.com/company/10270668","opening_hours":[{"days":["0","1","2","3","4"],"open":"08:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"},{"days":["5","6"],"open":"09:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"}],"special_opening_hours":[],"legal_entity":{"name":"Instabox Sweden AB","organization_number":"556831-5393","address":"Hälsingegatan 40","postal_code":"11343","city":"Stockholm","__typename":"legal_entities"},"__typename":"markets"},"pageLinks":[{"meta_title":"About","slug":"about","translations":[{"meta_title":"Om oss","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Help","slug":"help","translations":[{"meta_title":"Hjälp","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Places","slug":"places","translations":[{"meta_title":"Våra platser","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Track parcel","slug":"search","translations":[{"meta_title":"Spåra paket","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"News","slug":"https://press.instabee.com/","translations":[{"meta_title":"Nyheter","slug":"https://press.instabee.com/","__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Work","slug":"https://career.instabee.com/","translations":[{"meta_title":"Jobb","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Return","slug":"returns","translations":[{"meta_title":"Retur","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Sustainability","slug":"sustainability","translations":[{"meta_title":"Hållbarhet","slug":null,"__typename":"pages_translations"}],"__typename":"pages"}],"fullBleed":true,"pageContainerVariant":"secondary","meta_title":"Instabox ♥ App","meta_description":null,"slug":"app","translations":[{"meta_title":"Instabox ♥ Sveriges okrångligaste app","meta_description":null,"__typename":"pages_translations"}],"content":[{"item":{"__typename":"titles","id":"14","title":"Uncomplicated shipping now in an app near you","translations":[{"title":"Sveriges okrångligaste frakt, nu i en app nära dig.","__typename":"titles_translations"}]},"__typename":"pages_content"},{"item":{"__typename":"heroes","id":"4","background_color":null,"background_image":{"id":"93d23ed7-6031-4a83-9265-d1dae33347d1","title":"Instabox Customers Se 08","width":2367,"height":1335,"__typename":"directus_files"},"blend_mode":"backDrop","content_position":"center","fullscreen":true},"__typename":"pages_content"},{"item":{"__typename":"texts_with_images","id":"16","header":"See all your current and past deliveries","text":"","image_placement":"left","image":null,"translations":[{"header":"Se alla dina pågående och tidigare leveranser","text":null,"image":null,"__typename":"texts_with_images_translations"}]},"__typename":"pages_content"},{"item":{"__typename":"texts_with_images","id":"17","header":"Return your parcel right away","text":null,"image_placement":"right","image":null,"translations":[{"header":"Returnera enkelt dina paket","text":null,"image":null,"__typename":"texts_with_images_translations"}]},"__typename":"pages_content"},{"item":{"__typename":"texts_with_images","id":"18","header":"Find your nearest Instabox locker","text":null,"image_placement":"left","image":null,"translations":[{"header":"Hitta din närmaste Instabox","text":null,"image":null,"__typename":"texts_with_images_translations"}]},"__typename":"pages_content"}],"__typename":"pages"},"__N_SSG":true}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"pageProps":{"market":{"code":"se","phone":"010-206 90 01","phone_caption":null,"sms":"71020","email":"info@instabox.se","locations_email":"https://docs.google.com/forms/d/e/1FAIpQLSc0nDr6-HJF6XtiG67R7i8TEshccc9ZXvF5CohP36vv9Jo9WA/viewform","merchants_email":"https://docs.google.com/forms/d/1jjp4zQ4dI6NZR8mH8_li2BqOW0XSgEjBPWnTUTazkww/viewform?edit_requested=true","facebook_link":"https://www.facebook.com/Instaboxglobal/","instagram_link":"https://www.instagram.com/instabox/","linkedin_link":"https://www.linkedin.com/company/10270668","opening_hours":[{"days":["0","1","2","3","4"],"open":"08:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"},{"days":["5","6"],"open":"09:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"}],"special_opening_hours":[],"legal_entity":{"name":"Instabox Sweden AB","organization_number":"556831-5393","address":"Hälsingegatan 40","postal_code":"11343","city":"Stockholm","__typename":"legal_entities"},"__typename":"markets"},"pageLinks":[{"meta_title":"About","slug":"about","translations":[{"meta_title":"Om oss","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Help","slug":"help","translations":[{"meta_title":"Hjälp","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Places","slug":"places","translations":[{"meta_title":"Våra platser","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Track parcel","slug":"search","translations":[{"meta_title":"Spåra paket","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"News","slug":"https://press.instabee.com/","translations":[{"meta_title":"Nyheter","slug":"https://press.instabee.com/","__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Work","slug":"https://career.instabee.com/","translations":[{"meta_title":"Jobb","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Return","slug":"returns","translations":[{"meta_title":"Retur","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Sustainability","slug":"sustainability","translations":[{"meta_title":"Hållbarhet","slug":null,"__typename":"pages_translations"}],"__typename":"pages"}],"slug":"returns","banners":[],"meta_title":"Return","meta_description":"Something that didnt fit? follow these steps ","translations":[{"meta_title":"Retur","meta_description":"Något som inte passade? Följ dessa steg","__typename":"pages_translations"}],"content":[{"item":{"__typename":"images","image":{"id":"5eda4c75-a5f2-49d4-b0b3-81db04d1d1e4","title":"returns-se-home","width":2560,"height":1708,"__typename":"directus_files"},"translations":[]},"__typename":"pages_content"},{"item":{"__typename":"images","image":{"id":"68b4e382-2f01-4daf-be70-2098e964b293","title":"returns-se-locker","width":1709,"height":2560,"__typename":"directus_files"},"translations":[]},"__typename":"pages_content"}],"__typename":"pages"},"__N_SSG":true}

View File

@@ -0,0 +1 @@
{"pageProps":{"market":{"code":"se","phone":"010-206 90 01","phone_caption":null,"sms":"71020","email":"info@instabox.se","locations_email":"https://docs.google.com/forms/d/e/1FAIpQLSc0nDr6-HJF6XtiG67R7i8TEshccc9ZXvF5CohP36vv9Jo9WA/viewform","merchants_email":"https://docs.google.com/forms/d/1jjp4zQ4dI6NZR8mH8_li2BqOW0XSgEjBPWnTUTazkww/viewform?edit_requested=true","facebook_link":"https://www.facebook.com/Instaboxglobal/","instagram_link":"https://www.instagram.com/instabox/","linkedin_link":"https://www.linkedin.com/company/10270668","opening_hours":[{"days":["0","1","2","3","4"],"open":"08:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"},{"days":["5","6"],"open":"09:00:00","close":"21:00:00","is_closed":null,"__typename":"opening_hours"}],"special_opening_hours":[],"legal_entity":{"name":"Instabox Sweden AB","organization_number":"556831-5393","address":"Hälsingegatan 40","postal_code":"11343","city":"Stockholm","__typename":"legal_entities"},"__typename":"markets"},"pageLinks":[{"meta_title":"About","slug":"about","translations":[{"meta_title":"Om oss","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Help","slug":"help","translations":[{"meta_title":"Hjälp","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Places","slug":"places","translations":[{"meta_title":"Våra platser","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Track parcel","slug":"search","translations":[{"meta_title":"Spåra paket","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"News","slug":"https://press.instabee.com/","translations":[{"meta_title":"Nyheter","slug":"https://press.instabee.com/","__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Work","slug":"https://career.instabee.com/","translations":[{"meta_title":"Jobb","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Return","slug":"returns","translations":[{"meta_title":"Retur","slug":null,"__typename":"pages_translations"}],"__typename":"pages"},{"meta_title":"Sustainability","slug":"sustainability","translations":[{"meta_title":"Hållbarhet","slug":null,"__typename":"pages_translations"}],"__typename":"pages"}],"fullBleed":true,"banners":[],"meta_title":"Track parcel","meta_description":null,"slug":"search","translations":[{"meta_title":"Spåra paket","meta_description":null,"__typename":"pages_translations"}],"content":[{"item":{"__typename":"images","image":{"id":"f159c122-3f5a-49ed-b99c-997958328008","title":"Instabox Photos Home Delivery C Nl","width":2560,"height":2560,"__typename":"directus_files"},"translations":[]},"__typename":"pages_content"}],"__typename":"pages"},"__N_SSG":true}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
<svg width="308" height="51" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><path id="a" d="M0 0h307.68v50.94H0z"/></defs><g fill="none" fill-rule="evenodd"><path d="M75.51 27.3h19.34c-.98-5.13-4.54-7.7-9.52-7.7-4.46 0-8.53 2.87-9.82 7.7Zm10.57 23.64c-11.18 0-19.48-8.45-19.48-19.48 0-11.03 8.3-19.5 19.33-19.5 11.18 0 18.36 8.4 18.05 21.76H75.22c.83 5.37 5.21 9 10.87 9 4.54 0 7.86-2.12 9.82-4.31l5.6 5.96c-3.25 3.78-8.77 6.57-15.42 6.57ZM101.22 12.58h9.37l11.32 22.2 11.18-22.2h9.52l-20.7 38.36-20.69-38.36M148.7 27.3h19.34c-.98-5.13-4.53-7.7-9.52-7.7-4.45 0-8.53 2.87-9.82 7.7Zm10.58 23.64c-11.18 0-19.49-8.45-19.49-19.48 0-11.03 8.31-19.5 19.34-19.5 11.18 0 18.35 8.4 18.05 21.76H148.4c.83 5.37 5.21 9 10.88 9 4.53 0 7.85-2.12 9.82-4.31l5.59 5.96c-3.25 3.78-8.76 6.57-15.41 6.57ZM189.38 32.86v17.48h-8.31V12.57h8.3v4.37c2.03-2.85 5.67-4.68 9.75-4.68.98 0 2 .08 2.82.22v8.26c-1-.16-1.59-.2-2.73-.2-3.63 0-9.83 1.28-9.83 12.32M211.04 27.3h19.33c-.98-5.13-4.53-7.7-9.51-7.7-4.46 0-8.54 2.87-9.82 7.7Zm10.57 23.64c-11.18 0-19.49-8.45-19.49-19.48 0-11.03 8.31-19.5 19.34-19.5 11.18 0 18.35 8.4 18.05 21.76h-28.78c.84 5.37 5.22 9 10.88 9 4.53 0 7.86-2.12 9.82-4.31l5.59 5.96c-3.25 3.78-8.76 6.57-15.4 6.57ZM293.6 42.71c-4.31 0-5.37-1.74-5.37-5.59V19.98h8.69v-7.4h-8.69V5.31h-8.3v7.25h-5.82v7.4h5.81v18.89c0 7.17 4.3 11.48 11.56 11.48h5.44v-7.63h-3.33" fill="#000"/><g><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path d="m260.36 27.23-4.76-1.14c-3.13-.7-4.4-1.63-4.4-3.23 0-2.12 2-3.38 5.34-3.38 4.7 0 7.02 2.49 8 3.98l.3.46 6.55-4.54-.28-.44c-1.3-2.1-5.35-6.97-14.57-6.97-8.63 0-14.2 4.45-14.2 11.34 0 5.84 3.59 9.63 10.68 11.25l4.81 1.12c3.1.82 5.48 1.63 5.48 4.08 0 3.32-4.1 3.68-5.87 3.68-5.65 0-8.85-4.27-9.43-5.12l-.34-.5-6.04 5.07.26.4c1.14 1.8 5.64 7.65 15.55 7.65 4.35 0 8.08-1.2 10.8-3.47a10.91 10.91 0 0 0 4.01-8.47c0-8.05-6.78-10.57-11.89-11.77M32.06 31.41l11.7-18.83h-9.84l-7.29 12.55-7.29-12.55h-9.26l9.21 14.97H-.06v7.82h19.13L9.28 50.34h9.32l8.03-12.98 8.03 12.98h9.89L32.06 31.41M304.1 1.27h1.23c.6 0 .92.38.92.87 0 .44-.27.78-.73.85l.65.92h-.62l-.86-1.34h.34c.39 0 .66-.07.66-.41 0-.34-.27-.38-.65-.38h-.4v2.13h-.55V1.27Zm3.02 1.36a2.08 2.08 0 1 0-4.17 0c0 1.16.92 2.11 2.1 2.11 1.17 0 2.07-.95 2.07-2.1Zm-4.71 0A2.65 2.65 0 0 1 305.04 0a2.65 2.65 0 0 1 2.64 2.63c0 1.45-1.2 2.64-2.64 2.64a2.65 2.65 0 0 1-2.63-2.63Z" fill="#000" mask="url(#b)"/></g></g></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="229px" height="22px" viewBox="0 0 229 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>care-of-carl</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-833.000000, -188.000000)" fill="#082939" fill-rule="nonzero">
<g id="Group-21" transform="translate(0.000000, 135.000000)">
<g id="Group-8" transform="translate(762.000000, 0.000000)">
<g id="care-of-carl" transform="translate(71.000000, 53.000000)">
<path d="M42.9041597,18.7578947 L35.6645591,0.424561404 L33.6831947,0.424561404 L26.3673877,18.3333333 C25.7196339,19.9157895 25.262396,20.0701754 24.3860233,20.0701754 L23.5858569,20.0701754 L23.5858569,21.6140351 L30.444426,21.6140351 L30.444426,20.1087719 L29.263228,20.1087719 C28.3106489,20.1087719 28.1963394,19.7614035 28.1963394,19.4140351 C28.1963394,18.8736842 28.5011647,18.1017544 28.7678869,17.3298246 L30.1777038,13.7017544 L37.3792013,13.7017544 L39.1319468,18.6035088 C39.1700499,18.6807018 39.2081531,18.7578947 39.2081531,18.8350877 C39.2843594,19.0666667 39.3605657,19.2596491 39.3605657,19.4140351 C39.3605657,19.722807 39.2462562,20.0701754 38.2936772,20.0701754 L37.1505824,20.0701754 L37.1505824,21.5754386 L45.3046589,21.5754386 L45.3046589,20.0701754 L44.390183,20.0701754 C43.666223,20.1087719 43.3613977,19.8385965 42.9041597,18.7578947 Z M36.8457571,12.1192982 L30.9016639,12.1192982 L33.9499168,4.4 L36.8457571,12.1192982 Z" id="Shape"></path>
<path d="M65.4231281,15.7087719 C63.9371048,12.5824561 63.2893511,11.8491228 61.6890183,11 C64.8896839,10.3052632 66.5281198,7.83508772 66.5281198,5.63508772 C66.5281198,2.39298246 63.975208,0.385964912 59.9362729,0.385964912 L50.753411,0.385964912 L50.753411,1.92982456 L51.8965058,1.92982456 C52.5061564,1.92982456 53.0014975,2.43157895 53.0014975,3.04912281 L53.0014975,18.9508772 C53.0014975,19.5684211 52.5061564,20.0701754 51.8965058,20.0701754 L50.753411,20.0701754 L50.753411,21.6140351 L58.5264559,21.6140351 L58.5264559,20.1087719 L57.3833611,20.1087719 C56.7737105,20.1087719 56.2783694,19.6070175 56.2783694,18.9894737 L56.2783694,11.6561404 L57.3452579,11.6561404 C59.0980033,11.6561404 60.0886855,12.0807018 61.1936772,14.4350877 C62.1081531,16.4807018 63.1369384,18.4491228 64.0133111,20.0315789 C64.5848586,20.9964912 65.5755408,21.6140351 66.7186356,21.6140351 L69.881198,21.6140351 L69.881198,20.1087719 L68.5856905,20.1087719 C67.7093178,20.1087719 67.0615641,19.2210526 65.4231281,15.7087719 Z M63.0988353,5.67368421 C63.0988353,8.60701754 61.155574,10.1508772 57.4595674,10.1508772 L56.2402662,10.1508772 L56.2402662,1.92982456 L59.021797,1.92982456 C62.0319468,1.92982456 63.0988353,3.85964912 63.0988353,5.67368421 Z" id="Shape"></path>
<path d="M90.1139767,16.4807018 C88.8946755,19.7614035 88.4374376,20.1087719 86.3798669,20.1087719 L80.5881864,20.1087719 L80.5881864,11.6561404 L86.8371048,11.6561404 L86.8371048,10.1508772 L80.5881864,10.1508772 L80.5881864,1.92982456 L85.5415973,1.92982456 C87.9039933,1.92982456 88.3231281,2.54736842 88.8184692,5.67368421 L88.8565724,5.78947368 L90.2663894,5.78947368 L90.2663894,0.463157895 L75.1013311,0.463157895 L75.1013311,1.96842105 L76.2063228,1.96842105 C76.8159734,1.96842105 77.3494176,2.47017544 77.3494176,3.12631579 L77.3494176,18.9894737 C77.3494176,19.6070175 76.8540765,20.1473684 76.2063228,20.1473684 L75.063228,20.1473684 L75.063228,21.6526316 L90.5712146,21.6526316 L91.6762063,16.4035088 L90.1139767,16.4035088 L90.1139767,16.4807018 Z" id="Shape"></path>
<path d="M18.4419301,17.1754386 C16.6891847,18.7964912 13.9457571,19.7614035 11.2023295,19.7614035 C7.58252912,19.7614035 3.73410982,17.4070175 3.73410982,10.8070175 C3.73410982,5.36491228 6.5156406,1.85263158 10.8212978,1.85263158 C15.8509151,1.85263158 16.2700499,3.93684211 16.7272879,6.25263158 C16.765391,6.40701754 16.8034942,6.6 16.8034942,6.75438596 L16.8415973,6.87017544 L18.2895175,6.87017544 L18.2895175,1.54385965 L18.175208,1.54385965 C18.175208,1.54385965 14.631614,0.231578947 11.0499168,0.231578947 C4.22945092,0.231578947 0.152412646,4.36140351 0.152412646,11.2701754 C0.152412646,16.4035088 3.31497504,22 10.2497504,22 C13.9076539,22 16.9559068,20.7649123 19.3945092,18.3333333 L19.4707155,18.2561404 L18.5562396,17.0982456 L18.4419301,17.1754386 Z" id="Shape"></path>
<path d="M180.037438,18.7578947 L172.797837,0.424561404 L170.854576,0.424561404 L163.576872,18.3333333 C162.929118,19.9157895 162.47188,20.0701754 161.595507,20.0701754 L160.795341,20.0701754 L160.795341,21.6140351 L167.65391,21.6140351 L167.65391,20.1087719 L166.434609,20.1087719 C165.48203,20.1087719 165.36772,19.7614035 165.36772,19.4140351 C165.36772,18.8736842 165.672546,18.1017544 165.939268,17.3298246 L167.349085,13.7017544 L174.550582,13.7017544 L176.303328,18.6035088 C176.341431,18.6807018 176.379534,18.7578947 176.379534,18.8350877 C176.45574,19.0666667 176.531947,19.2596491 176.531947,19.4526316 C176.531947,19.7614035 176.417637,20.1087719 175.465058,20.1087719 L174.321963,20.1087719 L174.321963,21.6140351 L182.47604,21.6140351 L182.47604,20.1087719 L181.561564,20.1087719 C180.799501,20.1087719 180.494676,19.8385965 180.037438,18.7578947 Z M173.940932,12.1192982 L168.034942,12.1192982 L171.083195,4.4 L173.940932,12.1192982 Z" id="Shape"></path>
<path d="M227.285358,16.3649123 L227.247255,16.4421053 C226.027953,19.722807 225.570715,20.0701754 223.513145,20.0701754 L217.721464,20.0701754 L217.721464,3.0877193 C217.721464,2.47017544 218.216805,1.96842105 218.826456,1.96842105 L219.969551,1.96842105 L219.969551,0.463157895 L212.234609,0.463157895 L212.234609,1.96842105 L213.377704,1.96842105 C213.987354,1.96842105 214.482696,2.47017544 214.482696,3.0877193 L214.482696,18.9508772 C214.482696,19.5684211 213.987354,20.1087719 213.339601,20.1087719 L212.234609,20.1087719 L212.234609,21.6140351 L227.742596,21.6140351 L228.847587,16.3649123 L227.285358,16.3649123 Z" id="Shape"></path>
<path d="M155.575208,17.1754386 C153.822463,18.7964912 151.079035,19.7614035 148.335607,19.7614035 C144.715807,19.7614035 140.867388,17.4070175 140.867388,10.8070175 C140.867388,5.36491228 143.648918,1.85263158 147.954576,1.85263158 C152.984193,1.85263158 153.403328,3.93684211 153.860566,6.25263158 C153.898669,6.40701754 153.936772,6.6 153.936772,6.75438596 L153.974875,6.87017544 L155.422795,6.87017544 L155.422795,1.54385965 L155.308486,1.54385965 C155.270383,1.54385965 151.764892,0.231578947 148.183195,0.231578947 C141.362729,0.231578947 137.285691,4.36140351 137.285691,11.2701754 C137.285691,16.4035088 140.448253,22 147.383028,22 C151.040932,22 154.089185,20.7649123 156.527787,18.3333333 L156.603993,18.2561404 L155.689517,17.0982456 L155.575208,17.1754386 Z" id="Shape"></path>
<path d="M107.641431,3.35789474 C103.297671,3.35789474 100.40183,6.48421053 100.40183,11.1929825 C100.40183,14.7052632 102.268885,18.7578947 107.450915,18.7578947 C111.146922,18.7578947 114.881032,16.3263158 114.881032,10.845614 C114.881032,6.32982456 112.023295,3.35789474 107.641431,3.35789474 Z M111.794676,10.845614 C111.794676,15.1298246 110.308652,17.2912281 107.412812,17.2912281 C104.8599,17.2912281 103.450083,15.0140351 103.450083,11.0385965 C103.450083,7.17894737 105.012313,4.90175439 107.641431,4.90175439 C111.261231,4.86315789 111.794676,8.60701754 111.794676,10.845614 Z" id="Shape"></path>
<path d="M118.538935,5.01754386 L119.339101,5.01754386 C119.758236,5.01754386 120.101165,5.36491228 120.101165,5.78947368 L120.101165,16.3649123 C120.101165,16.7894737 119.758236,17.1368421 119.339101,17.1368421 L118.538935,17.1368421 L118.538935,18.5649123 L124.521131,18.5649123 L124.521131,17.1368421 L123.759068,17.1368421 C123.339933,17.1368421 122.997005,16.7894737 122.997005,16.3649123 L122.997005,11.6947368 L127.340765,11.6947368 L127.340765,10.1122807 L122.997005,10.1122807 L122.997005,4.97894737 L126.235774,4.97894737 C127.7599,4.97894737 127.988519,5.24912281 128.293344,7.29473684 L128.331448,7.52631579 L129.550749,7.52631579 L129.550749,3.58947368 L118.577038,3.58947368 L118.538935,5.01754386 Z" id="Shape"></path>
<path d="M202.556406,15.7087719 C201.070383,12.5824561 200.422629,11.8491228 198.822296,11 C202.022962,10.3052632 203.661398,7.83508772 203.661398,5.63508772 C203.661398,2.39298246 201.108486,0.385964912 197.069551,0.385964912 L187.848586,0.385964912 L187.848586,1.92982456 L188.991681,1.92982456 C189.601331,1.92982456 190.096672,2.43157895 190.096672,3.04912281 L190.096672,18.9508772 C190.096672,19.5684211 189.601331,20.0701754 188.991681,20.0701754 L187.848586,20.0701754 L187.848586,21.6140351 L195.621631,21.6140351 L195.621631,20.1087719 L194.478536,20.1087719 C193.868885,20.1087719 193.373544,19.6070175 193.373544,18.9894737 L193.373544,11.6561404 L194.440433,11.6561404 C196.193178,11.6561404 197.18386,12.0807018 198.288852,14.4350877 C199.203328,16.4807018 200.232113,18.4491228 201.108486,20.0315789 C201.680033,20.9964912 202.670715,21.6140351 203.81381,21.6140351 L206.93827,21.6140351 L206.93827,20.1087719 L205.642762,20.1087719 C204.842596,20.1087719 204.232945,19.2210526 202.556406,15.7087719 Z M200.232113,5.67368421 C200.232113,8.60701754 198.288852,10.1508772 194.592845,10.1508772 L193.373544,10.1508772 L193.373544,1.92982456 L196.155075,1.92982456 C199.165225,1.92982456 200.232113,3.85964912 200.232113,5.67368421 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Lager_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 952 310" style="enable-background:new 0 0 952 310;" xml:space="preserve">
<g>
<path d="M231.47,87.99h-12.46V76.41c0-37.24-29.79-67.53-67.03-67.53c-37.87,0-67.28,31.09-67.28,70.77
c0,55.82,32.35,73.36,58.24,89.75c24.06,15.23,41.5,29.1,41.5,65.07c0,29.72-22.05,33.94-29.57,33.94
c-17.66,0-30.52-16.28-30.52-33.94v-36.81v-7.28l-45.24-0.05c-20.11,0-35.41-16.64-35.41-34.9c0-17.62,12.71-33.86,31.75-33.94
c-3.95-9.29-6.62-20.16-7.42-33.14C34.91,92.2,6.99,120.81,6.99,155.44c0,37.87,32.57,67.53,72.4,67.53l9.59-0.07v11.57
c0,37.24,28.28,67.53,65.51,67.53c39.76,0,66.52-27.77,66.52-67.53c0-55.51-32.64-78.72-58.46-95.07
c-24.16-15.29-41.86-23.47-41.86-59.75c0-20.11,12.73-37.18,30.99-37.18c17.66,0,31.94,16.28,31.94,33.94v10.88v33.74h47.84
c15.54,0,31.2,12.27,31.2,37.09c0,17.85-16.6,31.64-33.66,31.87c4.42,9.18,7.54,20,8.7,33c33.97-4.37,60.46-32.66,60.46-67.2
C298.17,115.66,271.6,87.99,231.47,87.99"/>
<polygon points="728.58,221.99 684.64,172.74 723.21,126.09 697.42,126.09 666.29,164.33 666.29,98.17 659.45,98.17 644.31,98.47
644.31,221.99 666.29,221.99 666.29,180.93 702.3,221.99 "/>
<path d="M483.36,202.02c-2.54,1.82-8.09,2.75-12.07,2.73c-8.18-0.06-15.99-7.21-15.89-19.71l0.16-38.84h25.09l0.38-20.11h-24.75
v-19.44h-7.03l-15.4,0.04v22.12v10.42v10.41l0.04,40.16c1.48,22.06,16.14,34,37.73,34.16c9.44,0.07,17.15-2.16,23.23-6.1
L483.36,202.02z"/>
<path d="M377.58,223.96c-18.89,0-36.94-6.42-51.14-18.14l13.18-15.72c12.82,9.95,25.13,14.6,38.53,14.6
c13.46,0,21.82-5.84,21.82-15.24v-0.37c0-10.38-8.8-14.38-28.53-19.42c-27.76-7.07-40.98-14.38-40.98-36.83v-0.37
c0-21.64,17.14-36.18,42.65-36.18c16.76,0,31.67,4.76,44.36,14.16l-11.61,16.77c-12-7.84-22.86-11.66-33.13-11.66
c-13.66,0-19.77,7.19-19.77,14.32v0.37c0,11.17,8.33,14.35,30.39,19.98c28.51,7.4,39.11,17.18,39.11,36.09v0.37
C422.47,209.67,405.27,223.96,377.58,223.96"/>
<rect x="506.19" y="126" width="21.93" height="96"/>
<path d="M517.08,88.04c7.25,0,13.06,5.81,13.06,13.07c0,7.1-5.81,12.91-13.06,12.91c-7.1,0-12.91-5.81-12.91-12.91
C504.17,93.85,509.98,88.04,517.08,88.04"/>
<path d="M594.06,223.96c-28.22,0-49.51-21.04-49.51-48.94v-0.38c0-28.12,21.45-49.32,49.88-49.32c15.38,0,26.64,4.27,36.07,13.78
l-13.29,14.24c-5.51-5.28-12.98-9.05-23.61-9.05c-15.54,0-27.07,12.81-27.07,29.98v0.38c0,17.96,12.13,30.99,28.84,30.99
c10.17,0,17.21-4.35,23.11-9.5L631,208.74C623.03,216.9,612.69,223.96,594.06,223.96"/>
<path d="M900.05,126.12c-26.51,0-45.7,21.03-45.7,48.92v0.37c0,28.58,20.08,48.55,49.11,48.55c15.09,0,27.33-5.13,36.54-15.24
l0.16-0.22l-12.28-10.81l-0.21,0.17c-7.52,6.37-14.71,9.09-24.01,9.09c-14.23,0-23.23-9.31-26.23-23.08l-0.22-1.5h54.95H945v-5.09
C945,153.67,933.82,126.12,900.05,126.12 M900.49,143.6c12.62,0,20.66,5.95,22.71,21.57h-46.1
C879.74,149.55,887.9,143.6,900.49,143.6"/>
<path d="M815.36,167.09l-3.16-1.07c-10.28-3.47-17.62-4.92-17.62-11.99v-0.37c0-4.48,1.94-9.73,11.77-9.73
c6.51,0,14.96,2.57,23.96,7.2l10.17-14.93l0.16-0.32l-0.24-0.15c-10.08-6.07-22.28-9.55-33.48-9.56
c-16.87,0-33.89,8.94-33.89,28.92v0.38c0,15.91,11.18,22.45,27.97,27.36c1.28,0.39,2.54,0.76,3.78,1.12
c10.2,3.01,19.02,4.05,19.02,11.6v0.37c0,2.41-1.07,10.28-14.82,10.28c-8.63,0-18.53-3.2-28.13-9.04l-11.84,13.89l0.15,0.11
c11.45,8.26,25.33,12.8,39.06,12.8c10.7,0,37.13-2.87,37.13-29.47v-0.38C845.35,177.89,829.75,171.87,815.36,167.09"/>
</g>
<g>
<path d="M759,211.6c0,6.51-5.23,11.67-11.88,11.67c-6.65,0-11.95-5.16-11.95-11.67s5.3-11.6,12.02-11.6
C753.77,200,759,205.09,759,211.6z M738.14,211.6c0,5.16,3.89,9.26,9.05,9.26c5.02,0.07,8.84-4.1,8.84-9.19
c0-5.16-3.82-9.33-8.98-9.33C742.03,202.33,738.14,206.5,738.14,211.6z M745.28,217.61h-2.69v-11.6c1.06-0.14,2.55-0.35,4.45-0.35
c2.19,0,3.18,0.35,3.96,0.92c0.71,0.49,1.2,1.34,1.2,2.47c0,1.41-1.06,2.33-2.4,2.76v0.14c1.13,0.36,1.7,1.27,2.05,2.83
c0.35,1.77,0.64,2.4,0.85,2.83h-2.83c-0.35-0.42-0.57-1.41-0.92-2.83c-0.21-1.2-0.92-1.77-2.4-1.77h-1.27V217.61z M745.35,211.1
h1.27c1.48,0,2.69-0.5,2.69-1.7c0-1.06-0.78-1.77-2.47-1.77c-0.71,0-1.2,0.07-1.49,0.14V211.1z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="306px" height="56px" viewBox="0 0 306 56" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>snusbolaget</title>
<desc>Created with Sketch.</desc>
<g id="Site-EN" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Logotypes-—-color" transform="translate(-1093.000000, -835.000000)" fill="#000000" fill-rule="nonzero">
<g id="Merchants" transform="translate(143.000000, 118.000000)">
<g id="Partners-[20v-c]">
<g id="Rad-[0h-m]" transform="translate(1.000000, 676.000000)">
<g id="Group-15-Copy" transform="translate(880.000000, 0.000000)">
<g id="snusbolaget" transform="translate(68.000000, 41.000000)">
<path d="M78.5343915,31.4755986 C80.3813051,35.2359507 87.2130864,35.3095775 87.9518519,31.6605634 C88.3949912,29.4122535 86.0311817,28.895669 83.3723457,28.5275352 C79.3840917,27.9008099 75.3958377,25.9841197 76.2821164,20.2328521 C77.2787302,15.2926761 82.1904409,12.7121479 86.8808818,12.7121479 C90.2784832,12.7121479 93.3067019,14.0392254 95.0426808,17.3201056 L90.1675485,20.3064789 C89.2812698,18.610669 87.8409171,17.8366901 86.1421164,17.8366901 C84.073933,17.8366901 82.1538624,18.610669 81.7844797,20.4172183 L81.7844797,20.454331 C81.5260317,22.5925 83.6679718,22.887007 85.8836684,23.3664789 C90.3150617,24.2146831 94.4886067,25.8733803 93.3804586,32.0298944 C92.2357319,36.9323592 87.1393298,39.5871127 82.3751323,39.5871127 C78.9775309,39.5871127 75.7280423,37.9284155 73.9920635,34.6104225 L78.5343915,31.4755986 Z" id="Path"></path>
<path d="M97.663739,21.1540845 C99.9166138,20.1215141 102.501693,19.4953873 104.828325,19.4953873 C109.148783,19.4953873 112.879189,21.4491901 112.177601,26.4623944 L110.405044,39.2177817 L105.308642,39.2177817 L107.0806,26.499507 C107.449982,23.8824648 104.348007,23.439507 102.35358,24.4720775 L100.285996,39.2177817 L95.1524162,39.2177817 L97.663739,21.1540845 Z" id="Path"></path>
<path d="M129.453439,38.1121831 C123.581693,40.1396127 113.721093,41.1350704 114.939577,32.508169 L116.675556,20.1215141 L121.808536,20.1215141 L120.073157,32.5452817 C119.851287,34.8672183 122.326032,35.9369014 124.763598,35.1258099 L126.86836,20.1215141 L131.964762,20.1215141 L129.453439,38.1121831 Z" id="Path"></path>
<path d="M135.195661,33.0241549 C137.15291,35.1623239 140.292063,35.8632746 141.178342,34.3147183 C141.806173,33.2085211 141.363034,32.1394366 139.664233,31.8820423 C130.874603,30.3334859 133.607795,20.0113732 141.621481,19.9006338 C143.35746,19.8641197 145.72067,20.3058803 147.456649,21.8915493 L144.391252,25.3933099 C143.394039,24.2877113 140.070194,23.2557394 139.51672,25.7620423 C139.221093,26.9047535 140.993651,27.5685915 141.768995,27.7158451 C144.132804,28.3425704 147.01291,29.7067606 146.496614,33.3192606 C145.905362,37.4848592 142.28649,39.5865141 138.704198,39.5865141 C136.045362,39.5865141 133.755309,38.7389085 132.278377,36.3421479 L135.195661,33.0241549 Z" id="Path"></path>
<path d="M166.76649,25.3196831 C169.795309,26.9053521 170.017178,29.9647535 169.277813,32.5823944 C168.281199,36.0847535 165.326138,39.2177817 159.306878,39.2177817 L148.78127,39.2177817 L152.437319,13.0808803 L162.778236,13.0808803 C167.283986,13.0808803 170.607831,15.6979225 169.906243,20.748838 C169.684374,22.223169 168.68716,24.3248239 166.76649,25.3196831 L166.76649,25.3196831 Z M155.761764,27.9744366 L154.949841,33.9459859 L159.860952,33.9459859 C164.957954,33.9459859 165.844233,27.9744366 160.674074,27.9744366 L155.761764,27.9744366 Z M161.337884,23.3293662 C165.030511,23.3293662 166.175238,18.3891901 162.039471,18.3891901 L157.12776,18.3891901 L156.426173,23.3293662 L161.337884,23.3293662 Z" id="Shape"></path>
<path d="M181.35351,19.7162676 C185.157672,19.7533803 188.666208,22.0022887 188.037778,26.5366197 L187.151499,32.7296479 C186.523668,37.3376056 182.387302,39.4763732 178.546561,39.5128873 C174.742399,39.4757746 171.197284,37.3376056 171.825115,32.7296479 L172.711393,26.5366197 C173.340423,22.0022887 177.513369,19.7533803 181.35351,19.7162676 M177.846173,26.5366197 L176.959295,32.8403873 C176.775203,34.0567254 177.994286,34.9049296 179.212769,34.9049296 C180.394674,34.9049296 181.835026,34.0567254 182.019718,32.8403873 L182.906596,26.5366197 C183.05351,25.3196831 181.835026,24.6564437 180.652522,24.6564437 C179.434039,24.6564437 177.993686,25.3196831 177.846173,26.5366197" id="Shape"></path>
<path d="M197.566173,39.1441549 C191.84194,39.9917606 189.773757,36.3056338 190.327831,32.1400352 L193.023845,13.1173944 L198.157425,13.1173944 L195.462011,32.1400352 C195.27672,33.5772535 196.089841,34.7570775 198.194603,34.7570775 L197.566173,39.1441549 Z" id="Path"></path>
<path d="M210.296085,39.2177817 L209.852945,37.6698239 C208.818554,38.8867606 207.267266,39.3285211 205.901869,39.3285211 C202.46649,39.3285211 199.365115,37.0059859 199.955767,32.6925352 L200.804868,26.7203873 C201.543633,21.559331 205.716578,19.8264085 209.889524,19.8264085 C212.216155,19.8264085 214.912169,20.6003873 216.906596,21.6700704 L214.505608,39.2171831 L210.296085,39.2171831 L210.296085,39.2177817 Z M211.440811,24.7671831 C209.889524,23.7723239 206.270653,24.2511972 205.937848,26.6838732 L205.088748,32.6931338 C204.8297,35.1258099 208.522928,35.1629225 210.110794,34.2045775 L211.440811,24.7671831 Z" id="Shape"></path>
<path d="M220.972205,40.6190845 C222.708183,42.498662 227.582716,42.5357746 228.063034,38.9603873 C223.298236,40.5083451 218.018342,38.5545423 218.755908,33.2833451 L219.7903,26.0948592 C220.86127,18.4269014 230.869383,18.722007 235.670159,21.3025352 L233.233192,38.5180282 C232.088466,46.6648592 221.636614,48.2876408 218.054921,43.3109507 L220.972205,40.6190845 Z M230.131217,23.9560915 C228.468995,23.0707746 225.14515,23.6980986 224.739189,25.9835211 L223.704797,33.2091197 C223.667619,35.4209155 226.807372,35.7890493 228.57933,34.8678169 L230.131217,23.9560915 Z" id="Shape"></path>
<path d="M251.660952,35.6417958 C249.334321,38.5174296 246.453616,39.5494014 243.942293,39.5494014 C240.174709,39.5494014 236.630194,37.2639789 237.258025,32.766162 L238.107725,26.7946127 C238.772134,22.1489437 242.871323,19.8264085 246.749242,19.8264085 C250.62716,19.8264085 254.098519,22.1489437 253.43351,26.6838732 C252.695344,32.0292958 246.157989,33.3192606 242.428183,31.844331 L242.280071,32.766162 C241.87351,35.6789085 246.933333,35.7154225 248.741869,33.5401408 L251.660952,35.6417958 Z M242.908501,28.2689437 C243.684444,28.5269366 244.64448,28.6747887 245.49358,28.6747887 C246.823598,28.6747887 248.337707,27.9373239 248.48522,26.6473592 C248.669312,25.3567958 247.377672,24.4349648 246.121411,24.4349648 C244.791993,24.4349648 243.314462,25.3933099 243.13097,26.7575 L242.908501,28.2689437 Z" id="Shape"></path>
<path d="M263.515379,38.9597887 C258.197707,40.6555986 254.50448,38.4438028 255.390159,32.508169 L258.123351,13.1173944 L263.219753,13.1173944 L262.223139,20.1215141 L265.620141,20.1215141 L264.918554,25.2460563 L261.520952,25.2460563 L260.486561,32.4716549 C260.191534,34.6469366 261.520952,35.7154225 264.069453,35.2359507 L263.515379,38.9597887 Z" id="Path"></path>
<path d="M269.874039,33.0618662 C271.646596,33.0618662 272.865679,34.4625704 272.606631,36.232007 C272.348183,38.0391549 270.760317,39.4392606 268.98836,39.4392606 C267.215802,39.4392606 266.033298,38.0385563 266.292346,36.232007 C266.550194,34.4619718 268.100882,33.0618662 269.874039,33.0618662" id="Path"></path>
<path d="M277.38582,33.0241549 C279.343069,35.1623239 282.482222,35.8632746 283.369101,34.3147183 C283.995732,33.2085211 283.553192,32.1394366 281.854392,31.8820423 C273.065362,30.3334859 275.797954,20.0113732 283.81164,19.9006338 C285.547619,19.8641197 287.911429,20.3058803 289.646808,21.8915493 L286.581411,25.3933099 C285.584797,24.2877113 282.260952,23.2557394 281.706878,25.7620423 C281.411852,26.9047535 283.184409,27.5685915 283.960353,27.7158451 C286.322963,28.3425704 289.203668,29.7067606 288.687372,33.3192606 C288.09672,37.4848592 284.477249,39.5865141 280.894956,39.5865141 C278.23552,39.5865141 275.946067,38.7389085 274.468536,36.3421479 L277.38582,33.0241549 Z" id="Path"></path>
<path d="M305.105115,35.6417958 C302.778483,38.5174296 299.897778,39.5494014 297.386455,39.5494014 C293.619471,39.5494014 290.074356,37.2639789 290.702187,32.766162 L291.551287,26.7946127 C292.216296,22.1489437 296.314885,19.8264085 300.192804,19.8264085 C304.071323,19.8264085 307.542681,22.1489437 306.877072,26.6838732 C306.138907,32.0292958 299.601552,33.3192606 295.871746,31.844331 L295.724233,32.766162 C295.317072,35.6789085 300.377496,35.7154225 302.187231,33.5401408 L305.105115,35.6417958 Z M296.352663,28.2689437 C297.128607,28.5269366 298.088642,28.6747887 298.937743,28.6747887 C300.26776,28.6747887 301.78127,27.9373239 301.928783,26.6473592 C302.113474,25.3567958 300.821235,24.4349648 299.566173,24.4349648 C298.236155,24.4349648 296.758624,25.3933099 296.574533,26.7575 L296.352663,28.2689437 Z" id="Shape"></path>
<path d="M72.0665961,54.6141549 L73.3846208,45.2042958 L76.8463845,45.2042958 C78.7100882,45.2042958 80.3081481,46.134507 80.0155203,48.2607042 L79.5358025,51.6098239 C79.2431746,53.7228521 77.3926631,54.6141549 75.5283598,54.6141549 L72.0665961,54.6141549 Z M75.7946032,52.6471831 C76.6467019,52.6471831 77.4586243,52.3676408 77.5653616,51.6104225 L78.0444797,48.2613028 C78.1512169,47.4903169 77.4190476,47.1712676 76.5669489,47.1712676 L75.0624339,47.1712676 L74.2900882,52.6471831 L75.7946032,52.6471831 Z" id="Shape"></path>
<polygon id="Path" points="82.9316049 45.2048944 84.8894533 45.2048944 83.5708289 54.6141549 81.6135802 54.6141549"></polygon>
<polygon id="Path" points="94.5023986 45.1911268 94.222963 47.1580986 91.5203527 47.1580986 90.4817637 54.6141549 88.5113228 54.6141549 89.5499118 47.1580986 86.8467019 47.1580986 87.1267372 45.1911268"></polygon>
<polygon id="Path" points="103.636825 45.1911268 103.35739 47.1580986 100.65478 47.1580986 99.6161905 54.6141549 97.6457496 54.6141549 98.6843386 47.1580986 95.9811287 47.1580986 96.261164 45.1911268"></polygon>
<path d="M109.003668,51.8229225 C109.669277,53.1787324 112.132628,53.2050704 112.398871,51.8893662 C112.558377,51.0788732 111.706279,50.8921127 110.748042,50.7592254 C109.310088,50.5335563 107.872134,49.8421831 108.191146,47.768662 C108.550935,45.9878521 110.321693,45.0576408 112.012698,45.0576408 C113.237778,45.0576408 114.329136,45.5365141 114.955168,46.7187324 L113.197601,47.7955986 C112.877989,47.1844366 112.358695,46.905493 111.746455,46.905493 C111.000494,46.905493 110.308501,47.1844366 110.175379,47.8357042 L110.175379,47.8488732 C110.081834,48.6198592 110.85418,48.7264085 111.65291,48.8988028 C113.25097,49.2046831 114.755485,49.8026761 114.35612,52.0222535 C113.943563,53.7898944 112.105644,54.7470423 110.388254,54.7470423 C109.163774,54.7470423 107.992063,54.1490493 107.366032,52.9530634 L109.003668,51.8229225 Z" id="Path"></path>
<path d="M122.424974,52.0096831 C122.411781,51.3985211 122.411781,50.2151056 122.424974,50.0157746 L123.103774,45.2048944 L125.061023,45.2048944 L123.742998,54.6147535 L121.652628,54.6147535 L119.469312,49.6703873 L119.069947,48.3941901 L118.936825,48.4211268 L118.96321,50.0295423 L118.323986,54.6147535 L116.353545,54.6147535 L117.67157,45.2048944 L119.602434,45.2048944 L121.865503,50.3348239 L122.291852,52.0360211 L122.424974,52.0096831 Z" id="Path"></path>
<path d="M130.053686,45.2048944 L129.161411,51.5308099 C128.90836,53.2978521 132.383316,53.2852817 132.623175,51.5308099 L133.51545,45.2048944 L135.485891,45.2048944 L134.593616,51.5308099 C133.981376,55.8233099 126.591922,55.8364789 127.19097,51.5308099 L128.082646,45.2048944 L130.053686,45.2048944 Z" id="Path"></path>
<path d="M138.202892,51.8229225 C138.868501,53.1787324 141.331252,53.2050704 141.597496,51.8893662 C141.757601,51.0788732 140.905503,50.8921127 139.946667,50.7592254 C138.509312,50.5335563 137.070758,49.8421831 137.39097,47.768662 C137.750159,45.9878521 139.520917,45.0576408 141.211922,45.0576408 C142.437002,45.0576408 143.52836,45.5365141 144.154392,46.7187324 L142.396825,47.7955986 C142.077213,47.1844366 141.557919,46.905493 140.945679,46.905493 C140.199718,46.905493 139.507725,47.1844366 139.374603,47.8357042 L139.374603,47.8488732 C139.281058,48.6198592 140.053404,48.7264085 140.852134,48.8988028 C142.450194,49.2046831 143.954109,49.8026761 143.554744,52.0222535 C143.142787,53.7898944 141.305467,54.7470423 139.587478,54.7470423 C138.362399,54.7470423 137.191287,54.1490493 136.565256,52.9530634 L138.202892,51.8229225 Z" id="Path"></path>
<path d="M150.705538,54.6141549 L148.761481,54.6141549 L150.080106,45.2042958 L153.794921,45.2042958 C158.308466,45.2168662 157.336437,51.7032042 152.888854,51.7032042 L151.104903,51.7032042 L150.705538,54.6141549 Z M153.514885,47.1718662 L151.744127,47.1718662 L151.371146,49.8697183 L153.142504,49.8697183 C155.046384,49.8697183 155.44575,47.1718662 153.514885,47.1718662 L153.514885,47.1718662 Z" id="Shape"></path>
<path d="M161.065044,45.2048944 L162.94254,45.2048944 L165.006526,54.6147535 L162.955732,54.6147535 L162.422646,52.4610211 L159.612698,52.4610211 C159.213333,53.2589437 158.94769,53.7773239 158.534533,54.6147535 L156.444762,54.6147535 L161.065044,45.2048944 Z M161.637108,47.2778169 L161.184974,48.6336268 L160.359259,50.6670423 L162.170794,50.6670423 L161.864374,48.6204577 L161.784021,47.2778169 L161.637108,47.2778169 L161.637108,47.2778169 Z M160.611711,43.3175352 C160.492981,44.2070423 161.131605,44.9648592 162.050265,44.9648592 C162.955732,44.9648592 163.767654,44.1807042 163.887584,43.3307042 C164.006914,42.4801056 163.421058,41.6690141 162.502399,41.6690141 C161.584339,41.6690141 160.73284,42.4262324 160.611711,43.3175352 L160.611711,43.3175352 Z M162.82321,43.3307042 C162.783633,43.6365845 162.477213,43.8754225 162.197178,43.8754225 C161.864374,43.8754225 161.704868,43.5695423 161.744444,43.3307042 C161.784021,42.9978873 162.02388,42.7590493 162.356684,42.7590493 C162.63552,42.7590493 162.861587,42.9978873 162.82321,43.3307042 L162.82321,43.3307042 Z" id="Shape"></path>
<path d="M176.111393,52.0096831 C176.098801,51.3985211 176.098801,50.2151056 176.111393,50.0157746 L176.790794,45.2048944 L178.747443,45.2048944 L177.430018,54.6147535 L175.339647,54.6147535 L173.156332,49.6703873 L172.756367,48.3941901 L172.623245,48.4211268 L172.650229,50.0295423 L172.011005,54.6147535 L170.040564,54.6147535 L171.358589,45.2048944 L173.290053,45.2048944 L175.552522,50.3348239 L175.978871,52.0360211 L176.111393,52.0096831 Z" id="Path"></path>
<path d="M183.997954,45.2048944 L185.87545,45.2048944 L187.938836,54.6147535 L185.888642,54.6147535 L185.354956,52.4610211 L182.546208,52.4610211 C182.146843,53.2589437 181.8806,53.7767254 181.467443,54.6147535 L179.377672,54.6147535 L183.997954,45.2048944 Z M182.74649,43.8885915 C182.666737,44.4207394 183.039118,44.8457394 183.585397,44.8457394 C184.130476,44.8457394 184.623386,44.4207394 184.703139,43.8885915 C184.783492,43.3307042 184.39672,42.9051056 183.85164,42.9051056 C183.305362,42.9051056 182.826243,43.3307042 182.74649,43.8885915 L182.74649,43.8885915 Z M184.570617,47.2778169 L184.117884,48.6336268 L183.292769,50.6670423 L185.103104,50.6670423 L184.796684,48.6204577 L184.717531,47.2778169 L184.570617,47.2778169 L184.570617,47.2778169 Z M185.56903,43.8885915 C185.489277,44.4207394 185.848466,44.8457394 186.407337,44.8457394 C186.967407,44.8457394 187.445926,44.4207394 187.526279,43.8885915 C187.606032,43.3307042 187.233051,42.9051056 186.67358,42.9051056 C186.115908,42.9051056 185.649383,43.3307042 185.56903,43.8885915 L185.56903,43.8885915 Z" id="Shape"></path>
<polygon id="Path" points="196.75425 45.1911268 196.474815 47.1580986 193.771605 47.1580986 192.733616 54.6141549 190.763175 54.6141549 191.801164 47.1580986 189.098554 47.1580986 189.377989 45.1911268"></polygon>
<polygon id="Path" points="204.637213 47.1054225 200.216614 47.1054225 199.95097 48.9520775 204.010582 48.9520775 203.744938 50.8532042 199.684127 50.8532042 199.431675 52.7136268 203.851675 52.7136268 203.585432 54.6141549 197.193792 54.6141549 198.512416 45.1911268 204.903457 45.1911268"></polygon>
<polygon id="Path" points="213.851993 45.1911268 213.571358 47.1580986 210.869347 47.1580986 209.830159 54.6141549 207.859718 54.6141549 208.898307 47.1580986 206.195697 47.1580986 206.475132 45.1911268"></polygon>
<path d="M40.3050794,6.5628169 C28.2377778,6.5628169 18.4203527,16.3653521 18.4203527,28.4132042 C18.4203527,40.4622535 28.2377778,50.2641901 40.3050794,50.2641901 C52.3711817,50.2641901 62.1886067,40.4622535 62.1886067,28.4132042 C62.1886067,16.3653521 52.3711817,6.5628169 40.3050794,6.5628169 M41.9517108,25.2191197 C47.2939683,26.2409155 52.3244092,28.2408099 50.9883951,35.6615493 C49.6086067,41.5720423 43.4652205,44.7715141 37.7223986,44.7715141 C33.6268078,44.7715141 29.7093122,42.7722183 27.6171429,38.7724296 L33.092522,34.9953169 C35.3190123,39.5278521 43.5539683,39.6170423 44.4444444,35.2173944 C44.9787302,32.5069718 42.1292063,31.8850352 38.9246914,31.4402817 C34.1167196,30.6842606 29.3087478,28.3736972 30.3773192,21.4408099 C31.5790123,15.4866197 37.4999295,12.3751408 43.1540035,12.3751408 C47.2495944,12.3751408 50.8996473,13.9751761 52.9918166,17.930669 L47.115873,21.53 C46.0473016,19.4858099 44.3113228,18.5526056 42.2635273,18.5526056 C39.770194,18.5526056 37.4555556,19.4858099 37.0100176,21.6634859 L37.0100176,21.7077817 C36.6988007,24.2859155 39.2802822,24.6408803 41.9517108,25.2191197" id="Shape"></path>
<path d="M41.4869841,0.982147887 C41.3976367,0.978556338 41.3412698,0.980950704 41.2669136,0.980950704 L3.07537919,0.980950704 C1.92765432,0.980950704 0.998201058,1.90876761 0.998201058,3.05447183 C0.998201058,4.20017606 1.92765432,5.12739437 3.07537919,5.12739437 L25.746843,5.12739437 C22.1645503,7.36492958 19.1357319,10.4015845 16.9122399,13.9901408 L5.42659612,13.9901408 C4.2782716,13.9901408 3.34941799,14.9155634 3.34941799,16.063662 C3.34941799,17.2099648 4.2782716,18.1377817 5.42659612,18.1377817 L14.8062787,18.1377817 C13.6849383,20.9080634 13.0031393,23.9022183 12.8478307,27.0352465 L7.77961199,27.0352465 C6.63188713,27.0352465 5.70243386,27.963662 5.70243386,29.1105634 C5.70243386,30.2562676 6.63188713,31.1834859 7.77961199,31.1834859 L12.9521693,31.1834859 C13.2687831,34.338662 14.1220811,37.3346127 15.4173192,40.0833451 L10.1314286,40.0833451 C8.984903,40.0833451 8.05724868,41.0123592 8.05724868,42.1568662 C8.05724868,43.3025704 8.984903,44.2315845 10.1314286,44.2315845 L17.8362963,44.2315845 C22.8133686,51.2644366 31.0201411,55.8592254 40.3050794,55.8592254 C55.4875485,55.8592254 67.7965079,43.5701408 67.7965079,28.4138028 C67.7965079,13.6489437 56.1213757,1.60049296 41.4869841,0.982147887 M40.3050794,51.7139789 C27.4354497,51.7139789 16.9680071,41.2613732 16.9680071,28.4138028 C16.9680071,15.5644366 27.4354497,5.11362676 40.3050794,5.11362676 C53.1765079,5.11362676 63.6403527,15.5644366 63.6403527,28.4138028 C63.6403527,41.2613732 53.1765079,51.7139789 40.3050794,51.7139789" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="190px" height="44px" viewBox="0 0 190 44" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 61.2 (89653) - https://sketch.com -->
<title>ridestore-logo-horizontal</title>
<desc>Created with Sketch.</desc>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-89.000000, -1005.000000)" fill="#231F20" fill-rule="nonzero">
<g id="Group-25-Copy-3" transform="translate(0.000000, 968.000000)">
<g id="Svensk">
<g id="ridestore-logo-horizontal" transform="translate(89.000000, 36.000000)">
<g id="g10" transform="translate(94.833760, 22.373997) scale(-1, 1) rotate(-180.000000) translate(-94.833760, -22.373997) translate(0.431586, 0.363127)">
<g id="g12">
<path d="M62.7714969,21.9960652 C63.0096704,22.9354164 63.3265665,23.6390014 63.689593,24.1735655 C64.5520317,25.2307998 65.9785655,25.7363573 68.0494212,25.7363573 L70.6843719,25.7363573 C72.0036023,25.7363573 73.5976096,25.636942 74.2228776,24.8634 C74.5874084,24.4119413 74.660114,23.6560641 74.4379859,22.6168962 C74.4379859,22.6168962 74.0754608,20.8749461 73.6061337,18.6260334 L62.0268914,18.6260334 L62.7714969,21.9960652 Z M60.6590236,12.4321767 L61.0380955,14.1480811 L78.3996883,14.1480811 L80.1360983,22.2838224 C80.7428139,25.12471 80.4384532,27.3630338 79.2310391,28.9367658 C77.9178257,30.6491071 75.4172549,31.4463864 71.3597818,31.4463864 L69.630893,31.4463864 C65.151226,31.4463864 62.8196331,30.8224439 60.7211994,29.062026 C59.1231807,27.7214005 57.9909792,25.843802 57.3446516,23.4761029 C57.2032518,23.025397 57.0789002,22.5574778 56.9751067,22.0709403 L54.2198156,9.1623632 C53.6131,6.32167631 53.9174607,4.08316686 55.1243734,2.50961049 C56.4375867,0.797459927 58.938659,-0.000196032739 62.9961321,-0.000196032739 L64.7250209,-0.000196032739 C69.2046879,-0.000196032739 71.5362808,0.623972521 73.6347145,2.38414954 C75.2327332,3.72501598 76.3654361,5.60243376 77.0112623,7.97028341 C77.1521607,8.42098934 77.2770137,8.88850703 77.3808072,9.37544608 L77.6731338,10.7441749 L71.956469,10.7441749 C71.7117771,9.58386182 71.5448049,8.8008851 71.5282582,8.74523063 C71.3843512,8.11064913 71.1521948,7.70586191 70.7259896,7.20186017 C69.8234375,6.20344191 68.3628073,5.71002907 66.3064927,5.71002907 L63.671542,5.71002907 C62.3523116,5.71002907 60.7583043,5.80924359 60.1330363,6.58298638 C59.7685055,7.03444507 59.6957999,7.79012148 59.9174266,8.8294902 L60.6590236,12.4321767" id="path14"></path>
<path d="M182.641951,22.6168962 C182.641951,22.6168962 182.278924,20.8749461 181.810099,18.6260334 L170.230856,18.6260334 L170.97496,21.9960652 C171.213635,22.9354164 171.530531,23.6390014 171.893056,24.1735655 C172.755495,25.2307998 174.18253,25.7363573 176.253386,25.7363573 L178.887835,25.7363573 C180.207066,25.7363573 181.801574,25.636942 182.426341,24.8634 C182.791373,24.4119413 182.864079,23.6560641 182.641951,22.6168962 L182.641951,22.6168962 Z M187.435004,28.9367658 C186.121791,30.6491071 183.620718,31.4463864 179.563747,31.4463864 L177.834356,31.4463864 C173.354689,31.4463864 171.023598,30.8224439 168.924663,29.062026 C167.327146,27.7214005 166.194443,25.843802 165.548617,23.4761029 C165.407217,23.025397 165.282865,22.5574778 165.179072,22.0709403 L162.423279,9.1623632 C161.817065,6.32167631 162.121426,4.08316686 163.328338,2.50961049 C164.641552,0.797459927 167.142624,-0.000196032739 171.199596,-0.000196032739 L172.928986,-0.000196032739 C177.408151,-0.000196032739 179.740246,0.623972521 181.838178,2.38414954 C183.436698,3.72501598 184.569401,5.60243376 185.215227,7.97028341 C185.356126,8.42098934 185.480477,8.88850703 185.584271,9.37544608 L185.876597,10.7441749 L180.159932,10.7441749 C179.915241,9.58386182 179.74877,8.8008851 179.732223,8.74523063 C179.587815,8.11064913 179.355658,7.70586191 178.929954,7.20186017 C178.027402,6.20344191 176.566772,5.71002907 174.509956,5.71002907 L171.875005,5.71002907 C170.555775,5.71002907 168.962269,5.80924359 168.337001,6.58298638 C167.971969,7.03444507 167.899263,7.79012148 168.121391,8.8294902 L168.862487,12.4321767 L169.241559,14.1480811 L186.603152,14.1480811 L188.340063,22.2838224 C188.946277,25.12471 188.641917,27.3630338 187.435004,28.9367658" id="path16"></path>
<path d="M139.194095,22.6168962 C139.194095,22.6168962 138.116046,17.4568879 137.425093,14.1480811 C137.313276,13.6152735 136.306429,8.81910203 136.284868,8.74523063 C136.14046,8.11064913 135.908304,7.70586191 135.481597,7.20165943 C134.579546,6.20344191 133.118916,5.71002907 131.062602,5.71002907 L128.427651,5.71002907 C127.10842,5.71002907 125.514413,5.80924359 124.889145,6.58298638 C124.524614,7.03444507 124.451909,7.79012148 124.673535,8.82969094 L125.415132,12.4321767 L126.783,18.6260334 L127.527606,21.9962659 C127.765779,22.9354164 128.082174,23.6386 128.445702,24.1737662 C129.30814,25.2310006 130.734674,25.7363573 132.80553,25.7363573 L135.440481,25.7363573 C136.759711,25.7363573 138.353718,25.636942 138.978986,24.8634 C139.343517,24.4119413 139.416724,23.6560641 139.194095,22.6168962 L139.194095,22.6168962 Z M144.892708,22.2842239 C145.498923,25.12471 145.194061,27.3630338 143.987148,28.9367658 C142.673934,30.6491071 140.173364,31.4461856 136.116392,31.4461856 L134.387002,31.4461856 C129.907335,31.4461856 127.575742,30.8226447 125.477308,29.0622268 C123.879289,27.7214005 122.747088,25.843802 122.101262,23.4763037 C121.959361,23.025397 121.835009,22.5574778 121.731215,22.0709403 L118.975423,9.16216246 C118.369209,6.32167631 118.674071,4.08316686 119.880984,2.50980621 C121.194197,0.797459927 123.694768,-0.000196032739 127.751739,-0.000196032739 L129.48113,-0.000196032739 C133.960797,-0.000196032739 136.29239,0.623972521 138.390823,2.38434526 C139.988341,3.72501598 141.121043,5.60243376 141.76687,7.97028341 C141.908269,8.42098934 142.033122,8.88870777 142.136916,9.37544608 L143.244047,14.5612993 L144.892708,22.2842239" id="path18"></path>
<path d="M97.0027917,17.1742495 C97.0027917,17.1742495 93.0340694,18.716817 90.9220975,19.521122 C88.5709492,20.4352306 89.2513732,21.5181091 89.5903317,22.8768011 C90.0466219,24.1590622 90.4302066,25.7555779 94.4606032,25.7555779 C94.4606032,25.7555779 95.7903633,25.7555779 96.7831707,25.7555779 C100.009293,25.7555779 100.286076,24.9116272 99.924052,23.1259665 L99.4467022,20.8929623 L105.300254,20.8929623 C105.300254,20.8929623 105.455694,21.5769252 105.75153,22.9752126 C105.935049,23.8440548 106.494631,26.7032096 104.950766,28.8801077 C103.382832,31.0919843 100.023834,31.4463864 97.6837171,31.4463864 C97.6837171,31.4463864 96.9065194,31.4463864 95.1590783,31.4463864 C92.1094549,31.4463864 89.8866696,31.0327667 88.0264094,29.8240257 C85.6732555,28.2957607 84.5896916,26.1160523 83.9238087,23.8665876 C83.4760425,22.528672 83.3010477,21.0960585 83.5191645,19.7001297 C83.9172902,17.7689846 84.782236,16.2146739 87.3219174,14.8324455 C87.9642336,14.4827106 88.761488,14.2058935 89.6299437,13.8642382 C91.0504605,13.3055355 93.1233218,12.5019832 94.7153235,11.8938991 C95.6279039,11.547125 96.2516677,11.1193533 96.3278833,10.2748506 C96.3855463,9.63028237 96.0726616,8.69559827 95.6319153,7.64624286 C95.1570726,6.49988104 93.9426386,5.6810225 91.4014529,5.6810225 L89.1666336,5.6810225 C87.9933159,5.6810225 87.0005085,5.82941771 86.5106233,6.10523107 C85.9008992,6.44849224 85.7409469,6.9948496 85.9856388,8.27219265 C86.1245316,8.99670456 86.4103397,10.2979856 86.5096205,10.7468849 L80.6751225,10.7468849 L80.1391068,8.33376888 C80.1391068,8.33376888 79.0841236,4.42406936 81.4778924,1.95503294 C82.691825,0.703364212 85.0459818,-0.000196032739 88.355841,-0.000196032739 L90.3564982,-0.000196032739 C93.3996031,-0.000196032739 99.5765695,0.0572418107 101.713612,7.78033553 L101.913177,8.53977577 C102.128786,9.35251182 102.404065,10.7492435 101.835457,12.624132 C101.197653,14.6387338 99.4100987,16.2567786 97.0027917,17.1742495" id="path20"></path>
<path d="M20.9692441,30.9161382 L12.7600813,30.9161382 C10.8755023,30.9161382 8.90272395,30.5001598 7.51439822,29.0269472 C6.28201345,27.7197946 5.51579684,25.5172021 5.05078193,23.4825767 C4.58072778,21.4277271 0,0.546146583 0,0.546146583 L6.50509425,0.547717354 L11.4632643,23.0856183 C11.5378753,23.3894345 11.8364195,25.1841284 13.7925006,25.1841284 L19.7104346,25.1841284 L20.9692441,30.9161382" id="path22"></path>
<path d="M164.137125,30.9161382 L155.927411,30.9161382 C154.043083,30.9161382 152.070505,30.5001598 150.682079,29.0269472 C149.450095,27.7197946 148.682926,25.5172021 148.218112,23.4825767 C147.748283,21.4277271 143.16733,0.546146583 143.16733,0.546146583 L149.672725,0.547717354 L154.631246,23.0856183 C154.705456,23.3894345 155.004301,25.1841284 156.960332,25.1841284 L162.878065,25.1841284 L164.137125,30.9161382" id="path24"></path>
<polyline id="path26" points="23.9956016 30.9178946 17.3096961 0.544385111 23.8145897 0.544385111 30.4942275 30.9178946 23.9956016 30.9178946"></polyline>
<path d="M44.0219294,6.28167936 L36.803468,6.28167936 C34.5306412,6.28167936 34.2305927,7.46412374 34.5815852,9.10826444 L37.3370267,22.0166408 C38.011183,25.1754966 40.2769899,25.1754966 41.3448595,25.1754966 L48.1700088,25.1754966 L44.0219294,6.28167936 Z M58.6002019,43.0824883 L52.1018267,43.0824883 L49.4307738,30.9172924 L49.4300217,30.9139803 L41.2931132,30.9139803 C38.9470293,30.9139803 36.9055065,30.2012115 35.2257567,28.7950451 C33.4387035,27.2981454 32.2319412,25.1294274 31.6390648,22.3495138 L28.8836233,9.44113744 C28.2772086,6.6006011 28.5814188,4.36231748 29.7881309,2.78817396 C30.9306115,1.2989123 32.734763,0.543597216 35.1505441,0.543597216 L42.7619165,0.543597216 L49.0125913,0.543597216 L49.2672615,0.543597216 L55.9311547,30.9172924 L58.6002019,43.0824883" id="path28"></path>
<path d="M119.3916,25.1700265 L120.65066,30.9020364 L117.042457,30.9020364 L117.045967,30.9200526 L117.966069,35.1090934 L111.456662,35.1090934 L105.694369,8.87124361 L105.69487,8.87124361 C105.495306,7.97891513 105.34488,7.29103781 105.263651,6.89799374 C104.473416,3.06732458 106.263979,1.57336064 107.665442,0.812751108 C109.953913,-0.428919883 113.466345,0.302282609 114.970599,0.673961183 L115.223313,6.107389 C114.094622,5.83278007 112.571314,5.5367424 112.09948,6.4322325 C111.858298,6.89036571 111.947049,7.70681541 112.199262,8.87124361 L112.197758,8.87124361 L115.781893,25.1700265 L119.3916,25.1700265" id="path30"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="204px" height="40px" viewBox="0 0 204 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>stadium</title>
<desc>Created with Sketch.</desc>
<g id="Site-EN" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Logotypes-—-color" transform="translate(-701.000000, -1013.000000)" fill="#000000" fill-rule="nonzero">
<g id="Merchants" transform="translate(143.000000, 118.000000)">
<g id="Partners-[20v-c]">
<g id="Rad-[0h-m]" transform="translate(1.000000, 845.000000)">
<g id="Group-17-Copy-2" transform="translate(440.000000, 0.000000)">
<g id="stadium" transform="translate(117.000000, 50.000000)">
<path d="M202.972817,3.28571429 C202.972817,4.74532398 201.782903,5.92857143 200.31507,5.92857143 C198.847238,5.92857143 197.657324,4.74532398 197.657324,3.28571429 C197.657324,1.82610459 198.847238,0.642857143 200.31507,0.642857143 C201.019949,0.642857143 201.695957,0.921300221 202.194381,1.41693208 C202.692805,1.91256394 202.972817,2.58478499 202.972817,3.28571429 L202.972817,3.28571429 Z M200.31507,0 C198.490197,-1.11115259e-16 197.010845,1.47106439 197.010845,3.28571429 C197.010845,5.10036418 198.490197,6.57142857 200.31507,6.57142857 C202.139944,6.57142857 203.619296,5.10036418 203.619296,3.28571429 C203.619296,2.41428868 203.271173,1.57855439 202.651511,0.962363433 C202.031848,0.346172475 201.191405,5.33594292e-17 200.31507,0 Z" id="Shape"></path>
<path d="M198.971831,1.55714286 L200.724507,1.55714286 C200.971779,1.54123332 201.21454,1.62847091 201.394459,1.79789428 C201.574378,1.96731765 201.675191,2.2036117 201.672676,2.45 C201.698352,2.81336318 201.473938,3.14809833 201.126761,3.26428571 L201.126761,3.26428571 C201.478732,3.35714286 201.579296,3.69285714 201.600845,4.02142857 C201.588228,4.28313774 201.634868,4.54432424 201.737324,4.78571429 L201.019014,4.78571429 C200.953692,4.53327321 200.915172,4.2747165 200.904085,4.01428571 C200.853803,3.67142857 200.724507,3.52857143 200.365352,3.52857143 L199.647042,3.52857143 L199.647042,4.79285714 L198.928732,4.79285714 L198.971831,1.55714286 Z M199.690141,2.98571429 L200.473099,2.98571429 C200.789155,2.98571429 200.968732,2.85 200.968732,2.52142857 C200.968732,2.19285714 200.796338,2.07142857 200.473099,2.07142857 L199.690141,2.07142857 L199.690141,2.98571429 Z" id="Shape"></path>
<path d="M127.672394,8.75714286 L127.672394,32.25 C127.672403,32.6336754 127.773975,33.0105892 127.966901,33.3428571 L130.840141,38.3428571 C131.232776,39.0191112 131.958392,39.4357047 132.743662,39.4357143 L144.466479,39.4357143 C144.85236,39.4360432 145.231484,39.3350172 145.565493,39.1428571 L149.947183,36.6285714 C150.030299,36.58138 150.124431,36.5567472 150.220141,36.5571429 C150.525609,36.5571429 150.773239,36.8033862 150.773239,37.1071429 L150.773239,38.5714286 C150.773239,39.025091 151.143077,39.3928571 151.599296,39.3928571 L156.591549,39.3928571 C157.036509,39.3774577 157.389143,39.0141635 157.388873,38.5714286 L157.388873,9.57857143 C157.389143,9.13583654 157.036509,8.77254225 156.591549,8.75714286 L151.635211,8.75714286 C151.178993,8.75714286 150.809155,9.12490896 150.809155,9.57857143 L150.809155,32.0142857 C150.815147,32.2395992 150.727772,32.4574627 150.567497,32.6168391 C150.407223,32.7762155 150.188132,32.8631014 149.961549,32.8571429 L135.099718,32.8571429 C134.6435,32.8571429 134.273662,32.4893768 134.273662,32.0357143 L134.273662,9.57857143 C134.273662,9.12490896 133.903824,8.75714286 133.447606,8.75714286 L127.672394,8.75714286 Z" id="Path"></path>
<path d="M118.592958,39.4 C118.372624,39.4000083 118.161417,39.3124853 118.006293,39.1568893 C117.85117,39.0012932 117.764985,38.7905199 117.766901,38.5714286 L117.76687,8.75714286 L124.368201,8.75714286 L124.368169,38.5714286 C124.370082,38.7892874 124.284881,38.9989783 124.131311,39.1543674 C123.977741,39.3097565 123.768382,39.3981138 123.549296,39.4 L118.592958,39.4 Z M117.766901,0 L117.766901,6.02142857 L124.368169,6.02142857 L124.368169,0.821428571 C124.368186,0.370540981 124.002706,0.00392076134 123.549296,9.11968913e-17 L117.766901,0 Z" id="Shape"></path>
<path d="M40.1750704,38.5714286 C40.1750704,39.025091 39.8052324,39.3928571 39.3490141,39.3928571 L34.3926761,39.3928571 C33.9364577,39.3928571 33.5666197,39.025091 33.5666197,38.5714286 L33.5666197,0.821428571 C33.5666197,0.367766098 33.9364577,8.33364443e-17 34.3926761,0 L39.341831,0 C39.7980493,2.77788148e-17 40.1678873,0.367766098 40.1678873,0.821428571 L40.1678873,8.75714286 L45.6701408,8.75714286 L45.6701408,15.3214286 L40.1750704,15.3214286 L40.1750704,38.5714286 Z" id="Path"></path>
<path d="M114.462676,-0.000279907695 L114.462676,38.5714286 C114.462676,39.025091 114.092838,39.3928571 113.63662,39.3928571 L108.687465,39.3928571 C108.231246,39.3928571 107.861408,39.025091 107.861408,38.5714286 L107.861408,37.0642857 C107.858952,36.8697633 107.753341,36.6910019 107.583665,36.5941683 C107.413989,36.4973348 107.205494,36.4968362 107.035352,36.5928571 L102.653662,39.1071429 C102.319653,39.2993029 101.940529,39.400329 101.554648,39.4 L82.2752113,39.4 C82.0548773,39.4000083 81.8436706,39.3124853 81.6885469,39.1568893 C81.5334231,39.0012932 81.447239,38.7905199 81.4491549,38.5714286 L81.4491549,15.4928571 C81.4388038,14.7017982 81.8591351,13.9669246 82.548169,13.5714286 L90.4495775,9.02142857 C90.7829156,8.82766533 91.1624847,8.72652056 91.5485915,8.72857143 L107.839859,8.72857143 L107.839859,0.821428571 C107.839783,0.599808093 107.929766,0.387560283 108.089374,0.232881469 C108.248982,0.0782026544 108.464672,-0.00578141694 108.687465,-2.30013491e-16 L114.462676,-0.000279907695 Z M88.0504225,32.0142857 C88.0446085,32.2358308 88.1290658,32.450312 88.284616,32.6090259 C88.4401663,32.7677398 88.6536098,32.8572183 88.8764789,32.8571429 L107.028169,32.8571429 C107.484387,32.8571429 107.854225,32.4893768 107.854225,32.0357143 L107.854225,11.8928571 C107.849287,11.6996147 107.742694,11.5231363 107.573461,11.4280193 C107.404229,11.3329022 107.197206,11.3331119 107.028169,11.4285714 L100.742958,15 C100.408949,15.19216 100.029825,15.2931861 99.6439437,15.2928571 L88.8692958,15.2928571 C88.4130775,15.2928571 88.0432394,15.6606232 88.0432394,16.1142857 L88.0504225,32.0142857 Z" id="Shape"></path>
<path d="M70.7176056,32.8571429 C70.9366894,32.8571429 71.1468001,32.7705997 71.3017157,32.616552 C71.4566313,32.4625043 71.543662,32.2535707 71.543662,32.0357143 L71.543662,21.2357143 C71.543662,20.9319577 71.2960313,20.6857143 70.9905634,20.6857143 C70.8948539,20.6853186 70.8007217,20.7099515 70.7176056,20.7571429 L51.4669014,31.8142857 C51.235659,31.9281417 51.1143126,32.1858706 51.1744663,32.4353916 C51.2346199,32.6849126 51.4602887,32.859919 51.7183099,32.8571429 L70.7176056,32.8571429 Z M78.1449296,38.5714286 C78.1449296,39.025091 77.7750916,39.3928571 77.3188732,39.3928571 L72.3697183,39.3928571 C71.9135,39.3928571 71.543662,39.025091 71.543662,38.5714286 L71.543662,37.0642857 C71.543662,36.7605291 71.2960313,36.5142857 70.9905634,36.5142857 C70.8948539,36.51389 70.8007217,36.5385229 70.7176056,36.5857143 L66.3359155,39.1 C66.0019066,39.29216 65.622783,39.3931861 65.2369014,39.3928571 L47.4084507,39.3928571 C46.4022479,39.4045942 45.5156726,38.7375105 45.2535211,37.7714286 L43.3643662,30.75 C43.1045394,29.7919451 43.5263232,28.7800554 44.3915493,28.2857143 L65.2225352,16.3357143 C65.4337976,16.2095974 65.5356827,15.9597197 65.4723999,15.7229104 C65.409117,15.4861012 65.1959303,15.3194798 64.9495775,15.3142857 L48.4284507,15.3142857 L48.4284507,8.75714286 L71.1988732,8.75714286 C71.9841434,8.75715249 72.7097593,9.17374599 73.1023944,9.85 L77.8432394,18.0214286 C78.0380943,18.3528993 78.1398089,18.730342 78.1377465,19.1142857 L78.1449296,38.5714286 Z" id="Shape"></path>
<path d="M0.826056338,39.4 C0.605722326,39.4000083 0.394515714,39.3124853 0.23939195,39.1568893 C0.084268187,39.0012932 -0.00191594809,38.7905199 7.17741838e-16,38.5714286 L7.17741838e-16,33.6428571 C0.0192412329,33.2031997 0.383503629,32.8567267 0.826056338,32.8571429 L22.001831,32.8571429 C22.2626659,32.8670446 22.494957,32.6942642 22.5590801,32.4426555 C22.6232032,32.1910469 22.5017011,31.9291089 22.2676056,31.8142857 L1.43661972,19.8642857 C0.582339966,19.3613384 0.173140249,18.3513887 0.438169014,17.4 L2.32732394,10.3785714 C2.58947545,9.41248955 3.47605069,8.74540583 4.48225352,8.75714286 L30.815493,8.75699041 L30.815493,15.3214286 L8.81366197,15.3214286 C8.56730918,15.3266227 8.35412242,15.4932441 8.29083957,15.7300533 C8.22755671,15.9668625 8.32944186,16.2167402 8.54070423,16.3428571 L29.3716901,28.2928571 C30.2369162,28.7871983 30.6587001,29.799088 30.3988732,30.7571429 L28.5097183,37.7785714 C28.2475668,38.7446533 27.3609916,39.411737 26.3547887,39.4 L0.826056338,39.4 Z" id="Path"></path>
<path d="M180.669296,8.75714286 C181.454566,8.75715249 182.180182,9.17374599 182.572817,9.85 L185.446056,14.85 L185.446056,9.57857143 C185.446056,9.12490896 185.815894,8.75714286 186.272113,8.75714286 L198.526479,8.75714286 C199.304039,8.76475483 200.019689,9.18033124 200.408451,9.85 L203.28169,14.85 C203.474933,15.1821377 203.576528,15.5591374 203.576197,15.9428571 L203.576197,38.5714286 C203.576197,39.025091 203.206359,39.3928571 202.750141,39.3928571 L197.800986,39.3928571 C197.358851,39.3737237 197.010427,39.011502 197.010845,38.5714286 L197.010845,16.1428571 C197.010845,15.6891947 196.641007,15.3214286 196.184789,15.3214286 L185.453239,15.3214286 L185.453239,38.5714286 C185.455265,38.7942854 185.36614,39.0083952 185.206313,39.1646326 C185.046487,39.32087 184.829679,39.405823 184.605634,39.4 L179.649296,39.4 C179.204366,39.380766 178.854862,39.0142635 178.859155,38.5714286 L178.859155,16.1428571 C178.859155,15.6891947 178.489317,15.3214286 178.033099,15.3214286 L168.084507,15.3214286 C167.628289,15.3214286 167.258451,15.6891947 167.258451,16.1428571 L167.258451,38.5714286 C167.258451,39.025091 166.888613,39.3928571 166.432394,39.3928571 L161.476056,39.3928571 C161.036751,39.3700346 160.692499,39.008868 160.693099,38.5714286 L160.693099,9.57857143 C160.693099,9.12490896 161.062937,8.75714286 161.519155,8.75714286 L166.475493,8.75714286 C166.931711,8.75714286 167.301549,9.12490896 167.301549,9.57857143 L167.301549,11.0928571 C167.304005,11.2873795 167.409617,11.466141 167.579293,11.5629745 C167.748968,11.6598081 167.957464,11.6603067 168.127606,11.5642857 L172.509296,9.05 C172.842634,8.85623676 173.222203,8.75509199 173.60831,8.75714286 L180.669296,8.75714286 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="107px" height="70px" viewBox="0 0 107 70" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Group 7</title>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-7" fill="#020203">
<path d="M99.4602459,1.69308197 C97.6878689,2.48201639 96.3119672,1.65664754 94.1520082,6.0947623 C87.3571311,20.0462787 82.0767213,31.3713607 75.7827459,47.6667295 C75.9646311,34.2843934 78.3563934,23.6352131 79.7859426,10.6043115 C80.0493033,8.20164754 80.4188115,4.89357377 80.3643033,2.3982459 C80.3227049,0.480704918 78.4111885,0.228245902 74.560041,2.12685246 C72.4207377,3.18115574 69.845082,3.09394262 68.8616393,5.6397623 C64.6762705,16.4759918 55.0128279,46.6092705 50.5253689,63.6473852 C49.4481148,67.7415246 53.5006557,68.4268934 54.7216393,64.2263197 C57.6739754,54.0740246 64.414918,31.6031639 68.4295902,20.0296393 C68.0270902,30.6251721 65.137582,47.3720984 66.4865164,56.1588197 C66.9116803,58.9215246 69.4881967,60.1158279 70.8164754,62.4539426 C71.7609016,64.1190246 73.2759426,64.2857049 74.109918,62.010418 C78.0353689,51.295541 85.6811475,32.3984098 93.0592623,17.2809918 C91.6133607,23.9358689 86.0655738,52.1748443 84.5244262,63.4302131 C84.2134426,65.6917295 86.9833197,65.7450902 89.4419262,69.1446803 C89.9953279,69.9083689 92.1148361,70.7360328 92.4958197,68.782918 C93.807459,62.0325082 102.372418,18.1895574 105.724959,4.26070492 C106.627787,0.507385246 106.369016,-1.38118033 99.4602459,1.69308197" id="Fill-1"></path>
<path d="M43.442,33.5507992 C46.3934754,29.151127 47.2455246,30.0433402 47.9529836,28.7055943 C48.8406066,27.0267418 48.2533525,25.4497336 45.0993361,25.8393238 C45.0993361,25.8393238 43.9081885,25.9242418 41.7112213,26.1749795 C45.2054836,17.1768238 48.261959,9.54567623 50.4655246,3.73711066 C51.2125738,1.7685041 51.312123,0.326905738 50.0899918,0.0328483607 C48.7852377,-0.281577869 45.0101148,1.75903689 42.6886393,2.15637295 C41.9516311,2.28260246 41.2447459,3.06895492 41.0023279,3.62493852 C37.284582,12.1620697 33.9567131,20.2995697 31.0703607,27.713832 C27.379582,28.3446926 23.0596639,29.1735041 18.2328197,30.2585041 C21.6843361,21.3845697 25.1814672,12.6334221 28.5922459,4.20961066 C30.2705246,0.064692623 25.8524918,-0.326618852 24.1383525,3.87538934 C21.9147049,9.32793033 17.7433934,19.5467828 13.1276967,31.4594057 C9.73413115,32.291373 6.14089344,33.2418238 2.37954098,34.3276844 C-0.351893443,35.1160451 -0.469803279,35.843873 0.71302459,37.4822746 C1.37056557,38.3942828 2.71347541,38.3027664 3.32941803,38.9531352 C4.9245,40.6371516 5.88986885,42.6525205 8.74380328,42.9574795 C6.19454098,49.76125 3.65216393,56.7773156 1.3487623,63.5328893 C-0.0971393443,67.773627 4.02339344,68.641168 5.60642623,64.1542828 C8.15798361,56.9207582 10.8509754,49.598873 13.6125328,42.2993648 C15.9139262,41.7643238 21.4878197,40.5639959 26.6397049,39.4474385 C22.5501557,50.6428484 19.8614672,59.1467008 18.8487623,63.2853074 C18.6542541,64.0814139 18.9781475,64.5232172 19.1436803,64.8479713 C20.5207295,66.8544467 21.8306475,66.9364959 23.6067541,69.4174795 C24.0904426,70.093668 25.6981475,70.4585861 26.2486803,68.793791 C30.0315492,57.3599795 33.9240082,46.6324795 37.5562623,37.0152254 C39.064418,36.6847336 41.7792131,36.0300615 43.442,33.5507992" id="Fill-3"></path>
<path d="M42.1857582,54.5631926 C41.0376434,55.2654877 40.1227664,54.5104057 41.6679303,52.3886025 C41.9272746,52.0325779 42.1914959,51.6865943 42.4574385,51.3449139 C42.7196516,52.1476189 42.9930533,52.9695451 43.2664549,53.7745451 C42.9095697,54.0711844 42.548668,54.3414303 42.1857582,54.5631926 M44.2418648,44.5035615 C43.9564139,44.8260205 43.6873156,45.1143402 43.421373,45.3900369 C43.3528074,45.1490533 43.2922746,44.9295861 43.2435041,44.7433975 C42.3725205,41.4393402 46.1551025,42.3433156 44.2418648,44.5035615 M46.2331352,51.0144221 C45.9657582,51.2462254 45.688627,51.5064303 45.4048975,51.7789713 C45.0847336,50.7978238 44.7654303,49.79975 44.4699385,48.8579057 C45.3627254,47.767168 46.218791,46.6907746 46.9506352,45.5512664 C49.9898975,40.8199549 43.981373,38.0919631 41.391373,41.1653648 C40.0105943,42.8043402 40.3545697,44.4126189 40.7355533,45.7928238 C40.8534631,46.2211434 41.0342008,46.8327828 41.2573975,47.5626189 C40.5172336,48.3205697 39.631332,49.2692992 38.4542418,50.6365943 C35.5202664,54.0456516 36.3198156,58.4699959 39.4623566,59.447127 C41.3721516,60.0415533 43.1597336,59.1794631 44.7051844,57.8101598 C44.7817828,58.0104057 44.8566598,58.2029057 44.9283811,58.3824959 C45.7480123,60.4386025 48.2906762,59.8163484 47.3224385,57.3336434 C47.1546107,56.9030287 46.9434631,56.3226598 46.7067828,55.6476189 C47.2059631,55.0150369 47.6606762,54.3735615 48.0634631,53.7765533 C49.93625,51.0012254 48.1271516,49.3731516 46.2331352,51.0144221" id="Fill-5"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.3, 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 536 124.5" style="enable-background:new 0 0 536 124.5;" xml:space="preserve">
<path d="M66.5,0.9C33.8,7.2,8.1,32.2,1.6,63.7C-2.4,83,1.1,98.4,12.1,110c15,15.9,42.3,19,65.7,7.5c9.6-4.8,22.7-16.4,22-19.6
c-0.6-3.2-4.1-2.7-12.9,2c-10.8,5.7-18.5,7.9-27.9,7.9c-10.9,0.1-15.4-1.5-21.5-7.6C31,93.6,29,88.2,29,76.7
c0-16.3,8.3-34.7,21.9-48.3C61,18.3,71,13.2,81.7,12.6c8-0.4,12.5,0.9,14.8,4.3c1.8,2.4,2,10,0.4,14.5c-2.1,6.1,3.9,11.1,9,7.4
c7.8-5.9,6-22.9-3.3-31C95.1,1.2,80-1.7,66.5,0.9z"/>
<path d="M191.5,25.4c-8.1,3.7-14.5,11.7-14.5,18.3c0,3.5,4.2,8.4,8.5,10c1.9,0.6,3.5,1.6,3.5,2c0,1.7-6.3,13.5-11.4,21.3
c-15.7,24.1-37.5,33.8-49.2,22.1c-3.1-3.1-5.4-8.7-5.4-13.2c0-1.9,0.7-2.2,7.3-2.7c20.1-1.6,35.6-12,38.8-26.1
c1.1-5.1,1-5.8-1.2-10.3c-9.3-18.6-49.6-10.5-61.2,12.3c-4.5,9-6,15.7-5.5,26.4c0.3,8.4,0.8,10.6,3.3,15.6
c5.6,10.8,16.2,16.4,31.1,16.4c16.2,0,25.8-4.3,38.9-17.5c9.6-9.6,14.7-17.4,21.5-33.3l3.8-8.7l5.4,0.3c2.9,0.2,5.4,0.5,5.5,0.6
c0.1,0.1-1.1,3.4-2.6,7.3c-3.8,9.2-8.1,26.4-8.1,32.1c0,6.6,1.9,11.7,5.6,15.3c2.9,2.8,4.3,3.3,9.3,3.7c3.2,0.2,7.5-0.1,9.5-0.8
c7.8-2.5,20.2-17.5,19.4-23.3c-0.6-4.3-4.1-3.2-10.6,3.2c-6.5,6.4-11.6,9.6-13.3,8.5c-2.5-1.5,1.1-14,10.1-35.3
c4.8-11.5,5.1-12.7,4.1-16.1c-1.3-4.4-4.1-7.2-7.3-7.3c-1.3,0-7.1,0.3-13,0.8L203,47.8l2-5.8c1.1-3.2,2-7.7,2-10
C207,24.2,200.3,21.3,191.5,25.4z M197.8,33.7c-0.3,0.7-1.3,3.7-2.3,6.5c-1.8,5.1-4,6.8-5.1,3.9c-0.9-2.4,4.5-11.6,6.9-11.6
C197.8,32.5,198,33.1,197.8,33.7z M148,49.2c-0.1,3.6-3,9.9-6.5,14.1c-3.3,3.9-12,9.2-15.3,9.2c-2,0-2.2-0.4-1.6-2.3
c3.2-10.6,14.9-23.7,21.1-23.7C147.6,46.5,148,47,148,49.2z"/>
<path d="M404.5,25.3c-5.3,2.5-12.1,10-13.5,15c-1.9,6.2,0,9.1,9.6,14.8c1.7,1,1.4,1.8-3.9,11.1c-12.9,22.8-26.5,35.8-39.6,37.9
c-8.5,1.4-16.6-4.2-19-13.1c-1.9-7.1-1.7-7.5,4.2-7.5c6.2,0,15.4-2.1,22-4.9C374.2,74.4,384,62,384,53.7c0-20.4-35.5-23-55.5-4.1
c-5,4.8-11.5,15.2-11.5,18.6c0,2.3-3,1.4-6.2-1.7c-2.1-2.2-2.8-3.5-2.2-4.8c3.2-7.3,5.5-15.9,5-18.7c-1.2-6.1-7.4-8.9-13.9-6.1
c-6.9,2.8-9.3,10.5-6.6,21.1c1.1,4.2,0.9,4.8-5,18.2c-6.2,13.9-12.4,24.3-15,25.1c-1.1,0.4-1.2-2.8-0.5-18.9
c1.4-30,0.8-34.6-4.9-40.7c-4.7-4.8-12.5-7.5-22.7-7.6c-10.5-0.1-14,0.7-14,3.5c0,1.1,0.8,2.2,1.8,2.5c6.6,2.2,12.3,5.8,14.4,9.2
c2.2,3.6,2.3,4.6,2.8,32.7c0.4,17.6,1,30,1.7,31.5c1.9,4.3,5,6.3,10.6,6.7c12.6,1,22.9-9.1,35.6-35l5.2-10.6l5.8,3.2l5.9,3.2
l0.4,7.2c1.2,18.4,13.9,29.6,33.8,29.5c24.6,0,41.9-14.5,58.7-48.9l5.4-11.2l4.7,0.6c2.6,0.3,4.9,0.8,5.1,1c0.3,0.2-0.6,2.7-1.8,5.6
c-5,11.1-9.4,23.4-10.7,29.9c-4.1,19.7,9.1,29.2,26.6,19.1c2.5-1.4,7.7-5.9,11.6-9.9l7.1-7.4l1.8,6.6c2.2,8.1,6.2,12.6,12.8,14.2
c9.1,2.3,18.9-3.2,27.3-15.4l3.9-5.7l0.6,5c1.8,14.3,8,21.3,18.8,21.3c8.3,0,15.1-3.9,15.1-8.7c0-2-0.5-2.3-4-2.3
c-5.3,0-8.6-1.7-10.1-5.2c-1.6-3.9-0.6-22.6,2-37.3c1-6.1,1.7-12.3,1.4-13.8c-0.7-3.6-6.6-8.7-10.1-8.7c-1.5,0.1-3.8,0.7-5.1,1.4
c-2.4,1.3-2.6,1.2-5.2-2.8c-4.8-7.1-13.4-10.6-21.1-8.6c-11.9,3.3-20.9,15.6-25.6,35.2c-1.5,6.1-2.4,7.6-10.2,16.5
c-12,13.7-20,19.4-20,14.4c0-2.7,6.1-16.9,13.6-31.6c3.5-7,6.4-13.9,6.4-15.3c0-1.5-0.9-4.2-2.1-6.1l-2-3.4l-13.5,0.7
c-7.4,0.4-13.4,0.4-13.4,0c0-0.4,1-3.8,2.1-7.4c2.2-6.8,2.1-9.9-0.4-13.4C416.7,23.4,409.5,23,404.5,25.3z M411,33.4
c0,2.5-4.5,12.1-5.6,12.1c-2.7,0-2.1-4.3,1.3-9.3C409.2,32.7,411,31.5,411,33.4z M362.6,48c0.8,2.1-4.2,12.4-7.9,16.3
c-3.5,3.7-11.5,8.2-14.6,8.2c-1.9,0-1.9-0.2-0.5-4.3C343.8,56,360.2,41.6,362.6,48z M498.7,54.1c1.3,2.3,2.8,6.7,3.4,9.8
c1.2,5.5,1.2,5.6-2.9,12.4c-6.3,10.7-15.9,23.1-18.8,24.4c-2.3,1.1-2.8,0.9-4.1-0.7c-3.2-4.3,0.5-24.4,6.8-37.2
c3.6-7.5,9.1-13.6,11.6-13.1C495.7,49.9,497.5,51.9,498.7,54.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,182 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.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 801.6 265.6" style="enable-background:new 0 0 801.6 265.6;" xml:space="preserve">
<style type="text/css">
.st0{clip-path:url(#SVGID_2_);enable-background:new ;}
.st1{clip-path:url(#SVGID_4_);}
.st2{clip-path:url(#SVGID_6_);}
.st3{clip-path:url(#SVGID_8_);fill:#151515;}
.st4{clip-path:url(#SVGID_10_);fill:#151515;}
.st5{clip-path:url(#SVGID_12_);fill:#151515;}
.st6{clip-path:url(#SVGID_14_);fill:#151515;}
.st7{clip-path:url(#SVGID_16_);fill:#151515;}
.st8{clip-path:url(#SVGID_18_);fill:#151515;}
.st9{clip-path:url(#SVGID_20_);fill:#151515;}
.st10{clip-path:url(#SVGID_22_);fill:#151515;}
.st11{clip-path:url(#SVGID_24_);fill:#151515;}
.st12{clip-path:url(#SVGID_26_);fill:#151515;}
.st13{clip-path:url(#SVGID_28_);fill:#151515;}
</style>
<g>
<defs>
<rect id="SVGID_1_" x="62" y="81.8" width="57.2" height="84"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<g class="st0">
<g>
<defs>
<rect id="SVGID_3_" x="62" y="81" width="58" height="85"/>
</defs>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
</clipPath>
<g class="st1">
<defs>
<path id="SVGID_5_" d="M62,81.8h29.6c7.8,0,14,2.1,18.4,6.3c4.5,4.2,6.7,9.6,6.7,16.4c0,4.3-1.1,8-3.4,11.3
c-2.2,3.3-5.1,5.5-8.6,6.7c4.2,1,7.6,3.3,10.4,6.9c2.7,3.6,4.1,7.9,4.1,13c0,6.9-2.3,12.5-7,16.9c-4.6,4.4-10.8,6.6-18.5,6.6
H62V81.8z M77.8,116.5h11.4c3.6,0,6.5-0.9,8.6-2.8c2.1-1.9,3.1-4.5,3.1-7.7c0-3.2-1-5.8-3.1-7.6c-2.1-1.9-5-2.8-8.8-2.8H77.8
V116.5z M77.8,152.2h13c3.9,0,6.9-1,9.1-2.9c2.2-1.9,3.3-4.6,3.3-8c0-3.4-1.1-6.1-3.2-8.2c-2.1-2.1-5.1-3.1-9-3.1H77.8V152.2z"
/>
</defs>
<clipPath id="SVGID_6_">
<use xlink:href="#SVGID_5_" style="overflow:visible;"/>
</clipPath>
<g class="st2">
<defs>
<rect id="SVGID_7_" x="62" y="81" width="58" height="85"/>
</defs>
<clipPath id="SVGID_8_">
<use xlink:href="#SVGID_7_" style="overflow:visible;"/>
</clipPath>
<rect x="57" y="76.8" class="st3" width="67.2" height="94"/>
</g>
</g>
</g>
</g>
</g>
<g>
<defs>
<path id="SVGID_9_" d="M127,149.9c0-5,1.6-9,4.7-12c3.2-3,7.3-4.9,12.3-5.7l14-2.1c2.9-0.4,4.3-1.8,4.3-4.1c0-2.2-0.8-4-2.5-5.5
c-1.7-1.4-4-2.1-7.1-2.1c-3.2,0-5.6,1.1-7.5,2.9c-1.9,1.8-3.6,4-4.6,6.3l-11.5-6c0,0,0-0.1,0-0.2c1.1-3.6,2.8-6.5,6.1-9.3
c4.8-4.1,10.1-6.4,17.2-6.4c8.5,0,14.7,2.1,18.8,6.2c4,4.1,6,9.5,6,15.9v28.7c0,3.5,0,6.1,0,9.2h-14c0,0,0-4.1,0-7
c-3.6,5.8-9.2,8.7-16.8,8.7c-5.9,0-10.6-1.7-14.2-5.2C128.8,158.8,127,154.7,127,149.9 M149.9,155.7c3.6,0,6.6-1,9-3.1
c2.4-2.1,3.5-5.5,3.5-10.4v-2.6l-12.9,2c-4.7,0.7-7.1,3.2-7.1,7.3c0,1.9,0.7,3.5,2,4.8C145.7,155.1,147.5,155.7,149.9,155.7"/>
</defs>
<clipPath id="SVGID_10_">
<use xlink:href="#SVGID_9_" style="overflow:visible;"/>
</clipPath>
<rect x="122" y="100.7" class="st4" width="60.4" height="71.7"/>
</g>
<g>
<defs>
<path id="SVGID_11_" d="M566.6,149.9c0-5,1.6-9,4.7-12c3.2-3,7.3-4.9,12.3-5.7l14-2.1c2.9-0.4,4.3-1.8,4.3-4.1
c0-2.2-0.8-4-2.5-5.5c-1.7-1.4-4-2.1-7.1-2.1c-3.2,0-5.6,1.1-7.5,2.9c-1.9,1.8-3.6,4-4.6,6.3l-11.5-6c0,0,0-0.1,0-0.2
c1.1-3.6,2.8-6.5,6.1-9.3c4.8-4.1,10.1-6.4,17.2-6.4c8.5,0,14.7,2.1,18.8,6.2c4,4.1,6,9.5,6,15.9v28.7c0,3.5,0,6.1,0,9.2h-14
c0,0,0-4.1,0-7c-3.6,5.8-9.2,8.7-16.8,8.7c-5.9,0-10.6-1.7-14.2-5.2C568.4,158.8,566.6,154.7,566.6,149.9 M589.4,155.7
c3.6,0,6.6-1,9-3.1c2.4-2.1,3.5-5.5,3.5-10.4v-2.6l-12.9,2c-4.7,0.7-7.1,3.2-7.1,7.3c0,1.9,0.7,3.5,2,4.8
C585.3,155.1,587.1,155.7,589.4,155.7"/>
</defs>
<clipPath id="SVGID_12_">
<use xlink:href="#SVGID_11_" style="overflow:visible;"/>
</clipPath>
<rect x="561.6" y="100.7" class="st5" width="60.4" height="71.7"/>
</g>
<g>
<defs>
<path id="SVGID_13_" d="M205.3,132.3v33.5H190v-58.3h14.8v7.2c1.6-2.8,3.9-5,6.9-6.5c3-1.5,6.1-2.3,9.4-2.3
c6.6,0,11.7,2.2,15.2,6.5c3.5,4.3,5.2,9.9,5.2,16.7v36.7h-15.2v-34c0-3.5-0.9-6.3-2.6-8.4c-1.7-2.1-4.3-3.2-7.8-3.2
c-3.2,0-5.8,1.1-7.7,3.4C206.2,125.9,205.3,128.8,205.3,132.3"/>
</defs>
<clipPath id="SVGID_14_">
<use xlink:href="#SVGID_13_" style="overflow:visible;"/>
</clipPath>
<rect x="185" y="101" class="st6" width="61.4" height="69.9"/>
</g>
<g>
<defs>
<path id="SVGID_15_" d="M267,167.6c0,0,0,0.1,0,0.1c1.5,2.5,2.5,3.9,4.4,5.5c2.4,2.1,5.8,3.7,9.4,3.7c10.1,0,15.2-6.2,15.2-17
v-4.3c-1.3,2.1-3.3,3.9-6,5.3c-2.7,1.4-6,2.1-9.9,2.1c-7.6,0-13.9-2.7-19-8.1c-5.1-5.4-7.6-12.1-7.6-20.3c0-7.9,2.5-14.6,7.5-20.1
c5-5.5,11.4-8.3,19-8.3c4.2,0,7.7,0.8,10.5,2.3c2.8,1.5,4.7,3.4,5.8,5.6v-6.9h14.9v52c0,8.8-2.5,16.1-7.4,21.9
c-5,5.8-12.5,9.4-22.5,9.4c-7.5,0-13.8-2.7-18.9-6.8c-3.6-2.9-6-6.4-7.4-10.2l-0.1-0.1L267,167.6z M282.7,149.7
c3.9,0,7.2-1.3,9.7-4c2.5-2.7,3.8-6.3,3.8-10.8c0-4.4-1.3-8-3.9-10.7c-2.6-2.7-5.8-4-9.6-4c-3.9,0-7.2,1.3-9.8,4
c-2.6,2.7-3.9,6.2-3.9,10.7c0,4.5,1.3,8.1,3.8,10.8C275.4,148.3,278.7,149.7,282.7,149.7z"/>
</defs>
<clipPath id="SVGID_16_">
<use xlink:href="#SVGID_15_" style="overflow:visible;"/>
</clipPath>
<rect x="248.5" y="101.4" class="st7" width="67.7" height="94.3"/>
</g>
<g>
<defs>
<path id="SVGID_17_" d="M365.4,146.2l11.5,6.4l-0.1,0.2c-1.7,4-4.1,6.8-7.7,9.6c-4.5,3.5-10.2,5.2-16.9,5.2
c-8.2,0-15.2-2.8-20.9-8.5c-5.7-5.6-8.6-13.2-8.6-22.7c0-9,2.8-16.4,8.4-22.1c5.6-5.7,12.2-8.6,19.8-8.6c8.8,0,15.8,2.7,20.8,8.1
c5,5.4,7.5,12.8,7.5,22.2c0,0.6,0,1.3-0.1,2.1c0,0.8-0.1,1.4-0.1,1.9l-0.1,0.8h-40.9c0.2,3.8,1.6,7,4.4,9.5
c2.8,2.5,6.1,3.8,10,3.8C358.9,154.1,362.3,152,365.4,146.2 M338.2,130h25.6c-0.2-3.2-1.3-6-3.4-8.2c-2.1-2.2-5.3-3.3-9.4-3.3
c-3.7,0-6.7,1.2-9.1,3.6C339.6,124.4,338.4,127.1,338.2,130"/>
</defs>
<clipPath id="SVGID_18_">
<use xlink:href="#SVGID_17_" style="overflow:visible;"/>
</clipPath>
<rect x="317.6" y="100.7" class="st8" width="66.4" height="71.9"/>
</g>
<g>
<defs>
<path id="SVGID_19_" d="M542.2,146.2l11.4,6.4c0,0,0,0.1-0.1,0.2c-1.7,4-4.1,6.8-7.7,9.6c-4.5,3.5-10.1,5.2-16.8,5.2
c-8.2,0-15.1-2.8-20.8-8.5c-5.7-5.6-8.6-13.2-8.6-22.7c0-9,2.8-16.4,8.3-22.1c5.6-5.7,12.1-8.6,19.7-8.6c8.8,0,15.7,2.7,20.7,8.1
c5,5.4,7.5,12.8,7.5,22.2c0,0.6,0,1.3-0.1,2.1c0,0.8-0.1,1.4-0.1,1.9l-0.1,0.8h-40.8c0.2,3.8,1.6,7,4.4,9.5
c2.8,2.5,6.1,3.8,10,3.8C535.7,154.1,539.1,152,542.2,146.2 M515.1,130h25.5c-0.2-3.2-1.3-6-3.4-8.2c-2.1-2.2-5.2-3.3-9.3-3.3
c-3.7,0-6.7,1.2-9,3.6C516.5,124.4,515.2,127.1,515.1,130"/>
</defs>
<clipPath id="SVGID_20_">
<use xlink:href="#SVGID_19_" style="overflow:visible;"/>
</clipPath>
<rect x="494.6" y="100.7" class="st9" width="66.2" height="71.9"/>
</g>
<g>
<defs>
<path id="SVGID_21_" d="M425.7,107.3v15.5c-1.7,0-3.1,0-4.6,0c-4.4,0-7.8,1.2-10.5,3.8c-2.7,2.6-4,6.8-4,12.6v26.7h-15.2v-58.3
h14.8v8.7c2.7-6.1,8.1-9.1,16-9.1C423,107,424.2,107.1,425.7,107.3"/>
</defs>
<clipPath id="SVGID_22_">
<use xlink:href="#SVGID_21_" style="overflow:visible;"/>
</clipPath>
<rect x="386.3" y="102" class="st10" width="44.4" height="68.8"/>
</g>
<g>
<defs>
<path id="SVGID_23_" d="M451.9,131.6v34.2h-15.4V80h15.4v32.4c3.5-4.3,8.6-6.4,15.4-6.4c7,0,12.2,2.2,15.8,6.5
c3.6,4.3,5.4,9.9,5.4,16.7v36.7h-15.4v-34c0-3.5-0.9-6.3-2.6-8.4c-1.7-2.1-4.4-3.2-7.9-3.2c-3.2,0-5.7,1.1-7.6,3.2
C453.1,125.5,452.1,128.2,451.9,131.6"/>
</defs>
<clipPath id="SVGID_24_">
<use xlink:href="#SVGID_23_" style="overflow:visible;"/>
</clipPath>
<rect x="431.5" y="75" class="st11" width="62" height="95.8"/>
</g>
<g>
<defs>
<path id="SVGID_25_" d="M686.4,80v75.3c0,3.9,0,10.5,0,10.5h-14.7c0,0,0-4.2,0-6.8c-1.3,2.5-3.4,4.4-6.2,5.9
c-2.8,1.5-6,2.3-9.7,2.3c-8,0-14.7-2.9-19.8-8.7c-5.2-5.8-7.8-13.1-7.8-22c0-8.6,2.5-15.8,7.6-21.7c5.1-5.8,11.6-8.8,19.5-8.8
c8.1,0,13.5,2.4,16,7.2V80H686.4z M643.6,136.5c0,5.1,1.3,9.2,3.9,12.1c2.6,3,6,4.4,10.1,4.4c4.1,0,7.4-1.5,10-4.5
c2.6-3,3.9-7.1,3.9-12.2c0-5.1-1.3-9-3.9-11.9c-2.6-2.9-5.9-4.3-10-4.3c-4.1,0-7.4,1.5-10.1,4.4
C644.9,127.5,643.6,131.5,643.6,136.5z"/>
</defs>
<clipPath id="SVGID_26_">
<use xlink:href="#SVGID_25_" style="overflow:visible;"/>
</clipPath>
<rect x="623.2" y="75" class="st12" width="68.2" height="97.2"/>
</g>
<g>
<defs>
<path id="SVGID_27_" d="M700.2,163.5c-2.1-2.1-3.2-4.6-3.2-7.6c0-3,1.1-5.5,3.2-7.6c2.1-2.1,4.7-3.1,7.6-3.1c3,0,5.6,1,7.7,3.1
c2.1,2.1,3.2,4.6,3.2,7.6c0,3-1.1,5.6-3.2,7.6c-2.1,2.1-4.7,3.1-7.7,3.1C704.8,166.6,702.3,165.6,700.2,163.5"/>
</defs>
<clipPath id="SVGID_28_">
<use xlink:href="#SVGID_27_" style="overflow:visible;"/>
</clipPath>
<rect x="692" y="140.1" class="st13" width="31.7" height="31.6"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 68 KiB

View File

@@ -0,0 +1,173 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="2415.000000pt" height="695.000000pt" viewBox="0 0 2415.000000 695.000000"
preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,695.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M3334 6912 c-221 -160 -348 -460 -331 -781 8 -151 36 -261 102 -396
57 -118 139 -219 228 -282 l45 -33 60 45 c122 89 236 266 281 435 103 384 -10
787 -282 1002 -27 21 -52 38 -56 38 -5 0 -26 -13 -47 -28z"/>
<path d="M2093 6043 c-20 -14 -35 -119 -28 -187 17 -144 74 -256 189 -372 91
-91 165 -135 273 -160 66 -15 175 -16 190 -1 13 14 15 182 3 240 -39 189 -213
387 -399 455 -68 24 -207 39 -228 25z"/>
<path d="M4525 6043 c-122 -27 -229 -87 -319 -178 -130 -133 -201 -323 -177
-476 6 -34 13 -64 15 -67 13 -12 111 -14 169 -3 34 7 96 29 137 48 132 63 273
227 319 373 31 98 30 282 -2 302 -13 8 -107 9 -142 1z"/>
<path d="M1265 5405 c-5 -2 -26 -6 -46 -9 -35 -6 -37 -9 -44 -54 -12 -78 -7
-242 9 -318 33 -154 112 -325 211 -454 63 -81 215 -224 292 -274 211 -135 432
-194 637 -168 109 14 122 18 131 40 4 9 9 64 12 122 26 491 -390 996 -909
1105 -60 13 -264 20 -293 10z"/>
<path d="M5190 5395 c-339 -76 -650 -330 -805 -658 -59 -124 -85 -222 -92
-343 -8 -136 3 -231 27 -244 10 -5 62 -15 114 -22 269 -34 559 74 792 295 113
106 193 216 259 351 66 136 95 240 102 372 8 144 -3 231 -30 246 -34 18 -289
21 -367 3z"/>
<path d="M3314 4896 c-217 -161 -358 -407 -409 -715 -27 -161 -17 -397 23
-554 35 -132 108 -296 176 -391 50 -70 171 -190 234 -231 l42 -28 43 28 c67
44 200 183 252 263 307 476 244 1182 -137 1548 -57 56 -144 124 -158 124 -4 0
-34 -20 -66 -44z"/>
<path d="M9325 4844 c-370 -41 -661 -181 -863 -417 -139 -163 -226 -347 -278
-587 -26 -121 -27 -449 -1 -569 59 -274 167 -481 342 -657 256 -257 583 -375
995 -361 343 13 604 85 823 228 l67 44 0 512 0 513 -425 0 -425 0 0 -146 0
-146 29 -29 29 -29 181 0 181 0 0 -230 0 -229 -32 -17 c-114 -59 -288 -94
-465 -94 -203 0 -352 42 -490 139 -214 151 -331 391 -349 713 -24 429 163 770
495 904 110 45 199 57 375 51 225 -6 311 -31 507 -142 79 -45 104 -55 143 -55
60 0 77 17 170 163 l69 108 -29 30 c-38 40 -170 127 -262 173 -96 48 -226 91
-337 111 -88 15 -371 27 -450 19z"/>
<path d="M11510 3550 l0 -1270 745 0 745 0 0 195 0 195 -510 0 -510 0 0 1075
0 1075 -235 0 -235 0 0 -1270z"/>
<path d="M14040 3550 l0 -1270 240 0 240 0 0 1270 0 1270 -240 0 -240 0 0
-1270z"/>
<path d="M15750 3551 l0 -1271 210 0 211 0 -3 919 c-2 506 0 914 3 908 4 -7
179 -331 389 -722 210 -390 394 -723 408 -738 44 -47 73 -57 167 -57 94 0 123
10 166 57 15 15 198 352 409 748 210 396 383 721 384 722 0 1 0 -412 -2 -918
l-3 -919 211 0 210 0 0 1271 0 1270 -230 -3 -230 -3 -24 -25 c-31 -33 -813
-1500 -857 -1607 -18 -46 -35 -80 -38 -78 -2 3 -21 44 -41 93 -47 115 -824
1560 -856 1592 l-24 25 -230 3 -230 3 0 -1270z"/>
<path d="M20230 3936 c0 -972 -1 -981 -60 -1102 -58 -119 -160 -180 -315 -191
-52 -3 -108 0 -158 10 -91 17 -139 9 -163 -27 -16 -25 -48 -315 -36 -327 4 -4
52 -15 107 -25 147 -28 410 -25 520 5 350 95 542 360 575 795 5 72 10 493 10
939 l0 807 -240 0 -240 0 0 -884z"/>
<path d="M22529 4793 c-5 -16 -229 -586 -497 -1268 l-488 -1240 204 -3 c203
-2 205 -2 247 23 53 30 57 39 171 353 l88 242 529 -2 529 -3 98 -268 c60 -164
107 -279 122 -294 46 -50 63 -53 283 -53 120 0 205 4 203 9 -1 5 -226 577
-498 1270 l-495 1261 -243 0 -243 0 -10 -27z m484 -1083 c92 -250 167 -458
167 -462 0 -4 -180 -8 -401 -8 -317 0 -400 3 -396 13 87 232 351 963 367 1017
11 41 24 82 26 90 3 8 20 -32 38 -90 18 -58 108 -310 199 -560z"/>
<path d="M537 4304 c-31 -7 -71 -21 -88 -30 -31 -15 -31 -17 -26 -67 11 -87
69 -192 156 -277 185 -183 453 -241 650 -140 l38 19 -9 53 c-25 146 -159 309
-318 387 -137 67 -276 86 -403 55z"/>
<path d="M5952 4300 c-225 -60 -397 -222 -448 -420 -15 -60 -15 -64 2 -77 87
-64 288 -79 422 -31 208 75 366 240 405 423 13 65 12 68 -69 96 -86 31 -218
35 -312 9z"/>
<path d="M1695 3767 c-182 -48 -265 -183 -221 -357 34 -131 99 -243 200 -345
87 -86 157 -137 398 -291 283 -180 381 -254 518 -393 186 -187 315 -400 410
-676 64 -186 92 -343 93 -510 1 -287 -66 -484 -268 -785 -114 -170 -137 -215
-137 -277 0 -83 52 -127 139 -119 73 6 142 47 218 127 132 141 217 340 259
609 72 464 -30 1053 -301 1735 -270 682 -632 1135 -1005 1259 -94 32 -230 42
-303 23z"/>
<path d="M4835 3765 c-399 -87 -783 -539 -1074 -1261 -160 -398 -269 -795
-312 -1139 -17 -130 -17 -496 0 -600 43 -274 132 -482 263 -621 137 -144 290
-177 343 -74 37 72 14 138 -125 345 -201 300 -264 484 -264 770 0 218 34 382
130 625 86 216 200 395 353 554 122 125 210 196 391 314 80 52 210 138 290
190 196 128 336 267 398 393 109 222 81 393 -78 474 -88 45 -200 55 -315 30z"/>
<path d="M327 3390 c-108 -13 -244 -60 -315 -108 -19 -13 11 -138 59 -240 129
-278 401 -483 734 -553 85 -18 275 -16 358 4 68 17 195 71 231 99 18 14 18 17
1 93 -34 155 -138 319 -282 446 -211 187 -525 290 -786 259z"/>
<path d="M6235 3390 c-318 -34 -629 -226 -784 -485 -44 -73 -91 -205 -94 -264
l-2 -46 72 -38 c114 -59 205 -80 358 -79 107 0 147 4 228 25 104 28 255 94
334 148 214 145 361 356 401 577 l9 53 -72 34 c-132 64 -297 91 -450 75z"/>
<path d="M9106 1704 c-19 -18 -21 -65 -4 -82 20 -20 65 -14 82 10 21 30 20 44
-4 68 -24 24 -53 26 -74 4z"/>
<path d="M9287 1702 c-34 -37 -11 -92 38 -92 50 0 73 60 37 93 -24 22 -55 21
-75 -1z"/>
<path d="M21537 1702 c-34 -37 -11 -92 38 -92 50 0 73 60 37 93 -24 22 -55 21
-75 -1z"/>
<path d="M21720 1700 c-11 -11 -20 -28 -20 -38 0 -41 69 -69 98 -40 17 17 15
64 -4 82 -21 22 -50 20 -74 -4z"/>
<path d="M9163 1570 c-133 -28 -224 -133 -239 -277 -11 -103 36 -220 111 -277
58 -44 113 -61 200 -60 141 1 238 65 285 190 46 122 10 280 -82 358 -67 58
-183 85 -275 66z m144 -105 c80 -34 112 -92 113 -203 0 -86 -21 -137 -76 -178
-49 -38 -132 -45 -197 -16 -68 30 -99 83 -105 177 -4 66 -2 81 22 129 36 73
84 103 169 105 21 1 54 -6 74 -14z"/>
<path d="M15691 1569 c-63 -12 -141 -60 -178 -108 -89 -115 -81 -303 16 -414
87 -99 277 -124 418 -56 l43 21 0 129 0 129 -101 0 -100 0 3 -42 3 -43 48 -3
47 -3 0 -55 c0 -50 -2 -55 -27 -65 -113 -43 -230 -2 -274 96 -25 54 -25 156 0
211 49 109 173 144 294 84 53 -26 65 -24 90 19 l18 31 -46 29 c-27 17 -72 34
-109 40 -70 12 -83 12 -145 0z"/>
<path d="M16533 1570 c-93 -20 -174 -86 -215 -175 -17 -38 -22 -69 -23 -130 0
-71 4 -88 33 -148 35 -70 78 -111 152 -144 56 -26 193 -23 255 5 108 49 166
139 173 267 5 105 -21 179 -87 245 -69 69 -186 102 -288 80z m144 -105 c80
-34 116 -96 116 -200 0 -82 -19 -131 -69 -174 -84 -74 -242 -43 -289 56 -27
54 -32 153 -11 208 40 104 151 152 253 110z"/>
<path d="M23031 1566 c-75 -25 -131 -95 -131 -165 0 -46 29 -109 60 -131 15
-10 58 -29 96 -41 99 -32 124 -52 124 -98 0 -85 -97 -111 -200 -55 l-51 29
-25 -30 c-13 -16 -24 -35 -24 -42 0 -19 82 -62 143 -75 106 -22 210 22 248
106 34 74 19 161 -35 203 -14 12 -61 33 -104 49 -89 32 -122 57 -122 94 0 65
94 92 173 50 49 -26 52 -26 78 16 25 40 24 41 -46 74 -56 26 -131 33 -184 16z"/>
<path d="M8250 1265 l0 -305 60 0 60 0 0 125 0 125 110 0 110 0 0 45 0 45
-110 0 -110 0 0 90 0 90 135 0 135 0 0 45 0 45 -195 0 -195 0 0 -305z"/>
<path d="M9860 1266 l0 -306 60 0 60 0 0 121 0 120 37 -3 c36 -3 41 -9 115
-120 l78 -118 65 0 65 0 -71 108 c-39 59 -81 117 -91 129 l-20 21 30 16 c125
65 131 244 10 308 -38 19 -62 23 -190 26 l-148 4 0 -306z m269 199 c33 -16 41
-33 41 -81 0 -71 -43 -104 -135 -104 l-55 0 0 100 0 100 60 0 c34 0 74 -7 89
-15z"/>
<path d="M10640 1265 l0 -305 195 0 195 0 0 45 0 45 -135 0 -135 0 0 85 0 85
105 0 105 0 0 45 0 45 -105 0 -105 0 0 85 0 85 135 0 135 0 0 45 0 45 -195 0
-195 0 0 -305z"/>
<path d="M11360 1266 l0 -306 50 0 50 0 2 205 3 205 115 -147 c208 -266 205
-263 250 -263 l40 0 0 305 0 305 -50 0 -50 0 -2 -207 -3 -207 -161 205 c-159
203 -160 204 -202 207 l-42 3 0 -305z"/>
<path d="M12230 1265 l0 -305 55 0 55 0 0 135 0 135 29 0 c35 0 55 -17 116
-100 27 -36 68 -89 93 -117 l44 -53 60 0 c33 0 58 4 56 8 -10 26 -222 301
-235 306 -15 6 -15 8 0 19 9 6 63 71 121 142 l105 130 -46 3 c-26 2 -56 1 -68
-2 -12 -3 -61 -56 -110 -118 -101 -128 -111 -137 -142 -138 -23 0 -23 2 -23
130 l0 130 -55 0 -55 0 0 -305z"/>
<path d="M13040 1265 l0 -305 180 0 180 0 0 45 0 45 -120 0 -120 0 0 260 0
260 -60 0 -60 0 0 -305z"/>
<path d="M13830 1413 c-34 -87 -88 -224 -120 -305 l-58 -148 53 0 c30 0 57 5
63 13 5 6 20 40 32 75 l23 62 126 0 127 0 18 -52 c31 -90 39 -98 97 -98 45 0
51 2 46 19 -2 10 -55 147 -117 305 l-113 286 -58 0 -58 0 -61 -157z m168 -91
c23 -62 42 -117 42 -122 0 -6 -40 -10 -93 -10 l-94 0 46 129 c25 72 49 127 52
123 3 -4 25 -58 47 -120z"/>
<path d="M14540 1266 l0 -306 60 0 60 0 0 120 0 120 35 0 c33 0 38 -5 115
-120 l80 -120 65 0 66 0 -62 93 c-34 50 -75 108 -90 128 l-28 36 36 24 c69 45
97 110 83 188 -10 56 -33 87 -83 113 -36 19 -61 23 -189 26 l-148 4 0 -306z
m269 199 c33 -16 41 -33 41 -81 0 -71 -43 -104 -135 -104 l-55 0 0 100 0 100
60 0 c34 0 74 -7 89 -15z"/>
<path d="M17230 1265 l0 -307 168 4 c158 3 170 5 217 30 65 34 98 70 131 141
24 53 26 68 22 145 -7 131 -53 209 -156 259 -54 27 -65 28 -219 32 l-163 3 0
-307z m316 196 c150 -68 148 -335 -3 -397 -18 -8 -68 -14 -113 -14 l-80 0 0
215 0 215 78 0 c53 0 90 -6 118 -19z"/>
<path d="M18165 1348 c-48 -123 -102 -260 -121 -305 l-32 -83 54 0 c61 0 70 9
99 98 l17 52 128 0 128 0 17 -52 c29 -89 38 -98 99 -98 l54 0 -42 108 c-24 59
-78 196 -121 305 l-77 197 -58 0 -58 0 -87 -222z m155 90 c0 -7 18 -62 40
-121 22 -60 40 -113 40 -118 0 -5 -42 -9 -94 -9 l-94 0 44 118 c24 64 44 123
44 130 0 6 5 12 10 12 6 0 10 -6 10 -12z"/>
<path d="M18900 1266 l0 -306 60 0 60 0 0 120 0 120 35 0 c33 0 38 -5 115
-120 l80 -120 65 0 65 0 -71 108 c-39 59 -80 116 -90 128 -19 20 -19 21 18 45
69 45 100 117 84 192 -13 54 -35 84 -84 109 -36 19 -61 23 -189 26 l-148 4 0
-306z m269 199 c33 -16 41 -33 41 -81 0 -71 -43 -104 -135 -104 l-55 0 0 100
0 100 60 0 c34 0 74 -7 89 -15z"/>
<path d="M19680 1265 l0 -305 195 0 195 0 0 45 0 45 -135 0 -135 0 0 85 0 85
105 0 105 0 0 45 0 45 -105 0 -105 0 0 85 0 85 135 0 135 0 0 45 0 45 -195 0
-195 0 0 -305z"/>
<path d="M20560 1265 l0 -305 55 0 54 0 3 133 3 132 143 3 142 3 0 -136 0
-135 60 0 60 0 0 305 0 305 -60 0 -60 0 0 -130 0 -130 -145 0 -145 0 0 130 0
130 -55 0 -55 0 0 -305z"/>
<path d="M21600 1548 c-5 -13 -59 -149 -119 -303 l-110 -280 46 -3 c25 -2 51
-1 58 2 7 2 25 36 40 75 l27 71 124 0 125 0 15 -37 c39 -102 44 -108 103 -111
48 -3 53 -1 47 15 -4 10 -57 147 -119 305 l-112 288 -58 0 c-50 0 -59 -3 -67
-22z m119 -232 c23 -65 40 -121 37 -123 -2 -2 -44 -2 -94 -1 l-90 3 46 127
c26 70 49 124 53 120 3 -4 25 -61 48 -126z"/>
<path d="M22260 1265 l0 -305 180 0 180 0 0 45 0 45 -125 0 -125 0 0 260 0
260 -55 0 -55 0 0 -305z"/>
<path d="M23786 1562 c-6 -11 -236 -593 -236 -599 0 -2 26 -3 57 -1 l58 3 26
70 27 70 127 0 128 0 26 -70 27 -70 57 -3 c31 -2 57 1 56 5 0 4 -53 141 -117
303 l-117 295 -57 3 c-31 2 -59 -1 -62 -6z m108 -241 c25 -69 46 -126 46 -128
0 -2 -43 -3 -96 -3 -75 0 -95 3 -91 13 3 7 24 66 48 130 23 64 44 116 45 114
2 -1 23 -58 48 -126z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="241px" height="31px" viewBox="0 0 241 31" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>stadiumoutlet</title>
<desc>Created with Sketch.</desc>
<g id="Site-EN" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Logotypes-—-color" transform="translate(-1123.000000, -1018.000000)" fill="#000000" fill-rule="nonzero">
<g id="Merchants" transform="translate(143.000000, 118.000000)">
<g id="Partners-[20v-c]">
<g id="Rad-[0h-m]" transform="translate(1.000000, 845.000000)">
<g id="Group-17-Copy-2" transform="translate(880.000000, 0.000000)">
<g id="stadiumoutlet" transform="translate(99.000000, 55.000000)">
<path d="M159.804831,2.57979452 C159.803649,3.72520562 158.866913,4.65290419 157.712313,4.6521228 C156.557714,4.65134142 155.622254,3.72237583 155.622648,2.57696419 C155.623041,1.43155256 156.559139,0.503219778 157.713739,0.503219178 C158.868474,0.505558826 159.803654,1.43424625 159.804831,2.57979452 L159.804831,2.57979452 Z M157.713739,-1.55071404e-16 C156.661552,-0.00171821502 155.712006,0.625737986 155.308151,1.58960386 C154.904296,2.55346972 155.125725,3.66378114 155.869121,4.40247798 C156.612518,5.14117481 157.731369,5.36267053 158.703631,4.96361746 C159.675892,4.56456438 160.309945,3.62361014 160.309947,2.57979452 C160.308772,1.15715342 159.147788,0.00350932902 157.713739,-1.55071404e-16 Z" id="Shape"></path>
<path d="M156.656421,1.22513699 L158.036927,1.22513699 C158.231714,1.21277501 158.422935,1.28117361 158.564949,1.4140075 C158.706964,1.54684138 158.787031,1.73219264 158.786039,1.92582192 C158.80564,2.20294165 158.641947,2.46070317 158.381519,2.56280822 L158.381519,2.56280822 C158.65762,2.63287671 158.736812,2.90041096 158.756075,3.15732877 C158.745961,3.36304698 158.782533,3.56839315 158.863091,3.75821918 L158.298046,3.75821918 C158.246429,3.55881929 158.216296,3.35454685 158.208153,3.14883562 C158.169627,2.88130137 158.066892,2.76452055 157.780089,2.76452055 L157.217185,2.76452055 L157.217185,3.75821918 L156.654281,3.75821918 L156.656421,1.22513699 Z M157.219325,2.3759589 L157.835737,2.3759589 C158.086155,2.3759589 158.223135,2.26979452 158.223135,2.01287671 C158.223135,1.7559589 158.086155,1.66041096 157.835737,1.66041096 L157.219325,1.66041096 L157.219325,2.3759589 Z" id="Shape"></path>
<path d="M100.520113,6.87732877 L100.520115,25.3286986 C100.519576,25.6305236 100.59931,25.9271482 100.75127,26.1886301 L103.022149,30.0869863 C103.333338,30.6146975 103.904094,30.9382488 104.520373,30.9363014 L113.747291,30.9363014 C114.047921,30.9350788 114.343023,30.8560353 114.603419,30.7069863 L118.053615,28.7302055 C118.186986,28.6537959 118.351454,28.6543543 118.484295,28.7316679 C118.617137,28.8089814 118.697872,28.9511301 118.69571,29.1039041 L118.69571,30.2929452 C118.69571,30.644743 118.983187,30.9299315 119.337806,30.9299315 L123.237469,30.9299315 C123.592089,30.9299315 123.879565,30.644743 123.879565,30.2929452 L123.879565,7.52280822 C123.879565,7.1710104 123.592089,6.88582192 123.237469,6.88582192 L119.367771,6.88582192 C119.013151,6.88582192 118.725675,7.1710104 118.725675,7.52280822 L118.725675,25.1460959 C118.725675,25.4978937 118.438199,25.7830822 118.083579,25.7830822 L106.37389,25.7830822 C106.01927,25.7830822 105.731794,25.4978937 105.731794,25.1460959 L105.731794,7.52280822 C105.731794,7.1710104 105.444318,6.88582192 105.089698,6.88582192 L100.520113,6.87732877 Z" id="Path"></path>
<path d="M93.3714476,30.9490411 C93.0168278,30.9490411 92.7293517,30.6638526 92.7293517,30.3120548 L92.7293517,6.87732877 L97.9281883,6.87732877 L97.9281883,30.3035616 C97.9281883,30.6553595 97.6407121,30.9405479 97.2860924,30.9405479 L93.3714476,30.9490411 Z M92.7229307,0 L92.7229307,4.72856164 L97.9217673,4.72856164 L97.9217673,0.636986301 C97.9217673,0.285188481 97.6342912,2.15414037e-17 97.2796714,0 L92.7229307,0 Z" id="Shape"></path>
<path d="M31.6296448,30.3035616 C31.6296448,30.6553595 31.3421686,30.9405479 30.9875488,30.9405479 L27.079325,30.9405479 C26.7247053,30.9405479 26.4372291,30.6553595 26.4372291,30.3035616 L26.4372291,0.636986301 C26.4372291,0.285188481 26.7247053,6.46242111e-17 27.079325,0 L30.9789876,0 C31.3336073,2.15414037e-17 31.6210835,0.285188481 31.6210835,0.636986301 L31.6210835,6.87732877 L35.9573712,6.87732877 L35.9573712,12.0347945 L31.6296448,12.0347945 L31.6296448,30.3035616 Z" id="Path"></path>
<path d="M90.1224423,0 L90.1224423,30.3035616 C90.1224423,30.6553595 89.8349661,30.9405479 89.4803464,30.9405479 L85.5721226,30.9405479 C85.2175028,30.9405479 84.9300266,30.6553595 84.9300266,30.3035616 L84.9300266,29.1145205 C84.9321877,28.9617465 84.851453,28.8195978 84.7186115,28.7422843 C84.5857699,28.6649708 84.4213026,28.6644123 84.2879307,28.7408219 L80.8377353,30.7176027 C80.5773391,30.8666517 80.282237,30.9456952 79.9816075,30.9469178 L64.7746359,30.9469178 C64.4200161,30.9469178 64.13254,30.6617293 64.13254,30.3099315 L64.13254,12.1685616 C64.1305769,11.5571873 64.4567236,10.9909725 64.9886679,10.6822603 L71.2255595,7.11089041 C71.4859175,6.96174988 71.7810445,6.88269969 72.0816874,6.88157534 L84.9107638,6.88157534 L84.9107638,0.636986301 C84.9107638,0.285188481 85.1982399,6.46242111e-17 85.5528597,0 L90.1224423,0 Z M69.3249556,25.1460959 C69.3249556,25.4978937 69.6124317,25.7830822 69.9670515,25.7830822 L84.2643872,25.7830822 C84.619007,25.7830822 84.9064831,25.4978937 84.9064831,25.1460959 L84.9064831,9.34246575 C84.9078654,9.19007007 84.826823,9.04862536 84.6941255,8.97183448 C84.5614281,8.8950436 84.3974262,8.89468331 84.2643872,8.97089041 L79.322389,11.8054795 C79.059125,11.9569861 78.7599114,12.0361414 78.4555595,12.0347945 L69.9734725,12.0347945 C69.6188527,12.0347945 69.3313766,12.319983 69.3313766,12.6717808 L69.3249556,25.1460959 Z" id="Shape"></path>
<path d="M55.6761368,25.7894521 C56.0307565,25.7894521 56.3182327,25.5042636 56.3182327,25.1524658 L56.3182327,16.6805479 C56.3182327,16.4460161 56.1265819,16.2558904 55.8901687,16.2558904 C55.8149879,16.2560228 55.7411682,16.2757955 55.6761368,16.3132192 L40.5205329,24.9932192 C40.3408723,25.0840038 40.2494278,25.2868552 40.3009938,25.4802233 C40.3525597,25.6735914 40.5331547,25.8050474 40.7345648,25.7958219 L55.6761368,25.7894521 Z M61.5256306,30.3014384 C61.5256306,30.6532362 61.2381544,30.9384247 60.8835346,30.9384247 L56.9753108,30.9384247 C56.6206911,30.9384247 56.3332149,30.6532362 56.3332149,30.3014384 L56.3332149,29.1123973 C56.3332149,28.8778654 56.1415642,28.6877397 55.905151,28.6877397 C55.8299702,28.6878721 55.7561504,28.7076448 55.691119,28.7450685 L52.2238011,30.7176027 C51.9633666,30.8665604 51.6682895,30.9455972 51.3676732,30.9469178 L37.3036323,30.9469178 C36.5195043,30.9466256 35.8331947,30.4242357 35.6299023,29.6729452 L34.1316785,24.1523973 C33.9285722,23.4007825 34.2594824,22.6075193 34.938579,22.2180822 L51.3270071,12.8310274 C51.5066677,12.7402428 51.5981121,12.5373913 51.5465462,12.3440233 C51.4949803,12.1506552 51.3143853,12.0191992 51.1129751,12.0284247 L38.1276554,12.0284247 L38.1276554,6.87732877 L56.0571137,6.87732877 C56.6732763,6.87581655 57.2438297,7.19925259 57.5553375,7.72664384 L61.2901954,14.1432192 C61.4405323,14.4015053 61.5202165,14.6942838 61.5213499,14.9925342 L61.5256306,30.3014384 Z" id="Shape"></path>
<path d="M0.642095915,30.9490411 C0.287476133,30.9490411 4.34283981e-17,30.6638526 0,30.3120548 L0,26.4349315 C-4.34283981e-17,26.0831337 0.287476133,25.7979452 0.642095915,25.7979452 L17.3151865,25.7979452 C17.5165967,25.8071707 17.6971916,25.6757147 17.7487576,25.4823466 C17.8003235,25.2889785 17.7088791,25.0861271 17.5292185,24.9953425 L1.15149201,15.6019178 C0.471804437,15.2129945 0.140701066,14.4192682 0.344591474,13.6676027 L1.84281528,8.14705479 C2.0461077,7.39576426 2.73241722,6.87337443 3.51654529,6.87308219 L24.2776465,6.87308219 L24.2776465,12.0347945 L6.94105684,12.0347945 C6.73964669,12.025569 6.55905169,12.1570251 6.50748577,12.3503931 C6.45591985,12.5437612 6.54736429,12.7466126 6.72702487,12.8373973 L23.1154529,22.2244521 C23.6470747,22.5334809 23.9731052,23.099494 23.9715808,23.7107534 C23.9716188,23.861362 23.9514658,24.0113066 23.9116519,24.1566438 L22.4134281,29.6771918 C22.2101356,30.4284823 21.5238261,30.9508721 20.739698,30.9511644 L0.642095915,30.9490411 Z" id="Path"></path>
<path d="M142.245648,6.87732877 C142.861811,6.87581655 143.432364,7.19925259 143.743872,7.72664384 L146.014751,11.6356164 L146.014751,7.52280822 C146.014751,7.1710104 146.302227,6.88582192 146.656847,6.88582192 L156.303268,6.88582192 C156.919431,6.8843097 157.489984,7.20774574 157.801492,7.73513699 L160.080933,11.6356164 C160.232509,11.8979279 160.311515,12.1953201 160.309947,12.4976712 L160.309947,30.3035616 C160.309947,30.6553595 160.022471,30.9405479 159.667851,30.9405479 L155.763908,30.9405479 C155.409288,30.9405479 155.121812,30.6553595 155.121812,30.3035616 L155.121812,12.680274 C155.121812,12.3284762 154.834336,12.0432877 154.479716,12.0432877 L146.014751,12.0432877 L146.014751,30.3035616 C146.014751,30.6553595 145.727275,30.9405479 145.372655,30.9405479 L141.475133,30.9405479 C141.120513,30.9405479 140.833037,30.6553595 140.833037,30.3035616 L140.833037,12.680274 C140.833037,12.3284762 140.545561,12.0432877 140.190941,12.0432877 L132.365933,12.0432877 C132.011313,12.0432877 131.723837,12.3284762 131.723837,12.680274 L131.723837,30.3035616 C131.723837,30.6553595 131.43636,30.9405479 131.081741,30.9405479 L127.167096,30.9405479 C126.812476,30.9405479 126.525,30.6553595 126.525,30.3035616 L126.525,7.52280822 C126.525,7.1710104 126.812476,6.88582192 127.167096,6.88582192 L131.066758,6.88582192 C131.421378,6.88582192 131.708854,7.1710104 131.708854,7.52280822 L131.708854,8.70547945 C131.708854,8.94001133 131.900505,9.13013699 132.136918,9.13013699 C132.212099,9.13000463 132.285919,9.11023191 132.35095,9.07280822 L135.801146,7.0960274 C136.061542,6.94697841 136.356644,6.86793492 136.657274,6.86671233 L142.245648,6.87732877 Z" id="Path"></path>
<path d="M240.160995,6.87732877 L169.410586,6.87732877 L169.410586,25.3371918 C169.41231,25.6353632 169.491954,25.9279944 169.641741,26.1865068 L171.91476,30.0912329 C172.226586,30.618305 172.796937,30.9416263 173.412984,30.9405479 L240.156714,30.9405479 C240.508465,30.9337703 240.791978,30.6525135 240.79881,30.3035616 L240.79881,7.52280822 C240.797743,7.17169752 240.51483,6.88538549 240.160995,6.87732877 Z M181.770933,25.1376027 C178.106705,25.1376027 175.542602,22.165 175.542602,18.91 C175.542602,15.655 178.110986,12.6823973 181.770933,12.6823973 C185.486528,12.6823973 188.016385,15.655 188.016385,18.9439726 C188.026718,20.5903097 187.372036,22.1721867 186.198539,23.3363454 C185.025042,24.500504 183.430476,25.1499768 181.770933,25.139726 L181.770933,25.1376027 Z M198.553179,20.120274 C198.553179,23.8742466 196.198828,25.1376027 193.733179,25.1376027 C191.267531,25.1376027 188.913179,23.8912329 188.913179,20.120274 L188.913179,12.9010959 L191.595,12.9010959 L191.595,20.3326027 C191.595,21.9144521 192.451128,22.6215068 193.73532,22.6215068 C195.019512,22.6215068 195.875639,21.9144521 195.875639,20.3326027 L195.875639,12.9010959 L198.55746,12.9010959 L198.553179,20.120274 Z M207.848588,15.2558219 L204.963437,15.2558219 L204.963437,24.9189041 L202.283757,24.9189041 L202.283757,15.2579452 L199.398606,15.2579452 L199.398606,12.9010959 L207.848588,12.9010959 L207.848588,15.2558219 Z M216.728774,24.9189041 L208.651208,24.9189041 L208.651208,12.9010959 L211.333028,12.9010959 L211.333028,22.5641781 L216.728774,22.5641781 L216.728774,24.9189041 Z M225.53619,24.9189041 L217.627709,24.9189041 L217.627709,12.9010959 L225.375666,12.9010959 L225.375666,15.2069863 L220.300968,15.2069863 L220.300968,17.714589 L225.20444,17.714589 L225.20444,19.9206849 L220.300968,19.9206849 L220.300968,22.6130137 L225.527629,22.6130137 L225.53619,24.9189041 Z M234.634689,15.2558219 L231.749538,15.2558219 L231.749538,24.9189041 L229.067718,24.9189041 L229.067718,15.2579452 L226.182567,15.2579452 L226.182567,12.9010959 L234.632549,12.9010959 L234.634689,15.2558219 Z M181.768792,15.204863 C179.782575,15.204863 178.256528,16.769726 178.256528,18.9078767 C178.256528,21.0460274 179.786856,22.6130137 181.770933,22.6130137 C183.755009,22.6130137 185.30032,21.0821233 185.30032,18.9609589 C185.30032,16.7378767 183.774272,15.2069863 181.770933,15.2069863 L181.768792,15.204863 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="498px" height="132px" viewBox="0 0 498 132" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>sportkost-logo</title>
<defs>
<linearGradient x1="44.7925728%" y1="44.9683791%" x2="58.9276747%" y2="58.6493377%" id="linearGradient-1">
<stop stop-color="#8CBE23" offset="0%"></stop>
<stop stop-color="#8CBE23" offset="42%"></stop>
<stop stop-color="#69B42E" offset="69%"></stop>
<stop stop-color="#43AC3E" offset="96%"></stop>
<stop stop-color="#43AC3E" offset="100%"></stop>
</linearGradient>
<linearGradient x1="43.3841048%" y1="43.2761405%" x2="59.1733915%" y2="59.3012061%" id="linearGradient-2">
<stop stop-color="#1C5E2A" offset="0%"></stop>
<stop stop-color="#1C5E2A" offset="23%"></stop>
<stop stop-color="#5AA532" offset="58%"></stop>
<stop stop-color="#A5CA5C" offset="93%"></stop>
<stop stop-color="#A5CA5C" offset="100%"></stop>
</linearGradient>
<linearGradient x1="49.9991162%" y1="107.906566%" x2="49.9991162%" y2="-34.5799663%" id="linearGradient-3">
<stop stop-color="#8CBE23" offset="0%"></stop>
<stop stop-color="#43AC3E" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50.0002784%" y1="189.118828%" x2="50.0002784%" y2="-27.2953975%" id="linearGradient-4">
<stop stop-color="#1C5E2A" offset="0%"></stop>
<stop stop-color="#1C5E2A" offset="20.88%"></stop>
<stop stop-color="#5AA532" offset="55.49%"></stop>
<stop stop-color="#A5CA5C" offset="89.01%"></stop>
<stop stop-color="#A5CA5C" offset="100%"></stop>
</linearGradient>
<linearGradient x1="55.4886307%" y1="38.8497131%" x2="37.2544976%" y2="58.8645197%" id="linearGradient-5">
<stop stop-color="#8CBE23" offset="0%"></stop>
<stop stop-color="#8CBE23" offset="42%"></stop>
<stop stop-color="#69B42E" offset="69%"></stop>
<stop stop-color="#42AB34" offset="92.86%"></stop>
<stop stop-color="#43AC3E" offset="100%"></stop>
</linearGradient>
<linearGradient x1="31.2067105%" y1="65.336293%" x2="55.743061%" y2="35.3260266%" id="linearGradient-6">
<stop stop-color="#A5CA5C" offset="0%"></stop>
<stop stop-color="#5AA532" offset="50%"></stop>
<stop stop-color="#539D32" offset="53.57%"></stop>
<stop stop-color="#34792F" offset="74.18%"></stop>
<stop stop-color="#23652C" offset="90.36%"></stop>
<stop stop-color="#1C5E2A" offset="100%"></stop>
</linearGradient>
<polygon id="path-7" points="73.94 23.51 73.94 46.14 81.53 59.55 91.17 54.03"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="sportkost.se" transform="translate(0.000000, 1.000000)">
<g id="sportkost-logo" transform="translate(0.180000, -0.230000)">
<g id="Group" transform="translate(73.820000, 71.780000)" fill="#010202" fill-rule="nonzero">
<path d="M34.2,16.7 C34.04,17.56 33.69,18.38 33.18,19.15 C32.66,19.93 32.03,20.59 31.3,21.17 C30.56,21.74 29.75,22.19 28.86,22.53 C27.98,22.86 27.09,23.02 26.21,23.02 L0,23.02 L1.29,16.82 L21.56,16.82 C22.82,16.82 23.73,16.09 24.05,14.32 L1.81,14.32 L3.46,6.36 C3.63,5.49 3.96,4.68 4.48,3.91 C4.99,3.14 5.61,2.47 6.34,1.9 C7.07,1.33 7.87,0.88 8.75,0.54 C9.63,0.2 10.51,0.03 11.42,0.03 L37.66,0.03 L36.44,5.89 L16.24,5.89 C15.36,5.89 14.05,6.6 13.7,8.51 L35.89,8.51 L34.2,16.7 Z" id="Path"></path>
<path d="M50.25,6.14 L49.19,11.23 L61.1,11.23 C62.52,11.23 63.5,9.71 63.58,8.52 C63.66,7.33 62.43,6.14 61.23,6.14 L50.25,6.14 L50.25,6.14 Z M36.2,23.02 L40.98,0.03 L67.95,0.03 C68.96,0.03 69.86,0.23 70.65,0.62 C71.44,1.01 72.1,1.52 72.64,2.17 C73.17,2.82 73.58,3.56 73.87,4.41 C74.41,6.01 74.27,7.46 74.16,9.1 C73.78,11.48 73.52,13.51 71.52,15.19 C70.86,15.77 70.1,16.24 69.22,16.63 C68.74,16.84 68.24,17.02 67.72,17.17 C66.7,17.46 65.82,17.46 64.76,17.46 L47.88,17.46 L46.77,23.01 L36.2,23.01 L36.2,23.02 Z" id="Shape"></path>
<path d="M86.77,7.96 C86.59,8.21 86.42,8.49 86.34,8.82 L85.31,13.77 C85.01,15.21 85.35,16.82 87.55,16.82 L97.84,16.82 C99.1,16.82 100.49,15.54 100.77,14.19 L101.89,8.82 C102.09,7.84 101.09,6.27 99.62,6.27 L89.94,6.27 C88.63,6.26 87.52,6.91 86.77,7.96 L86.77,7.96 Z M108.89,0.62 C109.68,1.01 110.35,1.53 110.9,2.17 C111.44,2.82 111.86,3.56 112.15,4.41 C112.43,5.25 112.58,6.12 112.58,7.01 L110.76,16.7 C110.65,17.58 110.35,18.41 109.83,19.19 C109.31,19.96 108.68,20.62 107.91,21.19 C107.15,21.75 106.32,22.2 105.41,22.53 C104.51,22.86 103.62,23.02 102.76,23.02 L80.82,23.02 C79.79,23.02 78.89,22.84 78.11,22.45 C77.33,22.07 76.66,21.56 76.12,20.91 C75.58,20.26 75.17,19.53 74.89,18.69 C74.61,17.86 74.47,16.97 74.47,16.04 L76.26,6.36 C76.41,5.49 76.73,4.68 77.25,3.91 C77.76,3.14 78.39,2.47 79.13,1.9 C79.87,1.34 80.68,0.88 81.57,0.54 C82.45,0.2 83.34,0.03 84.22,0.03 L106.19,0.03 C107.2,0.03 108.1,0.23 108.89,0.62 Z" id="Shape"></path>
<path d="M125.71,6.14 L124.6,11.26 L136.27,11.26 C137.33,11.26 138.25,10.68 138.47,9.89 L138.86,7.99 C139.07,6.97 137.95,6.14 136.87,6.14 L125.71,6.14 L125.71,6.14 Z M111.7,23.02 L116.48,0.03 L143.45,0.03 C144.45,0.03 145.35,0.23 146.15,0.62 C146.94,1.01 147.6,1.52 148.14,2.17 C149.55,3.9 150.13,6.67 149.68,8.84 L149.19,11.17 C148.86,12.77 148.31,14.11 147.15,15.15 C145.18,16.95 143.01,17.29 140.42,17.46 L146.07,23.01 L133.42,23.01 L127.62,17.46 L123.31,17.46 L122.16,23.01 L111.7,23.02 Z" id="Shape"></path>
<polygon id="Path" points="150.72 6.11 151.96 -1.42108547e-14 187.23 -1.42108547e-14 185.95 6.11 173.9 6.11 170.38 23.02 159.64 23.02 163.16 6.11"></polygon>
<polygon id="Path" points="190.34 0.03 201.08 0.03 198.93 10.36 212.37 0.03 227.46 0.03 210.8 12.09 222.09 23.02 209.42 23.02 198.48 12.53 196.3 23.02 185.56 23.02"></polygon>
<polygon id="Path" points="336.17 23.02 337.46 16.81 348.14 16.81 346.85 23.02"></polygon>
<path d="M389.21,6.36 C389.39,5.6 389.72,4.84 390.22,4.09 C390.72,3.34 391.33,2.66 392.05,2.05 C392.77,1.44 393.57,0.95 394.43,0.58 C395.29,0.21 396.17,0.02 397.08,0.02 L423.4,0.02 L423.35,0.26 L422.1,6.25 L402.15,6.25 C401.09,6.25 399.6,7.25 399.28,8.82 L418.5,8.82 L417.28,14.68 L398.06,14.68 L397.52,17.26 L421.71,17.26 L421.61,17.72 L415.54,23 L385.76,23 L389.21,6.36 Z" id="Path"></path>
<path d="M383.77,16.7 C383.6,17.56 383.26,18.38 382.75,19.15 C382.23,19.93 381.6,20.59 380.87,21.17 C380.13,21.74 379.32,22.19 378.43,22.53 C377.54,22.86 376.66,23.02 375.77,23.02 L349.56,23.02 L350.85,16.82 L371.12,16.82 C372.38,16.82 373.29,16.09 373.61,14.32 L351.37,14.32 L353.03,6.36 C353.2,5.49 353.53,4.68 354.05,3.91 C354.56,3.14 355.18,2.47 355.92,1.9 C356.65,1.33 357.45,0.88 358.33,0.54 C359.2,0.2 360.09,0.03 361,0.03 L387.24,0.03 L386.02,5.89 L365.82,5.89 C364.94,5.89 363.63,6.6 363.28,8.51 L385.47,8.51 L383.77,16.7 Z" id="Path"></path>
<path d="M238.34,7.96 C238.16,8.21 237.99,8.49 237.91,8.82 L236.88,13.77 C236.58,15.21 236.93,16.82 239.13,16.82 L249.42,16.82 C250.68,16.82 252.06,15.54 252.35,14.19 L253.47,8.82 C253.67,7.84 252.67,6.27 251.2,6.27 L241.52,6.27 C240.2,6.26 239.09,6.91 238.34,7.96 L238.34,7.96 Z M260.47,0.62 C261.26,1.01 261.93,1.53 262.48,2.17 C263.02,2.82 263.44,3.56 263.73,4.41 C264.01,5.25 264.16,6.12 264.16,7.01 L262.34,16.7 C262.23,17.58 261.93,18.41 261.41,19.19 C260.9,19.96 260.26,20.62 259.5,21.19 C258.74,21.75 257.91,22.2 257,22.53 C256.1,22.86 255.21,23.02 254.35,23.02 L232.4,23.02 C231.37,23.02 230.47,22.84 229.69,22.45 C228.91,22.07 228.24,21.56 227.7,20.91 C227.16,20.26 226.75,19.53 226.47,18.69 C226.19,17.86 226.05,16.97 226.05,16.04 L227.84,6.36 C227.99,5.49 228.31,4.68 228.83,3.91 C229.34,3.14 229.97,2.47 230.71,1.9 C231.45,1.34 232.26,0.88 233.15,0.54 C234.03,0.2 234.92,0.03 235.81,0.03 L257.78,0.03 C258.78,0.03 259.67,0.23 260.47,0.62 Z" id="Shape"></path>
<polygon id="Path" points="301.21 6.11 302.44 -1.42108547e-14 337.72 -1.42108547e-14 336.43 6.11 324.38 6.11 320.87 23.02 310.12 23.02 313.64 6.11"></polygon>
<path d="M297.49,16.7 C297.33,17.56 296.98,18.38 296.47,19.15 C295.95,19.93 295.32,20.59 294.59,21.17 C293.84,21.74 293.03,22.19 292.15,22.53 C291.26,22.86 290.38,23.02 289.49,23.02 L263.28,23.02 L264.57,16.82 L284.84,16.82 C286.1,16.82 287.01,16.09 287.33,14.32 L265.09,14.32 L266.74,6.36 C266.91,5.49 267.24,4.68 267.76,3.91 C268.27,3.14 268.89,2.47 269.63,1.9 C270.36,1.33 271.16,0.88 272.04,0.54 C272.92,0.2 273.8,0.03 274.71,0.03 L300.95,0.03 L299.73,5.89 L279.53,5.89 C278.65,5.89 277.34,6.6 276.99,8.51 L299.18,8.51 L297.49,16.7 Z" id="Path"></path>
</g>
<g id="Rectangle" transform="translate(-0.000000, 0.000000)">
<g id="Group-2" transform="translate(0.000000, 0.000000)">
<polygon id="Path" fill="url(#linearGradient-1)" points="1.42108547e-14 130.61 1.42108547e-14 130.61 19.92 118.8 73.96 23.51 73.93 0"></polygon>
<path d="M19.92,118.8 L19.92,118.8 C19.93,118.82 19.94,118.83 19.95,118.86 L39.74,107.03 L73.96,46.14 L73.96,23.51 L73.96,23.51 L19.92,118.8 Z" id="Path" fill="url(#linearGradient-2)"></path>
<polygon id="Path" fill="url(#linearGradient-3)" points="0 130.61 0 130.61 147.1 130.65 127.63 118.97 20.04 118.77 19.87 118.77"></polygon>
<polygon id="Path" fill="url(#linearGradient-4)" points="107.99 107.03 39.74 107.03 19.92 118.8 127.66 118.98"></polygon>
<polygon id="Path" fill="url(#linearGradient-5)" points="73.91 2.99 73.91 6.05 73.91 9.07 73.92 13.2 73.92 16.38 73.93 20.28 73.93 22.26 73.94 23.51 91.17 54.03 101.18 48.07 73.9 0"></polygon>
<mask id="mask-8" fill="white">
<use xlink:href="#path-7"></use>
</mask>
<use id="Mask" fill="url(#linearGradient-6)" xlink:href="#path-7"></use>
</g>
<path d="M1.42108547e-14,130.61 L1.42108547e-14,130.61 L19.92,118.8 L73.96,23.51 L73.93,0 L1.42108547e-14,130.61 Z M19.92,118.8 L19.92,118.8 C19.93,118.82 19.94,118.83 19.95,118.86 L39.74,107.03 L73.96,46.14 L73.96,23.51 L73.96,23.51 L19.92,118.8 Z M0,130.61 L0,130.61 L147.1,130.65 L127.63,118.97 L20.04,118.77 L19.87,118.77 L0,130.61 Z M107.99,107.03 L39.74,107.03 L19.92,118.8 L127.66,118.98 L107.99,107.03 Z M73.91,2.99 L73.91,6.05 L73.91,9.07 L73.92,13.2 L73.92,16.38 L73.93,20.28 L73.93,22.26 L73.94,23.51 L91.17,54.03 L101.18,48.07 L73.9,0 L73.91,2.99 Z M73.94,23.51 L73.94,46.14 L81.53,59.55 L91.17,54.03 L73.94,23.51 Z" id="Combined-Shape" fill="#FFFFFF" style="mix-blend-mode: color;"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="176" height="37" viewBox="0 0 176 37">
<path fill="#1A171B" fill-rule="nonzero" d="M11.254 17.246l17.129 19.18h-7.505L5.912 19.58v16.845H.091V.548h5.821v14.158L19.69.548h7.75L11.253 17.246zm31.683 19.18h5.823V.548h-5.823v35.878zm50.271-9.897c-1.482 1.795-4.717 4.806-9.707 4.806-7.364 0-12.706-5.404-12.706-12.85 0-7.323 5.268-12.849 12.258-12.849 3.434 0 7.014 1.5 9.12 3.82l.293.32 3.937-3.89-.271-.295C92.983 2.119 88.093.046 83.052.046c-4.97 0-9.553 1.898-12.908 5.345-3.355 3.448-5.172 8.076-5.172 13.095 0 5.127 1.872 9.812 5.268 13.195 3.395 3.383 8.105 5.247 13.258 5.247 5.378 0 10.706-2.556 13.889-6.67l.24-.307-4.141-3.763-.278.341zM140.381.548h-7.74l-13.778 14.158V.548h-5.82v35.878h5.82V19.58l14.964 16.845h7.507l-17.128-19.18L140.38.548zm30.854 17.44c-1.52-1.016-3.353-1.794-5.125-2.549-3.402-1.441-6.613-2.81-6.613-5.514 0-2.813 2.7-4.289 5.37-4.289 2.12 0 4.184.798 5.968 2.307l.326.274 3.467-4.306-.314-.264C171.472 1.26 168.227.043 164.67.043c-6.166 0-10.996 4.274-10.996 9.73 0 3.314 1.557 6.024 4.629 8.06 1.494.982 3.252 1.71 4.952 2.402 3.695 1.533 6.884 2.856 6.884 6.246 0 2.759-2.438 4.84-5.67 4.84-3.846 0-6.588-2.367-8.211-4.352l-.287-.355-4.04 3.995.24.296c3.191 3.873 7.648 6.006 12.544 6.006 6.516 0 11.255-4.452 11.255-10.571 0-3.465-1.593-6.276-4.727-8.352h-.007z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="136px" height="85px" viewBox="0 0 136 85" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
<title>Eleven</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.0570491019 0.0762371134 13.0567914 0.0762371134 13.0567914 5.25022091 0.0570491019 5.25022091"></polygon>
</defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-879.000000, -1137.000000)">
<g id="Group-25-Copy-3" transform="translate(762.000000, 1117.000000)">
<g id="Eleven" transform="translate(117.153351, 20.000000)">
<path d="M37.2787778,69.8702224 L37.2878161,69.862294 C37.902421,69.3320814 38.0281099,68.442825 37.487365,67.8132241 C36.94662,67.1833401 36.0677859,67.1768274 35.453181,67.70704 L35.4441427,67.7148268 C34.8295378,68.245181 34.7038488,69.1344374 35.2445938,69.7641799 C35.7853388,70.3939223 36.6641729,70.4005765 37.2787778,69.8702224 Z M34.9333371,67.138318 L34.9423754,67.1303896 C35.8326486,66.3623246 37.1694708,66.4074883 38.0057966,67.3815504 C38.8421225,68.3556125 38.6888949,69.6708794 37.7986217,70.439086 L37.7895834,70.4468728 C36.8993101,71.2150793 35.562488,71.1697741 34.7261621,70.195712 C33.8898363,69.2216499 34.0430638,67.906383 34.9333371,67.138318 L34.9333371,67.138318 Z" id="Fill-1" fill="#000000"></path>
<polyline id="Fill-2" fill="#000000" points="44.2376499 72.7319588 46.443299 74.4284974 46.0952416 74.9252869 44.4103103 73.6292293 43.8165726 74.4763258 45.3109306 75.6259008 44.9628732 76.1225599 43.4685152 74.9731152 42.5825735 76.2371134 42.0618557 75.836502 44.2376499 72.7319588"></polyline>
<g id="Group-6" transform="translate(55.206186, 79.742268)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-4"></g>
<path d="M2.21963014,1.95725331 C2.65827134,2.05777614 2.99541662,1.96614138 3.08349718,1.63778351 L3.08620735,1.62751841 C3.16195664,1.34535346 2.96438516,1.11501473 2.52574397,1.0144919 L1.54276491,0.789410898 L1.28665374,1.74356406 L2.21963014,1.95725331 Z M2.01189553,3.52155376 C2.47845148,3.62846097 2.80705973,3.52405744 2.89378521,3.20083211 L2.89649538,3.19056701 C2.97780051,2.88787187 2.76505208,2.64851988 2.22627006,2.52508837 L1.1435567,2.27709867 L0.879179509,3.26204713 L2.01189553,3.52155376 Z M1.02092146,0.0762371134 L2.76464555,0.475699558 C3.20897811,0.577474227 3.52850728,0.7705081 3.69558933,1.02650957 C3.825,1.22505155 3.8614518,1.44036819 3.79667871,1.68147275 L3.79396854,1.69161267 C3.67837974,2.1226215 3.3497715,2.29237113 3.02387342,2.36472754 C3.44069774,2.61271723 3.69247263,2.92630339 3.56157137,3.41364507 L3.5588612,3.42391016 C3.38676533,4.06522828 2.72250239,4.27791605 1.8561962,4.07949926 L0.0570491019,3.66726804 L1.02092146,0.0762371134 L1.02092146,0.0762371134 Z" id="Fill-3" fill="#000000" mask="url(#mask-2)"></path>
<polyline id="Fill-5" fill="#000000" mask="url(#mask-2)" points="10.088341 1.49532401 13.0567914 1.55829161 13.042292 2.13952135 10.7772664 2.09145066 10.7534169 3.05311487 12.7609762 3.09580265 12.7466123 3.6770324 10.7389175 3.63434462 10.714255 4.62768041 13.0078728 4.67650221 12.9933734 5.25773196 9.99619513 5.19401325 10.088341 1.49532401"></polyline>
</g>
<path d="M76.1740986,82.9146698 L75.1062995,81.499452 L74.7276885,83.1859823 L76.1740986,82.9146698 Z M74.5969879,80.7469815 L75.2812439,80.6185567 L77.9896907,84.1780274 L77.2094039,84.3243969 L76.577225,83.4680081 L74.5904601,83.8406946 L74.3645991,84.8580497 L73.6082474,85 L74.5969879,80.7469815 L74.5969879,80.7469815 Z" id="Fill-7" fill="#000000"></path>
<path d="M83.3535141,80.459852 L82.371134,78.4694832 L83.0252689,78.1910091 L83.9954559,80.1567992 C84.3123393,80.798808 84.8392775,80.9928648 85.4241331,80.7438596 C86.0038621,80.4971707 86.1993682,80.0194924 85.8848403,79.3823736 L84.9025987,77.3918761 L85.5565951,77.1134021 L86.5244266,79.0743021 C87.0337678,80.1064834 86.6622923,80.8922332 85.6889185,81.3064698 C84.721087,81.7185187 83.8483067,81.4625645 83.3535141,80.459852" id="Fill-8" fill="#000000"></path>
<polyline id="Fill-9" fill="#000000" points="91.7965405 73.5729088 90.69061 74.342234 90.257732 73.8240701 93.0870154 71.8556701 93.5198934 72.373834 92.4141112 73.1431591 94.6391753 75.8074991 94.0216046 76.2371134 91.7965405 73.5729088"></polyline>
<g id="Group-13" transform="translate(0.000000, 32.422680)" fill="#000000">
<polyline id="Fill-10" points="99.1681607 36.6993166 96.4335134 36.3667071 96.9423987 35.7696961 98.9164208 36.0427833 98.325424 34.1476502 98.8201521 33.5672441 99.5909448 36.1783051 100.748228 37.1502043 100.31296 37.6607419 99.1681607 36.6993166"></polyline>
<path d="M4.35486926,8.25980185 L14.174786,8.25980185 C14.0042567,5.80201712 12.210674,3.85298183 9.47821457,3.85298183 C6.74588386,3.85298183 4.95255856,5.71733199 4.35486926,8.25980185 M18.2735395,11.9886299 L4.26954023,11.9886299 C4.9100871,14.7005978 7.00212835,16.7345737 9.90537452,16.7345737 C12.1682025,16.7345737 13.2782521,15.9294901 14.174786,14.9547809 L17.0780322,17.3277528 C15.5410801,19.1922306 13.0647365,20.4635294 9.90537452,20.4635294 C4.09875347,20.4635294 0,15.886956 0,10.2937777 C0,4.70059951 3.5863932,0.124026035 9.47821457,0.124026035 C14.4737594,0.124026035 18.4443263,3.98032885 18.4443263,10.0395946 C18.4443263,10.7598653 18.4015974,11.3955785 18.2735395,11.9886299" id="Fill-12"></path>
</g>
<polyline id="Fill-14" fill="#000000" points="75.391998 52.5773196 67.4742268 33.2989691 71.9493196 33.2989691 77.1132075 46.6773505 82.2770954 33.2989691 86.7525773 33.2989691 78.8345467 52.5773196 75.391998 52.5773196"></polyline>
<path d="M48.1592929,40.4845108 L57.9568962,40.4845108 C57.7866304,38.0490647 55.9974269,36.117744 53.2711194,36.117744 C50.5446836,36.117744 48.7557369,37.9651492 48.1592929,40.4845108 M62.0461006,44.1794478 L48.0742884,44.1794478 C48.7131062,46.8667668 50.8005959,48.882256 53.6971692,48.882256 C55.9547963,48.882256 57.0621661,48.0844898 57.9568962,47.1186396 L60.8533411,49.4700437 C59.32005,51.3175755 56.8492696,52.5773196 53.6971692,52.5773196 C47.9038942,52.5773196 43.814433,48.0423422 43.814433,42.5 C43.814433,36.9576578 47.3925831,32.4226804 53.2711194,32.4226804 C58.2551824,32.4226804 62.2164948,36.2439336 62.2164948,42.2481271 C62.2164948,42.9618513 62.1739926,43.5917866 62.0461006,44.1794478" id="Fill-15" fill="#000000"></path>
<path d="M96.3551995,40.4845108 L106.152871,40.4845108 C105.982347,38.0490647 104.193131,36.117744 101.466933,36.117744 C98.7407352,36.117744 96.9516477,37.9651492 96.3551995,40.4845108 M110.241976,44.1794478 L96.270066,44.1794478 C96.9090167,46.8667668 98.9963925,48.882256 101.892986,48.882256 C104.150629,48.882256 105.258135,48.0844898 106.152871,47.1186396 L109.049208,49.4700437 C107.515778,51.3175755 105.045108,52.5773196 101.892986,52.5773196 C96.099799,52.5773196 92.0103093,48.0423422 92.0103093,42.5 C92.0103093,36.9576578 95.5886128,32.4226804 101.466933,32.4226804 C106.451159,32.4226804 110.412371,36.2439336 110.412371,42.2481271 C110.412371,42.9618513 110.369869,43.5917866 110.241976,44.1794478" id="Fill-16" fill="#000000"></path>
<path d="M134.948454,41.8167657 L134.948454,52.5773196 L130.741845,52.5773196 L130.741845,41.8167657 C130.741845,38.1873088 129.603354,36.1802116 126.361029,36.1802116 C123.819631,36.1802116 121.629024,38.4860629 121.629024,42.3293201 L121.629024,52.5773196 L117.42268,52.5773196 L117.42268,32.7641688 L121.629024,32.7641688 L121.629024,35.497106 C122.461497,34.0879031 124.21414,32.4226804 127.149521,32.4226804 C132.144488,32.4226804 134.948454,35.7531258 134.948454,41.8167657" id="Fill-17" fill="#000000"></path>
<path d="M36.504132,47.1156927 L36.4651637,47.0933001 C35.8355593,48.0743751 34.9237535,48.8632046 33.3292395,48.8632046 C30.7521147,48.8632046 29.3581725,46.6680955 29.3581725,43.7980282 L29.3581725,24.5360825 L21.9072165,24.5360825 L21.9072165,28.2501974 L25.3024196,28.2501974 L25.3024196,42.9539806 C25.3024196,48.6520019 27.9639756,52.5773196 33.2869602,52.5773196 C36.2766899,52.5773196 38.1414346,51.1723123 39.4329897,49.5254398 L36.504132,47.1156927" id="Fill-18" fill="#000000"></path>
<polyline id="Fill-19" fill="#000000" points="35.534916 15.1576226 34.669064 16.1538278 34.1752577 15.6932706 36.3906904 13.1443299 36.8843586 13.6050301 36.0185065 14.6012352 38.556701 16.9692428 38.0729725 17.5257732 35.534916 15.1576226"></polyline>
<polyline id="Fill-20" fill="#000000" points="40.3092784 9.91090153 40.7953365 9.48157859 41.6641184 10.8257666 42.9837709 9.66010892 42.114989 8.31592088 42.6010471 7.88659794 44.6907216 11.1201634 44.2047808 11.5493492 43.3240351 10.18665 42.0043826 11.3523077 42.885011 12.715007 42.3990702 13.1443299 40.3092784 9.91090153"></polyline>
<polyline id="Fill-21" fill="#000000" points="47.3195876 4.66835467 49.9475997 3.50515464 50.2191134 4.01079897 48.2139149 4.89840224 48.6632801 5.73512611 50.4405938 4.94843366 50.7121075 5.45407799 48.9349271 6.24089159 49.3989687 7.1052357 51.4293838 6.20636628 51.7010309 6.71213176 49.0476687 7.88659794 47.3195876 4.66835467"></polyline>
<path d="M62.6217164,3.49751033 C63.0759084,3.4353984 63.3290688,3.202866 63.2863592,2.83118036 L63.2849399,2.81934951 C63.24494,2.47118471 62.9671346,2.29963749 62.4427493,2.37146761 L61.3888175,2.5159729 L61.5190106,3.6487761 L62.6217164,3.49751033 Z M62.2262339,1.77781281 C62.6533292,1.71936282 62.9188767,1.49711198 62.8753929,1.11951091 L62.8739736,1.10768007 C62.8366834,0.783176953 62.5756521,0.615150816 62.1486858,0.673741657 L61.191915,0.804866832 L61.3182371,1.90231835 L62.2262339,1.77781281 Z M60.4639175,0.251352399 L62.1612019,0.018679156 C62.5935875,-0.0406159016 62.9490701,0.0426225284 63.1924241,0.248958061 C63.3810686,0.408815283 63.4933263,0.621207081 63.5251971,0.898527671 L63.5266165,0.910358514 C63.5836485,1.40598632 63.3547461,1.70710944 63.0919083,1.90485353 C63.5542293,2.00935931 63.8942281,2.24456773 63.958615,2.80498349 L63.9599053,2.81667349 C64.0448082,3.5542702 63.5335842,4.0258138 62.6903613,4.1414462 L60.9390126,4.3814433 L60.4639175,0.251352399 L60.4639175,0.251352399 Z" id="Fill-22" fill="#000000"></path>
<polyline id="Fill-23" fill="#000000" points="68.6270362 7.99360578e-15 71.8556701 0.196829572 71.8122654 0.854109881 69.348677 0.703935157 69.2769263 1.79146109 71.4604507 1.92461884 71.4168983 2.58189915 69.2333739 2.4487414 69.159261 3.57214476 71.6537052 3.72416299 71.6103004 4.3814433 68.3505155 4.18262841 68.6270362 7.99360578e-15"></polyline>
<path d="M78.7083468,3.41678719 L78.4280262,1.74287845 L77.2618867,3.07390991 L78.7083468,3.41678719 Z M78.3319878,0.87628866 L79.01617,1.03846212 L79.742268,5.25773196 L78.9620473,5.07282267 L78.8049736,4.06534961 L76.8184624,3.59446832 L76.1170727,4.39837032 L75.3608247,4.21924355 L78.3319878,0.87628866 L78.3319878,0.87628866 Z" id="Fill-24" fill="#000000"></path>
<path d="M83.4918705,5.46341147 L84.5225246,3.50515464 L85.1604181,3.79991977 L84.1426369,5.73392296 C83.8101326,6.36567252 83.9785759,6.86627278 84.549092,7.12998299 C85.1142673,7.39112667 85.630416,7.23097565 85.9601815,6.60410248 L86.9909725,4.64584566 L87.628866,4.94061079 L86.6135499,6.86973758 C86.0789135,7.88531062 85.1986259,8.11270453 84.2495916,7.67421413 C83.3057612,7.23803359 82.972846,6.44985447 83.4918705,5.46341147" id="Fill-25" fill="#000000"></path>
<polyline id="Fill-26" fill="#000000" points="92.4794134 9.17262253 91.3708 8.40550115 91.8030494 7.88659794 94.6391753 9.84933512 94.2070744 10.3682383 93.098461 9.60111694 90.876928 12.2680412 90.257732 11.8395468 92.4794134 9.17262253"></polyline>
<polyline id="Fill-27" fill="#000000" points="97.5298889 15.9445208 98.2445448 13.1443299 98.7837589 13.7592764 98.2342866 15.7757384 100.248843 15.4300592 100.773196 16.0279652 98.0033451 16.4589823 96.8528464 17.5257732 96.3917526 17.0000866 97.5298889 15.9445208"></polyline>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="258px" height="39px" viewBox="0 0 258 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>storochliten</title>
<desc>Created with Sketch.</desc>
<g id="Site-EN" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Logotypes-—-color" transform="translate(-235.000000, -1181.000000)" fill-rule="nonzero">
<g id="Merchants" transform="translate(143.000000, 118.000000)">
<g id="Partners-[20v-c]">
<g id="Rad-[0h-m]" transform="translate(1.000000, 1014.000000)">
<g id="Group-17-Copy-2">
<g id="storochliten" transform="translate(94.000000, 52.000000)">
<g id="Lager_1" transform="translate(0.000000, 0.663391)">
<g id="Group" transform="translate(0.000000, 0.117936)" fill="#FFFFFF" stroke="#FFFFFF" stroke-width="6.29999973">
<path d="M13.23,0.877149877 C14.679,0.877149877 16.632,1.25307125 19.026,1.94226044 C19.341,2.004914 19.53,2.06756757 19.719,2.06756757 C19.845,2.06756757 20.286,1.94226044 20.979,1.69164619 C21.231,1.62899263 21.42,1.56633907 21.735,1.56633907 C22.68,1.56633907 23.688,2.31818182 24.759,3.82186732 C25.83,5.32555283 26.334,6.76658477 26.334,8.14496314 C26.334,8.95945946 26.082,9.58599509 25.641,10.1498771 C25.137,10.7137592 24.57,10.9643735 23.877,10.9643735 C23.31,10.9643735 22.869,10.8390663 22.491,10.6511057 C22.113,10.4004914 21.357,9.77395577 20.16,8.64619165 C18.459,7.07985258 16.758,6.26535627 15.12,6.26535627 C14.301,6.26535627 13.671,6.45331695 13.23,6.82923833 C12.726,7.20515971 12.537,7.70638821 12.537,8.33292383 C12.537,9.58599509 13.608,10.5257985 15.813,11.1523342 C18.774,12.029484 20.664,12.6560197 21.483,13.031941 C25.137,14.7862408 26.964,17.4176904 26.964,20.8009828 C26.964,23.8083538 25.704,26.3144963 23.247,28.1941032 C20.727,30.1363636 17.388,31.1388206 13.293,31.1388206 C11.466,31.1388206 9.513,30.95086 7.497,30.512285 C5.481,30.0737101 4.032,29.5724816 3.087,29.0085995 C2.394,28.5700246 1.764,27.5675676 1.26,26.0638821 C0.63,24.4348894 0.315,22.9312039 0.315,21.490172 C0.315,20.8009828 0.441,20.2371007 0.756,19.9238329 C1.134,19.485258 1.575,19.2346437 2.079,19.2346437 C2.646,19.2346437 3.15,19.485258 3.654,20.04914 C3.969,20.3624079 4.662,21.3648649 5.796,23.0565111 C6.3,23.8710074 7.182,24.497543 8.316,25.0614251 C9.45,25.5626536 10.647,25.8759214 11.907,25.8759214 C12.978,25.8759214 13.797,25.6879607 14.49,25.3120393 C15.12,24.9361179 15.498,24.4348894 15.498,23.8083538 C15.498,23.2444717 15.246,22.7432432 14.742,22.3673219 C14.238,21.9287469 13.419,21.5528256 12.222,21.2395577 C10.206,20.6130221 8.631,19.9864865 7.56,19.485258 C6.489,18.9840295 5.481,18.2948403 4.536,17.480344 C2.268,15.47543 1.134,13.2199017 1.134,10.7137592 C1.134,9.46068796 1.449,8.27027027 2.016,7.07985258 C2.583,5.88943489 3.402,4.88697789 4.473,4.00982801 C6.867,1.87960688 9.765,0.877149877 13.23,0.877149877" id="Path"></path>
<path d="M41.265,14.9115479 L41.265,22.1167076 C41.265,22.9938575 41.454,23.6830467 41.895,24.1842752 C42.336,24.7481572 42.84,24.9987715 43.533,24.9987715 C44.1,24.9987715 44.856,24.7481572 45.738,24.2469287 C45.927,24.1216216 46.179,24.0589681 46.368,24.0589681 C46.683,24.0589681 46.998,24.2469287 47.313,24.6855037 C47.628,25.1240786 47.754,25.5626536 47.754,26.0012285 C47.754,26.8783784 47.25,27.7555283 46.305,28.507371 C44.289,30.1990172 41.832,31.0761671 38.934,31.0761671 C36.666,31.0761671 34.839,30.4496314 33.453,29.1339066 C32.067,27.8181818 31.374,26.1265356 31.374,24.0589681 L31.374,14.2850123 C31.374,13.9717445 31.311,13.7837838 31.248,13.6584767 C31.185,13.5958231 30.996,13.5331695 30.618,13.5331695 L28.413,13.5331695 C27.972,13.5331695 27.72,13.470516 27.594,13.3452088 C27.468,13.2199017 27.405,12.9066339 27.405,12.4054054 L27.405,11.465602 C27.405,11.027027 27.594,10.7137592 27.909,10.5257985 L37.737,4.38574939 C37.989,4.26044226 38.304,4.1977887 38.619,4.1977887 L40.383,4.1977887 C40.761,4.1977887 40.95,4.26044226 41.076,4.44840295 C41.202,4.63636364 41.265,4.94963145 41.265,5.45085995 L41.265,8.33292383 C41.265,8.77149877 41.328,9.02211302 41.454,9.14742015 C41.58,9.27272727 41.895,9.33538084 42.336,9.33538084 L46.305,9.33538084 C46.809,9.33538084 47.187,9.46068796 47.313,9.64864865 C47.439,9.83660934 47.565,10.2751843 47.565,10.9017199 L47.565,12.1547912 C47.565,12.8439803 47.439,13.2825553 47.25,13.5958231 C47.061,13.8464373 46.683,13.9717445 46.179,13.9717445 L42.273,13.9717445 C41.895,13.9717445 41.58,14.034398 41.454,14.1597052 C41.328,14.2223587 41.265,14.5356265 41.265,14.9115479" id="Path"></path>
<path d="M60.165,14.2223587 C59.535,14.2223587 59.031,14.472973 58.653,14.9115479 C58.275,15.3501229 58.086,15.9766585 58.086,16.7285012 C58.086,17.6056511 58.275,18.7334152 58.59,20.2371007 C58.905,21.6781327 59.283,22.9938575 59.724,24.1216216 C60.165,25.3120393 60.858,25.8759214 61.866,25.8759214 C63.126,25.8759214 63.756,25.0614251 63.756,23.495086 C63.756,22.3046683 63.567,20.9262899 63.252,19.4226044 C62.937,17.9189189 62.559,16.6658477 62.055,15.7260442 C61.677,14.7235872 61.047,14.2223587 60.165,14.2223587 M61.929,9.27272727 C64.575,9.27272727 66.843,9.96191646 68.796,11.2776413 C70.182,12.2174447 71.316,13.470516 72.198,15.036855 C73.08,16.6658477 73.521,18.3574939 73.521,20.1117936 C73.521,23.1818182 72.072,25.8132678 69.237,28.0061425 C66.528,30.0737101 63.441,31.0761671 59.913,31.0761671 C56.511,31.0761671 53.739,30.1363636 51.597,28.1941032 C49.518,26.3144963 48.51,23.8710074 48.51,20.8636364 C48.51,17.5429975 49.77,14.7862408 52.29,12.6560197 C54.936,10.4004914 58.149,9.27272727 61.929,9.27272727" id="Shape"></path>
<path d="M85.05,9.46068796 C85.806,9.46068796 86.247,9.58599509 86.436,9.77395577 C86.625,9.96191646 86.751,10.6511057 86.877,11.8415233 C86.94,12.468059 87.192,12.7813268 87.57,12.7813268 C87.885,12.7813268 88.137,12.5933661 88.389,12.1547912 C89.523,10.4004914 91.035,9.46068796 92.862,9.46068796 C94.185,9.46068796 95.256,9.8992629 96.075,10.7137592 C96.453,11.1523342 96.831,11.6535627 97.083,12.2800983 C97.335,12.9066339 97.461,13.5331695 97.461,14.1597052 C97.461,14.8488943 97.272,15.5380835 97.02,16.2272727 C96.705,16.9164619 96.327,17.480344 95.823,17.9815725 C94.878,18.8587224 93.807,19.2972973 92.484,19.2972973 C91.728,19.2972973 91.161,19.1719902 90.657,18.9213759 C90.153,18.6707617 89.523,18.1695332 88.704,17.3550369 C88.389,17.041769 88.137,16.9164619 87.885,16.9164619 C87.507,16.9164619 87.255,17.1670762 87.129,17.6056511 C87.003,18.044226 86.94,18.9840295 86.94,20.4250614 C86.94,22.5552826 87.003,24.0589681 87.192,24.8108108 C87.318,25.2493857 87.444,25.5 87.633,25.6879607 C87.822,25.8759214 88.2,26.0012285 88.767,26.1891892 C90.027,26.5651106 90.72,27.2542998 90.72,28.1941032 C90.72,28.7579853 90.531,29.2592138 90.09,29.6977887 C89.649,30.1363636 89.145,30.4496314 88.452,30.5749386 C87.066,30.8882064 85.05,31.0135135 82.404,31.0135135 C79.884,31.0135135 77.931,30.7628993 76.608,30.3243243 C75.411,29.9484029 74.844,29.2592138 74.844,28.2567568 C74.844,27.504914 75.285,26.8783784 76.104,26.2518428 C76.545,26.0012285 76.797,25.7506143 76.986,25.5 C77.112,25.2493857 77.238,24.9987715 77.301,24.6228501 C77.553,23.3071253 77.616,20.9262899 77.616,17.4176904 C77.616,16.7911548 77.553,16.2899263 77.427,16.039312 C77.301,15.7886978 76.986,15.5380835 76.545,15.3501229 C75.537,14.9742015 75.033,14.3476658 75.033,13.5958231 C75.033,12.9066339 75.411,12.3427518 76.104,11.8415233 C76.797,11.3402948 77.994,10.8390663 79.632,10.4004914 C81.648,9.77395577 83.538,9.46068796 85.05,9.46068796" id="Path"></path>
<path d="M111.825,0.313267813 C113.778,0.313267813 115.542,0.689189189 116.928,1.5036855 C118.377,2.31818182 119.07,3.25798526 119.07,4.32309582 C119.07,4.94963145 118.818,5.51351351 118.314,6.01474201 C117.81,6.51597052 117.243,6.76658477 116.676,6.76658477 C116.424,6.76658477 116.172,6.7039312 115.983,6.64127764 C115.794,6.57862408 115.353,6.26535627 114.534,5.7014742 C113.841,5.26289926 113.148,5.01228501 112.455,5.01228501 C111.699,5.01228501 111.132,5.26289926 110.628,5.82678133 C110.124,6.39066339 109.935,7.01719902 109.935,7.83169533 C109.935,8.95945946 110.376,9.71130221 111.195,10.1498771 C111.447,10.2751843 112.077,10.4004914 113.148,10.5257985 C114.03,10.6511057 114.471,11.2149877 114.471,12.2800983 C114.471,13.470516 113.967,14.2850123 113.022,14.8488943 C112.581,15.0995086 111.825,15.2874693 110.628,15.47543 C109.935,15.6007371 109.62,16.2272727 109.62,17.4176904 C109.62,18.8587224 110.061,20.2997543 110.943,21.8034398 C111.762,23.1818182 112.833,24.1842752 114.156,24.9361179 C115.353,25.6253071 116.613,26.0012285 117.873,26.0012285 C119.574,26.0012285 121.149,25.5 122.409,24.4348894 C123.606,23.495086 124.173,22.3673219 124.173,20.9262899 C124.173,20.2371007 123.921,19.6732187 123.354,19.1719902 C122.787,18.6707617 122.157,18.4201474 121.401,18.4201474 C120.204,18.4201474 119.196,19.1719902 118.377,20.6130221 C117.999,21.2395577 117.621,21.5528256 117.243,21.5528256 C116.739,21.5528256 116.298,21.2395577 115.92,20.6756757 C115.542,20.04914 115.353,19.3599509 115.353,18.5454545 C115.353,16.7911548 115.983,15.2874693 117.18,13.9090909 C118.44,12.5307125 120.204,11.465602 122.535,10.5884521 C124.425,9.8992629 125.559,9.33538084 126,8.95945946 C126.504,8.52088452 126.756,8.01965602 126.756,7.51842752 C126.756,7.20515971 126.63,6.95454545 126.441,6.76658477 C126.252,6.57862408 126,6.45331695 125.748,6.45331695 C125.622,6.45331695 125.37,6.51597052 124.992,6.7039312 C124.929,6.7039312 124.803,6.76658477 124.677,6.76658477 C124.425,6.76658477 124.236,6.7039312 124.047,6.51597052 C123.858,6.32800983 123.795,6.14004914 123.795,5.88943489 C123.795,5.26289926 124.11,4.6990172 124.677,4.13513514 C125.181,3.63390663 125.874,3.25798526 126.756,2.94471744 C127.638,2.63144963 128.457,2.50614251 129.339,2.50614251 C130.914,2.50614251 132.3,2.88206388 133.497,3.6965602 C134.19,4.13513514 134.694,4.76167076 135.072,5.51351351 C135.45,6.26535627 135.639,7.07985258 135.639,7.89434889 C135.639,9.14742015 135.198,10.3378378 134.379,11.465602 C133.56,12.5933661 132.426,13.5958231 130.977,14.3476658 C129.906,14.9115479 129.402,15.4127764 129.402,15.7886978 C129.402,16.1019656 129.78,16.477887 130.473,16.8538084 C131.103,17.2297297 131.607,17.7936118 131.985,18.482801 C132.363,19.1719902 132.552,19.9238329 132.552,20.7383292 C132.552,22.0540541 132.048,23.4324324 131.04,24.8108108 C129.528,26.8783784 127.197,28.507371 124.047,29.6351351 C121.464,30.5749386 118.566,31.0761671 115.29,31.0761671 C111.006,31.0761671 107.352,30.2616708 104.328,28.6953317 C102.123,27.5675676 100.422,25.9385749 99.225,23.7457002 C98.469,22.3673219 98.028,20.8636364 98.028,19.2346437 C98.028,17.5429975 98.595,16.039312 99.729,14.8488943 C100.422,14.0970516 101.115,13.5331695 101.871,13.1572482 C102.375,12.9066339 102.69,12.5933661 102.69,12.3427518 C102.69,12.2174447 102.627,12.029484 102.501,11.7788698 C101.619,10.2751843 101.178,9.02211302 101.178,7.95700246 C101.178,6.89189189 101.493,5.88943489 102.06,4.82432432 C102.69,3.82186732 103.509,2.94471744 104.517,2.25552826 C105.462,1.62899263 106.596,1.12776413 107.856,0.689189189 C109.368,0.501228501 110.628,0.313267813 111.825,0.313267813" id="Path"></path>
<path d="M150.507,10.7764128 L150.507,20.5503686 C150.507,22.7432432 150.696,24.1842752 151.074,24.8108108 C151.515,25.5626536 152.523,25.9385749 154.035,25.9385749 C155.673,25.9385749 156.933,25.5626536 157.878,24.8734644 C158.823,24.1842752 159.453,23.0565111 159.831,21.5528256 C160.02,20.6130221 160.524,20.1744472 161.28,20.1744472 C162.036,20.1744472 162.666,20.487715 163.107,21.1769042 C163.611,21.8660934 163.8,22.7432432 163.8,23.8083538 C163.8,25.5626536 163.17,27.4422604 161.847,29.4471744 C161.406,30.0737101 161.091,30.512285 160.776,30.7628993 C160.461,31.0135135 160.083,31.1388206 159.642,31.1388206 L154.854,30.5749386 L139.86,30.5749386 C138.852,30.5749386 138.159,30.4496314 137.781,30.2616708 C137.214,29.9484029 136.899,29.4471744 136.899,28.8206388 C136.899,28.4447174 137.025,28.1314496 137.214,27.9434889 C137.403,27.7555283 137.844,27.504914 138.6,27.1289926 C139.419,26.7530713 139.923,26.1891892 140.175,25.5 C140.364,24.9361179 140.427,23.2444717 140.427,20.4250614 C140.427,19.1093366 140.364,17.2297297 140.301,14.7862408 C140.238,12.4054054 140.175,10.6511057 140.175,9.46068796 C140.175,8.33292383 140.112,7.51842752 139.923,7.14250614 C139.734,6.7039312 139.356,6.39066339 138.789,6.26535627 C137.844,5.95208845 137.277,5.7014742 136.962,5.45085995 C136.521,5.07493857 136.269,4.6990172 136.269,4.26044226 C136.269,3.1953317 137.151,2.44348894 138.852,1.87960688 C140.301,1.37837838 142.317,1.19041769 144.774,1.19041769 C147.546,1.19041769 149.625,1.31572482 151.011,1.62899263 C152.775,2.004914 153.657,2.75675676 153.657,3.94717445 C153.657,4.38574939 153.531,4.76167076 153.279,5.01228501 C153.027,5.26289926 152.46,5.51351351 151.578,5.95208845 C151.011,6.2027027 150.696,6.57862408 150.57,7.20515971 C150.57,7.51842752 150.507,8.83415233 150.507,10.7764128" id="Path"></path>
<path d="M176.337,10.7764128 L176.337,23.1818182 C176.337,24.1842752 176.4,24.8734644 176.589,25.3120393 C176.778,25.7506143 177.156,26.1891892 177.66,26.5651106 C178.101,26.8783784 178.416,27.1289926 178.542,27.3796069 C178.668,27.6302211 178.794,27.8808354 178.794,28.1941032 C178.794,30.0110565 176.463,30.95086 171.801,30.95086 C169.281,30.95086 167.265,30.7628993 165.816,30.3243243 C165.312,30.1990172 164.934,29.9484029 164.619,29.5724816 C164.304,29.1965602 164.178,28.8206388 164.178,28.3820639 C164.178,28.0061425 164.241,27.6928747 164.43,27.504914 C164.556,27.3169533 164.997,26.9410319 165.627,26.502457 C166.068,26.1891892 166.383,25.6253071 166.572,24.9361179 C166.761,24.1842752 166.824,23.1191646 166.824,21.6154791 C166.824,21.1769042 166.761,20.2997543 166.698,18.9840295 C166.635,17.6683047 166.572,16.9791155 166.572,16.7285012 C166.509,16.1646192 166.068,15.7260442 165.375,15.4127764 C164.493,15.036855 164.052,14.472973 164.052,13.7211302 C164.052,12.8439803 164.619,12.1547912 165.816,11.7162162 C167.391,11.0896806 169.155,10.5884521 170.982,10.1498771 C172.809,9.71130221 174.195,9.52334152 175.203,9.52334152 C175.959,9.46068796 176.337,9.8992629 176.337,10.7764128" id="Path"></path>
<path d="M192.843,14.9115479 L192.843,22.1167076 C192.843,22.9938575 193.032,23.6830467 193.473,24.1842752 C193.914,24.7481572 194.418,24.9987715 195.111,24.9987715 C195.678,24.9987715 196.434,24.7481572 197.316,24.2469287 C197.505,24.1216216 197.757,24.0589681 197.946,24.0589681 C198.261,24.0589681 198.576,24.2469287 198.891,24.6855037 C199.206,25.1240786 199.332,25.5626536 199.332,26.0012285 C199.332,26.8783784 198.828,27.7555283 197.883,28.507371 C195.867,30.1990172 193.41,31.0761671 190.512,31.0761671 C188.244,31.0761671 186.417,30.4496314 185.031,29.1339066 C183.645,27.8181818 182.952,26.1265356 182.952,24.0589681 L182.952,14.2850123 C182.952,13.9717445 182.889,13.7837838 182.826,13.6584767 C182.763,13.5958231 182.574,13.5331695 182.196,13.5331695 L179.991,13.5331695 C179.55,13.5331695 179.298,13.470516 179.172,13.3452088 C179.046,13.2199017 178.983,12.9066339 178.983,12.4054054 L178.983,11.465602 C178.983,11.027027 179.172,10.7137592 179.487,10.5257985 L189.315,4.38574939 C189.567,4.26044226 189.882,4.1977887 190.197,4.1977887 L191.961,4.1977887 C192.339,4.1977887 192.528,4.26044226 192.654,4.44840295 C192.78,4.63636364 192.843,4.94963145 192.843,5.45085995 L192.843,8.33292383 C192.843,8.77149877 192.906,9.02211302 193.032,9.14742015 C193.158,9.27272727 193.473,9.33538084 193.914,9.33538084 L197.883,9.33538084 C198.387,9.33538084 198.765,9.46068796 198.891,9.64864865 C199.017,9.83660934 199.143,10.2751843 199.143,10.9017199 L199.143,12.1547912 C199.143,12.8439803 199.017,13.2825553 198.828,13.5958231 C198.639,13.8464373 198.261,13.9717445 197.757,13.9717445 L193.851,13.9717445 C193.473,13.9717445 193.158,14.034398 193.032,14.1597052 C192.906,14.2223587 192.843,14.5356265 192.843,14.9115479" id="Path"></path>
<path d="M210.42,17.041769 L212.562,17.041769 C213.507,17.041769 213.948,16.6031941 213.948,15.7886978 C213.948,15.036855 213.696,14.4103194 213.255,13.9090909 C212.814,13.4078624 212.247,13.1572482 211.491,13.1572482 C210.672,13.1572482 210.042,13.470516 209.601,14.0970516 C209.16,14.6609337 208.971,15.2874693 208.971,15.8513514 C208.971,16.2899263 209.097,16.6031941 209.286,16.7285012 C209.538,16.9164619 209.916,17.041769 210.42,17.041769 M219.933,20.9889435 L209.853,20.9889435 C209.412,20.9889435 209.16,21.1769042 209.16,21.5528256 C209.16,22.492629 209.664,23.3697789 210.672,24.1842752 C211.68,24.9987715 212.751,25.4373464 213.948,25.4373464 C214.641,25.4373464 215.397,25.3120393 216.216,25.0614251 C217.035,24.8108108 217.728,24.497543 218.295,24.1216216 C218.799,23.8083538 219.177,23.6203931 219.429,23.6203931 C219.807,23.6203931 220.185,23.8710074 220.5,24.3095823 C220.878,24.7481572 221.004,25.2493857 221.004,25.6879607 C221.004,26.6904177 220.374,27.6928747 219.051,28.6326781 C216.783,30.3243243 214.137,31.2014742 211.176,31.2014742 C208.152,31.2014742 205.632,30.3243243 203.616,28.6326781 C202.608,27.7555283 201.789,26.7530713 201.159,25.5626536 C200.34,23.9336609 199.899,22.2420147 199.899,20.487715 C199.899,18.1068796 200.655,15.9766585 202.104,14.034398 C203.364,12.4054054 204.939,11.1523342 206.892,10.3378378 C208.341,9.71130221 209.916,9.3980344 211.617,9.3980344 C214.326,9.3980344 216.657,10.1498771 218.547,11.7162162 C219.492,12.468059 220.248,13.4078624 220.878,14.472973 C221.571,15.6633907 221.886,16.8538084 221.886,17.9815725 C221.886,18.9213759 221.697,19.6732187 221.319,20.2371007 C221.067,20.6756757 220.563,20.9889435 219.933,20.9889435" id="Shape"></path>
<path d="M249.417,17.1670762 L249.732,24.6855037 C249.732,25.2493857 249.858,25.6879607 249.984,25.9385749 C250.11,26.1891892 250.551,26.7530713 251.307,27.504914 C251.496,27.7555283 251.622,28.0687961 251.622,28.4447174 C251.622,29.3845209 251.055,30.0110565 249.921,30.3869779 C248.787,30.7628993 246.771,30.95086 243.873,30.95086 C241.92,30.95086 240.534,30.7628993 239.715,30.4496314 C238.896,30.0737101 238.455,29.509828 238.455,28.6953317 C238.455,28.3820639 238.518,28.1941032 238.581,28.0687961 C238.644,27.9434889 238.959,27.6302211 239.463,27.0663391 C240.03,26.4398034 240.345,24.497543 240.345,21.1142506 C240.345,19.1719902 240.093,17.7309582 239.652,16.7911548 C239.274,16.039312 238.581,15.6633907 237.573,15.6633907 C236.628,15.6633907 235.935,15.9766585 235.62,16.6031941 C235.242,17.2297297 235.053,18.2948403 235.053,19.9238329 L235.053,24.1216216 C235.053,24.9361179 235.116,25.5626536 235.242,25.8759214 C235.368,26.1891892 235.683,26.8157248 236.313,27.6928747 C236.439,27.9434889 236.565,28.2567568 236.565,28.5700246 C236.565,29.3845209 235.998,30.0110565 234.801,30.4496314 C233.604,30.8255528 231.777,31.0761671 229.32,31.0761671 C225.351,31.0761671 223.335,30.2616708 223.335,28.6326781 C223.335,28.3194103 223.398,28.0061425 223.524,27.8808354 C223.65,27.6928747 223.965,27.4422604 224.406,27.1289926 C224.784,26.8783784 225.036,26.5651106 225.099,26.1891892 C225.225,25.8132678 225.288,24.9987715 225.351,23.6203931 C225.477,21.9914005 225.477,20.2997543 225.477,18.5454545 C225.477,17.5429975 225.414,16.9164619 225.225,16.6031941 C225.099,16.2899263 224.658,15.9140049 223.902,15.47543 C223.272,15.0995086 222.957,14.5982801 222.957,14.0970516 C222.957,13.5331695 223.209,13.031941 223.713,12.7186732 C224.217,12.3427518 225.225,11.9041769 226.8,11.3402948 C228.186,10.8390663 229.509,10.463145 230.769,10.0872236 C232.029,9.77395577 232.911,9.58599509 233.415,9.58599509 C233.856,9.58599509 234.234,9.77395577 234.486,10.0872236 C234.801,10.4004914 234.927,10.7764128 234.927,11.2149877 C234.927,11.2776413 234.927,11.465602 234.927,11.7162162 C234.927,11.8415233 234.927,11.9041769 234.927,12.029484 C234.927,12.7186732 235.242,13.031941 235.809,13.031941 C236.124,13.031941 236.502,12.7813268 236.88,12.2174447 C238.14,10.463145 239.904,9.58599509 242.235,9.58599509 C244.062,9.58599509 245.574,10.0872236 246.834,10.9643735 C247.716,11.6535627 248.346,12.4054054 248.724,13.3452088 C249.102,14.0970516 249.291,15.4127764 249.417,17.1670762" id="Path"></path>
<path d="M175.392,3.63390663 C175.203,0.563882064 172.305,0.626535627 172.305,0.626535627 C171.045,0.501228501 170.1,1.94226044 170.037,2.004914 C169.974,1.87960688 169.029,0.501228501 167.769,0.626535627 C167.769,0.626535627 164.871,0.563882064 164.682,3.63390663 C164.682,3.63390663 164.367,7.20515971 169.344,8.14496314 C169.344,8.14496314 169.659,8.20761671 170.037,8.27027027 C170.352,8.20761671 170.667,8.14496314 170.667,8.14496314 C175.77,7.20515971 175.392,3.63390663 175.392,3.63390663" id="Path"></path>
</g>
<g id="Group" transform="translate(0.000000, 0.117936)" fill="#000000">
<path d="M13.23,0.877149877 C14.679,0.877149877 16.632,1.25307125 19.026,1.94226044 C19.341,2.004914 19.53,2.06756757 19.719,2.06756757 C19.845,2.06756757 20.286,1.94226044 20.979,1.69164619 C21.231,1.62899263 21.42,1.56633907 21.735,1.56633907 C22.68,1.56633907 23.688,2.31818182 24.759,3.82186732 C25.83,5.32555283 26.334,6.76658477 26.334,8.14496314 C26.334,8.95945946 26.082,9.58599509 25.641,10.1498771 C25.137,10.7137592 24.57,10.9643735 23.877,10.9643735 C23.31,10.9643735 22.869,10.8390663 22.491,10.6511057 C22.113,10.4004914 21.357,9.77395577 20.16,8.64619165 C18.459,7.07985258 16.758,6.26535627 15.12,6.26535627 C14.301,6.26535627 13.671,6.45331695 13.23,6.82923833 C12.726,7.20515971 12.537,7.70638821 12.537,8.33292383 C12.537,9.58599509 13.608,10.5257985 15.813,11.1523342 C18.774,12.029484 20.664,12.6560197 21.483,13.031941 C25.137,14.7862408 26.964,17.4176904 26.964,20.8009828 C26.964,23.8083538 25.704,26.3144963 23.247,28.1941032 C20.727,30.1363636 17.388,31.1388206 13.293,31.1388206 C11.466,31.1388206 9.513,30.95086 7.497,30.512285 C5.481,30.0737101 4.032,29.5724816 3.087,29.0085995 C2.394,28.5700246 1.764,27.5675676 1.26,26.0638821 C0.63,24.4348894 0.315,22.9312039 0.315,21.490172 C0.315,20.8009828 0.441,20.2371007 0.756,19.9238329 C1.134,19.485258 1.575,19.2346437 2.079,19.2346437 C2.646,19.2346437 3.15,19.485258 3.654,20.04914 C3.969,20.3624079 4.662,21.3648649 5.796,23.0565111 C6.3,23.8710074 7.182,24.497543 8.316,25.0614251 C9.45,25.5626536 10.647,25.8759214 11.907,25.8759214 C12.978,25.8759214 13.797,25.6879607 14.49,25.3120393 C15.12,24.9361179 15.498,24.4348894 15.498,23.8083538 C15.498,23.2444717 15.246,22.7432432 14.742,22.3673219 C14.238,21.9287469 13.419,21.5528256 12.222,21.2395577 C10.206,20.6130221 8.631,19.9864865 7.56,19.485258 C6.489,18.9213759 5.481,18.2948403 4.536,17.480344 C2.268,15.47543 1.134,13.2199017 1.134,10.7137592 C1.134,9.46068796 1.449,8.27027027 2.016,7.07985258 C2.583,5.88943489 3.402,4.88697789 4.473,4.00982801 C6.867,1.87960688 9.765,0.877149877 13.23,0.877149877" id="Path"></path>
<path d="M41.265,14.9115479 L41.265,22.1167076 C41.265,22.9938575 41.454,23.6830467 41.895,24.1842752 C42.336,24.7481572 42.84,24.9987715 43.533,24.9987715 C44.1,24.9987715 44.856,24.7481572 45.738,24.2469287 C45.927,24.1216216 46.179,24.0589681 46.368,24.0589681 C46.683,24.0589681 46.998,24.2469287 47.313,24.6855037 C47.628,25.1240786 47.754,25.5626536 47.754,26.0012285 C47.754,26.8783784 47.25,27.7555283 46.305,28.507371 C44.289,30.1990172 41.832,31.0761671 38.934,31.0761671 C36.666,31.0761671 34.839,30.4496314 33.453,29.1339066 C32.067,27.8181818 31.374,26.1265356 31.374,24.0589681 L31.374,14.2850123 C31.374,13.9717445 31.311,13.7837838 31.248,13.6584767 C31.185,13.5958231 30.996,13.5331695 30.618,13.5331695 L28.413,13.5331695 C27.972,13.5331695 27.72,13.470516 27.594,13.3452088 C27.468,13.2199017 27.405,12.9066339 27.405,12.4054054 L27.405,11.465602 C27.405,11.027027 27.594,10.7137592 27.909,10.5257985 L37.737,4.38574939 C37.989,4.26044226 38.304,4.1977887 38.619,4.1977887 L40.383,4.1977887 C40.761,4.1977887 40.95,4.26044226 41.076,4.44840295 C41.202,4.63636364 41.265,4.94963145 41.265,5.45085995 L41.265,8.33292383 C41.265,8.77149877 41.328,9.02211302 41.454,9.14742015 C41.58,9.27272727 41.895,9.33538084 42.336,9.33538084 L46.305,9.33538084 C46.809,9.33538084 47.187,9.46068796 47.313,9.64864865 C47.439,9.83660934 47.565,10.2751843 47.565,10.9017199 L47.565,12.1547912 C47.565,12.8439803 47.439,13.2825553 47.25,13.5958231 C47.061,13.8464373 46.683,13.9717445 46.179,13.9717445 L42.273,13.9717445 C41.895,13.9717445 41.58,14.034398 41.454,14.1597052 C41.328,14.2223587 41.265,14.5356265 41.265,14.9115479" id="Path"></path>
<path d="M60.165,14.2223587 C59.535,14.2223587 59.031,14.472973 58.653,14.9115479 C58.275,15.3501229 58.086,15.9766585 58.086,16.7285012 C58.086,17.6056511 58.275,18.7334152 58.59,20.2371007 C58.905,21.6781327 59.283,22.9938575 59.724,24.1216216 C60.165,25.3120393 60.858,25.8759214 61.866,25.8759214 C63.126,25.8759214 63.756,25.0614251 63.756,23.495086 C63.756,22.3046683 63.567,20.9262899 63.252,19.4226044 C62.937,17.9189189 62.559,16.6658477 62.055,15.7260442 C61.677,14.7235872 61.047,14.2223587 60.165,14.2223587 M61.929,9.27272727 C64.575,9.27272727 66.843,9.96191646 68.796,11.2776413 C70.182,12.2174447 71.316,13.470516 72.198,15.036855 C73.08,16.6658477 73.521,18.3574939 73.521,20.1117936 C73.521,23.1818182 72.072,25.8132678 69.237,28.0061425 C66.528,30.0737101 63.441,31.0761671 59.913,31.0761671 C56.511,31.0761671 53.739,30.1363636 51.597,28.1941032 C49.518,26.3144963 48.51,23.8710074 48.51,20.8636364 C48.51,17.5429975 49.77,14.7862408 52.29,12.6560197 C54.936,10.4004914 58.149,9.27272727 61.929,9.27272727" id="Shape"></path>
<path d="M85.05,9.46068796 C85.806,9.46068796 86.247,9.58599509 86.436,9.77395577 C86.625,9.96191646 86.751,10.6511057 86.877,11.8415233 C86.94,12.468059 87.192,12.7813268 87.57,12.7813268 C87.885,12.7813268 88.137,12.5933661 88.389,12.1547912 C89.523,10.4004914 91.035,9.46068796 92.862,9.46068796 C94.185,9.46068796 95.256,9.8992629 96.075,10.7137592 C96.453,11.1523342 96.831,11.6535627 97.083,12.2800983 C97.335,12.9066339 97.461,13.5331695 97.461,14.1597052 C97.461,14.8488943 97.272,15.5380835 97.02,16.2272727 C96.705,16.9164619 96.327,17.5429975 95.823,17.9815725 C94.878,18.8587224 93.807,19.2972973 92.484,19.2972973 C91.728,19.2972973 91.161,19.1719902 90.657,18.9213759 C90.153,18.6707617 89.523,18.1695332 88.704,17.3550369 C88.389,17.041769 88.137,16.9164619 87.885,16.9164619 C87.507,16.9164619 87.255,17.1670762 87.129,17.6056511 C87.003,18.044226 86.94,18.9840295 86.94,20.4250614 C86.94,22.5552826 87.003,24.0589681 87.192,24.8108108 C87.318,25.2493857 87.444,25.5626536 87.633,25.6879607 C87.822,25.8759214 88.2,26.0012285 88.767,26.1891892 C90.027,26.5651106 90.72,27.2542998 90.72,28.1941032 C90.72,28.7579853 90.531,29.2592138 90.09,29.6977887 C89.649,30.1363636 89.145,30.4496314 88.452,30.5749386 C87.066,30.8882064 85.05,31.0135135 82.404,31.0135135 C79.884,31.0135135 77.931,30.7628993 76.608,30.3243243 C75.411,29.9484029 74.844,29.2592138 74.844,28.2567568 C74.844,27.504914 75.285,26.8783784 76.104,26.2518428 C76.545,26.0012285 76.797,25.7506143 76.986,25.5 C77.112,25.2493857 77.238,24.9987715 77.301,24.6228501 C77.553,23.3071253 77.616,20.9262899 77.616,17.4176904 C77.616,16.7911548 77.553,16.2899263 77.427,16.039312 C77.301,15.7886978 76.986,15.5380835 76.545,15.3501229 C75.537,14.9742015 75.033,14.3476658 75.033,13.5958231 C75.033,12.9066339 75.411,12.3427518 76.104,11.8415233 C76.797,11.3402948 77.994,10.8390663 79.632,10.4004914 C81.648,9.77395577 83.538,9.46068796 85.05,9.46068796" id="Path"></path>
<path d="M111.825,0.313267813 C113.778,0.313267813 115.542,0.689189189 116.928,1.5036855 C118.377,2.31818182 119.07,3.25798526 119.07,4.32309582 C119.07,4.94963145 118.818,5.51351351 118.314,6.01474201 C117.81,6.51597052 117.243,6.76658477 116.676,6.76658477 C116.424,6.76658477 116.172,6.7039312 115.983,6.64127764 C115.794,6.57862408 115.353,6.26535627 114.534,5.7014742 C113.841,5.26289926 113.148,5.01228501 112.455,5.01228501 C111.699,5.01228501 111.132,5.26289926 110.628,5.82678133 C110.124,6.39066339 109.935,7.01719902 109.935,7.83169533 C109.935,8.95945946 110.376,9.71130221 111.195,10.1498771 C111.447,10.2751843 112.077,10.4004914 113.148,10.5257985 C114.03,10.6511057 114.471,11.2149877 114.471,12.2800983 C114.471,13.470516 113.967,14.2850123 113.022,14.8488943 C112.581,15.0995086 111.825,15.2874693 110.628,15.47543 C109.935,15.6007371 109.62,16.2272727 109.62,17.4176904 C109.62,18.8587224 110.061,20.2997543 110.943,21.8034398 C111.762,23.1818182 112.833,24.1842752 114.156,24.9361179 C115.353,25.6253071 116.613,26.0012285 117.873,26.0012285 C119.574,26.0012285 121.149,25.5 122.409,24.4348894 C123.606,23.495086 124.173,22.3673219 124.173,20.9262899 C124.173,20.2371007 123.921,19.6732187 123.354,19.1719902 C122.787,18.6707617 122.157,18.4201474 121.401,18.4201474 C120.204,18.4201474 119.196,19.1719902 118.377,20.6130221 C117.999,21.2395577 117.621,21.5528256 117.243,21.5528256 C116.739,21.5528256 116.298,21.2395577 115.92,20.6756757 C115.542,20.04914 115.353,19.3599509 115.353,18.5454545 C115.353,16.7911548 115.983,15.2874693 117.18,13.9090909 C118.44,12.5307125 120.204,11.465602 122.535,10.5884521 C124.425,9.8992629 125.559,9.33538084 126,8.95945946 C126.504,8.52088452 126.756,8.01965602 126.756,7.51842752 C126.756,7.20515971 126.63,7.01719902 126.441,6.76658477 C126.252,6.57862408 126,6.45331695 125.748,6.45331695 C125.622,6.45331695 125.37,6.51597052 124.992,6.7039312 C124.929,6.7039312 124.803,6.76658477 124.677,6.76658477 C124.425,6.76658477 124.236,6.7039312 124.047,6.51597052 C123.858,6.32800983 123.795,6.14004914 123.795,5.88943489 C123.795,5.26289926 124.11,4.6990172 124.677,4.13513514 C125.181,3.63390663 125.874,3.25798526 126.756,2.94471744 C127.638,2.63144963 128.457,2.50614251 129.339,2.50614251 C130.914,2.50614251 132.3,2.88206388 133.497,3.6965602 C134.19,4.13513514 134.694,4.76167076 135.072,5.51351351 C135.45,6.26535627 135.639,7.07985258 135.639,7.89434889 C135.639,9.14742015 135.198,10.3378378 134.379,11.465602 C133.56,12.5933661 132.426,13.5958231 130.977,14.3476658 C129.906,14.9115479 129.402,15.4127764 129.402,15.7886978 C129.402,16.1019656 129.78,16.477887 130.473,16.8538084 C131.103,17.2297297 131.607,17.7936118 131.985,18.482801 C132.363,19.1719902 132.552,19.9238329 132.552,20.7383292 C132.552,22.0540541 132.048,23.4324324 131.04,24.8108108 C129.528,26.8783784 127.197,28.507371 124.047,29.6351351 C121.464,30.5749386 118.566,31.0761671 115.29,31.0761671 C111.006,31.0761671 107.352,30.2616708 104.328,28.6953317 C102.123,27.5675676 100.422,25.9385749 99.225,23.7457002 C98.469,22.3673219 98.028,20.8636364 98.028,19.2346437 C98.028,17.5429975 98.595,16.039312 99.729,14.8488943 C100.422,14.0970516 101.115,13.5331695 101.871,13.1572482 C102.375,12.9066339 102.69,12.6560197 102.69,12.3427518 C102.69,12.2174447 102.627,12.029484 102.501,11.7788698 C101.619,10.2751843 101.178,9.02211302 101.178,7.95700246 C101.178,6.89189189 101.493,5.88943489 102.06,4.82432432 C102.69,3.82186732 103.509,2.94471744 104.517,2.25552826 C105.462,1.62899263 106.596,1.12776413 107.856,0.689189189 C109.368,0.501228501 110.628,0.313267813 111.825,0.313267813" id="Path"></path>
<path d="M150.507,10.7764128 L150.507,20.5503686 C150.507,22.7432432 150.696,24.1842752 151.074,24.8108108 C151.515,25.5626536 152.523,25.9385749 154.035,25.9385749 C155.673,25.9385749 156.933,25.5626536 157.878,24.8734644 C158.823,24.1842752 159.453,23.0565111 159.831,21.5528256 C160.02,20.6130221 160.524,20.1744472 161.28,20.1744472 C162.036,20.1744472 162.666,20.487715 163.107,21.1769042 C163.611,21.8660934 163.8,22.7432432 163.8,23.8083538 C163.8,25.5626536 163.17,27.4422604 161.847,29.4471744 C161.406,30.0737101 161.091,30.512285 160.776,30.7628993 C160.461,31.0135135 160.083,31.1388206 159.642,31.1388206 L154.854,30.5749386 L139.86,30.5749386 C138.852,30.5749386 138.159,30.4496314 137.781,30.2616708 C137.214,29.9484029 136.899,29.4471744 136.899,28.8206388 C136.899,28.4447174 137.025,28.1314496 137.214,27.9434889 C137.403,27.7555283 137.844,27.504914 138.6,27.1289926 C139.419,26.7530713 139.923,26.1891892 140.175,25.5 C140.364,24.9361179 140.427,23.2444717 140.427,20.4250614 C140.427,19.1093366 140.364,17.2297297 140.301,14.7862408 C140.238,12.4054054 140.175,10.6511057 140.175,9.46068796 C140.175,8.33292383 140.112,7.51842752 139.923,7.14250614 C139.734,6.7039312 139.356,6.45331695 138.789,6.26535627 C137.844,5.95208845 137.277,5.7014742 136.962,5.45085995 C136.521,5.07493857 136.269,4.6990172 136.269,4.26044226 C136.269,3.1953317 137.151,2.44348894 138.852,1.87960688 C140.301,1.37837838 142.317,1.19041769 144.774,1.19041769 C147.546,1.19041769 149.625,1.31572482 151.011,1.62899263 C152.775,2.004914 153.657,2.75675676 153.657,3.94717445 C153.657,4.38574939 153.531,4.76167076 153.279,5.01228501 C153.027,5.26289926 152.46,5.51351351 151.578,5.95208845 C151.011,6.2027027 150.696,6.57862408 150.57,7.20515971 C150.57,7.51842752 150.507,8.83415233 150.507,10.7764128" id="Path"></path>
<path d="M176.337,10.7764128 L176.337,23.1818182 C176.337,24.1842752 176.4,24.8734644 176.589,25.3120393 C176.778,25.7506143 177.156,26.1891892 177.66,26.5651106 C178.101,26.8783784 178.416,27.1289926 178.542,27.3796069 C178.668,27.6302211 178.794,27.8808354 178.794,28.1941032 C178.794,30.0110565 176.463,30.95086 171.801,30.95086 C169.281,30.95086 167.265,30.7628993 165.816,30.3243243 C165.312,30.1990172 164.934,29.9484029 164.619,29.5724816 C164.304,29.1965602 164.178,28.8206388 164.178,28.3820639 C164.178,28.0061425 164.241,27.6928747 164.43,27.504914 C164.556,27.3169533 164.997,26.9410319 165.627,26.502457 C166.068,26.1891892 166.383,25.6253071 166.572,24.9361179 C166.761,24.1842752 166.824,23.1191646 166.824,21.6154791 C166.824,21.1769042 166.761,20.2997543 166.698,18.9840295 C166.635,17.7309582 166.572,16.9791155 166.572,16.7285012 C166.509,16.1646192 166.068,15.7260442 165.375,15.4127764 C164.493,15.036855 164.052,14.472973 164.052,13.7211302 C164.052,12.8439803 164.619,12.1547912 165.816,11.7162162 C167.391,11.0896806 169.155,10.5884521 170.982,10.1498771 C172.809,9.71130221 174.195,9.52334152 175.203,9.52334152 C175.959,9.46068796 176.337,9.8992629 176.337,10.7764128" id="Path"></path>
<path d="M192.843,14.9115479 L192.843,22.1167076 C192.843,22.9938575 193.032,23.6830467 193.473,24.1842752 C193.914,24.7481572 194.418,24.9987715 195.111,24.9987715 C195.678,24.9987715 196.434,24.7481572 197.316,24.2469287 C197.505,24.1216216 197.757,24.0589681 197.946,24.0589681 C198.261,24.0589681 198.576,24.2469287 198.891,24.6855037 C199.206,25.1240786 199.332,25.5626536 199.332,26.0012285 C199.332,26.8783784 198.828,27.7555283 197.883,28.507371 C195.867,30.1990172 193.41,31.0761671 190.512,31.0761671 C188.244,31.0761671 186.417,30.4496314 185.031,29.1339066 C183.645,27.8181818 182.952,26.1265356 182.952,24.0589681 L182.952,14.2850123 C182.952,13.9717445 182.889,13.7837838 182.826,13.6584767 C182.763,13.5958231 182.574,13.5331695 182.196,13.5331695 L179.991,13.5331695 C179.55,13.5331695 179.298,13.470516 179.172,13.3452088 C179.046,13.2199017 178.983,12.9066339 178.983,12.4054054 L178.983,11.465602 C178.983,11.027027 179.172,10.7137592 179.487,10.5257985 L189.315,4.38574939 C189.567,4.26044226 189.882,4.1977887 190.197,4.1977887 L191.961,4.1977887 C192.339,4.1977887 192.528,4.26044226 192.654,4.44840295 C192.78,4.63636364 192.843,4.94963145 192.843,5.45085995 L192.843,8.33292383 C192.843,8.77149877 192.906,9.02211302 193.032,9.14742015 C193.158,9.27272727 193.473,9.33538084 193.914,9.33538084 L197.883,9.33538084 C198.387,9.33538084 198.765,9.46068796 198.891,9.64864865 C199.017,9.83660934 199.143,10.2751843 199.143,10.9017199 L199.143,12.1547912 C199.143,12.8439803 199.017,13.2825553 198.828,13.5958231 C198.639,13.8464373 198.261,13.9717445 197.757,13.9717445 L193.851,13.9717445 C193.473,13.9717445 193.158,14.034398 193.032,14.1597052 C192.906,14.2223587 192.843,14.5356265 192.843,14.9115479" id="Path"></path>
<path d="M210.42,17.041769 L212.562,17.041769 C213.507,17.041769 213.948,16.6031941 213.948,15.7886978 C213.948,15.036855 213.696,14.4103194 213.255,13.9090909 C212.814,13.4078624 212.247,13.1572482 211.491,13.1572482 C210.672,13.1572482 210.042,13.470516 209.601,14.0970516 C209.16,14.6609337 208.971,15.2874693 208.971,15.8513514 C208.971,16.2899263 209.097,16.6031941 209.286,16.7285012 C209.538,16.9164619 209.916,17.041769 210.42,17.041769 M219.933,20.9889435 L209.853,20.9889435 C209.412,20.9889435 209.16,21.1769042 209.16,21.5528256 C209.16,22.492629 209.664,23.3697789 210.672,24.1842752 C211.68,24.9987715 212.751,25.4373464 213.948,25.4373464 C214.641,25.4373464 215.397,25.3120393 216.216,25.0614251 C217.035,24.8108108 217.728,24.497543 218.295,24.1216216 C218.799,23.8083538 219.177,23.6203931 219.429,23.6203931 C219.807,23.6203931 220.185,23.8710074 220.5,24.3095823 C220.878,24.7481572 221.004,25.2493857 221.004,25.6879607 C221.004,26.6904177 220.374,27.6928747 219.051,28.6326781 C216.783,30.3243243 214.137,31.1388206 211.176,31.1388206 C208.152,31.1388206 205.632,30.2616708 203.616,28.5700246 C202.608,27.6928747 201.789,26.6904177 201.159,25.5 C200.34,23.8710074 199.899,22.1793612 199.899,20.4250614 C199.899,18.044226 200.655,15.9140049 202.104,13.9717445 C203.364,12.3427518 204.939,11.0896806 206.892,10.2751843 C208.341,9.64864865 209.916,9.33538084 211.617,9.33538084 C214.326,9.33538084 216.657,10.0872236 218.547,11.6535627 C219.492,12.4054054 220.248,13.3452088 220.878,14.4103194 C221.571,15.6007371 221.886,16.7911548 221.886,17.9189189 C221.886,18.8587224 221.697,19.6105651 221.319,20.1744472 C221.067,20.6756757 220.563,20.9889435 219.933,20.9889435" id="Shape"></path>
<path d="M249.417,17.1670762 L249.732,24.6855037 C249.732,25.2493857 249.858,25.6879607 249.984,25.9385749 C250.11,26.1891892 250.551,26.7530713 251.307,27.504914 C251.496,27.7555283 251.622,28.0687961 251.622,28.4447174 C251.622,29.3845209 251.055,30.0110565 249.921,30.3869779 C248.787,30.7628993 246.771,30.95086 243.873,30.95086 C241.92,30.95086 240.534,30.7628993 239.715,30.4496314 C238.896,30.0737101 238.455,29.509828 238.455,28.6953317 C238.455,28.3820639 238.518,28.1941032 238.581,28.0687961 C238.644,27.9434889 238.959,27.6302211 239.463,27.0663391 C240.03,26.4398034 240.345,24.497543 240.345,21.1142506 C240.345,19.1719902 240.093,17.7309582 239.652,16.7911548 C239.274,16.039312 238.581,15.6633907 237.573,15.6633907 C236.628,15.6633907 235.935,15.9766585 235.62,16.6031941 C235.242,17.2297297 235.053,18.2948403 235.053,19.9238329 L235.053,24.1216216 C235.053,24.9361179 235.116,25.5626536 235.242,25.8759214 C235.368,26.1891892 235.683,26.8157248 236.313,27.6928747 C236.439,27.9434889 236.565,28.2567568 236.565,28.5700246 C236.565,29.3845209 235.998,30.0110565 234.801,30.4496314 C233.604,30.8255528 231.777,31.0761671 229.32,31.0761671 C225.351,31.0761671 223.335,30.2616708 223.335,28.6326781 C223.335,28.3194103 223.398,28.0061425 223.524,27.8808354 C223.65,27.6928747 223.965,27.4422604 224.406,27.1289926 C224.784,26.8783784 225.036,26.5651106 225.099,26.1891892 C225.225,25.8132678 225.288,24.9987715 225.351,23.6203931 C225.477,21.9914005 225.477,20.2997543 225.477,18.5454545 C225.477,17.5429975 225.414,16.9164619 225.225,16.6031941 C225.099,16.2899263 224.658,15.9140049 223.902,15.47543 C223.272,15.0995086 222.957,14.5982801 222.957,14.0970516 C222.957,13.5331695 223.209,13.031941 223.713,12.7186732 C224.217,12.3427518 225.225,11.9041769 226.8,11.3402948 C228.186,10.8390663 229.509,10.463145 230.769,10.0872236 C232.029,9.77395577 232.911,9.58599509 233.415,9.58599509 C233.856,9.58599509 234.234,9.77395577 234.486,10.0872236 C234.801,10.4004914 234.927,10.7764128 234.927,11.2149877 C234.927,11.2776413 234.927,11.465602 234.927,11.7162162 C234.927,11.8415233 234.927,11.9041769 234.927,12.029484 C234.927,12.7186732 235.242,13.031941 235.809,13.031941 C236.124,13.031941 236.502,12.7813268 236.88,12.2174447 C238.14,10.463145 239.904,9.58599509 242.235,9.58599509 C244.062,9.58599509 245.574,10.0872236 246.834,10.9643735 C247.716,11.6535627 248.346,12.4054054 248.724,13.3452088 C249.102,14.0970516 249.291,15.4127764 249.417,17.1670762" id="Path"></path>
<path d="M175.392,3.63390663 C175.203,0.563882064 172.305,0.626535627 172.305,0.626535627 C171.045,0.501228501 170.1,1.94226044 170.037,2.004914 C169.974,1.87960688 169.029,0.501228501 167.769,0.626535627 C167.769,0.626535627 164.871,0.563882064 164.682,3.63390663 C164.682,3.63390663 164.367,7.20515971 169.344,8.14496314 C169.344,8.14496314 169.659,8.20761671 170.037,8.27027027 C170.352,8.20761671 170.667,8.14496314 170.667,8.14496314 C175.77,7.20515971 175.392,3.63390663 175.392,3.63390663" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 41 KiB

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="190px" height="40px" viewBox="0 0 190 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
<title>Boozt_logo_new_notag</title>
<desc>Created with Sketch.</desc>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-1234.000000, -726.000000)" fill="#000000">
<g id="Group-25-Copy-3" transform="translate(382.000000, 681.000000)">
<g id="Svensk">
<g id="Boozt_logo_new_notag" transform="translate(852.000000, 45.000000)">
<path d="M153.838592,37.6183099 C153.838592,36.8583099 154.472113,36.2247887 155.232113,36.2247887 C155.992394,36.2247887 156.625634,36.8583099 156.625634,37.6183099 C156.625634,38.3783099 155.992394,39.011831 155.232113,39.011831 C154.472113,39.011831 153.838592,38.3783099 153.838592,37.6183099" id="Fill-1"></path>
<path d="M158.348451,35.2732394 C158.348451,32.4650704 160.41662,30.5473239 163.046761,30.5473239 C164.663099,30.5473239 165.786479,31.328169 166.512113,32.355493 L165.553521,32.8895775 C165.032958,32.1225352 164.087887,31.5611268 163.046761,31.5611268 C161.047042,31.5611268 159.526479,33.0952113 159.526479,35.2732394 C159.526479,37.4374648 161.047042,38.9850704 163.046761,38.9850704 C164.087887,38.9850704 165.032958,38.4371831 165.553521,37.6566197 L166.525915,38.1907042 C165.758873,39.231831 164.663099,39.9988732 163.046761,39.9988732 C160.41662,39.9988732 158.348451,38.0811268 158.348451,35.2732394" id="Fill-2"></path>
<path d="M176.511268,35.2732394 C176.511268,33.136338 175.196338,31.5611268 173.155211,31.5611268 C171.100563,31.5611268 169.799155,33.136338 169.799155,35.2732394 C169.799155,37.396338 171.100563,38.9850704 173.155211,38.9850704 C175.196338,38.9850704 176.511268,37.396338 176.511268,35.2732394 Z M168.621408,35.2732394 C168.621408,32.5746479 170.443099,30.5473239 173.155211,30.5473239 C175.853521,30.5473239 177.689014,32.5746479 177.689014,35.2732394 C177.689014,37.9715493 175.853521,39.9988732 173.155211,39.9988732 C170.443099,39.9988732 168.621408,37.9715493 168.621408,35.2732394 L168.621408,35.2732394 Z" id="Fill-3"></path>
<polyline id="Fill-4" points="188.150423 39.7346479 188.150423 32.2146479 185.041127 39.7346479 184.575211 39.7346479 181.479718 32.2146479 181.479718 39.7346479 180.342535 39.7346479 180.342535 30.5983099 181.972676 30.5983099 184.808169 37.4746479 187.657183 30.5983099 189.287324 30.5983099 189.287324 39.7346479 188.150423 39.7346479"></polyline>
<path d="M25.6822535,36.5535211 C24.5721127,38.1980282 22.8090141,39.0202817 20.3921127,39.0202817 C19.5983099,39.0202817 18.9549296,38.9408451 18.46,38.7822535 C17.9639437,38.624507 17.5774648,38.3171831 17.3008451,37.8611268 C17.0228169,37.4064789 16.8447887,36.7715493 16.7659155,35.9591549 C16.6859155,35.1473239 16.6467606,34.0664789 16.6467606,32.7197183 L16.6467606,0.79943662 L18.0735211,0.79943662 C19.9757746,0.79943662 21.4225352,1.01746479 22.4129577,1.45323944 C23.4030986,1.88957746 24.175493,2.62253521 24.7309859,3.65239437 C25.1261972,4.3656338 25.4047887,5.15887324 25.5633803,6.02985915 C25.7211268,6.90225352 25.8008451,7.95267606 25.8008451,9.18056338 C25.8008451,10.9633803 25.5723944,12.5 25.1177465,13.7870423 C24.7749296,14.7540845 24.3380282,15.5143662 23.8064789,16.0676056 C23.7061972,16.1876056 23.5571831,16.3225352 23.3461972,16.4752113 C23.3357746,16.4828169 23.3253521,16.4895775 23.3149296,16.4966197 C23.2912676,16.5140845 23.2690141,16.5343662 23.2450704,16.5512676 C23.1016901,16.6504225 22.9442254,16.7388732 22.7808451,16.8225352 C22.7033803,16.8630986 22.6259155,16.9019718 22.5473239,16.9383099 C21.3104225,17.5098592 19.9653521,17.5650704 19.4909859,17.5650704 L19.4909859,18.2752113 C19.4909859,18.2752113 22.04,18.1535211 23.9321127,19.2808451 C24.0521127,19.3523944 24.1571831,19.4194366 24.2490141,19.4822535 C24.2707042,19.4966197 24.2935211,19.508169 24.3149296,19.5233803 C25.1859155,20.1577465 25.8402817,20.9704225 26.2766197,21.9602817 C26.9895775,23.7050704 27.3464789,25.9428169 27.3464789,28.6774648 C27.3464789,32.2839437 26.7909859,34.9090141 25.6822535,36.5535211 Z M29.7047887,18.8614085 C28.1647887,18.4208451 27.3352113,18.3346479 26.8594366,18.235493 C26.3842254,18.1369014 26.6019718,18.2042254 26.0670423,18.1050704 C25.5323944,18.0061972 24.275493,17.8591549 23.2450704,17.74 C25.9397183,17.6211268 27.0608451,17.363662 28.7247887,16.9673239 C30.3890141,16.571831 31.8352113,15.9569014 33.064507,15.124507 C34.0149296,14.4915493 34.7676056,13.6591549 35.3230986,12.628169 C35.8771831,11.5983099 36.1546479,10.5087324 36.1546479,9.35887324 C36.1546479,9.34957746 36.1535211,9.34084507 36.1532394,9.3315493 C36.1490141,7.43633803 35.3664789,5.74732394 33.8067606,4.2656338 C32.2405634,2.78 30.1307042,1.74 27.4769014,1.14591549 C26.6442254,0.948169014 25.7723944,0.77971831 24.8616901,0.64056338 C23.9501408,0.502253521 22.9602817,0.393239437 21.8904225,0.313521127 C20.8202817,0.234366197 19.6408451,0.175774648 18.3538028,0.135492958 C17.7608451,0.117464789 17.123662,0.103943662 16.4495775,0.094084507 C16.268169,0.0898591549 16.083662,0.0867605634 15.8923944,0.0855399061 C15.6416901,0.0850704225 15.2428169,0.0855399061 14.9828169,0.0855399061 L0,0.0855399061 L0,0.68028169 C1.34676056,0.79943662 2.32760563,0.968450704 2.94197183,1.18591549 C3.55577465,1.40366197 4.06140845,1.79014085 4.45802817,2.34478873 C4.81464789,2.86 5.08225352,3.45464789 5.26056338,4.12816901 C5.43887324,4.80197183 5.52788732,5.73295775 5.52788732,6.92169014 C5.52788732,6.92169014 5.52788732,31.3726761 5.52788732,32.0061972 C5.52788732,32.6402817 5.50788732,33.1752113 5.4684507,33.6107042 C5.4284507,34.0478873 5.38873239,34.423662 5.34985915,34.7405634 C5.30957746,35.0580282 5.27014085,35.3746479 5.23070423,35.6912676 C5.11183099,36.3256338 4.85380282,36.9202817 4.45802817,37.4743662 C4.02169014,38.0301408 3.49661972,38.4256338 2.88253521,38.6630986 C2.2684507,38.9014085 1.30788732,39.06 0,39.1391549 L0,39.7335211 L21.64,39.7335211 C24.4532394,39.7335211 25.9307042,39.476338 28.1898592,38.9611268 C30.4487324,38.4461972 32.36,37.7033803 33.9259155,36.731831 C35.4907042,35.7608451 36.6895775,34.5819718 37.5225352,33.1949296 C38.3540845,31.8084507 38.7704225,30.2433803 38.7704225,28.4991549 C38.7704225,26.2402817 37.9766197,24.2692958 36.3926761,22.584507 C34.8073239,20.9005634 32.5577465,19.5352113 29.7047887,18.8614085 L29.7047887,18.8614085 Z" id="Fill-5"></path>
<path d="M61.1033803,27.9574648 C61.1033803,29.7464789 61.0591549,31.3166197 60.9726761,32.668169 C60.884507,34.0208451 60.688169,35.1543662 60.383662,36.0704225 C60.0780282,36.9867606 59.62,37.6738028 59.0092958,38.1312676 C58.3983099,38.5892958 57.5701408,38.8183099 56.5233803,38.8183099 C55.476338,38.8183099 54.6470423,38.5892958 54.0369014,38.1312676 C53.4253521,37.6738028 52.9678873,36.9867606 52.6628169,36.0704225 C52.3571831,35.1543662 52.1608451,34.0208451 52.0740845,32.668169 C51.9859155,31.3166197 51.9430986,29.7464789 51.9430986,27.9574648 L51.9430986,22.8540845 C51.9430986,21.1098592 51.9859155,19.5394366 52.0740845,18.1430986 C52.1608451,16.7476056 52.3571831,15.5811268 52.6628169,14.6425352 C52.9678873,13.7050704 53.4253521,12.9853521 54.0369014,12.4833803 C54.6470423,11.9825352 55.476338,11.7309859 56.5233803,11.7309859 C57.5701408,11.7309859 58.3983099,11.9825352 59.0092958,12.4833803 C59.62,12.9853521 60.0780282,13.7050704 60.383662,14.6425352 C60.688169,15.5811268 60.884507,16.7476056 60.9726761,18.1430986 C61.0591549,19.5394366 61.1033803,21.1098592 61.1033803,22.8540845 L61.1033803,27.9574648 Z M67.6132394,15.1661972 C66.4132394,13.7921127 64.8870423,12.6797183 63.0335211,11.8292958 C61.1788732,10.9785915 59.0092958,10.5532394 56.5233803,10.5532394 C54.0369014,10.5532394 51.8664789,10.9785915 50.0129577,11.8292958 C48.1585915,12.6797183 46.6323944,13.7921127 45.4329577,15.1661972 C44.2326761,16.54 43.328169,18.1104225 42.7177465,19.8769014 C42.1064789,21.6433803 41.8016901,23.4425352 41.8016901,25.2749296 C41.8016901,27.1067606 42.1064789,28.9059155 42.7177465,30.6726761 C43.328169,32.4391549 44.2326761,34.0095775 45.4329577,35.3833803 C46.6323944,36.7577465 48.1585915,37.8695775 50.0129577,38.7202817 C51.8664789,39.5709859 54.0369014,39.996338 56.5233803,39.996338 C59.0092958,39.996338 61.1788732,39.5709859 63.0335211,38.7202817 C64.8870423,37.8695775 66.4132394,36.7577465 67.6132394,35.3833803 C68.8126761,34.0095775 69.7171831,32.4391549 70.3290141,30.6726761 C70.9391549,28.9059155 71.244507,27.1067606 71.244507,25.2749296 C71.244507,23.4425352 70.9391549,21.6433803 70.3290141,19.8769014 C69.7171831,18.1104225 68.8126761,16.54 67.6132394,15.1661972 L67.6132394,15.1661972 Z" id="Fill-6"></path>
<path d="M93.175493,27.9574648 C93.175493,29.7464789 93.1312676,31.3166197 93.0447887,32.668169 C92.9566197,34.0208451 92.7602817,35.1543662 92.4557746,36.0704225 C92.1501408,36.9867606 91.6921127,37.6738028 91.0816901,38.1312676 C90.4704225,38.5892958 89.6425352,38.8183099 88.5952113,38.8183099 C87.548169,38.8183099 86.7191549,38.5892958 86.1092958,38.1312676 C85.4974648,37.6738028 85.04,36.9867606 84.7349296,36.0704225 C84.4292958,35.1543662 84.2329577,34.0208451 84.1464789,32.668169 C84.0583099,31.3166197 84.015493,29.7464789 84.015493,27.9574648 L84.015493,22.8540845 C84.015493,21.1098592 84.0583099,19.5394366 84.1464789,18.1430986 C84.2329577,16.7476056 84.4292958,15.5811268 84.7349296,14.6425352 C85.04,13.7050704 85.4974648,12.9853521 86.1092958,12.4833803 C86.7191549,11.9825352 87.548169,11.7309859 88.5952113,11.7309859 C89.6425352,11.7309859 90.4704225,11.9825352 91.0816901,12.4833803 C91.6921127,12.9853521 92.1501408,13.7050704 92.4557746,14.6425352 C92.7602817,15.5811268 92.9566197,16.7476056 93.0447887,18.1430986 C93.1312676,19.5394366 93.175493,21.1098592 93.175493,22.8540845 L93.175493,27.9574648 Z M99.6853521,15.1661972 C98.4853521,13.7921127 96.9588732,12.6797183 95.1056338,11.8292958 C93.2509859,10.9785915 91.0816901,10.5532394 88.5952113,10.5532394 C86.1092958,10.5532394 83.9385915,10.9785915 82.0850704,11.8292958 C80.2307042,12.6797183 78.7042254,13.7921127 77.5053521,15.1661972 C76.3047887,16.54 75.4002817,18.1104225 74.7901408,19.8769014 C74.1785915,21.6433803 73.8740845,23.4425352 73.8740845,25.2749296 C73.8740845,27.1067606 74.1785915,28.9059155 74.7901408,30.6726761 C75.4002817,32.4391549 76.3047887,34.0095775 77.5053521,35.3833803 C78.7042254,36.7577465 80.2307042,37.8695775 82.0850704,38.7202817 C83.9385915,39.5709859 86.1092958,39.996338 88.5952113,39.996338 C91.0816901,39.996338 93.2509859,39.5709859 95.1056338,38.7202817 C96.9588732,37.8695775 98.4853521,36.7577465 99.6853521,35.3833803 C100.884789,34.0095775 101.789296,32.4391549 102.400563,30.6726761 C103.010986,28.9059155 103.31662,27.1067606 103.31662,25.2749296 C103.31662,23.4425352 103.010986,21.6433803 102.400563,19.8769014 C101.789296,18.1104225 100.884789,16.54 99.6853521,15.1661972 L99.6853521,15.1661972 Z" id="Fill-7"></path>
<path d="M127.362254,36.6267606 C126.075493,38.0008451 124.166761,38.6876056 121.637183,38.6876056 L115.421408,38.6876056 L129.816338,13.2357746 L129.816338,11.6 L106.52338,11.6 L106.52338,19.4515493 L107.177746,19.4515493 C107.395493,17.1842254 108.224789,15.4830986 109.663944,14.3484507 C111.103662,13.2143662 112.716901,12.6470423 114.505915,12.6470423 L120.132676,12.6470423 L105.345915,38.2949296 L105.345915,39.7346479 L130.470141,39.7346479 L130.470141,31.163662 L129.816338,31.163662 C129.466197,33.431831 128.648451,35.2523944 127.362254,36.6267606" id="Fill-8"></path>
<path d="M152.082535,38.5090141 C152.082535,38.5090141 151.307887,38.8225352 150.619718,38.8225352 C148.960845,38.8225352 147.838028,38.1028169 147.248732,36.6628169 C146.659718,35.2230986 146.36507,32.8661972 146.36507,29.5938028 L146.36507,12.6521127 L151.274366,12.6521127 L151.274366,11.5991549 L146.346761,11.5991549 L146.346761,0.0684507042 C146.346761,0.0684507042 145.863944,0.0684507042 145.767042,0.0684507042 C145.767042,1.00788732 142.239718,11.5523944 136.003099,11.5957746 L133.013239,11.5957746 L133.015493,12.6476056 L136.547042,12.6476056 L136.547042,27.6949296 C136.547042,30.0949296 136.84169,32.08 137.430986,33.6512676 C138.02,35.2216901 138.826761,36.4766197 139.852394,37.4146479 C140.877183,38.3535211 142.07831,39.0180282 143.452394,39.4109859 C144.827324,39.803662 146.277465,40 147.805352,40 C149.683662,40 151.202535,39.7267606 152.363944,39.1828169 C152.082535,38.5090141 152.082535,38.5090141 152.082535,38.5090141" id="Fill-9"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 51 KiB

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="800px" height="367px" viewBox="0 0 800 367" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Landscape B</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round">
<g id="Landscape-B" transform="translate(4.610000, 3.684402)" fill="#000000" fill-rule="nonzero" stroke="#000000">
<path d="M401.26,305.205598 C393.65,303.255598 385.7,299.895598 383.66,291.355598 C379.07,272.135598 403.19,248.695598 419.2,244.875598 C425.96,243.265598 435.2,247.085598 436.94,254.555598 C438.94,262.745598 436.94,276.745598 429.14,278.615598 C424.14,279.805598 420.72,277.995598 419.53,273.005598 C418.68,269.445598 421.91,265.665598 421.23,262.825598 C420.89,261.395598 419.57,260.585598 417.44,261.095598 C412.81,262.195598 399.18,275.985598 401.3,284.885598 C401.98,287.735598 406.22,289.725598 411,290.885598 C419.41,293.015598 430.91,295.535598 434.14,309.055598 C437.14,321.505598 429.32,337.665598 408.32,342.675598 C394.8,345.905598 383.42,339.215598 381.32,330.325598 C380.04,324.985598 382.67,320.225598 387.65,319.035598 C391.56,318.095598 395.54,319.035598 396.73,324.035598 C397.92,329.035598 401.81,331.105598 407.5,329.745598 C410.559528,328.97282 413.184941,327.012612 414.795224,324.29878 C416.405506,321.584948 416.867873,318.341273 416.08,315.285598 C414.54,308.805598 407.28,306.775598 401.26,305.205598 Z" id="Path" stroke-width="7"></path>
<path d="M510.06,235.005598 C510.86,237.435598 514.55,245.075598 518.06,243.935598 C526.74,241.055598 531.85,236.675598 537.18,231.825598 C539.85,229.405598 543.68,224.675598 545.76,223.985598 C549.93,222.605598 552.93,223.535598 554.43,228.055598 C555.81,232.225598 552.09,238.465598 542.43,247.805598 C533.04,256.695598 519.03,262.095598 515.55,263.245598 C514.34,286.385598 507.55,318.295598 482.89,326.445598 C472.47,329.895598 459.75,325.235598 454.58,309.605598 C443.79,276.955598 462.86,236.735598 486.13,229.045598 C499.67,224.565598 508.11,229.095598 510.06,235.005598 Z M490.57,255.315598 C489.913692,252.90186 489.607234,250.406415 489.66,247.905598 C476,253.195598 461.89,282.435598 471.82,304.675598 C473.55,309.885598 478.63,312.445598 482.1,311.295598 C499.93,304.505598 501.76,270.505598 498.89,261.815598 C496.69,262.155598 491.83,259.135598 490.57,255.315598 Z" id="Shape" stroke-width="7"></path>
<path d="M603.73,209.705598 C604.19,192.055598 606.83,166.855598 614.66,134.225598 C623.12,99.2255976 639.51,80.9055976 652.41,78.2255976 C662.8,76.0855976 670.01,82.0655976 672.23,92.8155976 C674.9,105.705598 672.66,125.595598 660.38,158.395598 C654.470213,173.842954 647.531316,188.876673 639.61,203.395598 C633.18,215.395598 623.23,227.605598 621.21,241.255598 C619.76,251.035598 621.79,260.895598 624.55,270.255598 C626.14,275.675598 629.26,287.755598 636.66,287.705598 C640.39,287.705598 644.12,287.705598 644.79,290.885598 C645.53,294.465598 641.19,300.595598 633.31,302.225598 C616.11,305.775598 608.37,284.585598 604.74,267.035598 C592.53,287.485598 573.84,303.675598 562.37,306.035598 C555.2,307.515598 542.2,304.225598 539.02,288.825598 C533.61,262.665598 560.63,212.625598 583.92,207.825598 C593.59,205.825598 600.14,208.585598 603.73,209.705598 Z M556.98,281.755598 C558.98,286.085598 561.32,288.335598 564.55,287.665598 C581.14,286.065598 601.23,244.595598 601.23,233.765598 C598.93,233.485598 595.77,232.645598 594.6,228.765598 C593.6,225.965598 590.48,225.125598 587.6,225.765598 C572.08,230.075598 550.64,267.935598 556.98,281.755598 Z M627.98,140.945598 C621.47,165.455598 619.77,204.855598 619.77,204.855598 C624.95,195.565598 640.37,174.855598 648.04,150.535598 C657.53,120.535598 662.33,107.765598 660.33,98.0955976 C659.74,95.2255976 654.44,91.3755976 651.22,92.0355976 C648.39,92.6355976 636.69,108.885598 627.99,140.945598 L627.98,140.945598 Z" id="Shape" stroke-width="7"></path>
<path d="M423.65,13.5855976 C955.93,-67.5244024 754.26,241.045598 754.26,241.045598 C746.44,252.045598 736.26,258.955598 728.05,260.655598 C716.23,263.105598 708.79,256.045598 706.72,246.015598 C705.91,242.075598 705.52,238.415598 704.85,233.325598 C696.6,245.865598 677.27,275.255598 661.15,278.585598 C656.49,279.585598 647.64,274.655598 645.71,265.345598 C638.09,228.435598 672.24,184.025598 699.47,178.395598 C705.21,177.215598 711.32,179.685598 715.79,183.245598 C716.87,183.025598 719.33,175.045598 724.7,173.935598 C731.51,172.525598 736.27,175.655598 737.3,180.665598 C738.56,186.755598 728.85,204.825598 726.47,215.035598 C724.37,222.945598 723.13,231.415598 724.17,236.435598 C724.91,240.015598 727.17,243.655598 731.45,242.775598 C735.04,242.035598 739.54,238.485598 743.95,232.715598 C743.95,232.715598 916.28,-55.9744024 426.59,27.4955976 C424.223449,27.8816861 421.837442,26.9272832 420.39,25.0155976 L419.54,23.8955976 C418.167365,22.0859767 417.842391,19.6897831 418.683464,17.579937 C419.524538,15.470091 421.408867,13.9546184 423.65,13.5855976 Z M663.73,254.895598 C664.1,256.685598 665.73,256.895598 667.54,257.095598 C679.39,258.185598 711.39,212.435598 708.66,203.735598 C707.3,199.405598 702.83,195.395598 698.3,196.195598 C678.64,199.685598 652.89,236.435598 663.73,254.895598 Z" id="Shape" stroke-width="7"></path>
<path d="M311.03,168.515598 C314.56,167.785598 317.72,169.175598 318.53,173.095598 C319.42,177.415598 318.03,180.565598 314.53,187.425598 C300.72,213.595598 280.59,248.835598 262.53,252.565598 C248.01,255.565598 244.34,245.685598 240.61,227.645598 C226.83,248.075598 212.1,265.845598 196.8,269.005598 C182.68,271.925598 176.48,261.755598 175.11,255.085598 C173.24,246.085598 176.71,235.085598 180.88,223.625598 C185.59,210.785598 188.57,197.495598 186.38,186.905598 C184.38,177.095598 186.04,171.425598 193.89,169.805598 C200.95,168.345598 204.28,172.565598 205.82,180.025598 C208.57,193.355598 204.28,210.195598 199.82,224.215598 C196.82,233.425598 193.82,242.635598 194.82,247.345598 C195.23,249.345598 196.58,251.885598 198.94,251.395598 C205.6,250.025598 226.74,225.615598 235.02,206.315598 C241.95,184.425598 243.96,178.315598 246.43,172.455598 C248.9,166.595598 251.67,160.315598 256.77,159.315598 C263.05,158.015598 266.6,161.375598 267.49,165.685598 C268.22,169.215598 266.13,172.925598 264.19,177.415598 C257.76,191.835598 253.82,214.325598 256.98,229.625598 C257.98,234.335598 260.32,235.885598 262.28,235.485598 C270.91,233.695598 289.42,204.485598 299.42,183.635598 C302.92,176.735598 306.72,169.405598 311.03,168.515598 Z" id="Path" stroke-width="8"></path>
<path d="M344.27,138.575598 C345.33,143.685598 336.33,161.495598 334.81,169.985598 C353.63,140.325598 371.76,125.125598 381.57,123.105598 C390.57,121.235598 397.77,126.295598 400.45,139.245598 C404.99,161.245598 386.45,223.945598 341.34,233.245598 C335.85,234.375598 327.27,232.465598 324.43,230.605598 C319.78,239.745598 311.29,301.605598 317.05,329.475598 C318.05,334.575598 320.64,338.965598 321.78,344.475598 C322.78,349.185598 319.5,357.215598 313.62,358.475598 C307.74,359.735598 301.82,356.815598 299.62,346.225598 C292.73,312.885598 299.12,254.705598 303.19,226.865598 C307.26,199.025598 313.58,168.275598 316.65,157.415598 C320.04,146.085598 323.34,134.355598 331.18,132.735598 C335.9,131.725598 343.06,132.695598 344.27,138.575598 Z M338.87,215.365598 C369.87,208.965598 382.87,159.235598 380.95,149.815598 C380.3,146.685598 378.1,145.905598 375.35,146.475598 C364.76,148.665598 330.89,186.935598 327.7,212.765598 C330.884023,215.181612 334.946338,216.127182 338.87,215.365598 L338.87,215.365598 Z" id="Shape" stroke-width="8"></path>
<path d="M518.82,108.475598 C522.35,107.745598 525.5,109.135598 526.31,113.065598 C527.2,117.375598 525.81,120.525598 522.31,127.385598 C508.57,153.945598 483.76,194.245598 440.22,203.245598 C427.28,205.925598 414.22,197.995598 410.62,180.725598 C410.13,178.375598 407.93,177.605598 407.04,173.285598 C406.23,169.365598 408.78,163.925598 412.46,161.945598 C420.16,123.945598 443.66,101.095598 464.06,96.8755976 C472.29,95.1755976 482.61,99.5955976 484.4,108.225598 C488.61,128.615598 460.4,158.575598 435.77,169.805598 C430.91,172.035598 429.91,175.105598 430.48,177.805598 C431.12,180.945598 436.2,187.665598 443.65,186.125598 C476.65,179.315598 496.65,143.685598 507.2,123.505598 C510.7,116.695598 514.5,109.365598 518.82,108.475598 Z M429.25,159.025598 C441.55,163.765598 476.55,121.245598 476.55,114.435598 C476.55,107.895598 466.73,105.255598 460.95,107.225598 C451.54,109.165598 421.89,147.935598 429.25,159.025598 L429.25,159.025598 Z" id="Shape" stroke-width="8"></path>
<path d="M532.13,78.0355976 C532.79,80.7655976 531.75,90.0855976 530.4,99.8855976 C542.4,79.6755976 553.82,63.7355976 563.94,61.2955976 C572.51,59.2255976 579.94,62.7855976 582.31,72.5155976 C585.51,85.7555976 585.12,97.7955976 573.83,100.515598 C571.760595,101.079298 569.550329,100.76484 567.720252,99.6463535 C565.890174,98.5278674 564.602216,96.7043214 564.16,94.6055976 C563.31,91.1055976 564.82,85.3855976 564.35,83.4355976 C564.06,82.2655976 563.49,81.5855976 561.54,82.0555976 C556.48,83.2755976 537.29,113.055598 528.95,134.835598 C526.67,140.745598 524.46,150.345598 523.02,159.755598 C521.79,168.295598 520.02,176.545598 517.73,177.105598 C513.06,178.235598 506.57,175.265598 505.26,169.815598 C504.26,165.535598 505.82,148.255598 508.57,132.345598 C511.43,115.165598 513.4,99.4455976 513.66,91.9655976 C514.33,81.0955976 515.66,74.5955976 521.87,73.0855976 C526.94,71.8755976 531.1,73.7555976 532.13,78.0355976 Z" id="Path" stroke-width="8"></path>
<path d="M143.39,127.165598 C152.67,121.405598 170.91,100.605598 170.91,93.2455976 C170.91,89.4055976 169.31,85.5655976 162.91,85.5655976 C134.75,85.5655976 58.91,134.205598 58.91,164.565598 C58.91,168.085598 60.19,171.565598 66.27,171.565598 C78.75,171.565598 91.27,169.645598 106.92,169.645598 C122.57,169.645598 136.04,177.325598 143.08,186.645598 C172.52,177.645598 188.52,175.445598 191.72,175.445598 C196.2,175.445598 197.8,178.005598 197.8,181.525598 C197.656686,185.175941 194.730344,188.102284 191.08,188.245598 C186.28,188.885598 174.44,189.525598 148.2,197.845598 C148.466149,199.646022 148.57323,201.466387 148.52,203.285598 C148.52,265.045598 77.15,338.005598 35.52,338.005598 C14.08,338.005598 0,324.885598 0,305.005598 C0,283.885598 17.28,255.405598 60.8,224.365598 C82.88,208.685598 104.64,199.365598 124.17,192.365598 C118.09,187.565598 108.48,185.005598 99.17,185.005598 C87.01,185.005598 75.17,187.565598 62.05,187.565598 C52.13,187.565598 39.33,180.845598 39.33,166.445598 C39.33,122.925598 125.42,70.4455976 166.38,70.4455976 C176.94,70.4455976 188.78,76.8455976 188.78,89.0055976 C188.78,105.645598 158.06,136.005598 151.34,142.765598 C146.86,146.925598 143.34,149.765598 138.22,149.765598 C132.78,149.765598 129.9,146.565598 129.9,141.125598 C129.9,135.685598 133.48,133.565598 143.39,127.165598 Z M132.51,208.765598 C132.562799,207.265137 132.455527,205.763321 132.19,204.285598 C113.3,211.005598 89.3,222.205598 68.5,237.885598 C30.1,266.685598 16.98,289.405598 16.98,303.485598 C16.98,315.325598 24.66,322.685598 36.82,322.685598 C66.27,322.685598 132.52,256.445598 132.52,208.765598 L132.51,208.765598 Z" id="Shape" stroke-width="8"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="233px" height="37px" viewBox="0 0 233 37" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>ah</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-457.000000, -177.000000)" fill="#000000" fill-rule="nonzero">
<g id="Group-21" transform="translate(0.000000, 135.000000)">
<g id="Group-14" transform="translate(381.000000, 0.000000)">
<g id="ah" transform="translate(76.000000, 42.000000)">
<g id="Group">
<path d="M44.4727352,13.9608247 C44.4727352,16.7072165 42.3244759,18.6525773 38.8571101,18.6525773 L33.5806839,18.6525773 L33.5806839,9.19278351 L38.8947989,9.19278351 C42.3244759,9.19278351 44.5104239,10.7948454 44.5104239,13.8845361 L44.5104239,13.9608247 L44.4727352,13.9608247 Z M39.2339977,4.95876289 L31.2816697,4.95876289 C29.9625631,4.95876289 28.9826554,5.98865979 28.9826554,7.28556701 L28.9826554,29.1804124 C28.9826554,30.4773196 30.0002519,31.4690722 31.2816697,31.4690722 C32.5253987,31.4690722 33.5429952,30.4391753 33.5429952,29.1804124 L33.5429952,22.8103093 L38.8947989,22.8484536 C38.8947989,22.8484536 38.9324877,22.8484536 38.9324877,22.8484536 C44.5481127,22.7721649 49.1461412,19.6824742 49.1461412,13.8463918 L49.1461412,13.7701031 C49.1461412,8.46804124 45.3395766,4.95876289 39.2339977,4.95876289 Z" id="Shape"></path>
<path d="M74.322232,18.1948454 C74.322232,23.3061856 70.7041112,27.4639175 65.5407512,27.4639175 C60.3773913,27.4639175 56.683893,23.2680412 56.683893,18.1185567 L56.683893,18.042268 C56.683893,12.9309278 60.3020138,8.73505155 65.4653737,8.73505155 C70.6287336,8.73505155 74.322232,12.9690722 74.322232,18.1185567 L74.322232,18.1948454 Z M65.5407512,4.50103093 C57.5507344,4.50103093 51.8974206,10.7185567 51.8974206,18.1185567 L51.8974206,18.1948454 C51.8974206,25.5948454 57.4753569,31.7360825 65.4653737,31.7360825 C73.4553905,31.7360825 79.1087043,25.5185567 79.1087043,18.1185567 L79.1087043,18.042268 C79.1087043,10.642268 73.5307681,4.50103093 65.5407512,4.50103093 Z" id="Shape"></path>
<path d="M98.5937925,4.95876289 L81.2946523,4.95876289 C80.0886121,4.95876289 79.1840819,5.95051546 79.1840819,7.09484536 C79.1840819,8.27731959 80.1263008,9.23092784 81.2946523,9.23092784 L87.6263638,9.23092784 L87.6263638,29.1804124 C87.6263638,30.4773196 88.681649,31.4690722 89.9253781,31.4690722 C91.2067959,31.4690722 92.2243923,30.4391753 92.2243923,29.1804124 L92.2243923,9.26907216 L98.5937925,9.26907216 C99.7621441,9.26907216 100.666674,8.27731959 100.666674,7.13298969 C100.666674,5.95051546 99.7621441,4.95876289 98.5937925,4.95876289" id="Shape"></path>
<path d="M121.395492,27.1587629 L108.355181,27.1587629 L108.355181,20.1020619 L119.548742,20.1020619 C120.679405,20.1020619 121.583935,19.1865979 121.583935,18.0804124 C121.583935,16.8979381 120.641716,15.9824742 119.548742,15.9824742 L108.355181,15.9824742 L108.355181,9.11649485 L121.207048,9.11649485 C122.33771,9.11649485 123.242241,8.20103093 123.242241,7.05670103 C123.242241,5.91237113 122.300022,4.99690722 121.207048,4.99690722 L106.093856,4.99690722 C104.774749,4.99690722 103.794841,6.02680412 103.794841,7.32371134 L103.794841,28.9896907 C103.794841,30.2865979 104.812438,31.3164948 106.093856,31.3164948 L121.395492,31.3164948 C122.526154,31.3164948 123.430684,30.4010309 123.430684,29.256701 C123.430684,28.1123711 122.488466,27.1587629 121.395492,27.1587629" id="Shape"></path>
<path d="M139.900672,16.5546392 L148.003755,8.65876289 C148.531398,8.1628866 148.832908,7.62886598 148.832908,6.94226804 C148.832908,5.79793814 147.966066,4.80618557 146.722337,4.80618557 C145.893185,4.80618557 145.327853,5.11134021 144.837899,5.68350515 L132.513675,18.2329897 L132.513675,7.05670103 C132.513675,5.75979381 131.496079,4.76804124 130.25235,4.76804124 C128.933243,4.76804124 127.953336,5.79793814 127.953336,7.05670103 L127.953336,29.1804124 C127.953336,30.4773196 128.970932,31.4690722 130.25235,31.4690722 C131.496079,31.4690722 132.513675,30.4391753 132.513675,29.1804124 L132.513675,23.7257732 L136.734816,19.5680412 L145.101721,30.3628866 C145.591675,31.0113402 146.157006,31.4690722 147.023847,31.4690722 C148.305265,31.4690722 149.322862,30.4773196 149.322862,29.2185567 C149.322862,28.4938144 149.05904,28.0360825 148.682153,27.5783505 L139.900672,16.5546392 Z" id="Shape"></path>
<path d="M200.956461,10.985567 C200.956461,8.27731959 199.863487,5.53092784 197.715228,3.39484536 C195.604657,1.25876289 192.966444,0.15257732 190.328231,0.15257732 C187.690018,0.15257732 185.051805,1.22061856 182.941234,3.39484536 L176.797967,9.61237113 C175.931125,10.4896907 175.931125,11.9391753 176.797967,12.8164948 C177.664808,13.6938144 179.096981,13.6938144 179.963822,12.8164948 L186.10709,6.59896907 C187.463885,5.2257732 188.896058,4.72989691 190.328231,4.69175258 C191.760404,4.69175258 193.192577,5.26391753 194.549372,6.59896907 C195.943856,8.01030928 196.471499,9.49793814 196.471499,10.985567 C196.471499,12.4350515 195.943856,13.8463918 194.587061,15.2195876 L178.418583,31.5835052 L162.212417,15.2195876 C160.817933,13.8082474 160.29029,12.3206186 160.252602,10.8329897 C160.252602,9.38350515 160.780244,7.97216495 162.099351,6.59896907 C163.456146,5.2257732 164.85063,4.72989691 166.282803,4.72989691 C167.714976,4.72989691 169.222526,5.30206186 170.61701,6.71340206 L170.956209,7.05670103 C171.823051,7.93402062 173.255223,7.93402062 174.122065,7.05670103 C174.988906,6.17938144 174.988906,4.72989691 174.122065,3.85257732 L173.782866,3.50927835 C171.634607,1.33505155 168.958705,0.228865979 166.282803,0.228865979 C163.682279,0.228865979 161.006377,1.29690722 158.895806,3.43298969 C156.785236,5.56907216 155.692262,8.23917526 155.729951,10.871134 C155.729951,13.5793814 156.822925,16.3257732 158.971184,18.4618557 C158.971184,18.4618557 158.971184,18.4618557 158.971184,18.4618557 L176.006503,35.7030928 C176.647212,36.3515464 177.514053,36.6948454 178.343206,36.6948454 C179.172358,36.6948454 180.0392,36.3515464 180.679909,35.7412371 L197.715228,18.5 C197.715228,18.5 197.715228,18.5 197.715228,18.5 C197.715228,18.5 197.715228,18.5 197.715228,18.5 C199.863487,16.3257732 200.956461,13.6556701 200.956461,10.985567" id="Shape"></path>
<path d="M15.7162123,6.48453608 C15.1885697,5.30206186 14.2840395,4.61546392 13.0026217,4.61546392 L12.7764892,4.61546392 C11.4950714,4.61546392 10.5528524,5.34020619 10.0252098,6.48453608 L0.339198828,28.3030928 C0.150755034,28.6845361 0.0376887586,29.0278351 0.0376887586,29.371134 C0.0376887586,30.5917526 0.979907724,31.5072165 2.14825924,31.5072165 C3.12816697,31.5072165 3.88194214,30.9731959 4.25882972,30.057732 L6.44477772,24.9845361 L13.0026217,24.9845361 C14.0955957,24.9463918 14.9624372,24.0309278 14.9624372,22.9247423 C14.9624372,21.8185567 14.0955957,20.9030928 13.0026217,20.8649485 L8.21614938,20.8649485 L12.8141779,10.1845361 L17.3745177,20.8268041 L19.1082006,24.9082474 L21.2187711,29.828866 C21.6333474,30.8206186 22.3871226,31.4309278 23.4424079,31.4309278 C24.6484481,31.4309278 25.5906671,30.4391753 25.5906671,29.2185567 C25.5906671,28.9134021 25.4776008,28.5319588 25.3268458,28.2268041 L15.7162123,6.48453608 Z" id="Shape"></path>
</g>
<path d="M206.66087,18.1555146 L209.925121,18.1555146 L209.925121,31.2156742 L206.66087,31.2156742 L206.66087,18.1555146 Z M225.608535,17.8148148 L233,31.2156742 L229.285507,31.2156742 L228.460064,29.7771639 L224.745572,29.7771639 L226.058776,27.4301207 L227.18438,27.4301207 L225.646055,24.6288111 L224.032689,27.5436873 C223.770048,27.9979538 223.544928,28.4143646 223.282287,28.7550645 C222.044122,30.420708 220.093076,31.5185185 217.879388,31.5185185 C214.202415,31.5185185 211.163285,28.4900757 211.163285,24.7423777 C211.163285,21.0325353 214.164895,17.966237 217.879388,17.966237 C219.155072,17.966237 220.280676,18.3069368 221.2562,18.8747698 L219.680354,21.7517905 C219.192593,21.4489462 218.55475,21.2596685 217.879388,21.2596685 C216.003382,21.2596685 214.465056,22.8117454 214.465056,24.7045222 C214.465056,26.597299 216.003382,28.1493759 217.879388,28.1493759 C218.892432,28.1493759 219.755395,27.6951095 220.355717,27.0894209 C220.618357,26.8244322 220.918519,26.3701657 221.031079,26.1808881 L225.608535,17.8148148 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="100px" height="37px" viewBox="0 0 100 37" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>lyko</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-523.000000, -44.000000)" fill="#000000" fill-rule="nonzero">
<g id="Group-20" transform="translate(1.000000, 0.000000)">
<g id="Group-6" transform="translate(380.000000, 0.000000)">
<g id="lyko" transform="translate(142.000000, 44.000000)">
<path d="M76.3157895,36.9139535 L96.8421053,36.9139535 L96.8421053,30.3744186 L76.3157895,30.3744186 L76.3157895,36.9139535 Z M86.5789474,0 C79.122807,0 73.1578947,6.10930233 73.1578947,13.5093023 C73.1578947,20.9953488 79.2105263,27.0186047 86.5789474,27.0186047 C94.0350877,27.0186047 100,20.9093023 100,13.5093023 C100,6.10930233 93.9473684,0 86.5789474,0 Z M86.5789474,20.4790698 C82.8070175,20.4790698 79.6491228,17.3813953 79.6491228,13.5093023 C79.6491228,9.6372093 82.7192982,6.53953488 86.5789474,6.53953488 C90.4385965,6.53953488 93.5087719,9.6372093 93.5087719,13.5093023 C93.4210526,17.3813953 90.3508772,20.4790698 86.5789474,20.4790698 Z M0,37 L0,1.11860465 L7.28070175,1.11860465 L7.28070175,30.3744186 L19.9122807,30.3744186 L19.9122807,37 L0,37 Z M26.0526316,37 L26.0526316,21.855814 L15.9649123,1.11860465 L24.0350877,1.11860465 L29.6491228,14.3697674 L35.7894737,1.11860465 L43.9473684,1.11860465 L33.245614,21.855814 L33.245614,37 L26.0526316,37 Z M47.0175439,37 L47.0175439,1.11860465 L54.2982456,1.11860465 L54.122807,14.627907 L63.5964912,1.11860465 L72.1052632,1.11860465 L62.4561404,15.144186 L73.5087719,37 L64.9122807,37 L57.3684211,21.0813953 L54.2105263,25.6418605 L54.2105263,37 C54.2105263,37 47.0175439,37 47.0175439,37 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="90px" height="72px" viewBox="0 0 90 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>np_shuffle_731522_000000</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Start" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Start-desktop-Large" transform="translate(-754.000000, -4934.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="Row-header" transform="translate(-276.000000, 4562.000000)">
<g id="Group-20" transform="translate(486.000000, 313.000000)">
<g id="Group-3-Copy-2" transform="translate(402.704364, 0.000000)">
<g id="np_shuffle_731522_000000" transform="translate(141.980255, 59.461816)">
<polygon id="Shape" points="74.3699829 28.3284992 71.5896195 25.5277122 82.8153161 14.215405 71.5896195 2.90724841 74.3699829 0.106461449 88.3809873 14.2162351"></polygon>
<path d="M21.6314581,59.3517389 L0.204983817,59.3517389 L0.204983817,55.4078921 L21.6314581,55.4078921 C25.9569256,55.4078921 29.0471339,53.3326202 31.6223075,49.7008944 L51.3986105,19.5036129 C54.6940086,14.9396749 58.9189414,12.2401612 64.5845293,12.2401612 L85.5958856,12.2401612 L85.5958856,16.184008 L64.5845293,16.188061 C60.2590617,16.188061 57.1688535,18.2633329 54.5936799,21.8950587 L34.8173769,52.0881897 C31.5219787,56.6561744 27.1924939,59.3516413 21.6314581,59.3516413 L21.6314581,59.3517389 Z" id="Shape"></path>
<polygon id="Shape" points="74.3699829 71.4910419 71.5896195 68.6902549 82.8153161 57.3820983 71.5896195 46.0697912 74.3699829 43.2690042 88.3809873 57.3829284"></polygon>
<path d="M85.6008299,59.3517389 L64.4844066,59.3517389 C58.9236797,59.3517389 54.5940919,56.6522252 51.2984878,52.0882872 L31.6221015,21.790355 C29.0469279,18.264053 25.9567196,16.0833573 21.631252,16.0833573 L0.204777803,16.0833573 L0.204777803,12.1395105 L21.631252,12.1395105 C27.1919789,12.1395105 31.5215667,14.8390242 34.8171708,19.4029622 L54.5934739,49.7008944 C57.1686474,53.2271964 60.2588557,55.4078921 64.5843233,55.4078921 L85.5956796,55.4078921 L85.6008299,59.3517389 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="247px" height="42px" viewBox="0 0 247 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>greatlife-black</title>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-2736.000000, -723.000000)">
<g id="Group-3" transform="translate(2287.000000, 681.000000)">
<g id="greatlife-black" transform="translate(449.000000, 42.000000)">
<path d="M192.15,18.7833333 C191.683333,18.3166667 191.216667,17.9666667 190.633333,17.6166667 C190.05,17.3833333 189.35,17.15 188.533333,17.15 C187.133333,17.15 185.85,17.6166667 184.916667,18.6666667 C183.983333,19.7166667 183.4,21 183.166667,22.5166667 L193.666667,22.5166667 C193.55,21.8166667 193.433333,21.1166667 193.2,20.4166667 C192.966667,19.8333333 192.616667,19.25 192.15,18.7833333 Z" id="Path"></path>
<path d="M69.65,18.9 C69.0666667,18.4333333 68.4833333,17.9666667 67.7833333,17.7333333 C67.0833333,17.5 66.2666667,17.3833333 65.45,17.3833333 C64.6333333,17.3833333 63.8166667,17.5 63.1166667,17.7333333 C62.4166667,17.9666667 61.8333333,18.4333333 61.25,18.9 C60.6666667,19.3666667 60.3166667,19.95 59.9666667,20.65 C59.6166667,21.35 59.5,22.05 59.5,22.9833333 L59.5,23.1 C59.5,23.9166667 59.6166667,24.7333333 59.9666667,25.4333333 C60.3166667,26.1333333 60.6666667,26.7166667 61.25,27.1833333 C61.7166667,27.65 62.4166667,28.1166667 63.1166667,28.35 C63.8166667,28.5833333 64.6333333,28.7 65.3333333,28.7 C66.15,28.7 66.85,28.5833333 67.6666667,28.35 C68.3666667,28.1166667 69.0666667,27.65 69.5333333,27.1833333 C70.1166667,26.7166667 70.4666667,26.1333333 70.8166667,25.4333333 C71.1666667,24.7333333 71.2833333,24.0333333 71.2833333,23.2166667 L71.2833333,23.1 C71.2833333,22.2833333 71.1666667,21.4666667 70.8166667,20.7666667 C70.5833333,19.95 70.2333333,19.3666667 69.65,18.9 Z" id="Path"></path>
<path d="M106.516667,18.7833333 C106.05,18.3166667 105.583333,17.9666667 105,17.6166667 C104.416667,17.3833333 103.716667,17.15 102.9,17.15 C101.5,17.15 100.216667,17.6166667 99.2833333,18.6666667 C98.35,19.7166667 97.7666667,21 97.5333333,22.5166667 L108.033333,22.5166667 C107.916667,21.8166667 107.8,21.1166667 107.566667,20.4166667 C107.333333,19.8333333 106.983333,19.25 106.516667,18.7833333 Z" id="Path"></path>
<path d="M123.9,24.85 C122.383333,24.85 121.333333,25.0833333 120.4,25.6666667 C119.583333,26.25 119.116667,27.0666667 119.116667,28 L119.116667,28.1166667 C119.116667,29.05 119.466667,29.8666667 120.283333,30.3333333 C121.1,30.8 122.033333,31.15 123.083333,31.15 C123.9,31.15 124.6,31.0333333 125.183333,30.8 C125.883333,30.5666667 126.466667,30.3333333 126.933333,29.9833333 C127.4,29.6333333 127.75,29.1666667 128.1,28.5833333 C128.333333,28 128.45,27.4166667 128.45,26.8333333 L128.45,25.6666667 C127.866667,25.4333333 127.166667,25.2 126.35,25.0833333 C125.65,24.9666667 124.716667,24.85 123.9,24.85 Z" id="Path"></path>
<path d="M239.983333,18.7833333 C239.516667,18.3166667 239.05,17.9666667 238.466667,17.6166667 C237.883333,17.3833333 237.183333,17.15 236.366667,17.15 C234.966667,17.15 233.683333,17.6166667 232.75,18.6666667 C231.816667,19.7166667 231.233333,21 231,22.5166667 L241.5,22.5166667 C241.383333,21.8166667 241.266667,21.1166667 241.033333,20.4166667 C240.683333,19.8333333 240.333333,19.25 239.983333,18.7833333 Z" id="Path"></path>
<path d="M71.4,16.8 C70.5833333,15.8666667 69.65,15.05 68.4833333,14.35 C67.3166667,13.65 65.9166667,13.3 64.1666667,13.3 C63,13.3 61.8333333,13.5333333 60.6666667,14 C59.5,14.4666667 58.5666667,15.05 57.6333333,15.8666667 C56.8166667,16.6833333 56.1166667,17.7333333 55.5333333,18.9 C55.0666667,20.0666667 54.7166667,21.4666667 54.7166667,22.9833333 L54.7166667,23.1 C54.7166667,24.6166667 54.95,25.9 55.5333333,27.1833333 C56,28.35 56.7,29.4 57.6333333,30.2166667 C58.45,31.0333333 59.5,31.6166667 60.55,32.0833333 C61.7166667,32.55 62.7666667,32.7833333 64.05,32.7833333 C65.6833333,32.7833333 67.0833333,32.4333333 68.25,31.7333333 C69.4166667,31.0333333 70.35,30.1 71.2833333,29.05 L71.2833333,30.6833333 C71.2833333,32.7833333 70.7,34.3 69.65,35.35 C68.4833333,36.4 66.9666667,36.9833333 64.8666667,36.9833333 C63.4666667,36.9833333 62.1833333,36.75 61.0166667,36.4 C59.85,36.05 58.6833333,35.4666667 57.6333333,34.7666667 L55.8833333,38.2666667 C58.5666667,39.9 61.6,40.7166667 64.9833333,40.7166667 C66.85,40.7166667 68.4833333,40.4833333 69.8833333,40.0166667 C71.2833333,39.55 72.45,38.85 73.3833333,37.9166667 C75.1333333,36.1666667 75.95,33.6 75.95,30.2166667 L75.95,13.8833333 L71.2833333,13.8833333 L71.2833333,16.8 L71.4,16.8 Z M71.4,23.1 C71.4,23.9166667 71.2833333,24.7333333 70.9333333,25.3166667 C70.5833333,26.0166667 70.2333333,26.6 69.65,27.0666667 C69.0666667,27.5333333 68.4833333,28 67.7833333,28.2333333 C67.0833333,28.4666667 66.2666667,28.5833333 65.45,28.5833333 C64.6333333,28.5833333 63.9333333,28.4666667 63.2333333,28.2333333 C62.5333333,28 61.95,27.5333333 61.3666667,27.0666667 C60.9,26.6 60.4333333,26.0166667 60.0833333,25.3166667 C59.7333333,24.6166667 59.6166667,23.9166667 59.6166667,22.9833333 L59.6166667,22.8666667 C59.6166667,22.05 59.7333333,21.2333333 60.0833333,20.5333333 C60.4333333,19.8333333 60.7833333,19.25 61.3666667,18.7833333 C61.95,18.3166667 62.5333333,17.9666667 63.2333333,17.6166667 C63.9333333,17.3833333 64.75,17.2666667 65.5666667,17.2666667 C66.3833333,17.2666667 67.0833333,17.3833333 67.9,17.6166667 C68.6,17.85 69.3,18.3166667 69.7666667,18.7833333 C70.35,19.25 70.7,19.8333333 71.05,20.5333333 C71.2833333,21.35 71.4,22.1666667 71.4,23.1 L71.4,23.1 Z" id="Shape" fill="#1D1D1B" fill-rule="nonzero"></path>
<path d="M87.0333333,14.7 C85.8666667,15.6333333 84.9333333,16.9166667 84.2333333,18.4333333 L84.2333333,13.7666667 L79.45,13.7666667 L79.45,34.1833333 L84.2333333,34.1833333 L84.2333333,26.3666667 C84.2333333,24.9666667 84.35,23.8 84.7,22.8666667 C85.05,21.8166667 85.5166667,21 86.1,20.3 C86.6833333,19.6 87.5,19.1333333 88.3166667,18.7833333 C89.1333333,18.4333333 90.0666667,18.3166667 91.1166667,18.3166667 L91.35,18.3166667 L91.35,13.3 C89.7166667,13.3 88.2,13.7666667 87.0333333,14.7 Z" id="Path" fill="#1D1D1B" fill-rule="nonzero"></path>
<path d="M110.25,16.6833333 C109.433333,15.6333333 108.383333,14.8166667 107.216667,14.2333333 C105.933333,13.65 104.533333,13.3 102.9,13.3 C101.383333,13.3 100.1,13.5333333 98.8166667,14.1166667 C97.65,14.7 96.6,15.4 95.6666667,16.45 C94.7333333,17.3833333 94.0333333,18.55 93.5666667,19.8333333 C93.1,21.1166667 92.8666667,22.5166667 92.8666667,24.0333333 L92.8666667,24.15 C92.8666667,25.7833333 93.1,27.1833333 93.6833333,28.4666667 C94.2666667,29.75 94.9666667,30.9166667 95.9,31.85 C96.8333333,32.7833333 98,33.4833333 99.2833333,34.0666667 C100.566667,34.5333333 101.966667,34.8833333 103.366667,34.8833333 C105.233333,34.8833333 106.866667,34.5333333 108.266667,33.8333333 C109.666667,33.1333333 110.833333,32.2 111.766667,31.0333333 L108.966667,28.5833333 C108.15,29.4 107.333333,29.9833333 106.4,30.45 C105.583333,30.9166667 104.533333,31.0333333 103.366667,31.0333333 C101.85,31.0333333 100.566667,30.5666667 99.5166667,29.75 C98.4666667,28.8166667 97.7666667,27.5333333 97.5333333,25.9 L112.583333,25.9 C112.583333,25.6666667 112.583333,25.4333333 112.583333,25.2 C112.583333,24.9666667 112.583333,24.7333333 112.583333,24.6166667 C112.583333,23.1 112.35,21.7 112,20.4166667 C111.65,18.7833333 111.066667,17.6166667 110.25,16.6833333 Z M97.5333333,22.6333333 C97.7666667,21 98.35,19.7166667 99.2833333,18.7833333 C100.216667,17.7333333 101.383333,17.2666667 102.9,17.2666667 C103.716667,17.2666667 104.416667,17.3833333 105,17.7333333 C105.583333,17.9666667 106.166667,18.4333333 106.516667,18.9 C106.983333,19.3666667 107.333333,19.95 107.566667,20.65 C107.8,21.35 108.033333,22.05 108.033333,22.75 L97.5333333,22.75 L97.5333333,22.6333333 Z" id="Shape" fill="#1D1D1B" fill-rule="nonzero"></path>
<path d="M124.133333,13.5333333 C122.5,13.5333333 120.983333,13.65 119.816667,14 C118.65,14.35 117.483333,14.7 116.316667,15.2833333 L117.6,19.0166667 C118.533333,18.6666667 119.466667,18.3166667 120.4,18.0833333 C121.333333,17.85 122.383333,17.7333333 123.55,17.7333333 C125.183333,17.7333333 126.466667,18.0833333 127.283333,18.9 C128.1,19.6 128.566667,20.7666667 128.566667,22.1666667 L128.566667,22.5166667 C127.75,22.2833333 126.933333,22.05 126.116667,21.9333333 C125.3,21.8166667 124.25,21.7 122.966667,21.7 C121.8,21.7 120.633333,21.8166667 119.7,22.05 C118.65,22.2833333 117.833333,22.75 117.016667,23.3333333 C116.316667,23.9166667 115.733333,24.6166667 115.266667,25.4333333 C114.8,26.25 114.683333,27.3 114.683333,28.35 L114.683333,28.4666667 C114.683333,29.5166667 114.916667,30.45 115.266667,31.15 C115.616667,31.9666667 116.2,32.55 116.9,33.1333333 C117.6,33.7166667 118.3,34.0666667 119.233333,34.3 C120.166667,34.5333333 121.1,34.65 122.033333,34.65 C123.55,34.65 124.95,34.4166667 126,33.8333333 C127.05,33.25 127.983333,32.55 128.683333,31.7333333 L128.683333,34.3 L133.35,34.3 L133.35,22.1666667 C133.35,19.4833333 132.65,17.2666667 131.133333,15.75 C129.383333,14.2333333 127.166667,13.5333333 124.133333,13.5333333 Z M128.566667,26.8333333 C128.566667,27.5333333 128.45,28.1166667 128.216667,28.5833333 C127.983333,29.1666667 127.516667,29.5166667 127.05,29.9833333 C126.583333,30.3333333 126,30.6833333 125.3,30.8 C124.6,31.0333333 123.9,31.15 123.2,31.15 C122.033333,31.15 121.1,30.9166667 120.4,30.3333333 C119.583333,29.8666667 119.233333,29.05 119.233333,28.1166667 L119.233333,28 C119.233333,27.0666667 119.7,26.25 120.516667,25.6666667 C121.333333,25.0833333 122.5,24.85 124.016667,24.85 C124.95,24.85 125.766667,24.9666667 126.583333,25.0833333 C127.4,25.2 128.1,25.4333333 128.683333,25.6666667 L128.683333,26.8333333 L128.566667,26.8333333 Z" id="Shape" fill="#1D1D1B" fill-rule="nonzero"></path>
<path d="M141.983333,8.16666667 L137.2,8.16666667 L137.2,13.7666667 L134.633333,13.7666667 L134.633333,17.85 L137.2,17.85 L137.2,28.5833333 C137.2,29.75 137.316667,30.6833333 137.666667,31.3833333 C137.9,32.2 138.366667,32.7833333 138.95,33.25 C139.533333,33.7166667 140.116667,34.0666667 140.816667,34.3 C141.516667,34.5333333 142.333333,34.65 143.15,34.65 C144.083333,34.65 144.783333,34.5333333 145.483333,34.4166667 C146.183333,34.1833333 146.766667,33.95 147.35,33.6 L147.35,29.75 C146.416667,30.2166667 145.483333,30.45 144.433333,30.45 C143.616667,30.45 143.033333,30.2166667 142.566667,29.8666667 C142.1,29.5166667 141.866667,28.8166667 141.866667,27.8833333 L141.866667,17.85 L147.35,17.85 L147.35,13.7666667 L141.866667,13.7666667 L141.866667,8.16666667 L141.983333,8.16666667 Z" id="Path" fill="#1D1D1B" fill-rule="nonzero"></path>
<rect id="Rectangle" fill="#1D1D1B" fill-rule="nonzero" x="149.45" y="5.95" width="4.78333333" height="28.35"></rect>
<rect id="Rectangle" fill="#1D1D1B" fill-rule="nonzero" x="157.383333" y="13.7666667" width="4.78333333" height="20.4166667"></rect>
<path d="M174.066667,5.71666667 C172.083333,5.71666667 170.566667,6.3 169.4,7.35 C168.233333,8.51666667 167.766667,10.15 167.766667,12.4833333 L167.766667,14 L165.2,14 L165.2,17.9666667 L167.766667,17.9666667 L167.766667,34.4166667 L172.55,34.4166667 L172.55,17.85 L177.916667,17.85 L177.916667,14 L172.433333,14 L172.433333,12.8333333 C172.433333,10.7333333 173.366667,9.68333333 175.116667,9.68333333 C175.583333,9.68333333 176.05,9.68333333 176.516667,9.8 C176.983333,9.91666667 177.333333,10.0333333 177.8,10.15 L177.8,6.18333333 C177.333333,6.06666667 176.75,5.95 176.166667,5.83333333 C175.583333,5.83333333 174.883333,5.71666667 174.066667,5.71666667 Z" id="Path" fill="#1D1D1B" fill-rule="nonzero"></path>
<path d="M195.883333,16.6833333 C195.066667,15.6333333 194.016667,14.8166667 192.85,14.2333333 C191.566667,13.65 190.166667,13.3 188.533333,13.3 C187.016667,13.3 185.733333,13.5333333 184.45,14.1166667 C183.283333,14.7 182.233333,15.4 181.3,16.45 C180.366667,17.3833333 179.666667,18.55 179.2,19.8333333 C178.733333,21.1166667 178.5,22.5166667 178.5,24.0333333 L178.5,24.15 C178.5,25.7833333 178.733333,27.1833333 179.316667,28.4666667 C179.9,29.75 180.6,30.9166667 181.533333,31.85 C182.466667,32.7833333 183.633333,33.4833333 184.916667,34.0666667 C186.2,34.5333333 187.6,34.8833333 189,34.8833333 C190.866667,34.8833333 192.5,34.5333333 193.9,33.8333333 C195.3,33.1333333 196.466667,32.2 197.4,31.0333333 L194.6,28.5833333 C193.783333,29.4 192.966667,29.9833333 192.033333,30.45 C191.216667,30.9166667 190.166667,31.0333333 189,31.0333333 C187.483333,31.0333333 186.2,30.5666667 185.15,29.75 C184.1,28.8166667 183.4,27.5333333 183.166667,25.9 L198.333333,25.9 C198.333333,25.6666667 198.333333,25.4333333 198.333333,25.2 C198.333333,24.9666667 198.333333,24.7333333 198.333333,24.6166667 C198.333333,23.1 198.1,21.7 197.75,20.4166667 C197.283333,18.7833333 196.7,17.6166667 195.883333,16.6833333 Z M183.166667,22.6333333 C183.4,21 183.983333,19.7166667 184.916667,18.7833333 C185.85,17.7333333 187.016667,17.2666667 188.533333,17.2666667 C189.35,17.2666667 190.05,17.3833333 190.633333,17.7333333 C191.216667,17.9666667 191.8,18.4333333 192.15,18.9 C192.616667,19.3666667 192.966667,19.95 193.2,20.65 C193.433333,21.35 193.666667,22.05 193.666667,22.75 L183.166667,22.75 L183.166667,22.6333333 Z" id="Shape" fill="#1D1D1B" fill-rule="nonzero"></path>
<path d="M222.133333,24.15 C221.55,23.6833333 220.85,23.3333333 220.15,22.9833333 C219.45,22.6333333 218.633333,22.4 217.933333,22.1666667 C217.35,21.9333333 216.766667,21.8166667 216.183333,21.5833333 C215.6,21.35 215.133333,21.2333333 214.666667,21 C214.2,20.7666667 213.85,20.5333333 213.616667,20.3 C213.383333,20.0666667 213.266667,19.7166667 213.266667,19.3666667 L213.266667,19.25 C213.266667,18.6666667 213.5,18.2 213.966667,17.7333333 C214.433333,17.3833333 215.133333,17.15 216.066667,17.15 C216.883333,17.15 217.816667,17.2666667 218.866667,17.6166667 C219.916667,17.9666667 220.85,18.4333333 221.9,19.0166667 L223.766667,15.6333333 C222.716667,14.9333333 221.433333,14.35 220.15,13.8833333 C218.866667,13.4166667 217.583333,13.3 216.183333,13.3 C215.133333,13.3 214.2,13.4166667 213.383333,13.7666667 C212.45,14 211.75,14.4666667 211.05,15.05 C210.35,15.6333333 209.883333,16.2166667 209.533333,17.0333333 C209.183333,17.85 208.95,18.6666667 208.95,19.6 L208.95,19.7166667 C208.95,20.65 209.183333,21.4666667 209.533333,22.1666667 C209.883333,22.8666667 210.466667,23.45 211.05,23.8 C211.633333,24.2666667 212.333333,24.6166667 213.15,24.85 C213.966667,25.0833333 214.666667,25.4333333 215.366667,25.55 C215.95,25.7833333 216.533333,25.9 217.116667,26.1333333 C217.7,26.3666667 218.166667,26.4833333 218.633333,26.7166667 C219.1,26.95 219.45,27.1833333 219.683333,27.4166667 C219.916667,27.65 220.033333,28 220.033333,28.4666667 L220.033333,28.5833333 C220.033333,29.2833333 219.8,29.75 219.216667,30.2166667 C218.633333,30.5666667 217.933333,30.8 216.883333,30.8 C215.833333,30.8 214.666667,30.5666667 213.616667,30.2166667 C212.45,29.75 211.283333,29.1666667 210.233333,28.35 L208.133333,31.5 C209.416667,32.55 210.816667,33.25 212.333333,33.8333333 C213.85,34.3 215.366667,34.65 216.766667,34.65 C217.816667,34.65 218.866667,34.5333333 219.8,34.3 C220.733333,34.0666667 221.55,33.6 222.25,33.1333333 C222.95,32.55 223.416667,31.9666667 223.883333,31.15 C224.233333,30.3333333 224.466667,29.4 224.466667,28.35 L224.466667,28.2333333 C224.466667,27.3 224.233333,26.4833333 223.883333,25.9 C223.3,25.0833333 222.833333,24.6166667 222.133333,24.15 Z" id="Path" fill="#1D1D1B" fill-rule="nonzero"></path>
<path d="M245.583333,20.1833333 C245.116667,18.9 244.533333,17.7333333 243.716667,16.6833333 C242.9,15.6333333 241.85,14.8166667 240.683333,14.2333333 C239.4,13.65 238,13.3 236.366667,13.3 C234.85,13.3 233.566667,13.5333333 232.283333,14.1166667 C231.116667,14.7 230.066667,15.4 229.133333,16.45 C228.2,17.3833333 227.5,18.55 227.033333,19.8333333 C226.566667,21.1166667 226.333333,22.5166667 226.333333,24.0333333 L226.333333,24.15 C226.333333,25.7833333 226.566667,27.1833333 227.15,28.4666667 C227.733333,29.75 228.433333,30.9166667 229.366667,31.85 C230.3,32.7833333 231.466667,33.4833333 232.75,34.0666667 C234.033333,34.5333333 235.433333,34.8833333 236.833333,34.8833333 C238.7,34.8833333 240.333333,34.5333333 241.733333,33.8333333 C243.133333,33.1333333 244.3,32.2 245.233333,31.0333333 L242.433333,28.5833333 C241.616667,29.4 240.8,29.9833333 239.866667,30.45 C239.05,30.9166667 238,31.0333333 236.833333,31.0333333 C235.316667,31.0333333 234.033333,30.5666667 232.983333,29.75 C231.933333,28.8166667 231.233333,27.5333333 231,25.9 L246.05,25.9 C246.05,25.6666667 246.05,25.4333333 246.05,25.2 C246.05,24.9666667 246.05,24.7333333 246.05,24.6166667 C246.166667,22.8666667 245.933333,21.4666667 245.583333,20.1833333 Z M231,22.6333333 C231.233333,21 231.816667,19.7166667 232.75,18.7833333 C233.683333,17.7333333 234.85,17.2666667 236.366667,17.2666667 C237.183333,17.2666667 237.883333,17.3833333 238.466667,17.7333333 C239.05,17.9666667 239.633333,18.4333333 239.983333,18.9 C240.45,19.3666667 240.8,19.95 241.033333,20.65 C241.266667,21.35 241.5,22.05 241.5,22.75 L231,22.75 L231,22.6333333 Z" id="Shape" fill="#1D1D1B" fill-rule="nonzero"></path>
<circle id="Oval" fill="#1D1D1B" fill-rule="nonzero" cx="159.716667" cy="8.51666667" r="2.56666667"></circle>
<circle id="Oval" fill="#1D1D1B" fill-rule="nonzero" cx="203" cy="31.6166667" r="2.56666667"></circle>
<path d="M46.0833333,16.45 C44.45,12.95 41.0666667,11.2 37.8,11.2 C34.8833333,11.2 31.85,12.6 29.8666667,15.05 C27.8833333,12.6 24.85,11.2 21.9333333,11.2 C20.7666667,11.2 19.4833333,11.4333333 18.3166667,11.9 C18.2,11.7833333 18.2,11.7833333 18.2,11.6666667 C17.85,11.2 17.85,10.7333333 17.9666667,10.2666667 C18.2,9.1 18.3166667,7.11666667 17.6166667,5.6 C16.3333333,2.56666667 13.0666667,0.35 13.4166667,1.16666667 C14.1166667,2.45 12.7166667,4.9 13.8833333,7.35 C14.2333333,8.05 14.7,8.63333333 15.1666667,9.1 C15.5166667,9.45 16.1,9.91666667 15.9833333,9.56666667 C15.1666667,7.58333333 15.05,6.3 14.8166667,4.2 C14.7,3.03333333 14.8166667,3.85 14.9333333,4.08333333 C15.1666667,5.83333333 16.1,9.45 17.6166667,12.1333333 C17.0333333,12.4833333 16.45,12.8333333 15.9833333,13.1833333 C15.1666667,12.1333333 14.1166667,10.7333333 14,10.15 C12.3666667,4.43333333 4.66666667,4.2 1.16666667,5.6 C0.933333333,5.71666667 0.933333333,5.95 1.16666667,6.06666667 C5.13333333,7 6.18333333,13.4166667 12.7166667,12.25 C13.8833333,12.0166667 13.65,11.9 13.4166667,11.4333333 C12.0166667,9.21666667 8.75,7.35 6.3,6.65 C6.18333333,6.65 6.18333333,6.53333333 6.3,6.53333333 C10.0333333,7.23333333 14,9.56666667 15.1666667,13.8833333 C14.5833333,14.5833333 14,15.4 13.5333333,16.3333333 C12.8333333,17.7333333 12.6,19.1333333 12.6,20.65 C12.6,25.0833333 15.1666667,29.1666667 18.3166667,32.7833333 C21.5833333,36.4 25.4333333,39.55 28.8166667,41.7666667 C29.05,42 29.4,42 29.75,42 C30.1,42 30.3333333,41.8833333 30.6833333,41.7666667 C33.95,39.55 37.9166667,36.4 41.1833333,32.7833333 C44.3333333,29.1666667 46.9,24.9666667 46.9,20.65 C47.0166667,19.25 46.7833333,17.85 46.0833333,16.45 Z M38.85,30.8 C36.1666667,33.8333333 32.7833333,36.6333333 29.8666667,38.6166667 C26.95,36.6333333 23.5666667,33.8333333 20.8833333,30.8 C17.9666667,27.4166667 15.8666667,23.8 15.9833333,20.7666667 C15.9833333,19.7166667 16.2166667,18.7833333 16.5666667,17.85 C17.7333333,15.5166667 19.7166667,14.4666667 21.8166667,14.4666667 C24.3833333,14.4666667 27.0666667,15.9833333 28.2333333,18.7833333 C28.4666667,19.3666667 29.05,19.8333333 29.75,19.8333333 C30.45,19.8333333 31.0333333,19.4833333 31.2666667,18.7833333 C32.4333333,15.9833333 35.1166667,14.4666667 37.6833333,14.4666667 C39.9,14.4666667 41.7666667,15.5166667 42.9333333,17.85 C43.4,18.7833333 43.5166667,19.7166667 43.6333333,20.7666667 C43.75,23.8 41.7666667,27.4166667 38.85,30.8 Z" id="Shape" fill="#1D1D1B" fill-rule="nonzero"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="181px" height="35px" viewBox="0 0 181 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>addnature</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-100.000000, -586.000000)" fill="#000000" fill-rule="nonzero">
<g id="Group-24" transform="translate(0.000000, 543.000000)">
<g id="Group-7">
<g id="addnature" transform="translate(100.000000, 43.000000)">
<g id="Group" transform="translate(37.820896, 7.179487)">
<path d="M10.6258706,20.1025641 C9.72537313,20.8205128 8.10447761,21.9871795 6.84378109,21.9871795 C5.67313433,21.9871795 4.86268657,21.2692308 4.86268657,19.9230769 C4.86268657,17.4102564 7.92437811,16.8717949 10.6258706,16.3333333 L10.6258706,20.1025641 Z M15.1283582,24.6794872 C14.858209,23.8717949 14.7681592,23.0641026 14.7681592,22.1666667 L14.7681592,13.9102564 C14.7681592,8.61538462 12.7870647,6.91025641 8.10447761,6.82051282 C5.58308458,6.73076923 2.70149254,8.16666667 1.62089552,10.0512821 L4.32238806,12.1153846 C5.13283582,11.0384615 6.21343284,9.96153846 8.10447761,9.96153846 C9.54527363,9.96153846 10.6258706,10.6794872 10.6258706,12.025641 L10.6258706,13.5512821 C3.8721393,14.3589744 0.72039801,16.4230769 0.72039801,20.4615385 C0.72039801,22.8846154 2.25124378,25.1282051 5.40298507,25.1282051 C7.5641791,25.1282051 9.09502488,24.4102564 10.8059701,23.2435897 L11.0761194,24.7692308 L15.1283582,24.7692308 L15.1283582,24.6794872 Z" id="Shape"></path>
<path d="M28.7258706,20.1025641 C27.8253731,20.8205128 27.2850746,21.6282051 25.5741294,21.6282051 C23.1427861,21.6282051 21.70199,19.5641026 21.70199,15.8846154 C21.70199,12.2051282 23.1427861,10.1410256 25.5741294,10.1410256 C26.9248756,10.1410256 27.9154229,10.8589744 28.7258706,11.6666667 L28.7258706,20.1025641 Z M32.7781095,0.358974359 L28.6358209,0.358974359 L28.6358209,8.79487179 L28.5457711,8.79487179 C27.7353234,7.71794872 25.7542289,6.82051282 24.3134328,6.82051282 C19.8109453,6.82051282 17.379602,11.1282051 17.379602,15.4358974 C17.379602,20.9102564 19.7208955,25.0384615 24.3134328,25.0384615 C26.2044776,25.0384615 27.5552239,24.2307692 28.9960199,22.7948718 L29.1761194,24.6794872 L32.6880597,24.6794872 L32.6880597,0.358974359 L32.7781095,0.358974359 Z" id="Shape"></path>
<path d="M46.8258706,20.1025641 C45.9253731,20.8205128 45.3850746,21.6282051 43.6741294,21.6282051 C41.2427861,21.6282051 39.80199,19.5641026 39.80199,15.8846154 C39.80199,12.2051282 41.2427861,10.1410256 43.6741294,10.1410256 C45.0248756,10.1410256 46.0154229,10.8589744 46.8258706,11.6666667 L46.8258706,20.1025641 Z M50.9681592,0.358974359 L46.8258706,0.358974359 L46.8258706,8.79487179 C46.0154229,7.71794872 44.0343284,6.82051282 42.5935323,6.82051282 C38.0910448,6.82051282 35.6597015,11.1282051 35.6597015,15.4358974 C35.6597015,20.9102564 38.000995,25.0384615 42.5935323,25.0384615 C44.4845771,25.0384615 45.8353234,24.2307692 47.2761194,22.7948718 L47.4562189,24.6794872 L50.9681592,24.6794872 L50.9681592,0.358974359 Z" id="Shape"></path>
<path d="M54.9303483,24.6794872 L54.9303483,7.17948718 L58.7124378,7.17948718 L58.7124378,9.06410256 C60.2432836,7.98717949 62.0442786,6.82051282 64.0253731,6.82051282 C67.4472637,6.82051282 69.158209,9.15384615 69.158209,12.6538462 L69.158209,24.6794872 L65.0159204,24.6794872 L65.0159204,13.2820513 C65.0159204,10.9487179 64.2955224,10.1410256 62.8547264,10.1410256 C61.0537313,10.1410256 59.7029851,11.2179487 58.9825871,12.025641 L58.9825871,24.6794872 L54.9303483,24.6794872 Z" id="Shape"></path>
<path d="M81.4950249,20.1025641 C80.5945274,20.8205128 78.9736318,21.9871795 77.7129353,21.9871795 C76.5422886,21.9871795 75.7318408,21.2692308 75.7318408,19.9230769 C75.7318408,17.4102564 78.7935323,16.8717949 81.4950249,16.3333333 L81.4950249,20.1025641 Z M85.9074627,24.6794872 C85.6373134,23.8717949 85.5472637,23.0641026 85.5472637,22.1666667 L85.5472637,13.9102564 C85.5472637,8.61538462 83.5661692,6.91025641 78.8835821,6.82051282 C76.3621891,6.73076923 73.480597,8.16666667 72.4,10.0512821 L75.1014925,12.1153846 C75.9119403,11.0384615 76.9925373,9.96153846 78.8835821,9.96153846 C80.3243781,9.96153846 81.4049751,10.6794872 81.4049751,12.025641 L81.4049751,13.5512821 C74.6512438,14.3589744 71.4995025,16.4230769 71.4995025,20.4615385 C71.4995025,22.8846154 73.0303483,25.1282051 76.1820896,25.1282051 C78.3432836,25.1282051 79.8741294,24.4102564 81.5850746,23.2435897 L81.8552239,24.7692308 L85.9074627,24.7692308 L85.9074627,24.6794872 Z" id="Shape"></path>
<path d="M90.0497512,7.17948718 L90.0497512,1.34615385 L94.1920398,1.34615385 L94.1920398,7.17948718 L97.6139303,7.17948718 L97.6139303,10.5897436 L94.1920398,10.5897436 L94.1920398,20.4615385 C94.1920398,21.4487179 94.6422886,21.7179487 95.7228856,21.7179487 C96.3532338,21.7179487 96.9835821,21.5384615 97.6139303,21.3589744 L97.6139303,24.7692308 C96.4432836,24.9487179 95.4527363,25.0384615 94.3721393,25.0384615 C91.3104478,25.0384615 90.139801,23.5128205 90.139801,21 L90.139801,10.5 L87.7084577,10.5 L87.7084577,7.17948718 L90.0497512,7.17948718 Z" id="Shape"></path>
<path d="M114.363184,7.17948718 L114.363184,24.6794872 L110.581095,24.6794872 L110.581095,22.7948718 C109.050249,23.8717949 107.249254,25.0384615 105.268159,25.0384615 C101.846269,25.0384615 100.135323,22.7051282 100.135323,19.2051282 L100.135323,7.17948718 L104.277612,7.17948718 L104.277612,18.5769231 C104.277612,20.9102564 104.99801,21.7179487 106.438806,21.7179487 C108.239801,21.7179487 109.590547,20.6410256 110.310945,19.8333333 L110.310945,7.17948718 L114.363184,7.17948718 Z" id="Shape"></path>
<path d="M118.055224,24.6794872 L118.055224,7.17948718 L121.837313,7.17948718 L121.837313,10.1410256 L121.927363,10.1410256 C122.91791,8.07692308 124.358706,6.91025641 126.79005,6.82051282 L126.79005,11.2179487 C126.60995,11.2179487 126.339801,11.2179487 126.069652,11.2179487 C123.998507,11.2179487 122.197512,13.6410256 122.197512,14.0897436 L122.197512,24.7692308 L118.055224,24.7692308 L118.055224,24.6794872 Z" id="Shape"></path>
<path d="M131.832836,13.8205128 C131.922886,11.3974359 133.183582,9.96153846 135.164677,9.96153846 C137.145771,9.96153846 138.406468,11.3974359 138.496517,13.8205128 L131.832836,13.8205128 Z M142.278607,16.6025641 L142.278607,14.8974359 C142.278607,10.6794872 139.757214,6.82051282 135.254726,6.82051282 C130.572139,6.82051282 127.690547,10.4102564 127.690547,15.8846154 C127.690547,21.4487179 130.48209,24.9487179 134.984577,24.9487179 C138.316418,24.9487179 140.657711,23.8717949 142.278607,21.3589744 L139.306965,19.474359 C138.316418,20.7307692 137.41592,21.5384615 135.434826,21.5384615 C133.543781,21.5384615 131.922886,20.1025641 131.832836,16.5128205 L142.278607,16.5128205 L142.278607,16.6025641 Z" id="Shape"></path>
</g>
<path d="M31.8776119,19.2051282 C31.7875622,19.3846154 31.6074627,19.474359 31.3373134,19.474359 L26.3845771,19.474359 C26.5646766,19.474359 25.8442786,19.5641026 25.3940299,18.8461538 L21.2517413,12.5641026 L28.1855721,33.6538462 C28.2756219,33.8333333 28.1855721,34.1025641 28.0955224,34.2820513 C28.0054726,34.4615385 27.8253731,34.5512821 27.6452736,34.5512821 L19.8109453,34.5512821 C19.540796,34.5512821 19.2706468,34.2820513 19.180597,34.0128205 L15.938806,19.5641026 L12.6970149,34.0128205 C12.6069652,34.3717949 12.4268657,34.5512821 12.0666667,34.5512821 L4.32238806,34.5512821 C4.14228856,34.5512821 3.96218905,34.4615385 3.8721393,34.2820513 C3.78208955,34.1025641 3.6920398,33.8333333 3.78208955,33.6538462 L10.7159204,12.5641026 L6.48358209,18.9358974 C6.03333333,19.6538462 5.31293532,19.5641026 5.49303483,19.5641026 L0.630348259,19.5641026 C0.450248756,19.5641026 0.270149254,19.474359 0.180099502,19.2948718 C0,19.025641 0,18.7564103 0,18.5769231 L8.28457711,7.26923077 C8.55472637,6.82051282 8.82487562,6.55128205 9.18507463,6.55128205 L12.6970149,6.55128205 L12.6970149,1.52564103 C12.6970149,1.16666667 12.9671642,0.807692308 13.3273632,0.807692308 L18.6402985,0.807692308 C19.0004975,0.807692308 19.2706468,1.07692308 19.2706468,1.52564103 L19.2706468,6.64102564 L22.7825871,6.64102564 C23.1427861,6.64102564 23.4129353,6.91025641 23.6830846,7.35897436 L31.9676617,18.6666667 C31.9676617,18.7564103 31.9676617,19.025641 31.8776119,19.2051282 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@@ -0,0 +1 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 222 83" style="enable-background:new 0 0 222 83" xml:space="preserve"><style>.st0{fill-rule:evenodd;clip-rule:evenodd}</style><g id="Welcome"><g id="Desktop---Coming-Soon" transform="translate(-551 -240)"><g id="Group" transform="translate(551.12 240.85)"><path id="Fill-1-Copy" class="st0" d="M126 59.6h7V25h-7v34.6z"/><path id="Fill-2-Copy" class="st0" d="M146.1 25 133 42.3l13.2 17.3h7.9l-13.2-17.3L154 25h-7.9"/><path id="Fill-3-Copy" class="st0" d="M114.1 39.7H99.7l2.1 5.2H114v-5.2"/><path id="Fill-4-Copy" class="st0" d="M52.1 25h-7v22L30.6 25H24v34.6h7v-22l14.5 22H52V25"/><path id="Fill-5-Copy" class="st0" d="M197.8 42.3c0-9.5-7.9-17.3-17.5-17.3h-10.9v34.6h10.9c9.6 0 17.5-7.8 17.5-17.3zm-21.5 10.9V31.3h3.3c6.1 0 11.1 4.9 11.1 11 0 6-5 11-11.1 11h-3.3v-.1z"/><path id="Fill-6-Copy" class="st0" d="m80.4 25-14 34.6h7l7-17.3 7 17.3h7L80.4 25"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 963 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 26 26">
<path fill="#fff" fill-rule="nonzero" d="M16.443 15.129a.927.927 0 0 1-.657 1.585.926.926 0 0 1-.657-.271l-2.786-2.786A.93.93 0 0 1 12.07 13V6.5a.928.928 0 1 1 1.857 0v6.116l2.515 2.513zm5.749 7.063c-.01.009-.022.012-.033.02A12.947 12.947 0 0 1 13 26a12.95 12.95 0 0 1-9.16-3.786c-.01-.01-.022-.012-.032-.021-.009-.01-.012-.022-.02-.033A12.951 12.951 0 0 1 0 13a12.95 12.95 0 0 1 3.786-9.16c.01-.01.012-.022.021-.032.01-.009.022-.012.033-.02A12.951 12.951 0 0 1 13 0a12.95 12.95 0 0 1 9.16 3.786c.01.01.022.012.032.021.009.01.012.022.02.033A12.951 12.951 0 0 1 26 13a12.95 12.95 0 0 1-3.786 9.16c-.01.01-.012.022-.022.032zm-.69-2.004a11.084 11.084 0 0 0 2.594-6.26h-.882a.928.928 0 1 1 0-1.857h.881a11.09 11.09 0 0 0-2.595-6.26l-.621.622a.926.926 0 0 1-1.314 0 .927.927 0 0 1 0-1.313l.621-.621a11.076 11.076 0 0 0-6.258-2.594v.88a.928.928 0 1 1-1.857 0v-.88A11.09 11.09 0 0 0 5.811 4.5l.622.621A.927.927 0 1 1 5.12 6.434l-.622-.622a11.09 11.09 0 0 0-2.594 6.26h.88a.928.928 0 1 1 0 1.857h-.88a11.09 11.09 0 0 0 2.595 6.26l.62-.622a.927.927 0 0 1 1.314 0 .927.927 0 0 1 0 1.313l-.621.621a11.084 11.084 0 0 0 6.26 2.595v-.882a.928.928 0 1 1 1.857 0v.881a11.087 11.087 0 0 0 6.26-2.595l-.622-.621a.927.927 0 0 1 0-1.313.927.927 0 0 1 1.313 0l.62.622z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 140 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="238px" height="50px" viewBox="0 0 238 50" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 60 (88103) - https://sketch.com -->
<title>net-on-net-logotype</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.486779971 0.0471599972 15.5429991 0.0471599972 15.5429991 43.9221574 0.486779971 43.9221574"></polygon>
</defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-834.000000, -1006.000000)">
<g id="Group-25-Copy-3" transform="translate(762.000000, 968.000000)">
<g id="Svensk">
<g id="net-on-net-logotype" transform="translate(72.000000, 38.000000)">
<path d="M0,44.3367574 L6.7469996,44.3367574 L6.7469996,26.0493584 C6.7469996,20.5383588 11.3915993,16.926959 14.4665991,16.926959 C18.9425989,16.926959 21.9269987,19.4379588 21.9269987,25.5753585 L21.9269987,44.3367574 L28.6721983,44.3367574 L28.6721983,23.9715586 C28.6721983,14.1813592 21.6041987,10.6425594 16.477799,10.6425594 C13.1561992,10.6425594 8.53799949,11.7591593 6.87599959,14.3025591 L6.7469996,14.8347591 L6.7469996,10.5801594 L0,10.5801594 L0,44.3367574 Z" id="Fill-4" fill="#1D1D1B"></path>
<path d="M118.227653,2.73971984 C132.139852,2.73971984 144.319251,10.9897193 144.319251,25.9471185 C144.319251,40.9039176 132.139852,49.1533171 118.227653,49.1533171 C104.315454,49.1533171 92.1366545,40.9039176 92.1366545,25.9471185 C92.1366545,10.9897193 104.315454,2.73971984 118.227653,2.73971984 Z M108.978834,17.092919 C103.377834,17.092919 100.130634,21.6169187 100.130634,26.1793184 C100.130634,30.7387182 103.377834,35.2645179 108.978834,35.2645179 C114.579833,35.2645179 117.827633,30.7387182 117.827633,26.1793184 C117.827633,21.6169187 114.579833,17.092919 108.978834,17.092919 Z M129.421132,17.092799 C127.234132,17.092799 125.477333,18.1259989 124.516133,19.7297988 L124.516133,19.7297988 L124.450133,19.7297988 L124.450133,17.556599 L121.003733,17.556599 L121.003733,34.8023979 L124.450133,34.8023979 L124.450133,25.1465985 L124.454844,24.8941079 C124.554989,22.2387689 126.239987,20.7983988 128.392132,20.7983988 C130.681132,20.7983988 132.205732,22.0817987 132.205732,25.2161985 L132.205732,25.2161985 L132.205732,34.8023979 L135.650932,34.8023979 L135.650932,24.3971985 L135.647085,24.1259983 C135.529465,19.9940848 132.730196,17.092799 129.421132,17.092799 Z M108.978834,20.5843188 C111.995633,20.5843188 114.182633,23.0785186 114.182633,26.1793184 C114.182633,29.2783183 111.995633,31.7725181 108.978834,31.7725181 C105.962634,31.7725181 103.775634,29.2783183 103.775634,26.1793184 C103.775634,23.0785186 105.962634,20.5843188 108.978834,20.5843188 Z" id="Combined-Shape" fill="#1D1D1B"></path>
<path d="M66.975596,29.9689782 L66.975596,28.6435783 C66.975596,15.4621791 57.2447966,9.67397942 50.692797,9.67397942 C39.7295976,9.67397942 33.371998,18.5311789 33.371998,27.4579784 C33.371998,36.3841778 39.7295976,45.2419773 50.692797,45.2419773 C56.3363966,45.1723773 61.5263963,42.1051775 65.2883961,37.0117778 L59.5799964,33.595378 C57.2447966,36.9439778 54.1307968,38.8279777 50.498397,38.8279777 C45.7631973,38.8279777 41.2871975,35.1289779 40.8977976,29.9689782 C40.8977976,29.9689782 40.5833976,28.0267783 40.5833976,26.8747784 C40.5833976,25.7239785 40.8977976,23.9713786 40.8977976,23.9713786 C41.9999975,18.9499789 45.5033973,16.089779 49.784997,16.089779 C54.0659968,16.089779 57.6335966,18.8095789 59.0609965,23.9713786 L46.5167972,23.9713786 L46.5167972,29.9689782 L66.975596,29.9689782 Z" id="Fill-10" fill="#1D1D1B"></path>
<path d="M219.113687,29.9689782 L219.113687,28.6435783 C219.113687,15.4621791 209.381688,9.67397942 202.830288,9.67397942 C191.865889,9.67397942 185.508289,18.5311789 185.508289,27.4579784 C185.508289,36.3841778 191.865889,45.2419773 202.830288,45.2419773 C208.473888,45.1723773 213.663287,42.1051775 217.425887,37.0117778 L211.717487,33.595378 C209.381688,36.9439778 206.267088,38.8279777 202.633488,38.8279777 C197.898888,38.8279777 193.423488,35.1289779 193.033488,29.9689782 C193.033488,29.9689782 192.721489,28.0267783 192.721489,26.8747784 C192.721489,25.7239785 193.033488,23.9713786 193.033488,23.9713786 C194.136288,18.9499789 197.640888,16.089779 201.923088,16.089779 C206.201088,16.089779 209.771087,18.8095789 211.197287,23.9713786 L198.654288,23.9713786 L198.654288,29.9689782 L219.113687,29.9689782 Z" id="Fill-12" fill="#1D1D1B"></path>
<path d="M85.3711149,17.415299 L85.3711149,10.5800994 L80.8867152,10.5800994 L80.8867152,0.600299964 L74.1403156,2.62229984 L74.1403156,10.5800994 L70.3129158,10.5800994 L70.3129158,17.415299 L74.1403156,17.415299 L74.1403156,25.0514985 L74.1403156,32.2268981 L74.1403156,34.254298 C74.1403156,37.4600978 75.0373155,40.1180976 76.7323154,41.9420975 C77.8081154,43.1000974 79.7425152,44.4752973 82.8589151,44.4752973 L84.661315,44.4752973 L84.661315,37.1126978 L82.8055151,37.1126978 C82.1875151,37.1126978 81.7567151,36.9860978 81.5239151,36.7352978 C81.1567152,36.3398978 80.9365152,35.4122979 80.9365152,34.254298 L80.8867152,25.0514985 L80.8867152,17.415299 L85.3711149,17.415299 Z" id="Fill-14" fill="#1D1D1B"></path>
<g id="Group-18" transform="translate(221.999987, 0.553140)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-17"></g>
<path d="M15.5431791,16.862159 L15.5431791,10.0269594 L11.0593793,10.0269594 L11.0593793,0.0471599972 L4.31417974,2.06915988 L4.31417974,10.0269594 L0.486779971,10.0269594 L0.486779971,16.862159 L4.31417974,16.862159 L4.31417974,24.4983585 L4.31417974,31.6737581 L4.31417974,33.701158 C4.31417974,36.9069578 5.21057969,39.5649576 6.90797959,41.3889575 C7.98137952,42.5469575 9.91817941,43.9221574 13.0327792,43.9221574 L14.8345791,43.9221574 L14.8345791,36.5595578 L12.9805792,36.5595578 C12.3595793,36.5595578 11.9305793,36.4329578 11.6959793,36.1821578 C11.3293793,35.7867579 11.1097793,34.8591579 11.1097793,33.701158 L11.0593793,24.4983585 L11.0593793,16.862159 L15.5431791,16.862159 Z" id="Fill-16" fill="#1D1D1B" mask="url(#mask-2)"></path>
</g>
<path d="M151.842771,44.4884973 L158.589171,44.4884973 L158.589171,26.2016984 C158.589171,20.6906988 163.23437,17.079899 166.30877,17.079899 C170.78477,17.079899 173.76857,19.5908988 173.76857,25.7276985 L173.76857,44.4884973 L180.514369,44.4884973 L180.514369,24.1238986 C180.514369,14.3342991 173.44757,10.7948994 168.32057,10.7948994 C164.99957,10.7948994 160.38077,11.9120993 158.718171,14.4548991 L158.589171,14.9870991 L158.589171,10.7324994 L151.842771,10.7324994 L151.842771,44.4884973 Z" id="Fill-19" fill="#1D1D1B"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="219px" height="37px" viewBox="0 0 219 37" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
<title>Group 16</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.0952097189 0.1065896 26.2412863 0.1065896 26.2412863 37 0.0952097189 37"></polygon>
</defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-16">
<path d="M18.2432475,29.3429474 C19.1466862,29.2816053 19.9028632,28.8711974 20.5106098,28.1114316 C21.1183564,27.3531263 21.4222297,26.4312421 21.4222297,25.3466553 C21.4222297,24.2632368 21.1183564,23.3334658 20.5106098,22.5593868 C19.9028632,21.7856 19.1466862,21.3822026 18.2432475,21.3509474 L18.1964977,21.3509474 L18.149748,21.3509474 L18.1029983,21.3509474 L7.95830498,21.3509474 L7.95830498,29.3429474 L18.1029983,29.3429474 L18.149748,29.3429474 L18.1964977,29.3429474 L18.2432475,29.3429474 Z M7.95830498,15.6023158 L15.0642652,15.6023158 C15.5002066,15.6023158 15.9212464,15.5015395 16.3265082,15.2985263 C16.7311856,15.0963895 17.0818086,14.8159684 17.3783773,14.4572632 C17.6743616,14.0994342 17.9081103,13.6788026 18.0796234,13.1953684 C18.2505521,12.7125184 18.3367469,12.1905263 18.3367469,11.6296842 C18.3367469,11.0688421 18.2505521,10.5474342 18.0796234,10.064 C17.9081103,9.58115 17.6743616,9.16051842 17.3783773,8.80210526 C17.0818086,8.44427632 16.7311856,8.16385526 16.3265082,7.96084211 C15.9212464,7.75841316 15.5002066,7.65705263 15.0642652,7.65705263 L14.9707658,7.65705263 L7.95830498,7.65705263 L7.95830498,15.6023158 Z M24.414213,16.724 C25.7538852,17.7215395 26.8218245,18.9670763 27.6165701,20.4632395 C28.4113156,21.9585263 28.8086884,23.5940237 28.8086884,25.3700237 C28.8086884,26.8352237 28.52819,28.2139605 27.9671931,29.5065263 C27.4061962,30.7996763 26.6421302,31.9292474 25.6764559,32.8946553 C24.7099051,33.8612316 23.5800223,34.6242105 22.2870999,35.1850526 C20.993593,35.7458947 19.6141836,36.0263158 18.149748,36.0263158 L0.571846282,36.0263158 L0.571846282,0.973684211 L6.36881387,0.973684211 L10.3425416,0.973684211 L12.8202778,0.973684211 L14.1760202,0.973684211 L14.8071417,0.973684211 L15.0642652,0.973684211 C16.5287008,0.973684211 17.9081103,1.25410526 19.2016171,1.81494737 C20.4945396,2.37578947 21.6247145,3.13964474 22.5909732,4.10505263 C23.5566474,5.07104474 24.3207135,6.20090789 24.8817103,7.49347368 C25.4427072,8.78662368 25.7232056,10.1653605 25.7232056,11.6296842 C25.7232056,13.4684868 25.2863878,15.1662026 24.414213,16.724 L24.414213,16.724 Z" id="Fill-1" fill="#000000"></path>
<polygon id="Fill-3" fill="#000000" points="52.1771094 36.0263158 31.729741 36.0263158 31.729741 0.973684211 39.1909055 0.973684211 39.1909055 29.3429474 52.1771094 29.3429474"></polygon>
<path d="M81.517029,28.2188822 C80.9541684,29.9593828 80.0864249,31.4785755 78.9137985,32.7755703 C77.7411722,34.0734552 76.2709919,35.1013799 74.5047235,35.860828 C72.7378688,36.620276 70.6505939,37 68.2428989,37 C65.8346176,37 63.7473427,36.620276 61.9810743,35.860828 C60.2142196,35.1013799 58.7446256,34.0734552 57.5719993,32.7755703 C56.3993729,31.4785755 55.5316295,29.9593828 54.9687688,28.2188822 C54.4059082,26.4789749 54.1244779,24.6115041 54.1244779,22.617953 L54.1244779,0.973684211 L61.5354763,0.973684211 L61.5354763,22.617953 L61.5823813,22.617953 C61.5823813,23.567263 61.7304254,24.4925436 62.0265136,25.3946848 C62.3226017,26.2965294 62.7588187,27.1034429 63.3348714,27.8157221 C63.9106309,28.5274079 64.6121546,29.1053004 65.4379767,29.5479162 C66.2635057,29.991422 67.2065904,30.2127299 68.2663514,30.2127299 C69.3255262,30.2127299 70.2677314,29.991422 71.0938467,29.5479162 C71.9190825,29.1053004 72.620313,28.5274079 73.1972452,27.8157221 C73.7732979,27.1034429 74.2101012,26.2965294 74.5061893,25.3946848 C74.8022775,24.4925436 74.9503215,23.567263 74.9503215,22.617953 L74.9503215,0.973684211 L82.36132,0.973684211 L82.36132,22.617953 C82.36132,24.6115041 82.0798896,26.4789749 81.517029,28.2188822" id="Fill-5" fill="#000000"></path>
<g id="Group-9" transform="translate(84.308688, 0.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-8"></g>
<path d="M14.5305207,15.2617896 C16.7292767,15.6095896 18.7048709,16.2800296 20.4576021,17.2745896 C22.2097357,18.2691496 23.5645399,19.6659736 24.5205207,21.4656536 C25.2853054,22.9817656 25.6593329,24.5760216 25.6437982,26.2493096 C25.6273673,27.9231896 25.1897073,29.6118696 24.3293246,31.3171256 C23.2777456,33.1165096 21.8357082,34.5136296 20.0035112,35.5081896 C18.1707166,36.5027496 16.0600901,37.0000296 13.6701379,37.0000296 C13.0965494,37.0000296 12.4909953,36.9837496 11.8537743,36.9526696 C11.2159558,36.9207016 10.6109992,36.8102936 10.0374107,36.6214456 C8.53920942,36.3369896 7.22473574,35.8477016 6.09398962,35.1529896 C4.96264602,34.4588696 3.99083173,33.6931176 3.178248,32.8560296 C2.36566426,32.0201256 1.70394626,31.1593576 1.19458771,30.2749096 C0.684631669,29.3913496 0.317774013,28.6173096 0.0952097189,27.9539736 L6.45248245,25.6809896 C6.7392767,26.5337656 7.16946809,27.2755416 7.74305661,27.9069096 C8.22104704,28.4752296 8.86633412,28.9887896 9.67891785,29.4461096 C10.4915016,29.9040216 11.5669801,30.1647976 12.9053533,30.2275496 L13.0965494,30.2275496 L13.2877456,30.2275496 C14.1481284,30.2275496 14.9368126,30.0857656 15.6537982,29.8013096 C16.3707839,29.5174456 16.9204729,29.0909096 17.3028652,28.5222936 C17.6852576,27.9231896 17.8919884,27.2604456 17.9242528,26.5337656 C17.9556209,25.8073816 17.8764537,25.2547496 17.6852576,24.8758696 C17.3984633,24.2131256 16.8487743,23.5897496 16.0361906,23.0054456 C15.2236068,22.4214376 14.2437265,22.0339736 13.0965494,21.8451256 C10.8658278,21.5606696 8.91413316,20.9923496 7.24116666,20.1398696 C5.56820015,19.2873896 4.20592742,18.1033896 3.15434847,16.5878696 C2.2939657,15.4512296 1.72037718,14.1725096 1.43358292,12.7517096 C1.14678867,11.3309096 1.14678867,9.9417816 1.43358292,8.5840296 C1.72037718,7.2579496 2.22973574,6.0819416 2.9631523,5.0557096 C3.69597138,4.0300696 4.58831977,3.1376296 5.63989871,2.3798696 C7.87002282,0.8643496 10.6109992,0.1065896 13.8613341,0.1065896 C15.8688939,0.1065896 17.6852576,0.4854696 19.310425,1.2432296 C20.9355925,2.0009896 22.4173628,3.1376296 23.755736,4.6531496 C24.6161188,5.7587096 25.244975,6.7689576 25.6437982,7.6841896 C26.042024,8.6003096 26.2412863,9.1686296 26.2412863,9.3891496 L19.7884155,11.4729896 C19.5016212,10.7471976 19.1027979,10.0838616 18.5934394,9.4838696 C18.1468171,8.9472216 17.549329,8.4345496 16.8009753,7.9446696 C16.052024,7.4553816 15.0718449,7.1158696 13.8613341,6.9264296 C13.4789418,6.8633816 13.0487504,6.8716696 12.57076,6.9501096 C12.0927695,7.0294376 11.6303138,7.1712216 11.1845877,7.3763496 C10.7379654,7.5820696 10.3316735,7.8579416 9.96571211,8.2051496 C9.5991532,8.5529496 9.33625846,8.9629096 9.1770279,9.4365096 C8.89023364,10.2889896 8.86633412,11.0550376 9.10532934,11.7334696 C9.34432455,12.4127896 9.74255033,12.9885096 10.3003054,13.4621096 C10.857463,13.9357096 11.5111149,14.3228776 12.2600662,14.6224296 C13.0084199,14.9228696 13.765736,15.1359896 14.5305207,15.2617896" id="Fill-7" fill="#000000" mask="url(#mask-2)"></path>
</g>
<polygon id="Fill-10" fill="#000000" points="141.756057 0.973684211 141.756057 36.0263158 134.369598 36.0263158 134.369598 22.2389474 120.905673 22.2389474 120.905673 36.0263158 113.519215 36.0263158 113.519215 0.973684211 120.905673 0.973684211 120.905673 15.836 134.369598 15.836 134.369598 0.973684211"></polygon>
<polygon id="Fill-12" fill="#000000" points="182.029465 36.0263158 182.029465 21.9585263 172.427109 33.7362105 162.824754 21.9585263 162.824754 36.0263158 155.387636 36.0263158 155.387636 0.973684211 172.427109 21.9585263 189.466583 0.973684211 189.466583 36.0263158"></polygon>
<polygon id="Fill-14" fill="#000000" points="218.677109 29.5298947 218.677109 36.0263158 192.387636 36.0263158 192.387636 0.973684211 218.677109 0.973684211 218.677109 7.42336842 199.97389 7.42336842 199.926178 7.42336842 199.926178 15.2751579 213.762743 15.2751579 213.762743 21.5849237 199.926178 21.5849237 199.926178 29.5298947 199.97389 29.5298947"></polygon>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="652px" height="131px" viewBox="0 0 652 131" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Landscape_BeslagOnline_svart</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Landscape_BeslagOnline_svart" transform="translate(0.790000, 0.104309)" fill="#000000" fill-rule="nonzero">
<g id="Group" transform="translate(0.000000, 0.000000)">
<path d="M67.94,25.9656913 C64.73,25.8556913 62.1,28.3156913 61.99,31.4856913 C61.87,34.6556913 64.34,37.3156913 67.51,37.4356913 C81.77,37.9756913 92.92,49.6456913 92.92,64.0056913 C92.92,78.4456913 81.7,90.1156913 67.49,90.5756913 C67.15,90.5756913 63.7,90.5856913 59.11,90.5856913 L47.63,90.5856913 C47.62,90.5856913 47.61,90.5856913 47.61,90.5756913 L47.61,9.97569128 C46.79,9.52569128 46.08,8.68569128 45.65,7.79569128 C44.23,7.14569128 42.78,6.70569128 41.26,6.43569128 C39.53,6.27569128 37.78,6.39569128 36.12,6.80569128 L36.12,90.5856913 C36.12,96.9356913 41.27,102.075691 47.61,102.075691 L59.79,102.075691 C67.5,102.075691 67.68,102.065691 67.75,102.065691 C88.29,101.395691 104.390005,84.6856913 104.390005,64.0156913 C104.4,43.4256913 88.38,26.7256913 67.94,25.9656913 Z" id="Path"></path>
<path d="M65.34,130.835691 C56.1,130.835691 47.16,128.935691 38.78,125.195691 C35.88,123.905691 34.59,120.505691 35.88,117.615691 C37.17,114.715691 40.57,113.425691 43.46,114.715691 C50.36,117.795691 57.71,119.355691 65.33,119.355691 C95,119.355691 119.14,95.1456913 119.14,65.3956913 C119.14,36.4256913 96.55,12.7456913 67.71,11.4856913 C64.54,11.3456913 62.09,8.66569128 62.22,5.49569128 C62.36,2.32569128 65,-0.134308718 68.21,0.00569128221 C103.2,1.53569128 130.620003,30.2556913 130.620003,65.3856913 C130.63,101.485691 101.34,130.835691 65.34,130.835691 Z" id="Path"></path>
<path d="M28.95,11.3756913 C28.95,11.3756913 28.96,11.3656913 28.96,11.3656913 C29,11.4256913 29.04,11.4856913 29.07,11.5456913 C29.58,11.7756913 30.06,12.0856913 30.49,12.5156913 C32.76,14.7956913 34.99,16.8956913 36.66,19.5756913 C39.09,17.8556913 41.66,16.3256913 44.38,15.0156913 C47.24,13.6456913 48.44,10.2056913 47.06,7.35569128 C45.68,4.49569128 42.25,3.29569128 39.4,4.67569128 C35.63,6.48569128 32.09,8.65569128 28.78,11.1256913 C28.84,11.2156913 28.89,11.2956913 28.95,11.3756913 Z" id="Path"></path>
<path d="M94.76,117.615691 C93.47,114.715691 90.07,113.425691 87.18,114.715691 C80.28,117.795691 72.93,119.355691 65.31,119.355691 C35.64,119.355691 11.5,95.1456913 11.5,65.3956913 C11.5,43.9956913 23.83,25.4956913 41.89,16.7756913 C41.83,16.4756913 41.79,16.1656913 41.78,15.8256913 C41.77,15.1656913 41.74,14.4956913 41.71,13.8356913 C41.64,13.1356913 41.56,12.4356913 41.46,11.7056913 C41.13,9.41569128 40.45,7.25569128 40.06,5.00569128 C16.42,14.8856913 0,38.2056913 0,65.3956913 C0,101.485691 29.29,130.835691 65.29,130.835691 C74.53,130.835691 83.47,128.935691 91.85,125.195691 C94.76,123.905691 96.05,120.515691 94.76,117.615691 Z" id="Path"></path>
</g>
<g id="Group" transform="translate(157.190000, 35.265691)">
<path d="M2.84217094e-14,63.9 C0.18,60.93 0.36,56.52 0.36,52.65 L0.36,7.10542736e-15 L8.19,7.10542736e-15 L8.19,27.36 L8.37,27.36 C11.16,22.5 16.2,19.35 23.22,19.35 C34.02,19.35 41.67,28.35 41.58,41.58 C41.58,57.15 31.77,64.89 22.05,64.89 C15.75,64.89 10.71,62.46 7.47,56.7 L7.2,56.7 L6.84,63.9 L2.84217094e-14,63.9 Z M8.19,46.44 C8.19,47.43 8.37,48.42 8.55,49.32 C10.08,54.81 14.67,58.59 20.43,58.59 C28.71,58.59 33.66,51.84 33.66,41.85 C33.66,33.12 29.16,25.65 20.7,25.65 C15.3,25.65 10.26,29.34 8.64,35.37 C8.46,36.27 8.19,37.35 8.19,38.61 L8.19,46.44 Z" id="Shape"></path>
<path d="M55.97,43.56 C56.15,54.27 62.99,58.68 70.91,58.68 C76.58,58.68 80,57.69 82.97,56.43 L84.32,62.1 C81.53,63.36 76.76,64.8 69.83,64.8 C56.42,64.8 48.41,55.98 48.41,42.84 C48.41,29.7 56.15,19.35 68.84,19.35 C83.06,19.35 86.84,31.86 86.84,39.87 C86.84,41.49 86.66,42.75 86.57,43.56 L55.97,43.56 Z M79.19,37.89 C79.28,32.85 77.12,25.02 68.21,25.02 C60.2,25.02 56.69,32.4 56.06,37.89 L79.19,37.89 Z" id="Shape"></path>
<path d="M95.57,55.8 C97.91,57.33 102.05,58.95 106.01,58.95 C111.77,58.95 114.47,56.07 114.47,52.47 C114.47,48.69 112.22,46.62 106.37,44.46 C98.54,41.67 94.85,37.35 94.85,32.13 C94.85,25.11 100.52,19.35 109.88,19.35 C114.29,19.35 118.16,20.61 120.59,22.05 L118.61,27.81 C116.9,26.73 113.75,25.29 109.7,25.29 C105.02,25.29 102.41,27.99 102.41,31.23 C102.41,34.83 105.02,36.45 110.69,38.61 C118.25,41.49 122.12,45.27 122.12,51.75 C122.12,59.4 116.18,64.8 105.83,64.8 C101.06,64.8 96.65,63.63 93.59,61.83 L95.57,55.8 Z" id="Path"></path>
<polygon id="Path" points="132.29 0 140.21 0 140.21 63.9 132.29 63.9"></polygon>
<path d="M177.65,63.9 L177.02,58.41 L176.75,58.41 C174.32,61.83 169.64,64.89 163.43,64.89 C154.61,64.89 150.11,58.68 150.11,52.38 C150.11,41.85 159.47,36.09 176.3,36.18 L176.3,35.28 C176.3,31.68 175.31,25.2 166.4,25.2 C162.35,25.2 158.12,26.46 155.06,28.44 L153.26,23.22 C156.86,20.88 162.08,19.35 167.57,19.35 C180.89,19.35 184.13,28.44 184.13,37.17 L184.13,53.46 C184.13,57.24 184.31,60.93 184.85,63.9 L177.65,63.9 L177.65,63.9 Z M176.48,41.67 C167.84,41.49 158.03,43.02 158.03,51.48 C158.03,56.61 161.45,59.04 165.5,59.04 C171.17,59.04 174.77,55.44 176.03,51.75 C176.3,50.94 176.48,50.04 176.48,49.23 L176.48,41.67 Z" id="Shape"></path>
<path d="M234.44,20.34 C234.26,23.49 234.08,27 234.08,32.31 L234.08,57.6 C234.08,67.59 232.1,73.71 227.87,77.49 C223.64,81.45 217.52,82.71 212.03,82.71 C206.81,82.71 201.05,81.45 197.54,79.11 L199.52,73.08 C202.4,74.88 206.9,76.5 212.3,76.5 C220.4,76.5 226.34,72.27 226.34,61.29 L226.34,56.43 L226.16,56.43 C223.73,60.48 219.05,63.72 212.3,63.72 C201.5,63.72 193.76,54.54 193.76,42.48 C193.76,27.72 203.39,19.35 213.38,19.35 C220.94,19.35 225.08,23.31 226.97,26.91 L227.15,26.91 L227.51,20.34 L234.44,20.34 L234.44,20.34 Z M226.25,37.53 C226.25,36.18 226.16,35.01 225.8,33.93 C224.36,29.34 220.49,25.56 214.73,25.56 C207.17,25.56 201.77,31.95 201.77,42.03 C201.77,50.58 206.09,57.69 214.64,57.69 C219.5,57.69 223.91,54.63 225.62,49.59 C226.07,48.24 226.25,46.71 226.25,45.36 L226.25,37.53 L226.25,37.53 Z" id="Shape"></path>
<path d="M305.72,41.76 C305.72,57.87 294.56,64.89 284.03,64.89 C272.24,64.89 263.15,56.25 263.15,42.48 C263.15,27.9 272.69,19.35 284.75,19.35 C297.26,19.35 305.72,28.44 305.72,41.76 Z M271.16,42.21 C271.16,51.75 276.65,58.95 284.39,58.95 C291.95,58.95 297.62,51.84 297.62,42.03 C297.62,34.65 293.93,25.29 284.57,25.29 C275.21,25.29 271.16,33.93 271.16,42.21 Z" id="Shape"></path>
<path d="M315.71,32.13 C315.71,27.63 315.62,23.94 315.35,20.34 L322.37,20.34 L322.82,27.54 L323,27.54 C325.16,23.4 330.2,19.35 337.4,19.35 C343.43,19.35 352.79,22.95 352.79,37.89 L352.79,63.9 L344.87,63.9 L344.87,38.79 C344.87,31.77 342.26,25.92 334.79,25.92 C329.57,25.92 325.52,29.61 324.17,34.02 C323.81,35.01 323.63,36.36 323.63,37.71 L323.63,63.9 L315.71,63.9 L315.71,32.13 Z" id="Path"></path>
<polygon id="Path" points="365.66 0 373.58 0 373.58 63.9 365.66 63.9"></polygon>
<path d="M395.72,8.1 C395.81,10.8 393.83,12.96 390.68,12.96 C387.89,12.96 385.91,10.8 385.91,8.1 C385.91,5.31 387.98,3.15 390.86,3.15 C393.83,3.15 395.72,5.31 395.72,8.1 Z M386.9,63.9 L386.9,20.34 L394.82,20.34 L394.82,63.9 L386.9,63.9 Z" id="Shape"></path>
<path d="M407.96,32.13 C407.96,27.63 407.87,23.94 407.6,20.34 L414.62,20.34 L415.07,27.54 L415.25,27.54 C417.41,23.4 422.45,19.35 429.65,19.35 C435.68,19.35 445.04,22.95 445.04,37.89 L445.04,63.9 L437.12,63.9 L437.12,38.79 C437.12,31.77 434.51,25.92 427.04,25.92 C421.82,25.92 417.77,29.61 416.42,34.02 C416.06,35.01 415.88,36.36 415.88,37.71 L415.88,63.9 L407.96,63.9 L407.96,32.13 Z" id="Path"></path>
<path d="M462.32,43.56 C462.5,54.27 469.34,58.68 477.26,58.68 C482.93,58.68 486.35,57.69 489.32,56.43 L490.67,62.1 C487.88,63.36 483.11,64.8 476.18,64.8 C462.77,64.8 454.76,55.98 454.76,42.84 C454.76,29.7 462.5,19.35 475.19,19.35 C489.41,19.35 493.19,31.86 493.19,39.87 C493.19,41.49 493.01,42.75 492.92,43.56 L462.32,43.56 Z M485.54,37.89 C485.63,32.85 483.47,25.02 474.56,25.02 C466.55,25.02 463.04,32.4 462.41,37.89 L485.54,37.89 Z" id="Shape"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 108 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1138px" height="802px" viewBox="0 0 1138 802" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Loggo_2000_1000px</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Loggo_2000_1000px" transform="translate(0.740000, 0.080000)">
<path d="M341.12,682.28 C152.71,682.28 0,529.54 0,341.14 C0,152.74 152.73,0 341.13,0 C529.53,0 682.26,152.74 682.26,341.14 C682.26,529.54 529.53,682.28 341.12,682.28 Z" id="Path" fill="#000000"></path>
<polygon id="Path" fill="#000000" fill-rule="nonzero" points="24.77 723.33 66.64 723.33 66.64 737.92 40.6 737.92 40.6 753.83 65.19 753.83 65.19 768.42 40.6 768.42 40.6 785.87 67.57 785.87 67.57 800.46 24.77 800.46 24.77 723.33"></polygon>
<path d="M68.6,742.92 L77.6,742.92 L77.6,729.92 L92.68,723.92 L92.68,742.92 L103.4,742.92 L103.4,756.84 L92.68,756.84 L92.68,778.06 C92.68,785.06 93.95,788.56 98.8,788.56 C100.383189,788.466186 101.951963,788.204724 103.48,787.78 L103.99,800.71 C100.824635,801.356214 97.6093331,801.727596 94.38,801.82 C80.68,801.82 77.38,793.98 77.38,780.27 L77.38,756.81 L68.62,756.81 L68.62,742.92 L68.6,742.92 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M106.38,742.92 L115.38,742.92 L115.38,729.92 L130.46,723.92 L130.46,742.92 L141.18,742.92 L141.18,756.84 L130.46,756.84 L130.46,778.06 C130.46,785.06 131.73,788.56 136.58,788.56 C138.163189,788.466186 139.731963,788.204724 141.26,787.78 L141.77,800.71 C138.604635,801.356214 135.389333,801.727596 132.16,801.82 C118.46,801.82 115.16,793.98 115.16,780.27 L115.16,756.81 L106.4,756.81 L106.4,742.92 L106.38,742.92 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M173.32,783.92 C177.881708,786.516474 183.013011,787.948705 188.26,788.09 C191.53,788.09 194.71,787.4 194.71,783.28 C194.71,773.19 172.12,780.28 172.12,758.75 C172.12,745 182.53,739.39 191.71,739.39 C197.288387,739.221671 202.82504,740.401726 207.85,742.83 L206.62,757.15 C203.014021,754.568118 198.69495,753.17036 194.26,753.15 C190.82,753.15 186.94,753.95 186.94,757.28 C186.94,766.56 210.59,759.22 210.59,781.91 C210.59,797.84 199.59,801.85 189.15,801.85 C182,801.85 177.15,800.93 172.47,798.98 L173.35,783.98 L173.32,783.92 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M218.32,740.76 L232.8,740.76 L232.8,751.76 L232.97,751.76 C236.15,743.17 242.5,739.39 249.74,739.39 C256.27,739.39 261.65,743.05 264.12,750.85 C267.83,742.85 273.92,739.39 280.44,739.39 C293.68,739.39 296.68,749.13 296.68,765.28 L296.68,800.46 L280.8,800.46 L280.8,768.38 C280.8,761.62 278.95,756.58 274.45,756.58 C268.8,756.58 265.45,762.42 265.45,775.25 L265.45,800.46 L249.56,800.46 L249.56,768.38 C249.56,761.62 247.71,756.58 243.21,756.58 C237.56,756.58 234.21,762.42 234.21,775.25 L234.21,800.46 L218.32,800.46 L218.32,740.76 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M325.72,788.09 C331.72,788.09 335.51,780.98 335.51,773.99 C333.51,773.88 331.19,773.65 328.81,773.65 C323.43,773.65 319.19,775.83 319.19,781.56 C319.083792,783.322282 319.737594,785.045641 320.985976,786.294024 C322.234359,787.542406 323.957718,788.196208 325.72,788.09 L325.72,788.09 Z M336.66,800.46 C336.57,797.25 336.31,794.16 336.31,791.07 L336.13,791.07 C332.52,798.51 328.13,801.84 321.57,801.84 C312.48,801.84 304.37,795.99 304.37,783.04 C304.37,764.83 319.63,762.65 328.1,762.65 C330.591026,762.659578 333.074331,762.927682 335.51,763.45 C335.43,755.31 330.75,753.14 325.01,753.14 C319.777447,753.025335 314.646088,754.592082 310.37,757.61 L310.1,743.61 C315.766964,740.677641 322.081085,739.219478 328.46,739.37 C340.19,739.37 350.34,745.9 350.34,764.12 L350.34,786.35 C350.284282,791.061971 350.578424,795.771579 351.22,800.44 L336.66,800.46 Z" id="Shape" fill="#000000" fill-rule="nonzero"></path>
<path d="M393.26,757.27 C391.524059,756.697125 389.69427,756.462885 387.87,756.58 C380.46,756.58 376.31,763.58 376.31,775.25 L376.31,800.46 L360.4,800.46 L360.4,740.76 L374.87,740.76 L374.87,751.76 L375.05,751.76 C377.78,744.2 381.76,739.39 388.64,739.39 C390.452197,739.435591 392.25495,739.666799 394.02,740.08 L393.26,757.27 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M398.17,740.76 L407.52,740.76 L407.52,727.36 L423.14,721.05 L423.14,740.76 L434.26,740.76 L434.26,755.2 L423.14,755.2 L423.14,777.2 C423.14,784.42 424.47,788.09 429.5,788.09 C431.140527,787.990199 432.766075,787.718716 434.35,787.28 L434.88,800.69 C431.585566,801.357838 428.240031,801.742575 424.88,801.84 C410.67,801.84 407.23,793.7 407.23,779.49 L407.23,755.2 L398.14,755.2 L398.14,740.76 L398.17,740.76 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M460.56,788.09 C466.56,788.09 470.35,780.98 470.35,773.99 C468.35,773.88 466.03,773.65 463.65,773.65 C458.26,773.65 454.03,775.83 454.03,781.56 C453.923792,783.322282 454.577594,785.045641 455.825976,786.294024 C457.074359,787.542406 458.797718,788.196208 460.56,788.09 L460.56,788.09 Z M471.5,800.46 C471.41,797.25 471.15,794.16 471.15,791.07 L470.97,791.07 C467.35,798.51 462.97,801.84 456.41,801.84 C447.32,801.84 439.2,795.99 439.2,783.04 C439.2,764.83 454.47,762.65 462.94,762.65 C465.431026,762.659578 467.914331,762.927682 470.35,763.45 C470.26,755.31 465.59,753.14 459.85,753.14 C454.634239,753.034663 449.52162,754.601038 445.26,757.61 L444.99,743.61 C450.631881,740.699278 456.913104,739.248443 463.26,739.39 C474.99,739.39 485.14,745.92 485.14,764.14 L485.14,786.37 C485.07928,791.082096 485.373445,795.792077 486.02,800.46 L471.5,800.46 Z" id="Shape" fill="#000000" fill-rule="nonzero"></path>
<path d="M528.07,757.27 C526.334059,756.697125 524.50427,756.462885 522.68,756.58 C515.27,756.58 511.12,763.58 511.12,775.25 L511.12,800.46 L495.26,800.46 L495.26,740.76 L509.73,740.76 L509.73,751.76 L509.91,751.76 C512.64,744.2 516.61,739.39 523.5,739.39 C525.312197,739.435591 527.11495,739.666799 528.88,740.08 L528.09,757.27 L528.07,757.27 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M564.16,764.92 C564.16,758.04 561.69,752.43 555.34,752.43 C549.6,752.43 546.87,758.04 546.51,764.92 L564.16,764.92 Z M546.69,776.61 C547.57,784.86 552.42,788.07 560.19,788.07 C565.217605,788.015873 570.106282,786.413086 574.19,783.48 L574.19,798.03 C568.955059,800.616493 563.178268,801.915842 557.34,801.82 C542.16,801.82 530.6,790.24 530.6,770.53 C530.6,750.82 540.92,739.37 555.22,739.37 C572.22,739.37 578.42,755.07 578.42,772.82 L578.42,776.61 L546.69,776.61 Z" id="Shape" fill="#000000" fill-rule="nonzero"></path>
<path d="M611.6,717.59 L626.92,717.59 L626.92,751.4 L627.09,751.4 C630.41,745.4 635.25,741.57 641.89,741.57 C653.97,741.57 658.82,752.57 658.82,764.57 L658.82,800.48 L643.5,800.48 L643.5,772.62 C643.5,761.78 640.62,758.14 636.5,758.14 C630.2,758.14 626.97,763.77 626.97,776.14 L626.97,800.45 L611.65,800.45 L611.65,717.59 L611.6,717.59 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M698.14,766.21 C698.14,759.58 695.75,754.21 689.63,754.21 C684.1,754.21 681.46,759.63 681.12,766.21 L698.14,766.21 Z M681.26,777.48 C682.11,785.48 686.79,788.53 694.26,788.53 C699.116876,788.480986 703.840882,786.937741 707.79,784.11 L707.79,798.11 C702.740052,800.599868 697.169665,801.851063 691.54,801.76 C676.9,801.76 665.75,790.6 665.75,771.59 C665.75,752.58 675.75,741.54 689.49,741.54 C705.91,741.54 711.87,756.67 711.87,773.8 L711.87,777.45 L681.26,777.48 Z" id="Shape" fill="#000000" fill-rule="nonzero"></path>
<path d="M719.41,742.92 L733.41,742.92 L733.41,753.53 L733.58,753.53 C736.64,745.24 742.77,741.6 749.74,741.6 C756.04,741.6 761.23,745.13 763.61,752.6 C767.18,744.87 773.06,741.6 779.35,741.6 C792.12,741.6 795.01,750.99 795.01,766.6 L795.01,800.52 L779.69,800.52 L779.69,769.52 C779.69,763 777.91,758.14 773.57,758.14 C768.12,758.14 764.89,763.77 764.89,776.14 L764.89,800.45 L749.57,800.45 L749.57,769.52 C749.57,763 747.79,758.14 743.45,758.14 C738,758.14 734.77,763.77 734.77,776.14 L734.77,800.45 L719.45,800.45 L719.45,742.92 L719.41,742.92 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M834.97,756.81 L825.97,756.81 L825.97,742.92 L835.26,742.92 L835.26,739.38 C835.26,722.25 841.46,716.29 853.72,716.29 C856.362325,716.337893 858.98872,716.710693 861.54,717.4 L860.61,731.1 C859.081514,730.440134 857.423186,730.135823 855.76,730.21 C851.85,730.21 850.31,733.75 850.31,739.38 L850.31,742.92 L861.2,742.92 L861.2,756.84 L850.26,756.84 L850.26,800.49 L834.95,800.49 L834.95,756.81 L834.97,756.81 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M894.26,719.92 L906.52,719.92 L906.52,735.82 L894.26,735.82 L894.26,719.92 Z M900.56,771.74 C900.56,763.12 897.67,755.5 890.56,755.5 C883.45,755.5 880.56,763.12 880.56,771.74 C880.56,780.36 883.46,787.88 890.56,787.88 C897.66,787.88 900.56,780.25 900.56,771.74 Z M874.87,719.92 L887.13,719.92 L887.13,735.82 L874.87,735.82 L874.87,719.92 Z M864.87,771.74 C864.87,752.62 876.01,741.58 890.65,741.58 C905.29,741.58 916.43,752.58 916.43,771.74 C916.43,790.9 905.28,801.8 890.65,801.8 C876.02,801.8 864.87,790.8 864.87,771.74 Z" id="Shape" fill="#000000" fill-rule="nonzero"></path>
<path d="M954.95,758.8 C953.277532,758.252758 951.516204,758.028774 949.76,758.14 C942.61,758.14 938.61,764.88 938.61,776.14 L938.61,800.45 L923.26,800.45 L923.26,742.92 L937.26,742.92 L937.26,753.53 L937.43,753.53 C940.06,746.23 943.89,741.6 950.53,741.6 C952.278117,741.640627 954.017355,741.861801 955.72,742.26 L954.96,758.83 L954.95,758.8 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M1003.79,788.53 C1009.58,788.53 1013.24,781.67 1013.24,774.94 C1011.24,774.83 1009.06,774.6 1006.77,774.6 C1001.58,774.6 997.49,776.71 997.49,782.23 C997.402846,783.926083 998.038559,785.579652 999.239454,786.780546 C1000.44035,787.981441 1002.09392,788.617154 1003.79,788.53 L1003.79,788.53 Z M1014.34,800.46 C1014.26,797.37 1014,794.38 1014,791.4 L1013.83,791.4 C1010.34,798.58 1006.09,801.79 999.83,801.79 C991.07,801.79 983.24,796.15 983.24,783.66 C983.24,766.09 997.96,764 1006.13,764 C1008.53345,764.010488 1010.92943,764.268517 1013.28,764.77 C1013.19,756.93 1008.68,754.77 1003.15,754.77 C998.100616,754.661051 993.148965,756.171427 989.02,759.08 L988.77,745.6 C994.234772,742.777953 1000.32129,741.374959 1006.47,741.52 C1017.79,741.52 1027.57,747.81 1027.57,765.38 L1027.57,786.92 C1027.51425,791.464853 1027.79838,796.007514 1028.42,800.51 L1014.34,800.46 Z" id="Shape" fill="#000000" fill-rule="nonzero"></path>
<polygon id="Path" fill="#000000" fill-rule="nonzero" points="1038.6 717.59 1053.91 717.59 1053.91 800.46 1038.6 800.46 1038.6 717.59"></polygon>
<polygon id="Path" fill="#000000" fill-rule="nonzero" points="1066.5 717.59 1081.82 717.59 1081.82 800.46 1066.5 800.46 1066.5 717.59"></polygon>
<path d="M1111.09,788.53 C1116.88,788.53 1120.54,781.67 1120.54,774.94 C1118.54,774.83 1116.37,774.6 1114.07,774.6 C1108.88,774.6 1104.79,776.71 1104.79,782.23 C1104.70285,783.926083 1105.33856,785.579652 1106.53945,786.780546 C1107.74035,787.981441 1109.39392,788.617154 1111.09,788.53 L1111.09,788.53 Z M1121.65,800.46 C1121.56,797.37 1121.31,794.38 1121.31,791.4 L1121.13,791.4 C1117.64,798.58 1113.39,801.79 1107.13,801.79 C1098.36,801.79 1090.53,796.15 1090.53,783.66 C1090.53,766.09 1105.25,764 1113.42,764 C1115.82345,764.010488 1118.21943,764.268517 1120.57,764.77 C1120.48,756.93 1115.97,754.77 1110.44,754.77 C1105.39372,754.661083 1100.44526,756.171556 1096.32,759.08 L1096.06,745.6 C1101.52477,742.777953 1107.61129,741.374959 1113.76,741.52 C1125.08,741.52 1134.86,747.81 1134.86,765.38 L1134.86,786.92 C1134.80264,791.465228 1135.09013,796.00826 1135.72,800.51 L1121.65,800.46 Z" id="Shape" fill="#000000" fill-rule="nonzero"></path>
<path d="M716.26,512.3 C706.504463,512.480977 697.045161,508.945358 689.8,502.41 C682.373333,495.823333 678.66,486.59 678.66,474.71 C678.526516,464.957619 682.367848,455.570906 689.3,448.71 C696.127433,441.566727 705.640946,437.619091 715.52,437.83 C725.477527,437.652837 735.077943,441.537774 742.11,448.59 C749.272093,455.360006 753.26304,464.825806 753.11,474.68 C753.11,486.393333 749.443333,495.586667 742.11,502.26 C735.105436,508.80234 725.843865,512.385153 716.26,512.26 L716.26,512.3 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M824.12,357.84 L824.12,363.3 C832.38,352.833333 841.416667,345.146667 851.23,340.24 C861.043333,335.333333 872.32,332.893333 885.06,332.92 C897.453333,332.92 908.526667,335.51 918.28,340.69 C927.705307,345.536677 935.359267,353.236135 940.15,362.69 C943.244121,368.214447 945.279022,374.268278 946.15,380.54 C947.173349,388.648418 947.63445,396.817927 947.53,404.99 L947.53,488.99 C947.53,498.03 945.38,504.863333 941.08,509.49 C936.78,514.116667 931.183333,516.43 924.29,516.43 C917.29,516.43 911.623333,514.06 907.29,509.32 C902.956667,504.58 900.766667,497.78 900.72,488.92 L900.72,413.71 C900.72,398.83 898.57,387.453333 894.27,379.58 C889.97,371.706667 881.39,367.766667 868.53,367.76 C860.335957,367.704696 852.330688,370.219238 845.64,374.95 C838.685874,379.825745 833.397353,386.720022 830.49,394.7 C828.19,401.42 827.04,413.98 827.04,432.38 L827.04,488.92 C827.04,498.066667 824.833333,504.926667 820.42,509.5 C816.006667,514.073333 810.286667,516.353333 803.26,516.34 C796.921654,516.525052 790.819745,513.927174 786.56,509.23 C782.2,504.503333 780.02,497.726667 780.02,488.9 L780.02,358.51 C780.02,349.91 781.97,343.49 785.87,339.25 C789.77,335.01 795.103333,332.89 801.87,332.89 C805.781049,332.836316 809.638314,333.804941 813.06,335.7 C816.48474,337.67855 819.263298,340.606455 821.06,344.13 C823.174835,348.382841 824.205412,353.092576 824.06,357.84 L824.12,357.84 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M1092.45,490.92 L1092.45,485.14 C1087.2525,491.561889 1081.29953,497.333556 1074.72,502.33 C1068.59665,506.919267 1061.72526,510.414173 1054.41,512.66 C1046.24348,515.024725 1037.7711,516.163811 1029.27,516.04 C1017.93667,516.04 1007.75333,513.783333 998.72,509.27 C990.127989,505.135694 982.876859,498.660975 977.8,490.59 C971.953333,481.01 969.026667,467.24 969.02,449.28 L969.02,359.83 C969.02,350.796667 971.143333,344.046667 975.39,339.58 C979.636667,335.113333 985.26,332.893333 992.26,332.92 C999.38,332.92 1005.12,335.18 1009.48,339.7 C1013.84,344.22 1016.02,350.94 1016.02,359.86 L1016.02,432.08 C1016.02,442.553333 1016.93667,451.34 1018.77,458.44 C1020.60333,465.54 1023.90333,471.103333 1028.67,475.13 C1033.43,479.13 1039.88667,481.13 1048.04,481.13 C1056.00308,481.120876 1063.78705,478.766209 1070.42,474.36 C1077.17546,470.124618 1082.50783,463.963307 1085.73,456.67 C1088.39667,450.29 1089.73,436.29 1089.73,414.67 L1089.73,359.83 C1089.73,350.91 1091.91,344.19 1096.27,339.67 C1100.63,335.15 1106.29667,332.89 1113.27,332.89 C1120.27,332.89 1125.89333,335.12 1130.14,339.58 C1134.38667,344.04 1136.51,350.79 1136.51,359.83 L1136.51,490.55 C1136.51,499.15 1134.47333,505.596667 1130.4,509.89 C1126.32667,514.183333 1121.07667,516.333333 1114.65,516.34 C1108.62306,516.504142 1102.81783,514.062519 1098.72,509.64 C1094.52667,505.18 1092.43333,498.926667 1092.44,490.88 L1092.45,490.92 Z" id="Path" fill="#000000" fill-rule="nonzero"></path>
<path d="M120.6,467.53 L120.08,245.67 C120.08,245.67 118.03,204.2 162.39,202.33 C199.02,200.78 205.73,226.06 206.76,231.22 C207.79,236.38 219.65,200.22 283.64,200.22 C351.74,200.22 367.74,237.75 367.74,237.75 C367.74,237.75 397.66,199.25 459.06,200.22 C517.22,201.14 563.3,231.22 564.32,279.68 L564.83,472.13 C564.83,472.13 564.32,510.83 522.01,510.83 C477.12,510.83 477.12,471.1 477.12,471.1 L477.12,308.1 C477.12,308.1 476.12,274.04 432.23,274.05 C388.16,274.05 387.35,305 387.35,305 L386.83,470.11 C386.83,470.11 389.41,511.38 342.97,511.9 C296.53,512.42 298.09,473.28 298.09,473.28 L298.6,308.62 C298.6,308.62 298.09,274.07 253.71,274.56 C208.31,275.07 208.83,308.62 208.83,308.62 L208.31,472.69 C208.31,472.69 208.06,509.92 165.62,510.92 C119.62,511.92 120.62,469.14 120.62,467.58" id="Path" fill="#FFFFFF"></path>
<path d="M874.62,359.55 L847.41,362.09 L823.41,383.38 C823.41,383.38 795.84,384.38 807.48,365.38 C828.27,331.46 882.56,333.56 882.56,333.56" id="Path" fill="#000000"></path>
<path d="M1039.26,489.53 L1066.48,486.99 L1090.48,465.71 C1090.48,465.71 1118.05,464.71 1106.41,483.71 C1085.63,517.62 1031.34,515.53 1031.34,515.53" id="Path" fill="#000000"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="472px" height="88px" viewBox="0 0 472 88" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Pharma_Logo_Guld_Sort</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Pharma_Logo_Guld_Sort" transform="translate(0.000000, 0.000000)" fill="#000000" fill-rule="nonzero">
<path d="M73.59,39.27 C71.8,39.27 70.27,41.52 69.67,44.69 L67.56,44.69 L70.24,29.27 L72.67,29.27 C75.27,29.27 77.38,26.81 77.38,23.77 C77.38,20.73 75.27,18.03 72.67,18.03 L72.67,18.03 L67.64,18.03 L69.59,15.97 C69.98,16.03 70.38,16.06 70.78,16.06 C75.21,16.06 78.81,12.46 78.81,8.03 C78.81,3.6 75.22,5.68434189e-14 70.78,5.68434189e-14 C66.34,5.68434189e-14 62.75,3.6 62.75,8.03 C62.75,9.34 63.07,10.57 63.62,11.67 L57.57,18.03 L5.11,18.03 L5.11,18.03 C2.51,18.03 0.4,20.73 0.4,23.77 C0.4,26.81 2.51,29.27 5.11,29.27 L7.54,29.27 L10.22,44.69 L8.11,44.69 C7.51,41.52 5.98,39.27 4.19,39.27 C1.88,39.27 7.10542736e-14,43.02 7.10542736e-14,47.65 C7.10542736e-14,52.28 1.88,56.03 4.19,56.03 C5.88,56.03 7.33,54.04 7.99,51.17 L11.34,51.17 L15.8,76.86 C13.57,77.3 11.88,79.55 11.88,82.27 C11.88,85.09 13.72,87.73 16.04,87.73 L61.58,87.75 C63.95,87.74 65.9,85.16 65.9,82.27 C65.9,79.55 64.2,77.3 61.98,76.86 L66.44,51.17 L69.79,51.17 C70.45,54.04 71.91,56.03 73.59,56.03 C75.9,56.03 77.78,52.28 77.78,47.65 C77.78,43.02 75.9,39.27 73.59,39.27 Z M52.07,76.34 L25.71,76.34 L17.54,29.26 L60.24,29.26 L52.07,76.34 Z" id="Shape"></path>
<g id="Group" transform="translate(87.870000, 41.380000)">
<path d="M14.09,10.21 C14.09,6.72 15.16,5.64 18.74,5.64 C23.69,5.64 27.33,8.59 27.33,13.75 C27.33,20.84 19.82,23.43 14.09,24.21 L14.09,10.21 Z M14.09,28.84 C33.73,28.3 38.99,19.89 38.99,13.4 C38.99,8.17 35.7,1.48 21.42,1.48 L2.94,1.48 C1.62,1.48 -2.84217094e-14,1.9 -2.84217094e-14,3.5 C-2.84217094e-14,4.57 0.36,5.11 1.8,5.52 C3.18,5.88 3.18,6.72 3.18,9.07 L3.18,37.8 C3.18,39.9 3.06,40.86 1.5,41.53 C0.66,41.95 -2.84217094e-14,42.31 -2.84217094e-14,43.39 C-2.84217094e-14,45.01 1.62,45.43 2.94,45.43 L15.23,45.43 C16.54,45.43 18.15,45.01 18.15,43.39 C18.15,42.31 17.49,41.95 15.82,41.29 C14.09,40.63 14.09,39.67 14.09,37.8 L14.09,28.84 L14.09,28.84 Z" id="Shape"></path>
<path d="M52.29,18.95 C54.81,17.14 57.94,16.06 61.07,16.06 C69.59,16.06 72.29,21.54 72.29,28.26 L72.29,37.32 C72.29,40.26 72.29,40.98 73.19,41.64 C74.15,42.06 74.69,42.48 74.69,43.5 C74.69,45.36 73.19,45.42 71.87,45.42 L62.93,45.42 C61.61,45.42 60.11,45.36 60.11,43.5 C60.11,42.48 60.65,42.06 61.61,41.64 C62.51,40.98 62.51,40.26 62.51,37.32 L62.51,27.84 C62.51,24.42 61.97,20.94 57.64,20.94 C56.14,20.94 54.63,21.54 53.61,22.68 C52.47,23.94 52.29,25.2 52.29,26.88 L52.29,37.32 C52.29,40.26 52.29,40.98 53.19,41.64 C54.15,42.06 54.69,42.48 54.69,43.5 C54.69,45.36 53.19,45.42 51.87,45.42 L42.93,45.42 C41.61,45.42 40.11,45.36 40.11,43.5 C40.11,42.48 40.65,42.06 41.61,41.64 C42.51,40.98 42.51,40.26 42.51,37.32 L42.51,12.35 C42.51,7.02 42.27,6.66 40.59,5.7 C39.87,5.28 39.09,4.98 39.09,4.02 C39.09,2.94 39.87,2.46 41.97,1.86 C44.55,1.14 47.97,0 49.83,0 C52.23,0 52.29,3.41 52.29,5.87 L52.29,18.95 L52.29,18.95 Z" id="Path"></path>
<path d="M96.26,30.22 C96.26,36.48 96.26,36.54 94.99,38.58 C93.91,40.2 92.34,41.47 90.35,41.47 C87.88,41.47 86.56,39.42 86.56,37.14 C86.56,32.33 90.9,30.22 95.17,30.22 L96.26,30.22 Z M105.94,27.78 C105.94,20.71 101.52,16.07 91.07,16.07 C88.12,16.07 78.63,16.85 78.63,21.08 C78.63,23.2 80.61,23.99 82.35,23.99 C86.13,23.99 86.67,20.11 90.35,20.11 C94.2,20.11 95.95,22.84 95.95,26.47 L93.9,26.47 C87.28,26.47 76.47,28.55 76.47,37.04 C76.47,43.25 81.63,46.36 87.28,46.36 C90.95,46.36 94.57,45.11 96.61,41.76 C96.61,44.4 96.61,45.42 99.6,45.42 L105.82,45.42 C107.26,45.42 109.06,45.42 109.06,43.5 C109.06,42.48 108.4,42.06 107.08,41.4 C106,40.86 105.94,40.02 105.94,37.21 L105.94,27.78 Z" id="Shape"></path>
<path d="M114.39,26.28 C114.39,24.84 113.79,23.34 111.87,22.44 C110.97,22.02 110.25,21.54 110.25,20.47 C110.25,18.98 112.05,18.26 113.19,17.78 C114.45,17.3 118.17,16.05 119.49,16.05 C121.35,16.05 122.55,17.9 122.91,22.26 C124.35,19.33 127.29,16.05 130.77,16.05 C133.35,16.05 135.27,17.9 135.27,20.47 C135.27,22.32 134.19,24.59 132.09,24.59 C130.53,24.59 129.33,23.81 128.07,23.85 C126.81,23.85 124.17,25.29 124.17,32.56 L124.17,37.3 C124.17,40.48 124.17,40.84 125.79,41.68 C126.57,42.1 127.23,42.52 127.23,43.48 C127.23,45.4 125.43,45.4 123.99,45.4 L114.57,45.4 C113.13,45.4 111.33,45.4 111.33,43.48 C111.33,42.52 111.99,42.1 112.77,41.68 C114.15,40.96 114.39,40.72 114.39,37.3 L114.39,26.28 L114.39,26.28 Z" id="Path"></path>
<path d="M138.61,26.33 C138.61,24.23 138.85,23.15 136.81,22.13 C136.21,21.89 135.55,21.47 135.55,20.51 C135.55,18.35 142.93,16.07 144.79,16.07 C146.83,16.07 147.25,18.83 147.49,20.39 C149.88,17.63 153.34,16.07 157.11,16.07 C160.71,16.07 163.89,17.69 165.69,20.93 C168.03,17.45 171.85,16.07 175.9,16.07 C178.54,16.07 181.48,16.97 183.46,18.83 C185.74,20.99 186.1,24.05 186.1,27.06 L186.1,37.33 C186.1,40.27 186.1,40.99 187,41.65 C187.96,42.07 188.5,42.49 188.5,43.51 C188.5,45.37 187,45.43 185.68,45.43 L176.74,45.43 C175.43,45.43 173.93,45.37 173.93,43.51 C173.93,42.49 174.47,42.07 175.42,41.65 C176.31,40.99 176.31,40.27 176.31,37.33 L176.31,28.5 C176.31,25.62 176.37,21.47 172.43,21.47 C170.7,21.47 169.33,22.19 168.31,23.51 C167.23,24.95 167.23,27.05 167.23,28.8 L167.23,37.33 C167.23,40.27 167.23,40.99 168.13,41.65 C169.09,42.07 169.62,42.49 169.62,43.51 C169.62,45.37 168.13,45.43 166.81,45.43 L157.87,45.43 C156.56,45.43 155.06,45.37 155.06,43.51 C155.06,42.49 155.6,42.07 156.55,41.65 C157.45,40.99 157.45,40.27 157.45,37.33 L157.45,28.5 C157.45,25.62 157.51,21.47 153.57,21.47 C151.84,21.47 150.47,22.19 149.45,23.51 C148.37,24.95 148.37,27.05 148.37,28.8 L148.37,37.33 C148.37,40.27 148.37,40.99 149.27,41.65 C150.23,42.07 150.76,42.49 150.76,43.51 C150.76,45.37 149.27,45.43 147.95,45.43 L139.01,45.43 C137.69,45.43 136.19,45.37 136.19,43.51 C136.19,42.49 136.73,42.07 137.69,41.65 C138.59,40.99 138.59,40.27 138.59,37.33 L138.59,26.33 L138.61,26.33 Z" id="Path"></path>
<path d="M210.98,30.22 C210.98,36.48 210.98,36.54 209.72,38.58 C208.64,40.2 207.07,41.47 205.08,41.47 C202.61,41.47 201.29,39.42 201.29,37.14 C201.29,32.33 205.63,30.22 209.9,30.22 L210.98,30.22 Z M220.67,27.78 C220.67,20.71 216.25,16.07 205.8,16.07 C202.85,16.07 193.36,16.85 193.36,21.08 C193.36,23.2 195.34,23.99 197.08,23.99 C200.86,23.99 201.4,20.11 205.08,20.11 C208.93,20.11 210.68,22.84 210.68,26.47 L208.63,26.47 C202.01,26.47 191.2,28.55 191.2,37.04 C191.2,43.25 196.36,46.36 202.01,46.36 C205.68,46.36 209.3,45.11 211.34,41.76 C211.34,44.4 211.34,45.42 214.33,45.42 L220.55,45.42 C221.99,45.42 223.79,45.42 223.79,43.5 C223.79,42.48 223.13,42.06 221.81,41.4 C220.73,40.86 220.67,40.02 220.67,37.21 L220.67,27.78 L220.67,27.78 Z" id="Shape"></path>
<path d="M248.47,11.32 C248.47,6.88 247.99,6.28 245.95,5.62 C244.81,5.26 243.67,4.96 243.67,3.52 C243.67,1.54 245.53,1.48 247.09,1.48 L255.31,1.48 C257.53,1.48 257.95,1.54 259.52,3.22 C263.01,6.82 266.13,10.9 278.57,29.22 L278.57,8.99 C278.57,6.77 278.03,6.23 275.92,5.33 C274.9,4.91 274.42,4.49 274.42,3.35 C274.42,1.55 276.16,1.49 278.51,1.49 L283.73,1.49 C285.77,1.49 287.81,1.55 287.81,3.35 C287.81,4.49 287.33,4.91 286.31,5.33 C284.03,6.29 283.67,6.53 283.67,8.99 L283.67,41.59 C283.67,45.31 283.49,45.85 279.89,45.85 C278.51,45.85 277.37,45.85 276.77,44.89 C273.95,40.63 262.83,24.42 253.57,12.77 L253.57,37.93 C253.57,40.15 254.17,40.75 256.21,41.59 C257.23,42.01 257.71,42.43 257.71,43.57 C257.71,45.37 255.73,45.43 253.62,45.43 L248.4,45.43 C246.36,45.43 244.32,45.37 244.32,43.57 C244.32,42.43 244.8,42.01 245.82,41.59 C247.92,40.75 248.46,40.27 248.46,37.93 L248.46,11.32 L248.47,11.32 Z" id="Path"></path>
<path d="M305.8,42.2 C300.02,42.2 299.06,35.45 299.06,30.93 C299.06,26.47 300.44,20.32 305.92,20.32 C311.27,20.32 312.6,26.29 312.6,30.63 C312.6,35.33 311.82,42.2 305.8,42.2 Z M305.74,46.36 C314.46,46.36 322.91,40.51 322.91,31.04 C322.91,22 314.76,16.05 306.28,16.05 C294.98,16.05 288.75,23.93 288.75,31.34 C288.75,40.33 295.82,46.36 305.74,46.36 Z" id="Shape"></path>
<path d="M328.14,26.28 C328.14,24.84 327.54,23.34 325.62,22.44 C324.72,22.02 324,21.54 324,20.47 C324,18.98 325.8,18.26 326.94,17.78 C328.2,17.3 331.92,16.05 333.24,16.05 C335.1,16.05 336.3,17.9 336.66,22.26 C338.1,19.33 341.04,16.05 344.52,16.05 C347.1,16.05 349.02,17.9 349.02,20.47 C349.02,22.32 347.94,24.59 345.84,24.59 C344.28,24.59 343.08,23.81 341.82,23.85 C340.56,23.85 337.92,25.29 337.92,32.56 L337.92,37.3 C337.92,40.48 337.92,40.84 339.54,41.68 C340.32,42.1 340.98,42.52 340.98,43.48 C340.98,45.4 339.18,45.4 337.74,45.4 L328.32,45.4 C326.88,45.4 325.08,45.4 325.08,43.48 C325.08,42.52 325.74,42.1 326.52,41.68 C327.9,40.96 328.14,40.72 328.14,37.3 L328.14,26.28 L328.14,26.28 Z" id="Path"></path>
<path d="M370.66,34.73 C370.66,36.33 370.6,37.66 369.76,39.04 C368.74,40.61 367.01,41.57 365.16,41.57 C359.9,41.57 358.77,35.43 358.77,31.27 C358.77,26.99 360.14,20.43 365.46,20.43 C366.95,20.43 368.45,21.09 369.4,22.24 C370.53,23.57 370.65,25.07 370.65,26.7 L370.65,34.73 L370.66,34.73 Z M370.66,18.03 C368.33,16.71 366.36,16.05 363.67,16.05 C354.87,16.05 348.38,22.83 348.38,31.69 C348.38,39.82 354.15,46.36 362.3,46.36 C365.94,46.36 369.05,45.16 371.08,41.75 C371.08,44.4 371.08,45.42 374.2,45.42 L380.32,45.42 C381.7,45.42 383.56,45.36 383.56,43.5 C383.56,42.48 382.9,42.06 382.06,41.64 C380.68,40.98 380.44,40.26 380.44,37.19 L380.44,5.88 C380.44,3.43 380.38,0.01 377.98,0.01 C376.12,0.01 372.7,1.15 370.12,1.87 C368.03,2.47 367.25,2.95 367.25,4.02 C367.25,4.98 368.03,5.28 368.74,5.7 C370.41,6.66 370.65,7.02 370.65,12.34 L370.65,18.03 L370.66,18.03 Z" id="Shape"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 76 KiB

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="250px" height="47px" viewBox="0 0 250 47" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Apo_rgb</title>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-2342.000000, -1007.000000)" fill-rule="nonzero">
<g id="Apo_rgb" transform="translate(2342.000000, 1007.000000)">
<g id="Group" transform="translate(54.833333, 1.305556)" fill="#000000">
<path d="M67.7539815,8.94305556 C60.0294444,8.94305556 54.6331481,14.4786111 54.6331481,22.4076852 C54.6331481,30.0887037 60.2731481,35.8810185 67.7539815,35.8810185 C75.2,35.8810185 80.8182407,30.0887037 80.8182407,22.4076852 C80.8182407,14.4786111 75.4437037,8.94305556 67.7539815,8.94305556 Z M67.7539815,31.7685185 C62.3837963,31.7685185 59.9380556,26.9162037 59.9380556,22.4076852 C59.9380556,17.8730556 62.6797222,13.0555556 67.7539815,13.0555556 C72.7934259,13.0555556 75.5176852,17.8774074 75.5176852,22.4076852 C75.5176852,26.9162037 73.1241667,31.7685185 67.7539815,31.7685185 Z" id="Shape"></path>
<path d="M112.904444,8.90388889 C105.34963,8.90388889 100.536481,14.5569444 100.536481,22.0725926 C100.536481,30.3324074 105.401852,35.9158333 114.388426,35.9158333 C118.796852,35.9158333 120.946667,34.810463 122.83537,34.162037 L122.83537,29.2009259 C121.629907,30.1452778 117.848148,31.7380556 114.597315,31.7380556 C109.927778,31.7380556 105.784815,28.9267593 105.784815,23.9003704 L124.637037,23.9003704 C124.819815,15.7014815 121.795278,8.90388889 112.904444,8.90388889 Z M105.588981,20.0533333 C105.954537,16.7676852 107.947685,12.9511111 112.778241,12.9511111 C117.025648,12.9511111 119.440926,16.1714815 119.440926,20.0533333 L105.588981,20.0533333 Z" id="Shape"></path>
<path d="M163.237963,8.90388889 C155.683148,8.90388889 150.87,14.5569444 150.87,22.0725926 C150.87,30.3324074 155.73537,35.9158333 164.721944,35.9158333 C169.13037,35.9158333 171.280185,34.810463 173.168889,34.162037 L173.168889,29.2009259 C171.963426,30.1452778 168.181667,31.7380556 164.930833,31.7380556 C160.261296,31.7380556 156.118333,28.9267593 156.118333,23.9003704 L174.970556,23.9003704 C175.153333,15.7014815 172.128796,8.90388889 163.237963,8.90388889 Z M155.926852,20.0533333 C156.292407,16.7676852 158.285556,12.9511111 163.116111,12.9511111 C167.363519,12.9511111 169.778796,16.1714815 169.778796,20.0533333 L155.926852,20.0533333 Z" id="Shape"></path>
<path d="M91.5194444,27.3731481 C91.5194444,27.3731481 91.5194444,14.3828704 91.5194444,13.8475926 C92.0286111,13.8475926 97.3074074,13.8475926 97.3074074,13.8475926 L97.3074074,9.53055556 C97.3074074,9.53055556 92.0286111,9.53055556 91.5194444,9.53055556 C91.5194444,9.01703704 91.5194444,2.89833333 91.5194444,2.89833333 L86.3146296,4.83925926 C86.3146296,4.83925926 86.3146296,9.02574074 86.3146296,9.53055556 C85.8141667,9.53055556 82.2282407,9.53055556 82.2282407,9.53055556 L82.2282407,13.8475926 C82.2282407,13.8475926 85.8098148,13.8475926 86.3146296,13.8475926 C86.3146296,14.3828704 86.3146296,28.3131481 86.3146296,28.3131481 C86.3146296,33.2873148 89.095463,35.9158333 94.3568519,35.9158333 C95.9322222,35.9158333 97.6337963,35.4588889 98.5912037,35.1412037 L98.5912037,30.4803704 C97.320463,31.3725 96.2760185,31.5987963 95.1488889,31.5987963 C93.3428704,31.5987963 91.5150926,30.2932407 91.5194444,27.3731481 Z" id="Path"></path>
<path d="M189.688519,31.5987963 C187.8825,31.5987963 186.054722,30.2932407 186.059074,27.3731481 C186.059074,27.3731481 186.059074,14.3828704 186.059074,13.8475926 C186.568241,13.8475926 191.847037,13.8475926 191.847037,13.8475926 L191.847037,9.53055556 C191.847037,9.53055556 186.568241,9.53055556 186.059074,9.53055556 C186.059074,9.01703704 186.059074,2.89833333 186.059074,2.89833333 L180.854259,4.83925926 C180.854259,4.83925926 180.854259,9.02574074 180.854259,9.53055556 C180.353796,9.53055556 176.76787,9.53055556 176.76787,9.53055556 L176.76787,13.8475926 C176.76787,13.8475926 180.349444,13.8475926 180.854259,13.8475926 C180.854259,14.3828704 180.854259,28.3131481 180.854259,28.3131481 C180.854259,33.2873148 183.635093,35.9158333 188.896481,35.9158333 C190.471852,35.9158333 192.173426,35.4588889 193.130833,35.1412037 L193.130833,30.4803704 C191.860093,31.3725 190.815648,31.5987963 189.688519,31.5987963 Z" id="Path"></path>
<path d="M40.1937037,8.93 C36.1725926,8.93 33.3221296,10.7708333 31.8163889,12.6638889 C31.8163889,11.7630556 31.8163889,9.52185185 31.8163889,9.52185185 L26.8074074,9.52185185 L26.8074074,44.3062037 L32.0122222,44.3062037 C32.0122222,44.3062037 32.0122222,33.6006481 32.0122222,32.2994444 C33.7660185,34.6799074 36.5207407,35.9027778 40.2415741,35.9027778 C48.440463,35.9027778 51.3518567,28.3958333 51.3518567,21.9681481 C51.3562037,15.9538889 48.4317593,8.93 40.1937037,8.93 Z M39.157963,31.8642593 C33.9139815,31.8642593 31.7380556,26.6637963 31.7380556,22.4599074 C31.7380556,17.7599074 34.162037,12.9641667 39.2058333,12.9641667 C44.2496296,12.9641667 46.2297222,17.7642593 46.1296296,22.3119444 C46.2297222,26.2721296 44.1538889,31.8642593 39.157963,31.8642593 Z" id="Shape"></path>
<path d="M22.1726852,19.6442593 C22.1726852,12.3331481 18.8609259,8.93 11.7543519,8.93 C8.66888889,8.93 5.84453704,9.82648148 3.15509259,11.427963 L3.44666667,16.1062037 C5.37453704,14.3828704 8.11185185,13.2426852 11.0101852,13.2426852 C15.1400926,13.2426852 16.8677778,15.0008333 16.950463,19.2525926 C15.275,19.1699074 14.0042593,19.1699074 12.2983333,19.1699074 C7.84203704,19.1699074 0.295925926,20.9802778 0.295925926,27.760463 C0.295925926,33.0131481 3.67731481,35.9071296 9.82212963,35.9071296 C13.9346296,35.9071296 16.3455556,33.7921296 17.4596296,32.460463 C17.4596296,33.3177778 17.4596296,35.3152778 17.4596296,35.3152778 L22.4076852,35.3152778 C22.1987963,33.7877778 22.1683333,32.4691667 22.1683333,30.0887037 L22.1683333,19.6442593 L22.1726852,19.6442593 Z M17.2463889,25.232037 C17.2463889,28.9963889 14.8224074,31.8686111 10.2225,31.8686111 C8.09444444,31.8686111 5.5225,30.4368519 5.5225,27.760463 C5.5225,23.3041667 11.7543519,22.9081481 14.2784259,22.9081481 C15.2662963,22.9081481 16.2585185,23.0082407 17.2463889,23.0082407 L17.2463889,25.232037 Z" id="Shape"></path>
<path d="M150.460926,9.52185185 L143.767778,9.52185185 C143.767778,9.52185185 134.885648,18.4910185 134.023981,19.3657407 C134.023981,18.095 134.023981,0.0652777778 134.023981,0.0652777778 L128.819167,0.0652777778 L128.819167,35.3109259 L134.023981,35.3109259 C134.023981,35.3109259 134.023981,24.1266667 134.023981,22.8080556 C134.916111,23.8350926 144.899259,35.3109259 144.899259,35.3109259 L151.892685,35.3109259 C151.892685,35.3109259 139.254907,21.3806481 138.885,20.9889815 C139.272315,20.6190741 150.460926,9.52185185 150.460926,9.52185185 Z" id="Path"></path>
</g>
<g id="Group">
<path d="M24.0526852,0.1175 C11.1799074,0.1175 0.126203704,10.5532407 0.126203704,23.4260185 C0.126203704,36.2987963 11.1799074,46.734537 24.0526852,46.734537 L47.1131481,46.734537 L47.1131481,0.1175 L24.0526852,0.1175 Z" id="Path" fill="#000000"></path>
<path d="M42.3435185,27.8083333 L39.9064815,22.9342593 L37.0386111,22.9342593 L37.0386111,13.5125 C37.0386111,9.17805556 33.5223148,5.66175926 29.1878704,5.66175926 C24.8534259,5.66175926 21.3371296,9.17805556 21.3371296,13.5125 L21.3371296,19.5267593 L26.2721296,17.0592593 L26.2721296,13.4515741 C26.2721296,11.8413889 27.5776852,10.5358333 29.1878704,10.5358333 C30.7980556,10.5358333 32.1036111,11.8413889 32.1036111,13.4515741 L32.1036111,22.9299074 L11.1973148,22.9299074 C10.7882407,24.2006481 10.5706481,25.5584259 10.5706481,26.9684259 C10.5706481,34.2751852 16.4935185,40.2024074 23.8046296,40.2024074 C30.8328704,40.2024074 36.5773148,34.7234259 37.0125,27.8083333 L42.3435185,27.8083333 L42.3435185,27.8083333 Z M23.8046296,35.3283333 C19.505,35.3283333 15.9669444,32.0296296 15.5491667,27.8083333 L32.0600926,27.8083333 C31.6423148,32.0296296 28.1042593,35.3283333 23.8046296,35.3283333 Z" id="Shape" fill="#FFFFFF"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@@ -0,0 +1 @@
<svg width="706" height="132" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="6.14%" y1="96.61%" x2="146.87%" y2="-52.58%" id="a"><stop stop-color="#ADADAD" offset="0%"/><stop stop-color="#454545" offset="99.94%"/><stop stop-color="#454545" offset="100%"/></linearGradient><linearGradient x1="50.08%" y1="10.83%" x2="50.08%" y2="156.56%" id="b"><stop stop-color="#ADADAD" offset="0%"/><stop stop-color="#454545" offset="70.06%"/><stop stop-color="#454545" offset="100%"/></linearGradient><linearGradient x1="83.66%" y1="11.99%" x2="-3.32%" y2="110.66%" id="c"><stop stop-color="#ACACAC" offset="0%"/><stop stop-color="#454545" offset="99.94%"/><stop stop-color="#454545" offset="100%"/></linearGradient><linearGradient x1="11.65%" y1="112%" x2="97.2%" y2="-26.44%" id="d"><stop stop-color="#ACACAC" offset="0%"/><stop stop-color="#454545" offset="92.82%"/><stop stop-color="#454545" offset="99.94%"/><stop stop-color="#454545" offset="100%"/></linearGradient></defs><g fill-rule="nonzero" fill="none"><path d="M75.32 123.7a53.42 53.42 0 0 1-23.87-.13c-3.87-.94-6.93-4-7.87-8l-.93-4 20.8 2 20.8-1.87-.93 4.13c-.94 4-4 7.07-8 7.87" fill="#A9A9A9"/><path d="M0 66C0 29.47 29.6 0 66 0c36.53 0 66 29.6 66 66 0 36.53-29.6 66-66 66-36.4.13-66-29.47-66-66" fill="url(#a)" transform="matrix(1 0 0 -1 0 132)"/><path d="M.93 9.42c.94-4 4-7.07 7.87-8 7.87-1.87 16-1.87 23.87-.14 3.86.94 7.06 4 7.86 7.87l.94 4.13-20.8-1.86-20.67 2 .93-4Z" transform="matrix(1 0 0 -1 45.33 126.08)" fill="url(#b)"/><path d="M0 55.73A55.7 55.7 0 0 1 55.73 0a55.7 55.7 0 0 1 55.74 55.73 55.7 55.7 0 0 1-55.74 55.74C25.07 111.6 0 86.53 0 55.73" transform="matrix(1 0 0 -1 10.27 120.8)" fill="url(#c)"/><path d="M0 50.27A50.3 50.3 0 0 1 50.27 0a50.3 50.3 0 0 1 50.26 50.27 50.3 50.3 0 0 1-50.26 50.26A50.3 50.3 0 0 1 0 50.27" transform="matrix(1 0 0 -1 15.87 115.33)" fill="url(#d)"/><path d="M57.14 68.31h17.74c8.4 0 12.13-5.06 12.13-10.66 0-5.74-3.73-10.67-12.13-10.67H57.14v21.33ZM45.41 79.65h-13.2l6.93-11.2h6.27V35.78h30.53c14.27 0 23.07 9.33 23.07 22 0 12.53-8.8 22-23.07 22H57.28v20.27H45.4v-20.4Z" fill="#A4A4A4"/><path d="m232.16 99.65-8.13-41.07-11.34 41.2h-14.93l-11.33-41.2-8 41.07h-21.07l13.6-71.34h20.8l13.47 40.94 13.6-40.94h20.8l13.46 71.34h-20.93zM258.13 28.4h21.07v71.33h-21.07zM355.86 28.38v71.33h-17.2l-30-38.67v38.67h-20.13V28.38h18.27l29.06 37.33V28.38z" fill="#202020"/><path d="M403.9 54.17c0-5.06-3.6-8.66-9.07-8.66h-8.8v17.33h8.8c5.47 0 9.07-3.6 9.07-8.67m21.46 0c0 14.94-12 25.87-28 25.87h-11.33v19.73H365.1V28.44h32.13c16.13 0 28.13 10.8 28.13 25.73M450.2 61.3h9.47c5.87 0 9.2-3.33 9.2-7.73s-3.33-7.73-9.2-7.73h-9.47V61.3Zm7.6 16.67h-7.6v21.87h-20.8V28.5h32.8c16.27 0 28.14 10.27 28.14 25.2 0 8.8-4.54 15.87-12 20.14L493.4 99.7h-23.2l-12.4-21.73ZM497.07 28.4h21.06v71.33h-21.06zM575.36 81.67v18h-48v-71.2h21.07V81.8h26.93zM627.32 81.67v18h-48v-71.2h21.07V81.8h26.93z" fill="#A4A4A4"/><path d="m655.52 72.7 8.26-22.12 8.4 22.13h-16.66Zm18.53-44.26h-20.4l-29.73 71.34h22.26l4.14-11.6H677.38l4.67 13.33h23.07" fill="#A4A4A4"/></g></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="227px" height="35px" viewBox="0 0 227 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>soft-goat</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.0479577465 0.7112 226.571577 0.7112 226.571577 35.2 0.0479577465 35.2"></polygon>
</defs>
<g id="Site-EN" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Logotypes-—-color" transform="translate(-690.000000, -1185.000000)">
<g id="Merchants" transform="translate(143.000000, 118.000000)">
<g id="Partners-[20v-c]">
<g id="Rad-[0h-m]" transform="translate(1.000000, 1014.000000)">
<g id="Group-17-Copy-2" transform="translate(440.000000, 0.000000)">
<g id="soft-goat" transform="translate(106.000000, 53.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M7.26719718,9.4936 C7.26719718,7.2632 8.50930282,5.8976 10.7641162,5.8976 C12.9725704,5.8976 14.3513556,7.2176 15.4104225,10.3128 L21.1141972,8.6736 C20.0087711,4.0328 16.5598099,0.7112 10.9015951,0.7112 C4.32419014,0.7112 0.920788732,4.2608 0.920788732,9.9032 C0.920788732,19.0944 15.0891056,19.1848 15.0891056,25.3728 C15.0891056,27.8312 13.3858063,29.2864 11.1773521,29.2864 C9.29181338,29.2864 6.99144014,27.8752 6.25688732,23.9168 L0,25.2368 C1.7025,31.6976 5.70377465,34.4736 10.8560352,34.4736 C17.5269577,34.4736 21.4363134,30.7424 21.4363134,25.1 C21.4363134,14.8168 7.26719718,14.4528 7.26719718,9.4936 L7.26719718,9.4936 Z M64.1898451,6.7168 L74.4024472,6.7168 L74.4024472,1.1656 L57.8426373,1.1656 L57.8426373,34.0192 L64.1898451,34.0192 L64.1898451,19.8216 L72.1947923,19.8216 L72.1947923,14.2704 L64.1898451,14.2704 L64.1898451,6.7168 Z M102.539257,1.1656 L81.3802993,1.1656 L81.3802993,6.7168 L88.7849754,6.7168 L88.7849754,34.0192 L95.1337817,34.0192 L95.1337817,6.7168 L102.539257,6.7168 L102.539257,1.1656 Z M49.3045599,11.7224 C49.3045599,3.6232 44.9795704,0.7112 38.8177993,0.7112 C32.6520317,0.7112 28.3286408,3.6232 28.3286408,11.7224 L28.3286408,23.4632 C28.3286408,31.5616 32.6520317,34.4736 38.8177993,34.4736 C44.9795704,34.4736 49.3045599,31.5616 49.3045599,23.4632 L49.3045599,11.7224 Z M42.9557535,24.2824 C42.9557535,27.9208 41.3467711,28.9216 38.8177993,28.9216 C36.2864296,28.9216 34.6766479,27.9208 34.6766479,24.2824 L34.6766479,10.9048 C34.6766479,7.2632 36.2864296,6.2624 38.8177993,6.2624 C41.3467711,6.2624 42.9557535,7.2632 42.9557535,10.9048 L42.9557535,24.2824 Z M140.829521,31.288 L141.79507,34.0192 L145.108151,34.0192 L145.108151,17.1824 L134.297676,17.1824 L134.297676,22.3696 L138.760944,22.3696 L138.760944,24.372 C138.760944,27.1936 137.287842,28.9216 134.897148,28.9216 C132.367377,28.9216 130.755996,27.9208 130.755996,24.2824 L130.755996,10.9048 C130.755996,7.2632 132.367377,6.2624 134.897148,6.2624 C137.197521,6.2624 138.760944,7.6272 138.760944,11.86 L145.108151,11.86 C144.878754,4.3968 141.383433,0.7112 134.897148,0.7112 C128.73218,0.7112 124.409588,3.6232 124.409588,11.7224 L124.409588,23.4632 C124.409588,31.5616 128.73218,34.4736 134.897148,34.4736 C137.287842,34.4736 139.12862,33.1992 140.829521,31.288 L140.829521,31.288 Z M163.100299,34.4736 C169.26207,34.4736 173.586261,31.5616 173.586261,23.4632 L173.586261,11.7224 C173.586261,3.6232 169.26207,0.7112 163.100299,0.7112 C156.933732,0.7112 152.611141,3.6232 152.611141,11.7224 L152.611141,23.4632 C152.611141,31.5616 156.933732,34.4736 163.100299,34.4736 L163.100299,34.4736 Z M158.959148,10.9048 C158.959148,7.2632 160.56813,6.2624 163.100299,6.2624 C165.628472,6.2624 167.239053,7.2632 167.239053,10.9048 L167.239053,24.2824 C167.239053,27.9208 165.628472,28.9216 163.100299,28.9216 C160.56813,28.9216 158.959148,27.9208 158.959148,24.2824 L158.959148,10.9048 Z M187.010433,1.1656 L178.775289,34.0192 L184.894697,34.0192 L186.688317,27.1016 L195.473377,27.1016 L197.083158,34.0192 L203.154609,34.0192 L195.151261,1.1656 L187.010433,1.1656 Z M187.838504,21.5512 L190.966148,8.2648 L191.057268,8.2648 L194.140151,21.5512 L187.838504,21.5512 Z M205.410222,1.1656 L205.410222,6.7168 L212.816496,6.7168 L212.816496,34.0192 L219.164504,34.0192 L219.164504,6.7168 L226.571577,6.7168 L226.571577,1.1656 L205.410222,1.1656 L205.410222,1.1656 Z" id="Fill-1" fill="#000000" mask="url(#mask-2)"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.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 226.8 105.7" style="enable-background:new 0 0 226.8 105.7;" xml:space="preserve">
<style type="text/css">
.st0{fill:#1D1D1B;}
</style>
<title>KRONAN_logotyp</title>
<path class="st0" d="M162.3,10L162.3,10c-5,0-8.9,4.7-10,6.1c-1.2-2.1-3.5-3.4-5.9-3.4c-2,0-3.8,0.8-5.1,2.3c-0.2,0.2-0.2,0.6,0,0.8
c2.1,1.9,3.2,4.6,3,7.4c-0.4,5-4.9,8.9-10.4,8.9c-0.3,0-0.6,0-0.8,0c-5.8-0.4-10.2-5-9.9-10.3c0.4-3.6,2.7-6.7,6.1-8
c0.2-0.1,0.3-0.2,0.3-0.4c0.1-0.2,0.1-0.3,0-0.5c-1.2-2.2-3.5-3.5-6-3.6c-1.4,0-2.8,0.5-4,1.3c0-1.8-0.4-7.8-5-10.4c0,0-0.1,0-0.1,0
l0,0c-0.1,0-0.1,0-0.2,0l0,0c-0.1,0-0.2,0-0.3,0.1c-4.6,2.6-5,8.7-5,10.4c-3-2.3-7.3-1.7-9.6,1.4c-0.2,0.2-0.3,0.5-0.5,0.7
c-0.1,0.2-0.1,0.3,0,0.5c0.1,0.2,0.2,0.3,0.3,0.4c3.4,1.3,5.8,4.4,6.1,8c0.4,5.3-4.1,9.9-9.9,10.3c-0.3,0-0.6,0-0.8,0
c-5.5,0-10-3.9-10.4-8.9c-0.2-2.8,0.9-5.5,3-7.4c0.2-0.2,0.2-0.6,0-0.8c-1.3-1.5-3.2-2.3-5.1-2.3c-2.4,0-4.7,1.3-5.9,3.4
c-1.1-1.4-5-6.1-10-6.1l0,0c-0.2,0-0.4,0.1-0.5,0.3c-0.1,0.2-0.1,0.4,0,0.6c5.6,9.6,10.2,19.8,14,30.3c0.1,0.2,0.3,0.4,0.6,0.4h0.1
l1.2-0.2c10.9-1.2,21.8-1.9,32.8-2l0,0c11,0.1,21.9,0.8,32.8,2l1.2,0.2h0.1c0.3,0,0.5-0.2,0.6-0.4c3.7-10.5,8.3-20.6,13.8-30.2
c0.1-0.1,0.1-0.2,0.1-0.3C162.9,10.2,162.7,9.9,162.3,10L162.3,10"/>
<path class="st0" d="M146.7,45.1h-0.1c-10.7-1.2-21.5-1.9-32.3-1.9l0,0c-10.8,0.1-21.6,0.7-32.3,1.9h-0.1c-0.2,0-0.3,0.1-0.4,0.3
c-0.1,0.2-0.1,0.3-0.1,0.5c0.4,1.2,0.8,2.5,1.2,3.6c0.1,0.3,0.3,0.4,0.6,0.4h0.1c7.4-0.8,20-1.8,31.1-1.8l0,0
c11.1,0,23.7,1,31.1,1.8h0.1c0.3,0,0.5-0.2,0.6-0.4c0.4-1.1,0.8-2.3,1.2-3.6c0.1-0.2,0-0.4-0.1-0.5C147.1,45.2,147,45.1,146.7,45.1"
/>
<path class="st0" d="M27.1,90.9l-7.3-16.3h-0.3l-7.3,16.3H27.1z M0.1,103.6l18.3-40c0.2-0.4,0.6-0.6,1-0.6H20c0.4,0.1,0.8,0.3,1,0.6
l18.1,40c0.3,0.5,0.1,1.1-0.4,1.4c-0.2,0.1-0.4,0.1-0.6,0.1h-3.8c-0.6,0-1.1-0.3-1.4-0.9l-3.7-8.1H9.9c-1.2,2.7-2.4,5.4-3.6,8.1
c-0.2,0.5-0.8,0.9-1.4,0.9H1.1c-0.6,0-1.1-0.4-1.1-1C0,103.9,0,103.7,0.1,103.6"/>
<path class="st0" d="M59.8,84.2c4.2,0,7.6-3.4,7.6-7.6c0,0,0,0,0,0c-0.1-4.1-3.5-7.2-7.5-7.1c0,0,0,0,0,0h-8.2v14.8H59.8z
M45.5,64.6c0-0.6,0.5-1.1,1.1-1.1c0,0,0,0,0,0h13.6c7.3,0,13.3,5.9,13.3,13.2C73.5,84,67.6,90,60.2,90h-8.6v14
c0,0.6-0.5,1.1-1.1,1.1h-3.9c-0.6,0-1.1-0.5-1.1-1.1l0,0V64.6z"/>
<path class="st0" d="M100.2,99.8c8.5,0,15.5-6.9,15.5-15.4c0-8.5-6.9-15.5-15.4-15.5c-8.5,0-15.5,6.9-15.5,15.4c0,0,0,0.1,0,0.1
C84.8,92.8,91.7,99.7,100.2,99.8 M100.2,62.9c11.8,0,21.5,9.5,21.5,21.3c0,11.8-9.5,21.5-21.3,21.5c-11.8,0-21.5-9.5-21.5-21.3
c0,0,0,0,0,0C78.8,72.5,88.3,62.9,100.2,62.9C100.1,62.9,100.2,62.9,100.2,62.9"/>
<path class="st0" d="M135.6,69.1h-10.7c-0.6,0-1.1-0.5-1.1-1.1c0,0,0,0,0,0v-3.3c0-0.6,0.5-1.1,1.1-1.1c0,0,0,0,0,0h27.6
c0.6,0,1.1,0.5,1.1,1.1c0,0,0,0,0,0v3.3c0,0.6-0.5,1.1-1.1,1.1c0,0,0,0,0,0h-10.7V104c0,0.6-0.5,1.1-1.1,1.1h-3.9
c-0.6,0-1.1-0.5-1.1-1.1V69.1z"/>
<path class="st0" d="M161.2,64.6c0-0.6,0.5-1.1,1.1-1.1c0,0,0,0,0,0h23.8c0.6,0,1.1,0.5,1.1,1.1c0,0,0,0,0,0v3.3
c0,0.6-0.5,1.1-1.1,1.1c0,0,0,0,0,0h-18.8v12.1h15.9c0.6,0,1.1,0.5,1.1,1.1v3.3c0,0.6-0.5,1.1-1.1,1.1c0,0,0,0,0,0h-15.9v12.8h18.8
c0.6,0,1.1,0.5,1.1,1.1c0,0,0,0,0,0v3.3c0,0.6-0.5,1.1-1.1,1.1c0,0,0,0,0,0h-23.8c-0.6,0-1.1-0.5-1.1-1.1c0,0,0,0,0,0L161.2,64.6z"
/>
<path class="st0" d="M196,64.9c0-0.8,0.6-1.4,1.4-1.4c0,0,0,0,0,0h3.4c0.8,0,1.4,0.6,1.4,1.4v16.5L219.1,64c0.3-0.4,0.7-0.6,1.1-0.6
h4.5c0.7,0,1.2,0.6,1.2,1.3c0,0.3-0.1,0.7-0.4,0.9l-17.2,17.5l18.2,20c0.4,0.6,0.3,1.4-0.3,1.8c-0.2,0.2-0.5,0.3-0.8,0.2h-4.8
c-0.4,0-0.8-0.1-1.1-0.4l-17.3-19.5v18.5c0,0.8-0.6,1.4-1.4,1.4h-3.4c-0.8,0-1.4-0.6-1.4-1.4c0,0,0,0,0,0V64.9z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,12 @@
<svg width="970px" height="408px" viewBox="0 0 970 408" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Group 11</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-11" transform="translate(0.000000, -0.000000)" fill="#000000">
<path d="M800.5742,236.998388 C812.6562,231.966388 823.6292,227.268388 834.7202,222.865388 C837.5912,221.725388 837.4022,220.199388 836.7352,217.903388 C832.7622,204.227388 828.8712,190.529388 824.9332,176.843388 C823.1922,170.790388 821.4082,164.749388 819.6422,158.702388 L818.6492,158.746388 C812.7072,184.475388 806.7632,210.203388 800.5742,236.998388 L800.5742,236.998388 Z M638.0002,407.210388 C634.5672,405.361388 632.9732,402.370388 631.9342,398.677388 C615.3522,339.727388 598.6442,280.811388 582.0972,221.852388 C581.1052,218.316388 579.6132,216.469388 575.9262,215.358388 C562.0772,211.187388 548.3702,206.546388 534.6032,202.101388 C529.0442,200.305388 526.7062,201.813388 526.5482,207.650388 C525.9172,231.061388 525.4442,254.477388 524.8202,277.889388 C523.9892,309.099388 523.0582,340.306388 522.2032,371.515388 C522.0532,376.996388 522.1292,382.483388 521.9772,387.964388 C521.7962,394.511388 518.1732,397.336388 512.1382,395.000388 C501.9082,391.040388 491.7802,386.780388 481.7972,382.236388 C476.5682,379.857388 474.7292,374.965388 474.8492,369.423388 C475.1702,354.644388 475.5732,339.867388 475.9332,325.088388 C476.6812,294.370388 477.4192,263.652388 478.1702,232.934388 C478.4912,219.816388 478.5122,206.679388 479.3212,193.591388 C479.6712,187.935388 476.6982,183.810388 470.7642,181.919388 C456.3502,177.323388 442.0612,172.297388 427.5132,168.180388 C420.6292,166.231388 416.6912,159.730388 416.800874,153.790388 C416.9392,146.645388 416.7842,139.495388 416.8482,132.348388 C416.9132,125.184388 419.6832,123.152388 426.7022,125.228388 C452.3732,132.824388 478.0262,140.476388 503.6842,148.116388 C530.1392,155.994388 556.6072,163.831388 583.0252,171.833388 C586.2532,172.810388 589.1132,172.693388 592.2252,171.663388 C599.8002,169.155388 607.4332,166.829388 615.0492,164.445388 C621.3322,162.478388 625.4512,164.618388 626.9282,171.047388 C629.7502,183.342388 632.3302,195.692388 635.0172,208.018388 C642.4412,242.063388 649.8692,276.107388 657.4542,310.881388 C658.0952,309.499388 658.6532,308.756388 658.7872,307.943388 C664.5762,272.551388 670.3212,237.151388 676.0862,201.754388 C678.7542,185.370388 681.2782,168.959388 684.2132,152.622388 C685.5232,145.331388 689.5772,139.967388 697.1402,137.604388 C706.9842,134.529388 716.7202,131.112388 726.5112,127.863388 C731.5932,126.177388 731.6512,126.187388 732.6762,131.134388 C738.1272,157.465388 743.5522,183.802388 748.9832,210.137388 C753.1402,230.291388 757.2962,250.447388 761.6802,271.708388 C762.4072,269.707388 762.9212,268.618388 763.2022,267.471388 C773.6962,224.589388 784.2092,181.711388 794.6082,138.807388 C796.6022,130.581388 798.0382,122.221388 799.9142,113.965388 C801.5652,106.695388 805.1212,101.230388 813.2762,99.7313877 C818.1612,98.8343877 822.8862,97.0753877 827.6832,95.7033877 C833.3862,94.0733877 835.2722,95.1113877 836.8092,100.672388 C845.3872,131.703388 853.9692,162.731388 862.5532,193.759388 C869.7202,219.669388 876.9222,245.570388 884.0222,271.498388 C884.6692,273.857388 884.6882,276.388388 885.0002,278.839388 C885.4352,282.259388 883.8152,284.738388 880.9842,286.216388 C873.7622,289.988388 866.3972,293.488388 859.1482,297.208388 C856.4812,298.577388 856.1332,296.923388 855.5512,295.011388 C852.2622,284.218388 848.9192,273.441388 845.5702,262.666388 C844.0552,257.790388 844.0282,257.792388 839.6502,259.858388 C823.5632,267.448388 807.5102,275.107388 791.3622,282.568388 C788.7782,283.762388 787.6022,285.398388 787.0102,288.038388 C783.4512,303.905388 779.8172,319.757388 776.0812,335.584388 C775.7502,336.987388 774.8162,338.740388 773.6422,339.372388 C766.0422,343.469388 758.2762,347.260388 750.6052,351.228388 C744.4042,354.435388 741.9282,353.422388 740.2892,346.658388 C730.5222,306.330388 720.7902,265.993388 711.0382,225.661388 C709.6782,220.042388 708.2752,214.434388 706.1672,208.844388 C704.1172,221.361388 702.0592,233.876388 700.0192,246.395388 C693.4502,286.706388 686.8862,327.018388 680.3262,367.330388 C679.6862,371.263388 679.0352,375.195388 678.4862,379.141388 C677.5662,385.756388 674.0932,390.418388 668.0792,393.345388 C658.6922,397.912388 649.3572,402.583388 640.0002,407.210388 L638.0002,407.210388 Z" id="Fill-1"></path>
<path d="M0,168.793888 C0.277,167.380888 0.785,165.969888 0.798,164.554888 C0.962,145.947888 1.03,127.340888 1.173,108.733888 C1.431,75.1798877 1.717,41.6268877 2.005,8.07288772 C2.069,0.629887715 4.889,-1.37411228 12.083,0.865887715 C37.314,8.72188772 62.524,16.6488877 87.791,24.3948877 C92.885,25.9568877 94.48,29.7568877 94.717,34.2038877 C95.067,40.8318877 94.999,47.4988877 94.753,54.1368877 C94.546,59.7108877 91.363,61.8338877 86.021,60.1388877 C69.066,54.7618877 52.152,49.2608877 35.212,43.8408877 C30.595,42.3638877 30.531,42.4188877 30.519,47.1138877 C30.49,58.0818877 30.597,69.0498877 30.453,80.0158877 C30.414,82.9708877 31.316,84.4268877 34.264,85.3398877 C42.993,88.0438877 51.614,91.0978877 60.278,94.0128877 C66.81,96.2108877 69.703,100.047888 69.813,106.921888 C69.898,112.237888 69.86,117.556888 69.809,122.873888 C69.796,124.190888 69.652,125.536888 69.346,126.814888 C68.314,131.112888 66.359,132.242888 62.117,130.865888 C52.953,127.892888 43.827,124.798888 34.667,121.812888 C30.652,120.503888 30.535,120.568888 30.527,124.842888 C30.49,145.448888 30.511,166.053888 30.507,186.658888 C30.506,188.153888 30.622,189.667888 30.436,191.141888 C29.795,196.183888 26.841,197.883888 22.137,195.969888 C18.135,194.340888 14.255,192.323888 10.139,191.083888 C4.714,189.447888 1.182,186.355888 0,180.764888 L0,168.793888 Z" id="Fill-3"></path>
<path d="M970,57.0672877 C955.532,95.5332877 940.915,133.945288 926.764,172.527288 C924.701,178.150288 924.211,184.576288 924.119,190.648288 C923.808,211.255288 923.884,231.871288 924.069,252.481288 C924.126,258.857288 922.059,263.297288 915.905,265.784288 C911.755,267.461288 907.855,269.748288 903.812,271.699288 C900.921,273.095288 899.331,271.929288 898.99,268.929288 C898.803,267.285288 898.839,265.611288 898.838,263.951288 C898.83,241.677288 898.977,219.401288 898.703,197.130288 C898.652,192.976288 897.616,188.523288 895.862,184.750288 C883.474,158.109288 870.729,131.633288 858.257,105.029288 C856.955,102.253288 856.289,99.0242877 856.041,95.9462877 C855.612,90.6322877 858.827,86.4532877 863.964,84.8362877 C870.309,82.8382877 876.733,81.0672877 882.98,78.8052877 C885.955,77.7272877 886.945,78.5882877 888.065,81.2362877 C896.275,100.656288 904.64,120.011288 912.973,139.379288 C913.66,140.979288 914.475,142.525288 915.231,144.096288 C915.605,144.092288 915.98,144.089288 916.355,144.086288 C917.024,142.498288 917.816,140.949288 918.344,139.316288 C926.56,113.897288 934.79,88.4822877 942.861,63.0162877 C943.769,60.1542877 945.09,58.6212877 948.059,57.8602877 C953.528,56.4592877 958.933,54.7452877 964.257,52.8622877 C966.63,52.0232877 968.397,52.1852877 970,54.0742877 L970,57.0672877 Z" id="Fill-5"></path>
<path d="M277.7305,189.132188 C278.6495,216.574188 288.1255,240.629188 306.6575,261.010188 C313.0855,268.079188 320.5975,273.826188 329.3225,277.918188 C347.4135,286.404188 367.7025,282.049188 380.3555,266.667188 C389.0355,256.115188 392.9165,243.675188 393.1095,230.200188 C393.4655,205.374188 385.4665,183.229188 370.4635,163.575188 C362.4745,153.109188 352.6595,144.742188 340.4835,139.398188 C318.6305,129.806188 295.8925,137.767188 284.7665,158.830188 C279.7595,168.309188 277.7765,178.467188 277.7305,189.132188 M244.5115,179.028188 C244.4505,163.953188 246.3205,149.194188 251.9545,135.092188 C259.7645,115.543188 272.3785,100.487188 292.7795,93.2931877 C309.4395,87.4181877 325.9375,89.4651877 342.1025,95.6511877 C364.9165,104.381188 382.6245,119.719188 396.9515,139.016188 C420.7405,171.057188 432.7805,206.971188 430.9145,247.052188 C430.1495,263.480188 426.3125,279.235188 418.1135,293.707188 C401.6815,322.708188 371.5265,334.667188 339.6065,324.875188 C318.4005,318.370188 301.3755,305.628188 287.0885,289.136188 C259.9765,257.839188 245.5365,221.508188 244.5125,180.025188 C244.5035,179.693188 244.5115,179.360188 244.5115,179.028188" id="Fill-7"></path>
<path d="M111.834,133.525788 C111.987,155.654788 118.519,175.675788 132.228,193.175788 C140.222,203.379788 150.219,210.892788 163.063,214.013788 C174.23,216.727788 184.145,214.254788 192.65,206.445788 C199.496,200.160788 203.516,192.204788 205.886,183.417788 C211.711,161.822788 207.725,141.281788 198.489,121.493788 C191.753,107.061788 182.245,94.8707877 168.299,86.5557877 C162.756,83.2507877 156.813,81.3027877 150.342,81.1887877 C136.076,80.9357877 123.348,89.9907877 116.999,104.801788 C113.066,113.976788 111.682,123.600788 111.834,133.525788 M83.461,124.740788 C83.508,104.404788 86.122,86.9437877 94.967,70.9707877 C106.237,50.6177877 122.975,39.2697877 147.02,41.2037877 C158.653,42.1387877 169.355,46.3027877 179.14,52.6167877 C199.794,65.9447877 213.813,84.8597877 224.082,106.735788 C235.483,131.021788 241.263,156.586788 239.927,183.477788 C239.161,198.880788 235.56,213.656788 228.114,227.345788 C212.272,256.473788 183.312,265.825788 153.419,251.449788 C134.017,242.117788 119.852,227.174788 108.688,209.246788 C92.155,182.691788 83.903,153.649788 83.461,124.740788" id="Fill-9"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

@@ -0,0 +1,28 @@
<svg xmlns="http://www.w3.org/2000/svg" width="196" height="79" viewBox="0 0 196 79">
<g fill="none" fill-rule="nonzero">
<path fill="#000" d="M189 67.544c-.288-.216-.792-.144-1.008.144-1.944 2.736-2.808 2.952-6.12 2.952h-5.904l-1.152-5.688-1.44.288 1.08 5.472h-11.304l1.08-4.032-1.368-.432-1.152 4.392h-10.584L153 65.096l-1.368-.432-2.016 6.048h-3.024l3.024-8.28-1.368-.432-3.168 8.712h-5.04c-.36 0-.72.288-.72.72 0 .36.288.72.72.72h4.464l-1.656 4.536h-11.736c-.36 0-.72.288-.72.72 0 .36.288.72.72.72l36.72.072c3.6 0 5.04-.36 7.272-3.456.216-.288.144-.792-.144-1.008-.288-.216-.792-.144-1.008.144-1.944 2.736-2.808 2.952-6.12 2.952h-6.264l1.224-4.536h19.08c3.6.072 5.04-.36 7.272-3.456.288-.648.216-1.08-.144-1.296zm-28.872 9h-15.696l1.656-4.536h15.336l-1.296 4.536z"/>
<path fill="#FFF" d="M126.432 7.424c0 4.248 15.48 7.776 34.704 7.92 19.152.144 34.776-3.168 34.776-7.344 0-4.248-15.48-7.704-34.704-7.92-19.152-.144-34.776 3.096-34.776 7.344z"/>
<path fill="#C9C9C9" d="M161.496 8.432l30.528-3.024v4.248l-30.528-1.224zm-.864.072l-30.528.792V5.048l30.528 3.456z"/>
<path fill="#000" d="M163.584 8.432a1.52 1.52 0 0 0-.576-1.224 2.557 2.557 0 0 0-1.8-.72c-1.296 0-2.304.864-2.304 1.872 0 .432.144.864.576 1.224.288.288.72.432 1.08.648l-.144 17.64h1.368l.144-17.64c.432-.072.864-.288 1.08-.648.432-.288.576-.792.576-1.152z"/>
<path fill="#000" d="M98.928 29.384l.144-15.264h4.824s-.288 3.384.576 5.328c.432 1.08 1.224 2.376 3.096 3.168 4.176 1.8 45.144 1.224 56.952 1.296 14.472.072 26.136 9.864 26.064 21.888-.072 12.024-12.024 21.744-26.496 21.6-9.576-.072-17.568-4.752-22.536-10.8-9.576-12.456-5.832-27-42.624-27.216z"/>
<path fill="#FFF" d="M143.856 42.992c-.072 9 9.576 16.416 21.6 16.488 12.024.072 21.744-7.128 21.816-16.2.072-9-9.576-16.416-21.6-16.488-12.024-.072-21.744 7.272-21.816 16.2z"/>
<path fill="#000" d="M169.344 54.296l1.8 4.464c-6.264 2.16-11.016.288-11.016.288l2.088-4.608 7.128-.144z"/>
<path fill="#FFF" d="M143.568 42.992c0 3.6 1.44 7.128 4.32 10.08 4.176 4.248 10.512 6.696 17.568 6.696 6.984.072 13.392-2.304 17.64-6.48 2.952-2.88 4.464-6.336 4.464-10.008 0-3.6-1.44-7.128-4.32-10.08-4.176-4.248-10.512-6.624-17.568-6.696-12.096-.072-22.032 7.272-22.104 16.488zm21.888 16.2c-6.84-.072-13.104-2.448-17.064-6.552-2.808-2.808-4.176-6.12-4.176-9.576.072-8.784 9.72-15.912 21.528-15.84 6.84.072 13.104 2.448 17.064 6.552 2.808 2.808 4.176 6.12 4.176 9.576 0 3.456-1.512 6.84-4.32 9.504-4.176 4.104-10.44 6.408-17.208 6.336z"/>
<path fill="#000" d="M165.312 32.192c-9.72-.072-10.584 3.168-12.312 8.712-8.424-6.336-6.984 7.056-.792 3.528-.936 5.544 3.024 10.584 13.104 10.872h.072c10.08-.144 14.184-5.112 13.32-10.728 6.192 3.6 7.776-9.72-.72-3.528-1.656-5.616-2.952-8.784-12.672-8.856z"/>
<path fill="#FFF" d="M165.312 33.776c-8.136-.072-13.176 3.6-6.696 9.36-2.232.72-5.544 2.736-4.752 5.256.72 2.016 4.176 4.824 11.304 4.896h.072c7.2.072 10.656-2.664 11.376-4.608.936-2.52-2.376-4.608-4.608-5.328 6.336-5.76 1.368-9.504-6.696-9.576z"/>
<path fill="#020203" d="M165.96 43.712c-.072.144.288.432.792.648.432.144.936.072.936-.072.072-.144-.288-.432-.792-.648-.432-.072-.864-.072-.936.072z"/>
<path fill="#020203" d="M165.816 43.712c-.072.288.36.72.864.864.576.144 1.08.144 1.152-.216.072-.288-.36-.648-.864-.864-.432-.144-1.08-.144-1.152.216zm1.08.144c.36.144.648.288.648.36 0 0-.288.072-.72-.072-.36-.144-.576-.288-.648-.36.144 0 .36-.072.72.072zM164.304 43.712c.072.144-.288.432-.792.576-.432.144-.936.072-.936-.072-.072-.144.288-.432.792-.576.432-.144.864-.072.936.072z"/>
<path fill="#020203" d="M163.296 43.496c-.576.144-1.008.432-.864.792l.144.216c.216.144.648.144 1.008 0 .576-.144 1.008-.432.864-.792-.072-.36-.648-.36-1.152-.216zm-.576.648s.216-.216.648-.288c.36-.072.648-.072.72 0-.072.072-.216.216-.648.288-.432.072-.648 0-.72 0zm-4.752 2.88l.216.36.72-.432c1.44 2.304 5.688 3.528 10.296 2.952l-.072-.432c-5.112.72-8.928-1.008-10.008-2.952l-.144-.216-1.008.72z"/>
<path fill="#020203" d="M180.72 41.12c-.072-1.152-.576-3.816-2.808-6.12-2.664-2.736-6.696-4.104-12.24-4.176-5.832-.072-10.152 1.296-12.744 4.176a10.764 10.764 0 0 0-2.808 5.976c-.648.072-1.008.72-1.008 1.368 0 .648.288 1.152.792 1.368l-.072 3.816c0 3.168 1.368 3.312 3.96 3.312h1.728c.072.288.36.648.792.648h3.456c.432 0 .864-.36.864-.864a.875.875 0 0 0-.864-.864h-3.456c-.36 0-.72.216-.792.576h-1.728c-2.52 0-3.384-.144-3.384-2.808l.072-3.744c.648-.072 1.08-.72 1.08-1.368 0-.648-.288-1.152-.864-1.368.144-1.152.648-3.528 2.664-5.616 2.52-2.736 6.696-4.032 12.384-3.96 5.328.072 9.288 1.368 11.808 3.96 2.16 2.232 2.664 4.896 2.736 5.904-.36.216-.72.72-.72 1.296 0 .792.576 1.44 1.152 1.44.72 0 1.224-.648 1.224-1.44.072-.792-.504-1.512-1.224-1.512z"/>
<path fill="#C9C9C9" d="M168.192 39.032c.216-1.368 1.44-2.376 2.88-2.16 1.296.216 2.16 1.512 1.944 2.952 0 .144-.072.288-.072.432-.144-.936-1.08-1.656-2.016-1.44-1.008.144-1.728 1.008-1.656 2.016.072.36.216.792.576 1.08-1.08-.36-1.8-1.584-1.656-2.88z"/>
<path fill="#020203" d="M170.928 38.816c1.008-.144 1.872.576 2.016 1.44-.36 1.152-1.512 1.944-2.736 1.728-.144 0-.216-.072-.36-.072-.288-.288-.432-.648-.576-1.08-.072-1.008.648-1.944 1.656-2.016z"/>
<path fill="#C9C9C9" d="M157.824 38.96c.216-1.368 1.44-2.376 2.808-2.16 1.296.216 2.16 1.512 1.944 2.952 0 .144-.072.288-.072.36-.144-.936-1.08-1.656-2.016-1.44-1.008.144-1.728 1.008-1.656 2.016.072.36.216.792.576 1.08-1.08-.288-1.8-1.512-1.584-2.808z"/>
<path fill="#020203" d="M160.488 38.672c.936-.072 1.872.576 2.016 1.44-.36 1.152-1.512 1.944-2.736 1.728-.144 0-.216-.072-.36-.072-.288-.288-.432-.648-.576-1.08-.072-.936.648-1.872 1.656-2.016z"/>
<g>
<path fill="#FFF" d="M128.16 59.768c.072-1.08.216-3.096.216-3.096.072-.576.072-1.152.072-1.728 0-4.608-1.368-8.928-3.816-11.52-1.944-2.016-4.32-3.096-7.128-3.096-2.664 0-4.896 1.008-6.696 2.664-1.656-1.008-3.6-1.8-5.904-1.8-3.312 0-6.264 1.44-8.064 3.816-1.008-.792-2.16-1.44-3.6-1.728v-1.296l-3.744-.432c-1.944-.144-4.032-.072-5.616 0l-2.736.144a9.703 9.703 0 0 0-4.968-1.368c-3.024 0-5.544 1.296-7.56 3.456-1.44-1.152-3.24-1.872-5.184-1.872-1.656 0-2.952.432-4.032 1.08-.648-.288-1.296-.432-2.016-.576v-.432l-3.816-.36c-.72-.072-4.104-.36-6.552 0l-3.456.648v1.152h-1.008c.072-1.656.144-3.168.216-4.536l.216-3.816-3.744-.432c-.432-.072-1.944-.216-6.552 0l-3.888.144.144 4.032c0 .72.072 1.44.072 2.304-1.152-.576-2.448-.792-3.888-.792-4.32 0-7.776 2.664-9.648 6.912.072-3.312.288-6.552.432-9.072l.288-4.104-4.104-.216c-2.088-.144-4.824-.072-8.136.216L0 34.352l.216 3.96c.576 6.912.288 18.792 0 25.2l-.144 4.176H4.32c5.04 0 11.016 0 13.464.072l3.528.072c1.368.648 2.808.936 3.96.936 1.08 0 2.088-.144 2.952-.288l-.072.792 4.608-.36c1.368-.072 3.384-.216 4.968-.072l4.32.216v-.864c.288-.072.72-.072 1.008-.144l-.072.576 4.608-.36c.864-.072 1.656-.144 2.376-.144l6.336.576-.144-.216.864.072V67.4h1.368c0 .576-.072 1.296-.072 1.296l4.608-.576c1.08-.144 3.096-.144 4.968 0l4.392.36v-.432a9.468 9.468 0 0 0 3.744.792c1.008 0 1.944-.072 2.808-.288v.072l4.752-.432c.936-.072 3.24-.288 4.824-.144l1.8.216c1.152.648 2.448 1.008 3.96 1.008a7.236 7.236 0 0 0 4.32-1.44c1.728.72 3.6 1.08 5.328 1.08 2.808 0 5.328-.936 7.128-2.52 2.16 1.728 4.608 2.448 6.552 2.448 5.328 0 8.424-2.88 9.792-4.464l2.088-2.52c.216-.216-.576-1.368-1.224-2.088z"/>
<path fill="#000" d="M17.928 63.728c-2.448-.072-8.496-.072-13.536-.072.216-5.328.576-18 0-25.704 2.16-.144 5.184-.36 7.488-.216-.36 5.616-.72 13.248-.576 18.72 2.664-.072 4.464-.072 6.624-.072-.144 2.232 0 5.832 0 7.344zM25.344 64.664c-2.664 0-7.416-2.376-7.416-10.08 0-5.616 2.736-10.296 7.128-10.296 5.112 0 7.272 6.192 6.84 12.024-3.384-.144-6.624-.072-8.568 0 0 1.224.576 3.096 2.52 3.096 1.656 0 3.024-1.152 3.528-1.872.648 1.296 1.512 2.808 2.52 4.104-.864 1.224-2.952 3.024-6.552 3.024zm-.144-15.12c-1.152 0-1.728 1.368-1.728 2.808h3.168c.144-1.08-.288-2.808-1.44-2.808zM41.04 64.16a76.338 76.338 0 0 0-2.88-5.976c-.072 2.448 0 5.04 0 6.408-1.944-.072-4.176 0-5.472.072.36-5.976.576-19.368.216-26.136 2.16-.072 4.536-.144 5.904 0-.144 3.6-.432 10.584-.432 14.76.936-1.944 1.872-4.32 2.448-5.976 2.16 0 4.608-.072 6.48 0-1.224 2.304-2.736 5.688-3.816 8.712 1.08 2.088 2.88 5.184 4.608 7.56-2.304 0-4.68.216-7.056.576z"/>
<path fill="#000" d="M62.856 64.016c.072-3.168.144-5.976.072-7.776-.072-2.52-.432-3.024-1.08-3.024-.72 0-.936.936-.936 2.736-.072 1.296-.072 4.752-.072 7.416-1.44-.072-3.96-.144-5.616 0 .072-2.664.144-4.536.072-7.056 0-2.016-.36-2.736-1.008-2.736-.864 0-1.008 1.224-1.08 2.376 0 1.44-.072 5.256-.072 8.064-2.088-.144-3.888-.072-5.688.072.432-6.48.216-14.76.144-18.504 1.368-.216 3.744-.144 5.472 0 0 .72-.072 1.296-.072 2.088.432-.432 1.44-1.296 3.096-1.296 1.512 0 2.808.936 3.528 1.8.648-.792 1.728-2.16 3.744-2.16 3.096 0 5.112 3.384 5.184 7.488.072 3.744 0 6.48.072 10.44-2.16-.144-4.392-.072-5.76.072zm13.536.648c-2.664 0-7.416-2.376-7.416-10.08 0-5.616 2.736-10.296 7.128-10.296 5.112 0 7.272 6.192 6.84 12.024-3.384-.144-6.624-.072-8.568 0 0 1.224.576 3.096 2.52 3.096 1.656 0 3.024-1.152 3.528-1.872.648 1.296 1.512 2.808 2.52 4.104-.864 1.224-2.952 3.024-6.552 3.024zm-.144-15.12c-1.152 0-1.728 1.368-1.728 2.808h3.168c.144-1.08-.288-2.808-1.44-2.808zm16.344 5.112c-.648-.72-1.08-.792-1.512-.864-.864 0-1.44.576-1.8.792-.144 3.024-.144 6.192-.072 9.216-1.872-.216-4.248 0-5.688.144.216-4.248.36-12.384 0-18.432 1.728-.072 3.816-.144 5.544 0v2.664c.36-.36 1.512-1.08 2.736-1.08 2.016 0 3.168 1.656 3.456 2.232-.792 1.44-2.016 3.816-2.664 5.328zm1.8 10.44c-2.088 0-3.528-1.368-3.528-3.528 0-2.52 1.512-4.032 3.528-4.032 2.376 0 3.384 2.232 3.384 3.816 0 2.16-1.512 3.744-3.384 3.744zm9.648-.36c-1.944 0-4.536-.864-6.048-2.016.576-1.368 1.296-3.096 1.872-4.752.864.648 2.304 1.656 3.816 1.656.36 0 1.224 0 1.224-.72 0-2.232-6.192-2.088-6.192-7.704 0-3.384 2.448-6.048 6.192-6.048 2.808 0 4.752 1.8 5.472 2.808-.72 1.152-1.728 3.096-2.16 4.248-.432-.648-1.44-1.8-2.88-1.8-.648 0-1.152.216-1.152.864 0 2.16 6.264 1.872 6.264 7.92-.072 3.168-2.664 5.544-6.408 5.544z"/>
<path fill="#000" d="M117.792 64.664c-2.664 0-7.416-2.376-7.416-10.08 0-5.616 2.736-10.296 7.128-10.296 5.112 0 7.272 6.192 6.84 12.024-3.384-.144-6.624-.072-8.568 0 0 1.224.576 3.096 2.52 3.096 1.656 0 3.024-1.152 3.528-1.872.648 1.296 1.512 2.808 2.52 4.104-.936 1.224-3.024 3.024-6.552 3.024zm-.144-15.12c-1.152 0-1.728 1.368-1.728 2.808h3.168c0-1.08-.288-2.808-1.44-2.808z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="155px" height="64px" viewBox="0 0 155 64" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title>happy</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-492.000000, -439.000000)" fill="#000000" fill-rule="nonzero">
<g id="Group-23" transform="translate(0.000000, 407.000000)">
<g id="Group-10" transform="translate(380.000000, 0.000000)">
<g id="happy" transform="translate(112.000000, 32.000000)">
<path d="M36.6025117,2.0550945e-16 C38.2732904,3.44760774 36.5456825,6.89521549 36.5229508,10.3312541 C36.5002191,14.7506707 35.9319271,19.1585182 35.5454884,23.5663657 C35.4090983,25.1860472 34.8862696,26.8057287 32.9199791,26.5049307 C31.1582736,26.2388402 31.3628588,24.5960204 31.419688,23.1961528 C31.7947608,13.7557235 31.7947608,13.8714151 22.747551,13.8829842 C19.8037981,13.8829842 18.1671169,14.6581175 18.1443852,17.8743422 C18.1330194,19.3899013 17.7124832,20.9170295 17.7579466,22.4325886 C17.8829709,26.2735476 16.0644362,27.3032023 12.9842932,26.4586541 C14.3709258,17.6429591 15.4052174,8.88510989 14.9392179,2.0550945e-16 C16.1439971,2.0550945e-16 17.3487763,2.0550945e-16 18.5535555,2.0550945e-16 C21.1563332,1.55026657 20.8380896,4.15332611 20.4857485,6.49029512 C19.9856515,9.85691879 21.3722842,10.6898978 24.395598,10.7130361 C30.8400301,10.7708819 31.1014444,10.6783287 31.7947608,4.22274103 C31.9766142,2.52207546 32.1925652,0.89082482 33.9088073,0 C34.7953429,2.0550945e-16 35.7046102,2.0550945e-16 36.6025117,2.0550945e-16 Z" id="Shape"></path>
<path d="M0,29.5714625 C5.17987491,28.6676762 5.43553397,28.9079232 4.8797534,34.1018347 C4.74636606,35.3030698 4.5907475,36.5043048 4.51293822,37.7055399 C4.13500744,43.7002748 4.91310023,44.9472712 9.29265112,45.3820039 C14.5281041,45.9082593 16.6067234,44.2722915 17.2736601,38.9296556 C17.5737816,36.5386258 17.618244,34.1132751 17.8294407,31.710805 C17.962828,30.1663599 18.6742271,29.0452072 20.3415688,29.2740138 C21.8755232,29.4799399 21.9977949,30.7383766 21.8755232,32.0311343 C21.5976329,35.0399421 21.3864363,38.0487499 21.0196211,41.0461174 C20.6416903,44.1922092 18.36299,46.0455433 15.7730526,46.4459549 C12.5495253,46.9378893 11.671392,48.5509764 11.6269295,51.4682615 C11.6046983,53.0241469 11.9492822,55.2092507 9.48161651,55.083407 C6.7360605,54.946123 7.86985286,52.6351756 7.99212459,51.2623355 C8.22555243,48.6310587 7.78092797,46.926449 4.82417534,46.5260373 C2.47878134,46.2057079 1.40056703,43.9634025 1.38217046e-15,42.2931138 C0,38.0487499 0,33.8158264 0,29.5714625 Z" id="Shape"></path>
<path d="M138.721954,62.8912243 C140.687902,62.5562817 142.698785,62.3830355 144.619797,61.8632968 C146.720552,61.2858095 148.765138,60.0153374 148.439352,57.5205921 C148.102333,54.9565483 145.675792,55.834329 144.03563,55.7765803 C137.373876,55.5571351 135.003505,54.055668 134.778825,49.7591622 C134.306998,40.5886633 136.250477,37.3893834 143.327889,36.6501996 C147.124976,36.2575083 150.978233,36.5809012 155,36.5809012 C153.371072,42.425073 153.371072,48.1883967 152.899245,53.8939716 C152.213971,62.2444385 150.23679,63.9884503 141.92364,64 C140.890114,64 139.867821,63.8960523 138.834294,63.8383035 C138.800592,63.5149106 138.755656,63.2030675 138.721954,62.8912243 Z M146.197161,38.1547934 C140.361384,38.1086163 138.362515,40.2443085 138.006395,46.6513849 C137.684738,52.2388174 138.902439,53.6010426 143.715807,54.2013453 C149.138025,54.8709137 148.460247,51.0497563 148.758929,47.840446 C148.954221,45.7278424 149.011659,43.5921502 149.26439,41.4910909 C149.574559,38.9051718 148.575125,37.7507436 146.197161,38.1547934 Z" id="Combined-Shape"></path>
<path d="M62.3667202,7.38402723 C66.6753845,7.38402723 70.848698,7.13530236 74.9656155,7.45186129 C79.8156826,7.82494859 81.4737288,10.0634724 81.1015144,14.8231619 C80.334527,24.5234318 78.9246238,25.981864 69.1793726,26.1627548 C66.2693323,26.2192832 65.2090851,27.1237373 65.2090851,30.0179903 C65.2090851,31.6233962 65.355715,34.2576187 62.8178892,34.0088938 C59.8288943,33.7149463 61.1372845,31.0128897 61.2162391,29.3396497 C61.5997328,22.1266285 63.2239413,14.95883 62.3667202,7.38402723 Z M77.0725508,16.0858547 C77.2890602,10.8214316 75.9330276,9.40142277 70.8165684,8.95117606 C65.494995,8.46629498 66.72568,12.5185154 66.3154517,15.3931675 C66.0077804,17.5058636 65.9963852,19.6416493 65.7798758,21.7658902 C65.5519711,23.9709446 66.0989423,25.1023337 68.6628695,25.1138785 C74.6339711,25.1254233 76.78767,22.9434585 77.0725508,16.0858547 Z" id="Combined-Shape"></path>
<path d="M107.931937,7.63892686 C111.979049,6.57597644 113.212784,7.97398732 112.647803,11.497899 C112.244244,14.0512908 112.094351,16.6508978 111.875277,19.2273972 C111.621612,22.3007104 112.301896,24.7847793 115.96851,25.0967322 C119.531352,25.408685 121.92964,23.9529051 122.448501,20.2556862 C122.89818,17.0899426 123.082664,13.8895375 123.39398,10.7006862 C123.532343,9.22179868 123.278678,7.35008164 125.538603,7.38474306 C127.971483,7.4309583 127.371911,9.33733677 127.268138,10.7700091 C126.899171,16.096315 126.610915,21.4226209 126.011343,26.7258192 C125.215757,33.7389812 119.46217,36.6274335 111.206523,33.7043198 C114.296626,32.6760308 117.167654,33.5310127 119.485231,31.9828023 C121.007222,30.9660671 122.194836,29.7067019 121.791278,27.8927539 C121.260887,25.4780078 119.335338,26.922234 118.078542,27.0146644 C110.53777,27.5692473 107.724393,24.8772098 108.001119,17.5058797 C108.127951,14.2477056 109.350156,10.95487 107.931937,7.63892686 Z" id="Shape"></path>
<path d="M64.921466,55.4597221 C67.0126174,51.9177893 66.4927179,48.0330889 66.9664041,44.3540491 C67.4516437,40.6178814 67.7173701,36.8474369 67.9484365,33.0769924 C68.0524164,31.4088563 68.2834829,29.8664018 70.328421,29.9806577 C72.3040392,30.083488 72.1653994,31.7059217 71.9112263,33.0655668 C71.2989001,36.344711 73.0665585,36.8702881 75.839356,36.8360113 C77.9420608,36.8131601 80.0909788,37.2016302 82.1590236,37.6700793 C83.8227021,38.0471238 85.4979339,38.9725965 85.7752136,40.7778397 C86.4799663,45.4280546 85.5094872,50.0439927 84.8625011,54.6370796 C84.6892013,55.8824689 83.3490158,56.0310015 82.2398968,55.6882339 C80.9343714,55.2769126 80.9805846,54.1686305 81.0730112,53.0717739 C81.350291,49.9183112 81.673784,46.7648485 81.8932971,43.5999602 C82.1936835,39.292513 79.0049664,38.9497454 75.8971226,38.4470194 C72.4773391,37.8985911 71.2180269,39.4410457 71.1371536,42.6630619 C71.0678337,45.6794175 70.5941475,48.6843475 70.5017209,51.7007031 C70.3861876,55.2540615 68.8727024,56.7051113 64.921466,55.4597221 Z" id="Shape"></path>
<path d="M42.1155095,8.12412596 C43.7831546,7.64136488 44.2171992,7.42297296 44.6398216,7.41147864 C54.5543145,7.22756966 58.5178272,5.94020677 56.1305818,18.8598129 C55.9364039,19.894301 55.6736927,21.0897094 55.993515,22.0092543 C57.6954268,26.905831 54.7484923,26.8598537 51.4017799,26.6759448 C48.1121785,26.4920358 44.7654661,26.9633025 41.5443981,25.8713429 C39.4541306,25.1701899 37.6379966,24.1931735 37.3752854,21.6644249 C37.0897297,18.9632617 38.1519968,16.9632515 40.5049755,15.6299114 C43.3605322,14.0207078 46.4788001,13.6873727 49.6656014,13.698867 C51.2418687,13.698867 52.7153359,13.7678329 52.7267582,11.4804649 C52.7267582,9.25056849 51.3332465,9.20459124 49.7227125,9.13562537 C47.5981783,9.05516519 45.3708441,9.58390352 42.1155095,8.12412596 Z M51.834438,19.2250834 C52.0223158,17.3075612 52.2544002,15.5171038 49.5246461,15.4015904 C45.2587147,15.2283203 41.2580225,17.5270367 41.3906421,20.5534873 C41.5674683,24.4809423 44.5735132,24.573353 47.3806288,25.0123039 C52.2212453,25.7746922 51.4918373,22.0898153 51.834438,19.2250834 Z" id="Combined-Shape"></path>
<path d="M28.5004353,38.3155415 C32.1566096,35.9080014 35.8127838,36.1857945 39.4004048,37.2043691 C41.8226203,37.8872771 42.2796421,39.9360011 42.1882377,42.2972424 C42.0397056,46.3599663 40.5429593,50.4111155 41.8111947,54.4969888 C42.3024932,56.1058738 41.1713642,55.8859542 40.4058528,55.8859542 C36.3497844,55.8743795 32.270865,56.0017014 28.2262222,55.6428853 C25.6097725,55.4113911 23.1532804,54.1844716 22.7762374,51.0824488 C22.41062,47.9920007 23.9302174,45.850679 26.752327,44.6469089 C29.5744365,43.4431389 32.5108014,42.9222768 35.5499963,43.0264492 C37.0467426,43.0727481 38.2464248,42.9222768 38.1207438,40.8967022 C38.0179139,39.2530931 37.3552324,38.3155415 35.6642518,38.3155415 C33.2877385,38.3155415 30.8883741,38.3155415 28.5004353,38.3155415 Z M38.1203718,48.2547979 C38.2315135,44.8709688 37.9870016,44.5570052 35.252914,44.5570052 C31.0295265,44.5453769 27.4618755,46.882661 27.5952456,49.8129873 C27.7841867,53.8712566 30.9517273,53.801487 33.6747008,54.1968484 C38.387112,54.8712886 37.8536315,51.2316373 38.1203718,48.2547979 Z" id="Combined-Shape"></path>
<path d="M111.17801,36.540091 C116.948176,36.540091 121.357235,36.3103261 125.731393,36.6090205 C130.280052,36.9192031 132.513665,39.6534054 132.25773,44.1223326 C132.083229,47.2930881 131.64116,50.4523554 131.396858,53.6345992 C131.280524,55.0821181 130.710488,55.92076 129.151612,55.8862952 C127.290268,55.8633187 127.429869,54.5421706 127.49967,53.3244166 C127.685804,50.3030083 127.755604,47.2471352 128.174407,44.2601915 C128.628109,41.0205065 127.778871,38.8032752 124.253951,38.3896984 C120.717398,37.9761216 118.146417,39.308758 117.61128,43.0309493 C117.134311,46.3280756 116.948176,49.6596666 116.692242,52.9912575 C116.564274,54.6455648 116.261806,56.1505249 114.12126,55.8633187 C111.980715,55.5761126 112.725253,53.8069229 112.771786,52.6121455 C112.88812,49.7400843 113.132422,46.8680231 113.446523,43.9959619 C113.702458,41.6523599 114.260861,39.3202463 111.17801,36.540091 Z" id="Shape"></path>
<path d="M100.628272,37.63608 C92.7828456,38.4974187 93.4510317,44.0674089 93.0593364,49.0057507 C92.7713252,52.6004042 95.6629582,53.2550216 98.6237139,54.0933913 C93.3127863,56.5625622 88.9926175,54.24269 89.2806287,49.2813791 C89.56864,44.2970992 88.9580561,39.2553967 90.2253056,34.3285394 C90.5824396,32.9274284 90.7437259,31.5722556 92.5754775,31.5952246 C94.2805041,31.6181936 94.3611473,32.9274284 94.4533109,34.1562716 C94.7528426,37.8772548 98.3126617,35.2587852 100.628272,37.63608 Z" id="Shape"></path>
<path d="M62.486911,37.6528311 C49.8742507,39.3561656 49.8520844,39.3561656 49.3311749,47.8033145 C48.7437662,57.1310989 56.4576604,52.6815719 60.3589402,54.8136369 C54.8949318,56.8530034 48.0676922,55.902844 46.161385,52.9249054 C44.8424864,50.8623642 45.4631446,41.7431514 47.0591227,39.6458484 C49.4420067,36.5056874 56.557409,35.3817183 62.486911,37.6528311 Z" id="Shape"></path>
<path d="M102.333781,52.6340054 C102.733359,48.2209561 103.224268,43.8079067 103.509681,39.3832134 C103.669512,36.8564807 105.073741,36.1927767 107.117294,36.5420946 C110.576494,37.135935 107.448373,38.7078655 107.402707,39.7325313 C107.185793,44.1572246 106.74055,48.570274 106.398055,52.9949672 C106.272473,54.6716931 105.884312,56.1621161 103.80651,55.8593739 C101.831455,55.5799196 102.276699,53.9730573 102.333781,52.6340054 Z" id="Shape"></path>
<path d="M106.740827,34.0253165 C105.789895,33.8618622 104.771839,33.6766141 104.693527,32.6740947 C104.581653,31.2139034 105.711583,30.7344376 106.975763,30.7889224 C107.848383,30.8216132 108.743377,31.1158309 108.743377,32.2491136 C108.754564,33.5894385 107.568697,33.6548202 106.740827,34.0253165 Z" id="Shape"></path>
<path d="M84.246846,25.9649091 C84.1113704,20.3743651 86.1435032,14.5358534 84.9242235,8.59590045 C84.5855348,6.96156804 85.8048144,7.34479081 86.4483231,7.34479081 C90.320665,7.33351955 94.2268758,7.14190817 98.0653488,7.55894471 C102.626358,8.04360881 104.150457,10.2640466 103.834348,14.8514487 C103.17955,24.3418479 101.565133,25.9874516 91.8560542,26.1903342 C88.9884891,26.2466905 87.7692094,27.1371199 87.8030783,30.022562 C87.8256576,31.6907082 88.1191878,34.2267412 85.5338634,34.0125873 C82.4292161,33.7533484 83.9646053,31.1496878 83.9758949,29.4251853 C83.9871846,28.3769583 84.1339497,27.3400026 84.246846,25.9649091 Z M88.5109536,18.2850932 C88.1288096,25.1064448 89.6573855,26.1978611 95.1056666,24.2537759 C99.6149654,22.6621271 98.7633302,18.728481 98.9707798,15.2950674 C99.2437398,10.7247618 97.9444503,9.6106077 93.2932123,8.98531714 C88.9913631,8.40550225 89.1223839,11.3386834 88.8930975,14.2036511 C88.7620767,15.8407755 88.5873824,17.4778999 88.5109536,18.2850932 Z" id="Combined-Shape"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 354 KiB

View File

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg2"
xml:space="preserve"
width="2454.96"
height="827.54669"
viewBox="0 0 2454.96 827.54669"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs6" /><g
id="g8"
transform="matrix(1.3333333,0,0,-1.3333333,0,827.54667)"><g
id="g10"
transform="scale(0.1)"><path
d="M 313.559,3310.92 C 436.438,3834.49 727.594,4306.17 739.926,4326 l 34.984,56.22 h 144.981 v 171.91 h 853.089 v -171.91 h 709.67 v 480.83 c 0,227.1 184.75,411.86 411.86,411.86 h 191.56 c 220.4,0 400.91,-173.99 411.39,-391.84 h 151.98 v 704.35 h 431.9 v -724.37 c 0,-227.11 -184.77,-411.87 -411.87,-411.87 h -191.56 c -220.4,0 -400.91,173.99 -411.39,391.84 h -151.99 v -460.8 h 1519.06 v 171.91 h 853.08 v -171.91 h 144.98 l 34.98,-56.22 c 12.33,-19.83 303.49,-491.51 426.37,-1015.08 v 0 c 67.2,-286.35 147.5,-678.55 191.3,-1072.46 79.5,274.53 122.26,564.67 122.26,864.82 0,1713.89 -1389.38,3103.28 -3103.28,3103.28 C 1389.39,6206.56 0,4817.17 0,3103.28 c 0,-300.15 42.7578,-590.29 122.266,-864.82 43.8,393.91 124.093,786.11 191.293,1072.46"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path12" /><path
d="m 4835.86,919.09 c -150.29,173.06 -241.19,387.85 -303.6,555.64 -5.89,15.86 -17.1,52.21 -39.87,126.36 -23.02,74.96 -69.67,226.88 -99.16,311.43 H 3164.02 3042.51 1816.28 c -6.91,-22.64 -13.87,-45.62 -21.04,-69.34 C 1671.33,1433.2 1520.35,934.621 1118.7,717.602 1656.67,269.59 2348.46,0 3103.28,0 c 754.61,0 1446.23,269.441 1984.14,717.23 -92.37,49.481 -178.38,117.59 -251.56,201.86"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path14" /><path
d="m 2795.34,3955.15 h -193.5 v 907.9 c 0,161.37 131.29,292.66 292.67,292.66 h 191.56 c 161.38,0 292.67,-131.29 292.67,-292.66 0,-54.69 44.49,-99.17 99.17,-99.17 h 191.56 c 54.68,0 99.17,44.48 99.17,99.17 v 605.17 h 193.5 v -605.17 c 0,-161.38 -131.29,-292.67 -292.67,-292.67 h -191.56 c -161.37,0 -292.67,131.29 -292.67,292.67 0,54.68 -44.48,99.16 -99.17,99.16 h -191.56 c -54.68,0 -99.17,-44.48 -99.17,-99.16 v -907.9"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path16" /><path
d="M 4245.12,2031.72 3103.31,3438.78 1961.41,2031.72 h 961.9 v 445.92 h 359.91 v -445.92 h 961.9"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path18" /><path
d="m 5132.56,3334.24 c -88.12,0 -159.55,71.43 -159.55,159.55 0,88.12 71.43,159.55 159.55,159.55 88.12,0 159.55,-71.43 159.55,-159.55 0,-88.12 -71.43,-159.55 -159.55,-159.55 z m -275.25,-275.25 c -88.11,0 -159.55,71.44 -159.55,159.55 0,88.12 71.44,159.56 159.55,159.56 88.12,0 159.56,-71.44 159.56,-159.56 0,-88.11 -71.44,-159.55 -159.56,-159.55 z m -275.24,275.25 c -88.12,0 -159.55,71.43 -159.55,159.55 0,88.12 71.43,159.55 159.55,159.55 88.12,0 159.55,-71.43 159.55,-159.55 0,-88.12 -71.43,-159.55 -159.55,-159.55 z m 275.24,594.35 c 88.12,0 159.56,-71.44 159.56,-159.56 0,-88.11 -71.44,-159.55 -159.56,-159.55 -88.11,0 -159.55,71.44 -159.55,159.55 0,88.12 71.44,159.56 159.55,159.56 z m -3073.27,-434.8 v -158.71 h -242.23 l -150.36,158.71 150.36,158.7 h 242.23 z m -276.09,-434.8 h -317.41 v 242.24 l 158.7,150.35 158.71,-150.35 z m -593.505,276.09 v 317.41 h 242.235 l 150.36,-158.7 -150.36,-158.71 z m 276.095,593.51 h 317.41 V 3686.35 L 1349.24,3536 l -158.7,150.35 z m 4586.42,-644.91 c -119.81,510.51 -411.53,979.35 -411.53,979.35 h -197.96 v 171.9 h -614.69 v -171.9 H 3121.06 3085.5 1653.78 v 171.9 h -614.69 v -171.9 H 841.133 c 0,0 -291.719,-468.84 -411.531,-979.35 C 309.785,2773.17 70.1602,1590.67 312.398,1051.49 425.879,798.922 650.871,684.129 917.703,762.852 1442.39,917.641 1582.75,1572.61 1728.45,2031.72 h 7.68 l 1367.18,1684.66 716.53,-882.98 v 308.47 h 268.48 v -639.32 l 382.08,-470.83 c 0,0 -7.72,0 0,0 20.07,0 155.97,-468.08 173.59,-515.44 68.4,-183.95 152.05,-369.55 281.87,-519.042 275.21,-316.906 774.5,-377.109 968.31,54.272 242.23,539.16 2.6,1721.66 -117.21,2232.17"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path20" /><path
d="m 7710.29,3214.77 c -11.95,59.71 -42.12,113.77 -90.52,162.18 -65.39,66 -144.59,99 -237.61,99 -93.04,0 -172.41,-33 -238.08,-99 -65.7,-66 -98.54,-145.21 -98.54,-237.61 0,-93.04 32.84,-172.41 98.54,-238.08 65.67,-65.7 145.04,-98.54 238.08,-98.54 93.02,0 172.22,32.67 237.61,98.06 48.4,48.41 78.57,101.83 90.52,160.3 z m 0.94,315.87 v 66.94 h 196.12 v -721.32 c 0,-188.57 -51.24,-334.09 -153.69,-436.55 -104.99,-92.41 -231.64,-138.6 -379.99,-138.6 -148.36,0 -275.01,46.19 -379.99,138.6 -21.37,21.37 -55.63,64.75 -102.78,130.11 l 194.24,69.78 c 25.14,-30.17 42.11,-49.65 50.92,-58.46 66,-65.37 145.21,-98.06 237.61,-98.06 155.26,0 262.74,101.83 322.47,305.5 -60.98,-118.19 -165.64,-177.27 -313.98,-177.27 -148.36,0 -274.86,50.92 -379.52,152.75 -104.66,101.83 -156.99,226.92 -156.99,375.28 0,148.34 52.33,274.85 156.99,379.51 104.66,104.66 231.16,156.99 379.52,156.99 125.08,0 234.78,-48.4 329.07,-145.2"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path22" /><path
d="m 9020.91,3066.73 v 143.32 c -11.31,60.96 -41.48,116.29 -90.51,165.96 -66.01,65.37 -145.21,98.06 -237.62,98.06 -93.03,0 -172.4,-32.69 -238.08,-98.06 -65.69,-65.39 -98.53,-144.59 -98.53,-237.62 0,-92.39 32.84,-171.46 98.53,-237.13 65.68,-65.7 145.05,-98.54 238.08,-98.54 92.41,0 171.61,32.67 237.62,98.06 49.03,49.66 79.2,104.98 90.51,165.95 z m 0,462.96 v 67.89 h 196.13 V 2626.4 h -196.13 v 121.63 c -94.29,-97.44 -203.66,-146.15 -328.13,-146.15 -148.35,0 -274.85,52.33 -379.51,156.99 -104.66,104.67 -156.99,231.16 -156.99,379.52 0,148.35 52.33,274.86 156.99,379.52 104.66,104.67 231.16,157 379.51,157 124.47,0 233.84,-48.42 328.13,-145.22"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path24" /><path
d="m 9500.85,3597.58 h 195.18 v -90.51 c 37.71,94.9 110.32,142.37 217.81,142.37 106.86,0 166.86,-54.07 180.06,-162.17 30.8,108.1 115.7,162.17 254.6,162.17 137,0 205.6,-83.29 205.6,-249.86 v -772.23 h -196.2 V 3310 c 0,95.54 -38.6,143.33 -115.9,143.33 -32.1,0 -59.8,-11.32 -83,-33.95 -23.3,-22.64 -34.9,-98.7 -34.9,-228.18 v -563.85 h -195.17 l 0.94,682.65 c 0,95.54 -38.99,143.33 -116.92,143.33 -32.06,0 -59.73,-11.32 -82.97,-33.95 -20.13,-19.49 -31.45,-71.04 -33.95,-154.64 v -637.39 h -195.18 v 970.23"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path26" /><path
d="m 11049.1,3597.58 v -970.23 h -195.2 v 970.23 z m -0.9,359.25 c 27,-26.4 40.5,-58.78 40.5,-97.12 0,-38.35 -13.5,-70.72 -40.5,-97.11 -27.1,-26.4 -59.4,-39.6 -97.2,-39.6 -37.1,0 -69.1,13.2 -96.1,39.6 -27.1,26.39 -40.6,58.76 -40.6,97.11 0,38.34 13.5,70.72 40.6,97.12 27,26.4 59,39.6 96.1,39.6 37.8,0 70.1,-13.2 97.2,-39.6"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path28" /><path
d="m 11544.1,3337.35 v -710 H 11348 v 970.23 h 196.1 v -113.14 c 40.9,110.63 122.9,165.95 246.1,165.95 105,0 188.4,-37.25 250.3,-111.74 62,-74.48 93.9,-167.99 95.8,-280.51 v -630.79 h -195.2 v 623.25 c 0,55.93 -20.5,103.87 -61.3,143.8 -40.9,39.91 -89.6,59.87 -146.2,59.87 -55.9,0 -104.3,-19.49 -145.2,-58.46 -22.6,-23.27 -37.4,-42.76 -44.3,-58.46"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path30" /><path
d="m 13263,3214.77 c -11.9,59.71 -42.1,113.77 -90.5,162.18 -65.4,66 -144.6,99 -237.6,99 -93,0 -172.4,-33 -238.1,-99 -65.7,-66 -98.5,-145.21 -98.5,-237.61 0,-93.04 32.8,-172.41 98.5,-238.08 65.7,-65.7 145.1,-98.54 238.1,-98.54 93,0 172.2,32.67 237.6,98.06 48.4,48.41 78.6,101.83 90.5,160.3 z m 1,315.87 v 66.94 h 196.1 v -721.32 c 0,-188.57 -51.3,-334.09 -153.7,-436.55 -105,-92.41 -231.6,-138.6 -380,-138.6 -148.4,0 -275,46.19 -380,138.6 -21.4,21.37 -55.6,64.75 -102.8,130.11 l 194.3,69.78 c 25.1,-30.17 42.1,-49.65 50.9,-58.46 66,-65.37 145.2,-98.06 237.6,-98.06 155.3,0 262.8,101.83 322.5,305.5 -61,-118.19 -165.7,-177.27 -314,-177.27 -148.4,0 -274.9,50.92 -379.5,152.75 -104.7,101.83 -157,226.92 -157,375.28 0,148.34 52.3,274.85 157,379.51 104.6,104.66 231.1,156.99 379.5,156.99 125.1,0 234.8,-48.4 329.1,-145.2"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path32" /><path
d="m 13746.7,4135.98 h 196.1 v -643.06 c 54.7,104.98 133.9,157.47 237.7,157.47 103.7,0 186.5,-37.25 248.4,-111.74 61.9,-74.48 93.8,-167.99 95.7,-280.51 v -630.79 h -195.2 v 623.25 c 0,55.93 -15.8,103.87 -47.6,143.8 -31.7,39.91 -81.9,59.87 -150.4,59.87 -81.1,0 -143.9,-43.38 -188.6,-130.12 v -696.8 h -196.1 v 1508.63"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path34" /><path
d="m 15218.6,2614.14 c -122.6,0 -221.3,37.4 -296.1,112.2 -74.8,74.81 -113.1,168.46 -115,280.99 v 590.25 h 196.1 v -582.7 c 0,-55.96 20.4,-104.05 61.3,-144.27 40.9,-40.24 91.8,-60.34 152.8,-60.34 55.9,0 104.4,19.95 145.6,59.87 41.2,39.92 61.8,88.16 61.8,144.74 v 582.7 h 195.2 v -590.25 c -1.9,-112.53 -40,-206.18 -114.1,-280.99 -74.8,-74.8 -170.7,-112.2 -287.6,-112.2"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path36" /><path
d="m 16099.3,2835.72 c 23.2,-22.63 50.9,-33.94 82.9,-33.94 32.1,0 59.6,11.31 82.5,33.94 23,22.64 34.5,50.6 34.5,83.93 0,32.05 -11.4,59.39 -34,82.03 -15.7,15.7 -49.3,39.9 -100.9,72.6 -70.4,38.33 -120.4,72.28 -149.9,101.83 -51.6,51.53 -77.3,113.45 -77.3,185.76 0,72.91 25.7,135.29 77.3,187.16 51.5,51.86 113.8,77.79 186.7,77.79 72.9,0 133.6,-24.52 182,-73.54 34.5,-34.59 56.6,-73.24 66,-115.98 l -189.5,-54.69 c -4.5,15.7 -8.9,26.07 -13.3,31.12 -11.3,11.31 -26.3,16.96 -45.2,16.96 -18.9,0 -35.1,-6.75 -48.6,-20.27 -13.5,-13.52 -20.2,-29.7 -20.2,-48.55 0,-18.87 6.6,-34.89 19.8,-48.09 11.9,-11.32 38.9,-30.5 81.1,-57.52 77.9,-42.75 134.5,-81.73 169.7,-116.92 60.9,-61.62 91.4,-134.83 91.4,-219.69 0,-86.76 -30.3,-160.78 -91,-222.07 -60.6,-61.27 -134.3,-91.92 -221.1,-91.92 -86.1,0 -159.6,30.79 -220.6,92.4 -42.1,42.11 -69.8,94.59 -83,157.46 l 194.3,41.49 c 5.6,-28.92 14.4,-49.35 26.4,-61.29"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path38" /><path
d="m 17362.7,3450.5 c -22,16.97 -71.3,25.45 -148,25.45 -92.4,0 -171.4,-32.86 -237.1,-98.53 -65.7,-65.7 -98.6,-145.06 -98.6,-238.08 0,-76.07 8.5,-125.41 25.5,-148.03 z m -326.2,-603.46 c 32.7,-28.92 92.1,-43.37 178.2,-43.37 93,0 172.6,32.67 238.6,98.06 8.1,8.79 24.8,28.29 49.9,58.46 l 195.2,-69.78 c -47.8,-66 -82.3,-109.69 -103.7,-131.06 -105,-104.98 -231.6,-157.47 -380,-157.47 -147.7,0 -274.1,52.49 -379,157.47 -105,104.98 -157.5,231.63 -157.5,379.99 0,148.34 52.5,275.01 157.5,379.98 104.9,104.98 231.3,157.47 379,157.47 127,0 238.2,-38.35 333.8,-115.03 15.7,-13.2 31.1,-27.35 46.2,-42.44 6.3,-6.28 24.2,-26.08 53.7,-59.4 l -98,-99 -513.9,-513.88"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path40" /><path
d="m 18042.6,3597.58 v 363.96 h 195.2 v -363.96 h 174.4 v -195.17 h -174.4 v -775.06 h -195.2 v 775.06 h -174.5 v 195.17 h 174.5"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path42" /></g></g></svg>

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1 @@
<svg width="549" height="109" xmlns="http://www.w3.org/2000/svg"><g fill="#000" fill-rule="evenodd"><path d="M64.3.12c-6.84 0-13.75 6.41-14.9 9.97C47.23 3.84 41.65.1 33.77.1 28.74.11 19.9 6.6 18.1 13.04V1.86H.94v61.4H18.1V29.8c0-8.86 3.58-13.49 8.89-13.49 5.31 0 8.26 4.83 8.26 13.49v33.46h17.16V36.7c0-1.92.18-3.44.18-4.56 0-9.33 2.71-15.83 8.52-15.83 7.16 0 8.45 8.82 8.45 14.95v32h16.25v-38C85.81 8.5 79.11.12 64.31.12M323.4 108.29l17.15-18.08V.06H323.4v108.23M157.53 49.09a16.39 16.39 0 1 1 0-32.78 16.39 16.39 0 0 1 0 32.78Zm0-49.03a32.63 32.63 0 1 0 0 65.27 32.63 32.63 0 0 0 0-65.27ZM532.94 26.94c-1.8-.74-7.54-1.87-9.07-2.62-1.65-1-3.39-2.67-3.7-4.51-.59-3.63 3.44-6.48 7.34-6.44 3.35.04 7.1 2.24 8.46 3.43 1.06.92 3.04 2.97 3.25 3.17l9.77-9.59-1.46-1.65C543.09 3.84 536.35 0 528.38 0c-12.75 0-23.18 8.79-23.18 19.83 0 8.05 5.69 14.94 13.71 18.04.31.13.8.28 1.24.42l.15.02c1.8.77 7.1 1.75 8.62 2.48a6.1 6.1 0 0 1 3.83 4.65c.63 3.89-3.94 6.7-7.38 6.44-2.66-.2-4.92-1.1-7.11-2.86-2.73-2.2-4.48-4.01-4.53-4.06l-10.03 9.82 1.6 1.74c4.43 4.9 11.17 8.73 19.14 8.73 12.75 0 24.1-8.01 24.1-19.8 0-8.45-7.47-15.65-15.6-18.5M252.31 13.04V1.86h-17.15v61.4h17.15v-29.1c0-8.83 12.64-19.3 22.57-14.7V2.05c-10.83-6.37-21.66 6.2-22.57 10.98M415.77 49.12c-9.94 0-14.95-8.46-14.95-16.42 0-7.97 5.55-16.39 14.95-16.39 7.73 0 16.27 7.82 16.27 16.39s-8.54 16.42-16.27 16.42Zm18.97-36.08C431.13 4.78 421.71.06 413.94.06c-14.63 0-28 14.62-28 32.64 0 18.02 13.34 32.63 27.98 32.63 7.76 0 17.2-5.36 20.82-13.34v11.27h16.25V1.86h-16.25v11.18Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="195px" height="40px" viewBox="0 0 195 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>logo-doz-anim-002</title>
<defs>
<linearGradient x1="-4.9068048%" y1="65.9567888%" x2="98.3750033%" y2="30.3747455%" id="linearGradient-1">
<stop stop-color="#002E6A" offset="0%"></stop>
<stop stop-color="#002B67" offset="37%"></stop>
<stop stop-color="#00235F" offset="61%"></stop>
<stop stop-color="#001550" offset="81%"></stop>
<stop stop-color="#00023B" offset="99%"></stop>
<stop stop-color="#00013A" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-4.9068048%" y1="65.9567888%" x2="98.3750033%" y2="30.3747455%" id="linearGradient-2">
<stop stop-color="#000000" offset="0%"></stop>
<stop stop-color="#000000" offset="37%"></stop>
<stop stop-color="#000000" offset="61%"></stop>
<stop stop-color="#000000" offset="81%"></stop>
<stop stop-color="#000000" offset="99%"></stop>
<stop stop-color="#000000" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-0.000401288852%" y1="50.0020997%" x2="100.000061%" y2="50.0020997%" id="linearGradient-3">
<stop stop-color="#B5121B" offset="0%"></stop>
<stop stop-color="#B5121B" offset="0%"></stop>
<stop stop-color="#D3431D" offset="46%"></stop>
<stop stop-color="#F47920" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-0.000401288852%" y1="50.0020997%" x2="100.000061%" y2="50.0020997%" id="linearGradient-4">
<stop stop-color="#000000" offset="0%"></stop>
<stop stop-color="#000000" offset="0%"></stop>
<stop stop-color="#000000" offset="46%"></stop>
<stop stop-color="#000000" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="logo-doz-anim-002" transform="translate(0.000000, 0.000055)">
<path d="M78.8625096,19.6512486 C78.8625096,20.6986502 78.7112544,21.677743 78.4103704,22.588527 C78.1094864,23.5009374 77.6557208,24.3434126 77.0490736,25.1159526 C76.6245832,25.6575438 76.1529272,26.1389582 75.6341056,26.5585694 C75.1136576,26.9781806 74.5476704,27.337615 73.9328912,27.6352462 C73.318112,27.9328774 72.6854424,28.1573206 72.0365088,28.3069494 C71.3843224,28.4549518 70.7174984,28.5313926 70.0376632,28.5313926 C68.8276216,28.5313926 67.7005264,28.3167078 66.6596304,27.8873382 C65.6187344,27.4579686 64.6689168,26.8155406 63.8052984,25.9616806 C62.94168,25.1078206 62.2943728,24.1514974 61.8633768,23.0975902 C61.4307544,22.0420566 61.2128168,20.8921918 61.2128168,19.6512486 C61.2128168,17.1417134 62.0845672,15.0225142 63.828068,13.2952774 C64.6770488,12.4544286 65.6187344,11.8233854 66.6547512,11.4021478 C67.690768,10.9809102 68.8194896,10.7711046 70.0376632,10.7711046 C72.4788896,10.7711046 74.5590552,11.6152062 76.2797864,13.3050358 C77.140152,14.1491374 77.7858328,15.1038342 78.2168288,16.164247 C78.6478248,17.221407 78.8608832,18.3859094 78.8625096,19.6512486 L78.8625096,19.6512486 Z M59.6368352,19.6512486 C59.6368352,21.2321094 59.2774008,22.6178022 58.558532,23.8099534 C57.8412896,24.9988518 56.7711184,25.9860766 55.346392,26.7700014 L55.3447656,26.7700014 C54.5933688,27.1863598 53.7167392,27.4986286 52.711624,27.7051814 C51.7162672,27.9101078 50.5989304,28.012571 49.3596136,28.012571 L44.5812504,28.012571 L44.5812504,11.2915526 L49.3596136,11.2915526 C50.963244,11.2915526 52.3961024,11.4785886 53.654936,11.854287 C54.9284072,12.2332382 56.0262272,12.8041046 56.9467696,13.5652598 L56.948396,13.5668862 C57.8445424,14.318283 58.5162456,15.204671 58.965132,16.2244238 C59.412392,17.2392974 59.6368352,18.3810302 59.6368352,19.6512486 Z M54.8779888,19.6512486 C54.8779888,18.3550078 54.4404872,17.335255 53.5622312,16.5903638 C53.118224,16.2146654 52.5831384,15.9316718 51.955348,15.7430094 C51.31292,15.5494678 50.572908,15.4518838 49.735312,15.4518838 L49.247392,15.4518838 L49.247392,23.8278438 L49.735312,23.8278438 C50.58104,23.8278438 51.3259312,23.7318862 51.9699856,23.539971 C52.5994024,23.352935 53.134488,23.0715678 53.573616,22.7007486 C54.0078648,22.3331822 54.3331448,21.8989334 54.549456,21.3963758 C54.76902,20.8873126 54.8779888,20.3066878 54.8779888,19.6512486 L54.8779888,19.6512486 Z M74.033728,19.6512486 C74.033728,18.3338646 73.6466448,17.245803 72.8692256,16.3854374 C72.4853952,15.9593206 72.0560256,15.6405462 71.585996,15.4291142 C71.1175928,15.2193086 70.602024,15.1135926 70.0376632,15.1135926 C69.4733024,15.1135926 68.9561072,15.2193086 68.487704,15.4291142 C68.0193008,15.6405462 67.5899312,15.9593206 67.2044744,16.3854374 C66.8173912,16.814807 66.5246392,17.2978478 66.332724,17.8378126 C66.137556,18.3810302 66.039972,18.9844246 66.039972,19.6496222 C66.039972,20.3066878 66.137556,20.9035766 66.332724,21.4435414 C66.5262656,21.9802534 66.8173912,22.4632942 67.2044744,22.8926638 C67.5899312,23.3187806 68.0193008,23.637555 68.487704,23.848987 C68.9561072,24.060419 69.4733024,24.1645086 70.0376632,24.1645086 C71.1582528,24.1645086 72.1031912,23.743271 72.8692256,22.9024222 C73.2579352,22.4763054 73.5490608,21.994891 73.7426024,21.4598054 C73.936144,20.9198406 74.033728,20.3164462 74.033728,19.6512486 L74.033728,19.6512486 Z M90.1285824,28.2482364 L79.9408128,28.2482364 C79.9408128,25.432938 80.1180904,24.2489188 82.2324104,22.1036972 L88.7412632,15.285991 L85.14204,15.285991 C82.7658696,15.285991 80.1002,15.424235 80.1717616,12.340418 L80.1750144,12.2104686 L80.1750144,11.3679934 L94.323068,11.3679934 C94.323068,14.9737222 93.948996,15.798307 91.1255656,18.764698 L85.8690408,24.3302388 L91.5711992,24.3302388 C93.7034096,24.3302388 94.599556,24.9011052 94.5458848,27.2756492 L94.542632,27.4057612 L94.542632,28.2498628 L90.1285824,28.2498628 L90.1285824,28.2482364 L90.1285824,28.2482364 Z" id="Shape" fill="#000000"></path>
<path d="M13.3218424,13.3733446 L13.3218424,13.6498326 L10.1536152,13.6482062 L2.4851392,13.6482062 L2.4851392,25.6494118 L7.2504912,25.6494118 C8.6752176,25.6510382 9.8592368,26.613867 9.6591896,28.134551 L-5.68434189e-14,28.134551 L-5.68434189e-14,11.1646934 L10.839956,11.1646934 L10.839956,2.81312941 L10.8383296,2.81312941 L10.8383296,0.297088612 C14.4684544,0.153965412 18.5702352,-0.447802588 22.2719216,0.627247812 C23.7259232,1.05173821 24.8156112,1.71693581 25.5621288,2.53989421 C25.7312744,2.72693021 25.851628,3.35959981 25.9866192,3.56289981 C26.7656648,4.73716061 26.5526064,6.92954781 26.323284,8.45348461 L25.2531128,7.55083261 C25.7019992,5.47229341 24.900184,3.45067821 22.1938544,2.74644701 C19.5477016,2.05685341 16.0558208,2.23901021 13.3787664,2.59356541 C13.37714,6.39771501 13.3218424,9.53504061 13.3218424,13.3733446 Z" id="Path" fill="url(#linearGradient-2)"></path>
<path d="M25.2563656,25.9080094 L25.2547392,25.6331478 L36.1890264,25.6331478 L36.1890264,13.7018774 L32.3832504,13.7018774 C29.4996432,13.7018774 27.7512632,14.1198622 27.7512632,11.2183646 L36.1874,11.219991 L37.5421912,11.219991 L38.6741656,11.2183646 L38.6741656,28.118287 L27.738252,28.118287 L27.7398784,30.2033318 L27.738252,36.0258438 L27.7398784,36.4649718 L27.7415048,36.4649718 L27.7398784,38.9810126 C24.1130064,39.1241358 20.3430112,39.7275302 16.6429512,38.6508534 C12.9428912,37.5709238 11.653156,35.1150598 12.0987896,32.1615174 L13.2811824,30.2277278 C11.7653776,37.2716662 21.0504952,36.762603 25.2726296,36.2047478 C25.274256,32.4022246 25.2563656,29.7463134 25.2563656,25.9080094 L25.2563656,25.9080094 Z" id="Path" fill="url(#linearGradient-4)"></path>
<path d="M14.1968456,21.5378726 C17.8042008,17.050635 22.5272664,13.5798974 24.8302488,8.19000781 C25.5962832,6.39934141 25.9687288,4.26875741 25.4222584,2.41466141 C25.3246744,2.07962301 28.29936,5.80895821 26.363944,11.2476398 C23.4331712,19.5130046 17.6529456,22.8991694 13.8455432,29.2697782 C12.5980944,31.354823 12.1687248,33.9131502 12.8144056,36.1006582 C12.9315064,36.5056318 8.2100672,28.9949166 14.1968456,21.5378726 Z M122.879399,22.4616678 L122.879399,28.2223766 L119.013446,28.2223766 L119.013446,11.3696198 L124.892882,11.3696198 C126.067143,11.3696198 127.077138,11.5062374 127.919613,11.7843518 C128.760462,12.0640926 129.456561,12.447923 130.001405,12.9374694 C130.546249,13.4253894 130.944717,13.9995086 131.203314,14.6630798 C131.463538,15.3282774 131.59365,16.0438934 131.59365,16.814807 C131.59365,17.644271 131.458659,18.408679 131.193556,19.1015254 C130.928453,19.7959982 130.516974,20.3896342 129.970503,20.8840598 C129.42078,21.3801118 128.727934,21.7655686 127.885458,22.043683 C127.04461,22.3217974 126.042747,22.4632942 124.892882,22.4632942 L122.879399,22.4632942 L122.879399,22.4616678 L122.879399,22.4616678 Z M122.877773,19.5455326 L124.892882,19.5455326 C125.897998,19.5455326 126.621746,19.3064518 127.064126,18.8250374 C127.506507,18.3468758 127.727698,17.6751726 127.727698,16.814807 C127.727698,16.432603 127.670774,16.0861798 127.555299,15.773911 C127.441451,15.4616422 127.270679,15.1900334 127.038104,14.9655902 C126.805529,14.7395206 126.51115,14.5687486 126.156595,14.4451422 C125.80204,14.3247886 125.379176,14.2629854 124.891256,14.2629854 L122.877773,14.2629854 L122.877773,19.5455326 L122.877773,19.5455326 Z M116.986952,28.1394302 L115.139362,28.1394302 C113.634942,28.1394302 112.79084,27.5441678 112.30292,26.101551 L111.727174,24.4003366 L105.389094,24.4003366 L104.80359,26.1308262 C104.359582,27.4449574 103.453678,28.1394302 102.071238,28.1394302 L100.129316,28.1394302 L106.579618,11.4785886 L110.535023,11.4785886 L116.986952,28.1394302 L116.986952,28.1394302 Z M110.75784,21.539499 L109.303838,17.2067694 C109.204628,16.9188966 109.09078,16.5740998 108.954162,16.180511 C108.822424,15.790175 108.689059,15.3640582 108.558947,14.9102926 C108.435341,15.3738166 108.311734,15.8048126 108.181622,16.2016542 C108.05151,16.595243 107.931157,16.9400398 107.814056,17.229539 L106.360054,21.539499 L110.75784,21.539499 Z M151.025878,11.4769622 L164.2664,11.4769622 L164.2664,12.2381174 C164.311939,14.0954662 163.609334,14.5394734 161.942274,14.5394734 L159.580742,14.5394734 L159.580742,28.1378038 L155.714789,28.1378038 L155.714789,14.5394734 L151.025878,14.5394734 L151.025878,12.6008046 C151.020998,12.4869566 151.020998,12.366603 151.024251,12.2381174 L151.025878,12.1405334 L151.025878,11.4769622 Z M166.676725,11.4769622 L177.404459,11.4769622 L177.404459,12.2381174 C177.449998,14.0954662 176.750646,14.5394734 175.080334,14.5394734 L173.953238,14.5394734 C172.819638,14.5394734 171.679531,14.5508582 170.532919,14.5508582 L170.565447,18.335491 L175.802455,18.335491 L175.802455,21.1930758 L170.565447,21.1930758 L170.565447,25.1631182 L177.402833,25.1631182 L177.402833,28.1361774 L166.676725,28.1361774 L166.676725,11.4769622 Z M192.494198,11.6867678 L189.698417,11.6900206 L186.868481,15.5364566 L184.389847,18.8608182 L184.389847,11.6818886 L180.499498,11.6818886 L180.499498,28.1817166 L184.389847,28.1817166 L184.389847,20.5864286 L188.48187,25.8787342 C189.961894,27.7897542 190.597816,28.1817166 193.016273,28.1817166 L194.911029,28.1817166 L188.19725,19.5341478 L194.31414,11.6802622 L192.960975,11.6802622 C192.798335,11.6818886 192.642201,11.683515 192.494198,11.6867678 L192.494198,11.6867678 Z" id="Shape" fill="#000000" fill-rule="nonzero"></path>
<path d="M150.36068,19.742327 C150.36068,20.9279726 150.15738,22.0306718 149.749154,23.052051 C149.339301,24.0734302 148.760302,24.9581918 148.018664,25.7128414 C147.275399,26.4658646 146.382506,27.0578742 145.33673,27.4872438 C144.289329,27.914987 143.126453,28.1280454 141.849729,28.1280454 C140.574631,28.1280454 139.411755,27.914987 138.362727,27.4872438 C137.312073,27.0578742 136.415926,26.4658646 135.667782,25.7128414 C134.922891,24.9581918 134.345519,24.0734302 133.935666,23.052051 C133.52744,22.0306718 133.319261,20.9279726 133.319261,19.742327 C133.319261,18.5566814 133.52744,17.4539822 133.935666,16.432603 C134.345519,15.4128502 134.922891,14.5264622 135.667782,13.7766918 C136.415926,13.0269214 137.312073,12.4381646 138.362727,12.0104214 C139.411755,11.5826782 140.576258,11.3696198 141.849729,11.3696198 C143.126453,11.3696198 144.289329,11.5826782 145.33673,12.0136742 C146.382506,12.4446702 147.275399,13.0383062 148.018664,13.7880766 C148.760302,14.537847 149.339301,15.4226086 149.749154,16.4439878 C150.15738,17.465367 150.36068,18.5648134 150.36068,19.742327 L150.36068,19.742327 Z M146.465452,19.742327 C146.465452,18.9323798 146.359736,18.2021262 146.14993,17.5515662 C145.940125,16.9026326 145.640867,16.3545358 145.245652,15.904023 C144.850437,15.4551366 144.367396,15.1087134 143.79653,14.8696326 C143.225663,14.6305518 142.57673,14.5101982 141.848102,14.5101982 C141.11297,14.5101982 140.460783,14.6289254 139.886664,14.8696326 C139.314171,15.1103398 138.829504,15.4551366 138.435915,15.904023 C138.0407,16.3545358 137.736563,16.9026326 137.526758,17.5515662 C137.316952,18.2004998 137.211236,18.9323798 137.211236,19.742327 C137.211236,20.5604062 137.316952,21.2922862 137.526758,21.9412198 C137.736563,22.5901534 138.0407,23.1431294 138.435915,23.5920158 C138.829504,24.0425286 139.314171,24.3840726 139.886664,24.6199006 C140.460783,24.8557286 141.11297,24.9777086 141.848102,24.9777086 C142.57673,24.9777086 143.225663,24.8557286 143.79653,24.6199006 C144.367396,24.3840726 144.850437,24.0425286 145.245652,23.5920158 C145.640867,23.141503 145.938498,22.588527 146.14993,21.9412198 C146.359736,21.2906598 146.465452,20.5587798 146.465452,19.742327 L146.465452,19.742327 Z" id="Shape" fill="#000000"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1 @@
<svg width="199" height="194" xmlns="http://www.w3.org/2000/svg"><g fill="#000" fill-rule="evenodd"><path d="M112.2 81.18c15.5-10.52 25.97-20.35 32.18-26.97V1.55a1.54 1.54 0 0 0-2.9-.72 311 311 0 0 1-44.85 65.06 269.88 269.88 0 0 0 15.57 15.3"/><path d="M139.19 110.19C87.47 76.37 57.22 28.48 42.99.82a1.54 1.54 0 0 0-2.9.72v52.68c6.93 7.38 19.16 18.75 37.75 30.61a254.52 254.52 0 0 1-32.55 25.36 1.75 1.75 0 0 0 1.52 3.12 291.02 291.02 0 0 0 45.43-19.95 291.04 291.04 0 0 0 45.42 19.95 1.75 1.75 0 0 0 1.53-3.12M112.36 151.37l-6.3 27.85a4.9 4.9 0 0 1-4.25 3.4H73.3c-.45 0-.74-.12-.83-.24-.1-.11-.15-.43-.05-.87l6.3-27.85a4.9 4.9 0 0 1 4.25-3.4h28.5c.45 0 .74.12.84.24.09.11.14.43.04.87Zm-.88-11.51h-28.5c-6.61 0-12.94 5.05-14.4 11.5l-6.3 27.86c-.79 3.5-.04 7.02 2.07 9.66a11.35 11.35 0 0 0 8.96 4.14h28.5c6.61 0 12.94-5.05 14.4-11.5l6.3-27.86c.79-3.5.04-7.02-2.07-9.66a11.34 11.34 0 0 0-8.96-4.14ZM57.3 139.86H20.26c-6.62 0-12.94 5.05-14.4 11.5l-.47 2.08c-.76 3.36-.15 6.8 1.72 9.68a12.54 12.54 0 0 0 8.15 5.5l26.9 5.34a2.22 2.22 0 0 1 1.75 2.69l-.58 2.57a4.9 4.9 0 0 1-4.25 3.4H3.62c-1.08 0-2.02.75-2.25 1.8l-1.32 5.8a2.3 2.3 0 0 0 2.25 2.8h36.8c6.6 0 12.93-5.05 14.39-11.5l.58-2.58c.76-3.36.15-6.8-1.72-9.68a12.55 12.55 0 0 0-8.15-5.5l-26.9-5.34a2.22 2.22 0 0 1-1.75-2.69l.46-2.07a4.9 4.9 0 0 1 4.26-3.4h35.71c1.09 0 2.01-.74 2.25-1.8l1.33-5.87s.04-.28.04-.43a2.3 2.3 0 0 0-2.3-2.3M182.17 139.86h-34.78c-6.61 0-12.94 5.05-14.4 11.5l-6.3 27.86c-.8 3.5-.04 7.02 2.06 9.66a11.34 11.34 0 0 0 8.97 4.14h33.47a2.3 2.3 0 0 0 2.25-1.8l1.3-5.8c.04-.16.06-.33.06-.5 0-1.25-1.07-2.3-2.35-2.3h-34.73c-.45 0-.75-.12-.84-.24-.1-.11-.14-.43-.04-.87l6.3-27.85a4.9 4.9 0 0 1 4.25-3.4h33.47c1.08 0 2-.74 2.25-1.8l1.3-5.8a2.3 2.3 0 0 0-2.24-2.8M193.5 143.6h.85c.86 0 1.15-.25 1.15-.76 0-.45-.22-.7-1.03-.7h-.97v1.45Zm0 2.6h-.71v-4.64h1.78c1.1 0 1.64.41 1.64 1.32 0 .83-.52 1.19-1.21 1.28l1.32 2.03h-.78l-1.23-2.01h-.8v2.01Zm.86-5.7a3.27 3.27 0 0 0-3.3 3.36 3.26 3.26 0 0 0 3.3 3.38 3.26 3.26 0 0 0 3.28-3.38 3.26 3.26 0 0 0-3.28-3.35Zm0-.64a4 4 0 1 1 0 8.03 4.02 4.02 0 1 1 0-8.03Z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.93 107.85"><path d="M70.77 54.77A1.77 1.77 0 1 0 69 53a1.77 1.77 0 0 0 1.77 1.77Zm-21.23 0A1.77 1.77 0 1 0 47.77 53a1.77 1.77 0 0 0 1.77 1.77Zm76.08 17.91v-6.86a3.98 3.98 0 0 0-3.98-3.98h-6.63V44.6a3.98 3.98 0 0 0-3.99-3.98H92.35l4.61-19.86a5.46 5.46 0 1 0-6.85-3.87L77.8 25.49 69.44 9.2a5.46 5.46 0 1 0-7.95 0l-8.36 16.3-12.3-8.61a5.46 5.46 0 1 0-6.86 3.87l4.6 19.86H19.9a3.98 3.98 0 0 0-3.98 3.98v17.25H9.3a3.98 3.98 0 0 0-3.98 3.98v6.64H3.98A3.98 3.98 0 0 0 0 76.44v27.42a3.98 3.98 0 0 0 3.98 3.98h122.97a3.98 3.98 0 0 0 3.98-3.98V79.53a7.08 7.08 0 0 0-5.3-6.85ZM95.4 13.28a2.25 2.25 0 1 1-2.25 2.25 2.25 2.25 0 0 1 2.25-2.26Zm19.62 52.54a.45.45 0 0 1 .44-.44h6.2a.44.44 0 0 1 .43.44v6.2a.44.44 0 0 1-.44.44h-6.2a.45.45 0 0 1-.43-.44ZM104.39 50.8v-6.2a.44.44 0 0 1 .44-.44h6.2a.44.44 0 0 1 .44.44v6.2a.44.44 0 0 1-.45.44h-6.19a.44.44 0 0 1-.44-.44Zm-18-27a20.89 20.89 0 0 1 4.32 8.22l-1.91 8.26a.44.44 0 0 1-.43.34h-5.88a18.7 18.7 0 0 0-3.57-11.58Zm14.02 20.36a.44.44 0 0 1 .44.44v6.2a.44.44 0 0 1-.44.44h-9.73a.44.44 0 0 0-.45.44v20.35a.44.44 0 0 1-.44.44h-6.2a.44.44 0 0 1-.43-.44V51.67a.44.44 0 0 0-.44-.44h-.76a.56.56 0 0 1-.56-.53 5.58 5.58 0 0 0-2.9-4.78c1.04 1.32 1.12 3.82 1.12 5.3v1.95a3.4 3.4 0 0 1-2.38 3.24l-1.43.44a1.48 1.48 0 0 0-1.01 1.72 1.52 1.52 0 0 0 .95 1.09l1.72.68a3.4 3.4 0 0 1 2.15 3.15v8.53a.44.44 0 0 1-.44.44h-6.2a.44.44 0 0 1-.44-.44v-9.3a.88.88 0 0 0-.88-.88h-1.77a.88.88 0 0 0-.89.89v9.29a.44.44 0 0 1-.44.44h-6.2a.44.44 0 0 1-.43-.44V44.59a.44.44 0 0 1 .44-.44ZM65.46 3.2a2.25 2.25 0 1 1-2.25 2.26 2.25 2.25 0 0 1 2.25-2.26Zm-10.8 27.07 5.38-10.5a30.76 30.76 0 0 0 6.34 9.65c3.01 3.4 5.47 6.78 6.77 11.2H62.33a44.42 44.42 0 0 0-5.21-6.7 43.7 43.7 0 0 1-2.84-3.41.44.44 0 0 0 .38-.24Zm.2 13.88a3.53 3.53 0 0 1 3.53 3.53v24.34a.44.44 0 0 1-.44.44h-6.2a.44.44 0 0 1-.44-.44v-9.3a.88.88 0 0 0-.88-.88h-1.78a.88.88 0 0 0-.88.89v9.29a.44.44 0 0 1-.44.44h-6.2a.44.44 0 0 1-.44-.44V47.68a3.53 3.53 0 0 1 3.54-3.53ZM35.53 17.78a2.25 2.25 0 1 1 2.25-2.25 2.25 2.25 0 0 1-2.25 2.25Zm1.82 1.94a.44.44 0 0 1 .68-.47l3.36 2.35c-1.16 7.42 2.15 12.13 6.63 16.83l1.99 2.18h-7.46a.44.44 0 0 1-.43-.34Zm-17.9 24.87a.44.44 0 0 1 .44-.44h13.72a3.53 3.53 0 0 1 3.54 3.53v10.63a3.53 3.53 0 0 1-3.54 3.53h-7.08v10.18a.44.44 0 0 1-.44.44h-6.2a.44.44 0 0 1-.44-.44Zm17.7 21.23v6.2a.44.44 0 0 1-.45.44h-6.19a.44.44 0 0 1-.44-.44v-6.2a.44.44 0 0 1 .44-.44h6.2a.44.44 0 0 1 .44.44Zm-28.31 0a.44.44 0 0 1 .44-.44h6.2a.44.44 0 0 1 .43.44v6.2a.44.44 0 0 1-.44.44h-6.2a.44.44 0 0 1-.43-.44Zm7.56 24.6a1.52 1.52 0 0 0 .95 1.09l1.72.68a3.4 3.4 0 0 1 2.15 3.15v8.53a.44.44 0 0 1-.44.44h-6.2a.44.44 0 0 1-.44-.44v-9.3a.88.88 0 0 0-.88-.88H11.5a.88.88 0 0 0-.88.88v9.3a.44.44 0 0 1-.45.44H3.98a.44.44 0 0 1-.44-.45V76.44a.44.44 0 0 1 .44-.44h6.2a.44.44 0 0 1 .44.44v9.3a.88.88 0 0 0 .88.87h1.77a.88.88 0 0 0 .88-.88v-9.29a.44.44 0 0 1 .45-.44h6.19a.44.44 0 0 1 .44.44v8.57a3.4 3.4 0 0 1-2.38 3.24l-1.43.45a1.48 1.48 0 0 0-1 1.72Zm26.05 12.12a1.77 1.77 0 0 1-1.76 1.77H26.54a1.77 1.77 0 0 1-1.77-1.77v-26.1a.44.44 0 0 1 .44-.44h6.2a.44.44 0 0 1 .44.44v19.9a.88.88 0 0 0 .88.89h1.77a.88.88 0 0 0 .89-.88V76.44a.44.44 0 0 1 .44-.44h6.2a.44.44 0 0 1 .43.44Zm21.24-1.77v3.1a.44.44 0 0 1-.45.44h-6.19a.44.44 0 0 1-.44-.44V83.96a.88.88 0 0 0-.89-.88h-1.77a.88.88 0 0 0-.88.88v19.9a.44.44 0 0 1-.44.45h-6.2a.44.44 0 0 1-.44-.44V76.44a.44.44 0 0 1 .44-.44h13.72a3.53 3.53 0 0 1 3.54 3.53Zm21.23-24.33v6.2a.44.44 0 0 1-.44.44h-8.41a1.77 1.77 0 0 0-1.77 1.76v11.5a.88.88 0 0 0 .88.89h1.78a.88.88 0 0 0 .88-.88v-9.3a.44.44 0 0 1 .44-.44h6.2a.44.44 0 0 1 .44.45v16.8a.44.44 0 0 1-.44.45H70.77a3.53 3.53 0 0 1-3.54-3.54V79.53A3.53 3.53 0 0 1 70.77 76h13.72a.44.44 0 0 1 .44.44Zm21.23 6.41-.07.02a7.12 7.12 0 0 1-1.7.2h-7.96a.88.88 0 0 0-.89.89v1.77a.88.88 0 0 0 .89.88h9.29a.44.44 0 0 1 .44.45v6.19a.44.44 0 0 1-.44.44h-9.3a.88.88 0 0 0-.88.88v1.78a.88.88 0 0 0 .89.88h9.29a.44.44 0 0 1 .44.44v6.2a.44.44 0 0 1-.44.44H88.9a.44.44 0 0 1-.44-.44V76.44a.44.44 0 0 1 .44-.44h15.04a.44.44 0 0 0 .44-.44V72.9a.44.44 0 0 0-.44-.44H97.3a3.53 3.53 0 0 1-3.53-3.53V55.2a.44.44 0 0 1 .44-.44h6.2a.44.44 0 0 1 .43.44v9.29a.88.88 0 0 0 .89.88h1.77a.88.88 0 0 0 .88-.88v-9.3a.44.44 0 0 1 .44-.43h6.2a.44.44 0 0 1 .45.44L111.5 76a7.12 7.12 0 0 1-5.34 6.85Zm21.23 21.02a.44.44 0 0 1-.44.44h-6.2a.44.44 0 0 1-.44-.44V83.96a.88.88 0 0 0-.88-.88h-1.77a.88.88 0 0 0-.89.88v19.9a.44.44 0 0 1-.44.45h-6.2a.44.44 0 0 1-.43-.44V85.19a10.66 10.66 0 0 0 5.33-9.18V76h8.83a3.53 3.53 0 0 1 3.53 3.53Zm-99.08-49.1A1.77 1.77 0 1 0 26.54 53a1.77 1.77 0 0 0 1.77 1.77Z"/></svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 283.46 53.18"><title>logo</title><path d="M37.42,5.88Q32.63,2.37,23.76,2.36h-22V53.64h8.93v-22H23.84q8.64,0,13.51-3.62t4.87-11.32Q42.22,9.4,37.42,5.88ZM31,22.36q-2.31,1.76-7.14,1.76H10.65V9.91H23.84q4.83,0,7.14,1.61c1.54,1.07,2.3,2.86,2.3,5.35S32.52,21.19,31,22.36Z" transform="translate(-1.72 -1.41)"/><path d="M71.67,21.7A14.34,14.34,0,0,0,66.39,18a18.17,18.17,0,0,0-6.88-1.25,17.34,17.34,0,0,0-7.4,1.5,16.35,16.35,0,0,0-5.46,4.07,17.66,17.66,0,0,0-3.4,6,22.29,22.29,0,0,0-1.18,7.32A21.42,21.42,0,0,0,43.32,43a18.31,18.31,0,0,0,3.52,6,16.4,16.4,0,0,0,5.53,4.07,17,17,0,0,0,7.21,1.5,17.69,17.69,0,0,0,5.86-1A15.18,15.18,0,0,0,70.2,51a15.66,15.66,0,0,0,3.44-4,16.2,16.2,0,0,0,2-5H67.27q-1.9,5.56-7.91,5.56a7.87,7.87,0,0,1-6-2.62A11,11,0,0,1,50.57,38H76.13c.05-.53.08-1,.08-1.28v-1A25.55,25.55,0,0,0,75,27.67,16.37,16.37,0,0,0,71.67,21.7ZM50.72,32a8.68,8.68,0,0,1,.55-3,8,8,0,0,1,1.64-2.71,8.35,8.35,0,0,1,2.68-1.94,8.66,8.66,0,0,1,3.7-.73,8.48,8.48,0,0,1,3.62.73,8.2,8.2,0,0,1,2.64,1.9A8.06,8.06,0,0,1,67.16,29,9,9,0,0,1,67.71,32Z" transform="translate(-1.72 -1.41)"/><path d="M107.12,19.83a10.32,10.32,0,0,0-3.85-2.23,15.27,15.27,0,0,0-4.8-.73,14.43,14.43,0,0,0-3.37.4A14.83,14.83,0,0,0,92,18.37a10.08,10.08,0,0,0-2.49,1.68A5.64,5.64,0,0,0,88,22.21V17.75H79.65V53.64h8.42v-21a10.88,10.88,0,0,1,.66-4,7.91,7.91,0,0,1,1.83-2.82,8.13,8.13,0,0,1,2.64-1.72,8.44,8.44,0,0,1,3.15-.58,5.12,5.12,0,0,1,4.32,1.9,6.89,6.89,0,0,1,1.47,4.32V53.64h8.42V29.1a14.79,14.79,0,0,0-.92-5.46A10.32,10.32,0,0,0,107.12,19.83Z" transform="translate(-1.72 -1.41)"/><path d="M164.4,27.92a15.7,15.7,0,0,0-4.88-2.53,51.16,51.16,0,0,0-5.67-1.47l-10-1.91A14.66,14.66,0,0,1,138.28,20a4.58,4.58,0,0,1-2.23-4A4.47,4.47,0,0,1,137,13.1a7.6,7.6,0,0,1,2.49-2A13.26,13.26,0,0,1,143,9.87a20.36,20.36,0,0,1,4.1-.4,13.51,13.51,0,0,1,4.17.66,17.45,17.45,0,0,1,3.85,1.76,18.58,18.58,0,0,1,3.3,2.56,15.06,15.06,0,0,1,2.45,3.08l7-5.35a17.87,17.87,0,0,0-3.19-4A23.81,23.81,0,0,0,160,4.75a25.39,25.39,0,0,0-6-2.43,26.14,26.14,0,0,0-7-.91,33,33,0,0,0-7,.77,19.11,19.11,0,0,0-6.35,2.6,14.26,14.26,0,0,0-4.69,4.8,12.83,12.83,0,0,0-1.78,6.7,12.12,12.12,0,0,0,1.54,6.41,14.12,14.12,0,0,0,3.7,4.1,16.57,16.57,0,0,0,4.47,2.35,30.42,30.42,0,0,0,3.92,1.06l11.2,2.12a16.52,16.52,0,0,1,6.12,2.27,4.74,4.74,0,0,1,2.09,4.1,6.66,6.66,0,0,1-3.26,6.05,15.65,15.65,0,0,1-8.32,2q-11.87,0-16.55-11.64l-7.25,4.76a17.88,17.88,0,0,0,3,5.53,23.07,23.07,0,0,0,4.57,4.35,25.39,25.39,0,0,0,7.33,3.59,28.32,28.32,0,0,0,8.42,1.25,33.84,33.84,0,0,0,9-1.1A17.31,17.31,0,0,0,163.78,50a15.48,15.48,0,0,0,3.78-4.95,14.55,14.55,0,0,0,1.52-6.57,14.25,14.25,0,0,0-1.28-6.42A12.24,12.24,0,0,0,164.4,27.92Z" transform="translate(-1.72 -1.41)"/><path d="M183.29,6.39l-8.42.08V17.75h-5.64v7.1h5.64V45.58a9.14,9.14,0,0,0,.29,2.64,6.57,6.57,0,0,0,1.91,3.4,9,9,0,0,0,3.37,1.94,13.5,13.5,0,0,0,4.32.66h4.68V46.75c-2.18,0-3.77.2-4.72-.44a3.13,3.13,0,0,1-1.43-2.78V24.85h6.59v-7.1h-6.59Z" transform="translate(-1.72 -1.41)"/><path d="M222.26,22.36a17.84,17.84,0,0,0-5.82-4.07,19.93,19.93,0,0,0-15.17,0,17.36,17.36,0,0,0-5.78,4.07,17.94,17.94,0,0,0-3.67,6,21.6,21.6,0,0,0,0,14.65,18,18,0,0,0,3.67,6,17.22,17.22,0,0,0,5.78,4.07,19.93,19.93,0,0,0,15.17,0A17.69,17.69,0,0,0,222.26,49,18.14,18.14,0,0,0,226,43a21,21,0,0,0,0-14.65A18.08,18.08,0,0,0,222.26,22.36Zm-4,17.69a10.94,10.94,0,0,1-1.91,3.7,9.85,9.85,0,0,1-3.15,2.6,9.36,9.36,0,0,1-11.79-2.6,11.54,11.54,0,0,1-1.83-3.7,15,15,0,0,1-.62-4.36,15.32,15.32,0,0,1,.62-4.39,11.86,11.86,0,0,1,1.83-3.78,8.9,8.9,0,0,1,7.43-3.62,9.17,9.17,0,0,1,4.36,1,9.68,9.68,0,0,1,3.15,2.63,11.23,11.23,0,0,1,1.91,3.78,15.68,15.68,0,0,1,.62,4.39A15.37,15.37,0,0,1,218.27,40.05Z" transform="translate(-1.72 -1.41)"/><path d="M247.31,16.94A9.15,9.15,0,0,0,242.77,18a12.84,12.84,0,0,0-3.59,3.11V17.6h-8.35v36h8.42V33.13a10.25,10.25,0,0,1,.59-3.66,7.4,7.4,0,0,1,1.53-2.53,6.08,6.08,0,0,1,2.2-1.47,7.31,7.31,0,0,1,2.57-.47,8.2,8.2,0,0,1,3.86.8V17.23A13.59,13.59,0,0,0,247.31,16.94Z" transform="translate(-1.72 -1.41)"/><path d="M284,27.67a16.38,16.38,0,0,0-3.37-6A14.31,14.31,0,0,0,275.37,18a18.22,18.22,0,0,0-6.89-1.25,17.37,17.37,0,0,0-7.4,1.5,16.21,16.21,0,0,0-5.45,4.07,17.68,17.68,0,0,0-3.41,6,22.55,22.55,0,0,0-1.17,7.32A21.41,21.41,0,0,0,252.29,43a18.31,18.31,0,0,0,3.52,6,16.5,16.5,0,0,0,5.53,4.07,17,17,0,0,0,7.21,1.5,17.65,17.65,0,0,0,5.86-1A15.07,15.07,0,0,0,279.17,51a15.89,15.89,0,0,0,3.45-4,16.43,16.43,0,0,0,2-5h-8.35q-1.9,5.56-7.91,5.56a7.87,7.87,0,0,1-6-2.62A11.1,11.1,0,0,1,259.54,38h25.57c.05-.53.07-1,.07-1.28v-1A25.85,25.85,0,0,0,284,27.67ZM259.69,32a8.68,8.68,0,0,1,.55-3,8.24,8.24,0,0,1,4.32-4.65,8.66,8.66,0,0,1,3.7-.73,8.49,8.49,0,0,1,3.63.73,8.05,8.05,0,0,1,2.63,1.9A7.9,7.9,0,0,1,276.13,29a9,9,0,0,1,.55,3.08Z" transform="translate(-1.72 -1.41)"/></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1,86 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="1432.000000pt" height="600.000000pt" viewBox="0 0 1432.000000 600.000000"
preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,600.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M2150 4534 c-14 -8 -86 -41 -160 -73 -394 -172 -645 -282 -925 -405
-309 -137 -354 -156 -685 -301 -186 -82 -216 -100 -187 -111 10 -4 423 122
1003 305 907 287 988 311 1008 297 54 -35 367 -206 378 -206 7 0 26 13 43 29
26 26 45 32 149 50 65 11 121 23 125 26 10 10 -22 30 -234 142 -110 59 -265
142 -344 185 -79 43 -144 78 -145 77 -1 0 -12 -7 -26 -15z"/>
<path d="M2893 4040 c-95 -15 -179 -30 -188 -34 -13 -5 -15 -118 -15 -1016 l0
-1010 198 2 197 3 3 308 c1 169 6 307 11 307 16 0 157 -156 236 -262 44 -58
116 -163 160 -232 l79 -126 228 0 c125 0 228 2 228 5 0 9 -115 203 -163 275
-109 161 -242 330 -365 462 l-60 64 117 119 c64 66 182 192 261 280 79 88 154
172 168 188 l26 27 -240 0 -240 0 -131 -152 c-150 -175 -291 -331 -304 -336
-5 -2 -9 245 -9 577 0 459 -3 581 -12 580 -7 0 -90 -13 -185 -29z"/>
<path d="M5893 4038 l-183 -30 0 -830 c0 -899 2 -932 55 -1024 70 -121 219
-190 420 -196 l88 -3 23 139 c12 77 25 149 28 161 5 20 0 23 -53 34 -72 14
-135 64 -151 119 -6 24 -10 324 -10 850 0 767 -1 812 -17 811 -10 -1 -100 -15
-200 -31z"/>
<path d="M3184 3987 c-2 -7 -3 -76 -2 -152 l3 -139 75 -43 c84 -48 88 -56 89
-179 1 -36 7 -68 16 -80 14 -18 17 -16 67 39 l53 57 75 3 75 2 3 37 3 36 127
7 c144 7 152 9 152 29 0 14 -39 37 -255 151 -60 32 -189 101 -285 152 -96 51
-179 93 -183 93 -4 0 -10 -6 -13 -13z"/>
<path d="M1613 3879 c-344 -44 -553 -250 -553 -545 0 -160 37 -253 144 -360
83 -81 179 -133 391 -209 291 -106 362 -165 353 -297 -5 -71 -27 -105 -91
-137 -143 -71 -457 -43 -669 59 -23 11 -43 20 -44 20 -1 0 -12 -30 -25 -67
-12 -38 -37 -108 -55 -156 -19 -49 -34 -93 -34 -98 0 -12 103 -62 180 -87 107
-35 227 -53 380 -59 428 -16 688 109 769 371 16 53 21 94 21 186 0 187 -45
300 -161 404 -64 58 -252 151 -444 221 -143 52 -227 102 -263 155 -20 29 -23
44 -20 93 4 46 10 63 34 88 47 50 86 61 224 66 140 5 211 -7 337 -57 41 -17
78 -30 83 -30 4 0 17 24 29 53 36 91 91 249 91 262 0 14 -126 66 -231 94 -134
36 -310 48 -446 30z"/>
<path d="M6590 2910 l0 -930 205 0 205 0 2 393 3 392 355 0 355 0 2 -390 2
-390 206 -3 205 -2 0 930 0 930 -211 0 -210 0 3 -352 3 -353 -355 0 -355 0 -3
353 -2 352 -205 0 -205 0 0 -930z"/>
<path d="M13187 3790 c-92 -15 -174 -31 -183 -34 -13 -5 -15 -79 -11 -678 4
-736 5 -754 65 -877 99 -202 355 -292 674 -236 93 16 198 52 198 68 0 14 -52
291 -56 296 -2 2 -36 -5 -76 -15 -89 -22 -251 -25 -288 -5 -47 26 -81 65 -97
116 -13 40 -17 111 -20 348 l-5 297 241 0 241 0 0 165 0 165 -237 2 -238 3 -3
208 c-2 189 -4 207 -20 206 -9 -1 -92 -14 -185 -29z"/>
<path d="M4515 3420 c-102 -15 -231 -41 -244 -49 -19 -12 30 -317 50 -315 8 1
52 10 99 20 108 23 357 26 410 5 78 -31 129 -108 130 -193 l0 -47 -32 7 c-18
4 -112 7 -208 7 -152 -1 -186 -4 -257 -24 -148 -42 -244 -115 -300 -230 -24
-48 -28 -71 -31 -162 -9 -263 96 -401 357 -467 82 -21 452 -23 576 -4 91 15
231 41 258 48 16 5 17 37 17 485 0 406 -3 491 -16 552 -42 186 -137 289 -319
348 -60 19 -96 22 -250 25 -99 1 -207 -1 -240 -6z m429 -836 c14 -5 16 -29 16
-159 l0 -154 -56 -7 c-31 -3 -100 -4 -154 -2 -129 6 -184 31 -212 96 -49 110
14 208 150 232 48 9 228 5 256 -6z"/>
<path d="M10434 3411 c-153 -38 -251 -108 -308 -221 -82 -165 -45 -389 83
-501 49 -43 160 -101 340 -175 77 -32 126 -59 153 -85 37 -35 40 -42 35 -75
-3 -20 -13 -45 -22 -54 -55 -60 -317 -50 -533 21 -35 12 -66 19 -69 16 -5 -6
-63 -282 -63 -304 0 -13 94 -46 195 -68 157 -34 448 -29 577 10 74 22 166 73
209 116 65 65 92 136 97 253 10 232 -77 346 -353 462 -268 112 -295 130 -295
200 0 48 24 74 87 95 50 16 240 5 333 -19 41 -11 81 -22 89 -24 10 -2 21 30
41 115 16 64 31 135 35 156 l6 38 -88 22 c-137 33 -208 41 -348 40 -88 0 -153
-6 -201 -18z"/>
<path d="M11850 3404 c-105 -31 -174 -70 -252 -142 -72 -67 -130 -150 -167
-240 -48 -117 -56 -164 -56 -347 0 -148 3 -180 23 -250 68 -235 223 -387 468
-457 69 -20 101 -23 254 -22 124 0 203 5 270 18 94 17 196 48 212 64 7 7 -37
310 -45 319 -1 1 -29 -7 -62 -18 -178 -59 -414 -63 -540 -9 -84 36 -175 145
-175 210 0 19 7 20 453 22 l452 3 0 175 c-1 150 -4 186 -23 253 -54 189 -157
316 -315 390 -133 62 -345 76 -497 31z m318 -330 c76 -38 121 -103 137 -201
l7 -43 -266 0 c-305 0 -284 -8 -245 97 25 67 95 143 149 160 19 6 64 11 101
12 51 1 76 -4 117 -25z"/>
<path d="M8533 2918 c5 -538 7 -562 73 -696 60 -124 166 -207 314 -248 160
-44 532 -22 793 47 l37 10 0 684 0 685 -200 0 -200 0 0 -549 0 -549 -100 -7
c-171 -12 -248 22 -292 133 -22 56 -23 65 -26 515 l-3 457 -200 0 -201 0 5
-482z"/>
<path d="M646 3292 c-5 -8 -15 -170 -35 -567 -6 -99 -22 -412 -37 -695 -15
-283 -24 -528 -20 -543 7 -31 34 -47 46 -27 5 8 75 19 206 31 110 10 361 34
559 54 502 49 1186 115 1815 176 373 36 538 56 546 65 6 7 8 31 5 56 l-6 43
-101 3 c-118 3 -117 2 -200 135 l-51 82 -84 -4 c-46 -2 -90 -8 -96 -13 -8 -7
-13 -36 -13 -76 0 -58 -3 -69 -27 -94 l-27 -28 -241 0 c-240 0 -242 0 -263 23
-16 17 -22 36 -22 70 0 25 -4 48 -9 52 -5 3 -76 0 -157 -7 l-147 -12 -61 -41
c-143 -97 -276 -125 -584 -125 -200 0 -276 8 -415 42 -79 19 -99 20 -200 11
-62 -5 -115 -7 -119 -3 -7 5 -29 132 -88 510 -83 531 -139 870 -145 879 -7 13
-22 14 -29 3z"/>
<path d="M3617 2822 l-36 -37 40 -48 c22 -26 45 -45 50 -41 5 3 9 36 9 73 0
91 -14 103 -63 53z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="248px" height="35px" viewBox="0 0 248 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
<title>Rehaboteket</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.405797101 34.0869565 0.405797101 34.0869565 34.4925507 0 34.4925507"></polygon>
</defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-1203.000000, -1162.000000)">
<g id="Group-25-Copy-3" transform="translate(1142.000000, 1117.000000)">
<g id="Rehaboteket" transform="translate(61.000000, 45.000000)">
<path d="M40.6137971,4.42744928 C41.153,4.37875362 41.645029,4.32955072 42.0863333,4.27984058 C42.5281449,4.23114493 42.9633623,4.18752174 43.393,4.151 C43.8221304,4.11447826 44.2705362,4.08404348 44.7372029,4.05918841 C45.2028551,4.03534783 45.7182174,4.02215942 46.2827826,4.02215942 C47.5351739,4.02215942 48.7738696,4.14491304 50.0014058,4.38991304 C51.2284348,4.63592754 52.3210435,5.06556522 53.2777101,5.67882609 C54.2348841,6.29310145 55.0140145,7.12143478 55.6156087,8.16382609 C56.2166957,9.20723188 56.5174928,10.5260725 56.5174928,12.1208551 C56.5174928,13.0785362 56.3577101,13.9499855 56.0386522,14.7352029 C55.7195942,15.5209275 55.3148116,16.2204203 54.8243043,16.8336812 C54.3322754,17.446942 53.7748116,17.9815797 53.1493768,18.435058 C52.5234348,18.8895507 51.9157536,19.2633913 51.3268406,19.5581014 L50.885029,19.7787536 L58.578942,30.9331014 C57.9164783,31.0066522 57.1677826,31.0436812 56.3333623,31.0436812 C55.6708986,31.0436812 55.0079275,31.0066522 54.3454638,30.9331014 L45.878,18.673971 L45.878,18.5268696 L46.1727101,18.4533188 C46.8351739,18.2818696 47.5351739,18.0485362 48.2711884,17.7538261 C49.0072029,17.4596232 49.6879275,17.0731014 50.3138696,16.5937536 C50.9398116,16.1154203 51.4612609,15.5391884 51.8787246,14.8640435 C52.2956812,14.1894058 52.5046667,13.3732464 52.5046667,12.4160725 C52.5046667,10.6488261 51.9827101,9.33657971 50.9398116,8.4767971 C49.896913,7.61802899 48.4918406,7.18788406 46.7251014,7.18788406 C46.3076377,7.18788406 45.9206087,7.20107246 45.565029,7.22542029 C45.208942,7.24976812 44.8107536,7.2867971 44.368942,7.33549275 L44.368942,30.9331014 C44.0985797,30.9574493 43.7977826,30.9823043 43.467058,31.0066522 C43.1358261,31.0315072 42.8228551,31.0436812 42.5281449,31.0436812 C42.2334348,31.0436812 41.9143768,31.037087 41.5714783,31.024913 C41.2265507,31.0127391 40.908,30.9823043 40.6137971,30.9331014 L40.6137971,4.42744928 Z" id="Fill-1" fill="#1D1D1B"></path>
<path d="M73.7460145,19.6678696 C73.7460145,18.981058 73.6536957,18.3246812 73.4695652,17.6987391 C73.2854348,17.0727971 73.0155797,16.527 72.6594928,16.0603333 C72.3034058,15.5946812 71.8499275,15.2198261 71.2980435,14.9377971 C70.7451449,14.6557681 70.0887681,14.5142464 69.3278986,14.5142464 C67.8310145,14.5142464 66.6831159,14.9687391 65.8857246,15.8762029 C65.0883333,16.7841739 64.6034058,18.0487391 64.4319565,19.6678696 L73.7460145,19.6678696 Z M64.3949275,22.3922899 C64.4441304,24.4542464 64.9777536,25.9633043 65.9968116,26.9204783 C67.0143478,27.8781594 68.5178261,28.357 70.5062319,28.357 C72.2486232,28.357 73.9047826,28.0496087 75.4762319,27.4358406 C75.672029,27.8041014 75.8313043,28.2525072 75.9545652,28.7795362 C76.0768116,29.3075797 76.1508696,29.8285217 76.1757246,30.3443913 C75.3656522,30.6883043 74.4754348,30.944971 73.506087,31.1174348 C72.5367391,31.2883768 71.4634058,31.3746087 70.2855797,31.3746087 C68.567029,31.3746087 67.0944928,31.1351884 65.867971,30.6573623 C64.6404348,30.179029 63.627971,29.5043913 62.8300725,28.6324348 C62.0326812,27.7614928 61.4498551,26.7307681 61.0821014,25.5402609 C60.7133333,24.3492464 60.5292029,23.0425797 60.5292029,21.6192464 C60.5292029,20.2207681 60.7072464,18.9135942 61.0638406,17.6987391 C61.418913,16.4838841 61.9652174,15.4283043 62.7017391,14.5330145 C63.4377536,13.6372174 64.3639855,12.9255507 65.4814493,12.3975072 C66.5973913,11.869971 67.9167391,11.6062029 69.4384783,11.6062029 C70.739058,11.6062029 71.8803623,11.8268551 72.8618841,12.2686667 C73.8434058,12.7104783 74.6661594,13.3176522 75.3286232,14.0906957 C75.9915942,14.8637391 76.4942754,15.7843913 76.8376812,16.8521449 C77.181087,17.9198986 77.3535507,19.0789565 77.3535507,20.3313478 C77.3535507,20.6742464 77.3408696,21.0369275 77.317029,21.4168551 C77.2921739,21.7972899 77.2668116,22.1224348 77.242971,22.3922899 L64.3949275,22.3922899 Z" id="Fill-3" fill="#1D1D1B"></path>
<path d="M82.1026957,3.94845652 C82.3720435,3.89976087 82.6733478,3.86323913 83.0045797,3.83787681 C83.3358116,3.81403623 83.6361014,3.80135507 83.9064638,3.80135507 C84.1763188,3.80135507 84.4826957,3.81403623 84.8271159,3.83787681 C85.1700145,3.86323913 85.4768986,3.89976087 85.7472609,3.94845652 L85.7472609,14.9191812 C85.967913,14.5757754 86.2438551,14.2080217 86.5755942,13.8149058 C86.9068261,13.4222971 87.3116087,13.0601232 87.789942,12.7288913 C88.2687826,12.3976594 88.8211739,12.1278043 89.4471159,11.9188188 C90.0725507,11.7108478 90.7654493,11.6063551 91.5268261,11.6063551 C93.6856667,11.6063551 95.2875507,12.2262101 96.3314638,13.4649058 C97.3738551,14.7046159 97.8958116,16.5388188 97.8958116,18.9690362 L97.8958116,30.9334565 C97.6254493,30.9821522 97.3251594,31.0191812 96.9934203,31.0440362 C96.6621884,31.0673696 96.3613913,31.080558 96.0915362,31.080558 C95.8216812,31.080558 95.5213913,31.0673696 95.1896522,31.0440362 C94.8584203,31.0191812 94.5576232,30.9821522 94.2877681,30.9334565 L94.2877681,19.9627319 C94.2877681,18.2203406 93.9991449,16.938529 93.422913,16.1157754 C92.8456667,15.293529 91.9681304,14.8826594 90.7903043,14.8826594 C90.1283478,14.8826594 89.4897246,14.9993261 88.8764638,15.2326594 C88.2621884,15.4659928 87.7224783,15.8337464 87.2568261,16.3364275 C86.7896522,16.8401232 86.4218986,17.4959928 86.1520435,18.3060652 C85.8816812,19.1161377 85.7472609,20.0976594 85.7472609,21.2511377 L85.7472609,30.9334565 C85.4768986,30.9821522 85.1700145,31.0191812 84.8271159,31.0440362 C84.4826957,31.0673696 84.1763188,31.080558 83.9064638,31.080558 C83.6604493,31.080558 83.3662464,31.0673696 83.0228406,31.0440362 C82.6789275,31.0191812 82.3720435,30.9821522 82.1026957,30.9334565 L82.1026957,3.94845652 Z" id="Fill-5" fill="#1D1D1B"></path>
<path d="M113.393964,22.0614638 C113.025703,22.0117536 112.559036,21.9640725 111.994978,21.9138551 C111.429906,21.8651594 110.951572,21.8397971 110.558964,21.8397971 C109.037225,21.8397971 107.877659,22.1223333 107.080268,22.6868986 C106.28237,23.251971 105.883674,24.1102319 105.883674,25.2637101 C105.883674,26.0007391 106.018601,26.576971 106.288964,26.9944348 C106.558819,27.4118986 106.896138,27.7304493 107.301428,27.9511014 C107.70621,28.1727681 108.154109,28.3071884 108.644616,28.3568986 C109.135123,28.4055942 109.60179,28.429942 110.043601,28.429942 C110.607659,28.429942 111.190993,28.399 111.792587,28.3381304 C112.393674,28.2767536 112.927804,28.184942 113.393964,28.0621884 L113.393964,22.0614638 Z M113.393964,18.489942 C113.393964,17.0422609 113.025703,16.0363913 112.289688,15.4708116 C111.553167,14.9072609 110.485413,14.6247246 109.086935,14.6247246 C108.227152,14.6247246 107.423674,14.6926957 106.675486,14.8271159 C105.926283,14.9625507 105.196355,15.140087 104.485196,15.3612464 C104.018529,14.5516812 103.785196,13.5823333 103.785196,12.4532029 C104.619616,12.1828406 105.540268,11.9743623 106.546645,11.8272609 C107.552514,11.6796522 108.521862,11.6061014 109.454688,11.6061014 C111.908746,11.6061014 113.774399,12.1645797 115.050123,13.281029 C116.326355,14.3979855 116.964471,16.184 116.964471,18.6375507 L116.964471,30.4548696 C116.105703,30.6516812 115.062804,30.8540725 113.835775,31.0620435 C112.607732,31.2705217 111.356355,31.3745072 110.08063,31.3745072 C108.877949,31.3745072 107.792442,31.264942 106.822587,31.0437826 C105.853239,30.8226232 105.030486,30.4670435 104.355848,29.9765362 C103.68121,29.486029 103.159254,28.860087 102.7915,28.0982029 C102.423746,27.3378406 102.239109,26.4182029 102.239109,25.3377681 C102.239109,24.2826957 102.453674,23.3559565 102.883819,22.558058 C103.312949,21.7606667 103.896283,21.0982029 104.632297,20.5701594 C105.368819,20.0431304 106.215413,19.6495072 107.172587,19.3918261 C108.129761,19.1341449 109.135123,19.0058116 110.19121,19.0058116 C110.97592,19.0058116 111.620123,19.0235652 112.123819,19.0611014 C112.6265,19.0976232 113.050051,19.1407391 113.393964,19.1894348 L113.393964,18.489942 Z" id="Fill-7" fill="#1D1D1B"></path>
<path d="M126.057775,27.8779565 C126.499587,28.0245507 126.971833,28.130058 127.475022,28.1904203 C127.97821,28.2523043 128.499659,28.2827391 129.039877,28.2827391 C129.947341,28.2827391 130.788355,28.1422319 131.561906,27.8596957 C132.334949,27.5771594 133.002993,27.148029 133.568065,26.5707826 C134.13263,25.9945507 134.580529,25.2585362 134.911761,24.3622319 C135.242486,23.4664348 135.408862,22.4052754 135.408862,21.1777391 C135.408862,19.1406377 135.052268,17.558029 134.341109,16.4288986 C133.628935,15.2997681 132.450601,14.7352029 130.806616,14.7352029 C130.242051,14.7352029 129.68408,14.8270145 129.132196,15.0111449 C128.580312,15.1957826 128.070022,15.4899855 127.603862,15.8942609 C127.137703,16.2995507 126.763355,16.8397681 126.481326,17.5144058 C126.19879,18.190058 126.057775,19.0057101 126.057775,19.9628841 L126.057775,27.8779565 Z M122.41321,3.9486087 C122.683065,3.89991304 122.983862,3.86288406 123.315094,3.83802899 C123.646833,3.81418841 123.947123,3.80150725 124.217486,3.80150725 C124.486326,3.80150725 124.793717,3.81418841 125.13763,3.83802899 C125.480529,3.86288406 125.787413,3.89991304 126.057775,3.9486087 L126.057775,14.3304203 C126.499587,13.5933913 127.186906,12.9562899 128.119225,12.4160725 C129.052051,11.8758551 130.181181,11.606 131.506616,11.606 C132.634732,11.606 133.678138,11.7901304 134.635819,12.1583913 C135.592993,12.5261449 136.414225,13.0967971 137.102051,13.8703478 C137.788862,14.6428841 138.322993,15.6254203 138.703428,16.814913 C139.083862,18.0059275 139.274587,19.411 139.274587,21.0306377 C139.274587,24.269913 138.359514,26.8041159 136.531399,28.6322319 C134.702775,30.4608551 132.071181,31.374913 128.635094,31.374913 C127.554659,31.374913 126.444804,31.2704203 125.302993,31.061942 C124.162196,30.853971 123.198428,30.615058 122.41321,30.3441884 L122.41321,3.9486087 Z" id="Fill-9" fill="#1D1D1B"></path>
<path d="M151.864442,27.398913 C153.238065,27.398913 154.225674,26.8901449 154.827775,25.8715942 C155.428862,24.8525362 155.729659,23.3865942 155.729659,21.4722464 C155.729659,19.5578986 155.428862,18.0914493 154.827775,17.0728986 C154.225674,16.0548551 153.238065,15.5450725 151.864442,15.5450725 C150.514152,15.5450725 149.538717,16.0548551 148.937123,17.0728986 C148.336036,18.0914493 148.036254,19.5578986 148.036254,21.4722464 C148.036254,23.3865942 148.336036,24.8525362 148.937123,25.8715942 C149.538717,26.8901449 150.514152,27.398913 151.864442,27.398913 M151.864442,31.3747101 C150.318355,31.3747101 148.974659,31.1231159 147.833355,30.6204348 C146.692051,30.1177536 145.746543,29.4177536 144.998355,28.5219565 C144.249659,27.6266667 143.685601,26.5771739 143.304659,25.3744928 C142.924225,24.1723188 142.734514,22.8707246 142.734514,21.4722464 C142.734514,20.0732609 142.924225,18.7605072 143.304659,17.532971 C143.685601,16.3064493 144.249659,15.2447826 144.998355,14.3484783 C145.746543,13.4526812 146.692051,12.7471014 147.833355,12.2322464 C148.974659,11.7163768 150.318355,11.4586957 151.864442,11.4586957 C153.411036,11.4586957 154.760312,11.7163768 155.91379,12.2322464 C157.067268,12.7471014 158.024442,13.4526812 158.785312,14.3484783 C159.545674,15.2447826 160.110746,16.3064493 160.4785,17.532971 C160.847268,18.7605072 161.030891,20.0732609 161.030891,21.4722464 C161.030891,22.8707246 160.847268,24.1723188 160.4785,25.3744928 C160.110746,26.5771739 159.545674,27.6266667 158.785312,28.5219565 C158.024442,29.4177536 157.067268,30.1177536 155.91379,30.6204348 C154.760312,31.1231159 153.411036,31.3747101 151.864442,31.3747101" id="Fill-11" fill="#1D1D1B"></path>
<path d="M166.221391,14.9562609 L163.349362,14.9562609 L163.202261,14.4403913 L169.534725,7.37242029 L169.828928,7.37242029 L169.828928,12.0477101 L174.615304,12.0477101 C174.712696,12.4651739 174.762406,12.9313333 174.762406,13.4466957 C174.762406,13.717058 174.749217,13.9742319 174.725377,14.2192319 C174.700522,14.4652464 174.664,14.7112609 174.615304,14.9562609 L169.828928,14.9562609 L169.828928,23.5708261 C169.828928,24.6015507 169.871029,25.4237971 169.958275,26.037058 C170.043493,26.6503188 170.190594,27.1230725 170.39958,27.4543043 C170.607551,27.7855362 170.890087,28.0066957 171.246174,28.1172754 C171.601754,28.2273478 172.049652,28.2826377 172.590377,28.2826377 C173.007333,28.2826377 173.399435,28.2522029 173.768203,28.1903188 C174.136464,28.1299565 174.467696,28.0619855 174.762406,27.9884348 C174.933855,28.4794493 175.037841,28.9826377 175.07487,29.4974928 C175.111899,30.0128551 175.130159,30.4673478 175.130159,30.8599565 C174.639145,30.9822029 174.123783,31.0740145 173.584072,31.1353913 C173.043855,31.1962609 172.467116,31.2282174 171.853855,31.2282174 C170.086609,31.2282174 168.706391,30.7985797 167.712188,29.9398116 C166.717986,29.0805362 166.221391,27.6566957 166.221391,25.6687971 L166.221391,14.9562609 Z" id="Fill-13" fill="#1D1D1B"></path>
<path d="M190.775819,19.6678696 C190.775819,18.981058 190.682993,18.3246812 190.49937,17.6987391 C190.315746,17.0727971 190.045384,16.527 189.689297,16.0603333 C189.33321,15.5946812 188.879732,15.2198261 188.327848,14.9377971 C187.774949,14.6557681 187.118572,14.5142464 186.357703,14.5142464 C184.860819,14.5142464 183.71292,14.9687391 182.915529,15.8762029 C182.118138,16.7841739 181.63321,18.0487391 181.461761,19.6678696 L190.775819,19.6678696 Z M181.424732,22.3922899 C181.473428,24.4542464 182.007558,25.9633043 183.026616,26.9204783 C184.044152,27.8781594 185.54763,28.357 187.535529,28.357 C189.278935,28.357 190.935094,28.0496087 192.506036,27.4358406 C192.701833,27.8041014 192.861109,28.2525072 192.98437,28.7795362 C193.107123,29.3075797 193.180167,29.8285217 193.205529,30.3443913 C192.395457,30.6883043 191.505239,30.944971 190.536399,31.1174348 C189.566036,31.2883768 188.49321,31.3746087 187.315384,31.3746087 C185.596326,31.3746087 184.124804,31.1351884 182.897775,30.6573623 C181.670239,30.179029 180.657775,29.5043913 179.859877,28.6324348 C179.062486,27.7614928 178.480167,26.7307681 178.111399,25.5402609 C177.743138,24.3492464 177.559514,23.0425797 177.559514,21.6192464 C177.559514,20.2207681 177.737051,18.9135942 178.093138,17.6987391 C178.44821,16.4838841 178.994514,15.4283043 179.732051,14.5330145 C180.467558,13.6372174 181.39379,12.9255507 182.511254,12.3975072 C183.627703,11.869971 184.946036,11.6062029 186.468283,11.6062029 C187.768355,11.6062029 188.910167,11.8268551 189.892196,12.2686667 C190.87321,12.7104783 191.695457,13.3176522 192.358428,14.0906957 C193.021399,14.8637391 193.52408,15.7843913 193.867993,16.8521449 C194.210891,17.9198986 194.383862,19.0789565 194.383862,20.3313478 C194.383862,20.6742464 194.370674,21.0369275 194.346326,21.4168551 C194.321978,21.7972899 194.296616,22.1224348 194.273283,22.3922899 L181.424732,22.3922899 Z" id="Fill-15" fill="#1D1D1B"></path>
<path d="M203.660536,21.140558 L209.660754,12.0476594 C209.980319,11.9984565 210.298362,11.9619348 210.617928,11.9370797 C210.936478,11.9132391 211.26771,11.900558 211.612638,11.900558 C211.979884,11.900558 212.330391,11.9132391 212.661623,11.9370797 C212.991841,11.9619348 213.330174,11.9984565 213.67358,12.0476594 L207.672855,20.8828768 L214.704304,30.9334565 C214.361406,30.9821522 214.029159,31.0191812 213.711116,31.043529 C213.392058,31.0673696 213.059812,31.080558 212.716913,31.080558 C212.373,31.080558 212.029087,31.0673696 211.685681,31.043529 C211.342783,31.0191812 210.99887,30.9821522 210.655464,30.9334565 L203.660536,21.140558 Z M199.021768,3.94845652 C199.291623,3.89976087 199.59242,3.86273188 199.923652,3.83787681 C200.254884,3.81403623 200.555681,3.80135507 200.826043,3.80135507 C201.094884,3.80135507 201.402783,3.81403623 201.746188,3.83787681 C202.089087,3.86273188 202.395971,3.89976087 202.666333,3.94845652 L202.666333,30.9334565 C202.395971,30.9821522 202.089087,31.0191812 201.746188,31.043529 C201.402783,31.0673696 201.094884,31.080558 200.826043,31.080558 C200.555681,31.080558 200.254884,31.0673696 199.923652,31.043529 C199.59242,31.0191812 199.291623,30.9821522 199.021768,30.9334565 L199.021768,3.94845652 Z" id="Fill-17" fill="#1D1D1B"></path>
<path d="M229.430072,19.6678696 C229.430072,18.981058 229.338768,18.3246812 229.15413,17.6987391 C228.970507,17.0727971 228.700145,16.527 228.344565,16.0603333 C227.988478,15.5946812 227.534493,15.2198261 226.982609,14.9377971 C226.42971,14.6557681 225.772826,14.5142464 225.011957,14.5142464 C223.51558,14.5142464 222.368188,14.9687391 221.570797,15.8762029 C220.772899,16.7841739 220.287971,18.0487391 220.117029,19.6678696 L229.430072,19.6678696 Z M220.08,22.3922899 C220.128188,24.4542464 220.662826,25.9633043 221.68087,26.9204783 C222.698913,27.8781594 224.202391,28.357 226.191304,28.357 C227.933188,28.357 229.589348,28.0496087 231.160797,27.4358406 C231.356594,27.8041014 231.51587,28.2525072 231.639638,28.7795362 C231.762391,29.3075797 231.834928,29.8285217 231.859783,30.3443913 C231.04971,30.6883043 230.159493,30.944971 229.190145,31.1174348 C228.221304,31.2883768 227.147464,31.3746087 225.970145,31.3746087 C224.251594,31.3746087 222.779058,31.1351884 221.552029,30.6573623 C220.325,30.179029 219.312536,29.5043913 218.515145,28.6324348 C217.717246,27.7614928 217.134928,26.7307681 216.766667,25.5402609 C216.398406,24.3492464 216.214275,23.0425797 216.214275,21.6192464 C216.214275,20.2207681 216.391812,18.9135942 216.747899,17.6987391 C217.102971,16.4838841 217.649783,15.4283043 218.386304,14.5330145 C219.122826,13.6372174 220.048551,12.9255507 221.166014,12.3975072 C222.281957,11.869971 223.600797,11.6062029 225.123043,11.6062029 C226.423623,11.6062029 227.565435,11.8268551 228.546957,12.2686667 C229.527971,12.7104783 230.350725,13.3176522 231.012681,14.0906957 C231.676159,14.8637391 232.178841,15.7843913 232.523261,16.8521449 C232.865145,17.9198986 233.038116,19.0789565 233.038116,20.3313478 C233.038116,20.6742464 233.025435,21.0369275 233.00058,21.4168551 C232.976232,21.7972899 232.951377,22.1224348 232.928043,22.3922899 L220.08,22.3922899 Z" id="Fill-19" fill="#1D1D1B"></path>
<path d="M238.522819,14.9562609 L235.651297,14.9562609 L235.504196,14.4403913 L241.836152,7.37242029 L242.130355,7.37242029 L242.130355,12.0477101 L246.916732,12.0477101 C247.014123,12.4651739 247.063833,12.9313333 247.063833,13.4466957 C247.063833,13.717058 247.050645,13.9742319 247.027312,14.2192319 C247.002964,14.4652464 246.965935,14.7112609 246.916732,14.9562609 L242.130355,14.9562609 L242.130355,23.5708261 C242.130355,24.6015507 242.172457,25.4237971 242.259703,26.037058 C242.345428,26.6503188 242.492022,27.1230725 242.7005,27.4543043 C242.909486,27.7855362 243.192022,28.0066957 243.548109,28.1172754 C243.903181,28.2273478 244.35108,28.2826377 244.891804,28.2826377 C245.309268,28.2826377 245.700862,28.2522029 246.06963,28.1903188 C246.437891,28.1299565 246.769123,28.0619855 247.063833,27.9884348 C247.234775,28.4794493 247.340283,28.9826377 247.376297,29.4974928 C247.413326,30.0128551 247.431587,30.4673478 247.431587,30.8599565 C246.940572,30.9822029 246.42521,31.0740145 245.886007,31.1353913 C245.345283,31.1962609 244.768543,31.2282174 244.15579,31.2282174 C242.388036,31.2282174 241.007819,30.7985797 240.013616,29.9398116 C239.019413,29.0805362 238.522819,27.6566957 238.522819,25.6687971 L238.522819,14.9562609 Z" id="Fill-21" fill="#1D1D1B"></path>
<g id="Group-25" transform="translate(0.000000, 0.101449)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-24"></g>
<path d="M34.0869565,10.6301594 C34.0869565,4.98349275 29.5095652,0.405594203 23.8628986,0.405594203 L10.224058,0.405594203 C4.5773913,0.405594203 0,4.98349275 0,10.6301594 L0,24.2684928 C0,29.9156667 4.5773913,34.4925507 10.224058,34.4925507 L23.8628986,34.4925507 C29.5095652,34.4925507 34.0869565,29.9156667 34.0869565,24.2684928 L34.0869565,10.6301594 Z" id="Fill-23" fill="#1D1D1B" mask="url(#mask-2)"></path>
</g>
<polygon id="Fill-26" fill="#FEFEFE" points="29.4640145 13.9336014 20.4822029 13.9336014 20.4822029 4.95178986 13.4375652 4.95178986 13.4375652 13.9336014 4.45575362 13.9336014 4.45575362 20.9782391 13.4375652 20.9782391 13.4375652 29.960558 20.4822029 29.960558 20.4822029 20.9782391 29.4640145 20.9782391"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="288px" height="50px" viewBox="0 0 288 50" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>kidsbrandstore_logotyp_liggande_svart</title>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-1185.000000, -585.000000)" fill="#010101" fill-rule="nonzero">
<g id="Group-31" transform="translate(1144.000000, 547.000000)">
<g id="kidsbrandstore_logotyp_liggande_svart" transform="translate(41.000000, 38.000000)">
<path d="M9.66494845,21.8092784 C12.7886598,21.8092784 14.5309278,22.556701 15.8505155,23.742268 C17.4781714,25.1393538 18.4186673,27.1745868 18.4278351,29.3195876 C18.4028396,31.027724 17.7726852,32.6716052 16.6494845,33.9587629 C19.2460133,35.3582916 20.8476977,38.0867192 20.8041237,41.0360825 C20.7982693,43.2853212 19.885853,45.4372114 18.2731959,47.0051546 C16.7268041,48.5515464 14.5927835,49.5 11.056701,49.5 L0.25257732,49.5 L0.25257732,21.8092784 L9.66494845,21.8092784 Z M5.59278351,32.4742268 L9.35051546,32.4742268 C11.0103093,32.4742268 11.7628866,32.0773196 12.314433,31.4845361 C13.3715521,30.3786567 13.3715521,28.6368072 12.314433,27.5309278 C11.7628866,26.9381443 11.0103093,26.5412371 9.35051546,26.5412371 L5.59278351,26.5412371 L5.59278351,32.4742268 Z M10.9329897,44.742268 C12.7886598,44.742268 13.8195876,44.2680412 14.4896907,43.5154639 C15.8088198,42.0860043 15.8088198,39.8830679 14.4896907,38.4536082 C13.8195876,37.7010309 12.7886598,37.2268041 10.9329897,37.2268041 L5.59278351,37.2268041 L5.59278351,44.742268 L10.9329897,44.742268 Z" id="Shape"></path>
<path d="M32.6804124,37.2268041 L32.6804124,49.4845361 L27.3195876,49.4845361 L27.3195876,21.8092784 L37.4226804,21.8092784 C40.2731959,21.8092784 42.0927835,22.5979381 43.4742268,23.871134 C45.0423903,25.3335577 45.9328335,27.3815205 45.9328335,29.5257732 C45.9328335,31.6700259 45.0423903,33.7179887 43.4742268,35.1804124 C42.6914664,35.9207164 41.7500197,36.4725381 40.7216495,36.7938144 L51.0670103,49.4845361 L44.4639175,49.4845361 L34.6185567,37.2268041 L32.6804124,37.2268041 Z M37.1134021,32.4742268 C38.6597938,32.4742268 39.3298969,32.1546392 39.8041237,31.6443299 C40.8560852,30.4297959 40.8560852,28.6269051 39.8041237,27.4123711 C39.3298969,26.8969072 38.6546392,26.5412371 37.1134021,26.5412371 L32.6804124,26.5412371 L32.6804124,32.4742268 L37.1134021,32.4742268 Z" id="Shape"></path>
<path d="M55.6134021,49.4845361 L67.4690722,21.8041237 L71.2268041,21.8041237 L83.0824742,49.4845361 L77.5206186,49.4845361 L74.9123711,43.3556701 L63.7989691,43.3556701 L61.1907216,49.4845361 L55.6134021,49.4845361 Z M65.814433,38.6082474 L72.8556701,38.6082474 L69.3350515,30.4123711 L65.814433,38.6082474 Z" id="Shape"></path>
<polygon id="Path" points="89.4226804 21.8092784 93.1804124 21.8092784 108.603093 39.8505155 108.603093 21.8092784 113.917526 21.8092784 113.917526 49.4845361 110.164948 49.4845361 94.7628866 31.443299 94.7628866 49.4845361 89.4226804 49.4845361"></polygon>
<path d="M130.546392,21.8092784 C134.93299,21.8092784 137.824742,22.757732 140.07732,24.4175258 C143.544176,27.1117455 145.572211,31.2562448 145.572211,35.6469072 C145.572211,40.0375696 143.544176,44.1820689 140.07732,46.8762887 C137.824742,48.5412371 134.92268,49.4896907 130.546392,49.4896907 L121.845361,49.4896907 L121.845361,21.8092784 L130.546392,21.8092784 Z M138.216495,29.6391753 C136.670103,27.7010309 134.42268,26.5463918 131.139175,26.5463918 L127.185567,26.5463918 L127.185567,44.742268 L131.139175,44.742268 C134.42268,44.742268 136.675258,43.5979381 138.216495,41.6494845 C140.910876,38.0955641 140.910876,33.1827864 138.216495,29.628866 L138.216495,29.6391753 Z" id="Shape"></path>
<path d="M161.365979,41.6958763 C163.029989,43.565217 165.390213,44.6670278 167.891753,44.742268 C170.262887,44.742268 171.92268,43.2783505 171.92268,41.2628866 C171.92268,37.7010309 166.768041,37.2680412 163.06701,35.0773196 C160.891753,33.814433 159.149485,31.9123711 159.149485,28.7886598 C159.149485,23.8453608 163.701031,21 168.283505,21 C171.178273,20.9371446 174.009004,21.8564964 176.314433,23.6082474 L173.546392,27.5670103 C172.215301,26.4203335 170.519743,25.7844993 168.762887,25.7731959 C166.742268,25.7731959 164.489691,26.6443299 164.489691,28.7783505 C164.489691,33.2474227 177.262887,31.871134 177.262887,41.1958763 C177.262887,46.0979381 172.871134,49.5 167.891753,49.5 C164.175258,49.5 160.731959,47.9536082 157.886598,45.3453608 L161.365979,41.6958763 Z" id="Path"></path>
<polygon id="Path" points="201.778351 21.8092784 201.778351 26.5515464 194.463918 26.5515464 194.463918 49.4845361 189.123711 49.4845361 189.123711 26.5515464 181.809278 26.5515464 181.809278 21.8092784"></polygon>
<path d="M220.164948,21.0154639 C228.706186,21.0154639 234.597938,27.3814433 234.597938,35.2525773 C234.597938,43.1237113 228.706186,49.4845361 220.164948,49.4845361 C211.623711,49.4845361 205.731959,43.1185567 205.731959,35.2474227 C205.731959,27.3762887 211.623711,21.0154639 220.164948,21.0154639 Z M220.164948,44.7268041 C225.386598,44.7268041 229.262887,40.4587629 229.262887,35.2371134 C229.262887,30.0154639 225.386598,25.7731959 220.164948,25.7731959 C214.943299,25.7731959 211.072165,30.0412371 211.072165,35.2628866 C211.072165,40.4845361 214.948454,44.742268 220.164948,44.742268 L220.164948,44.7268041 Z" id="Shape"></path>
<path d="M246.659794,37.2268041 L246.659794,49.4845361 L241.319588,49.4845361 L241.319588,21.8092784 L251.402062,21.8092784 C254.252577,21.8092784 256.072165,22.5979381 257.453608,23.871134 C259.021772,25.3335577 259.912215,27.3815205 259.912215,29.5257732 C259.912215,31.6700259 259.021772,33.7179887 257.453608,35.1804124 C256.667427,35.9264584 255.720403,36.4819752 254.685567,36.8041237 L265.046392,49.4845361 L258.443299,49.4845361 L248.597938,37.2216495 L246.659794,37.2268041 Z M251.087629,32.4845361 C252.634021,32.4845361 253.304124,32.1649485 253.778351,31.6546392 C254.830312,30.4401052 254.830312,28.6372144 253.778351,27.4226804 C253.304124,26.9072165 252.628866,26.5515464 251.087629,26.5515464 L246.659794,26.5515464 L246.659794,32.4742268 L251.087629,32.4845361 Z" id="Shape"></path>
<polygon id="Path" points="276.314433 26.5515464 276.314433 32.2886598 284.814433 32.2886598 284.814433 37.0309278 276.314433 37.0309278 276.314433 44.7628866 287.979381 44.7628866 287.979381 49.4845361 270.969072 49.4845361 270.969072 21.8092784 287.582474 21.8092784 287.582474 26.5515464"></polygon>
<polygon id="Path" points="125.551546 11.6082474 123.427835 11.6082474 123.427835 0.329896907 125.551546 0.329896907 125.551546 4.96907216 126.020619 4.96907216 129 0.329896907 131.402062 0.329896907 131.402062 0.427835052 127.92268 5.82474227 127.92268 6.11340206 131.592784 11.5103093 131.592784 11.6082474 129.097938 11.6082474 126.005155 6.96907216 125.536082 6.96907216"></polygon>
<polygon id="Path" points="134.494845 0.257731959 142.030928 0.257731959 142.030928 2.28350515 139.324742 2.28350515 139.324742 9.5 142.030928 9.5 142.030928 11.5309278 134.494845 11.5309278 134.494845 9.5 137.201031 9.5 137.201031 2.28350515 134.494845 2.28350515"></polygon>
<path d="M145.221649,0.407216495 L149.314433,0.407216495 C150.706186,0.407216495 151.737113,0.731958763 152.407216,1.3814433 C153.07732,2.03092784 153.420962,3.03780069 153.438144,4.40206186 L153.438144,7.68556701 C153.438144,9.06013746 153.094502,10.0670103 152.407216,10.7061856 C151.719931,11.3453608 150.689003,11.6701031 149.314433,11.6804124 L145.221649,11.6804124 L145.221649,9.6185567 L146.283505,9.6185567 L146.283505,2.40206186 L145.221649,2.40206186 L145.221649,0.407216495 Z M149.314433,9.65463918 C149.88053,9.71775481 150.445816,9.52932625 150.860825,9.13917526 C151.193747,8.66245389 151.350469,8.08476883 151.304124,7.50515464 L151.304124,4.41237113 C151.340679,3.88498075 151.183,3.3624408 150.860825,2.94329897 C150.440937,2.56139885 149.879483,2.37424755 149.314433,2.42783505 L148.412371,2.42783505 L148.412371,9.6443299 L149.314433,9.65463918 Z" id="Shape"></path>
<path d="M162.489691,3.8556701 C162.493674,3.40677505 162.306195,2.97744928 161.974227,2.67525773 C161.569419,2.31677578 161.039988,2.13166036 160.5,2.15979381 C160.051694,2.13540709 159.606859,2.25066792 159.226804,2.48969072 C158.927906,2.68630691 158.752315,3.02383152 158.762887,3.3814433 C158.761118,3.55964008 158.799897,3.73590571 158.876289,3.89690722 C158.966398,4.06917226 159.101859,4.21354521 159.268041,4.31443299 C159.500187,4.45597752 159.749684,4.56686515 160.010309,4.6443299 C160.392773,4.75875879 160.781797,4.84999009 161.175258,4.91752577 C162.152115,5.04890139 163.081563,5.41891028 163.881443,5.99484536 C164.528948,6.55715396 164.872903,7.39220064 164.809278,8.24742268 L164.809278,8.43814433 C164.817613,8.92885483 164.720951,9.41567752 164.525773,9.86597938 C164.342181,10.2866979 164.063377,10.6590237 163.71134,10.9536082 C163.331761,11.266906 162.893732,11.5016892 162.42268,11.6443299 C161.869741,11.8121023 161.294282,11.893814 160.716495,11.8865979 C160.05003,11.8996834 159.386616,11.7931881 158.757732,11.5721649 C158.231416,11.386479 157.751405,11.0893288 157.350515,10.7010309 C156.974769,10.332963 156.682899,9.88812517 156.494845,9.39690722 C156.294416,8.88241241 156.189605,8.335647 156.185567,7.78350515 L156.185567,7.29896907 L158.314433,7.29896907 L158.314433,7.68556701 C158.284172,8.28223221 158.496058,8.86584748 158.902062,9.30412371 C159.400631,9.74944296 160.060757,9.96948488 160.726804,9.91237113 C161.240512,9.95557567 161.751768,9.80477342 162.159794,9.48969072 C162.457515,9.24526543 162.629716,8.88004779 162.628866,8.49484536 C162.629449,8.3183452 162.596203,8.14336847 162.530928,7.97938144 C162.460076,7.8033414 162.344603,7.64878572 162.195876,7.53092784 C161.997444,7.37366612 161.774552,7.2500305 161.536082,7.16494845 C161.189558,7.04130538 160.832378,6.94985354 160.469072,6.89175258 C159.945335,6.80316531 159.428565,6.67741814 158.92268,6.51546392 C158.482131,6.3727955 158.066495,6.16236888 157.690722,5.89175258 C157.346264,5.6399877 157.067018,5.30948798 156.876289,4.92783505 C156.672635,4.4837154 156.573869,3.99870215 156.587629,3.51030928 L156.587629,3.40206186 C156.58296,2.95985399 156.679957,2.52248566 156.871134,2.12371134 C157.056909,1.72740364 157.325901,1.37578071 157.659794,1.09278351 C158.01955,0.790870285 158.434418,0.561554921 158.881443,0.417525773 C159.983954,0.0810675544 161.163768,0.0954774885 162.257732,0.458762887 C162.736956,0.624556494 163.178486,0.883867281 163.556701,1.22164948 C163.893621,1.53436899 164.162143,1.9134598 164.345361,2.33505155 C164.520367,2.7529037 164.60976,3.20162103 164.608247,3.65463918 L164.608247,4.2371134 L162.484536,4.2371134 L162.489691,3.8556701 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="261px" height="35px" viewBox="0 0 261 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
<title>Parfym.se_logotype_black</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.0211141304 260.163433 0.0211141304 260.163433 34.9961957 0 34.9961957"></polygon>
</defs>
<g id="Ehandlare" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Partners" transform="translate(-818.000000, -1162.000000)">
<g id="Group-25-Copy-3" transform="translate(382.000000, 1117.000000)">
<g id="Svensk">
<g id="Parfym.se_logotype_black" transform="translate(436.000000, 45.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M0,34.5824094 L4.32814312,34.5824094 L4.32814312,3.64570652 L8.52319746,3.64570652 C9.84134058,3.64570652 11.0450996,3.79065217 12.1006159,4.07591486 C13.1769928,4.36758152 14.1074094,4.83836957 14.8666938,5.47439312 C15.6337772,6.11314312 16.226875,6.94027174 16.6298188,7.93168478 C17.0281341,8.91016304 17.2302717,10.090779 17.2302717,11.4403714 C17.2302717,12.6560507 17.058125,13.7480888 16.7193478,14.6841486 C16.3764493,15.6284511 15.8922192,16.4380163 15.2797826,17.0906522 C14.6682337,17.7451268 13.9301902,18.2481884 13.0865127,18.5879167 C12.2497464,18.9220652 11.320154,19.0909783 10.3232246,19.0909783 C10.1432156,19.0909783 9.9465942,19.0873007 9.73240942,19.0781069 C9.59995471,19.0734149 9.46014493,19.0632699 9.31336051,19.0494475 L8.34084239,22.328288 C8.80611413,22.4224457 9.74743659,22.4621377 9.94957428,22.4621377 C11.4865308,22.4621377 13.0151812,22.1898098 14.4925996,21.6525725 C15.9686232,21.1162862 17.2983696,20.3381069 18.4443659,19.3383877 C19.5899185,18.3396196 20.5236322,17.1026359 21.2201449,15.6644656 C21.9147554,14.2281341 22.2669112,12.5729891 22.2669112,10.7443025 C22.2669112,9.04306159 21.9470924,7.51625 21.3156975,6.20825181 C20.6861413,4.9011413 19.7856522,3.78145833 18.6382609,2.87951087 C17.4876359,1.97680254 16.0872554,1.27705616 14.4769384,0.800751812 C12.8573641,0.324447464 11.2887681,0.0825543478 9.31519928,0.0825543478 L0,0.0825543478 L0,34.5824094" id="Fill-1" fill="#000105" mask="url(#mask-2)"></path>
<path d="M44.1415308,22.091087 L31.2794746,22.091087 L37.312029,2.72644928 L38.4469928,2.72644928 L44.1415308,22.091087 Z M48.2470562,34.5824094 L53.8280978,34.5824094 L41.6058062,0.0825543478 L35.3297101,0.0825543478 L23.1074185,34.5824094 L27.2699457,34.5824094 L30.2220562,25.5101812 L45.2469475,25.5101812 L48.2470562,34.5824094 L48.2470562,34.5824094 Z" id="Fill-3" fill="#000105" mask="url(#mask-2)"></path>
<polyline id="Fill-4" fill="#000105" mask="url(#mask-2)" points="91.6023551 34.5824094 96.1124094 34.5824094 96.1124094 18.3580707 109.267844 18.3580707 109.912681 14.9148822 96.1124094 14.9148822 96.1124094 3.64570652 111.715942 3.64570652 112.384239 0.0825543478 91.6023551 0.0825543478 91.6023551 34.5824094"></polyline>
<polyline id="Fill-5" fill="#000105" mask="url(#mask-2)" points="182.179438 34.5824094 187.427536 34.5561594 184.637681 0.126811594 176.586413 0.0825543478 167.675362 27.779221 166.683696 27.779221 157.822101 0.0825543478 149.654167 0.0825543478 147.01712 34.5824094 151.53288 34.5824094 153.248641 2.82967391 154.302446 2.82967391 164.418207 33.8623732 169.365761 33.8623732 179.360417 2.82967391 180.414855 2.82967391 182.179438 34.5824094"></polyline>
<path d="M70,17.3097826 L79.4132246,34.5824094 L85.0905797,34.5561594 L75.7065217,19.5289855 C75.7065217,19.5289855 77.2916667,18.9583333 78.3695652,18.134058 C79.0543478,17.6101993 79.8513587,17.0262953 80.5253623,16.1684783 C81.2228261,15.2807971 81.7300725,14.3931159 82.1105072,13.1884058 C82.4205616,12.2075815 82.6177536,10.9692029 82.6177536,9.44746377 C82.6177536,8.22626812 82.2468297,6.63376812 81.7059783,5.56576087 C81.1613225,4.493125 80.3719203,3.5405163 79.3580616,2.73374094 C78.3410326,1.92506341 77.0722826,1.27337862 75.5860507,0.797961957 C74.0991848,0.323496377 72.647192,0.0825543478 70.7691123,0.0825543478 L59.9818841,0.0825543478 L59.9818841,34.5824094 L64.3936594,34.5824094 L64.3936594,3.64570652 L69.9296196,3.64570652 C71.1647645,3.64570652 72.3276268,3.81373188 73.2603261,4.1442029 C74.2019022,4.47746377 74.9995471,4.94546196 75.6317029,5.534375 C76.2638587,6.12512681 76.7470109,6.8359692 77.0684783,7.6464221 C77.3861413,8.44856884 77.5478261,9.3209058 77.5478261,10.2403533 C77.5478261,11.0018569 77.4381341,11.7481431 77.2472826,12.4650091 C77.0380435,13.2518116 76.6576087,14.0126812 76.4039855,14.3931159 C76.0026268,14.9950906 75.1992754,15.8514493 74.1847826,16.4221014 C72.8247283,17.1872826 70,17.3097826 70,17.3097826" id="Fill-6" fill="#000105" mask="url(#mask-2)"></path>
<path d="M199.312953,22.6212228 C198.747373,22.6212228 198.226178,22.5150815 197.748732,22.3035598 C197.27192,22.0912138 196.861051,21.8045562 196.516123,21.441875 C196.17183,21.0792572 195.897283,20.6594475 195.694384,20.1825091 C195.491486,19.7055707 195.389402,19.2105616 195.389402,18.6976721 C195.389402,18.167663 195.491486,17.6595924 195.694384,17.1736504 C195.897283,16.6877083 196.17183,16.2589583 196.516123,15.8880978 C196.861051,15.5165399 197.27192,15.2208786 197.748732,14.999529 C198.226178,14.7790036 198.747373,14.6679167 199.312953,14.6679167 C199.860779,14.6679167 200.377536,14.7790036 200.863859,14.999529 C201.349547,15.2208786 201.765489,15.5165399 202.109783,15.8880978 C202.45471,16.2589583 202.727989,16.6877083 202.931522,17.1736504 C203.135054,17.6595924 203.236504,18.167663 203.236504,18.6976721 C203.236504,19.2105616 203.135054,19.7055707 202.931522,20.1825091 C202.727989,20.6594475 202.45471,21.0792572 202.109783,21.441875 C201.765489,21.8045562 201.349547,22.0912138 200.863859,22.3035598 C200.377536,22.5150815 199.860779,22.6212228 199.312953,22.6212228" id="Fill-7" fill="#000105" mask="url(#mask-2)"></path>
<path d="M140.190217,0.0634057971 L130.845471,16.4921649 L130.425725,16.4855072 L121.028351,0.0825543478 L116.645743,0.0825543478 L127.958605,19.2119565 C127.958605,19.2119565 128.262319,29.2899909 128.240127,34.5824728 L132.622101,34.5824728 L132.644928,19.2119565 L144.569656,0.0825543478 L140.190217,0.0634057971" id="Fill-8" fill="#000105" mask="url(#mask-2)"></path>
<path d="M232.398732,28.5348913 C233.086685,27.2412862 233.435417,25.8021649 233.435417,24.2575362 C233.435417,22.9511232 233.191304,21.8368931 232.710054,20.9455978 L232.710054,20.9454076 C232.222464,20.0423822 231.563043,19.2649638 230.750181,18.6343297 C229.919565,17.9906341 228.965308,17.4530163 227.915308,17.0370109 C226.825996,16.6064855 225.70308,16.216096 224.576993,15.8763043 C223.425543,15.5288406 222.300091,15.1913315 221.202536,14.8649185 C220.080254,14.5323551 219.05942,14.1316938 218.168569,13.674221 C217.246649,13.2024819 216.492754,12.6184511 215.930344,11.9385507 C215.3375,11.2227627 215.037591,10.3191667 215.037591,9.25242754 C215.037591,8.53968297 215.184692,7.87519022 215.475091,7.27581522 L215.483967,7.2515942 C215.820652,6.38249094 217.032971,5.08856884 217.686685,4.64041667 C218.315036,4.21008152 219.072101,3.87472826 219.937591,3.64317029 C220.790399,3.41636775 221.747826,3.30134964 222.784511,3.30134964 C223.339946,3.30134964 223.993025,3.34040761 224.727264,3.41744565 C225.46087,3.49556159 226.21413,3.60740942 226.967391,3.74988225 C227.737138,3.89508152 228.503714,4.09240036 229.246196,4.33625906 C229.885326,4.54600543 230.487047,4.79113225 231.039312,5.06688406 L232.031612,1.19462862 C231.424185,1.01804348 230.793297,0.863650362 230.150996,0.734556159 C229.344475,0.573759058 228.549366,0.444157609 227.787862,0.349365942 C227.025725,0.253432971 226.289583,0.183052536 225.599728,0.139936594 C224.912409,0.0972644928 224.318297,0.0755797101 223.834511,0.0755797101 C221.809964,0.0755797101 219.947101,0.363061594 218.297917,0.930036232 C216.652536,1.49656703 215.227174,2.27493659 214.061775,3.24326993 C212.900815,4.20608696 211.987772,5.34980072 211.346739,6.64302536 C210.708243,7.93041667 210.384239,9.31310688 210.384239,10.7527989 C210.384239,12.0342935 210.627717,13.1254438 211.107699,13.9958152 C211.597192,14.881087 212.247101,15.6443659 213.038406,16.263587 C213.84683,16.8952355 214.783967,17.4268297 215.825091,17.8433424 C216.898551,18.2729801 218.005616,18.6636866 219.115217,19.0049366 C220.245109,19.3524004 221.353442,19.6888315 222.439583,20.0150543 C223.546649,20.3467301 224.552264,20.7478986 225.427899,21.2074004 C226.326993,21.680471 227.066304,22.2571467 227.626178,22.9216395 C228.220924,23.6271558 228.522101,24.5159149 228.522101,25.5630616 C228.522101,26.3799185 228.331884,27.1380616 227.956522,27.8166938 C227.586232,28.4846105 226.949004,29.2025543 226.29529,29.673913 C225.666938,30.1268841 224.333514,30.8121739 223.502264,31.0465217 C221.991304,31.4744475 220.21404,31.5424819 218.098188,31.2229167 C217.226359,31.0903351 216.325362,30.9001812 215.419928,30.6572736 C214.521467,30.4166486 213.593207,30.1090036 212.661141,29.7432156 C211.930707,29.4562409 211.219928,29.1346467 210.540217,28.7844565 L209.495924,32.9640399 C211.14067,33.5755254 212.850725,34.0656522 214.585507,34.422817 C216.449004,34.8058514 218.22183,35 219.854529,35 C221.752264,35 223.552355,34.7279257 225.204076,34.1912591 C226.848822,33.6575091 228.302717,32.899683 229.525181,31.9387047 C230.7375,30.985779 231.704438,29.8407337 232.398732,28.5348913" id="Fill-9" fill="#000105" mask="url(#mask-2)"></path>
<polyline id="Fill-10" fill="#000105" mask="url(#mask-2)" points="260.163433 34.5915399 259.494565 31.0206522 243.856793 31.0206522 243.856793 18.3362591 257.040761 18.3362591 257.686866 14.8856522 243.856793 14.8856522 243.856793 3.59200181 259.494565 3.59200181 260.163433 0.0211141304 239.46404 0.0211141304 239.46404 34.5958514 243.856793 34.5958514 243.856793 34.5915399 260.163433 34.5915399"></polyline>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="200px" height="86px" viewBox="0 0 200 86" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Group</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="MSHOP_logo_MSHOP.SE" transform="translate(-13.000000, -17.000000)" fill="#1A1919">
<g id="Group" transform="translate(13.911000, 17.176000)">
<polyline id="Fill-1" points="32.029 26.773 19.47 39.33 6.894 26.758 0 33.656 12.572 46.224 0.015 58.781 6.879 65.84 19.47 53.25 32.045 65.822 39.066 58.799 26.494 46.224 39.084 33.639 32.029 26.773"></polyline>
<polyline id="Fill-2" points="198.951 33.639 191.898 26.773 179.341 39.33 166.767 26.758 159.869 33.654 172.441 46.224 159.886 58.781 166.75 65.84 179.341 53.25 191.916 65.822 198.933 58.799 186.365 46.224 198.951 33.639"></polyline>
<polyline id="Fill-3" points="133.369 0 132.629 0 99.476 51.392 66.324 0 65.586 0 56.341 85.532 68.543 85.532 73.966 33.646 99.109 72.713 99.845 72.713 124.988 33.646 130.41 85.532 142.611 85.532 133.369 0"></polyline>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

Some files were not shown because too many files have changed in this diff Show More