Merge branch 'master' into feature/partner-page

This commit is contained in:
Moritz Kröger 2019-05-02 18:16:17 +01:00
commit 3b106a0967
112 changed files with 5775 additions and 1266 deletions

3
.gitignore vendored
View file

@ -3,6 +3,9 @@ node_modules
/dist
.netlify
# Test files
/bin/xlsx-data/test
# local env files
.env.local
.env.*.local

View file

@ -2,6 +2,10 @@
A Vue.js powered, progressive web voting application for upcoming European elections. EUROMAT is hosted on _Netlify_ and uses the **Netlify CMS** for easier collaboration.
## Calculation Model
The calculation model for voting has been defined by the German Federal Agency for Civic Education _(Bundeszentrale für politische Bildung)_. A good overview can be found in this PDF: [`resources/Rechenmodell des Wahl-O-Mat.pdf`](resources/Rechenmodell%20des%20Wahl-O-Mat.pdf).
## ⌨️ Development
This is a Vue.js progressive web application, developed with [`@vue/cli`](https://github.com/vuejs/vue-cli).

View file

@ -1,3 +1,5 @@
const { SUPPORTED_LOCALES } = require('../../src/config')
const createField = (widget, name, label, opts) => ({ label, name, widget, ...opts })
const textField = (...args) =>
@ -32,12 +34,10 @@ const languageConfig = () => ({
name: 'language',
hint: 'Select the language for this page.',
widget: 'select',
options: [
{ label: 'English', value: 'en' },
{ label: 'Deutsch', value: 'de' },
{ label: 'Français', value: 'fr' },
{ label: 'Polski', value: 'pl' }
]
options: SUPPORTED_LOCALES.map(([locale, name]) => ({
label: name,
value: locale
}))
})
const pageUrl = () => ({

View file

@ -1,7 +1,7 @@
const fs = require('fs')
const yaml = require('js-yaml')
const ora = require('ora')
const { writeFile } = require('../helper')
const {
category,
baseConfig,
@ -12,15 +12,7 @@ const {
markdownField,
listField,
objectField
} = require('./config')
const writeFile = (path, data, opts = 'utf8') =>
new Promise((resolve, reject) => {
fs.writeFile(path, data, opts, (err) => {
if (err) reject(err)
else resolve()
})
})
} = require('./helper')
const PATH_DESTINATION = './public/admin/config.yml'
@ -146,24 +138,10 @@ const configTree = {
}),
category({
meta: {
name: 'partner',
label: '[Page] Partner',
description: 'Partner page.',
folder: 'src/app/partner/content'
},
fields: [
pageUrl(),
siteName(),
stringField('headline', 'Headline'),
markdownField('Content', 'Content')
]
}),
category({
meta: {
name: 'press',
label: '[Page] Press',
description: 'Press page.',
folder: 'src/app/press/content'
name: 'contact',
label: '[Page] Contact',
description: 'The general contact page.',
folder: 'src/app/contact/content'
},
fields: [
pageUrl(),
@ -275,8 +253,7 @@ const configTree = {
stringField('index', '[Label] Introduction'),
stringField('faq', '[Label] FAQ'),
stringField('about', '[Label] About us'),
stringField('partner', '[Label] Partner'),
stringField('press', '[Label] Press')
stringField('contact', '[Label] Contact')
]
}),
objectField('footerMenu', 'Footer Navigation', {

22
bin/helper.js Normal file
View file

@ -0,0 +1,22 @@
const fs = require('fs')
const writeFile = (path, data, opts = 'utf8') =>
new Promise((resolve, reject) => {
fs.writeFile(path, data, opts, (err) => {
if (err) reject(err)
else resolve()
})
})
const readFile = (path, opts = 'utf8') =>
new Promise((resolve, reject) => {
fs.readFile(path, opts, (err, data) => {
if (err) reject(err)
else resolve(data)
})
})
module.exports = {
writeFile,
readFile
}

165
bin/xlsx-data/index.js Normal file
View file

@ -0,0 +1,165 @@
const XLSX = require('xlsx')
const ora = require('ora')
const { writeFile } = require('../helper')
function toJSON (data = {}) {
return JSON.stringify(data, null, 2)
}
function normalisePartyToken (name) {
return name
.toUpperCase()
.trim()
.replace(/\s/g, '-')
}
function createLocaleMap (section, data = {}) {
return Object.keys(data)
.filter(key => key.includes(section))
.reduce((acc, keyLabel) => {
const splitKeyLabel = keyLabel.split(' ')
const locale = splitKeyLabel[splitKeyLabel.length - 1].toLowerCase()
acc[locale] = data[keyLabel].trim()
return acc
}, {})
}
function createPartyPositionMap (sheetName) {
if (!sheetName) return []
const rawData = XLSX.utils.sheet_to_json(workbook.Sheets[sheetName])
return rawData.map(block => ({
thesis: parseInt(block.Thesis, 10),
position: block.Position,
statement: createLocaleMap('Statement', block)
}))
}
function createNationalPartyMap (token, nationalParties) {
const parties = nationalParties.filter(np => normalisePartyToken(np['European Party']) === token)
const partyMap = data => ({ token: normalisePartyToken(data.Token), name: data.Name })
return parties.reduce((acc, cur) => {
const countryCode = cur['Country Code'].toLowerCase()
if (!acc.hasOwnProperty(countryCode)) {
acc[countryCode] = [partyMap(cur)]
} else {
acc[countryCode].push(partyMap(cur))
}
return acc
}, {})
}
async function writeDataset (fileName, data = {}) {
const path = `${OUTPUT_DIRECTORY}/${fileName}`
try {
await writeFile(path, toJSON(data))
spinner.succeed(`Success! It's located at ${path}`)
} catch (error) {
spinner.fail(`Failure! Couldn't write '${fileName}'. Error: ${error.message}`)
}
}
async function createOptionsDataset (sheetName) {
if (!sheetName) {
throw new Error(`createOptionsDataset() requires 'sheetName', got "${sheetName}"`)
}
await writeDataset(
'options.json',
XLSX.utils.sheet_to_json(workbook.Sheets[sheetName])
)
}
async function createThesesDataset (sheetName) {
if (!sheetName) {
throw new Error(`createThesesDataset() requires 'sheetName', got "${sheetName}"`)
}
const rawData = XLSX.utils.sheet_to_json(workbook.Sheets[sheetName])
const data = rawData.map(block => ({
id: parseInt(block.ID, 10),
category: createLocaleMap('Category', block),
thesis: createLocaleMap('Thesis', block),
terminology: block.Terminology || []
}))
await writeDataset('theses.json', data)
}
async function createTerminologyDataset (sheetName) {
if (!sheetName) {
throw new Error(`createTerminologyDataset() requires 'sheetName', got "${sheetName}"`)
}
const rawData = XLSX.utils.sheet_to_json(workbook.Sheets[sheetName])
const data = rawData.map(block => {
return {
id: parseInt(block.ID, 10),
explanation: createLocaleMap('Explanation', block),
reference: createLocaleMap('Reference', block)
}
})
await writeDataset('terminology.json', data)
}
async function createPartiesDataset (sheetName, sheets = {}) {
if (!sheetName) {
throw new Error(`createPartiesDataset() requires 'sheetName', got "${sheetName}"`)
}
const { europeanParties, nationalParties, parties } = sheets
const rawDataEU = XLSX.utils.sheet_to_json(workbook.Sheets[europeanParties])
const rawDataNational = XLSX.utils.sheet_to_json(workbook.Sheets[nationalParties])
const data = rawDataEU.map(block => {
const token = normalisePartyToken(block.Token)
return {
id: parseInt(block.ID, 10),
token,
name: createLocaleMap('European Party', block),
european_profile: {
party: createLocaleMap('European Party', block)
},
national_parties: createNationalPartyMap(token, rawDataNational),
program: createLocaleMap('Program', block),
positions: createPartyPositionMap(
parties.find(sName => normalisePartyToken(sName) === token)
)
}
})
await writeDataset('parties.json', data)
}
// const OUTPUT_DIRECTORY = './bin/xlsx-data/test'
const OUTPUT_DIRECTORY = './src/data'
const RESOURCE_FILE = 'euromat-dataset.xlsx'
const spinner = ora()
const workbook = XLSX.readFile(`./resources/${RESOURCE_FILE}`)
const [
options,
theses, terminology,
europeanParties, nationalParties,
...morePartySheets
] = workbook.SheetNames
;(async () => {
spinner.start()
spinner.info(`Parsing '${RESOURCE_FILE}' to JSON files`)
spinner.info(`XLSX SheetNames: ${workbook.SheetNames}`)
spinner.info(`Writing '${options}.json' file`)
await createOptionsDataset(options)
spinner.info(`Writing '${theses}.json' file`)
await createThesesDataset(theses)
spinner.info(`Writing '${terminology}.json' file`)
await createTerminologyDataset(terminology)
spinner.info(`Writing 'parties.json' file`)
await createPartiesDataset('parties', {
europeanParties,
nationalParties,
parties: morePartySheets
})
spinner.stopAndPersist()
})()

100
package-lock.json generated
View file

@ -2334,6 +2334,16 @@
"integrity": "sha512-z55ocwKBRLryBs394Sm3ushTtBeg6VAeuku7utSoSnsJKvKcnXFIyC6vh27n3rXyxSgkJBBCAvyOn7gSUcTYjg==",
"dev": true
},
"adler-32": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/adler-32/-/adler-32-1.2.0.tgz",
"integrity": "sha1-aj5r8KY5ALoVZSgIyxXGgT0aXyU=",
"dev": true,
"requires": {
"exit-on-epipe": "~1.0.1",
"printj": "~1.1.0"
}
},
"ajv": {
"version": "6.10.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz",
@ -3807,6 +3817,18 @@
"resolved": "https://registry.npmjs.org/ccount/-/ccount-1.0.3.tgz",
"integrity": "sha512-Jt9tIBkRc9POUof7QA/VwWd+58fKkEEfI+/t1/eOlxKM7ZhrczNzMFefge7Ai+39y1pR/pP6cI19guHy3FSLmw=="
},
"cfb": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/cfb/-/cfb-1.1.0.tgz",
"integrity": "sha512-ZqfxNGWTMKhd0a/n6YKJLq8hWbd5kR3cA4kXwUj9vVEdHlwJ09werR8gN15Z7Y1FTXqdD6dE3GGCxv4uc28raA==",
"dev": true,
"requires": {
"adler-32": "~1.2.0",
"commander": "^2.16.0",
"crc-32": "~1.2.0",
"printj": "~1.1.2"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
@ -4107,6 +4129,24 @@
"resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
},
"codepage": {
"version": "1.14.0",
"resolved": "https://registry.npmjs.org/codepage/-/codepage-1.14.0.tgz",
"integrity": "sha1-jL4lSBMjVZ19MHVxsP/5HnodL5k=",
"dev": true,
"requires": {
"commander": "~2.14.1",
"exit-on-epipe": "~1.0.1"
},
"dependencies": {
"commander": {
"version": "2.14.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz",
"integrity": "sha512-+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==",
"dev": true
}
}
},
"collapse-white-space": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.4.tgz",
@ -4607,6 +4647,16 @@
}
}
},
"crc-32": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.0.tgz",
"integrity": "sha512-1uBwHxF+Y/4yF5G48fwnKq6QsIXheor3ZLPT80yGBV1oEUwpPojlEhQbWKVw1VwcTQyMGHK1/XMmTjmlsmTTGA==",
"dev": true,
"requires": {
"exit-on-epipe": "~1.0.1",
"printj": "~1.1.0"
}
},
"create-ecdh": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
@ -6384,6 +6434,12 @@
"integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
"dev": true
},
"exit-on-epipe": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz",
"integrity": "sha512-h2z5mrROTxce56S+pnvAV890uu7ls7f1kEvVGJbw1OlFH3/mlJ5bkXu0KRyW94v37zzHPiUd55iLn3DA7TjWpw==",
"dev": true
},
"expand-brackets": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
@ -6967,6 +7023,12 @@
"integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=",
"dev": true
},
"frac": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/frac/-/frac-1.1.2.tgz",
"integrity": "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==",
"dev": true
},
"fragment-cache": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
@ -13429,6 +13491,12 @@
}
}
},
"printj": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/printj/-/printj-1.1.2.tgz",
"integrity": "sha512-zA2SmoLaxZyArQTOPj5LXecR+RagfPSU5Kw1qP+jkWeNlrq+eJZyY2oS68SU1Z/7/myXM4lo9716laOFAVStCQ==",
"dev": true
},
"private": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
@ -15022,6 +15090,15 @@
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
},
"ssf": {
"version": "0.10.2",
"resolved": "https://registry.npmjs.org/ssf/-/ssf-0.10.2.tgz",
"integrity": "sha512-rDhAPm9WyIsY8eZEKyE8Qsotb3j/wBdvMWBUsOhJdfhKGLfQidRjiBUV0y/MkyCLiXQ38FG6LWW/VYUtqlIDZQ==",
"dev": true,
"requires": {
"frac": "~1.1.2"
}
},
"sshpk": {
"version": "1.16.1",
"resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
@ -17548,6 +17625,29 @@
"resolved": "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz",
"integrity": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI="
},
"xlsx": {
"version": "0.14.2",
"resolved": "https://registry.npmjs.org/xlsx/-/xlsx-0.14.2.tgz",
"integrity": "sha512-6+4TkmU34s1p/qsl8omWSEOa7pOtWlw4SuRJH/FGRk3iF/gcvSWGgCI1L28NaSDx2tI82aeq2SPY+xeFQJD27A==",
"dev": true,
"requires": {
"adler-32": "~1.2.0",
"cfb": "^1.1.0",
"codepage": "~1.14.0",
"commander": "~2.17.1",
"crc-32": "~1.2.0",
"exit-on-epipe": "~1.0.1",
"ssf": "~0.10.2"
},
"dependencies": {
"commander": {
"version": "2.17.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz",
"integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==",
"dev": true
}
}
},
"xml-name-validator": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",

View file

@ -3,12 +3,13 @@
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "npm run svg && vue-cli-service serve",
"build": "npm run svg && npm run admin && vue-cli-service build --modern",
"serve": "npm run svg && npm run data && vue-cli-service serve",
"build": "npm run svg && npm run admin && npm run data && vue-cli-service build --modern",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"svg": "vsvg -s ./src/assets/svg -t ./src/assets/icons",
"admin": "node bin/admin"
"admin": "node bin/admin-yml",
"data": "node bin/xlsx-data"
},
"dependencies": {
"lint-staged": "^8.1.5",
@ -45,7 +46,8 @@
"normalize.css": "^8.0.1",
"ora": "^3.4.0",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.5.21"
"vue-template-compiler": "^2.5.21",
"xlsx": "^0.14.2"
},
"husky": {
"hooks": {

View file

@ -28,8 +28,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Page URL'
name: url
widget: string
@ -75,8 +79,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Page URL'
name: url
widget: string
@ -119,8 +127,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Page URL'
name: url
widget: string
@ -169,8 +181,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Site Name'
name: title
widget: string
@ -205,8 +221,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Page URL'
name: url
widget: string
@ -255,8 +275,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Page URL'
name: url
widget: string
@ -296,8 +320,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Page URL'
name: url
widget: string
@ -322,10 +350,10 @@ collections:
- label: Answer
name: answer
widget: markdown
- name: partner
label: '[Page] Partner'
description: Partner page.
folder: src/app/partner/content
- name: contact
label: '[Page] Contact'
description: The general contact page.
folder: src/app/contact/content
format: json
create: true
slug: '{{fields.language}}'
@ -341,46 +369,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: '[Meta] Page URL'
name: url
widget: string
hint: >-
An optional, localised URL which will be used for this page (e.g.
https://euromat.info/#/<PAGE_URL>)
optional: true
- label: '[Meta] Site Name'
name: title
widget: string
hint: The name for the page that will appear in the browser tab.
- label: Headline
name: headline
widget: string
- label: Content
name: Content
widget: markdown
- name: press
label: '[Page] Press'
description: Press page.
folder: src/app/press/content
format: json
create: true
slug: '{{fields.language}}'
fields:
- label: '[Meta] Language'
name: language
hint: Select the language for this page.
widget: select
options:
- label: English
value: en
- label: Deutsch
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Page URL'
name: url
widget: string
@ -417,8 +411,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Page URL'
name: url
widget: string
@ -462,8 +460,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Page URL'
name: url
widget: string
@ -589,8 +591,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Site Name'
name: title
widget: string
@ -623,8 +629,12 @@ collections:
value: de
- label: Français
value: fr
- label: Polski
value: pl
- label: Dansk
value: dk
- label: Slovenščina
value: si
- label: Čeština
value: cz
- label: '[Meta] Site Name'
name: title
widget: string
@ -643,11 +653,8 @@ collections:
- label: '[Label] About us'
name: about
widget: string
- label: '[Label] Partner'
name: partner
widget: string
- label: '[Label] Press'
name: press
- label: '[Label] Contact'
name: contact
widget: string
- label: Footer Navigation
name: footerMenu

Binary file not shown.

Before

Width:  |  Height:  |  Size: 288 KiB

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View file

@ -1,22 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="133px" height="132px" viewBox="0 0 133 132" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
<title>Euromat RUNDE 2 Copy</title>
<svg width="130px" height="118px" viewBox="0 0 130 118" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com -->
<title>Group 3</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M64.6685667,121.194159 L66.7375333,114.554349 L61.1517667,118.712931 L55.4619333,114.697989 L57.6998333,121.28309 L52.1145333,125.441905 L59.0830333,125.352741 L61.3209333,131.938074 L63.3899,125.298265 L70.3588667,125.209333 L64.6685667,121.194159 Z M94.0317,116.169778 L96.1004333,109.529735 L90.5151333,113.688317 L84.8253,109.673608 L87.0632,116.258709 L81.4779,120.417524 L88.4464,120.328593 L90.6843,126.913693 L92.7532667,120.273884 L99.722,120.184952 L94.0317,116.169778 Z M120.295233,69.374963 L114.709933,73.533545 L121.678667,73.4450794 L123.916567,80.0299471 L125.9853,73.3899048 L132.954033,73.3012063 L127.263733,69.2860317 L129.332467,62.6459894 L123.747167,66.8048042 L118.057333,62.7900952 L120.295233,69.374963 Z M124.297133,33.3494392 L118.711367,37.5080212 L113.021533,33.4930794 L115.259433,40.0781799 L109.674133,44.2369947 L116.642633,44.1480635 L118.880767,50.733164 L120.9495,44.0933545 L127.918233,44.0046561 L122.228167,39.9897143 L124.297133,33.3494392 Z M122.633467,101.185333 L116.9434,97.1701587 L119.012133,90.5301164 L113.4266,94.6889312 L107.736767,90.6737566 L109.974667,97.2588571 L104.389367,101.417672 L111.3581,101.328974 L113.596,107.913841 L115.664733,101.274032 L122.633467,101.185333 Z M17.6785,88.0374815 L19.7474667,81.397672 L14.1619333,85.556254 L8.47186667,81.5413122 L10.7095333,88.1264127 L5.124,92.2849947 L12.0929667,92.1962963 L14.3306333,98.7813968 L16.3996,92.1415873 L23.3683333,92.0524233 L17.6785,88.0374815 Z M12.6424667,58.7406984 L14.7112,52.1004233 L9.1259,56.2592381 L3.43606667,52.2445291 L5.67396667,58.8293968 L0.0882,62.9884444 L7.05716667,62.8992804 L9.29506667,69.4848466 L11.3640333,62.8445714 L18.3325333,62.7556402 L12.6424667,58.7406984 Z M47.9432333,5.21691005 L42.3579333,9.37595767 L36.6681,5.36078307 L38.906,11.9458836 L33.3204667,16.1044656 L40.2892,16.0157672 L42.5273333,22.6008677 L44.5960667,15.9610582 L51.5645667,15.872127 L45.8745,11.8571852 L47.9432333,5.21691005 Z M77.3070667,0.192761905 L71.7213,4.35157672 L66.0314667,0.336402116 L68.2693667,6.92173545 L62.6838333,11.0800847 L69.6525667,10.9913862 L71.8904667,17.576254 L73.9592,10.9366772 L80.9279333,10.847746 L75.2378667,6.83303704 L77.3070667,0.192761905 Z M17.3777333,35.0153862 L19.6156333,41.6004868 L21.6846,34.9604444 L28.6531,34.871746 L22.9630333,30.8568042 L25.0317667,24.2167619 L19.4464667,28.3755767 L13.7561667,24.3604021 L15.9945333,30.9455026 L10.409,35.1040847 L17.3777333,35.0153862 Z M36.7213,110.896995 L38.7902667,104.256952 L33.2047333,108.415534 L27.5146667,104.400593 L29.7523333,110.985926 L24.1672667,115.144741 L31.1357667,115.055577 L33.3736667,121.64091 L35.4424,115.001101 L42.4116,114.912169 L36.7213,110.896995 Z M103.185133,17.1299683 L108.875433,21.1451429 L101.9067,21.2338413 L99.8379667,27.8736508 L97.5998333,21.2885503 L90.6315667,21.3772487 L96.2166333,17.2188995 L93.9785,10.6337989 L99.6685667,14.6487407 L105.2541,10.4901587 L103.185133,17.1299683 Z" id="path-1"></path>
<linearGradient x1="6.93284697%" y1="48.124685%" x2="96.8342929%" y2="47.9910254%" id="linearGradient-1">
<stop stop-color="#EECC24" offset="0%"></stop>
<stop stop-color="#EE9A24" offset="100%"></stop>
</linearGradient>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Artboard-Copy-6" transform="translate(-6.000000, -6.000000)">
<g id="Euromat-RUNDE-2-Copy" transform="translate(6.000000, 6.000000)">
<g id="Group-4">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="Clip-3" fill="#FEE872" xlink:href="#path-1"></use>
</g>
<g id="Group-12" transform="translate(29.000000, 37.000000)" fill="#FFFFFF">
<path d="M4.56128722,0.0319890625 C2.0417377,0.0319890625 0.0133638978,1.88103984 0.0133638978,4.17512578 L0.0133638978,41.9517195 C0.0133638978,44.2453445 2.0417377,46.0946258 4.56128722,46.0946258 L7.26158754,46.0946258 C6.25754601,50.4670789 4.09366741,54.6807391 2.00302204,58.8743484 C7.37960032,55.2175008 11.4351818,51.2345398 14.9359166,46.0946258 L15.1488527,46.0946258 L68.2305812,46.0946258 C70.7498974,46.0946258 72.7782712,44.245575 72.7782712,41.9517195 L72.7782712,4.17512578 C72.7782712,1.88127031 70.7498974,0.0319890625 68.2305812,0.0319890625 L4.56152045,0.0319890625 L4.56128722,0.0319890625 Z" id="Combined-Shape"></path>
<g id="Group-3" transform="translate(-1.000000, -7.000000)">
<g id="190418_euromat_logo_final">
<rect id="Rectangle" x="0" y="0" width="131.843478" height="131.843478"></rect>
<g id="Group" transform="translate(1.530691, 7.551407)">
<g transform="translate(15.714327, 0.015207)" fill="#EECC24" id="Shape">
<path d="M50.4331717,111.186522 L56.1810503,111.186522 L51.5308013,107.809237 L53.3068145,102.341534 L48.656862,105.718819 L44.0069095,102.341534 L45.7829227,107.809237 L41.1326737,111.186522 L46.8808487,111.186522 L48.656862,116.654225 L50.4331717,111.186522 Z M26.6992306,104.826315 L32.4471091,104.826315 L27.7971566,101.44903 L29.5731699,95.9813267 L24.9232174,99.3615769 L20.2729684,95.9813267 L22.0492781,101.44903 L17.3987326,104.826315 L23.1469076,104.826315 L24.9229209,110.294017 L26.6992306,104.826315 Z M72.3908031,110.294017 L74.1668163,104.826315 L79.9146949,104.826315 L75.2644459,101.44903 L77.0407556,95.9813267 L72.3905066,99.3615769 L67.7408506,95.9813267 L69.5168638,101.44903 L64.8666148,104.826315 L70.6144934,104.826315 L72.3905066,110.294017 L72.3908031,110.294017 Z M9.32513654,87.4506428 L15.0727186,87.4506428 L10.4227661,84.0733578 L12.1987793,78.6056549 L7.54853031,81.9859051 L2.8988743,78.6056549 L4.67488753,84.0733578 L0.0246385248,87.4506428 L5.77281357,87.4506428 L7.5491233,92.9183457 L9.32513654,87.4506428 Z M91.5412069,87.4506428 L97.2890854,87.4506428 L92.6388364,84.0733578 L94.4151461,78.6056549 L89.7648971,81.9859051 L85.1146481,78.6056549 L86.8909579,84.0733578 L82.2410054,87.4506428 L87.9888839,87.4506428 L89.7651936,92.9183457 L91.5412069,87.4506428 Z M91.5412069,33.7550727 L97.2887889,33.7550727 L92.6391329,30.3748225 L94.4151461,24.9100848 L89.7648971,28.2873698 L85.1149446,24.9100848 L86.8909579,30.3748225 L82.2410054,33.7550727 L87.9888839,33.7550727 L89.7651936,39.2227756 L91.5412069,33.7550727 Z M6.20214031,33.7550727 L0.454854752,33.7550727 L5.10451076,30.3748225 L3.32820104,24.9100848 L7.97845004,28.2873698 L12.628699,24.9100848 L10.8526858,30.3748225 L15.5023418,33.7550727 L9.75475977,33.7550727 L7.97815354,39.2227756 L6.20214031,33.7550727 Z M74.1668163,16.3794009 L79.9146949,16.3796974 L75.2647424,13.0006333 L77.0407556,7.53381996 L72.3905066,10.9128841 L67.7408506,7.53381996 L69.5165673,13.0006333 L64.8666148,16.3796974 L70.6144934,16.3796974 L72.3905066,21.8465107 L74.1668163,16.3794009 Z M23.5768274,16.3794009 L17.8289488,16.3796974 L22.4789013,13.0006333 L20.7025916,7.53381996 L25.3528406,10.9128841 L30.0027931,7.53381996 L28.2270764,13.0006333 L32.8767324,16.3796974 L27.1291503,16.3796974 L25.3531371,21.8465107 L23.5768274,16.3794009 Z M46.1600661,6.87200257 L43.3569894,1.85411017 L48.5741395,4.26565179 L52.4801826,0.0486414773 L51.7985375,5.75652002 L57.0162805,8.16835815 L51.3778091,9.28413721 L50.696164,14.9914227 L47.8927908,9.97353033 L42.254023,11.0890129 L46.1600661,6.87200257 Z"></path>
</g>
<g transform="translate(0.001999, 42.535666)" fill-rule="nonzero" id="Shape">
<g>
<g>
<g transform="translate(0.138243, 0.051510)" fill="url(#linearGradient-1)">
<path d="M63.0592975,6.94997748 C62.6745456,6.94997748 62.482968,7.1417614 62.482968,7.52532923 L62.482968,25.6951891 C62.482968,25.9151112 62.519687,26.0720926 62.5939234,26.1676144 C62.6673615,26.2638766 62.8373867,26.3120076 63.1032007,26.3120076 L65.5410266,26.3120076 C65.8060424,26.3120076 65.9760675,26.2638766 66.0503039,26.1676144 C66.123742,26.0720926 66.1612593,25.9151112 66.1612593,25.6951891 L66.1612593,7.52532923 C66.1612593,7.1417614 65.9680851,6.94997748 65.5849298,6.94997748 L63.0592975,6.94997748 Z M72.6756984,27.2983249 C72.6756984,27.8736767 72.6014621,28.4149664 72.4537876,28.9214537 C72.3053149,29.4294219 72.0546675,29.8744494 71.7002488,30.2580172 C71.3466283,30.6423255 70.8732718,30.9503646 70.282574,31.1828748 C69.6910779,31.4161255 68.9527056,31.5323806 68.0666589,31.5323806 L60.6214716,31.5323806 C59.7354248,31.5323806 58.9962543,31.4161255 58.4063547,31.1828748 C57.8148586,30.9503646 57.3423004,30.6423255 56.9886799,30.2580172 C56.899277,30.1610146 55.3810239,28.6615457 55.3043929,28.5571383 C55.0776926,28.2468778 56.3445,29.3013191 56.2343428,28.9214537 C56.0866684,28.4149664 56.0132303,27.8736767 56.0132303,27.2983249 L56.0132303,5.59268051 C56.0132303,4.41531979 56.3596666,3.47639314 57.0541356,2.77664101 C57.7478064,2.07836985 58.8493781,1.72886402 60.3556575,1.72886402 L68.3324729,1.72886402 C69.5034915,1.72886402 69.0173631,0.527808 69.6974639,0.949880709 C69.8922345,1.07057869 71.4791362,2.62114054 71.6339948,2.77664101 C72.3276657,3.47639314 72.6756984,4.41531979 72.6756984,5.59268051 L72.6756984,27.2983249 Z M43.1615613,6.94997748 L43.1615613,17.2270777 L46.3082246,17.2270777 C46.7217131,17.2270777 46.9292556,17.0204842 46.9292556,16.6095187 L46.9292556,7.56605554 C46.9292556,7.15509001 46.7217131,6.94997748 46.3082246,6.94997748 L43.1615613,6.94997748 Z M53.2656871,19.4055653 C53.2656871,20.0631101 53.0222238,20.6666 52.534499,21.2145541 C52.0467742,21.7625081 51.3299544,22.0364852 50.3848378,22.0364852 L53.7534119,31.5323806 L47.1056667,31.5323806 L45.4421339,29.8596398 L44.0037048,22.0364852 L43.1615613,22.0364852 L43.1615613,31.5323806 L36.7365251,31.5323806 L35.0745887,29.7737443 L36.7365251,1.72886402 L48.9232598,1.72886402 C49.9857177,1.72886402 49.4804316,0.438210109 50.1389798,0.785494496 C50.4143727,0.930628269 52.0188358,2.57078801 52.2239835,2.77664101 C52.9184526,3.47639314 53.2656871,4.41531979 53.2656871,5.59268051 L53.2656871,19.4055653 Z M22.4671813,31.5323806 C20.6056849,31.5323806 19.3053515,31.1762105 18.5669792,30.4631298 C18.1981921,30.1077001 16.746193,28.8163057 16.5617995,28.2268849 C16.3766078,27.6374641 17.4590216,27.7500168 17.4590216,26.9280857 L17.4590216,1.72886402 L22.4671813,0.0265040979 L24.0181622,1.72886402 L24.0181622,25.6537223 C24.0181622,25.8736444 24.0548813,26.0372901 24.1283194,26.146881 C24.2025557,26.2572122 24.3725809,26.3120076 24.638395,26.3120076 L26.8990115,26.3120076 C27.1648255,26.3120076 27.3340525,26.2572122 27.4082888,26.146881 C27.4817269,26.0372901 27.5192442,25.8736444 27.5192442,25.6537223 L27.5192442,1.72886402 L32.358177,0.0265040979 L34.0775866,1.72886402 L34.0775866,26.9280857 C34.0775866,28.5719478 33.7080013,29.75153 32.969629,30.4631298 C32.2304585,31.1762105 30.9309233,31.5323806 29.0702251,31.5323806 L22.4671813,31.5323806 Z M1.63869696,1.72886402 L12.5027475,0.0265040979 L14.1359472,1.72886402 L15.2439048,7.27800943 L8.24253903,7.27800943 L8.24253903,14.3495785 L11.912848,12.6501805 L13.5596177,14.3495785 L13.5596177,19.4877584 L8.24253903,19.4877584 L8.24253903,25.9832352 L13.5596177,24.3127159 L14.9772925,25.9832352 L13.8701332,31.5323806 L1.63869696,31.5323806 L0.0230585739,29.7737443 L1.63869696,1.72886402 Z"></path>
</g>
<g transform="translate(0.048447, 0.083148)" fill="#FFFFFF">
<path d="M61.4628168,5.23186334 C61.078065,5.23186334 60.8864873,5.42364726 60.8864873,5.80721509 L60.8864873,23.977075 C60.8864873,24.1969971 60.9232064,24.3539785 60.9974427,24.4495002 C61.0708808,24.5457624 61.240906,24.5938935 61.5067201,24.5938935 L63.944546,24.5938935 C64.2095617,24.5938935 64.3795869,24.5457624 64.4538233,24.4495002 C64.5272614,24.3539785 64.5647787,24.1969971 64.5647787,23.977075 L64.5647787,5.80721509 C64.5647787,5.42364726 64.3716045,5.23186334 63.9884492,5.23186334 L61.4628168,5.23186334 Z M71.0792178,25.5802108 C71.0792178,26.1555625 71.0049815,26.6968523 70.857307,27.2033395 C70.7088343,27.7113077 70.4581869,28.1563353 70.1037682,28.5399031 C69.7501477,28.9242114 69.2767912,29.2322504 68.6860934,29.4647607 C68.0945973,29.6980114 67.356225,29.8142665 66.4701783,29.8142665 L59.0249909,29.8142665 C58.1389442,29.8142665 57.3997737,29.6980114 56.8098741,29.4647607 C56.218378,29.2322504 55.7458198,28.9242114 55.3921993,28.5399031 C55.0369824,28.1563353 54.7855367,27.7113077 54.6378622,27.2033395 C54.4901877,26.6968523 54.4167496,26.1555625 54.4167496,25.5802108 L54.4167496,3.87456637 C54.4167496,2.69720565 54.7631859,1.75827899 55.457655,1.05852687 C56.1513258,0.360255705 57.2528975,0.010749883 58.7591769,0.010749883 L66.7359923,0.010749883 C68.24307,0.010749883 69.3430452,0.360255705 70.0375142,1.05852687 C70.7311851,1.75827899 71.0792178,2.69720565 71.0792178,3.87456637 L71.0792178,25.5802108 Z M41.5650807,5.23186334 L41.5650807,15.5089636 L44.711744,15.5089636 C45.1252325,15.5089636 45.3327749,15.3023701 45.3327749,14.8914046 L45.3327749,5.8479414 C45.3327749,5.43697587 45.1252325,5.23186334 44.711744,5.23186334 L41.5650807,5.23186334 Z M51.6692065,17.6874511 C51.6692065,18.344996 51.4257432,18.9484859 50.9380184,19.4964399 C50.4502936,20.044394 49.7334738,20.318371 48.7883572,20.318371 L52.1569313,29.8142665 L45.509186,29.8142665 L42.4072242,20.318371 L41.5650807,20.318371 L41.5650807,29.8142665 L35.1400444,29.8142665 L35.1400444,0.010749883 L47.3267792,0.010749883 C48.8330587,0.010749883 49.9330338,0.360255705 50.6275029,1.05852687 C51.321972,1.75827899 51.6692065,2.69720565 51.6692065,3.87456637 L51.6692065,17.6874511 Z M20.8707007,29.8142665 C19.0092043,29.8142665 17.7088708,29.4580964 16.9704986,28.7450156 C16.2321263,28.0334158 15.862541,26.8538337 15.862541,25.2099716 L15.862541,0.010749883 L22.4216816,0.010749883 L22.4216816,23.9356082 C22.4216816,24.1555303 22.4584007,24.319176 22.5318388,24.4287668 C22.6060751,24.5390981 22.7761003,24.5938935 23.0419143,24.5938935 L25.3025309,24.5938935 C25.5683449,24.5938935 25.7375719,24.5390981 25.8118082,24.4287668 C25.8852463,24.319176 25.9227636,24.1555303 25.9227636,23.9356082 L25.9227636,0.010749883 L32.481106,0.010749883 L32.481106,25.2099716 C32.481106,26.8538337 32.1115207,28.0334158 31.3731484,28.7450156 C30.6339779,29.4580964 29.3344427,29.8142665 27.4737445,29.8142665 L20.8707007,29.8142665 Z M0.0422163413,0.010749883 L12.5394666,0.010749883 L13.6474242,5.55989529 L6.64605841,5.55989529 L6.64605841,12.6314644 L11.9631371,12.6314644 L11.9631371,17.7696442 L6.64605841,17.7696442 L6.64605841,24.2651211 L13.3808119,24.2651211 L12.2736526,29.8142665 L0.0422163413,29.8142665 L0.0422163413,0.010749883 Z"></path>
</g>
<g transform="translate(74.374827, 0.612803)" fill="#211452">
<path d="M52.6771103,0.0246318597 L54.2729862,5.49206051 L49.9751019,5.49206051 L49.9751019,29.3881367 L43.4181014,29.3881367 L43.4181014,5.49206051 L39.1209491,5.49206051 L40.8046715,0.0246318597 L52.6771103,0.0246318597 Z M30.1708667,21.0852741 L33.1393425,21.0852741 L31.6781643,10.6764142 L30.1708667,21.0852741 Z M29.4622392,25.7429612 L28.8853813,29.3881367 L22.4184234,29.3881367 L28.2214091,0.0246318597 L35.0880681,0.0246318597 L40.8932499,29.3881367 L34.4240958,29.3881367 L33.8479699,25.7429612 L29.4622392,25.7429612 Z M6.29202345,15.5362021 L6.29202345,29.3881367 L0.0446814499,29.3881367 L0.0446814499,0.0246318597 L6.82349407,0.0246318597 L10.3234404,12.4176932 L13.8241188,0.0246318597 L20.6468546,0.0246318597 L20.6468546,29.3881367 L14.3995126,29.3881367 L14.3995126,15.5362021 L10.3234404,27.2821394 L6.29202345,15.5362021 Z"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -13,10 +13,10 @@
<meta name="theme-color" content="#40A6EE">
<!-- Open Graph -->
<meta property="og:url" content="https://www.euromat.info" />
<meta property="og:title" content="EUROMAT 2017" />
<meta property="og:locale" content="de_DE" />
<meta property="og:locale:alternate" content="en_GB" />
<meta property="og:description" content="Der EUROMAT ist nicht einfach nur ein Wahlomat. Sondern Ihr digitaler Wahl-Freund, der Ihnen einen Eindruck von den europapolitischen Positionen der Parteien vermittelt." />
<meta property="og:title" content="EUROMAT 2019" />
<meta property="og:locale" content="en_GB" />
<meta property="og:locale:alternate" content="de_DE" />
<meta property="og:description" content="The EUROMAT is not a regular voting advice application. On the contrary, it is your digital tool navigating you through the policies and visions of the current European parties. The goal of the EUROMAT is to support you to make an informed choice for the upcoming European elections!" />
<meta property="og:image" content="https://www.euromat.info/img/facebook.2.png" />
<meta property="og:image:secure_url" content="https://www.euromat.info/img/facebook.2.png" />
<meta property="fb:app_id" content="766231516835034" />

Binary file not shown.

View file

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 723 336" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<g transform="matrix(1,0,0,1,-1185.53,-806.681)">
<g id="horizontal" transform="matrix(1.33236,0,0,0.618984,1028.79,796.007)">
<rect x="117.642" y="17.245" width="542.567" height="542.567" style="fill:none;"/>
<clipPath id="_clip1">
<rect x="117.642" y="17.245" width="542.567" height="542.567"/>
</clipPath>
<g clip-path="url(#_clip1)">
<g transform="matrix(1.2847,0,0,2.76532,439.065,223.679)">
<g transform="matrix(1,0,0,1,45.519,12.0545)">
<path d="M0,-9.267C-0.443,-9.267 -0.802,-9.151 -1.084,-8.916C-1.365,-8.682 -1.508,-8.345 -1.508,-7.905C-1.508,-7.465 -1.377,-7.113 -1.116,-6.843C-0.856,-6.575 -0.513,-6.368 -0.094,-6.223C0.326,-6.079 0.793,-5.943 1.309,-5.81C1.825,-5.679 2.336,-5.521 2.847,-5.338C3.356,-5.151 3.818,-4.92 4.239,-4.646C4.659,-4.371 5,-3.981 5.261,-3.479C5.522,-2.976 5.651,-2.375 5.651,-1.673C5.651,-0.449 5.152,0.6 4.156,1.472C3.159,2.347 1.847,2.785 0.216,2.785C-1.414,2.785 -2.729,2.39 -3.727,1.609C-4.724,0.825 -5.223,-0.292 -5.223,-1.736L-1.465,-1.736C-1.369,-0.581 -0.778,0 0.308,0C0.819,0 1.217,-0.137 1.505,-0.404C1.794,-0.673 1.938,-1.012 1.938,-1.428C1.938,-1.839 1.808,-2.174 1.546,-2.438C1.285,-2.698 0.944,-2.904 0.524,-3.056C0.105,-3.206 -0.363,-3.347 -0.878,-3.479C-1.395,-3.61 -1.905,-3.77 -2.417,-3.965C-2.925,-4.156 -3.39,-4.388 -3.809,-4.656C-4.228,-4.924 -4.567,-5.309 -4.831,-5.81C-5.09,-6.313 -5.223,-6.908 -5.223,-7.596C-5.223,-8.946 -4.72,-10.022 -3.715,-10.835C-2.711,-11.647 -1.43,-12.052 0.132,-12.052C1.694,-12.052 2.956,-11.698 3.919,-10.99C4.883,-10.282 5.386,-9.164 5.425,-7.635L1.587,-7.635C1.533,-8.16 1.363,-8.561 1.082,-8.844C0.799,-9.127 0.438,-9.267 0,-9.267" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,63.5522,14.6944)">
<path d="M0,-14.528L0,-11.846L-5.242,-11.846L-5.242,-8.728L-0.62,-8.728L-0.62,-6.048L-5.242,-6.048L-5.242,-2.685L0,-2.685L0,0L-8.77,0L-8.77,-14.528L0,-14.528Z" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,84.1377,10.5464)">
<path d="M0,-6.293L0,-4.887L-2.188,-4.887L-2.188,4.146L-3.938,4.146L-3.938,-4.887L-5.289,-4.887L-5.289,-6.293L-3.938,-6.293L-3.938,-7.167C-3.938,-8.31 -3.633,-9.138 -3.024,-9.659C-2.414,-10.178 -1.458,-10.439 -0.152,-10.439L-0.152,-9.031C-0.915,-9.031 -1.443,-8.889 -1.739,-8.602C-2.038,-8.317 -2.188,-7.839 -2.188,-7.167L-2.188,-6.293L0,-6.293Z" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,95.7651,14.6944)">
<path d="M0,-14.528L0,-11.846L-5.24,-11.846L-5.24,-8.728L-0.618,-8.728L-0.618,-6.048L-5.24,-6.048L-5.24,-2.685L0,-2.685L0,0L-8.77,0L-8.77,-14.528L0,-14.528Z" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,99.564,6.1909)">
<path d="M0,2.663L0,-5.983L3.526,-5.983L3.526,2.663C3.526,3.529 3.738,4.198 4.166,4.664C4.592,5.132 5.22,5.366 6.043,5.366C6.87,5.366 7.504,5.132 7.941,4.664C8.383,4.198 8.602,3.529 8.602,2.663L8.602,-5.983L12.132,-5.983L12.132,2.663C12.132,3.942 11.833,5.046 11.232,5.975C10.636,6.904 9.879,7.581 8.965,8.009C8.05,8.434 7.055,8.646 5.983,8.646C4.304,8.646 2.888,8.123 1.733,7.08C0.577,6.035 0,4.562 0,2.663" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,119.062,12.0131)">
<path d="M0,-9.122L0,-5.636L2.188,-5.636C2.723,-5.636 3.147,-5.794 3.458,-6.109C3.766,-6.428 3.924,-6.843 3.924,-7.357C3.924,-7.874 3.762,-8.298 3.446,-8.627C3.13,-8.959 2.711,-9.122 2.188,-9.122L0,-9.122ZM0,-2.954L0,2.682L-3.528,2.682L-3.528,-11.804L2.188,-11.804C3.867,-11.804 5.172,-11.371 6.108,-10.505C7.044,-9.64 7.51,-8.592 7.51,-7.367C7.51,-6.528 7.257,-5.71 6.746,-4.914C6.239,-4.116 5.406,-3.551 4.25,-3.222L7.799,2.682L3.674,2.682L0.414,-2.954L0,-2.954Z" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,139.499,4.3978)">
<path d="M0,6.045C0.696,5.288 1.043,4.278 1.043,3.011C1.043,1.745 0.696,0.736 0,-0.02C-0.694,-0.778 -1.623,-1.157 -2.783,-1.157C-3.945,-1.157 -4.874,-0.778 -5.567,-0.02C-6.264,0.736 -6.611,1.745 -6.611,3.011C-6.611,4.278 -6.264,5.288 -5.567,6.045C-4.874,6.804 -3.945,7.18 -2.783,7.18C-1.623,7.18 -0.694,6.804 0,6.045M-8.044,8.336C-9.485,6.932 -10.201,5.157 -10.201,3.011C-10.201,0.865 -9.485,-0.905 -8.044,-2.302C-6.611,-3.698 -4.848,-4.396 -2.763,-4.396C-0.681,-4.396 1.075,-3.698 2.498,-2.302C3.924,-0.905 4.634,0.865 4.634,3.011C4.634,5.157 3.918,6.932 2.488,8.336C1.059,9.738 -0.696,10.441 -2.773,10.441C-4.85,10.441 -6.611,9.738 -8.044,8.336" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,150.756,8.5264)">
<path d="M0,-2.149L2.188,-2.149C2.723,-2.149 3.146,-2.307 3.456,-2.625C3.766,-2.941 3.92,-3.356 3.92,-3.871C3.92,-4.387 3.762,-4.811 3.446,-5.14C3.128,-5.47 2.709,-5.636 2.188,-5.636L0,-5.636L0,-2.149ZM7.51,-3.88C7.51,-2.904 7.159,-1.963 6.457,-1.055C6.086,-0.587 5.533,-0.207 4.799,0.09C4.06,0.386 3.19,0.533 2.188,0.533L0,0.533L0,6.168L-3.53,6.168L-3.53,-8.317L2.188,-8.317C3.865,-8.317 5.172,-7.884 6.108,-7.018C7.04,-6.153 7.51,-5.105 7.51,-3.88" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,169.985,14.6944)">
<path d="M0,-14.528L0,-11.846L-5.24,-11.846L-5.24,-8.728L-0.616,-8.728L-0.616,-6.048L-5.24,-6.048L-5.24,-2.685L0,-2.685L0,0L-8.77,0L-8.77,-14.528L0,-14.528Z" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,71.8613,13.4567)">
<path d="M0,-8.178C-2.254,-8.178 -4.089,-6.343 -4.089,-4.091C-4.089,-1.836 -2.254,-0.001 0,-0.001C2.254,-0.001 4.087,-1.836 4.087,-4.091C4.087,-6.343 2.254,-8.178 0,-8.178M0,1.426C-3.04,1.426 -5.515,-1.048 -5.515,-4.091C-5.515,-7.129 -3.04,-9.604 0,-9.604C3.041,-9.604 5.515,-7.129 5.515,-4.091C5.515,-1.048 3.041,1.426 0,1.426" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,13.9268,6.1909)">
<path d="M0,2.663L0,-5.983L3.528,-5.983L3.528,2.663C3.528,3.529 3.743,4.198 4.167,4.664C4.595,5.132 5.223,5.366 6.045,5.366C6.873,5.366 7.504,5.132 7.945,4.664C8.384,4.198 8.602,3.529 8.602,2.663L8.602,-5.983L12.132,-5.983L12.132,2.663C12.132,3.942 11.833,5.046 11.235,5.975C10.636,6.904 9.879,7.581 8.967,8.009C8.052,8.434 7.058,8.646 5.983,8.646C4.306,8.646 2.89,8.123 1.734,7.08C0.578,6.035 0,4.562 0,2.663" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,29.8979,14.6935)">
<path d="M0,-14.486L3.528,-14.486L3.528,-2.683L7.923,-2.683L7.923,0L0,0L0,-14.486Z" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(1,0,0,1,3.5278,8.5264)">
<path d="M0,-2.149L2.188,-2.149C2.724,-2.149 3.147,-2.307 3.458,-2.625C3.766,-2.941 3.92,-3.356 3.92,-3.871C3.92,-4.387 3.764,-4.811 3.446,-5.14C3.13,-5.47 2.708,-5.636 2.188,-5.636L0,-5.636L0,-2.149ZM7.512,-3.88C7.512,-2.904 7.161,-1.963 6.459,-1.055C6.088,-0.587 5.533,-0.207 4.799,0.09C4.062,0.386 3.192,0.533 2.188,0.533L0,0.533L0,6.168L-3.528,6.168L-3.528,-8.317L2.188,-8.317C3.867,-8.317 5.172,-7.884 6.108,-7.018C7.042,-6.153 7.512,-5.105 7.512,-3.88" style="fill:white;fill-rule:nonzero;"/>
</g>
</g>
<g transform="matrix(1.21808,0,0,2.62192,456.196,322.87)">
<path d="M0,3.618L0,17.775C0,17.989 0.17,18.159 0.384,18.159L3.028,18.159C3.241,18.159 3.412,17.989 3.412,17.775L3.412,3.618C3.412,3.404 3.241,3.233 3.028,3.233L0.384,3.233C0.17,3.233 0,3.404 0,3.618M-6.113,-9.621C-6.113,-9.068 -6.454,-7.873 -7.925,-7.83L-10.419,-7.83L-10.419,-11.391L-7.989,-11.391C-6.454,-11.391 -6.113,-10.24 -6.113,-9.621M-2.701,-9.621C-2.701,-11.648 -3.958,-14.547 -8.095,-14.547L-13.468,-14.547C-13.682,-14.547 -13.852,-14.376 -13.852,-14.163L-13.852,-0.005C-13.852,0.208 -13.682,0.379 -13.468,0.379L-10.803,0.379C-10.59,0.379 -10.419,0.208 -10.419,-0.005L-10.419,-4.632L-7.839,-4.632C-5.324,-4.632 -2.701,-6.637 -2.701,-9.621M11.042,-7.078C11.042,-4.787 9.178,-2.924 6.887,-2.924C4.597,-2.924 2.733,-4.787 2.733,-7.078C2.733,-9.368 4.597,-11.233 6.887,-11.233C9.178,-11.233 11.042,-9.368 11.042,-7.078M14.595,-7.078C14.595,-11.328 11.138,-14.786 6.887,-14.786C2.637,-14.786 -0.82,-11.328 -0.82,-7.078C-0.82,-2.828 2.637,0.63 6.887,0.63C11.138,0.63 14.595,-2.828 14.595,-7.078M13.154,13.811C13.154,14.797 12.302,15.38 11.406,15.38C10.51,15.38 9.636,14.864 9.636,13.811C9.636,12.758 10.51,12.221 11.406,12.221C12.302,12.221 13.154,12.758 13.154,13.811M13.154,7.537C13.154,8.591 12.302,9.128 11.406,9.128C10.51,9.128 9.636,8.591 9.636,7.537C9.636,6.507 10.51,6.014 11.406,6.014C12.302,6.014 13.154,6.507 13.154,7.537M14.722,10.674C16.066,9.845 16.448,8.321 16.47,7.537C16.537,5.924 15.551,2.988 11.406,2.988C7.261,2.988 6.297,5.879 6.297,7.537C6.297,8.927 6.925,10.114 8,10.651C6.992,11.189 6.342,12.78 6.342,13.811C6.342,15.447 7.261,18.404 11.406,18.404C15.551,18.404 16.47,15.425 16.47,13.789C16.47,12.803 16.044,11.414 14.722,10.674M25.646,-0.005L25.646,-2.414C25.646,-2.628 25.476,-2.798 25.262,-2.798L21.013,-2.798L21.013,-14.163C21.013,-14.376 20.842,-14.547 20.629,-14.547L17.964,-14.547C17.751,-14.547 17.58,-14.376 17.58,-14.163L17.58,-0.005C17.58,0.208 17.751,0.379 17.964,0.379L25.262,0.379C25.476,0.379 25.646,0.208 25.646,-0.005M31.961,-0.005L31.961,-14.163C31.961,-14.376 31.791,-14.547 31.577,-14.547L28.934,-14.547C28.72,-14.547 28.55,-14.376 28.55,-14.163L28.55,-0.005C28.55,0.208 28.72,0.379 28.934,0.379L31.577,0.379C31.791,0.379 31.961,0.208 31.961,-0.005M30.673,10.696C30.673,12.987 28.81,14.85 26.519,14.85C24.229,14.85 22.365,12.987 22.365,10.696C22.365,8.406 24.229,6.542 26.519,6.542C28.81,6.542 30.673,8.406 30.673,10.696M34.227,10.696C34.227,6.446 30.769,2.988 26.519,2.988C22.269,2.988 18.811,6.446 18.811,10.696C18.811,14.946 22.269,18.404 26.519,18.404C30.769,18.404 34.227,14.946 34.227,10.696M46.036,-12.969C46.121,-13.183 46.036,-13.396 45.844,-13.502C43.349,-14.653 41.387,-14.781 40.449,-14.781C37.592,-14.781 35.524,-13.118 35.524,-10.325C35.524,-7.255 38.231,-6.423 40.385,-5.72C41.792,-5.272 42.944,-4.866 42.944,-3.929C42.944,-3.182 42.005,-2.65 40.897,-2.65C39.66,-2.65 38.338,-3.14 36.974,-3.758C36.782,-3.843 36.547,-3.779 36.462,-3.587L35.289,-1.412C35.204,-1.221 35.268,-0.986 35.46,-0.901C37.272,0.037 38.957,0.549 41.025,0.549C44.287,0.549 46.547,-1.477 46.547,-4.078C46.547,-6.807 44.266,-7.83 42.197,-8.556C40.535,-9.153 39.042,-9.558 38.957,-10.475C38.935,-11.284 39.767,-11.562 40.663,-11.562C41.856,-11.562 43.626,-10.922 44.564,-10.581C44.777,-10.495 44.991,-10.581 45.076,-10.773L46.036,-12.969Z" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(0.780073,0,0,1.53487,-113.746,-201.874)">
<g transform="matrix(0.818574,0,0,0.895497,291.822,-687.289)">
<path d="M229.897,1301.18L249.283,1301.18L233.599,1289.79L239.589,1271.35L223.906,1282.74L208.223,1271.35L214.213,1289.79L198.529,1301.18L217.916,1301.18L223.906,1319.62L229.897,1301.18ZM149.849,1279.73L169.235,1279.73L153.552,1268.34L159.542,1249.9L143.859,1261.3L128.175,1249.9L134.166,1268.34L118.481,1279.73L137.868,1279.73L143.858,1298.17L149.849,1279.73ZM303.954,1298.17L309.944,1279.73L329.33,1279.73L313.646,1268.34L319.637,1249.9L303.953,1261.3L288.271,1249.9L294.261,1268.34L278.577,1279.73L297.963,1279.73L303.953,1298.17L303.954,1298.17ZM91.251,1221.13L110.636,1221.13L94.953,1209.74L100.943,1191.3L85.259,1202.7L69.577,1191.3L75.567,1209.74L59.883,1221.13L79.27,1221.13L85.261,1239.57L91.251,1221.13ZM368.543,1221.13L387.929,1221.13L372.245,1209.74L378.236,1191.3L362.552,1202.7L346.868,1191.3L352.859,1209.74L337.176,1221.13L356.562,1221.13L362.553,1239.57L368.543,1221.13ZM368.543,1040.04L387.928,1040.04L372.246,1028.64L378.236,1010.21L362.552,1021.6L346.869,1010.21L352.859,1028.64L337.176,1040.04L356.562,1040.04L362.553,1058.48L368.543,1040.04ZM80.718,1040.04L61.334,1040.04L77.016,1028.64L71.025,1010.21L86.709,1021.6L102.393,1010.21L96.403,1028.64L112.085,1040.04L92.7,1040.04L86.708,1058.48L80.718,1040.04ZM309.944,981.44L329.33,981.441L313.647,970.045L319.637,951.608L303.953,963.004L288.271,951.608L294.26,970.045L278.577,981.441L297.963,981.441L303.953,999.878L309.944,981.44ZM139.318,981.44L119.932,981.441L135.615,970.045L129.624,951.608L145.308,963.004L160.991,951.608L155.002,970.045L170.684,981.441L151.299,981.441L145.309,999.878L139.318,981.44ZM215.485,949.376L206.031,932.453L223.627,940.586L236.801,926.364L234.502,945.614L252.1,953.748L233.083,957.511L230.784,976.759L221.329,959.836L202.311,963.598L215.485,949.376Z" style="fill:rgb(238,204,36);"/>
</g>
<g>
<g transform="matrix(2.2038,0,0,2.23631,-48.2819,-271.902)">
<path d="M236.295,254.626C235.813,254.626 235.573,254.885 235.573,255.403L235.573,279.941C235.573,280.238 235.619,280.45 235.712,280.579C235.804,280.709 236.017,280.774 236.35,280.774L239.404,280.774C239.736,280.774 239.949,280.709 240.042,280.579C240.134,280.45 240.181,280.238 240.181,279.941L240.181,255.403C240.181,254.885 239.939,254.626 239.459,254.626L236.295,254.626ZM248.342,282.106C248.342,282.883 248.249,283.614 248.064,284.298C247.878,284.984 247.564,285.585 247.12,286.103C246.677,286.622 246.084,287.038 245.344,287.352C244.603,287.667 243.678,287.824 242.568,287.824L233.241,287.824C232.131,287.824 231.205,287.667 230.466,287.352C229.725,287.038 229.133,286.622 228.69,286.103C228.578,285.972 226.676,283.947 226.58,283.806C226.296,283.387 227.883,284.811 227.745,284.298C227.56,283.614 227.468,282.883 227.468,282.106L227.468,252.793C227.468,251.203 227.902,249.935 228.772,248.99C229.641,248.047 231.021,247.575 232.908,247.575L242.901,247.575C244.368,247.575 243.759,245.953 244.611,246.523C244.855,246.686 246.843,248.78 247.037,248.99C247.906,249.935 248.342,251.203 248.342,252.793L248.342,282.106ZM211.368,254.626L211.368,268.505L215.31,268.505C215.828,268.505 216.088,268.226 216.088,267.671L216.088,255.458C216.088,254.903 215.828,254.626 215.31,254.626L211.368,254.626ZM224.026,271.447C224.026,272.335 223.721,273.15 223.11,273.89C222.499,274.63 221.601,275 220.417,275L224.637,287.824L216.309,287.824L214.225,285.565L212.423,275L211.368,275L211.368,287.824L203.319,287.824L201.237,285.449L203.319,247.575L218.586,247.575C219.917,247.575 219.284,245.832 220.109,246.301C220.454,246.497 222.464,248.712 222.721,248.99C223.591,249.935 224.026,251.203 224.026,252.793L224.026,271.447ZM185.443,287.824C183.111,287.824 181.482,287.343 180.557,286.38C180.095,285.9 178.276,284.156 178.045,283.36C177.813,282.564 179.169,282.716 179.169,281.606L179.169,247.575L185.443,245.276L187.386,247.575L187.386,279.885C187.386,280.182 187.432,280.403 187.524,280.551C187.617,280.7 187.83,280.774 188.163,280.774L190.995,280.774C191.328,280.774 191.54,280.7 191.633,280.551C191.725,280.403 191.772,280.182 191.772,279.885L191.772,247.575L197.834,245.276L199.988,247.575L199.988,281.606C199.988,283.826 199.525,285.419 198.6,286.38C197.674,287.343 196.046,287.824 193.715,287.824L185.443,287.824ZM159.35,247.575L172.96,245.276L175.006,247.575L176.394,255.069L167.623,255.069L167.623,264.619L172.221,262.324L174.284,264.619L174.284,271.558L167.623,271.558L167.623,280.33L174.284,278.074L176.06,280.33L174.673,287.824L159.35,287.824L157.326,285.449L159.35,247.575Z" style="fill:url(#_Linear2);fill-rule:nonzero;"/>
</g>
<g transform="matrix(2.2038,0,0,2.23631,-52.9375,-276.996)">
<path d="M236.295,254.626C235.813,254.626 235.573,254.885 235.573,255.403L235.573,279.941C235.573,280.238 235.619,280.45 235.712,280.579C235.804,280.709 236.017,280.774 236.35,280.774L239.404,280.774C239.736,280.774 239.949,280.709 240.042,280.579C240.134,280.45 240.181,280.238 240.181,279.941L240.181,255.403C240.181,254.885 239.939,254.626 239.459,254.626L236.295,254.626ZM248.342,282.106C248.342,282.883 248.249,283.614 248.064,284.298C247.878,284.984 247.564,285.585 247.12,286.103C246.677,286.622 246.084,287.038 245.344,287.352C244.603,287.667 243.678,287.824 242.568,287.824L233.241,287.824C232.131,287.824 231.205,287.667 230.466,287.352C229.725,287.038 229.133,286.622 228.69,286.103C228.245,285.585 227.93,284.984 227.745,284.298C227.56,283.614 227.468,282.883 227.468,282.106L227.468,252.793C227.468,251.203 227.902,249.935 228.772,248.99C229.641,248.047 231.021,247.575 232.908,247.575L242.901,247.575C244.789,247.575 246.167,248.047 247.037,248.99C247.906,249.935 248.342,251.203 248.342,252.793L248.342,282.106ZM211.368,254.626L211.368,268.505L215.31,268.505C215.828,268.505 216.088,268.226 216.088,267.671L216.088,255.458C216.088,254.903 215.828,254.626 215.31,254.626L211.368,254.626ZM224.026,271.447C224.026,272.335 223.721,273.15 223.11,273.89C222.499,274.63 221.601,275 220.417,275L224.637,287.824L216.309,287.824L212.423,275L211.368,275L211.368,287.824L203.319,287.824L203.319,247.575L218.586,247.575C220.473,247.575 221.851,248.047 222.721,248.99C223.591,249.935 224.026,251.203 224.026,252.793L224.026,271.447ZM185.443,287.824C183.111,287.824 181.482,287.343 180.557,286.38C179.632,285.419 179.169,283.826 179.169,281.606L179.169,247.575L187.386,247.575L187.386,279.885C187.386,280.182 187.432,280.403 187.524,280.551C187.617,280.7 187.83,280.774 188.163,280.774L190.995,280.774C191.328,280.774 191.54,280.7 191.633,280.551C191.725,280.403 191.772,280.182 191.772,279.885L191.772,247.575L199.988,247.575L199.988,281.606C199.988,283.826 199.525,285.419 198.6,286.38C197.674,287.343 196.046,287.824 193.715,287.824L185.443,287.824ZM159.35,247.575L175.006,247.575L176.394,255.069L167.623,255.069L167.623,264.619L174.284,264.619L174.284,271.558L167.623,271.558L167.623,280.33L176.06,280.33L174.673,287.824L159.35,287.824L159.35,247.575Z" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(2.13418,0,0,2.13418,-84.6198,-311.189)">
<path d="M347.444,276.214L349.624,284.384L343.753,284.384L343.753,320.092L334.796,320.092L334.796,284.384L328.926,284.384L331.226,276.214L347.444,276.214ZM316.7,307.685L320.755,307.685L318.759,292.131L316.7,307.685ZM315.732,314.645L314.944,320.092L306.11,320.092L314.037,276.214L323.417,276.214L331.347,320.092L322.51,320.092L321.723,314.645L315.732,314.645ZM284.081,299.393L284.081,320.092L275.547,320.092L275.547,276.214L284.807,276.214L289.588,294.733L294.37,276.214L303.69,276.214L303.69,320.092L295.156,320.092L295.156,299.393L289.588,316.945L284.081,299.393Z" style="fill:rgb(33,20,82);fill-rule:nonzero;"/>
</g>
</g>
</g>
</g>
</g>
</g>
<defs>
<linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(81.8247,-0.302412,0.280513,88.2125,163.636,262.307)"><stop offset="0" style="stop-color:rgb(238,204,36);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(238,154,36);stop-opacity:1"/></linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 543 543" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
<g transform="matrix(1,0,0,1,-559,-613.142)">
<g id="quadrat" transform="matrix(1,0,0,1,441.358,595.897)">
<rect x="117.642" y="17.245" width="542.567" height="542.567" style="fill:none;"/>
<g transform="matrix(1.49099,0,0,1.36291,-320.336,-145.35)">
<g transform="matrix(0.818574,0,0,0.895497,292.416,-687.289)">
<path d="M229.897,1301.18L249.283,1301.18L233.599,1289.79L239.589,1271.35L223.906,1282.74L208.223,1271.35L214.213,1289.79L198.529,1301.18L217.916,1301.18L223.906,1319.62L229.897,1301.18ZM149.849,1279.73L169.235,1279.73L153.552,1268.34L159.542,1249.9L143.859,1261.3L128.175,1249.9L134.166,1268.34L118.481,1279.73L137.868,1279.73L143.858,1298.17L149.849,1279.73ZM303.954,1298.17L309.944,1279.73L329.33,1279.73L313.646,1268.34L319.637,1249.9L303.953,1261.3L288.271,1249.9L294.261,1268.34L278.577,1279.73L297.963,1279.73L303.953,1298.17L303.954,1298.17ZM91.251,1221.13L110.636,1221.13L94.953,1209.74L100.943,1191.3L85.259,1202.7L69.577,1191.3L75.567,1209.74L59.883,1221.13L79.27,1221.13L85.261,1239.57L91.251,1221.13ZM368.543,1221.13L387.929,1221.13L372.245,1209.74L378.236,1191.3L362.552,1202.7L346.868,1191.3L352.859,1209.74L337.176,1221.13L356.562,1221.13L362.553,1239.57L368.543,1221.13ZM368.543,1040.04L387.928,1040.04L372.246,1028.64L378.236,1010.21L362.552,1021.6L346.869,1010.21L352.859,1028.64L337.176,1040.04L356.562,1040.04L362.553,1058.48L368.543,1040.04ZM80.718,1040.04L61.334,1040.04L77.016,1028.64L71.025,1010.21L86.709,1021.6L102.393,1010.21L96.403,1028.64L112.085,1040.04L92.7,1040.04L86.708,1058.48L80.718,1040.04ZM309.944,981.44L329.33,981.441L313.647,970.045L319.637,951.608L303.953,963.004L288.271,951.608L294.26,970.045L278.577,981.441L297.963,981.441L303.953,999.878L309.944,981.44ZM139.318,981.44L119.932,981.441L135.615,970.045L129.624,951.608L145.308,963.004L160.991,951.608L155.002,970.045L170.684,981.441L151.299,981.441L145.309,999.878L139.318,981.44ZM215.485,949.376L206.031,932.453L223.627,940.586L236.801,926.364L234.502,945.614L252.1,953.748L233.083,957.511L230.784,976.759L221.329,959.836L202.311,963.598L215.485,949.376Z" style="fill:rgb(238,204,36);"/>
</g>
<g transform="matrix(0.496376,0,0,0.496376,162.984,25.741)">
<g>
<g>
<g>
<g transform="matrix(4.43978,0,0,4.50528,-425.617,-611.398)">
<path d="M236.295,254.626C235.813,254.626 235.573,254.885 235.573,255.403L235.573,279.941C235.573,280.238 235.619,280.45 235.712,280.579C235.804,280.709 236.017,280.774 236.35,280.774L239.404,280.774C239.736,280.774 239.949,280.709 240.042,280.579C240.134,280.45 240.181,280.238 240.181,279.941L240.181,255.403C240.181,254.885 239.939,254.626 239.459,254.626L236.295,254.626ZM248.342,282.106C248.342,282.883 248.249,283.614 248.064,284.298C247.878,284.984 247.564,285.585 247.12,286.103C246.677,286.622 246.084,287.038 245.344,287.352C244.603,287.667 243.678,287.824 242.568,287.824L233.241,287.824C232.131,287.824 231.205,287.667 230.466,287.352C229.725,287.038 229.133,286.622 228.69,286.103C228.578,285.972 226.676,283.947 226.58,283.806C226.296,283.387 227.883,284.811 227.745,284.298C227.56,283.614 227.468,282.883 227.468,282.106L227.468,252.793C227.468,251.203 227.902,249.935 228.772,248.99C229.641,248.047 231.021,247.575 232.908,247.575L242.901,247.575C244.368,247.575 243.759,245.953 244.611,246.523C244.855,246.686 246.843,248.78 247.037,248.99C247.906,249.935 248.342,251.203 248.342,252.793L248.342,282.106ZM211.368,254.626L211.368,268.505L215.31,268.505C215.828,268.505 216.088,268.226 216.088,267.671L216.088,255.458C216.088,254.903 215.828,254.626 215.31,254.626L211.368,254.626ZM224.026,271.447C224.026,272.335 223.721,273.15 223.11,273.89C222.499,274.63 221.601,275 220.417,275L224.637,287.824L216.309,287.824L214.225,285.565L212.423,275L211.368,275L211.368,287.824L203.319,287.824L201.237,285.449L203.319,247.575L218.586,247.575C219.917,247.575 219.284,245.832 220.109,246.301C220.454,246.497 222.464,248.712 222.721,248.99C223.591,249.935 224.026,251.203 224.026,252.793L224.026,271.447ZM185.443,287.824C183.111,287.824 181.482,287.343 180.557,286.38C180.095,285.9 178.276,284.156 178.045,283.36C177.813,282.564 179.169,282.716 179.169,281.606L179.169,247.575L185.443,245.276L187.386,247.575L187.386,279.885C187.386,280.182 187.432,280.403 187.524,280.551C187.617,280.7 187.83,280.774 188.163,280.774L190.995,280.774C191.328,280.774 191.54,280.7 191.633,280.551C191.725,280.403 191.772,280.182 191.772,279.885L191.772,247.575L197.834,245.276L199.988,247.575L199.988,281.606C199.988,283.826 199.525,285.419 198.6,286.38C197.674,287.343 196.046,287.824 193.715,287.824L185.443,287.824ZM159.35,247.575L172.96,245.276L175.006,247.575L176.394,255.069L167.623,255.069L167.623,264.619L172.221,262.324L174.284,264.619L174.284,271.558L167.623,271.558L167.623,280.33L174.284,278.074L176.06,280.33L174.673,287.824L159.35,287.824L157.326,285.449L159.35,247.575Z" style="fill:url(#_Linear1);fill-rule:nonzero;"/>
</g>
<g transform="matrix(4.43978,0,0,4.50528,-434.996,-621.659)">
<path d="M236.295,254.626C235.813,254.626 235.573,254.885 235.573,255.403L235.573,279.941C235.573,280.238 235.619,280.45 235.712,280.579C235.804,280.709 236.017,280.774 236.35,280.774L239.404,280.774C239.736,280.774 239.949,280.709 240.042,280.579C240.134,280.45 240.181,280.238 240.181,279.941L240.181,255.403C240.181,254.885 239.939,254.626 239.459,254.626L236.295,254.626ZM248.342,282.106C248.342,282.883 248.249,283.614 248.064,284.298C247.878,284.984 247.564,285.585 247.12,286.103C246.677,286.622 246.084,287.038 245.344,287.352C244.603,287.667 243.678,287.824 242.568,287.824L233.241,287.824C232.131,287.824 231.205,287.667 230.466,287.352C229.725,287.038 229.133,286.622 228.69,286.103C228.245,285.585 227.93,284.984 227.745,284.298C227.56,283.614 227.468,282.883 227.468,282.106L227.468,252.793C227.468,251.203 227.902,249.935 228.772,248.99C229.641,248.047 231.021,247.575 232.908,247.575L242.901,247.575C244.789,247.575 246.167,248.047 247.037,248.99C247.906,249.935 248.342,251.203 248.342,252.793L248.342,282.106ZM211.368,254.626L211.368,268.505L215.31,268.505C215.828,268.505 216.088,268.226 216.088,267.671L216.088,255.458C216.088,254.903 215.828,254.626 215.31,254.626L211.368,254.626ZM224.026,271.447C224.026,272.335 223.721,273.15 223.11,273.89C222.499,274.63 221.601,275 220.417,275L224.637,287.824L216.309,287.824L212.423,275L211.368,275L211.368,287.824L203.319,287.824L203.319,247.575L218.586,247.575C220.473,247.575 221.851,248.047 222.721,248.99C223.591,249.935 224.026,251.203 224.026,252.793L224.026,271.447ZM185.443,287.824C183.111,287.824 181.482,287.343 180.557,286.38C179.632,285.419 179.169,283.826 179.169,281.606L179.169,247.575L187.386,247.575L187.386,279.885C187.386,280.182 187.432,280.403 187.524,280.551C187.617,280.7 187.83,280.774 188.163,280.774L190.995,280.774C191.328,280.774 191.54,280.7 191.633,280.551C191.725,280.403 191.772,280.182 191.772,279.885L191.772,247.575L199.988,247.575L199.988,281.606C199.988,283.826 199.525,285.419 198.6,286.38C197.674,287.343 196.046,287.824 193.715,287.824L185.443,287.824ZM159.35,247.575L175.006,247.575L176.394,255.069L167.623,255.069L167.623,264.619L174.284,264.619L174.284,271.558L167.623,271.558L167.623,280.33L176.06,280.33L174.673,287.824L159.35,287.824L159.35,247.575Z" style="fill:white;fill-rule:nonzero;"/>
</g>
<g transform="matrix(4.07165,0,0,4.07165,-436.034,-627.604)">
<path d="M347.444,276.214L349.624,284.384L343.753,284.384L343.753,320.092L334.796,320.092L334.796,284.384L328.926,284.384L331.226,276.214L347.444,276.214ZM316.7,307.685L320.755,307.685L318.759,292.131L316.7,307.685ZM315.732,314.645L314.944,320.092L306.11,320.092L314.037,276.214L323.417,276.214L331.347,320.092L322.51,320.092L321.723,314.645L315.732,314.645ZM284.081,299.393L284.081,320.092L275.547,320.092L275.547,276.214L284.807,276.214L289.588,294.733L294.37,276.214L303.69,276.214L303.69,320.092L295.156,320.092L295.156,299.393L289.588,316.945L284.081,299.393Z" style="fill:rgb(33,20,82);fill-rule:nonzero;"/>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<defs>
<linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(81.8247,-0.302412,0.280513,88.2125,163.636,262.307)"><stop offset="0" style="stop-color:rgb(238,204,36);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(238,154,36);stop-opacity:1"/></linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 9.1 KiB

View file

@ -0,0 +1,7 @@
{
"language": "dk",
"title": "404",
"headline": "404 — Whoops! Something went wrong.",
"content": "Content to be written.",
"button": "Back to main page"
}

View file

@ -22,19 +22,6 @@
<span hidden>{{ teamLabel.polis.label }}</span>
</a>
</h2>
<ul>
<li v-for="(member, index) of members.polis" :key="'member-polis-' + index">
<a
v-if="member.profile"
:href="member.profile"
target="_blank"
>
{{ member.name }}
<feather-external-link />
</a>
<span v-else>{{ member.name }}</span>
</li>
</ul>
</div>
</div>
@ -52,19 +39,6 @@
<span hidden>{{ teamLabel.poe.label }}</span>
</a>
</h2>
<ul>
<li v-for="(member, index) of members.poe" :key="'member-poe-' + index">
<a
v-if="member.profile"
:href="member.profile"
target="_blank"
>
{{ member.name }}
<feather-external-link />
</a>
<span v-else>{{ member.name }}</span>
</li>
</ul>
</div>
</div>
@ -106,16 +80,6 @@
polisLogo: require('@/assets/svg/polis-colored-logo.svg'),
poeLogo: require('@/assets/svg/poe-colored-logo.svg'),
members: {
polis: [
{ name: 'Susanne Zels', profile: 'https://www.linkedin.com/in/susannezels/' },
{ name: 'Stephan Kreutzer', profile: 'https://www.linkedin.com/in/stephan-kreutzer-905a0635/' },
{ name: 'Benjamin Lenzing', profile: null },
{ name: 'Johannes John', profile: null }
],
poe: [
{ name: 'Eva Podgoršek', profile: 'https://twitter.com/evapodg' },
{ name: 'Peter Funk', profile: 'https://twitter.com/funk67' }
],
dev: [
{ name: 'Moritz Kröger', profile: 'http://moritz.berlin' }
]
@ -183,7 +147,6 @@
}
h2 {
margin-bottom: $small-gap;
color: $text-color-secondary;
}
@ -202,10 +165,14 @@
}
}
.people-group.dev h2 {
margin-bottom: $small-gap;
}
.group-inner {
width: calc(100% - #{$base-gap});
background: $background-secondary;
border-radius: $border-radius / 2;
border-radius: $border-radius / 4;
box-shadow: $button-shadow;
padding: $base-gap;
color: $text-color-secondary;

View file

@ -1,8 +1,8 @@
{
"language": "de",
"url": "uber-uns",
"url": "ueber-uns",
"title": "Über uns",
"headline": "Wer steckt eigentlich hinter dem EUROMAT?",
"content": "Als digitaler Wahl-Freund hat der EUROMAT zwar einiges auf dem Kasten. Dennoch besteht seine DNA vor allem aus Einsen und Nullen. An der Umsetzung hat ein engagiertes Team zusammengearbeitet, die Thesen erarbeitet, die Stellungnahmen der Parteien eingeholt, und den EUROMAT technisch umgesetzt. Seit September 2018 arbeitet ein Team aus Ehrenamtlichen an der Entwicklung des EUROMAT. Wir sind Mitglieder des Grassroots-Thinktanks Polis180 e.V. und des Berliner Teams von Pulse of Europe e.V., die sich für den EUROMAT zusammengetan haben.",
"devDesign": "Die WebApp wurde konzipiert und developed vom EUROMAT-Superheld Moritz Kröger"
"content": "Als digitaler Wahl-Freund hat der EUROMAT zwar einiges auf dem Kasten. Dennoch besteht seine DNA vor allem aus Einsen und Nullen. An der Umsetzung hat ein engagiertes Team zusammengearbeitet, die Thesen erarbeitet, die Stellungnahmen der Parteien eingeholt, und den EUROMAT technisch umgesetzt. Seit September 2018 arbeitet ein Team aus Ehrenamtlichen an der Entwicklung des EUROMAT. Wir sind Mitglieder von Polis180 e.V., einem Grassroots-Thinktank für Außen- und Europapolitik, und Pulse of Europe e.V., die sich zusammengetan haben.",
"devDesign": "Development & Design"
}

View file

@ -0,0 +1,8 @@
{
"language": "dk",
"url": "om-os",
"title": "Om os",
"headline": "Hvem står bag EUROMATEN?",
"content": "Som digitalt værktøj består EUROMAT primært af ettaller og nuller. Men forudsætningen for dette er et dedikeret team, der arbejder på spørgsmålene, samler partiernes kommentarer og koder værktøjet. Siden september 2018 har et team af frivillige arbejdet på udviklingen af EUROMAT. Vi er medlemmer af Polis180, en græsrods-tænketank baseret i Berlin, og af Pulse of Europe.",
"devDesign": "Development & Design"
}

View file

@ -3,6 +3,6 @@
"url": "about-us",
"title": "About us",
"headline": "Who's behind the EUROMAT?",
"content": "As a digital tool the EUROMAT's DNA consists of mainly Ones and Zeros. Yet, for the right composition it needs a dedicated team working on the statements, collecting the parties's positions and comments and finally working the technical magic. Since September 2018 a team of volunteers has been working on the development of the EUROMAT. We are members of Polis180 e.V., a grassroots think tank for Foreign and European Policy, and of Pulse of Europe e.V. We joined efforts to publish the EUROMAT together.",
"devDesign": "The WebApp has been developed by our EUROMAT super-hero Moritz Kröger"
"content": "As a digital tool the EUROMAT is not a machine, it needs a dedicated team working on the questions, collecting the parties comments and finally working the technical magic. Since September 2018, a team of volunteers has been working on the development of the EUROMAT. We are members of Polis180, a grassroots think tank based in Berlin, and of Pulse of Europe e.V.",
"devDesign": "Development and design"
}

View file

@ -67,12 +67,8 @@
route: { path: getTranslatedUrl('about') }
},
{
label: this.$t('meta.topMenu.partner'),
route: { path: getTranslatedUrl('partner') }
},
{
label: this.$t('meta.topMenu.press'),
route: { path: getTranslatedUrl('press') }
label: this.$t('meta.topMenu.contact'),
route: { path: getTranslatedUrl('contact') }
}
]
},

View file

@ -1,7 +1,7 @@
<template>
<section>
<h1>{{ $t('press.headline') }}</h1>
<v-markdown :source="$t('press.content')" />
<h1>{{ $t('contact.headline') }}</h1>
<v-markdown :source="$t('contact.content')" />
<a class="btn" href="mailto:hello@euromat.info">
hello@euromat.info <feather-mail />
</a>
@ -10,7 +10,7 @@
<script>
export default {
name: 'Presse',
name: 'Contact',
components: {
'feather-mail': () =>

View file

@ -1,7 +1,7 @@
{
"language": "de",
"url": "presse",
"title": "Presse",
"url": "kontakt",
"title": "Kontakt",
"headline": "Kontakt",
"content": "Sie sind Journalist, oder ein/e interessierte/r BürgerIn? Dann treten Sie gern mit uns in Kontakt! Ihre Anfragen nehmen wir gerne unter folgender Email-Adresse entgegen:\n\nhallo\\[at]euromat\\[punkt]info"
"content": "Sie sind Journalist, oder ein/e interessierte/r BürgerIn? Dann treten Sie gern mit uns in Kontakt! Ihre Anfragen nehmen wir gerne unter folgender Email-Adresse entgegen:"
}

View file

@ -0,0 +1,7 @@
{
"language": "dk",
"url": "contact",
"title": "Contact",
"headline": "Get in touch!",
"content": "Whether youre a journalist or an interested citizen, feel free to reach out to us. We take your inquiries at any time. Send a message to:"
}

View file

@ -1,7 +1,7 @@
{
"language": "en",
"url": "press",
"title": "Press",
"url": "contact",
"title": "Contact",
"headline": "Get in touch!",
"content": "Whether youre a journalist or an interested citizen, feel free to reach out to us. We take your inquiries at any time. Send a message to:"
}
}

View file

@ -1,6 +1,6 @@
import { loadContent } from '@/helper/content'
export default loadContent(
'press',
'contact',
require.context('./content', false, /\.json$/)
)

View file

@ -4,12 +4,12 @@ import i18n from './i18n'
export default [
{
path: i18n[DEFAULT_LOCALE].press.url,
alias: getTranslatedAliases(i18n, 'press'),
name: 'press',
component: () => import('./components/index' /* webpackChunkName: "press" */),
path: i18n[DEFAULT_LOCALE].contact.url,
alias: getTranslatedAliases(i18n, 'contact'),
name: 'contact',
component: () => import('./components/index' /* webpackChunkName: "contact" */),
meta: {
title: getTranslatedTitles(i18n, 'press')
title: getTranslatedTitles(i18n, 'contact')
}
}
]

View file

@ -14,11 +14,14 @@
<router-link :to="{ path: getPartyPath(party.token.toLowerCase()) }">
<div class="result-party-info">
<div class="result-party-logo">
<img :src="getPartyLogo(party.token)"
<img
v-if="hasPartyLogo(party.token)"
:src="getPartyLogo(party.token)"
width="50"
height="50"
:alt="party.token"
>
<span v-else>{{ party.token }}</span>
</div>
<h2>{{ getScorePercentage(party.score) }}%</h2>
@ -130,7 +133,20 @@
return `${getTranslatedUrl('party')}/${token}`
},
getPartyLogo (token) {
return require(`@/assets/svg/${token.toLowerCase()}-logo.svg`)
try {
return require(`@/assets/svg/${token.toLowerCase().replace(/\s/g, '-')}-logo.svg`)
} catch (error) {
console.warn(`No logo found for party "${token}", falling back to initials.`, error.message)
return false
}
},
hasPartyLogo (token) {
try {
require(`@/assets/svg/${token.toLowerCase().replace(/\s/g, '-')}-logo.svg`)
return true
} catch (error) {
return false
}
},
getScorePercentage (score) {
return (score / this.totalScoredPoints * 100).toFixed(2)
@ -328,6 +344,11 @@
img {
object-fit: contain;
}
span {
color: $text-color-invert;
font-weight: 700;
}
}
}

View file

@ -216,6 +216,7 @@
.theses-content {
text-align: left;
width: 100%;
}
.theses-header {

View file

@ -0,0 +1,9 @@
{
"language": "dk",
"url": "emphasis1",
"title": "Emphasis",
"headline": "Hvilke udsagn er vigtigst for dig?",
"content": "Markér de udsagn, som du ønsker at give ekstra vægt.",
"skip": "Spring over",
"button": "fortsæt"
}

View file

@ -2,8 +2,8 @@
"language": "en",
"url": "emphasis",
"title": "Emphasis",
"headline": "Which theses are important for you?",
"content": "Mark the theses which should count double.",
"headline": "Which topics are important for you?",
"content": "Mark the statements which should count double.",
"skip": "Skip emphasis",
"button": "Continue"
}
}

View file

@ -1,11 +1,11 @@
{
"language": "de",
"url": "ergebnis",
"title": "Ergebnis",
"headline": "Dein Ergebnis",
"entry": "Super, Sie haben es geschafft! Gespannt, wie ihr Ergebnis ausfällt? Hier ist es auch schon:",
"hint": "Übrigens: Mit Klick auf die Partei gelangen Sie zur Übersicht der einzelnen Thesen. Vergleichen Sie Ihre Auswahl mit den direkten Antworten der jeweiligen Partei.",
"thanks": "Danke, dass Sie den EUROMAT genutzt haben. Wir hoffen es hat Ihnen Freude bereitet und vergessen Sie nicht: am 24. September ist Bundestagswahl!",
"startoverBtn": "EUROMAT wiederholen",
"indexBtn": "Zur Startseite"
}
"hint": "Übrigens: Mit Klick auf die Partei gelangst Du zur Übersicht der einzelnen Thesen. Vergleiche Deine Auswahl mit den direkten Antworten der jeweiligen Partei.",
"thanks": "Danke, dass Du den EUROMAT genutzt hast. Wir hoffen es hat Dir Freude bereitet und vergiss nicht: am 26. Mai ist Europawahl!",
"indexBtn": "Zur Startseite",
"url": "ergebnis",
"entry": "Super, Du hast es geschafft! Gespannt, wie Dein Ergebnis ausfällt? Hier ist es auch schon:",
"headline": "Dein Ergebnis",
"title": "Ergebnis",
"language": "de"
}

View file

@ -0,0 +1,11 @@
{
"startoverBtn": "Start igen",
"hint": "Forresten: Hvis du klikker på de enkelte partier, får du vist en oversigt over de enkelte udsagn. Tag et kig på hvad partierne svarede, og hvordan de ser ud sammenlignet med dine.",
"thanks": "Tak fordi du prøvede EUROMAT. Vi håber, du fik noget ud af det og ønsker et godt valg d. 26. maj!",
"indexBtn": "Startside",
"url": "resultat1",
"entry": "Tak for dine svar! Herunder kan du se, i hvor høj grad dine svar ligner de europæiske partiers.",
"headline": "Resultat",
"title": "Resultat",
"language": "dk"
}

View file

@ -1,11 +1,11 @@
{
"language": "en",
"url": "results",
"title": "Results",
"headline": "Your results",
"entry": "Great, you made it! Curious about your result? We won't keep you any longer, here it is:",
"hint": "Oh, by the way: Clicking on each party will get you to an overview of all individual statements. Take a look at what the parties answered and how your choice compares.",
"thanks": "Thanks for using EUROMAT. We hope you enjoyed it and don't forget: 24. September is election day!",
"startoverBtn": "Start over",
"indexBtn": "Back to landing page"
}
"hint": "Oh, by the way: Clicking on each party will get you to an overview of all individual statements. Take a look at what the parties answered and how your choice compares.",
"thanks": "Thanks for using the EUROMAT. We hope you enjoyed it and don't forget: 23-26th of May are election days!",
"indexBtn": "Back to landing page",
"url": "results",
"entry": "Great, you made it! Curious about your result? We won't keep you any longer, here it is:",
"headline": "Your results",
"title": "Results",
"language": "en"
}

View file

@ -0,0 +1,10 @@
{
"language": "dk",
"url": "theses",
"title": "Theses",
"backBtn": "Tilbage",
"positive": "Enig",
"neutral": "Neutral",
"negative": "Uenig",
"skipped": "Spring over"
}

View file

@ -7,8 +7,12 @@ export const EMPHASIS_POINTS = 2
export function getPartyPositions (thesis) {
return parties.map(party => {
const { position } = party.positions.find(p => p.thesis === thesis)
return { type: 'party', party: party.id, position }
const position = party.positions.find(p => p.thesis === thesis)
return {
type: 'party',
party: party.id,
position: (position && position.position) || {}
}
})
}

View file

@ -1,10 +1,12 @@
<template>
<section>
<section class="faq-page">
<h1>{{ $t('faq.headline') }}</h1>
<ul>
<li v-for="question of $t('faq.questions')" :key="question.title + question.answer">
<h2>{{ question.title }}</h2>
<v-markdown :source="question.answer" />
<div class="faq-content">
<v-markdown :source="question.answer" />
</div>
</li>
</ul>
</section>
@ -16,22 +18,34 @@
}
</script>
<style lang="scss" scoped>
<style lang="scss">
@import "~@/styles/layout";
h1 {
margin-bottom: $base-gap;
}
.faq-page {
h1 {
margin-bottom: $base-gap;
}
ul {
list-style: none;
ul {
list-style: none;
li:not(:last-child) {
margin-bottom: $base-gap * 2;
li:not(:last-child) {
margin-bottom: $base-gap * 2;
}
}
h2 {
margin-bottom: $small-gap;
}
}
h2 {
margin-bottom: $small-gap;
.faq-content ul {
padding-left: 1.25em;
margin-top: calc(#{$base-gap} / 2);
list-style: circle;
li {
margin-bottom: calc(#{$base-gap} / 2);
}
}
</style>

View file

@ -5,8 +5,8 @@
"headline": "Häufig gestellte Fragen",
"questions": [
{
"title": "Konzept",
"answer": "Der EUROMAT präsentiert insgesamt 33 Thesen zu verschiedenen Themen der Europäischen Politik wie z. B. Migration oder Sicherheit, denen Du zustimmen, ablehnen oder mit neutral kommentieren kannst. Deine Antworten werden anschließend mit den Positionen der europäischen Parteien abgeglichen, und daraus wird ein Ranking auf Basis der prozentualen Übereinstimmung mit der jeweiligen Partei erstellt. Zusätzlich geben wir Dir einen Überblick über die Zuordnung der nationalen Parteien in den jeweiligen europäischen Parteien.\n\nFür die Zusammenstellung von den Thesen und Antworten wurden insgesamt 21 europäische Parteien kontaktiert: European People's Party (EPP), Party of European Socialists (PES), Alliance of Conservatives and Reformists in Europe (ACRE), European Christian Political Movement (ECPM), Alliance of Liberals and Democrats for Europe (ALDE), European Democratic Party (EDP), Party of the European Left (PEL), Nordic Green Left Alliance (NGLA), European Green Party (EGP), European Free Alliance (EFA), Movement for a Europe of Nations and Freedom (MENF), VOLT, Alliance for Peace and Freedom (APF), Alliance for European National Movements (AENM), Initiative of Communist and Workers' Parties, DiEM25, European Federalist Party, European Pirate Party (PPEU), Euro Animal 7 (EA7), Liberal South East European Network (LIBSEEN), Europe Democracy Esperanto (EDE).\n\nVon diesen 21 Parteien haben uns insgesamt 12 geantwortet. Da wir von 9 Parteien leider keine Stellungnahme zu den einzelnen Thesen des EUROMAT erhalten haben, konnten wir sie daher nicht für die weitere Auswertung berücksichtigen."
"title": "Was ist der EUROMAT? ",
"answer": "Der EUROMAT präsentiert insgesamt 33 Thesen zu verschiedenen Themen der Europäischen Politik wie z. B. Migration oder Sicherheit, denen Du zustimmen, ablehnen oder mit neutral kommentieren kannst. Deine Antworten werden anschließend mit den Positionen der europäischen Parteien abgeglichen, und daraus wird ein Ranking auf Basis der prozentualen Übereinstimmung mit der jeweiligen Partei erstellt. Zusätzlich geben wir Dir einen Überblick über die Zuordnung der nationalen Parteien in den jeweiligen europäischen Parteien."
},
{
"title": "Methodik",
@ -15,6 +15,14 @@
{
"title": "Entwicklung des EUROMAT",
"answer": "Zuerst haben wir in mehreren Workshops die Thesen entwickelt. Dabei haben wir zwei Ziele verfolgt: \n\n* ein Maximum an relevanten Themen für europäische Gesellschaften abzudecken; und\n* ein breites Spektrum unterschiedlicher politischer Meinungen abzudecken\n\nIn einem zweiten Schritten haben Partner aus anderen Mitgliedstaaten die Thesen bezüglich ihrer Relevanz in ihren jeweiligen Ländern analysiert. Daraufhin haben wir insgesamt 49 Behauptungen ausgewählt und an 21 Parteien im Europäischen Parlament versendet. Sie wurden gebeten den Behauptungen zuzustimmen, diese abzulehnen oder neutral zu bleiben. Zusätzlich hatten sie die Möglichkeit eine kurze Erklärung zu ihrer Antwort hinzuzufügen. \n\nDie Antworten der europäischen Parteien wurden analysiert und 33 wurden für den EUROMAT ausgewählt. Die Auswahl der finalen Behauptungen beruhte auf ihrer Fähigkeit, bei der Ausdifferenzierung zwischen den Parteien zu helfen. Die Antworten wurden dann von unseren Partnerorganisationen übersetzt, um den EUROMAT in so vielen Ländern wie möglich zu verbreiten."
},
{
"title": "Wiso europäische Parteien? ",
"answer": "Zwar wählen wir bei der Europawahl nationale Parteien, doch diese sind Teil von europäischen Parteien. Denn, auf der europäischen Ebene, schließen sich unsere nationalen Parteien mit anderen Parteien zusammen, mit denen sie ähnliche politische Ideen und Visionen teilen und welche in anderen Mitgliedstaaten aktiv sind. Die europäischen Parteien (zum Beispiel, PES, EPP, ALDE oder die Europäische Grüne Partei) werden von Parteigruppen im Europäischen Parlament repräsentiert. Diese entscheiden am Ende im Europäischen Parlament über europäische Politik. Daher sind in unserem EUROMAT die Positionen der europäischen Parteien sichtbar. \n\nBei der Ergenisse geben wir Dir jedoch einen Überblick über die Parteien der Mitgliedstaaten, die bei europäischen Parteien Mitglieder sind."
},
{
"title": "Welche europäische Parteien sind im EUROMAT vertreten?",
"answer": "Für die Zusammenstellung von den Thesen und Antworten wurden insgesamt 21 europäische Parteien kontaktiert: European People's Party (EPP), Party of European Socialists (PES), Alliance of Conservatives and Reformists in Europe (ACRE), European Christian Political Movement (ECPM), Alliance of Liberals and Democrats for Europe (ALDE), European Democratic Party (EDP), Party of the European Left (PEL), Nordic Green Left Alliance (NGLA), European Green Party (EGP), European Free Alliance (EFA), Movement for a Europe of Nations and Freedom (MENF), VOLT, Alliance for Peace and Freedom (APF), Alliance for European National Movements (AENM), Initiative of Communist and Workers' Parties, DiEM25, European Federalist Party, European Pirate Party (PPEU), Euro Animal 7 (EA7), Liberal South East European Network (LIBSEEN), Europe Democracy Esperanto (EDE).\n\nVon diesen 21 Parteien haben uns insgesamt 12 geantwortet. Da wir von 9 Parteien leider keine Stellungnahme zu den einzelnen Thesen des EUROMAT erhalten haben, konnten wir sie daher nicht für die weitere Auswertung berücksichtigen."
}
]
}

View file

@ -0,0 +1,28 @@
{
"language": "dk",
"url": "faq",
"title": "Ofte stillede spørgsmål",
"headline": "FAQ",
"questions": [
{
"title": "Hvad er EUROMAT?",
"answer": "EUROMAT præsenterer 33 udsagn på forskellige europapolitiske områder, og beder sig om at tage stilling til om du er enig eller uenig. Efterfølgende bliver dine svar sammenlignet med de europæiske partiers svar, og du kan se i hvor høj grad du er enig med de enkelte partier. Til sidst får du et overblik over de danske partiers tilknytning til de europæiske partier."
},
{
"title": "Hvordan virker EUROMAT?",
"answer": "Beregningsmodellen følger Bundeszentrale für politische Bildungs (Tysklands Føderale agentur for politisk uddannelse) udregningsprogram. Programmet ligger frit tilgængeligt under den følgende licens: Creative Commons BY-NC-NC 3.0."
},
{
"title": "Hvordan er EUROMAT udviklet?",
"answer": "I første omgang udviklede vi en række udsagn om EU-samarbejdet gennem flere workshops. Vores mål var:\n\n1.\tAt dække afdække alle relevante emner for de europæiske samfund\n\n2.\tAt dække en bred variation af forskellige politiske holdninger\n\nDernæst har partnere fra forskellige lande gennemgået udsagnenes relevans og givet feedback. På den baggrund lavede vi de endelige udsagn. Derefter sendte vi i alt 49 udsagn ud til Europa-Parlamentets 21 partier. Partierne blev bedt om at tilkendegive deres holdning til udsagnene (”enig”, ”uenig” eller ”neutral”). Partierne havde desuden mulighed for at give en kort begrundelse for deres svar.\n\nDe europæiske partiers svar blev analyseret og 33 blev udvalgt til den endelige EUROMAT. Udvælgelsen af de endelige udsagn er baseret på deres evne til at hjælpe med at differentiere mellem partierne. Svarene oversættes derefter af vores partnere (i Danmark Tænketanken EUROPA) for at udbrede EUROMAT til så mange lande som muligt."
},
{
"title": "Why European parties? ",
"answer": "Though we have national parties on our ballots on election day, they are part of European parties. On the European level, our national political parties bundle with other parties which share similar political ideas and visions and are active in other Member States. The European parties (for exemple PES, EPP, ALDE or the European Green Party) are represented by party groups in the European Parliament. In the end, those will determine the decision-making process in the European Parliament. Thats why we decided to ask them to position themselves towards the EUROMAT theses and not directly our political parties at state level."
},
{
"title": "Which European parties were included in the EUROMAT?",
"answer": "I alt blev 21 partier kontaktet for indsamlingen af udsagn og svar: \n\nEuropean People's Party (EPP), Party of European Socialists (PES), Alliance of Conservatives and Reformists in Europe (ACRE),European Christian Political Movement (ECPM), Alliance of Liberals and Democrats for Europe (ALDE), European Democratic Party (EDP), Party of the European Left (PEL), Nordic Green Left Alliance (NGLA), European Green Party (EGP), European Free Alliance (EFA), Movement for a Europe of Nations and Freedom (MENF), VOLT, Alliance for Peace and Freedom (APF), Alliance for European National Movements (AENM), Initiative of Communist and Workers' Parties, DiEM25, European Federalist Party, European Pirate Party (PPEU), Euro Animal 7 (EA7),Liberal South East European Network (LIBSEEN), Europe Democracy Esperanto (EDE).\n\n9 ud af de 21 partier har indgivet deres svar på vores spørgeskema. Siden vi ikke har modtaget et formelt svar på x i tide, er de ikke inkluderet i den videre proces med EUROMAT."
}
]
}

View file

@ -6,7 +6,7 @@
"questions": [
{
"title": "What is the EUROMAT?",
"answer": "The EUROMAT presents 33 statements on different European policy areas - such as migration or security - which you agree, disagree with or react neutrally to. Ultimately, your answers will be compared with the positions of the European parties, and the matching results presented as a percentage of correspondence. Additionally, we will give you an overview of the corresponding national parties affiliated with the respective European party. \n\nIn total, 21 parties were contacted for the compilation of statements and answers: European People's Party (EPP), Party of European Socialists (PES), Alliance of Conservatives and Reformists in Europe (ACRE), European Christian Political Movement (ECPM), Alliance of Liberals and Democrats for Europe (ALDE), European Democratic Party (EDP), Party of the European Left (PEL), Nordic Green Left Alliance (NGLA), European Green Party (EGP), European Free Alliance (EFA),Movement for a Europe of Nations and Freedom (MENF), VOLT, Alliance for Peace and Freedom (APF), Alliance for European National Movements (AENM), Initiative of Communist and Workers' Parties, DiEM25, European Federalist Party, European Pirate Party (PPEU), Euro Animal 7 (EA7), Liberal South East European Network (LIBSEEN), Europe Democracy Esperanto (EDE).\n\n 12 of those 21 parties have responded to our questionnaire. As we have not received a formal reply from 9 parties in time, we could not include them in the further EUROMAT evaluation."
"answer": "The EUROMAT is an interactive digital tool providing you with informations about the European Parties positions towards certain political statements. \n\nThe EUROMAT presents 33 statements on different European policy areas - such as migration or security - which you agree, disagree with or react neutrally to. Ultimately, your answers will be compared with the positions of the European parties, and the matching results presented as a percentage of correspondance. It is not a voting advice, it is just an indication based on the 33 statements selected. \n\nAfter finishing the EUROMAT, you are provided with an overview of the affiliations of the political parties in your Member State to the European ones."
},
{
"title": "How does the EUROMAT work?",
@ -14,7 +14,15 @@
},
{
"title": "How did we develop the EUROMAT?",
"answer": "In a first step, we developed statements in several workshops. Our goals were:\n\n* to cover a maximum of relevant topics for European societies\n* to cover a broad range of diverse political opinions\n\nIn a second step, partners from different european Member States examined the statements for relevance in their respective countries. With this feedback we finalized the statements. Then we sent a total of 49 statements to 21 parties of the European Parliament. They were asked to agree, disagree or remain neutral towards those statements. Additionally, they had the possibility to give a short explanation to their answer. \n\nThe answers of the European parties were analyzed and 33 final statements were selected to be included in the EUROMAT. The selection was based on their capacity of the statements to help differentiate between the parties. The answers were then translated by our partners to spread the EUROMAT in the most countries possible."
"answer": "In a first step, we developed statements in several workshops. Our goals were:\n\n* to cover a maximum of relevant topics for European societies\n* to cover a broad range of diverse political opinions\n\nIn a second step, partners from other countries examined the statements for relevance in their respective countries and gave us feedback. With this feedback we finalized the statements. \n\nThen we sent a total of 49 statements to 21 parties of the European Parliament. They were asked to agree, disagree or remain neutral towards those statements. Additionally, they had the possibility to give a short explanation to their answer. \n\nThe answers of European parties were analyzed and 33 were selected to be included in the EUROMAT. The selection of the final statements was based on their capacity to help differentiate between the parties."
},
{
"title": "Why European parties? ",
"answer": "Though we have national parties on our ballots on election day, they are part of European parties. On the European level, our national political parties bundle with other parties which share similar political ideas and visions and are active in other Member States. The European parties (for exemple PES, EPP, ALDE or the European Green Party) are represented by party groups in the European Parliament. In the end, those will determine the decision-making process in the European Parliament. Thats why we decided to ask them to position themselves towards the EUROMAT theses and not directly our political parties at state level."
},
{
"title": "Which European parties were included in the EUROMAT?",
"answer": "In total, 21 parties were contacted for the compilation of statements and answers: European People's Party (EPP), Party of European Socialists (PES), Alliance of Conservatives and Reformists in Europe (ACRE),European Christian Political Movement (ECPM), Alliance of Liberals and Democrats for Europe (ALDE), European Democratic Party (EDP), Party of the European Left (PEL), Nordic Green Left Alliance (NGLA), European Green Party (EGP), European Free Alliance (EFA), Movement for a Europe of Nations and Freedom (MENF), VOLT, Alliance for Peace and Freedom (APF), Alliance for European National Movements (AENM), Initiative of Communist and Workers' Parties, DiEM25, European Federalist Party, European Pirate Party (PPEU), Euro Animal 7 (EA7), Liberal South East European Network (LIBSEEN), Europe Democracy Esperanto (EDE).\n\n12 of those 21 parties have responded to our questionnaire. As we have not received a formal reply from 9 others, we could not include them in the further EUROMAT evaluation."
}
]
}

View file

@ -0,0 +1,49 @@
{
"language": "cz",
"url": "zákonné-ustanovení",
"title": "Zákonné Ustanovení",
"headline": "Zákonné ustanovení",
"polis180": {
"addressLabel": "Adresa",
"register": "\rRegistrový soud: Amtsgericht\nCharlottenburg Registrační číslo: VR 34523",
"phoneLabel": " Telefon",
"represented": "Zastupován:\r \n\nSonja Schiffers, spolupředsedkyně, Susanne Zels, spolupředsedkyně, Christoph Abels, pokladník",
"representedLabel": "Reprezentováno:",
"phone": "+49 (0)176 301 912 30",
"registerLabel": "Zápis do rejstříku sdružení",
"address": "Polis180 e.V.\nFriedrichsstraße 180\n10117 Berlin",
"emailLabel": " E-mailem",
"email": " info@polis180.org"
},
"poe": {
"addressLabel": "Adresa",
"register": "Zápis do rejstříku sdružení: \rRegistrový soud: Amtsgericht\nFrankfurt am Main Registrační číslo: VR 16000",
"phoneLabel": "Telefon",
"represented": "Zastupován:\r\n\nVeřejnou dobročinnost zastupuje představenstvo, které zastupuje předsedkyně Dr. Daniel Röder.",
"representedLabel": "Reprezentováno:",
"phone": "+49 (0)157 721 209 88",
"registerLabel": "Zápis do rejstříku sdružení",
"address": "Pulse of Europe e. V.\r Wolfsgangstraße 63\r 60322 Frankfurt\r Německo",
"emailLabel": "E-mailem",
"email": " info@pulseofeurope.eu"
},
"responsible": {
"headline": " Zodpovídá za obsah webových stránek (podle § 55 odst. 2 RStV)",
"text": "Susanne Zels pro\r Polis180 \n\nPeter Funk pro Pulse of Europe",
"mail": "Kontakt"
},
"content": [
{
"title": "Limitation of liability for internal content",
"content": "The content of our website has been compiled with meticulous care and to the best of our knowledge. However, we cannot assume any liability for the up-to-dateness, completeness or accuracy of any of the pages.\n\nPursuant to section 7, para. 1 of the TMG (Telemediengesetz Tele Media Act by German law), we as service providers are liable for our own content on these pages in accordance with general laws. However, pursuant to sections 8 to 10 of the TMG, we as service providers are not under obligation to monitor external information provided or stored on our website. Once we have become aware of a specific infringement of the law, we will immediately remove the content in question. Any liability concerning this matter can only be assumed from the point in time at which the infringement becomes known to us."
},
{
"title": "Limitation of liability for external links",
"content": "Our website contains links to the websites of third parties („external links“). As the content of these websites is not under our control, we cannot assume any liability for such external content. In all cases, the provider of information of the linked websites is liable for the content and accuracy of the information provided. At the point in time when the links were placed, no infringements of the law were recognisable to us. As soon as an infringement of the law becomes known to us, we will immediately remove the link in question."
},
{
"title": "Copyright and performance rights",
"content": "The content and works published on this website are governed by the copyright laws of Germany. Any duplication, processing, distribution or any form of utilisation beyond the scope of copyright law shall require the prior written consent of the author or authors in question."
}
]
}

View file

@ -0,0 +1,49 @@
{
"language": "dk",
"url": "legal-notice",
"title": "Legal Notice",
"headline": "Legal notice",
"polis180": {
"addressLabel": "Address",
"register": "Register court: Amtsgericht\nCharlottenburg Registernummer: VR 34523",
"phoneLabel": "Phone",
"represented": "Board: \\\nSonja Schiffers, Co-President, Susanne Zels, Co-President, Christoph Abels, Treasurer",
"representedLabel": "Represented by:",
"phone": "+49 (0)176 301 912 30",
"registerLabel": "Entry in the register of associations:",
"address": "Polis180 e.V.\nFriedrichsstraße 180\n10117 Berlin",
"emailLabel": "Email",
"email": "info@polis180.org"
},
"poe": {
"addressLabel": "Adress",
"register": "Entry in the register of associations.\nRegister court: Frankfurt am Main\nRegisternummer: VR 16000",
"phoneLabel": "Phone",
"represented": "The public charity is represented by the Managing Board, which in turn is represented by the Chair Dr. Daniel Röder.",
"representedLabel": "Represented by:",
"phone": "+49 (0)157 721 209 88",
"registerLabel": "Register entry:",
"address": "Pulse of Europe e. V.\nWolfsgangstraße 63\n60322 Frankfurt\nDeutschland",
"emailLabel": "Email",
"email": "info@pulseofeurope.eu"
},
"responsible": {
"headline": "Responsible for website content (according to § 55 Abs. 2 RStV)",
"text": "Susanne Zels for Polis180\n\nPeter Funk for Pulse of Europe",
"mail": "Contact"
},
"content": [
{
"title": "Limitation of liability for internal content",
"content": "The content of our website has been compiled with meticulous care and to the best of our knowledge. However, we cannot assume any liability for the up-to-dateness, completeness or accuracy of any of the pages.\n\nPursuant to section 7, para. 1 of the TMG (Telemediengesetz Tele Media Act by German law), we as service providers are liable for our own content on these pages in accordance with general laws. However, pursuant to sections 8 to 10 of the TMG, we as service providers are not under obligation to monitor external information provided or stored on our website. Once we have become aware of a specific infringement of the law, we will immediately remove the content in question. Any liability concerning this matter can only be assumed from the point in time at which the infringement becomes known to us."
},
{
"title": "Limitation of liability for external links",
"content": "Our website contains links to the websites of third parties („external links“). As the content of these websites is not under our control, we cannot assume any liability for such external content. In all cases, the provider of information of the linked websites is liable for the content and accuracy of the information provided. At the point in time when the links were placed, no infringements of the law were recognisable to us. As soon as an infringement of the law becomes known to us, we will immediately remove the link in question."
},
{
"title": "Copyright and performance rights",
"content": "The content and works published on this website are governed by the copyright laws of Germany. Any duplication, processing, distribution or any form of utilisation beyond the scope of copyright law shall require the prior written consent of the author or authors in question."
}
]
}

View file

@ -1,53 +1,49 @@
{
"language": "en",
"url": "imprint",
"title": "Imprint",
"headline": "Imprint",
"url": "legal-notice",
"title": "Legal Notice",
"headline": "Legal notice",
"polis180": {
"addressLabel": "Adress",
"address": "Polis180 e.V.\nSolmsstraße 18\n10961 Berlin",
"representedLabel": "Represented by:",
"represented": "Christian Freudlsperger, Co-Chair Sonja Schiffers, Co-Chair Julian Zuber, Treasurer",
"emailLabel": "Email",
"email": "info@polis180.org",
"addressLabel": "Address",
"register": "Register court: Amtsgericht\nCharlottenburg Registernummer: VR 34523",
"phoneLabel": "Phone",
"represented": "Board: \\\nSonja Schiffers, Co-President, Susanne Zels, Co-President, Christoph Abels, Treasurer",
"representedLabel": "Represented by:",
"phone": "+49 (0)176 301 912 30",
"registerLabel": "Entry in the register of associations:",
"register": "Register court: Amtsgericht\nCharlottenburg Registernummer: VR 34523"
"address": "Polis180 e.V.\nFriedrichsstraße 180\n10117 Berlin",
"emailLabel": "Email",
"email": "info@polis180.org"
},
"poe": {
"addressLabel": "Adress",
"address": "Pulse of Europe e. V.\nWolfsgangstraße 63\n60322 Frankfurt\nDeutschland",
"representedLabel": "Represented by:",
"represented": "The public charity is represented by the Managing Board, which in turn is represented by the Chair Dr. Daniel Röder.",
"emailLabel": "Email",
"email": "info@pulseofeurope.eu",
"register": "Entry in the register of associations.\nRegister court: Frankfurt am Main\nRegisternummer: VR 16000",
"phoneLabel": "Phone",
"represented": "The public charity is represented by the Managing Board, which in turn is represented by the Chair Dr. Daniel Röder.",
"representedLabel": "Represented by:",
"phone": "+49 (0)157 721 209 88",
"registerLabel": "Register entry:",
"register": "Entry in the register of associations.\nRegister court: Frankfurt am Main\nRegisternummer: VR 16000"
"address": "Pulse of Europe e. V.\nWolfsgangstraße 63\n60322 Frankfurt\nDeutschland",
"emailLabel": "Email",
"email": "info@pulseofeurope.eu"
},
"responsible": {
"headline": "Responsible for website content (according to § 55 Abs. 2 RStV)",
"text": "Eva Podgoršek and Peter Funk für Pulse of Europe (Berlin)\n\nSusanne Zels for Polis180",
"text": "Susanne Zels for Polis180\n\nPeter Funk for Pulse of Europe",
"mail": "Contact"
},
"content": [
{
"title": "§ 1 Warnings regarding content",
"text": "The free and accessible content of this website has been created with the greatest possible care. However, the provider of this website does not guarantee the correctness and up-to-dateness of the free and freely available journalistic guides and messages. Contributions identified by name give the opinion of the author and not always the opinion of the provider. By calling the free and freely accessible content, there is no contractual relationship between the user and the provider, in this respect there is a lack of the providers legal commitment."
"title": "Limitation of liability for internal content",
"content": "The content of our website has been compiled with meticulous care and to the best of our knowledge. However, we cannot assume any liability for the up-to-dateness, completeness or accuracy of any of the pages.\n\nPursuant to section 7, para. 1 of the TMG (Telemediengesetz Tele Media Act by German law), we as service providers are liable for our own content on these pages in accordance with general laws. However, pursuant to sections 8 to 10 of the TMG, we as service providers are not under obligation to monitor external information provided or stored on our website. Once we have become aware of a specific infringement of the law, we will immediately remove the content in question. Any liability concerning this matter can only be assumed from the point in time at which the infringement becomes known to us."
},
{
"title": "§ 2 External links",
"text": "This website contains links to websites of third parties (“external links”). These websites are the responsibility of the respective operators. When the external links were linked for the first time, the provider checked the contents of third parties to ascertain whether there were any legal violations. At that time no legal violations were apparent. The provider has no influence on the current and future design and content of the linked pages. The setting of external links does not mean that the provider owns the content behind the link or link. A constant control of the external links is unreasonable for the offerer without concrete indications of legal violations. In case of knowledge of legal violations, however, such external links are immediately deleted."
"title": "Limitation of liability for external links",
"content": "Our website contains links to the websites of third parties („external links“). As the content of these websites is not under our control, we cannot assume any liability for such external content. In all cases, the provider of information of the linked websites is liable for the content and accuracy of the information provided. At the point in time when the links were placed, no infringements of the law were recognisable to us. As soon as an infringement of the law becomes known to us, we will immediately remove the link in question."
},
{
"title": "§ 3 Copyright and performance rights",
"text": "The contents published on this website are subject to the German copyright and the right to protection of intellectual property. Any use not permitted by the German Copyright and Performance Protection Law requires the prior written consent of the provider or respective copyright owner. This applies particularly to the reproduction, processing, translation, storage of content in databases or other electronic media and systems. Contents and rights of third parties are marked as such. The unauthorized duplication or dissemination of individual contents or complete pages is not permitted and punishable. Only the production of copies and downloads for personal, private and non-commercial use is permitted. The presentation of this website in foreign frames is only permitted with written permission."
},
{
"title": "§ 4 Special Conditions of Use",
"text": "Insofar as special conditions for individual uses of this website deviate from the abovementioned paragraphs, this is expressly pointed out at the appropriate place. The special conditions of use apply in the particular case only."
"title": "Copyright and performance rights",
"content": "The content and works published on this website are governed by the copyright laws of Germany. Any duplication, processing, distribution or any form of utilisation beyond the scope of copyright law shall require the prior written consent of the author or authors in question."
}
]
}
}

View file

@ -2,6 +2,6 @@
"language": "de",
"title": "Startseite",
"headline": "Willkommen beim EUROMAT zur Europawahl 2019!",
"content": "In Kürze wirst Du hier unseren EUROMAT nutzen können! \n\n\\\nDu fragst Dich, was ein **EUROMAT** ist? Der EUROMAT ist nicht einfach nur ein Wahl-O-mat, sondern Dein digitaler Wahl-Freund, der Dir einen Eindruck der politischen Positionen der Europäischen Parteien vermittelt.\n\nDas Ziel ist es Dich dabei zu unterstützen, eine informierte Wahlentscheidung bei den kommenden Europawahlen zu treffen. \n\n**Wieso die europäischen Parteien?**\n\nZwar wählen wir bei der Europawahl nationale Parteien, doch diese sind Teil von europäischen Parteien. Denn, auf der europäischen Ebene, schließen sich unsere nationalen Parteien mit anderen Parteien zusammen, mit denen sie ähnliche politische Ideen und Visionen teilen und welche in anderen Mitgliedstaaten aktiv sind. Die europäischen Parteien (zum Beispiel, PES, EPP, ALDE oder die Europäische Grüne Partei) werden von Parteigruppen im Europäischen Parlament repräsentiert. Diese entscheiden am Ende im Europäischen Parlament über europäische Politik. \n\nMit welcher europäischen Partei hast Du die größte Übereinstimmung bezüglich Deiner politischen Meinung und Deiner Vision für die Zukunft der Europäischen Union? Finde es in ein Paar Tage hier heraus!\n\nAm Ende geben wir Dir einen Überblick über die Verteilung der nationalen Parteien in den europäischen.\n\nZu guter Letzt: Wie immer Dein Ergebnis ausfällt, der EUROMAT stellt keine Wahlempfehlung dar. Unser EUROMAT soll vor allem eines: Dir vor der Wahl Spaß bereiten und dabei die wichtigsten Informationen aus den Wahlprogrammen der europäischen Parteien vermitteln.",
"button": "Los geht's"
"content": "Du fragst Dich, was ein EUROMAT ist? Der EUROMAT ist nicht einfach nur ein Wahl-O-mat, sondern Dein digitaler Wahl-Freund, der Dir einen Eindruck der politischen Positionen der **Europäischen Parteien** vermittelt.\n\nWie immer Dein Ergebnis ausfällt, der EUROMAT stellt keine Wahlempfehlung dar. Unser EUROMAT soll vor allem eines: Dir vor der Wahl Spaß bereiten und dabei die wichtigsten Informationen aus den Wahlprogrammen der europäischen Parteien vermitteln.\n\nDu möchtest wissen, welche europäische Partei Deine Visionen zur Zukunft der EU Dir am nächsten steht? Finde es hier heraus!",
"button": "Los geht's!"
}

View file

@ -0,0 +1,7 @@
{
"language": "dk",
"title": "Startside",
"headline": "Velkommen til EUROMAT en online test forud for valget til Europa-Parlamentet",
"content": "EUROMAT er et digitalt værktøj, som guider dig gennem de europæiske partiers politik og visioner. Formålet er at give dig et bedre grundlag for at kunne sætte et velinformeret kryds til Europa-Parlamentsvalget d. 26. maj.\n\nMed EUROMAT kan du finde ud af hvilket europæisk parti i Europa-Parlamentet, der bedst afspejler dine holdninger og ønsker til EU-samarbejdet.\n\nNår du har gennemført testen, får du et overblik over hvilke europæiske partier, de danske partier er en del af.\n\nHusk: Det endelige valg naturligvis op til DIG!",
"button": "Start!"
}

View file

@ -2,6 +2,6 @@
"language": "en",
"title": "start",
"headline": "Welcome to the EUROMAT for the European Elections 2019!",
"content": "In a few day we will be ready to provide you with your EUROMAT experience!\n\nYoure thinking: Whats a EUROMAT? The EUROMAT is not a regular voting advice application. On the contrary, it is your digital tool navigating you through the policies and visions of the current European parties. The goal of the EUROMAT is to support you to make an informed choice for the upcoming European elections!\n\n**Why European parties?** \n\nDid you know? Though we have national parties on our ballots on election day, they are part of _European parties_. On the European level, our national political parties bundle with other parties which share similar political ideas and visions and are active in other Member States. The European parties (for exemple PES, EPP, ALDE or the European Green Party) are represented by party groups in the European Parliament. In the end, those will determine the decision-making process in the European Parliament.\n\nWhich European party matches your opinions and future vision of the European Union most? Come back here in a few days and find out!\n\nAfter finishing the EUROMAT, you will be provided with an overview of the affiliations of your national parties to the European ones. \n\nLast but not least: Whatever your result, the final choice is up to YOU! \n\nThe EUROMAT focuses mainly on one thing making your voting experience fun while providing you with all essential information about the main positions of the European parties.",
"content": "In a few days we will be ready to provide you with your EUROMAT experience!\n\nYoure thinking: Whats a EUROMAT? The EUROMAT is not a regular voting advice application. On the contrary, it is your digital tool navigating you through the policies and visions of the current European parties. The goal of the EUROMAT is to support you to make an informed choice for the upcoming European elections!\n\nLast but not least: **Whatever your result, the final choice is up to YOU!** \n\nThe EUROMAT focuses mainly on one thing making your voting experience fun while providing you with all essential information about the main positions of the European parties.\\\nWhich European party matches your opinions and future vision of the European Union most? Come back here in a few days and find out!",
"button": "Get Started"
}

View file

@ -1,12 +1,17 @@
<template>
<section>
<header class="party-header">
<div class="party-header-logo">
<img :src="partyLogo"
<header :class="['party-header', { 'no-party-link': !partyProgramLink }]">
<div :class="['party-header-logo', { 'no-logo': !hasPartyLogo }]">
<img
v-if="hasPartyLogo"
:src="partyLogo"
:width="logoSize"
:height="logoSize"
:alt="partyName"
>
<span v-else>
{{ partyToken }}
</span>
</div>
<div class="party-header-info">
@ -18,7 +23,9 @@
<feather-corner-up-left />
</router-link>
<h1>{{ partyName }}</h1>
<a class="btn"
<a
v-if="!!partyProgramLink"
class="btn"
:href="partyProgramLink"
target="_blank"
>
@ -120,7 +127,8 @@
return {
logoSize: 60,
partyLogo: require(`@/assets/svg/${this.$route.params.token}-logo.svg`),
partyLogo: this.hasPartyLogo && require(`@/assets/svg/${this.$route.params.token}-logo.svg`),
partyToken: this.$route.params.token.toUpperCase(),
party: parties.find(p => p.token === this.$route.params.token.toUpperCase()),
answers,
toggles: theses.map(t => ({ id: t.id, show: false })),
@ -133,6 +141,14 @@
resultsPath () {
return getTranslatedUrl('results', getTranslatedUrl('theses', null, true))
},
hasPartyLogo () {
try {
require(`@/assets/svg/${this.$route.params.token}-logo.svg`)
return true
} catch (error) {
return false
}
},
partyName () {
return this.party.name[this.$i18n.locale]
},
@ -216,6 +232,10 @@
align-items: flex-start;
margin-bottom: $base-gap;
&.no-party-link {
align-items: center;
}
@media (max-width: $breakpoint) {
flex-direction: column;
}
@ -244,11 +264,21 @@
justify-content: center;
align-items: center;
box-shadow: $button-shadow;
color: $text-color-invert;
&.no-logo {
width: 80px;
height: 80px;
}
img {
object-fit: contain;
}
span {
font-weight: 700;
}
@media (max-width: $breakpoint) {
margin-bottom: $base-gap;
margin-right: 0;

View file

@ -0,0 +1,11 @@
{
"partyAnswer": "Svar",
"legendLabel": "Valgmulidheder",
"url": "parti",
"tableHeading": "Udsagn",
"subtitle": " besøg partiets hjemmeside",
"title": "Parti",
"language": "dk",
"tableUser": "Dit svar",
"backButtonLabel": "Tilbage til resultat"
}

View file

@ -0,0 +1,36 @@
{
"language": "dk",
"url": "privacy",
"title": "Data privacy",
"headline": "Data privacy",
"topics": [
{
"title": "Data privacy",
"content": "We would like to inform you about our privacy policy. You will find information about the collection and use of personal data when using our website. In doing so, we observe the data protection law applicable to Germany. You can access this statement at any time on our website. We expressly point out that data transmission on the Internet (for example, by e-mail communication) has security gaps and can not be completely protected against access by third parties. The use of the contact data of our imprint for commercial advertising is expressly not desired, unless we had previously given our written consent or a business relationship already exists. The provider and all persons mentioned on this website hereby do not allow any commercial use and disclosure of their data."
},
{
"title": "Personal information",
"content": "You can visit our website without giving personal data. If personal data (such as name, address or e-mail address) is collected on our pages, this is done on a voluntary basis. This data will not be passed to third parties without your express consent. If a contractual relationship between you and us is modified, or if you ask us to make an inquiry, we collect and use your personal data as far as this is necessary (stock data). We collect, process and use personal data as far as this is necessary to enable you to make use of the website (usage data). All personal data will only be stored as long as this is necessary for the purpose mentioned (processing your request or handling a contract). This takes account of tax and commercial storage periods. On the order of the competent authorities, we may provide information on this data (inventory data) in individual cases, as far as this is necessary for the purposes of law enforcement, security, the fulfillment of the statutory tasks of the constitutional protection authorities or the military shielding service or the enforcement of intellectual property rights."
},
{
"title": "Commenting Features",
"content": "In the context of the commentary function, we collect personal data (eg name, e-mail) only to answer your comment/s on a contribution of ours. When you publish a comment, the email address you provide is saved but not published. Your name will be published if you have not written under pseudonym."
},
{
"title": "Privacy Policy for the Facebook plug-in (“Like”)",
"content": "This website uses plug-ins from the Facebook.com company, which are provided by the company Facebook Inc., 1601 S. California Avenue, Palo Alto, CA 94304 in the USA. Users of our website, on which the Facebook plugin (“like” button) is installed, are hereby informed that the plugin connects to Facebook, whereby a transmission to your browser is carried out, so the plugin on The web page. Furthermore, the usage data is passed on to the Facebook servers, which contain information about your website visits on our homepage. For logged in Facebook users, this means that the usage data is assigned to your personal Facebook account. If you are actively using the Facebook plug-in as a logged-in Facebook user (for example, by clicking the “Like” button or using the comment feature), this data will be transferred to your Facebook account and published. This can only be done by logging out of your Facebook account. For more information on Facebooks data usage, please refer to the Privacy Policy on Facebook at http://de-en.facebook.com/policy.php."
},
{
"title": "Privacy Policy for use of the webmessage service twitter.com",
"content": "We have also integrated the webmessage service twitter.com on our website. This is provided by the Twitter Inc., 1355 Market St, Suite 900, San Francisco, CA 94103, USA. Twitter offers the so-called “Tweet” function. So you can publish 140 characters long messages with web pages in their own Twitter account. If you use the “Tweet” feature of Twitter on our websites, the respective website will be linked to your account on Twitter and publicized there if necessary. Data is also transmitted to Twitter. We are not aware of the content of the transmitted data and its use by Twitter. For more information, please visit Twitters privacy policy: http://twitter.com/privacy. Follow the link below to setup your privacy settings: http://twitter.com/account/settings."
},
{
"title": "Privacy Policy for the Google Analytics web analytics service",
"content": "This website uses Google Analytics, a web analytics service provided by Google, Inc. (“Google”). Google Analytics uses so-called “cookies”, text files that are stored on your computer and which allow an analysis of the use of the website by you. The information generated by the cookie about your use of this website is generally transferred to a Google server in the USA and stored there. We have enabled IP anonymization. On this website, your IP address will therefore be abridged by Google within the Member States of the European Union or in other States Parties to the Agreement on the European Economic Area. Only in exceptional cases is the full IP address transferred to a Google server in the US and shortened there. On behalf of the operator of this website, Google will use this information to evaluate your use of the website, to compile reports on website activity, and to provide other services related to website usage and internet usage against the website operator. The IP address provided by your browser as part of Google Analytics will not be merged with other Google data. You can prevent cookies from being saved by setting your browser software accordingly; However, we would point out that in this case you may not be able to use all the functions of this website in full. In addition, you may prevent Google from collecting and processing the data (including your IP address) related to your use of the Website (including your IP address), as well as the processing of such data by Google, by downloading the browser plug-in available under the following link And install: http://tools.google.com/dlpage/gaoptout?hl=en"
},
{
"title": "Right to withdraw personal information",
"content": "You have the right at any time to inquire about the data collected about you free of charge. You have the right at all times to revoke your consent to the use of your specified personal data with effect for the future. For further information please contact the provider under the contact data in the imprint."
}
]
}

File diff suppressed because one or more lines are too long

View file

@ -1,10 +0,0 @@
/* eslint-disable */
var icon = require('vue-svgicon')
icon.register({
'cdu-logo': {
width: 750,
height: 230,
viewBox: '0 0 750 230',
data: '<path pid="0" d="M218 64l8-49C-59-55-69 278 201 211l7-49C8 206 59 9 218 64zM259 10l-32 207h144c114 0 155-207 12-207zm62 45h44c61 0 42 117-14 117h-47z" _fill="#ba261d"/><path pid="1" d="M511 10h73l-18 117c-9 52 73 69 86-1l17-116h71l-19 124c-25 127-250 109-226-10z" _fill="#ba261d"/>'
}
})

View file

@ -0,0 +1,10 @@
/* eslint-disable */
var icon = require('vue-svgicon')
icon.register({
'diem25-logo': {
width: 189,
height: 39,
viewBox: '0 0 189 39',
data: '<defs><linearGradient x1="100%" y1="42.236%" x2="0%" y2="52.139%" id="svgicon_diem25-logo_a"><stop stop-color="#ED1D24" offset="0%"/><stop stop-color="#EC5022" offset="100%"/></linearGradient></defs><g _fill="none" fill-rule="evenodd"><path pid="0" d="M18.356 39l16.858-13.023-16.858-13.023V39zM0 39l16.857-13.023L0 12.954V39z" _fill="url(#svgicon_diem25-logo_a)"/><path pid="1" d="M66.864 19.25c0-7.881-6.556-14.422-14.645-14.422h-7.454v28.845h7.454c8.089 0 14.645-6.541 14.645-14.423zM40.059.162h12.16c10.68 0 19.35 8.579 19.35 19.088 0 10.51-8.67 19.088-19.35 19.088h-12.16V.162zM76.307 13.781h4.546v24.556h-4.546V13.781zm-.74-7.024a2.988 2.988 0 0 1 3.013-3.002c1.639 0 2.96 1.34 2.96 3.002 0 1.663-1.321 3.057-2.96 3.057-1.692 0-3.014-1.394-3.014-3.057zM86.934.162h23.791v4.612H91.692v8.953h16.6V18.5h-16.6v15.12h18.557v4.718H86.934V.162zM143.98 38.338V7.884l-12.002 16.62-11.948-16.62v30.454h-4.706V.162h4.97l11.684 16.3 11.685-16.3h5.022v38.176h-4.705zM155.108 38.337V34.31L165 22.575c.376-.556.582-1.146.582-1.77 0-1.667-1.335-3.09-2.978-3.09-1.267 0-2.397.902-2.808 2.152l-.24.729-4.381-.938.24-.902c.855-3.264 3.834-5.486 7.189-5.486 2.02 0 3.868.73 5.306 2.153a7.616 7.616 0 0 1 2.191 5.381c0 1.597-.513 3.16-1.438 4.479l-.034.035-7.052 8.436h8.524v4.583h-14.994zM173.97 36.22a6.303 6.303 0 0 1-.958-1.112l-.514-.729 3.767-2.708.479.694c.787 1.111 2.02 1.84 3.355 1.84 2.19 0 4.074-1.874 4.074-4.027 0-2.256-1.883-4.2-4.074-4.2-.616 0-1.233.208-1.815.52l-.308.139-4.176-1.18 3.15-11.874h11.468V18.2l-7.909-.035-.89 3.299h.48a8.81 8.81 0 0 1 6.162 2.5 8.487 8.487 0 0 1 1.917 2.847c.411 1.075.65 2.222.65 3.367 0 2.257-.924 4.41-2.567 6.041a9.238 9.238 0 0 1-2.842 1.875c-1.027.382-2.156.52-3.32.52-2.397 0-4.52-.763-6.128-2.395" _fill="#292F3C"/></g>'
}
})

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

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

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,10 @@
/* eslint-disable */
var icon = require('vue-svgicon')
icon.register({
'flag-cz': {
width: 16,
height: 16,
viewBox: '0 0 900 600',
data: '<path pid="0" _fill="#d7141a" d="M0 0h900v600H0z"/><path pid="1" _fill="#fff" d="M0 0h900v300H0z"/><path pid="2" d="M450 300L0 0v600z" _fill="#11457e"/>'
}
})

View file

@ -0,0 +1,10 @@
/* eslint-disable */
var icon = require('vue-svgicon')
icon.register({
'flag-dk': {
width: 16,
height: 16,
viewBox: '0 0 370 280',
data: '<path pid="0" _fill="#c60c30" d="M0 0h370v280H0z"/><path pid="1" _fill="#fff" d="M120 0h40v280h-40z"/><path pid="2" _fill="#fff" d="M0 120h370v40H0z"/>'
}
})

View file

@ -0,0 +1,10 @@
/* eslint-disable */
var icon = require('vue-svgicon')
icon.register({
'flag-si': {
width: 12,
height: 15.459,
viewBox: '0 0 12 6',
data: '<path pid="0" _fill="#ed1c24" d="M0 0h12v6H0z"/><path pid="1" _fill="#005da4" d="M0 0h12v4H0z"/><path pid="2" _fill="#fff" d="M0 0h12v2H0z"/><path pid="3" d="M110.26-19.478l9.74-143.75a280.22 280.22 0 0 0-240 0l9.74 143.75A155.61 155.61 0 0 0 0 118.972a155.61 155.61 0 0 0 110.26-138.45" _fill="#005da4"/><path pid="4" d="M-90 0A138.29 138.29 0 0 0 0 100.77 138.29 138.29 0 0 0 90 0L45-60 27-36 0-90l-27 54-18-24-45 60" _fill="#fff"/><path pid="5" d="M-17.196-2.196A6 6 0 0 0-9 0a6 6 0 0 1 6 0 6 6 0 0 0 6 0 6 6 0 0 1 6 0 6 6 0 0 0 8.196-2.196v1.732A6 6 0 0 1 9 1.732a6 6 0 0 0-6 0 6 6 0 0 1-6 0 6 6 0 0 0-6 0 6 6 0 0 1-8.196-2.196z" transform="matrix(5 0 0 5 0 25.981)" id="svgicon_flag-si_a" _fill="#005da4"/><use xlink:href="#svgicon_flag-si_a" transform="translate(0 17.321)"/><path pid="6" stroke-width=".2" d="M0-5l1 3.268L4.33-2.5 2 0l2.33 2.5L1 1.732 0 5l-1-3.268-3.33.768L-2 0l-2.33-2.5 3.33.768z" _fill="#fd0" transform="matrix(2.25 0 0 2.25 0 -120)" id="svgicon_flag-si_b"/><use xlink:href="#svgicon_flag-si_b" transform="translate(-33.75 -45)"/><use xlink:href="#svgicon_flag-si_b" transform="translate(33.75 -45)"/><path pid="7" d="M-111.58-167.05l9.96 146.99A146.95 146.95 0 0 0 0 109.89 146.95 146.95 0 0 0 101.62-20.06l9.96-146.99a280.22 280.22 0 0 0 8.42 3.82l-9.74 143.75A155.61 155.61 0 0 1 0 118.97 155.61 155.61 0 0 1-110.26-19.48L-120-163.23a280.22 280.22 0 0 0 8.42-3.82" _fill="#ed1c24"/>'
}
})

File diff suppressed because one or more lines are too long

View file

@ -1,17 +1,25 @@
/* eslint-disable */
require('./cdu-logo')
require('./alde-logo')
require('./diem25-logo')
require('./edp-logo')
require('./egp-logo')
require('./epp-logo')
require('./euromat-logo')
require('./european-left-logo')
require('./european-spring-logo')
require('./european-stars')
require('./fdp-logo')
require('./flag-cz')
require('./flag-de')
require('./flag-dk')
require('./flag-en')
require('./flag-fr')
require('./flag-pl')
require('./grune-logo')
require('./linke-logo')
require('./flag-si')
require('./pes-logo')
require('./pirates-logo')
require('./poe-colored-logo')
require('./poe-logo')
require('./polis-colored-logo')
require('./polis-logo')
require('./spd-logo')
require('./star')
require('./volt-logo')

View file

@ -1,10 +0,0 @@
/* eslint-disable */
var icon = require('vue-svgicon')
icon.register({
'linke-logo': {
width: 566.929,
height: 127.057,
viewBox: '0 0 566.929 127.057',
data: '<g fill-rule="evenodd"><path pid="0" d="M547.424 127.057c9.143 0 17.836-7.231 19.285-16.341 1.54-9.687-5.171-16.773-14.602-16.773-8.563 0-17.158 7.52-18.56 16.34-1.472 9.255 4.587 16.774 13.877 16.774zm-80.358-1.592h52.248l3.888-25.737h-24.127l2.512-16.629h21.644l3.888-25.737h-21.646l2.292-15.184h24.127l3.887-25.737h-52.25l-16.463 109.024zm-5.44 0l-16.574-56.392 30.42-52.632h-29.639l-22.45 46.415 6.871-46.415h-28.122l-16.465 109.024h28.125l7.553-50.028 10.092 50.028h30.189zm-160.443 0h27.02l4.826-31.954c1.55-10.269 1.839-20.39 2.7-30.655l11.776 62.61h27.019L390.989 16.44h-27.02l-4.193 27.762c-1.9 12.579-1.71 25.013-2.508 37.594L344.393 16.44h-26.745l-16.465 109.024zm-49.619 0l3.885-25.737h-21.093l12.578-83.287h-28.122l-16.465 109.024h49.217zm-132.04 0h52.248l3.887-25.737h-24.125l2.512-16.629h21.644l3.887-25.737H157.93l2.294-15.184h24.125l3.888-25.737h-52.249l-16.465 109.024zm-11.197 0L124.79 16.441H96.667L80.202 125.465h28.125zm-67.843-81.84c12.82 0 12.537 16.484 10.747 28.341-1.55 10.266-6.29 27.039-19.132 27.182l8.385-55.522zM0 125.466h24.54c17.095 0 47.985-4.626 55.584-54.946 4.977-32.968-9.067-54.078-41.05-54.078H16.466L0 125.465zm289.809 0l13.87-89.067h-28.122l-13.873 89.067h28.125z"/><path pid="1" _fill="#dc0000" d="M309.336 0l-54.314 16.418 49.508 14.55z"/></g>'
}
})

View file

@ -0,0 +1,10 @@
/* eslint-disable */
var icon = require('vue-svgicon')
icon.register({
'pes-logo': {
width: 602.362,
height: 744.059,
viewBox: '0 0 602.362 744.059',
data: '<path pid="0" d="M17.716 17.72v566.93h141.447L301.17 726.338V584.65h283.476V17.72" _fill="red"/><path pid="1" d="M471.839 59.15c-21.627.03-41.826 7.364-54.446 19.66-9.748 9.725-16.652 22.369-16.637 37.432-.023 15.578 5.543 28.07 14.368 36.865 8.817 8.81 20.803 13.967 33.65 16.069 12.168 2.057 27.753 2.692 39.512 4.915 5.188.938 9.921 2.775 13.234 5.672 3.304 2.934 5.444 6.715 5.482 12.477-.007 3.94-.832 6.64-1.89 8.885-1.051 2.246-2.413 3.993-4.349 6.05-5.74 6.072-16.938 8.734-28.924 8.696-9.982.03-21.28-2.087-27.79-8.696-4.803-4.794-8.523-11.79-8.508-19.661V184.3H396.22v3.214c.023 17.83 8.534 33.54 19.661 43.67 15.396 14.035 36.162 19.276 55.58 19.283 22.407-.015 44.132-5.596 58.606-20.04 9.316-9.263 15.721-22.125 15.691-39.51.023-16.01-5.981-28.842-15.502-38-9.52-9.172-22.421-14.67-36.297-16.636-11.722-1.527-27.594-2.798-38.756-4.537-4.87-.81-8.719-2.503-11.343-5.104-2.609-2.617-4.136-6.201-4.159-11.343.046-5.838 1.71-9.354 5.105-13.045 6.321-6.616 17.173-8.908 26.845-8.885 4.423 0 9.43.923 13.99 2.458 4.56 1.512 8.59 3.735 10.964 6.238 3.811 3.985 6.821 10.345 6.995 15.691l.19 2.836h39.321v-3.025c-.28-15.88-8.076-29.779-19.094-40.267h-.189c-12.877-12.031-32.199-18.126-51.988-18.149zM67.65 62.362v184.89h38.377v-64.087h34.596c21.098.007 37.848-5.899 49.153-16.637 11.313-10.73 17.03-26.089 17.014-43.86.016-17.77-5.694-33-17.014-43.67-11.313-10.67-28.063-16.651-49.153-16.636H67.651zm171.09 0v184.89H372.21v-35.73h-94.903v-42.725h83.56v-35.352h-83.56V97.904h94.903V62.363H238.74zM106.028 96.959h33.462c10.314.008 17.271 2.783 21.74 7.184 4.455 4.408 6.602 10.7 6.617 18.716-.015 8.016-2.17 14.375-6.617 18.716-4.446 4.34-11.418 6.98-21.74 6.994h-33.462V96.96z" _fill="#fff"/>'
}
})

File diff suppressed because one or more lines are too long

View file

@ -1,10 +0,0 @@
/* eslint-disable */
var icon = require('vue-svgicon')
icon.register({
'spd-logo': {
width: 500,
height: 500,
viewBox: '0 0 340 340',
data: '<path pid="0" _fill="#E2001A" d="M0 0h340v340H0z"/><path pid="1" d="M87 239l13-20c-72-40-106 47-41 58 32 5 4 32-26 6l-13 22c74 49 122-49 46-56-16-1-17-26 21-10z" _fill="#fff"/><path pid="2" d="M110 210v105h30v-35h23c37 0 38-71 0-70h-53zm30 23h12c13 0 13 25 0 25h-12v-25z" _fill="#fff" fill-rule="evenodd"/><path pid="3" d="M198 210v105h46c59 1 59-105 1-105h-47zm29 25h5c37 0 37 56 0 56h-5v-56z" _fill="#fff" fill-rule="evenodd"/>'
}
})

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,156 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 353.9 139.3" style="enable-background:new 0 0 353.9 139.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:#324093;}
.st1{fill:#E6007E;}
.st2{fill:#3F2683;}
.st3{fill:#702283;}
.st4{fill:#37AAE1;}
.st5{fill:#283B90;}
.st6{fill:#36A9E1;}
.st7{fill:url(#SVGID_5_);}
</style>
<g>
<g>
<path class="st0" d="M75.4,123.7l-0.5-1.5h-3l-0.5,1.5h-1.7l3.1-8.5H74l3.1,8.5H75.4z M73.4,117.7l-1.1,3.1h2.1L73.4,117.7z"/>
<path class="st0" d="M80.4,123.7v-8.5h1.7v7.1h3.9v1.5H80.4z"/>
<path class="st0" d="M89.5,123.7v-8.5h1.7v7.1H95v1.5H89.5z"/>
<path class="st0" d="M98.6,123.7v-8.5h1.7v8.5H98.6z"/>
<path class="st0" d="M109.3,123.7l-0.5-1.5h-3l-0.5,1.5h-1.7l3.1-8.5h1.3l3.1,8.5H109.3z M107.3,117.7l-1.1,3.1h2.1L107.3,117.7z"
/>
<path class="st0" d="M119.4,123.7l-3.4-5.2v5.2h-1.7v-8.5h1.5l3.4,5.2v-5.2h1.7v8.5H119.4z"/>
<path class="st0" d="M127.9,123.8c-0.9,0-1.7-0.3-2.3-0.9c-0.9-0.9-0.8-1.9-0.8-3.4c0-1.5,0-2.5,0.8-3.4c0.6-0.6,1.4-0.9,2.3-0.9
c1.6,0,2.8,0.9,3.1,2.7h-1.7c-0.2-0.7-0.6-1.2-1.4-1.2c-0.5,0-0.8,0.2-1.1,0.4c-0.3,0.4-0.4,0.8-0.4,2.4c0,1.6,0.1,2.1,0.4,2.4
c0.2,0.3,0.6,0.4,1.1,0.4c0.8,0,1.3-0.5,1.4-1.2h1.7C130.8,122.9,129.5,123.8,127.9,123.8z"/>
<path class="st0" d="M134.7,123.7v-8.5h5.6v1.5h-4v2h3.4v1.5h-3.4v2.1h4v1.5H134.7z"/>
<path class="st0" d="M154.4,122.8c-0.6,0.6-1.3,0.9-2.3,0.9c-1,0-1.7-0.3-2.3-0.9c-0.9-0.9-0.8-1.9-0.8-3.4c0-1.5,0-2.5,0.8-3.4
c0.6-0.6,1.3-0.9,2.3-0.9c1,0,1.7,0.3,2.3,0.9c0.9,0.9,0.9,1.9,0.9,3.4C155.2,120.9,155.2,122,154.4,122.8z M153.1,117
c-0.2-0.3-0.6-0.5-1.1-0.5s-0.8,0.2-1.1,0.5c-0.3,0.4-0.4,0.8-0.4,2.4c0,1.6,0.1,2,0.4,2.4c0.2,0.3,0.6,0.5,1.1,0.5
s0.8-0.2,1.1-0.5c0.3-0.4,0.4-0.8,0.4-2.4C153.5,117.8,153.4,117.4,153.1,117z"/>
<path class="st0" d="M160.8,116.7v2.1h3.4v1.5h-3.4v3.5h-1.7v-8.5h5.6v1.5H160.8z"/>
<path class="st0" d="M173.4,123.7v-8.5h1.7v7.1h3.9v1.5H173.4z"/>
<path class="st0" d="M182.5,123.7v-8.5h1.7v8.5H182.5z"/>
<path class="st0" d="M191.9,123.7h-3.6v-8.5h3.4c1.7,0,2.6,0.9,2.6,2.4c0,0.9-0.6,1.6-1.1,1.8c0.5,0.2,1.2,0.8,1.2,1.9
C194.6,122.8,193.5,123.7,191.9,123.7z M191.7,116.7H190v2h1.6c0.7,0,1.1-0.4,1.1-1C192.8,117.1,192.4,116.7,191.7,116.7z
M191.8,120.1H190v2.1h1.7c0.8,0,1.1-0.5,1.1-1.1C192.9,120.6,192.5,120.1,191.8,120.1z"/>
<path class="st0" d="M198.5,123.7v-8.5h5.6v1.5h-4v2h3.4v1.5h-3.4v2.1h4v1.5H198.5z"/>
<path class="st0" d="M212.5,123.7l-1.7-3.4h-1.2v3.4h-1.7v-8.5h3.3c1.7,0,2.8,1.2,2.8,2.6c0,1.2-0.7,1.9-1.6,2.2l1.9,3.7H212.5z
M211.2,116.7h-1.6v2.3h1.6c0.7,0,1.2-0.5,1.2-1.1C212.4,117.1,211.9,116.7,211.2,116.7z"/>
<path class="st0" d="M222.9,123.7l-0.5-1.5h-3l-0.5,1.5h-1.7l3.1-8.5h1.3l3.1,8.5H222.9z M220.9,117.7l-1.1,3.1h2.1L220.9,117.7z"
/>
<path class="st0" d="M227.9,123.7v-8.5h1.7v7.1h3.9v1.5H227.9z"/>
<path class="st0" d="M239.3,123.8c-1.3,0-2.3-0.3-3.1-1.1l1.1-1.1c0.5,0.5,1.3,0.7,2.1,0.7c1,0,1.5-0.4,1.5-1.1
c0-0.3-0.1-0.6-0.3-0.7c-0.2-0.2-0.4-0.2-0.8-0.3l-1-0.1c-0.7-0.1-1.3-0.3-1.7-0.7c-0.4-0.4-0.6-1-0.6-1.7c0-1.5,1.1-2.6,3-2.6
c1.2,0,2,0.3,2.8,1l-1.1,1c-0.5-0.5-1.2-0.6-1.8-0.6c-0.9,0-1.3,0.5-1.3,1.1c0,0.2,0.1,0.4,0.3,0.6c0.2,0.2,0.4,0.3,0.8,0.3l1,0.1
c0.8,0.1,1.3,0.3,1.6,0.7c0.5,0.4,0.7,1.1,0.7,1.8C242.5,122.8,241.1,123.8,239.3,123.8z"/>
<path class="st0" d="M256.1,123.7l-0.5-1.5h-3l-0.5,1.5h-1.7l3.1-8.5h1.3l3.1,8.5H256.1z M254.1,117.7l-1.1,3.1h2.1L254.1,117.7z"
/>
<path class="st0" d="M266.2,123.7l-3.4-5.2v5.2h-1.7v-8.5h1.5l3.4,5.2v-5.2h1.7v8.5H266.2z"/>
<path class="st0" d="M277.2,122.9c-0.6,0.6-1.4,0.8-2.3,0.8h-3.1v-8.5h3.1c0.9,0,1.7,0.3,2.3,0.8c1,1,0.9,2.1,0.9,3.4
S278.2,121.9,277.2,122.9z M276,117.2c-0.3-0.3-0.7-0.5-1.2-0.5h-1.3v5.6h1.3c0.6,0,1-0.2,1.2-0.5c0.3-0.4,0.4-1,0.4-2.3
S276.4,117.6,276,117.2z"/>
<path class="st0" d="M75.9,136.4c-0.6,0.6-1.4,0.8-2.3,0.8h-3.1v-8.5h3.1c0.9,0,1.7,0.3,2.3,0.8c1,1,0.9,2.1,0.9,3.4
S76.8,135.4,75.9,136.4z M74.7,130.7c-0.3-0.3-0.7-0.5-1.2-0.5h-1.3v5.6h1.3c0.6,0,1-0.2,1.2-0.5c0.3-0.4,0.4-1,0.4-2.3
S75,131.1,74.7,130.7z"/>
<path class="st0" d="M80.6,137.2v-8.5h5.6v1.5h-4v2h3.4v1.5h-3.4v2.1h4v1.5H80.6z"/>
<path class="st0" d="M96.2,137.2v-5l-1.6,3.2h-1.1l-1.6-3.2v5h-1.7v-8.5h1.6l2.2,4.6l2.2-4.6h1.6v8.5H96.2z"/>
<path class="st0" d="M107.2,136.3c-0.6,0.6-1.3,0.9-2.3,0.9c-1,0-1.7-0.3-2.3-0.9c-0.9-0.9-0.8-1.9-0.8-3.4c0-1.5,0-2.5,0.8-3.4
c0.6-0.6,1.3-0.9,2.3-0.9c1,0,1.7,0.3,2.3,0.9c0.9,0.9,0.9,1.9,0.9,3.4C108.1,134.4,108.1,135.5,107.2,136.3z M106,130.5
c-0.2-0.3-0.6-0.5-1.1-0.5c-0.5,0-0.8,0.2-1.1,0.5c-0.3,0.4-0.4,0.8-0.4,2.4c0,1.6,0.1,2,0.4,2.4c0.2,0.3,0.6,0.5,1.1,0.5
c0.5,0,0.8-0.2,1.1-0.5c0.3-0.4,0.4-0.8,0.4-2.4C106.4,131.3,106.3,130.9,106,130.5z"/>
<path class="st0" d="M114.8,137.3c-0.9,0-1.7-0.3-2.3-0.9c-0.9-0.9-0.8-1.9-0.8-3.4c0-1.5,0-2.5,0.8-3.4c0.6-0.6,1.4-0.9,2.3-0.9
c1.6,0,2.8,0.9,3.1,2.7h-1.7c-0.2-0.7-0.6-1.2-1.4-1.2c-0.5,0-0.8,0.2-1.1,0.4c-0.3,0.4-0.4,0.8-0.4,2.4c0,1.6,0.1,2.1,0.4,2.4
c0.2,0.3,0.6,0.4,1.1,0.4c0.8,0,1.3-0.5,1.4-1.2h1.7C117.7,136.4,116.4,137.3,114.8,137.3z"/>
<path class="st0" d="M126.2,137.2l-1.7-3.4h-1.2v3.4h-1.7v-8.5h3.3c1.7,0,2.8,1.2,2.8,2.6c0,1.2-0.7,1.9-1.6,2.2l1.9,3.7H126.2z
M124.9,130.2h-1.6v2.3h1.6c0.7,0,1.2-0.5,1.2-1.1C126.1,130.6,125.6,130.2,124.9,130.2z"/>
<path class="st0" d="M136.5,137.2l-0.5-1.5h-3l-0.5,1.5h-1.7l3.1-8.5h1.3l3.1,8.5H136.5z M134.6,131.2l-1.1,3.1h2.1L134.6,131.2z"
/>
<path class="st0" d="M144.1,130.2v7.1h-1.7v-7.1h-2.2v-1.5h6.1v1.5H144.1z"/>
<path class="st0" d="M152.2,137.3c-1.3,0-2.3-0.3-3.1-1.1l1.1-1.1c0.5,0.5,1.3,0.7,2.1,0.7c1,0,1.5-0.4,1.5-1.1
c0-0.3-0.1-0.6-0.3-0.7c-0.2-0.2-0.4-0.2-0.8-0.3l-1-0.1c-0.7-0.1-1.3-0.3-1.7-0.7c-0.4-0.4-0.6-1-0.6-1.7c0-1.5,1.1-2.6,3-2.6
c1.2,0,2,0.3,2.8,1l-1.1,1c-0.5-0.5-1.2-0.6-1.8-0.6c-0.9,0-1.3,0.5-1.3,1.1c0,0.2,0.1,0.4,0.3,0.6c0.2,0.2,0.4,0.3,0.8,0.3l1,0.1
c0.8,0.1,1.3,0.3,1.6,0.7c0.5,0.4,0.7,1.1,0.7,1.8C155.4,136.3,154,137.3,152.2,137.3z"/>
<path class="st0" d="M165.8,130.2v2.1h3.4v1.5h-3.4v3.5h-1.7v-8.5h5.6v1.5H165.8z"/>
<path class="st0" d="M178.4,136.3c-0.6,0.6-1.3,0.9-2.3,0.9c-1,0-1.7-0.3-2.3-0.9c-0.9-0.9-0.8-1.9-0.8-3.4c0-1.5,0-2.5,0.8-3.4
c0.6-0.6,1.3-0.9,2.3-0.9c1,0,1.7,0.3,2.3,0.9c0.9,0.9,0.9,1.9,0.9,3.4C179.2,134.4,179.3,135.5,178.4,136.3z M177.2,130.5
c-0.2-0.3-0.6-0.5-1.1-0.5s-0.8,0.2-1.1,0.5c-0.3,0.4-0.4,0.8-0.4,2.4c0,1.6,0.1,2,0.4,2.4c0.2,0.3,0.6,0.5,1.1,0.5
s0.8-0.2,1.1-0.5c0.3-0.4,0.4-0.8,0.4-2.4C177.6,131.3,177.5,130.9,177.2,130.5z"/>
<path class="st0" d="M187.7,137.2l-1.7-3.4h-1.2v3.4h-1.7v-8.5h3.3c1.7,0,2.8,1.2,2.8,2.6c0,1.2-0.7,1.9-1.6,2.2l1.9,3.7H187.7z
M186.4,130.2h-1.6v2.3h1.6c0.7,0,1.2-0.5,1.2-1.1C187.6,130.6,187.1,130.2,186.4,130.2z"/>
<path class="st0" d="M198.2,137.2v-8.5h5.6v1.5h-4v2h3.4v1.5h-3.4v2.1h4v1.5H198.2z"/>
<path class="st0" d="M210.7,137.3c-1.8,0-3.1-1.2-3.1-3v-5.6h1.7v5.6c0,1,0.6,1.6,1.5,1.6s1.5-0.6,1.5-1.6v-5.6h1.7v5.6
C213.8,136.1,212.4,137.3,210.7,137.3z"/>
<path class="st0" d="M222.4,137.2l-1.7-3.4h-1.2v3.4h-1.7v-8.5h3.3c1.7,0,2.8,1.2,2.8,2.6c0,1.2-0.7,1.9-1.6,2.2l1.9,3.7H222.4z
M221.1,130.2h-1.6v2.3h1.6c0.7,0,1.2-0.5,1.2-1.1C222.4,130.6,221.9,130.2,221.1,130.2z"/>
<path class="st0" d="M233.1,136.3c-0.6,0.6-1.3,0.9-2.3,0.9c-1,0-1.7-0.3-2.3-0.9c-0.9-0.9-0.8-1.9-0.8-3.4c0-1.5,0-2.5,0.8-3.4
c0.6-0.6,1.3-0.9,2.3-0.9c1,0,1.7,0.3,2.3,0.9c0.9,0.9,0.9,1.9,0.9,3.4C234,134.4,234,135.5,233.1,136.3z M231.9,130.5
c-0.2-0.3-0.6-0.5-1.1-0.5c-0.5,0-0.8,0.2-1.1,0.5c-0.3,0.4-0.4,0.8-0.4,2.4c0,1.6,0.1,2,0.4,2.4c0.2,0.3,0.6,0.5,1.1,0.5
c0.5,0,0.8-0.2,1.1-0.5c0.3-0.4,0.4-0.8,0.4-2.4C232.3,131.3,232.2,130.9,231.9,130.5z"/>
<path class="st0" d="M241.2,134h-1.6v3.2h-1.7v-8.5h3.3c1.8,0,2.8,1.2,2.8,2.7S243,134,241.2,134z M241.1,130.2h-1.6v2.3h1.6
c0.8,0,1.2-0.5,1.2-1.2C242.4,130.6,241.9,130.2,241.1,130.2z"/>
<path class="st0" d="M247.6,137.2v-8.5h5.6v1.5h-4v2h3.4v1.5h-3.4v2.1h4v1.5H247.6z"/>
</g>
<g>
<g>
<defs>
<path id="SVGID_1_" d="M298.8,125.1c-0.1-0.4-0.4-0.7-0.6-1c0,0-0.1-0.1-0.1-0.1l-8.1-8.1c-1.1-1.1-3-1.1-4.1,0
c-1.1,1.1-1.1,3,0,4.1l6.2,6.2l-6.2,6.2c-1.1,1.1-1.1,3,0,4.1c1.1,1.1,3,1.1,4.1,0l8-8c0.1-0.1,0.2-0.1,0.3-0.2
C299,127.4,299.2,126.2,298.8,125.1z"/>
</defs>
<use xlink:href="#SVGID_1_" style="overflow:visible;fill:#324093;"/>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
</g>
<g>
<defs>
<path id="SVGID_3_" d="M310.8,125.1c-0.1-0.4-0.4-0.7-0.6-1c0,0-0.1-0.1-0.1-0.1l-8.1-8.1c-1.1-1.1-3-1.1-4.1,0
c-1.1,1.1-1.1,3,0,4.1l6.2,6.2l-6.2,6.2c-1.1,1.1-1.1,3,0,4.1c1.1,1.1,3,1.1,4.1,0l8-8c0.1-0.1,0.2-0.1,0.3-0.2
C311,127.4,311.2,126.2,310.8,125.1z"/>
</defs>
<use xlink:href="#SVGID_3_" style="overflow:visible;fill:#E6007E;"/>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
</clipPath>
</g>
</g>
</g>
<g>
<polyline class="st1" points="130.2,101.5 155.4,101.5 155.4,5.3 130.2,5.3 130.2,101.5 "/>
<polyline class="st0" points="130.2,44 130.2,101.5 130.2,44 130.2,44 "/>
<path class="st2" d="M130.2,44v57.6h8.9c-0.2-2.8-0.3-5.6-0.3-8.3V66C138.8,55.9,135.6,48.8,130.2,44"/>
<path class="st0" d="M251.6,35.7c-22.7,0-39.1,14-39.1,38.1c0,11.8,4.4,21.1,11.7,27.7h57.6V89.7c-7.6,4.1-15.4,5.6-22.3,5.6
c-12.3,0-20-3.9-21.4-14h50.4v-4.6C288.4,54.9,278.6,35.7,251.6,35.7 M237.7,67c0.6-8.4,4.9-15.3,14-15.3c10.1,0,14,6.9,14,15.3
H237.7"/>
<path class="st3" d="M155.4,46.5c-5.8,7.1-8.8,16.7-8.8,26.1c0,11,3,21,8.8,28.2V46.5"/>
<path class="st4" d="M212.5,75.1c0.3,11.2,4.6,20.1,11.6,26.4C217.1,95.2,212.8,86.3,212.5,75.1 M212.5,73.8
C212.5,73.8,212.5,73.8,212.5,73.8L212.5,73.8C212.5,73.8,212.5,73.8,212.5,73.8 M212.5,73.7C212.5,73.7,212.5,73.8,212.5,73.7
C212.5,73.8,212.5,73.7,212.5,73.7 M212.5,73.7C212.5,73.7,212.5,73.7,212.5,73.7C212.5,73.7,212.5,73.7,212.5,73.7 M212.5,73.6
C212.5,73.6,212.5,73.6,212.5,73.6C212.5,73.6,212.5,73.6,212.5,73.6 M212.5,73.5C212.5,73.5,212.5,73.6,212.5,73.5
C212.5,73.6,212.5,73.5,212.5,73.5 M212.5,73.5C212.5,73.5,212.5,73.5,212.5,73.5C212.5,73.5,212.5,73.5,212.5,73.5 M212.5,73.4
C212.5,73.4,212.5,73.4,212.5,73.4C212.5,73.4,212.5,73.4,212.5,73.4 M212.5,73.3C212.5,73.3,212.5,73.3,212.5,73.3
C212.5,73.3,212.5,73.3,212.5,73.3 M212.5,73.2C212.5,73.3,212.5,73.3,212.5,73.2C212.5,73.3,212.5,73.3,212.5,73.2 M212.5,73.2
C212.5,73.2,212.5,73.2,212.5,73.2C212.5,73.2,212.5,73.2,212.5,73.2 M212.5,73.1C212.5,73.1,212.5,73.1,212.5,73.1
C212.5,73.1,212.5,73.1,212.5,73.1 M212.5,73C212.5,73,212.5,73.1,212.5,73C212.5,73.1,212.5,73,212.5,73 M212.5,72.9
C212.5,72.9,212.5,72.9,212.5,72.9C212.5,72.9,212.5,72.9,212.5,72.9"/>
<path class="st5" d="M228.6,41.8c-9.8,6.2-15.9,16.8-16.1,31.1c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0
c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0
c0,0,0,0,0,0.1c0,0.4,0,0.8,0,1.2c0.3,11.2,4.6,20.1,11.6,26.4l0,0h4.5V41.8"/>
<path class="st6" d="M203.2,5.3v41.5H203c-6.4-8.4-15-11.1-25.1-11.1c-9.6,0-17.2,4.3-22.4,10.7v54.3c0.2,0.2,0.4,0.5,0.6,0.7h68.1
c-7.3-6.5-11.7-15.9-11.7-27.7c0-14.8,6.2-25.7,16.1-32V5.3H203.2z M188,92.8c-9.5,0-15.3-8-15.3-19.6c0-9.7,5.5-18.1,15.3-18.1
c9.2,0,15.4,8,15.4,19.1C203.4,84.8,196.4,92.8,188,92.8z"/>
<path class="st0" d="M130.2,44c-6.5-5.8-15.9-8.2-26.1-8.2c-10.8,0-20.2,1.5-29.1,5.2L75.4,58c7-3.9,15.1-5.5,23.3-5.5
c9.1,0,16.5,2.7,16.7,12.6c-3.2-0.6-7.7-1-11.8-1c-13.5,0-37.7,2.7-37.7,24.9c0,5,1.3,9.1,3.5,12.4h60.9V44z M99.8,95.3
c-5.9,0-10.4-2.9-10.4-8c0-7,6.7-9.7,15.3-9.7c3.8,0,7.4,0.3,10.7,0.4C115.3,86.6,109.3,95.3,99.8,95.3z"/>
</g>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-4.3655" y1="101.5441" x2="358.2556" y2="101.5441">
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0"/>
<stop offset="0.1534" style="stop-color:#324093"/>
<stop offset="0.8405" style="stop-color:#324093"/>
<stop offset="0.9877" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect x="-4.4" y="100.7" class="st7" width="362.6" height="1.8"/>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="750px" height="230px">
<rect x="0" y="0" width="750px" height="230px" style="fill:white; stroke:none; opacity:0;"/>
<!-- C -->
<path d="M 218,64 l 8,-49 c -285,-70 -295,263 -25,196 l 7,-49 c -200,44 -149,-153 10,-98 z" style="fill:#ba261d; stroke:none;"/>
<!-- D -->
<path d="M 259,10 l -32,207 h 144 c 114,0 155,-207 12,-207 z M 321,55 h 44 c 61,0 42,117 -14,117 h -47 z" style="fill:#ba261d; stroke:none;"/>
<!-- U -->
<path d="M 511,10 h 73 l -18,117 c -9,52 73,69 86,-1 l 17,-116 h 71 l -19,124 c -25,127 -250,109 -226,-10 z" style="fill:#ba261d; stroke:none;"/>
</svg>

Before

Width:  |  Height:  |  Size: 642 B

View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" width="189px" height="39px" viewBox="0 0 189 39" version="1.1">
<!-- Generator: Sketch 3.5.1 (25234) - http://www.bohemiancoding.com/sketch -->
<title>Group 3</title>
<desc>Created with Sketch.</desc>
<defs>
<linearGradient x1="100%" y1="42.2357832%" x2="0%" y2="52.1389306%" id="linearGradient-1">
<stop stop-color="#ED1D24" offset="0%"/>
<stop stop-color="#EC5022" offset="100%"/>
</linearGradient>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Group-3" sketch:type="MSLayerGroup">
<path d="M18.356027,39 L35.2136077,25.9768537 L18.356027,12.9541829 L18.356027,39 Z M0,39 L16.8566427,25.9768537 L0,12.9541829 L0,39 Z" id="Fill-1" fill="url(#linearGradient-1)" sketch:type="MSShapeGroup"/>
<path d="M66.8639323,19.2500195 C66.8639323,11.3686902 60.3080241,4.82762927 52.2190117,4.82762927 L44.7645328,4.82762927 L44.7645328,33.6728854 L52.2190117,33.6728854 C60.3080241,33.6728854 66.8639323,27.1318244 66.8639323,19.2500195 L66.8639323,19.2500195 Z M40.05923,0.162373171 L52.2190117,0.162373171 C62.8986841,0.162373171 71.569235,8.74094634 71.569235,19.2500195 C71.569235,29.7590927 62.8986841,38.3376659 52.2190117,38.3376659 L40.05923,38.3376659 L40.05923,0.162373171 Z" id="Fill-3" fill="#292F3C" sketch:type="MSShapeGroup"/>
<path d="M76.3067568,13.7812683 L80.8530744,13.7812683 L80.8530744,38.3374756 L76.3067568,38.3374756 L76.3067568,13.7812683 Z M75.5662333,6.75746341 C75.5662333,5.09568293 76.8878263,3.75493902 78.5799156,3.75493902 C80.2190099,3.75493902 81.540603,5.09568293 81.540603,6.75746341 C81.540603,8.41971951 80.2190099,9.81373171 78.5799156,9.81373171 C76.8878263,9.81373171 75.5662333,8.41971951 75.5662333,6.75746341 L75.5662333,6.75746341 Z" id="Fill-6" fill="#292F3C" sketch:type="MSShapeGroup"/>
<path d="M86.933528,0.162468293 L110.725017,0.162468293 L110.725017,4.77350488 L91.6918258,4.77350488 L91.6918258,13.7273341 L108.292873,13.7273341 L108.292873,18.4996024 L91.6918258,18.4996024 L91.6918258,33.6197122 L110.248531,33.6197122 L110.248531,38.337761 L86.933528,38.337761 L86.933528,0.162468293 Z" id="Fill-8" fill="#292F3C" sketch:type="MSShapeGroup"/>
<path d="M143.979731,38.3375707 L143.979731,7.88380244 L131.978466,24.504461 L120.029726,7.88380244 L120.029726,38.3375707 L115.323954,38.3375707 L115.323954,0.162278049 L120.294232,0.162278049 L131.978466,16.4623756 L143.662699,0.162278049 L148.685034,0.162278049 L148.685034,38.3375707 L143.979731,38.3375707 Z" id="Fill-9" fill="#292F3C" sketch:type="MSShapeGroup"/>
<path d="M155.107516,38.3370951 L155.107516,34.3096317 L165.001174,22.5749122 C165.377298,22.0194 165.583181,21.4291683 165.583181,20.8042171 C165.583181,19.1376805 164.247988,17.7141805 162.604673,17.7141805 C161.337951,17.7141805 160.208171,18.6168878 159.797343,19.8667902 L159.557693,20.5959 L155.175988,19.6584732 L155.415169,18.7557659 C156.271062,15.4921317 159.249571,13.2700829 162.604673,13.2700829 C164.624581,13.2700829 166.472841,13.9991927 167.911211,15.4226927 C169.314876,16.8461927 170.102298,18.7557659 170.102298,20.8042171 C170.102298,22.4013146 169.588762,23.9636927 168.663928,25.2830341 L168.630162,25.3177537 L161.577601,33.7541195 L170.102298,33.7541195 L170.102298,38.3370951 L155.107516,38.3370951 Z" id="Fill-10" fill="#292F3C" sketch:type="MSShapeGroup"/>
<path d="M173.970795,36.2191573 C173.662673,35.9414012 173.319847,35.5594866 173.012195,35.1081329 L172.49819,34.3790232 L176.264589,31.6709012 L176.743889,32.3652915 C177.531311,33.4763159 178.763798,34.2059012 180.098522,34.2059012 C182.289609,34.2059012 184.172574,32.330572 184.172574,30.1784378 C184.172574,27.9216695 182.289609,25.9773768 180.098522,25.9773768 C179.482748,25.9773768 178.866036,26.1856939 178.284028,26.4981695 L177.975907,26.6370476 L173.799616,25.4565841 L176.949304,13.582511 L188.417805,13.582511 L188.417805,18.2002061 L180.509351,18.1654866 L179.619222,21.4638402 L180.098522,21.4638402 C182.426552,21.4638402 184.617639,22.3665476 186.260954,23.9636451 C187.082611,24.7621939 187.73309,25.7343402 188.178155,26.8106451 C188.588984,27.8864744 188.828634,29.0326939 188.828634,30.1784378 C188.828634,32.4347305 187.904269,34.5873402 186.260954,36.2191573 C185.439296,37.0177061 184.480696,37.6426573 183.419388,38.094011 C182.392316,38.4759256 181.262537,38.6148037 180.098522,38.6148037 C177.702021,38.6148037 175.579874,37.8509744 173.970795,36.2191573" id="Fill-11" fill="#292F3C" sketch:type="MSShapeGroup"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

304
src/assets/svg/edp-logo.svg Normal file
View file

@ -0,0 +1,304 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Laag_1"
x="0px"
y="0px"
width="300"
height="258.49185"
viewBox="0 0 300.00001 258.49186"
enable-background="new 0 0 1296 1296"
xml:space="preserve"
inkscape:version="0.48.2 r9819"
sodipodi:docname="European Democratic Party Logo.svg"><metadata
id="metadata3061"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs3059"><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath5291"><path
inkscape:connector-curvature="0"
d="m 273.916,38.9191 0,53.823 111.596,0 0,-53.823"
id="path5293" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath12438"><path
inkscape:connector-curvature="0"
d="m 36,639.4388 525.757,0 0,155.241 -525.757,0 0,-155.241 z"
id="path12440" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath12446"><path
inkscape:connector-curvature="0"
d="m -467.974,251.4368 1027.5037,0 0,529.4855 -1027.5037,0 0,-529.4855 z"
id="path12448" /></clipPath>
</defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1240"
inkscape:window-height="785"
id="namedview3057"
showgrid="false"
fit-margin-top="5"
fit-margin-left="5"
fit-margin-right="5"
fit-margin-bottom="5"
inkscape:zoom="1"
inkscape:cx="88.297508"
inkscape:cy="160.81688"
inkscape:window-x="33"
inkscape:window-y="22"
inkscape:window-maximized="0"
inkscape:current-layer="g5287" />
<g
transform="matrix(1.25,0,0,-1.25,-292.68739,204.26827)"
id="g5287"><g
id="g3549"><path
id="path34"
style="fill:#004aa8;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 283.84903,-19.060728 -4.22114,-7.292195 5.72124,-2.041813 -8.32976,-2.462677 -4.22114,-7.288024 -0.92923,5.762914 -8.32976,-2.462677 7.75472,6.0296 -0.9334,5.758747 5.72958,-2.033479 7.75889,6.029604"
inkscape:connector-curvature="0" /><path
id="path36"
style="fill:#004a98;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 258.4597,5.1660163 -4.22113,-7.2921939 5.72124,-2.0376463 -8.33393,-2.4668444 -4.21698,-7.2838567 -0.92089,5.762914 -8.3381,-2.466843 7.75889,6.025432 -0.9334,5.767082 5.72541,-2.03764626 7.75889,6.02960256"
inkscape:connector-curvature="0" /><path
id="path38"
style="fill:#004aa8;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 260.38067,45.339735 -4.2128,-7.292195 5.72958,-2.037646 -8.32977,-2.46268 -4.22946,-7.288019 -0.92924,5.762919 -8.32977,-2.466847 7.75889,6.033769 -0.92922,5.758743 5.72123,-2.037647 7.75056,6.029603"
inkscape:connector-curvature="0" /><path
id="path40"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 329.92317,-20.298321 -7.76305,-6.025433 -5.72125,2.037646 0.92924,-5.767081 -7.75889,-6.025433 8.33809,2.466844 0.9209,-5.767081 4.22113,7.288024 8.33394,2.466843 -5.72958,2.041814 4.22947,7.283857"
inkscape:connector-curvature="0" /><path
id="path42"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 352.94565,90.497142 c 3.01273,8.279764 -1.27092,15.017748 -9.55485,15.017748 0,0 -7.43386,0 -13.51347,0 -2.65436,-7.279684 -8.28392,-22.755798 -10.93412,-30.035494 6.08378,0 13.51765,0 13.51765,0 8.28392,0 17.47208,6.737986 20.48479,15.017746 z m -44.7157,-26.826923 c -3.47526,0 -5.27122,2.646018 -4.00446,5.90876 l 15.96365,43.861491 c 0.85006,2.32932 3.06689,3.88361 5.5504,3.88361 l 19.80559,0 c 7.42553,0 13.57597,-2.94605 17.32207,-8.29227 3.92945,-5.6129 4.5795,-13.242619 1.7793,-20.934843 -5.14204,-14.12184 -20.05978,-24.426748 -34.3233,-24.426748 l -22.09325,0 z m -37.27352,41.844671 c -1.39593,-3.8336 -2.88354,-7.91723 -5.75458,-15.809467 7.35887,0 22.13076,0 22.13076,0 4.35865,0 9.19233,3.546081 10.77994,7.904736 1.58762,4.358641 -0.66671,7.904731 -5.02536,7.904731 0,0 -14.77189,0 -22.13076,0 z m -9.68403,7.92558 c 0.8459,2.32932 3.06272,3.88361 5.54623,3.88361 l 28.54789,0 c 5.49206,0 10.25491,-2.30851 13.07177,-6.32963 1.77513,-2.52935 2.67519,-5.57539 2.67519,-8.8298 0,-2.212654 -0.41669,-4.52116 -1.25842,-6.825494 -3.66276,-10.063222 -14.52188,-17.942957 -24.72261,-17.942957 0,0 -18.36381,0 -24.41008,0 l -2.82104,-7.81722 c -1.26676,-3.262742 -5.11287,-5.90876 -8.59229,-5.90876 -3.47524,0 -5.26704,2.646018 -4.00029,5.90876 l 15.96365,43.861491 z m 164.12014,3.89611 c 3.26273,0 4.94618,-2.64603 3.7586,-5.90876 -1.19176,-3.26273 -4.79619,-5.9046 -8.05892,-5.9046 l -33.69825,-0.009 c -0.69172,-1.90847 -1.8168,-5.00035 -3.31274,-9.10065 l 33.69825,0 c 3.26274,0 4.9462,-2.641854 3.75861,-5.904596 -1.18759,-3.262732 -4.79618,-5.904583 -8.05892,-5.904583 l -33.69408,-0.0039 c -1.25843,-3.458588 -2.32517,-6.387965 -3.31274,-9.10483 l 33.69408,0 c 3.26275,0 4.9462,-2.646018 3.75861,-5.90875 -1.18758,-3.258576 -4.79618,-5.904594 -8.05474,-5.904594 l -40.11955,-0.01247 c -3.47525,0 -5.27121,2.646018 -4.00446,5.90876 l 15.96364,43.861653 c 0.85007,2.32933 3.0669,3.88361 5.55041,3.88361 l 42.1322,0.0125"
inkscape:connector-curvature="0" /><path
id="path44"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 268.65627,129.83332 2.80853,0 c 1.26676,0 2.296,0.46671 2.81271,1.87931 0.4792,1.3251 -0.26669,1.74596 -1.43344,1.74596 l -2.86687,0 -1.32093,-3.62527 z m -2.04598,-5.61706 -1.4126,0 3.80444,10.45491 4.70451,0 c 1.93763,0 2.64601,-1.25425 2.0293,-2.94187 -0.5292,-1.45844 -1.95847,-3.1044 -4.22947,-3.1044 l -3.2919,0 -1.60428,-4.40864"
inkscape:connector-curvature="0" /><path
id="path46"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 279.85291,128.09987 c -0.26252,-0.15834 -0.62505,-0.27502 -2.28767,-0.4792 -0.65838,-0.0875 -1.72929,-0.27502 -2.07931,-1.23759 -0.30419,-0.82923 -0.0625,-1.3251 0.90006,-1.3251 1.19175,0 2.63769,0.77089 3.00855,1.7918 l 0.45837,1.25009 z m -4.1753,1.4126 c 0.72088,1.82097 2.18765,2.53352 4.06695,2.53352 0.61255,0 2.76271,-0.17085 2.05016,-2.12515 l -1.59595,-4.37949 c -0.11668,-0.32085 0,-0.45419 0.25835,-0.45419 0.11667,0 0.28752,0.0292 0.44587,0.0583 l -0.3417,-0.92924 c -0.23751,-0.0583 -0.45837,-0.14584 -0.75006,-0.14584 -1.13757,0 -1.10007,0.5792 -0.92923,1.16258 -0.69171,-0.53754 -1.72095,-1.23759 -3.20439,-1.23759 -1.39593,0 -2.06265,0.88757 -1.58761,2.20016 0.23334,0.64171 0.96256,2.12516 3.18356,2.38767 l 2.20848,0.26252 c 0.31669,0.0292 0.7209,0.14584 0.99591,0.90423 0.29169,0.80006 -0.12917,1.23342 -1.33759,1.23342 -1.45844,0 -1.98348,-0.88757 -2.2835,-1.47094 l -1.17925,0"
inkscape:connector-curvature="0" /><path
id="path48"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 283.11147,124.21626 -1.28342,0 2.7752,7.61305 1.20842,0 -0.46254,-1.26676 0.0292,0 c 0.83323,0.88756 1.7208,1.48344 2.6792,1.48344 0.1625,0 0.22917,-0.0125 0.32085,-0.0417 l -0.48337,-1.32508 -0.47919,0 c -1.19593,0 -2.29184,-0.92924 -2.69187,-2.03765 l -1.61261,-4.42532"
inkscape:connector-curvature="0" /><path
id="path50"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 290.80786,130.76673 -1.80013,-4.95036 c -0.21668,-0.59587 0.29169,-0.59587 0.55421,-0.59587 l 0.45003,0 -0.36669,-1.00424 c -0.47921,-0.0458 -0.86674,-0.10418 -0.99591,-0.10418 -1.26676,0 -1.28759,0.71256 -0.95007,1.63345 l 1.82513,5.0212 -1.0334,0 0.38753,1.06258 1.0334,0 0.77505,2.12515 1.28344,0 -0.77507,-2.12515 1.22093,0 -0.38337,-1.06258 -1.22508,0"
inkscape:connector-curvature="0" /><path
id="path52"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 293.97059,133.21273 0.5292,1.45844 1.28342,0 -0.53336,-1.45844 -1.27926,0 z m -1.99598,-8.99647 -1.27926,0 2.77103,7.61305 1.28343,0 -2.7752,-7.61305"
inkscape:connector-curvature="0" /><path
id="path54"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 300.43772,126.02055 2.12515,0 c 1.7793,0 3.02521,1.7918 3.65026,3.50859 1.12509,3.08772 -0.25418,3.33357 -1.18758,3.33357 l -2.09598,0 -2.49185,-6.84216 z m 1.0084,8.65062 4.617,0 c 3.52109,0 3.15857,-3.00021 2.43768,-4.97952 -0.81673,-2.24599 -2.88354,-5.47539 -6.33379,-5.47539 l -4.52532,0 3.80443,10.45491"
inkscape:connector-curvature="0" /><path
id="path56"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 314.68874,133.00855 -1.47094,0 2.14182,2.12516 2.24183,0 -2.91271,-2.12516 z m -0.59171,-4.15029 c 0.33752,1.25426 -0.32502,1.63345 -0.97923,1.63345 -0.96257,0 -1.69596,-0.61255 -2.1835,-1.63345 l 3.16273,0 z m 1.14592,-2.371 c -1.22092,-1.86681 -2.98355,-2.47518 -4.30865,-2.47518 -2.18348,0 -3.47941,1.0459 -2.31683,4.2378 0.33752,0.92923 1.74596,3.91695 5.13788,3.91695 1.52927,0 3.37524,-0.72923 2.08765,-4.26697 l -0.13335,-0.3667 -5.31288,0 c -0.15418,-0.57921 -0.5167,-1.8918 1.12925,-1.8918 0.56671,0 1.25841,0.29169 1.61678,0.8459 l 2.10015,0"
inkscape:connector-curvature="0" /><path
id="path58"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 326.7021,124.21626 -2.03764,0 1.71262,4.70034 c 0.4167,1.15008 0.0458,1.52927 -0.55004,1.52927 -1.01674,0 -1.62511,-0.66672 -1.96263,-1.58761 l -1.6918,-4.642 -2.03348,0 1.69596,4.65866 c 0.23751,0.65422 0.57088,1.57095 -0.65422,1.57095 -0.9584,0 -1.50843,-0.66672 -1.81679,-1.51261 l -1.71679,-4.717 -2.03765,0 2.81687,7.74639 1.95431,0 -0.4167,-1.13758 0.0292,0 c 0.45003,0.50837 1.32092,1.34176 2.68769,1.34176 1.12092,0 1.48344,-0.40836 1.70429,-1.24176 0.40003,0.37919 1.27926,1.24176 2.52101,1.24176 1.51261,0 2.36685,-0.89173 1.74597,-2.59186 l -1.95015,-5.35871"
inkscape:connector-curvature="0" /><path
id="path60"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 334.11514,130.44587 c -1.57511,0 -2.36268,-1.36677 -2.72519,-2.3585 -0.35837,-0.99174 -0.56671,-2.3585 1.00424,-2.3585 1.5751,0 2.36266,1.36676 2.72518,2.3585 0.35837,0.99173 0.56671,2.3585 -1.00423,2.3585 z m -2.346,-6.43379 c -2.07932,0 -3.49192,1.27926 -2.47518,4.07529 1.01674,2.79604 3.36274,4.07946 5.44622,4.07946 2.07932,0 3.49192,-1.28342 2.47518,-4.07946 -1.01674,-2.79603 -3.36274,-4.07529 -5.44622,-4.07529"
inkscape:connector-curvature="0" /><path
id="path62"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 344.69507,127.04146 c -0.36253,-0.80422 -1.80013,-3.02938 -4.63784,-3.02938 -2.91271,0 -2.77103,2.22516 -2.17932,3.8586 0.91256,2.50436 2.65435,4.29615 5.27538,4.29615 1.22509,0 3.03355,-0.55421 2.34183,-2.97105 l -2.06681,0 c 0.0958,0.50837 0.0667,1.30843 -0.90006,1.25009 -1.27926,0 -2.08349,-1.27926 -2.43351,-2.24182 -0.30419,-0.8459 -0.88756,-2.52102 0.65838,-2.52102 1.0334,0 1.74179,0.99174 1.87513,1.35843 l 2.06682,0"
inkscape:connector-curvature="0" /><path
id="path64"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 347.66611,131.96265 1.95014,0 -0.48754,-1.34176 0.0292,0 c 0.70838,0.78755 1.4501,1.54594 2.68769,1.54594 0.13334,0 0.25835,-0.0166 0.38336,-0.0292 l -0.75006,-2.07098 c -0.16667,0.0292 -0.38336,0.0292 -0.57486,0.0292 -1.58762,0 -2.23767,-0.98756 -2.55019,-1.84596 l -1.46678,-4.03362 -2.03765,0 2.81688,7.74639"
inkscape:connector-curvature="0" /><path
id="path66"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 355.94588,127.98736 c -0.26253,-0.16251 -0.64589,-0.29168 -1.53345,-0.42503 -0.80839,-0.12917 -1.50011,-0.32085 -1.80846,-1.16259 -0.26252,-0.71671 0.21251,-0.93339 0.60421,-0.93339 0.90423,0 2.03347,0.58337 2.37934,1.52928 l 0.35836,0.99173 z m 1.17508,-2.25849 c -0.33336,-0.91674 -0.20418,-1.12092 0.0125,-1.20842 l -0.11251,-0.30419 -2.20015,0 c 0.0166,0.36253 0.0292,0.4792 0.14584,0.91673 -0.64172,-0.48337 -1.52928,-1.12091 -2.91272,-1.12091 -1.16674,0 -2.12098,0.65421 -1.5376,2.25432 0.55004,1.51678 1.79179,2.28767 3.15856,2.47518 l 1.9333,0.27919 c 0.33753,0.0417 0.77922,0.17501 0.93757,0.61254 0.31253,0.8584 -0.48753,0.90007 -1.01257,0.90007 -1.01674,0 -1.42093,-0.62505 -1.64179,-1.07508 l -1.96681,0 c 1.09591,2.37101 2.86271,2.70853 4.45033,2.70853 1.09174,0 2.96688,-0.33752 2.271,-2.24599 l -1.52511,-4.19197"
inkscape:connector-curvature="0" /><path
id="path68"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 363.26307,131.96265 1.26675,0 -0.53337,-1.45844 -1.26676,0 -1.52927,-4.20863 c -0.16668,-0.45004 -0.21251,-0.62505 0.61671,-0.62505 0.12918,0 0.28335,0.0125 0.43337,0.0292 l -0.56254,-1.54177 c -0.32503,-0.0166 -0.65005,-0.0292 -0.9709,-0.0292 l -0.26253,0 c -1.76262,0 -1.83763,0.67088 -1.47511,1.67512 l 1.71263,4.70034 -1.04591,0 0.5292,1.45844 1.05008,0 0.76255,2.09598 2.03765,0 -0.76255,-2.09598"
inkscape:connector-curvature="0" /><path
id="path70"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 369.10932,128.85826 c 0.33753,1.25426 -0.32503,1.63345 -0.97924,1.63345 -0.96256,0 -1.69596,-0.61255 -2.18348,-1.63345 l 3.16272,0 z m 1.14591,-2.371 c -1.21675,-1.86681 -2.98355,-2.47518 -4.30863,-2.47518 -2.1835,0 -3.47942,1.0459 -2.31684,4.2378 0.33753,0.92923 1.74596,3.91695 5.13787,3.91695 1.52928,0 3.37524,-0.72923 2.08765,-4.26697 l -0.13334,-0.3667 -5.31289,0 c -0.15417,-0.57921 -0.5167,-1.8918 1.12925,-1.8918 0.56671,0 1.25843,0.29169 1.61678,0.8459 l 2.10015,0"
inkscape:connector-curvature="0" /><path
id="path72"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 382.47278,124.21626 -7.71722,0 3.80444,10.45491 7.61721,0 -0.4542,-1.25425 -6.20461,0 -1.16674,-3.2044 5.72123,0 -0.4542,-1.25008 -5.72124,0 -1.27093,-3.49609 6.30462,0 -0.45836,-1.25009"
inkscape:connector-curvature="0" /><path
id="path74"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 388.89407,124.21626 0.40421,1.10424 -0.0166,0.0292 c -0.86256,-0.8874 -1.68762,-1.35409 -2.91271,-1.35409 -1.12091,0 -2.27933,0.53753 -1.61678,2.3585 l 1.99181,5.47539 1.28343,0 -1.8418,-5.05453 c -0.45421,-1.25009 0.0333,-1.67096 0.86256,-1.67096 1.61678,0 2.61685,1.42511 3.02105,2.53352 l 1.52511,4.19197 1.28343,0 -2.77521,-7.61305 -1.20842,0"
inkscape:connector-curvature="0" /><path
id="path76"
style="fill:#2151a8;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 393.24856,124.21626 -1.27927,0 2.77104,7.61305 1.20842,0 -0.46253,-1.26676 0.0292,0 c 0.83339,0.88756 1.72096,1.48344 2.68353,1.48344 0.15835,0 0.22502,-0.0125 0.31669,-0.0417 l -0.48337,-1.32508 -0.4792,0 c -1.19158,0 -2.28749,-0.92924 -2.6917,-2.03765 l -1.61261,-4.42532"
inkscape:connector-curvature="0" /><path
id="path78"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 399.84069,125.11632 c 1.83347,0 2.90022,1.89597 3.27108,2.91271 0.37085,1.02091 0.68337,2.91271 -1.15426,2.91271 -1.83346,0 -2.9002,-1.8918 -3.27106,-2.91271 -0.37087,-1.01674 -0.68339,-2.91271 1.15424,-2.91271 z m 2.52102,6.92967 c 2.43351,0 2.79187,-2.05015 2.07515,-4.01696 -0.71672,-1.96681 -2.56685,-4.01695 -5.00036,-4.01695 -2.4335,0 -2.79187,2.05014 -2.07515,4.01695 0.71255,1.96681 2.56686,4.01696 5.00036,4.01696"
inkscape:connector-curvature="0" /><path
id="path80"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 407.7996,125.10382 c 1.39593,0 2.51268,1.26676 3.12522,2.94188 0.3542,0.97507 0.93757,2.8502 -1.0459,2.8502 -1.85013,0 -2.77937,-1.9918 -3.2294,-3.2294 -0.73755,-2.02514 0.33335,-2.56268 1.15008,-2.56268 z m -0.85839,6.72549 1.20842,0 -0.39169,-1.07508 0.0292,0 c 0.4667,0.43337 1.36259,1.29176 2.74603,1.29176 2.02098,0 2.57102,-1.65846 1.78763,-3.79611 -0.66255,-1.82096 -2.30433,-4.25447 -4.89619,-4.25447 -1.01674,0 -1.5126,0.4792 -1.65429,1.02091 l -0.025,0 -1.39177,-3.81697 -1.27926,0 3.86695,10.62996"
inkscape:connector-curvature="0" /><path
id="path82"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 418.71705,132.85021 -0.97924,0 2.04598,2.05432 1.57095,0 -2.63769,-2.05432 z m 0.26669,-4.22531 c 0.35836,1.17926 0.25835,2.271 -1.3001,2.271 -1.17925,0 -2.50851,-1.09174 -2.93771,-2.271 l 4.23781,0 z m 0.48754,-2.02097 c -0.17918,-0.36669 -0.92091,-1.44177 -2.11266,-2.08348 -0.43754,-0.23336 -1.03757,-0.52504 -2.25849,-0.52504 -2.14183,0 -2.82104,1.61678 -2.02098,3.81694 0.8584,2.35851 2.67935,4.23364 5.20037,4.23364 2.19599,0 2.63769,-1.74596 1.65845,-4.43783 l -5.5629,0 c -0.57504,-1.58761 -0.17084,-2.50434 1.30426,-2.50434 1.20842,0 2.25849,0.92924 2.50851,1.50011 l 1.28344,0"
inkscape:connector-curvature="0" /><path
id="path84"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 426.8468,128.6249 c 0.35419,1.17926 0.25835,2.271 -1.30009,2.271 -1.17926,0 -2.50851,-1.09174 -2.93771,-2.271 l 4.2378,0 z m 0.48754,-2.02097 c -0.17502,-0.36669 -0.9209,-1.44177 -2.11265,-2.08348 -0.43337,-0.23336 -1.03341,-0.52504 -2.2585,-0.52504 -2.14182,0 -2.82104,1.61678 -2.02098,3.81694 0.86256,2.35851 2.67936,4.23364 5.20037,4.23364 2.196,0 2.6377,-1.74596 1.65845,-4.43783 l -5.56289,0 c -0.57504,-1.58761 -0.17085,-2.50434 1.30425,-2.50434 1.20842,0 2.2585,0.92924 2.50852,1.50011 l 1.28343,0"
inkscape:connector-curvature="0" /><path
id="path86"
style="fill:#004a99;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 434.06399,124.21626 -1.27926,0 1.70428,4.68784 c 0.48338,1.32509 0.35003,1.9918 -0.90423,1.9918 -0.72921,0 -2.17932,-0.46253 -2.93354,-2.52935 l -1.50844,-4.15029 -1.28343,0 2.77521,7.61305 1.20842,0 -0.3917,-1.07508 0.0292,0 c 0.42103,0.40836 1.4586,1.29176 2.7712,1.29176 1.17924,0 2.49184,-0.4792 1.70012,-2.6502 l -1.88764,-5.17953"
inkscape:connector-curvature="0" /><path
id="path88"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 443.26048,158.18537 -4.22113,-7.28803 5.72541,-2.03765 -8.32977,-2.47101 -4.2253,-7.28802 -0.92924,5.76708 -8.33393,-2.46684 7.75889,6.02959 -0.92923,5.76709 5.72541,-2.03765 7.75889,6.02544"
inkscape:connector-curvature="0" /><path
id="path90"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 397.19051,159.41462 -4.22114,-7.2922 5.72124,-2.03764 -8.33393,-2.46684 -4.22113,-7.28803 -0.92091,5.77125 -8.3381,-2.47101 7.75889,6.0296 -0.92922,5.76291 5.72541,-2.04181 7.75889,6.03377"
inkscape:connector-curvature="0" /><path
id="path92"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 468.65397,133.95029 -7.76306,-6.02544 -5.72541,2.03765 0.9334,-5.76707 -7.75889,-6.02546 8.3381,2.46685 0.91673,-5.76709 4.22114,7.28805 8.33394,2.46684 -5.72542,2.03764 4.22947,7.28803"
inkscape:connector-curvature="0" /><path
id="path94"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 466.72467,93.780716 -7.76306,-6.025437 -5.72541,2.037647 0.92924,-5.767075 -7.75473,-6.029603 8.33393,2.471013 0.92923,-5.767085 4.22114,7.283852 8.32559,2.471013 -5.72124,2.037646 4.22531,7.288029"
inkscape:connector-curvature="0" /><path
id="path96"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 389.03158,31.601246 c 3.01272,8.275595 -1.27509,15.01358 -9.55485,15.01358 0,0 -7.43804,0 -13.51764,0 -2.65019,-7.279696 -8.28392,-22.75164 -10.93412,-30.031326 6.08378,0 13.51764,0 13.51764,0 8.28394,0 17.47209,6.737985 20.48897,15.017746 z M 344.31587,4.7743133 c -3.47942,0 -5.27121,2.6460277 -4.00445,5.9045927 l 15.96365,43.861485 c 0.85005,2.333504 3.06688,3.887779 5.54623,3.887779 l 19.80559,0 c 7.42553,0 13.57597,-2.946043 17.32207,-8.296427 3.92945,-5.612901 4.5795,-13.238451 1.7793,-20.930672 C 395.58622,15.075055 380.66848,4.7743133 366.40496,4.7743133 l -22.08909,0 z M 423.4799,46.614826 c -1.39594,-3.82944 -2.88355,-7.913075 -5.75459,-15.805309 7.35887,0 22.13076,0 22.13076,0 4.35864,0 9.19233,3.546091 10.77994,7.904743 1.58761,4.354475 -0.66671,7.900566 -5.02536,7.900566 0,0 -14.7719,0 -22.13075,0 z m -9.68404,7.925565 c 0.8459,2.333504 3.0669,3.887779 5.54624,3.887779 l 28.54788,0 c 5.49206,0 10.25907,-2.308497 13.07594,-6.329618 1.77096,-2.529351 2.67102,-5.575404 2.67102,-8.83397 0,-2.208495 -0.41669,-4.516992 -1.25425,-6.825488 -3.66277,-10.059056 -14.52605,-17.942957 -24.72678,-17.942957 0,0 -18.36381,0 -24.41008,0 l -2.82105,-7.817231 c -1.26674,-3.258565 -5.11286,-5.9045927 -8.59228,-5.9045927 -3.47524,0 -5.26704,2.6460277 -4.00028,5.9045927 l 15.96364,43.861485 z m -67.36317,3.896111 c 3.26273,0 4.94619,-2.646018 3.7586,-5.90875 -1.18759,-3.258575 -4.79201,-5.904593 -8.05474,-5.904593 l -33.69826,-0.0087 c -0.69588,-1.908471 -1.82096,-5.000364 -3.31274,-9.100654 l 33.6941,0.0039 c 3.26273,0 4.94618,-2.646027 3.7586,-5.908759 -1.18759,-3.262896 -4.79202,-5.904758 -8.05475,-5.904758 l -33.69825,0 c -1.25843,-3.458578 -2.321,-6.387955 -3.31274,-9.10482 l 33.69825,0 c 3.25857,0 4.94203,-2.646028 3.75444,-5.90876 -1.18759,-3.2627317 -4.79201,-5.904593 -8.05475,-5.904593 l -40.11538,-0.01247 c -3.47941,0 -5.27121,2.6460276 -4.00446,5.904593 l 15.96365,43.861649 c 0.85006,2.333504 3.06689,3.887779 5.5504,3.887779 l 42.12803,0.0087"
inkscape:connector-curvature="0" /><path
id="path98"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 281.81555,-13.264478 -7.71722,0 3.80444,10.4590846 7.61721,0 -0.45837,-1.2542567 -6.20044,0 -1.16675,-3.2043975 5.72124,0 -0.4542,-1.2500895 -5.72124,0 -1.27509,-3.4960839 6.30878,0 -0.45836,-1.254257"
inkscape:connector-curvature="0" /><path
id="path100"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 287.96183,-13.264478 0.40002,1.108413 -0.0166,0.02916 c -0.86257,-0.887397 -1.68763,-1.354098 -2.90855,-1.354098 -1.12508,0 -2.2835,0.537539 -1.62095,2.358503 l 1.99598,5.4753936 1.27926,0 -1.83764,-5.0545296 c -0.45836,-1.250091 0.0292,-1.670954 0.86257,-1.670954 1.61678,0 2.61269,1.425102 3.01688,2.5335153 l 1.52511,4.1919683 1.28342,0 -2.77102,-7.6172146 -1.20842,0"
inkscape:connector-curvature="0" /><path
id="path102"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 292.03712,-13.264478 -1.27927,0 2.77104,7.6172132 1.20842,0 -0.46253,-1.270924 0.0292,0 c 0.83339,0.8917307 1.72096,1.4876072 2.68353,1.4876072 0.15835,0 0.22502,-0.012499 0.31669,-0.041673 l -0.4832,-1.3250951 -0.47921,0 c -1.19591,0 -2.29183,-0.9334007 -2.69185,-2.0376463 l -1.61262,-4.429485"
inkscape:connector-curvature="0" /><path
id="path104"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 298.35007,-12.360247 c 1.83763,0 2.90437,1.891803 3.27523,2.9127092 0.37086,1.01674 0.67922,2.9127097 -1.15425,2.9127097 -1.83346,0 -2.90437,-1.8959697 -3.27523,-2.9127097 -0.37086,-1.0209062 -0.67922,-2.9127092 1.15425,-2.9127092 z m 2.52518,6.9296654 c 2.42935,0 2.79187,-2.0501482 2.07515,-4.0169562 -0.71672,-1.9668082 -2.57101,-4.0211222 -5.00036,-4.0211222 -2.43351,0 -2.79186,2.054314 -2.07931,4.0211222 0.71671,1.966808 2.57101,4.0169562 5.00452,4.0169562"
inkscape:connector-curvature="0" /><path
id="path106"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 306.03395,-12.372748 c 1.4001,0 2.51269,1.266758 3.12523,2.9377111 0.35419,0.9792372 0.93756,2.8585396 -1.04591,2.8585396 -1.85013,0 -2.77937,-2.0001444 -3.2294,-3.237733 -0.73755,-2.0209787 0.33336,-2.5585177 1.15008,-2.5585177 z m -0.85839,6.7254832 1.20842,0 -0.39169,-1.0792437 0.0292,0 c 0.46687,0.4375317 1.3586,1.2959269 2.74204,1.2959269 2.02513,0 2.57101,-1.658453 1.79179,-3.8002731 -0.66255,-1.8167983 -2.30433,-4.2503053 -4.89618,-4.2503053 -1.01674,0 -1.51262,0.4792 -1.65012,1.020906 l -0.0292,0 -1.39176,-3.81694 -1.27926,0 3.86694,10.6299292"
inkscape:connector-curvature="0" /><path
id="path108"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 316.94307,-8.8516613 c 0.35419,1.1792511 0.25835,2.275164 -1.3001,2.275164 -1.17924,0 -2.50851,-1.0959129 -2.93771,-2.275164 l 4.23781,0 z m 0.48337,-2.0251457 c -0.17501,-0.362526 -0.91673,-1.437603 -2.10849,-2.079316 -0.43753,-0.23335 -1.03757,-0.525037 -2.26266,-0.525037 -2.13765,0 -2.81687,1.616782 -2.01681,3.81694 0.8584,2.3585032 2.67936,4.2336384 5.19621,4.2336384 2.20015,0 2.64185,-1.7459595 1.65845,-4.441986 l -5.55874,0 c -0.5792,-1.5834474 -0.17084,-2.5001804 1.3001,-2.5001804 1.20842,0 2.26266,0.929234 2.51268,1.495941 l 1.27926,0"
inkscape:connector-curvature="0" /><path
id="path110"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 323.7394,-9.3766986 c -0.26253,-0.1583448 -0.62505,-0.2750205 -2.2835,-0.4792018 -0.65839,-0.087503 -1.73347,-0.2750196 -2.08349,-1.2375886 -0.30002,-0.829226 -0.0583,-1.325095 0.90007,-1.325095 1.19592,0 2.64186,0.770889 3.01271,1.791795 l 0.45421,1.2500904 z m -4.17531,1.416768 c 0.72089,1.8167977 2.19182,2.529349 4.06696,2.529349 0.61255,0 2.7627,-0.1708458 2.05431,-2.1251529 l -1.59594,-4.3836485 c -0.11668,-0.31669 -0.004,-0.450033 0.25835,-0.450033 0.11668,0 0.28752,0.02917 0.4417,0.05834 l -0.33752,-0.9334 c -0.24169,-0.05834 -0.46253,-0.145844 -0.75423,-0.145844 -1.13341,0 -1.09591,0.583375 -0.92923,1.16675 -0.69172,-0.541705 -1.71679,-1.237588 -3.20023,-1.237588 -1.4001,0 -2.06681,0.887563 -1.59178,2.200157 0.23335,0.637547 0.96673,2.1251529 3.18773,2.3876725 l 2.20433,0.2583514 c 0.31669,0.03334 0.72504,0.1458439 1.00006,0.9042315 0.29169,0.8042251 -0.13334,1.2375895 -1.34176,1.2375895 -1.45426,0 -1.98348,-0.8875643 -2.28349,-1.4667726 l -1.17926,0"
inkscape:connector-curvature="0" /><path
id="path112"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 331.46912,-13.264478 -1.28343,0 1.70846,4.6878363 c 0.48336,1.325095 0.35002,2.0001444 -0.90423,2.0001444 -0.72923,0 -2.17933,-0.4708672 -2.92939,-2.5376826 l -1.5126,-4.1502981 -1.28342,0 2.77519,7.6172132 1.20842,0 -0.39169,-1.0792437 0.0292,0 c 0.4252,0.4083626 1.45861,1.2959269 2.7712,1.2959269 1.17926,0 2.48768,-0.4792018 1.70013,-2.6501911 l -1.88764,-5.1837053"
inkscape:connector-curvature="0" /><path
id="path114"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 339.34885,-11.456015 2.12515,0 c 1.77929,0 3.02522,1.791795 3.65443,3.5085853 1.12091,3.0877218 -0.25835,3.3335731 -1.19175,3.3335731 l -2.09599,0 -2.49184,-6.8421584 z m 1.00841,8.6506216 4.61699,0 c 3.52109,0 3.15856,-3.0002152 2.43767,-4.9836915 -0.81671,-2.2418271 -2.87937,-5.4753931 -6.33378,-5.4753931 l -4.52532,0 3.80444,10.4590846"
inkscape:connector-curvature="0" /><path
id="path116"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 352.72898,-8.6183109 c 0.34168,1.2542568 -0.32086,1.6292838 -0.97924,1.6292838 -0.9584,0 -1.69179,-0.6125448 -2.17933,-1.6292838 l 3.15857,0 z m 1.14591,-2.3710041 c -1.21675,-1.866801 -2.98355,-2.479345 -4.30864,-2.479345 -2.18349,0 -3.47525,1.050076 -2.31683,4.2378053 0.34168,0.9333998 1.75012,3.9169478 5.14203,3.9169478 1.52928,0 3.37525,-0.7250522 2.08766,-4.2628066 l -0.13335,-0.3666924 -5.31705,0 c -0.15418,-0.5833761 -0.51253,-1.8918031 1.13342,-1.8918031 0.56671,0 1.25425,0.291687 1.61678,0.845894 l 2.09598,0"
inkscape:connector-curvature="0" /><path
id="path118"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 365.0632,-13.264478 -2.04181,0 1.71262,4.7045045 c 0.42086,1.1500829 0.05,1.5292763 -0.55004,1.5292763 -1.01674,0 -1.62512,-0.6708812 -1.95848,-1.5876137 l -1.69178,-4.6461671 -2.03765,0 1.69595,4.6628344 c 0.23752,0.6542139 0.57087,1.5709464 -0.65004,1.5709464 -0.96257,0 -1.51262,-0.6708812 -1.82097,-1.5126081 l -1.71679,-4.7211727 -2.03765,0 2.82104,7.7505562 1.95014,0 -0.41253,-1.1375811 0.0292,0 c 0.44586,0.50837 1.31676,1.337596 2.6877,1.337596 1.11674,0 1.47927,-0.4041962 1.70011,-1.2334222 0.40004,0.3750271 1.28343,1.2334222 2.52102,1.2334222 1.51261,0 2.371,-0.8875643 1.75012,-2.5918527 l -1.95013,-5.3587184"
inkscape:connector-curvature="0" /><path
id="path120"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 372.19288,-7.0306972 c -1.57095,0 -2.36267,-1.3667651 -2.72103,-2.3585023 -0.36253,-0.9917385 -0.56671,-2.3585035 1.00424,-2.3585035 1.57511,0 2.36267,1.366765 2.72103,2.3585035 0.36252,0.9917372 0.57087,2.3585023 -1.00424,2.3585023 z m -2.34184,-6.4379628 c -2.08349,0 -3.49609,1.283425 -2.47518,4.0794605 1.01674,2.796034 3.36274,4.0752926 5.44206,4.0752926 2.08348,0 3.49609,-1.2792586 2.47935,-4.0752926 -1.01674,-2.7960355 -3.36274,-4.0794605 -5.44623,-4.0794605"
inkscape:connector-curvature="0" /><path
id="path122"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 382.50195,-10.439275 c -0.36669,-0.800058 -1.8043,-3.029385 -4.642,-3.029385 -2.91271,0 -2.77104,2.229327 -2.17932,3.8627783 0.91256,2.5001789 2.65852,4.2919748 5.27955,4.2919748 1.22092,0 3.02937,-0.5500401 2.33766,-2.971047 l -2.06681,0 c 0.1,0.5125372 0.0709,1.3125941 -0.8959,1.2542567 -1.28342,0 -2.08349,-1.2792586 -2.43352,-2.2418276 -0.30834,-0.8458942 -0.88755,-2.5210142 0.65422,-2.5210142 1.03341,0 1.74596,0.991738 1.8793,1.354264 l 2.06682,0"
inkscape:connector-curvature="0" /><path
id="path124"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 385.19381,-5.5139218 1.95431,0 -0.48754,-1.3417623 0.0292,0 c 0.70839,0.7875559 1.44593,1.5417772 2.68353,1.5417772 0.13334,0 0.25835,-0.012499 0.38336,-0.029164 l -0.75006,-2.0668145 c -0.16668,0.029164 -0.38336,0.029164 -0.57087,0.029164 -1.58762,0 -2.24183,-0.9917381 -2.55435,-1.8501323 l -1.46677,-4.0336233 -2.03765,0 2.81687,7.7505562"
inkscape:connector-curvature="0" /><path
id="path126"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 393.19855,-9.489207 c -0.26251,-0.1625121 -0.64588,-0.2916878 -1.53761,-0.4250307 -0.80422,-0.1291753 -1.50011,-0.3208563 -1.80846,-1.1625833 -0.25836,-0.716718 0.21668,-0.9334 0.60838,-0.9334 0.90423,0 2.03348,0.583375 2.37516,1.529276 l 0.36253,0.991738 z m 1.17508,-2.258496 c -0.33752,-0.9209 -0.20418,-1.120914 0.009,-1.20842 l -0.1125,-0.308355 -2.19599,0 c 0.0166,0.366692 0.0292,0.479201 0.14584,0.9209 -0.64171,-0.483369 -1.52928,-1.125082 -2.9127,-1.125082 -1.16676,0 -2.121,0.658381 -1.53762,2.258496 0.55004,1.5167758 1.7918,2.2876644 3.15439,2.4751774 l 1.93764,0.2791869 c 0.33753,0.041673 0.77923,0.1708458 0.93757,0.6083775 0.31252,0.8583951 -0.48753,0.9042315 -1.01257,0.9042315 -1.02091,0 -1.42094,-0.6250447 -1.64596,-1.0792446 l -1.96263,0 c 1.09591,2.3751705 2.86271,2.7085284 4.45032,2.7085284 1.09174,0 2.96271,-0.3333579 2.27099,-2.2418276 L 394.374,-11.747703"
inkscape:connector-curvature="0" /><path
id="path128"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 400.23655,-5.5139218 1.26676,0 -0.5292,-1.458438 -1.26676,0 -1.53344,-4.2086362 c -0.16252,-0.450032 -0.21251,-0.625044 0.61671,-0.625044 0.13334,0 0.28335,0.0125 0.43336,0.02916 l -0.56253,-1.545778 c -0.32503,-0.0125 -0.65006,-0.02917 -0.97091,-0.02917 l -0.26252,0 c -1.75845,0 -1.83763,0.675049 -1.47094,1.675121 l 1.71263,4.7045044 -1.05008,0 0.52921,1.4584381 1.05007,0 0.76255,2.0959836 2.03765,0 -0.76256,-2.0959836"
inkscape:connector-curvature="0" /><path
id="path130"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 404.72021,-4.5971893 -2.03764,0 0.68755,1.8918034 2.04181,0 -0.69172,-1.8918034 z m -0.33335,-0.9167325 -2.82104,-7.7505562 -2.03765,0 2.82104,7.7505562 2.03765,0"
inkscape:connector-curvature="0" /><path
id="path132"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 410.70814,-10.439275 c -0.36669,-0.800058 -1.80429,-3.029385 -4.642,-3.029385 -2.91271,0 -2.77103,2.229327 -2.17932,3.8627783 0.91256,2.5001789 2.65852,4.2919748 5.27955,4.2919748 1.22092,0 3.02938,-0.5500401 2.34183,-2.971047 l -2.07098,0 c 0.1,0.5125372 0.0709,1.3125941 -0.90006,1.2542567 -1.27926,0 -2.07932,-1.2792586 -2.42934,-2.2418276 -0.30836,-0.8458942 -0.88757,-2.5210142 0.65421,-2.5210142 1.0334,0 1.74595,0.991738 1.87929,1.354264 l 2.06682,0"
inkscape:connector-curvature="0" /><path
id="path134"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 417.90033,-7.643241 2.80853,0 c 1.26676,0 2.296,0.4666999 2.80854,1.8793015 0.48337,1.325095 -0.26669,1.7459585 -1.42927,1.7459585 l -2.87104,0 -1.31676,-3.62526 z m -2.04598,-5.621237 -1.4126,0 3.80443,10.4590846 4.70034,0 c 1.93765,0 2.65019,-1.2542567 2.03348,-2.9418779 -0.5292,-1.458438 -1.95848,-3.10439 -4.22947,-3.10439 l -3.2919,0 -1.60428,-4.4128167"
inkscape:connector-curvature="0" /><path
id="path136"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 428.81777,-9.3766986 c -0.26251,-0.1583448 -0.62503,-0.2750205 -2.28766,-0.4792018 -0.65838,-0.087503 -1.72929,-0.2750196 -2.07931,-1.2375886 -0.30003,-0.829226 -0.0625,-1.325095 0.90006,-1.325095 1.19592,0 2.64185,0.770889 3.01272,1.791795 l 0.45419,1.2500904 z m -4.17529,1.416768 c 0.72088,1.8167977 2.19182,2.529349 4.06696,2.529349 0.61254,0 2.76269,-0.1708458 2.05431,-2.1251529 l -1.59595,-4.3836485 c -0.12084,-0.31669 -0.004,-0.450033 0.25835,-0.450033 0.11252,0 0.28752,0.02917 0.4417,0.05834 l -0.34169,-0.9334 c -0.23751,-0.05834 -0.45837,-0.145844 -0.75005,-0.145844 -1.13758,0 -1.10009,0.583375 -0.92924,1.16675 -0.69171,-0.541705 -1.71679,-1.237588 -3.20439,-1.237588 -1.39594,0 -2.06265,0.887563 -1.58762,2.200157 0.23335,0.637547 0.96257,2.1251529 3.18357,2.3876725 l 2.20849,0.2583514 c 0.31669,0.03334 0.72505,0.1458439 1.00007,0.9042315 0.29169,0.8042251 -0.13335,1.2375895 -1.34177,1.2375895 -1.45427,0 -1.98347,-0.8875643 -2.28349,-1.4667726 l -1.17925,0"
inkscape:connector-curvature="0" /><path
id="path138"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 431.80132,-13.264478 -1.28342,0 2.7752,7.6172132 1.20842,0 -0.46254,-1.270924 0.0292,0 c 0.82939,0.8917307 1.72112,1.4876072 2.67952,1.4876072 0.15835,0 0.22918,-0.012499 0.32085,-0.041673 l -0.48336,-1.3250951 -0.4792,0 c -1.19593,0 -2.29184,-0.9334007 -2.69603,-2.0376463 l -1.60845,-4.429485"
inkscape:connector-curvature="0" /><path
id="path140"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 439.21853,-6.7098402 -1.80014,-4.9503558 c -0.21668,-0.595877 0.29169,-0.595877 0.55421,-0.595877 l 0.45003,0 -0.36252,-1.008405 c -0.48337,-0.04167 -0.86673,-0.100008 -1.00007,-0.100008 -1.26676,0 -1.28343,0.712552 -0.95007,1.629284 l 1.8293,5.0253618 -1.03342,0 0.38754,1.0625754 1.03341,0 0.77088,2.1251529 1.28343,0 -0.77506,-2.1251529 1.22509,0 -0.38753,-1.0625754 -1.22508,0"
inkscape:connector-curvature="0" /><path
id="path142"
style="fill:#f58113;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 446.33571,-5.6472648 1.4126,0 c -1.79596,-2.4918452 -3.57526,-4.9795242 -5.45873,-7.4713692 -2.32934,-3.083556 -2.52519,-3.262735 -4.17114,-3.262735 -0.19168,0 -0.31251,0.05834 -0.49586,0.116675 l 0.42502,1.166751 c 0.13752,-0.05834 0.37503,-0.129176 0.7209,-0.129176 0.67087,0 0.81255,0.187513 1.99597,1.758459 l 0.0209,7.8213952 1.45844,0 -0.23335,-6.2046122 0.0292,0 4.29614,6.2046122"
inkscape:connector-curvature="0" /></g></g></svg>

After

Width:  |  Height:  |  Size: 36 KiB

102
src/assets/svg/egp-logo.svg Normal file
View file

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 612.79999 319.77332"
height="319.77332"
width="612.79999"
xml:space="preserve"
id="svg2"
version="1.1"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs6" /><g
transform="matrix(1.3333333,0,0,-1.3333333,0,319.77333)"
id="g10"><g
transform="scale(0.1)"
id="g12"><path
id="path14"
style="fill:#4fbc4f;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 4004.16,986.281 591.891,591.93 V 2398.34 H 4004.16 V 986.281" /><path
id="path16"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2335.62,1672.39 c -2.33,2.32 -3.48,6.01 -3.48,11.06 v 225.93 c 0,5.05 1.15,8.7 3.48,10.96 2.32,2.25 6.01,3.38 11.06,3.38 h 133.34 c 3.82,0 6.59,-1.44 8.3,-4.3 1.7,-2.87 2.56,-7.52 2.56,-13.94 v -11.05 c 0,-6.43 -0.86,-11.06 -2.56,-13.93 -1.71,-2.87 -4.48,-4.3 -8.3,-4.3 h -91.76 v -52.85 h 81.93 c 3.83,0 6.59,-1.43 8.3,-4.3 1.7,-2.87 2.56,-7.51 2.56,-13.92 v -11.27 c 0,-6.42 -0.86,-11.06 -2.56,-13.93 -1.71,-2.87 -4.47,-4.3 -8.3,-4.3 h -81.93 v -58.99 h 91.97 c 3.82,0 6.59,-1.44 8.3,-4.3 1.7,-2.87 2.56,-7.45 2.56,-13.73 v -11.47 c 0,-6.42 -0.86,-11.06 -2.56,-13.93 -1.71,-2.86 -4.48,-4.3 -8.3,-4.3 h -133.55 c -5.05,0 -8.74,1.16 -11.06,3.48" /><path
id="path18"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2537.09,1680.28 c -8.74,9.63 -13.11,24.54 -13.11,44.76 v 123.51 c 0,3.81 1.77,6.68 5.33,8.59 3.54,1.92 9.07,2.88 16.59,2.88 h 10.03 c 7.51,0 13.04,-0.96 16.59,-2.88 3.56,-1.91 5.32,-4.78 5.32,-8.59 v -115.32 c 0,-7.52 1.71,-13.18 5.13,-17 3.41,-3.83 9.01,-5.74 16.8,-5.74 6.69,0 12.52,2.15 17.51,6.46 4.98,4.3 8.84,9.18 11.57,14.64 v 116.96 c 0,3.81 1.78,6.68 5.32,8.59 3.56,1.92 9.08,2.88 16.59,2.88 h 10.04 c 7.51,0 13.04,-0.96 16.59,-2.88 3.55,-1.91 5.33,-4.78 5.33,-8.59 v -115.32 c 0,-11.47 0.31,-20.46 0.92,-26.93 0.62,-6.49 1.4,-12.54 2.36,-18.13 0.68,-3.69 1.02,-6.28 1.02,-7.79 0,-2.73 -2.53,-4.98 -7.57,-6.75 -5.06,-1.78 -10.83,-3.08 -17.32,-3.9 -6.48,-0.82 -11.71,-1.23 -15.66,-1.23 -4.38,0 -7.48,1.75 -9.33,5.23 -1.84,3.48 -3.31,8.43 -4.39,14.84 l -1.03,5.13 c -5.74,-7.79 -13.42,-14.38 -23.05,-19.77 -9.62,-5.39 -19.97,-8.09 -31.03,-8.09 -18.29,0 -31.82,4.82 -40.55,14.44" /><path
id="path20"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2725.89,1679.77 v 115.52 c 0,17.48 -1.16,32.02 -3.48,43.63 -0.69,3.69 -1.02,6.28 -1.02,7.78 0,2.73 2.56,4.95 7.67,6.66 5.13,1.71 10.93,2.97 17.42,3.78 6.48,0.82 11.71,1.24 15.67,1.24 4.23,0 7.2,-1.58 8.91,-4.72 1.71,-3.14 3.24,-7.71 4.61,-13.72 l 1.23,-5.32 c 4.64,8.46 10,15.19 16.07,20.17 6.08,4.99 13.9,7.48 23.46,7.48 7.91,0 13.38,-2.02 16.38,-6.04 3,-4.03 4.51,-8.58 4.51,-13.62 0,-2.74 -0.48,-6.59 -1.44,-11.58 -0.96,-4.98 -2.32,-9.39 -4.09,-13.21 -1.78,-3.82 -3.76,-5.73 -5.95,-5.73 -1.5,0 -3.75,0.41 -6.76,1.22 -4.09,1.1 -7.57,1.64 -10.44,1.64 -6.69,0 -12.52,-1.88 -17.51,-5.63 -4.99,-3.76 -8.77,-7.96 -11.37,-12.59 v -116.96 c 0,-7.65 -7.38,-11.47 -22.12,-11.47 h -10.04 c -14.47,0 -21.71,3.82 -21.71,11.47" /><path
id="path22"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2964.17,1722.57 c 5.39,9.29 8.1,23.22 8.1,41.79 0,18.44 -2.71,32.29 -8.1,41.58 -5.39,9.29 -13.83,13.93 -25.29,13.93 -22.67,0 -34,-18.51 -34,-55.51 0,-18.43 2.76,-32.33 8.3,-41.68 5.52,-9.35 14.09,-14.03 25.7,-14.03 11.46,0 19.9,4.64 25.29,13.92 z m -91.14,-31.33 c -15.1,16.93 -22.64,41.3 -22.64,73.12 0,31.68 7.54,55.92 22.64,72.71 15.09,16.8 37.03,25.2 65.85,25.2 28.81,0 50.69,-8.37 65.64,-25.09 14.95,-16.73 22.44,-41 22.44,-72.82 0,-31.82 -7.49,-56.19 -22.44,-73.12 -14.95,-16.94 -36.83,-25.4 -65.64,-25.4 -28.82,0 -50.76,8.46 -65.85,25.4" /><path
id="path24"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3175.52,1763.95 c 0,36.18 -9.76,54.28 -29.29,54.28 -11.46,0 -21.5,-7.17 -30.1,-21.5 v -81.12 c 8.46,-4.64 17,-6.96 25.6,-6.96 22.53,0 33.79,18.43 33.79,55.3 z m -107.73,-167.24 c -3.56,1.98 -5.33,4.96 -5.33,8.91 v 189.67 c 0,10.92 -0.31,19.49 -0.92,25.71 -0.62,6.21 -1.4,12.18 -2.36,17.92 -0.68,3.69 -1.02,6.28 -1.02,7.78 0,2.73 2.53,4.95 7.57,6.66 5.05,1.71 10.82,2.97 17.32,3.78 6.48,0.82 11.7,1.24 15.66,1.24 4.38,0 7.42,-1.61 9.12,-4.82 1.7,-3.21 3.25,-7.81 4.6,-13.82 l 1.03,-4.71 c 4.24,8.05 10.68,14.61 19.35,19.66 8.68,5.05 18.47,7.58 29.4,7.58 13.24,0 24.99,-3.82 35.23,-11.47 10.24,-7.65 18.27,-18.88 24.07,-33.69 5.8,-14.82 8.71,-32.54 8.71,-53.16 0,-19.8 -3.01,-37.07 -9.02,-51.82 -6.01,-14.74 -14.74,-26.15 -26.22,-34.2 -11.47,-8.07 -25.26,-12.09 -41.37,-12.09 -13.79,0 -26.29,3.82 -37.48,11.47 v -71.69 c 0,-3.95 -1.74,-6.93 -5.23,-8.91 -3.48,-1.98 -8.97,-2.96 -16.48,-2.96 h -10.04 c -7.51,0 -13.04,0.98 -16.59,2.96" /><path
id="path26"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3372.29,1782.8 c 0,11.19 -2.19,20.17 -6.57,26.93 -4.36,6.76 -10.91,10.14 -19.65,10.14 -18.03,0 -28.96,-12.36 -32.78,-37.07 z m -91.16,-91.25 c -15.7,17.13 -23.55,40.93 -23.55,71.38 0,34.27 7.85,59.4 23.55,75.37 15.71,15.98 37.35,23.97 64.94,23.97 18.29,0 33.28,-4.17 44.96,-12.5 11.67,-8.33 20.2,-19.52 25.59,-33.59 5.4,-14.06 8.1,-29.97 8.1,-47.72 0,-2.05 -1.2,-4.78 -3.59,-8.19 -2.39,-3.42 -5.08,-6.49 -8.09,-9.22 -3,-2.74 -5.32,-4.1 -6.96,-4.1 h -92.79 c 1.23,-13.93 5.36,-23.79 12.4,-29.59 7.03,-5.81 16.82,-8.71 29.39,-8.71 6.83,0 13.01,0.78 18.54,2.35 5.52,1.57 11.43,3.66 17.71,6.25 3.82,1.77 6.42,2.66 7.78,2.66 2.46,0 5.16,-1.73 8.1,-5.22 2.93,-3.48 5.46,-7.48 7.58,-11.98 2.11,-4.5 3.17,-7.99 3.17,-10.45 0,-5.6 -3.79,-10.37 -11.37,-14.33 -7.57,-3.97 -16.52,-6.98 -26.83,-9.02 -10.31,-2.05 -19.36,-3.07 -27.14,-3.07 -31.95,0 -55.78,8.57 -71.49,25.71" /><path
id="path28"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3537.82,1715.1 c 6.01,4.3 10.51,9.8 13.52,16.49 v 20.07 c -34,0 -51.01,-8.94 -51.01,-26.83 0,-4.78 1.61,-8.67 4.82,-11.67 3.21,-3.01 7.68,-4.51 13.42,-4.51 6.82,0 13.24,2.15 19.25,6.45 z m -77.94,-34.62 c -8.67,9.77 -13,22.7 -13,38.82 0,12.15 2.53,23.11 7.58,32.88 5.04,9.75 15.29,17.98 30.72,24.68 15.43,6.69 37.48,10.03 66.16,10.03 v 12.09 c 0,7.1 -2.26,12.36 -6.76,15.77 -4.51,3.41 -11.68,5.12 -21.51,5.12 -8.19,0 -15.23,-0.85 -21.1,-2.56 -5.86,-1.71 -12.21,-4 -19.05,-6.86 -3.54,-1.64 -5.73,-2.46 -6.55,-2.46 -2.45,0 -5.16,1.84 -8.09,5.53 -2.94,3.68 -5.49,7.92 -7.68,12.7 -2.19,4.78 -3.27,8.4 -3.27,10.85 0,4.23 3.03,8.3 9.11,12.19 6.07,3.89 14.44,7.03 25.09,9.42 10.65,2.39 22.46,3.59 35.44,3.59 27.3,0 47.17,-5.43 59.59,-16.29 12.44,-10.85 18.65,-25.7 18.65,-44.55 v -68.2 c 0,-11.34 0.3,-20.15 0.92,-26.43 0.61,-6.28 1.47,-12.49 2.56,-18.63 0.68,-3.69 1.02,-6.28 1.02,-7.79 0,-2.73 -2.56,-4.98 -7.68,-6.75 -5.11,-1.78 -10.95,-3.08 -17.51,-3.9 -6.56,-0.82 -11.81,-1.23 -15.77,-1.23 -4.24,0 -7.27,1.81 -9.12,5.43 -1.83,3.62 -3.31,8.57 -4.4,14.85 -0.14,0.82 -0.28,1.64 -0.41,2.46 -0.14,0.82 -0.35,1.64 -0.62,2.46 -1.36,-2.6 -4.27,-6.08 -8.7,-10.45 -4.43,-4.37 -10.48,-8.36 -18.12,-11.98 -7.65,-3.62 -16.53,-5.43 -26.64,-5.43 -18.57,0 -32.18,4.88 -40.86,14.64" /><path
id="path30"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3648.12,1679.77 v 115.52 c 0,17.48 -1.16,32.02 -3.48,43.63 -0.69,3.69 -1.02,6.28 -1.02,7.78 0,2.73 2.55,4.95 7.67,6.66 5.13,1.71 10.93,2.97 17.41,3.78 6.49,0.82 11.71,1.24 15.68,1.24 4.23,0 7.19,-1.58 8.9,-4.72 1.71,-3.14 3.25,-7.71 4.61,-13.72 l 1.23,-5.32 c 5.74,7.64 13.41,14.16 23.04,19.56 9.63,5.39 19.97,8.09 31.04,8.09 18.29,0 31.81,-4.78 40.55,-14.34 8.73,-9.56 13.11,-24.37 13.11,-44.45 v -123.71 c 0,-7.65 -7.38,-11.47 -22.12,-11.47 h -10.04 c -14.47,0 -21.71,3.82 -21.71,11.47 v 115.52 c 0,7.37 -1.74,12.98 -5.22,16.8 -3.49,3.82 -9.12,5.73 -16.9,5.73 -6.56,0 -12.36,-2.18 -17.41,-6.55 -5.06,-4.38 -8.88,-9.22 -11.48,-14.54 v -116.96 c 0,-7.65 -7.37,-11.47 -22.11,-11.47 h -10.04 c -14.48,0 -21.71,3.82 -21.71,11.47" /><path
id="path32"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2350.01,1393.18 c -19.46,21.31 -29.19,54.41 -29.19,99.35 0,86.43 40.56,129.65 121.67,129.65 11.06,0 22.7,-1.1 34.92,-3.28 12.22,-2.19 22.43,-5.22 30.62,-9.12 8.19,-3.89 12.29,-8.22 12.29,-12.99 0,-3.42 -1.36,-7.9 -4.1,-13.42 -2.73,-5.53 -5.93,-10.42 -9.63,-14.65 -3.68,-4.23 -6.96,-6.35 -9.82,-6.35 -0.82,0 -2.8,0.68 -5.95,2.05 -6.82,2.72 -13.99,5.02 -21.5,6.86 -7.51,1.84 -16.8,2.76 -27.85,2.76 -21.45,0 -37.32,-6.79 -47.63,-20.37 -10.31,-13.6 -15.46,-34.11 -15.46,-61.55 0,-27.46 5.19,-48.14 15.57,-62.07 10.37,-13.93 25.94,-20.89 46.7,-20.89 10.5,0 20,0.89 28.46,2.66 v 46.09 h -32.15 c -3.82,0 -6.6,1.43 -8.3,4.3 -1.7,2.86 -2.55,7.5 -2.55,13.93 v 11.67 c 0,6.28 0.85,10.86 2.55,13.73 1.7,2.86 4.48,4.3 8.3,4.3 h 73.94 c 5.19,0 8.95,-1.13 11.26,-3.38 2.32,-2.26 3.49,-5.91 3.49,-10.96 v -101.39 c 0,-10.92 -9.15,-18.47 -27.45,-22.63 -18.3,-4.16 -37.48,-6.25 -57.55,-6.25 -40.97,0 -71.18,10.65 -90.64,31.95" /><path
id="path34"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2569,1375.16 v 115.52 c 0,17.48 -1.17,32.02 -3.48,43.63 -0.69,3.69 -1.03,6.27 -1.03,7.79 0,2.72 2.56,4.94 7.68,6.65 5.13,1.71 10.93,2.96 17.41,3.79 6.49,0.82 11.71,1.23 15.68,1.23 4.22,0 7.19,-1.57 8.9,-4.71 1.71,-3.15 3.24,-7.72 4.61,-13.73 l 1.23,-5.32 c 4.64,8.46 10,15.18 16.08,20.17 6.07,4.98 13.89,7.48 23.45,7.48 7.91,0 13.38,-2.02 16.39,-6.04 3,-4.03 4.5,-8.58 4.5,-13.62 0,-2.74 -0.48,-6.6 -1.43,-11.58 -0.96,-4.99 -2.33,-9.39 -4.1,-13.21 -1.77,-3.82 -3.76,-5.73 -5.94,-5.73 -1.51,0 -3.75,0.41 -6.76,1.23 -4.09,1.08 -7.58,1.64 -10.44,1.64 -6.7,0 -12.53,-1.89 -17.52,-5.64 -4.98,-3.76 -8.77,-7.96 -11.37,-12.59 v -116.96 c 0,-7.65 -7.37,-11.47 -22.12,-11.47 h -10.03 c -14.48,0 -21.71,3.82 -21.71,11.47" /><path
id="path36"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2808.63,1478.19 c 0,11.19 -2.18,20.18 -6.56,26.94 -4.36,6.75 -10.92,10.13 -19.66,10.13 -18.02,0 -28.95,-12.36 -32.77,-37.07 z m -91.15,-91.25 c -15.7,17.13 -23.55,40.93 -23.55,71.38 0,34.27 7.85,59.4 23.55,75.38 15.71,15.98 37.35,23.96 64.93,23.96 18.3,0 33.29,-4.17 44.97,-12.5 11.67,-8.33 20.2,-19.53 25.59,-33.59 5.4,-14.06 8.1,-29.97 8.1,-47.73 0,-2.04 -1.2,-4.77 -3.59,-8.19 -2.39,-3.41 -5.09,-6.48 -8.09,-9.21 -3,-2.73 -5.33,-4.1 -6.97,-4.1 h -92.78 c 1.23,-13.93 5.36,-23.79 12.39,-29.6 7.03,-5.8 16.83,-8.7 29.4,-8.7 6.82,0 13.01,0.78 18.53,2.35 5.53,1.57 11.44,3.66 17.72,6.25 3.82,1.77 6.41,2.67 7.78,2.67 2.46,0 5.16,-1.75 8.1,-5.22 2.93,-3.49 5.46,-7.48 7.57,-11.99 2.11,-4.51 3.18,-7.99 3.18,-10.45 0,-5.59 -3.79,-10.38 -11.37,-14.33 -7.58,-3.97 -16.52,-6.97 -26.83,-9.02 -10.32,-2.05 -19.36,-3.07 -27.14,-3.07 -31.96,0 -55.78,8.57 -71.49,25.71" /><path
id="path38"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3002.54,1478.19 c 0,11.19 -2.19,20.18 -6.56,26.94 -4.37,6.75 -10.92,10.13 -19.66,10.13 -18.03,0 -28.95,-12.36 -32.77,-37.07 z m -91.15,-91.25 c -15.7,17.13 -23.56,40.93 -23.56,71.38 0,34.27 7.86,59.4 23.56,75.38 15.7,15.98 37.34,23.96 64.93,23.96 18.29,0 33.28,-4.17 44.96,-12.5 11.67,-8.33 20.21,-19.53 25.6,-33.59 5.4,-14.06 8.09,-29.97 8.09,-47.73 0,-2.04 -1.2,-4.77 -3.58,-8.19 -2.39,-3.41 -5.09,-6.48 -8.1,-9.21 -2.99,-2.73 -5.32,-4.1 -6.96,-4.1 h -92.78 c 1.23,-13.93 5.36,-23.79 12.39,-29.6 7.03,-5.8 16.83,-8.7 29.39,-8.7 6.83,0 13.01,0.78 18.54,2.35 5.53,1.57 11.43,3.66 17.71,6.25 3.82,1.77 6.42,2.67 7.79,2.67 2.46,0 5.15,-1.75 8.09,-5.22 2.93,-3.49 5.46,-7.48 7.58,-11.99 2.11,-4.51 3.18,-7.99 3.18,-10.45 0,-5.59 -3.79,-10.38 -11.37,-14.33 -7.58,-3.97 -16.53,-6.97 -26.84,-9.02 -10.31,-2.05 -19.35,-3.07 -27.14,-3.07 -31.95,0 -55.78,8.57 -71.48,25.71" /><path
id="path40"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3087.86,1375.16 v 115.52 c 0,17.48 -1.16,32.02 -3.47,43.63 -0.7,3.69 -1.03,6.27 -1.03,7.79 0,2.72 2.56,4.94 7.68,6.65 5.12,1.71 10.93,2.96 17.41,3.79 6.48,0.82 11.71,1.23 15.67,1.23 4.23,0 7.2,-1.57 8.91,-4.71 1.71,-3.15 3.24,-7.72 4.61,-13.73 l 1.23,-5.32 c 5.73,7.64 13.41,14.17 23.04,19.56 9.63,5.39 19.97,8.09 31.03,8.09 18.29,0 31.82,-4.78 40.56,-14.34 8.73,-9.56 13.1,-24.38 13.1,-44.44 v -123.72 c 0,-7.65 -7.37,-11.47 -22.12,-11.47 h -10.03 c -14.48,0 -21.71,3.82 -21.71,11.47 v 115.52 c 0,7.37 -1.74,12.97 -5.23,16.8 -3.48,3.82 -9.11,5.73 -16.89,5.73 -6.57,0 -12.37,-2.19 -17.41,-6.55 -5.06,-4.38 -8.88,-9.22 -11.48,-14.54 v -116.96 c 0,-7.65 -7.37,-11.47 -22.12,-11.47 h -10.04 c -14.47,0 -21.71,3.82 -21.71,11.47" /><path
id="path42"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3309.43,1364.3 c -9.29,2.05 -16.97,4.98 -23.04,8.81 -6.08,3.82 -9.11,8.2 -9.11,13.11 0,3.01 1.08,6.76 3.27,11.27 2.19,4.5 4.81,8.42 7.89,11.78 3.07,3.34 5.76,5.02 8.09,5.02 1.23,0 3.89,-0.96 7.98,-2.88 4.78,-2.18 9.36,-3.96 13.72,-5.32 4.38,-1.37 9.36,-2.05 14.96,-2.05 6.97,0 12.22,1.3 15.77,3.89 3.55,2.59 5.33,6.42 5.33,11.47 0,3.82 -1.07,6.99 -3.17,9.52 -2.12,2.53 -4.82,4.61 -8.1,6.25 -3.27,1.64 -7.92,3.62 -13.93,5.94 l -5.93,2.26 c -7.79,2.99 -14.62,6.41 -20.49,10.24 -5.87,3.82 -10.85,9.39 -14.95,16.69 -4.09,7.31 -6.15,16.55 -6.15,27.75 0,12.43 2.7,23.12 8.09,32.06 5.4,8.94 13.08,15.78 23.05,20.48 9.97,4.71 21.71,7.07 35.23,7.07 7.78,0 15.9,-0.75 24.38,-2.25 8.45,-1.51 15.59,-3.83 21.39,-6.96 5.8,-3.15 8.71,-7.11 8.71,-11.89 0,-2.74 -0.86,-6.42 -2.55,-11.06 -1.71,-4.64 -3.79,-8.73 -6.25,-12.29 -2.47,-3.55 -4.79,-5.32 -6.97,-5.32 -0.68,0 -2.6,0.61 -5.74,1.84 -4.23,1.77 -8.29,3.18 -12.19,4.2 -3.88,1.02 -8.36,1.53 -13.41,1.53 -12.84,0 -19.25,-4.23 -19.25,-12.7 0,-3.82 1.19,-7.1 3.58,-9.82 2.39,-2.74 5.36,-4.99 8.92,-6.76 3.54,-1.78 8.52,-3.9 14.95,-6.36 7.37,-3 11.94,-4.91 13.72,-5.73 9.55,-4.78 17.24,-11.09 23.04,-18.95 5.81,-7.85 8.71,-18.33 8.71,-31.44 0,-12.42 -2.81,-23.35 -8.4,-32.77 -5.61,-9.42 -13.8,-16.72 -24.58,-21.92 -10.79,-5.18 -23.62,-7.78 -38.51,-7.78 -9.42,0 -18.78,1.02 -28.06,3.07" /><path
id="path44"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1533.55,2182.88 v 0 c 0.03,-0.07 -6.64,-9.82 -16.88,-26.13 -10.25,-16.31 -24.08,-39.17 -38.36,-65.46 -14.3,-26.29 -29.05,-56 -41.13,-86.01 -12.08,-30.02 -21.49,-60.33 -25.11,-87.8 -3.62,-27.59 -0.98,-49.9 5.02,-67.85 6.01,-17.95 15.37,-31.54 25.19,-41.68 9.82,-10.15 20.1,-16.84 27.93,-20.99 7.82,-4.16 13.2,-5.78 13.22,-5.77 0.02,0 6.25,5.19 15.78,14.7 9.54,9.52 22.38,23.38 35.63,40.74 13.26,17.33 26.92,38.17 38.09,61.65 11.18,23.47 19.87,49.6 23.18,77.5 3.27,27.96 1,54.89 -4.25,79.56 -5.25,24.66 -13.48,47.06 -22.11,65.96 -8.63,18.89 -17.67,34.29 -24.56,44.96 -6.89,10.67 -11.62,16.62 -11.64,16.62" /><path
id="path46"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1063.39,1570.29 c -0.16,-0.02 -0.3,-0.04 -0.44,-0.06 -0.16,-0.02 -0.32,-0.04 -0.45,-0.07 -0.15,-0.02 -0.31,-0.04 -0.45,-0.06 -0.15,-0.02 -0.31,-0.04 -0.46,-0.06 -30.16,-5.06 -61.735,-12.21 -92.231,-20.12 -30.515,-7.91 -59.961,-16.57 -85.925,-24.65 -25.957,-8.07 -48.418,-15.55 -64.961,-21.09 -16.528,-5.54 -27.129,-9.14 -29.36,-9.45 -0.078,-0.02 -0.136,-0.02 -0.183,-0.03 -0.067,0 -0.114,0 -0.145,0.01 -0.035,0 -0.066,0.01 -0.09,0.02 -0.011,0.01 -0.019,0.03 -0.019,0.05 -0.098,-0.45 7.5,-6.99 20.91,-16.3 13.418,-9.29 32.648,-21.35 55.82,-32.79 23.172,-11.46 50.282,-22.31 79.442,-29.19 29.168,-6.9 60.392,-9.82 91.762,-5.42 0.14,0.02 0.28,0.04 0.4,0.05 0.14,0.02 0.28,0.04 0.41,0.06 0.14,0.02 0.28,0.04 0.4,0.06 0.15,0.02 0.29,0.04 0.41,0.06 0.23,0.03 0.45,0.06 0.69,0.09 0.23,0.03 0.45,0.06 0.68,0.09 0.23,0.03 0.45,0.06 0.67,0.09 0.23,0.04 0.46,0.07 0.67,0.1 15.41,2.16 30.02,5.57 43.82,9.89 13.79,4.33 26.75,9.55 38.83,15.35 12.09,5.79 23.3,12.14 33.59,18.71 10.3,6.57 19.68,13.36 28.1,20.01 8.42,6.64 15.88,13.14 22.35,19.17 6.46,6.03 11.94,11.57 16.36,16.3 4.41,4.71 7.78,8.6 10.08,11.32 2.29,2.71 3.51,4.25 3.6,4.26 h 0.01 c 0.02,0.3 -3.18,4.27 -9.87,9.77 -6.71,5.5 -16.94,12.55 -31.04,19 -14.08,6.46 -32.02,12.33 -54.16,15.51 -22.11,3.18 -48.41,3.66 -79.22,-0.68" /><path
id="path48"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1882.96,1769.84 c -0.41,-0.05 -0.81,-0.12 -1.22,-0.18 -0.41,-0.05 -0.81,-0.12 -1.22,-0.19 -0.41,-0.05 -0.81,-0.11 -1.22,-0.18 -0.41,-0.08 -0.81,-0.13 -1.22,-0.2 -31.06,-4.55 -58.85,-14.28 -83.06,-26.34 -24.22,-12.07 -44.87,-26.45 -61.67,-40.26 -16.8,-13.84 -29.75,-27.08 -38.54,-36.89 -8.79,-9.82 -13.44,-16.18 -13.64,-16.21 v 0.02 c -0.06,-0.26 3.25,-4.38 10.22,-10.18 6.97,-5.78 17.59,-13.21 32.16,-20.1 14.57,-6.91 33.09,-13.25 55.86,-16.85 22.76,-3.62 49.77,-4.47 81.31,-0.36 31,4.6 63.11,11.84 93.94,20.1 30.82,8.28 60.36,17.6 86.2,26.36 25.84,8.76 47.97,16.97 63.99,23.05 16.02,6.07 25.93,10 27.32,10.18 0.03,0.02 0.05,0.02 0.06,0.02 h 0.05 c 0.02,0 0.03,0 0.04,0 0.01,-0.02 0.01,-0.02 0.01,-0.03 -0.12,0.74 -8.07,7.69 -21.85,17.46 -13.78,9.78 -33.38,22.35 -56.82,34.29 -23.43,11.92 -50.7,23.22 -79.81,30.45 -29.1,7.23 -60.06,10.39 -90.89,6.04 m 249.37,-88.24 v 0 -0.01 0 0 0.01" /><path
id="path50"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 920.637,1769.86 v 0 -0.02 c 0,-0.01 0,-0.02 0.011,-0.03 0,-0.02 0.008,-0.03 0.02,-0.04 0.008,-0.01 0.02,-0.02 0.02,-0.03 0,0.02 -0.012,0.04 -0.02,0.05 -0.012,0.03 -0.012,0.04 -0.02,0.05 0,0.01 0,0.02 -0.011,0.02 0,0 0,0 0,0 m 0.051,-0.12 c 0.5,-1.11 4.187,-10.04 10.988,-23.4 6.812,-13.36 16.719,-31.15 29.629,-49.98 12.922,-18.86 28.843,-38.77 47.665,-56.36 18.83,-17.59 40.56,-32.86 65.08,-42.41 8.04,-3.16 16.12,-5.61 24.18,-7.43 8.07,-1.81 16.12,-3.02 24.09,-3.7 7.97,-0.68 15.87,-0.82 23.64,-0.55 7.77,0.27 15.4,1 22.84,2.04 7.81,1.1 15.4,2.57 22.71,4.29 7.31,1.74 14.34,3.72 21.03,5.86 6.68,2.15 13.02,4.45 18.93,6.78 5.92,2.32 11.42,4.7 16.43,7.03 5.02,2.3 9.55,4.54 13.53,6.6 3.97,2.06 7.39,3.95 10.19,5.54 2.79,1.61 4.97,2.91 6.45,3.83 1.48,0.91 2.27,1.41 2.3,1.41 0.04,0.16 0.39,6.05 -0.69,15.27 -1.07,9.23 -3.56,21.76 -9.21,35.2 -5.64,13.45 -14.43,27.79 -28.1,40.62 -13.67,12.83 -32.2,24.14 -57.35,31.54 -24.92,6.35 -53.71,10.44 -82.92,13.03 -29.19,2.6 -58.82,3.73 -85.42,4.14 -26.614,0.43 -50.192,0.18 -67.332,0.02 -17.137,-0.16 -27.84,-0.21 -28.66,0.63" /><path
id="path52"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1192.11,2006.3 v 0 m 0,0 c 0.01,-0.01 -1.83,-9.29 -3.83,-24.45 -2.01,-15.16 -4.18,-36.21 -4.83,-59.76 -0.64,-23.56 0.25,-49.63 4.35,-74.83 4.11,-25.2 11.44,-49.53 23.7,-69.61 9.86,-16.21 22.21,-28.14 35.64,-36.84 13.44,-8.71 27.96,-14.19 42.18,-17.52 14.22,-3.32 28.13,-4.49 40.34,-4.57 12.21,-0.07 22.71,0.94 30.11,1.99 1.81,0.25 3.44,0.51 4.86,0.75 1.42,0.25 2.63,0.47 3.62,0.67 0.98,0.2 1.75,0.37 2.26,0.5 0.51,0.12 0.78,0.2 0.77,0.22 h 0.01 c 0.05,0 3.84,6.39 8.72,17.17 4.87,10.78 10.83,25.93 15.2,43.47 4.38,17.54 7.16,37.46 5.71,57.75 -1.46,20.29 -7.16,40.96 -19.77,60.01 -12.64,18.64 -30.81,34.42 -50.93,47.62 -20.12,13.2 -42.2,23.84 -62.69,32.2 -20.47,8.36 -39.37,14.44 -53.12,18.55 -13.75,4.1 -22.37,6.24 -22.3,6.68" /><path
id="path54"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1993.37,1998.28 c -14.25,-2.02 -29.75,-4.79 -45.96,-8.54 -16.21,-3.74 -33.14,-8.47 -50.25,-14.4 -17.11,-5.93 -34.41,-13.07 -51.34,-21.64 -16.94,-8.56 -33.52,-18.56 -49.21,-30.22 -28.56,-20.33 -51.19,-41.98 -69.08,-63.03 -17.89,-21.04 -31.04,-41.48 -40.62,-59.38 -9.58,-17.9 -15.59,-33.25 -19.2,-44.14 -3.62,-10.88 -4.83,-17.29 -4.82,-17.29 v 0 c -0.03,-0.04 1.5,-0.32 4.42,-0.64 2.92,-0.31 7.23,-0.66 12.78,-0.82 5.55,-0.16 12.33,-0.16 20.18,0.24 7.86,0.4 16.78,1.18 26.63,2.57 9.51,1.34 19.87,3.24 30.95,5.88 11.07,2.66 22.86,6.05 35.21,10.38 12.35,4.34 25.27,9.62 38.61,16.02 13.34,6.41 27.1,13.94 41.13,22.79 28.57,18.08 55.44,39.95 79.69,62.58 24.24,22.63 45.86,46.03 63.89,67.18 18.04,21.15 32.5,40.05 42.45,53.7 9.95,13.62 15.4,22 15.39,22.11 0.04,0.42 -2.02,0.84 -5.89,1.14 -3.87,0.29 -9.53,0.44 -16.68,0.34 -7.15,-0.11 -15.79,-0.47 -25.6,-1.24 -9.82,-0.76 -20.82,-1.92 -32.68,-3.59" /><path
id="path56"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1856.53,2200.91 c -0.69,-0.11 -10.81,-6.82 -26.76,-18.69 -15.95,-11.84 -37.72,-28.83 -61.72,-49.43 -24,-20.61 -50.22,-44.84 -75.06,-71.22 -24.84,-26.37 -48.3,-54.86 -66.78,-84 -18.62,-28.96 -30.19,-55.28 -37.07,-78.44 -6.88,-23.18 -9.06,-43.22 -8.91,-59.65 0.15,-16.42 2.63,-29.21 5.07,-37.93 2.45,-8.71 4.87,-13.32 4.88,-13.35 0.01,0.07 7.04,2.53 18.72,7.94 11.69,5.4 28.03,13.72 46.65,25.55 18.63,11.81 39.54,27.11 60.38,46.45 20.84,19.31 41.6,42.67 59.91,70.59 18.29,27.98 32.48,58.37 43.47,88.19 10.99,29.81 18.79,59.07 24.3,84.83 5.51,25.77 8.74,48.02 10.59,63.86 1.86,15.83 2.34,25.24 2.37,25.28 v 0 c 0,0.02 -0.01,0.02 -0.01,0.02 h -0.01 -0.02" /><path
id="path58"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1435.14,1394.21 v 0 c 0.01,-0.04 -6.3,-5.1 -16.03,-14.4 -9.72,-9.31 -22.84,-22.85 -36.41,-39.84 -13.57,-17.01 -27.6,-37.46 -39.15,-60.58 -11.54,-23.12 -20.6,-48.93 -24.23,-76.61 -3.65,-27.73 -1.42,-54.91 4,-80.07 5.43,-25.18 14.05,-48.35 23.11,-68.07 9.08,-19.71 18.62,-35.96 25.9,-47.29 7.26,-11.33 12.28,-17.741 12.33,-17.768 0.05,0 7.06,9.449 17.74,25.388 10.67,15.93 25.03,38.34 39.8,64.26 14.77,25.92 29.93,55.35 42.23,85.33 12.29,29.96 21.71,60.48 25.01,88.58 3.32,28.09 0.36,50.95 -5.96,69.44 -6.3,18.5 -15.97,32.63 -26.06,43.24 -10.08,10.62 -20.61,17.72 -28.62,22.16 -8.04,4.45 -13.55,6.24 -13.66,6.23" /><path
id="path60"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1187.64,1436.74 c -9.47,-1.33 -19.79,-3.18 -30.78,-5.72 -11,-2.55 -22.69,-5.78 -34.94,-9.87 -12.25,-4.09 -25.09,-9.04 -38.36,-15.01 -13.25,-5.97 -26.97,-12.97 -40.98,-21.15 -29.16,-17.13 -57.006,-37.44 -82.369,-58.3 -25.363,-20.86 -48.246,-42.25 -67.5,-61.5 -19.238,-19.27 -34.848,-36.39 -45.648,-48.71 -10.801,-12.32 -16.786,-19.83 -16.817,-19.87 -0.074,-0.49 2.867,-1.13 8.297,-1.67 5.437,-0.55 13.363,-1 23.262,-1.12 9.898,-0.11 21.781,0.11 35.113,0.91 13.328,0.8 28.105,2.18 43.828,4.37 13.547,1.89 27.797,4.4 42.395,7.66 14.617,3.27 29.579,7.31 44.579,12.26 14.99,4.96 30.03,10.83 44.73,17.78 14.73,6.95 29.13,14.97 42.89,24.23 29.46,18.95 52.88,39.48 71.42,59.63 18.54,20.14 32.19,39.89 42.19,57.27 9.99,17.38 16.32,32.41 20.14,43.1 3.82,10.69 5.18,17.04 5.22,17.1 -0.03,0.08 -1.66,0.4 -4.72,0.73 -3.05,0.34 -7.55,0.69 -13.32,0.86 -5.76,0.16 -12.81,0.14 -20.96,-0.29 -8.16,-0.43 -17.44,-1.25 -27.67,-2.69 m 66.67,1.39 v 0" /><path
id="path62"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1326.72,1389.86 c 0,-0.04 -7.1,-2.39 -18.96,-7.53 -11.85,-5.16 -28.46,-13.12 -47.46,-24.42 -19.01,-11.29 -40.44,-25.9 -61.92,-44.34 -21.5,-18.47 -43.07,-40.76 -62.35,-67.4 -19.32,-26.69 -34.6,-55.72 -46.64,-84.29 -12.05,-28.56 -20.86,-56.64 -27.26,-81.4 -6.4,-24.78 -10.38,-46.24 -12.76,-61.52 -2.39,-15.29 -3.17,-24.409 -3.17,-24.511 0,-0.008 0,-0.008 0.02,-0.008 l 0.01,-0.019 c 0.01,0 0.02,0 0.03,0 0.01,0 0.03,0 0.04,0 1.06,0.137 11.93,6.138 28.84,16.848 16.93,10.69 39.88,26.09 65.1,45 25.21,18.9 52.68,41.33 78.62,66.11 25.96,24.78 50.39,51.92 69.52,80.23 19.32,28.2 31.37,54.01 38.57,76.86 7.21,22.87 9.57,42.75 9.52,59.12 -0.05,16.35 -2.5,29.19 -4.94,37.93 -2.44,8.74 -4.84,13.36 -4.81,13.34" /><path
id="path64"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1749.39,1584.37 c -7.65,-1.07 -15.07,-2.5 -22.21,-4.18 -7.13,-1.68 -13.97,-3.62 -20.47,-5.69 -6.49,-2.07 -12.63,-4.29 -18.36,-6.55 -5.73,-2.27 -11.05,-4.56 -15.89,-6.79 -4.87,-2.23 -9.25,-4.41 -13.1,-6.38 -3.85,-2.01 -7.16,-3.82 -9.88,-5.35 -2.72,-1.53 -4.83,-2.79 -6.29,-3.68 -1.46,-0.87 -2.27,-1.37 -2.36,-1.38 v 0 c -0.03,-0.2 -0.29,-6.24 0.98,-15.73 1.26,-9.49 4.04,-22.44 10.1,-36.48 6.06,-14.02 15.39,-29.14 29.76,-42.95 14.36,-13.8 33.76,-26.32 59.94,-35.16 26.02,-7.78 55.95,-13.46 86.27,-17.64 30.32,-4.18 61.03,-6.88 88.6,-8.71 27.58,-1.82 52.01,-2.79 69.78,-3.5 17.77,-0.72 28.87,-1.2 29.78,-2.05 -0.57,1.22 -4.9,11.13 -12.66,25.95 -7.75,14.81 -18.93,34.55 -33.22,55.44 -14.28,20.89 -31.66,42.94 -51.81,62.39 -20.14,19.46 -43.06,36.32 -68.42,46.84 -8.64,3.62 -17.3,6.42 -25.92,8.53 -8.61,2.11 -17.19,3.51 -25.65,4.33 -8.47,0.82 -16.82,1.05 -25,0.8 -8.18,-0.24 -16.2,-0.97 -23.97,-2.06 m 266.65,-202.22 c 0.01,-0.03 0.02,-0.05 0.02,-0.06 0.01,-0.01 0.01,-0.03 0.02,-0.04 0,-0.01 0.01,-0.02 0.01,-0.03 h 0.01 v 0.03 c -0.01,0.01 -0.01,0.02 -0.02,0.03 0,0.01 -0.01,0.02 -0.02,0.03 0,0.01 -0.01,0.02 -0.02,0.04" /><path
id="path66"
style="fill:#fade04;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1558.92,1453.39 c -1.22,-0.17 -2.3,-0.34 -3.24,-0.49 -0.94,-0.15 -1.75,-0.3 -2.4,-0.42 -0.65,-0.12 -1.15,-0.22 -1.49,-0.29 -0.34,-0.07 -0.51,-0.11 -0.52,-0.12 0.02,-0.03 -3.78,-6.41 -8.65,-17.22 -4.87,-10.8 -10.82,-26.03 -15.12,-43.77 -4.29,-17.75 -6.93,-38.02 -5.17,-58.88 1.76,-20.87 7.91,-42.34 21.19,-62.5 13.38,-19.66 32.65,-37.03 54.03,-52.06 21.39,-15.04 44.9,-27.73 66.74,-38.03 21.83,-10.31 41.99,-18.22 56.69,-23.69 14.69,-5.46 23.92,-8.48 23.87,-8.99 v -0.01 c 0.03,0.01 1.6,9.77 3.11,25.77 1.52,16 2.97,38.23 2.75,63.16 -0.21,24.93 -2.1,52.55 -7.26,79.35 -5.16,26.79 -13.6,52.76 -26.91,74.38 -11.22,18.28 -25.05,31.64 -39.89,41.34 -14.84,9.69 -30.69,15.73 -45.96,19.36 -15.26,3.63 -29.94,4.87 -42.43,4.97 -12.49,0.09 -22.81,-0.95 -29.34,-1.86" /></g></g></svg>

After

Width:  |  Height:  |  Size: 26 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -0,0 +1,430 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
id="Layer_1"
width="178.08662"
height="158.21704"
viewBox="0 0 670.742 530.503"
overflow="visible"
enable-background="new 0 0 670.742 530.503"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.45"
sodipodi:docname="Airbus_Logo.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docbase="C:\Documents and Settings\Sigurd\Mine dokumenter\Mine bilder"
sodipodi:modified="true"><metadata
id="metadata9961"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs9959">
<clipPath
id="id4">
<path
id="path14958"
d="M 0,6236.22 L 2551.2,6236.22 L 2551.2,0 L 0,0 L 0,6236.22 z "
clip-rule="nonzero" />
</clipPath>
<clipPath
id="id3">
<path
id="path14955"
d="M 0,0 L 2551.2,0 L 2551.2,6236.22 L 0,6236.22 L 0,0 z "
clip-rule="nonzero" />
</clipPath>
<clipPath
id="id2">
<rect
id="rect14952"
x="0"
y="0"
height="6236.2202"
width="2551.1799" />
</clipPath>
<style
id="style14949"
type="text/css">
@font-face{font-family:'font1';src:url(&quot;data:;base64,\
T1RUTwACACAAAQAAQ0ZGIM5xAd4AAAAsAAAHSGNtYXACMgHaAAAHdAAAAGQBAAQCAAEBARpJS0pF\
QlArT2ZmaWNpbmFTYW5zSVRDLUJkAAEBASb4GwH4HAT4HQwW+xb7mxwEdvpVBR0AQrqLDfckD/dA\
EbMcByASAAMBASQqPFVSVyBTb2Z0d2FyZSwgQ29weXJpZ2h0IDE5OTQgYnkgVVJXTm9ybWFsT2Zm\
aWNpbmFTYW5zSVRDLUJkAAABAAEAAA4BAEIAAEYCAE0AAE8CAFMAAFUBAFgAABACAAEAAgADACkA\
RQDeAUYBygJ+AtwDTQOZBBMEhgUOBZkGUA4OMvdY9wsBx/fPFXiJiXkfPAd5jomdHveOBp6NjZ0f\
2geciI55Hg77N3ufAfcq90IVVWBhV1W1YcDAtbXAv2G2WB8OonufeeT35u0SrPcN9yD3CxNY97r3\
xxVUimyJcYUIJnhbVjIaL8VQ57+vm7SzHhO4Y5aVeJQbjpGMjY4f2aoFkI2Oj48ajoqPiY8eeq6F\
qLca92AHsYejgaAevnRVpTwbOzBydoiMhoyIH6BPBYSNjoiQG46PjI2PH5y3sZSpG72beVIfE1j7\
dARxc3J+cBtnb6myxbOh7x8OoXrz9xLo9wbmAfhA92kVnY+Qn/dKSeb7GPsYNCD7NTCmPrtgH2qu\
vXvLG7y4lJ63H6yZk5GWGo+LjIiRHnLHBZGIiI6GG4iGioiGH3dlZIBmG0Fos+GJH43oFd2Uoqu+\
G76fbDiNHw4gi5/4Eej3D/YB7fcTA+34ghU/Bn6HiIAfVAdzi4ucHtf8FAZ8jYmaHugGmo2Nmh/4\
FOsHlpCPlo4fmcUFjI6MkYwakoaOfx77BrUGs4yUkpYemZSbkqIbn52HgaEfiY+Oio4bj46PkI0f\
ndIFjZGLi40anU6dTlRheWZtHnNtgmhHGg60+2Xz9wPw97/0ep8SrPcT9y33D/sK9w8Tkr/7JBWK\
iIqGiRp09wpr4PcNzsv3BpiKooqmHhOcicGKwsEa9ygHuJGqm7AekZqLi44aj4iOhY4ePKcFjImG\
jIgbg3x3bn8fE+ytY26XXRv7BEQm+zX7Kcot8LavlqWwHxPijnGNdHsaT3Z0U19al6RUHo2Ih4yJ\
G4aHh4WJHxPs94T3bBV0dXGAbBtbcb7r7ajBwKOeg3anHw77SXr3CQHM9xMD2/lUFYGJhoWAGvyQ\
BzSMf5N0Hlybs3LFG7vAmpiMi4yKjR+Kj3fdBY+KiI2HG4qIi4qIH4d+gomAG32EkZmHH4mTi43D\
GvidB5eIkISJi4uJgR4O2Yuf+BnxfJ8S1fcT9yT3ExPYxfh1FYaJiIeIGoiMiI2HHpltkmdgGvvk\
B3yNiZoe6AaajY2aH/fzB6muopaoG7OcclAf+8gHfI2Jmh7oBpqNjZof9+QH9wFjvDJSYHldWR4T\
OLeAfqR/G4mGioqIHw60evD32vABrPcb9zn3GwP3k/iTFUNadVhgH2RceE05Gvs63Cn3Hfca3vH3\
N/c2OfD7Fx6FJhXHo137CvsGc1tQUXO69wj3B6O7xB8Ox3rr99/wAdX3E/cy9xMDyfhrFYOIiYmH\
GomMiIyIHppmkHRkGvy6B3+Nh5IelYzonwWZjYyNmRr3SQd4rqaEsxv3Dsjm90n3Ok/l+wVaZnxm\
Yh+qg4CgghuJiIqJhx+/+xoVpaiglacbwqRa+wL7FHRfSnB6kJlxHw4gi5/4DvcFAdX3EwO/+HMV\
hYmHh4caiIyIjIgeo1WRb1Ia+8QHfI2Jmh7oBpqNjZof9+EHrKmkmqAbl5mIhpkfio6Nio0bjo6O\
kY0fqtwFjI+Mj44alnCWbWlrfXJyHoGBiIZ2cwi7gHypfxuHi4uIgx8OMnr3A/fH6AHu9xMD7viC\
FUYGfImJfB9QB3yNiZoe0PuZBlOQcpxyHmmisXq/G6ytkZatH6STkY+VGo6LjImSHnvRBZGJiI+G\
G4iIioqIH3xmgol3G22ElsAf94fuB5eOjpeOH5jGBYyOi46OGpOHjX4e+wb3IQaXiI+EHoIGL34F\
fYmJiX0aDtl68Cmf+HifEsz3E/ck9xMTuPfk9wwVcm1ygG8bdHeVnIIfhJiJmrga98oHl4iPg4mH\
i4qJHi53BX2Iiop9Gvu5By+RbqdsHm+jsny9G8Svmra4HxN4aJOWd5YbjouLjZMf354FkoyOjo8a\
jYqPiY4efKmHorwa+AQHloiQhR6Bii53BX2Iiop9Gg73ZIOf+GqfAffn9/EVj2aPZoyIjYAZuvuR\
BXyOjIqZG94GmYyMmI8f9x74YQWOk4uLjRqRh46AjR45mAWMioWLiRuFiYiAiB9Y+3GEbYZlgSkZ\
hsCB2IaiXvd1GJiIiY1+GzEGfYqKfYgfWft+hnCEWYVIGYDuh6yFpFz3ehiWiImOhBuJhouKih8z\
fgWAiYeJhRqJi4uNgh73DfxgBX2OjIqZG90GmI2MmY4fxveSk7eNmJPCGQ53n/iCn/dAnwYeoDlj\
/wwJ8Ar3Egvwk5SRDAz3EpCRkwwN92IU+F8VAAAAAQAAAAMAAAAMAAQAWAAAABIAEAADAAIALgBh\
AGcAbABwAHIAdQB3//8AAAAtAGEAZQBsAG4AcgB0AHf////V/6P/oP+c/5v/mv+Z/5gAAQAAAAAA\
AAAAAAAAAAAAAAAAAA==&quot;)}
</style>
<style
id="style14947"
type="text/css">
clipPath{shape-rendering:crispEdges}
image{shape-rendering:crispEdges}
</style>
</defs><sodipodi:namedview
inkscape:window-height="719"
inkscape:window-width="1024"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
height="182.42px"
width="182.42464px"
inkscape:zoom="2.2973967"
inkscape:cx="70.119664"
inkscape:cy="90.00554"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:current-layer="g9932" />
<g
id="g9930"
transform="translate(-690.51703,-250.18545)">
<g
id="g9932">
<g
id="g14962"
transform="matrix(0.3301909,0,0,0.3301909,606.33622,134.62424)">
<g
id="main"
clip-path="url(#id2)"
transform="matrix(1,0,0,-1,0,6236.2212)">
<g
id="g14965"
clip-path="url(#id3)">
<g
id="g14967"
clip-path="url(#id4)">
<path
id="path14969"
d="M 1678.322,4862.95 L 1736.606,4905.29 L 1794.855,4862.95 L 1772.604,4931.438 L 1830.853,4973.743 L 1758.857,4973.743 L 1736.606,5042.231 L 1714.355,4973.743 L 1642.323,4973.743 L 1700.572,4931.438 L 1678.322,4862.95"
style="fill:#ffe212;fill-rule:nonzero;stroke:none" />
<path
id="path14971"
d="M 1881.059,4918.045 L 1939.308,4960.35 L 1997.593,4918.045 L 1975.342,4986.534 L 2033.59,5028.839 L 1961.594,5028.839 L 1939.308,5097.327 L 1917.057,5028.839 L 1845.061,5028.839 L 1903.31,4986.499 L 1881.059,4918.045"
style="fill:#ffe212;fill-rule:nonzero;stroke:none" />
<path
id="path14973"
d="M 2032.173,5078.442 L 2090.458,5120.783 L 2148.707,5078.442 L 2126.456,5146.932 L 2184.705,5189.271 L 2112.708,5189.271 L 2090.458,5257.76 L 2068.207,5189.271 L 1996.175,5189.271 L 2054.424,5146.932 L 2032.173,5078.442"
style="fill:#ffe212;fill-rule:nonzero;stroke:none" />
<path
id="path14975"
d="M 2088.438,5288.23 L 2146.687,5330.571 L 2204.936,5288.266 L 2182.685,5356.755 L 2240.97,5399.06 L 2168.938,5399.06 L 2146.687,5467.549 L 2124.437,5399.06 L 2052.44,5399.06 L 2110.689,5356.72 L 2088.438,5288.23"
style="fill:#ffe212;fill-rule:nonzero;stroke:none" />
<path
id="path14977"
d="M 2034.973,5502.413 L 2090.458,5542.733 L 2145.943,5502.413 L 2124.72,5567.641 L 2180.205,5607.962 L 2111.646,5607.962 L 2090.458,5673.155 L 2069.27,5607.962 L 2000.675,5607.962 L 2056.161,5567.641 L 2034.973,5502.413"
style="fill:#ffe212;fill-rule:nonzero;stroke:none" />
<path
id="path14979"
d="M 1881.059,5645.095 L 1939.308,5687.399 L 1997.593,5645.095 L 1975.342,5713.583 L 2033.59,5755.888 L 1961.559,5755.888 L 1939.308,5824.376 L 1917.057,5755.888 L 1845.061,5755.888 L 1903.31,5713.583 L 1881.059,5645.095"
style="fill:#ffe212;fill-rule:nonzero;stroke:none" />
<path
id="path14981"
d="M 1678.322,5702.493 L 1736.606,5744.798 L 1794.855,5702.493 L 1772.604,5770.946 L 1830.853,5813.286 L 1758.857,5813.286 L 1736.606,5881.774 L 1714.355,5813.286 L 1642.323,5813.286 L 1700.572,5770.946 L 1678.322,5702.493"
style="fill:#ffe212;fill-rule:nonzero;stroke:none" />
<path
id="path14983"
d="M 1592.117,5645.095 L 1533.869,5687.399 L 1475.584,5645.095 L 1497.834,5713.583 L 1439.586,5755.888 L 1511.618,5755.888 L 1533.869,5824.376 L 1556.119,5755.888 L 1628.115,5755.888 L 1569.867,5713.583 L 1592.117,5645.095"
style="fill:#ffe212;fill-rule:nonzero;stroke:none" />
<path
id="path14985"
d="M 983.479,5009.564 C 942.486,5042.161 901.492,5074.545 861.277,5105.973 L 831.728,5129.18 L 690.782,4885.803 C 760.511,4915.495 864.962,4959.818 983.479,5009.564 z M 1273.591,5515.452 L 1227.176,5716.028 C 1244.82,5732.929 1261.367,5734.027 1276.779,5719.287 C 1276.779,5719.287 1301.582,5631.596 1336.587,5504.681 C 1550.592,5467.371 1786.883,5418.653 1854.521,5373.903 C 1910.75,5336.665 1876.382,5292.73 1833.829,5278.948 C 1755.456,5253.544 1608.912,5190.192 1441.606,5115.681 C 1514.523,4838.396 1579.681,4570.536 1558.671,4572.201 C 1529.936,4569.827 1306.187,4751.802 1062.845,4946.284 C 800.512,4829.893 569.536,4732.669 536.196,4748.79 C 518.905,4757.152 644.155,4972.22 769.475,5178.5 C 620.699,5296.982 351.386,5516.16 316.026,5577.031 C 291.543,5619.194 310.888,5636.414 345.965,5637.016 C 388.164,5637.796 677.212,5607.998 1004.774,5557.969 L 1244.041,5935.17 C 1274.157,5951.646 1287.798,5943.886 1284.964,5911.856 L 1073.936,5547.41 C 1129.102,5538.907 1198.654,5528.029 1273.591,5515.452 z M 392.982,5574.657 C 520.818,5453.058 662.827,5342.44 803.135,5233.702 L 808.697,5242.772 L 839.487,5212.868 L 867.336,5190.653 L 901.421,5157.313 C 952.335,5117.487 1003.605,5077.663 1053.669,5038.937 L 1060.791,5036.669 L 1138.137,4979.802 C 1265.937,4875.422 1383.604,4786.029 1454.821,4732.102 L 1445.22,4773.628 L 1446.354,4782.591 L 1356.5,5164.682 L 1421.516,5191.61 C 1572.028,5251.631 1707.411,5304.671 1790.461,5333.122 C 1672.086,5379.928 1503.504,5411.319 1355.543,5435.731 L 1357.491,5428.609 L 1290.279,5443.313 L 1201.134,5460.746 C 1147.385,5469.674 1092.927,5478.39 1038.823,5486.823 L 1034.217,5478.816 L 961.193,5488.736 L 966.898,5497.842 C 725.859,5534.265 501.827,5563.177 392.982,5574.657"
style="fill:#002759;fill-rule:nonzero;stroke:none" />
<path
id="path14987"
d="M 407.049,5567.217 L 782.514,5512.937 L 1280.216,5445.511 L 1602.499,5375.002 L 1760.628,5332.13 L 1356.5,5164.682 L 1446.354,4782.591 L 1443.909,4763.353 L 1354.87,4820.433 L 1060.791,5036.669 L 839.487,5212.868 L 700.986,5347.579 C 700.986,5347.579 645.82,5386.872 590.901,5425.633 C 538.003,5462.978 431.921,5542.876 407.049,5567.217"
style="fill:#f11f22;fill-rule:nonzero;stroke:none" />
<path
id="path14989"
stroke-miterlimit="3.864"
d="M 407.049,5567.217 L 782.514,5512.937 L 1280.216,5445.511 L 1602.499,5375.002 L 1760.628,5332.13 L 1356.5,5164.682 L 1446.354,4782.591 L 1443.909,4763.353 L 1354.87,4820.433 L 1060.791,5036.669 L 839.487,5212.868 L 700.986,5347.579 C 700.986,5347.579 645.82,5386.872 590.901,5425.633 C 538.003,5462.978 431.921,5542.876 407.049,5567.217 z "
style="fill:none;stroke:#f11f22;stroke-width:1.21599996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path14991"
d="M 465.37665,4449.9967 L 465.37665,4416.0002 C 497.17451,4416.0002 531.03756,4418.0557 552.23289,4420.1014 L 553.6032,4417.0231 C 552.23289,4413.9448 537.19284,4397.187 533.08191,4397.187 C 527.61318,4397.187 474.94658,4400.9504 465.37665,4400.9504 L 465.44753,4368.1909 C 465.58095,4348.0907 465.89781,4325.3916 466.74696,4307.9292 L 539.23719,4305.1886 C 546.42506,4314.7696 561.12879,4336.6598 568.9907,4345.5446 L 575.84086,4345.8921 C 574.80826,4334.9518 567.63012,4302.1102 563.86802,4290.824 C 541.64009,4291.8566 521.80534,4291.8566 501.96921,4291.8566 L 447.93369,4291.8566 C 432.54619,4291.8566 415.44095,4291.5077 401.07493,4291.5077 L 403.81555,4299.7199 L 432.88391,4309.6372 C 433.63994,4312.6627 434.39597,4334.2166 434.74342,4368.2729 C 434.8671,4380.3889 434.93798,4394.1003 434.93798,4409.1612 L 434.93798,4500.1284 L 405.18586,4509.6969 L 407.57765,4517.5699 C 421.59622,4517.5699 435.96085,4517.2225 449.64171,4517.2225 L 534.45222,4517.2225 C 537.87799,4518.2551 556.68015,4520.9846 563.86802,4519.9631 C 563.18286,4510.7309 557.3653,4480.976 554.97351,4470.3735 L 549.50339,4467.2979 C 545.7399,4475.5059 537.53055,4496.7026 534.78993,4504.2282 L 465.37665,4501.4973 L 465.37665,4449.9967" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path14993"
d="M 604.60208,4449.9967 L 623.34308,4454.5371 C 627.20802,4455.5071 629.46778,4455.1805 629.46778,4450.6721 L 629.46778,4348.755 C 629.46778,4323.9199 634.63076,4315.5354 650.74511,4315.5354 C 661.71593,4315.5354 673.33021,4320.3718 684.29129,4329.7277 L 684.29129,4444.2194 C 684.29129,4447.4423 685.26274,4448.4124 688.48283,4449.0572 L 692.32831,4449.9967 L 711.06932,4454.5371 C 714.93426,4455.5071 716.86603,4456.1534 716.86603,4450.6721 L 716.86603,4335.2075 C 716.86603,4319.4003 718.80893,4311.6607 723.96218,4302.9608 C 725.2505,4301.0165 726.22194,4298.7581 723.00046,4297.4684 L 702.35826,4289.7302 C 697.83874,4288.1139 695.57898,4290.7017 693.6472,4294.2497 C 691.71404,4297.4684 690.09913,4302.3048 688.81082,4307.4692 C 672.68674,4293.2783 660.42761,4288.4419 642.68724,4288.4419 C 607.20928,4288.4419 596.56645,4308.7575 596.56645,4341.3322 L 596.56645,4444.2194 C 596.56645,4447.4423 597.53789,4448.4124 600.75798,4449.0572 L 604.60208,4449.9967" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path14995"
d="M 782.44495,4449.9967 C 786.403,4451.5922 790.44167,4453.3196 794.55121,4455.1916 C 796.16612,4453.7491 796.27869,4452.533 796.27869,4450.6832 L 796.27869,4422.2792 C 803.67085,4432.5551 810.77673,4440.581 817.58659,4446.3569 C 819.21261,4447.7064 820.84837,4448.903 822.49385,4449.9356 C 827.88337,4453.2585 833.40352,4455.0179 839.06821,4455.0179 C 844.72178,4455.0179 849.36499,4453.3002 852.99367,4449.9967 C 857.13518,4446.1832 858.97523,4441.7874 858.98495,4436.4812 C 858.98495,4431.7463 857.54377,4427.759 854.65027,4424.539 C 851.87908,4421.298 848.36297,4419.6817 844.08805,4419.6817 C 839.70194,4419.6817 835.25469,4421.6955 830.75602,4425.7453 C 826.35879,4429.7839 822.89272,4431.7977 820.35778,4431.8074 C 816.31912,4431.8074 811.35071,4428.5165 805.46087,4421.9318 C 799.57104,4415.4693 796.62613,4408.7721 796.62613,4401.8399 L 796.62613,4323.735 C 796.62613,4313.7982 798.93731,4306.866 803.55967,4302.9497 C 808.18065,4299.1361 815.84799,4297.3461 826.59505,4297.5727 L 826.59505,4291.8566 L 741.21057,4291.8566 L 741.21057,4297.5727 C 751.82422,4298.4913 758.86756,4300.3425 762.33364,4303.1137 C 765.79972,4306.0072 767.52858,4312.0707 767.52858,4321.3029 L 767.52858,4399.4161 C 767.52858,4410.847 766.43484,4418.9868 764.24596,4423.8427 C 762.15992,4428.8014 758.29498,4431.2863 752.64141,4431.2863 C 751.47539,4431.2863 749.92163,4431.1126 747.95928,4430.7651 C 746.10811,4430.5302 744.15549,4430.1925 742.06945,4429.7325 L 742.06945,4435.4472 L 762.33364,4442.5434 C 769.26718,4444.9657 774.05076,4446.7057 776.70938,4447.7369 L 782.44495,4449.9967" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path14997"
d="M 969.06142,4368.1811 C 972.43577,4380.0831 974.3467,4392.2394 974.3467,4403.4451 C 974.3467,4427.5131 967.16995,4443.3314 950.99445,4443.3314 C 923.42009,4443.3314 901.45761,4404.5388 893.13569,4368.1909 C 890.80366,4357.9969 889.54592,4348.0087 889.54592,4339.1128 C 889.54592,4311.0881 899.60644,4300.3008 912.90929,4300.3008 C 936.50614,4300.3008 959.11208,4333.1326 969.06142,4368.1811 z M 976.46331,4450.0287 C 994.50943,4440.6019 1004.8979,4419.2328 1004.8979,4393.7431 C 1004.8979,4385.1432 1003.743,4376.535 1001.5847,4368.1909 C 990.55277,4325.4125 953.35706,4288.4419 910.38269,4288.4419 C 882.00088,4288.4419 859.35324,4310.0041 858.99607,4347.7321 C 858.99607,4354.624 859.66038,4361.3921 860.93758,4368.1297 C 868.024,4405.3268 893.78888,4437.8404 926.35389,4449.9967 C 935.22894,4453.3196 944.59458,4455.1916 954.22566,4455.1916 C 962.75327,4455.1916 970.08429,4453.3822 976.46331,4450.0287" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path14999"
d="M 1123.4812,4368.2117 L 1123.5006,4373.2927 C 1123.5006,4402.9031 1121.1908,4433.1583 1090.9356,4433.1583 C 1078.115,4433.1583 1063.9741,4423.6175 1055.416,4417.0426 L 1055.416,4321.0055 C 1063.9741,4315.7508 1078.115,4310.1473 1089.9447,4310.1473 C 1120.168,4310.1473 1123.2352,4337.9176 1123.4812,4368.2117 z M 1029.6302,4449.9967 L 1036.3484,4454.1994 C 1037.9938,4455.1916 1039.6296,4455.8448 1041.931,4453.5448 C 1042.922,4452.5636 1043.8628,4451.367 1044.7523,4449.9967 C 1047.422,4445.99 1049.5789,4440.7131 1050.8158,4435.7849 L 1053.4439,4437.7584 C 1058.4846,4441.5316 1065.3861,4446.3986 1073.6261,4449.9967 C 1080.4457,4452.993 1088.1867,4455.1916 1096.5294,4455.1916 C 1102.183,4455.1916 1110.3215,4454.1479 1118.5725,4449.9258 C 1134.3186,4441.7248 1150.4621,4421.4189 1150.4621,4372.6395 L 1150.4218,4368.1909 C 1148.95,4297.2141 1111.5695,4288.1139 1091.2636,4288.1139 C 1072.8492,4288.1139 1059.3629,4296.6721 1055.416,4299.3001 L 1055.416,4232.2064 C 1055.416,4231.5518 1055.416,4228.9154 1052.7893,4228.2608 L 1037.0029,4224.3139 C 1034.7015,4223.6593 1030.4182,4222.3404 1030.4182,4227.2685 L 1030.4182,4407.8326 C 1030.4182,4414.7328 1030.4182,4424.9267 1022.8621,4438.4116 C 1021.5432,4440.3865 1020.5509,4441.7054 1020.5509,4443.0242 C 1020.5509,4444.6711 1021.5432,4444.9977 1022.2075,4445.3243 L 1029.6302,4449.9967" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path15001"
d="M 1266.1101,4443.3314 C 1244.905,4443.3314 1219.7531,4414.9371 1209.3354,4375.4093 C 1225.1412,4378.6405 1267.9098,4389.4279 1276.172,4402.0039 C 1279.7604,4407.0348 1281.5601,4413.8642 1281.5601,4422.1249 C 1281.5601,4436.1435 1274.3722,4443.3314 1266.1101,4443.3314 z M 1292.6741,4450.0592 C 1303.2043,4443.9234 1308.6439,4432.8609 1308.8788,4419.968 C 1308.8788,4411.3487 1305.6378,4402.0039 1299.534,4395.8903 C 1290.0558,4384.6221 1257.3796,4374.449 1232.1039,4368.1909 C 1221.9308,4365.6976 1212.9543,4363.8659 1207.1771,4362.8333 C 1205.7359,4356.0054 1205.3773,4350.6159 1205.3773,4343.7866 C 1205.3773,4325.0956 1212.5652,4307.8472 1234.8445,4307.8472 C 1259.2808,4307.8472 1284.8011,4329.7694 1297.7356,4344.8595 L 1299.534,4332.9992 C 1280.1287,4304.616 1252.0929,4288.4419 1223.3415,4288.4419 C 1199.632,4288.4419 1174.8275,4299.9436 1174.1118,4341.6283 C 1173.9895,4350.0225 1175.1652,4359.1226 1177.5264,4368.2534 C 1186.136,4401.7176 1210.418,4437.1038 1244.1184,4449.9967 C 1252.6752,4453.2904 1261.8366,4455.1916 1271.4996,4455.1916 C 1279.9952,4455.1916 1287.0608,4453.3808 1292.6741,4450.0592" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path15003"
d="M 1408.0053,4328.1948 L 1408.0053,4366.9443 C 1387.484,4366.6163 1354.9203,4365.3182 1354.9203,4336.9962 C 1354.9203,4322.9901 1364.368,4312.571 1377.0663,4312.571 C 1387.1574,4312.571 1396.9219,4317.4477 1408.0053,4328.1948 z M 1416.3591,4449.9661 C 1432.0621,4443.0242 1439.9046,4428.8736 1439.9046,4406.0217 L 1439.9046,4342.2008 C 1439.9046,4323.9713 1441.8683,4314.8516 1447.7276,4303.778 C 1448.6976,4301.8253 1449.3522,4299.2181 1447.073,4298.237 L 1427.2063,4288.4725 C 1422.6562,4286.1919 1420.7036,4288.4725 1418.4243,4292.7043 C 1416.4703,4296.2927 1414.508,4301.1708 1412.8819,4307.3566 C 1398.8842,4293.3589 1386.1859,4287.8276 1368.9278,4287.8276 C 1340.9226,4287.8276 1322.6819,4306.0572 1322.6819,4334.7072 C 1322.6819,4349.3067 1326.8735,4360.1552 1333.7653,4368.1909 C 1349.9505,4387.0556 1381.0535,4390.4911 1408.0053,4390.7162 L 1408.0053,4401.1353 C 1408.0053,4421.0006 1401.4914,4428.1676 1382.2696,4428.1676 C 1371.207,4428.1676 1360.1347,4425.2338 1344.8279,4418.72 C 1342.5486,4417.7388 1339.9414,4417.422 1338.97,4420.3572 L 1333.7556,4436.3061 C 1331.4861,4442.8186 1336.6894,4444.4446 1339.6246,4445.7537 C 1343.5298,4447.3798 1347.4351,4448.7793 1351.3306,4449.9967 C 1363.0477,4453.5767 1374.7037,4455.1916 1386.1859,4455.1916 C 1398.2811,4455.1916 1408.343,4453.4934 1416.3591,4449.9661" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path15005"
d="M 1498.8904,4449.9967 L 1514.1237,4455.0179 C 1515.74,4453.5656 1515.8623,4452.7568 1515.8623,4451.7256 L 1515.8623,4426.2359 C 1526.4954,4436.1741 1534.8173,4442.9937 1540.8294,4446.6946 C 1542.8029,4447.9315 1544.7875,4449.0364 1546.8012,4449.9967 C 1553.9585,4453.4531 1561.3299,4455.1805 1568.9166,4455.1916 C 1575.7973,4455.1916 1582.1375,4453.4419 1587.955,4449.9967 L 1590.4191,4448.4221 C 1602.902,4439.6388 1609.1392,4423.9761 1609.1392,4401.441 L 1609.1392,4320.4746 C 1609.1392,4312.1513 1610.8167,4306.1295 1614.1702,4302.4396 C 1617.5237,4298.7373 1623.1258,4296.825 1630.9891,4296.7124 L 1630.9891,4291.8566 L 1556.9535,4291.8566 L 1556.9535,4296.7124 C 1565.3894,4297.8687 1571.2889,4300.1785 1574.6424,4303.6459 C 1577.9862,4307.2343 1579.6623,4314.9114 1579.672,4326.7119 L 1579.672,4400.7462 C 1579.672,4410.6844 1577.8125,4418.8937 1574.1213,4425.3659 C 1570.4189,4431.9603 1563.6007,4435.2541 1553.6611,4435.2541 C 1546.8415,4435.2541 1539.9094,4432.9331 1532.8549,4428.3108 C 1528.9191,4425.6522 1523.8367,4421.2563 1517.6009,4415.1427 L 1517.6009,4318.0411 C 1517.6009,4309.7192 1519.4409,4304.1157 1523.1419,4301.2222 C 1526.8428,4298.451 1532.6715,4296.9375 1540.6557,4296.7124 L 1540.6557,4291.8566 L 1464.8828,4291.8566 L 1464.8828,4296.7124 C 1473.0936,4297.7561 1478.8083,4299.7699 1482.0492,4302.7857 C 1485.4041,4305.9043 1487.0802,4312.7753 1487.0802,4323.4195 L 1487.0802,4411.3181 C 1487.0802,4418.72 1486.3853,4423.9247 1485.0053,4426.9307 C 1482.7969,4431.3168 1478.2983,4433.5155 1471.4787,4433.5155 C 1470.435,4433.5155 1469.3315,4433.4543 1468.1752,4433.3417 L 1464.1977,4432.8206 L 1464.1977,4438.8939 C 1468.9326,4440.2739 1480.1383,4443.8623 1497.8259,4449.6395 L 1498.8904,4449.9967" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path15007"
d="M 1721.046,4338.0705 L 1789.2516,4338.0705 L 1789.2516,4291.8566 L 1664.6368,4291.8566 L 1664.6368,4516.8542 L 1721.046,4516.8542 L 1721.046,4338.0705" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path15009"
d="M 1870.2708,4430.8165 L 1927.3124,4430.8165 L 1927.3124,4386.1967 L 1870.2708,4386.1967 L 1870.2708,4338.0705 L 1934.9714,4338.0705 L 1934.9714,4291.8566 L 1813.863,4291.8566 L 1813.863,4516.5373 L 1934.9714,4516.5373 L 1934.9714,4470.9669 L 1870.2708,4470.9669 L 1870.2708,4430.8165" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path15011"
d="M 2016.6327,4431.1334 L 2074.9529,4431.1334 L 2074.9529,4386.1967 L 2016.6327,4386.1967 L 2016.6327,4291.8566 L 1959.8982,4291.8566 L 1959.8982,4516.5373 L 2079.7281,4516.5373 L 2079.7281,4470.3332 L 2016.6327,4470.3332 L 2016.6327,4431.1334" />
<path
style="fill:#002759;fill-rule:nonzero;stroke:none"
id="path15013"
d="M 2135.3493,4470.9669 L 2097.1099,4470.9669 L 2097.1099,4516.8542 L 2230.0063,4516.8542 L 2230.0063,4470.9669 L 2191.7572,4470.9669 L 2191.7572,4291.8566 L 2135.3493,4291.8566 L 2135.3493,4470.9669" />
</g>
</g>
</g>
</g></g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 74 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 9.1 KiB

View file

@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600">
<rect width="900" height="600" fill="#d7141a"/>
<rect width="900" height="300" fill="#fff"/>
<path d="M 450,300 0,0 V 600 z" fill="#11457e"/>
</svg>

After

Width:  |  Height:  |  Size: 212 B

View file

@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 370 280">
<rect width="370" height="280" fill="#c60c30"/>
<rect width="40" height="280" x="120" fill="#fff"/>
<rect width="370" height="40" y="120" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 222 B

View file

@ -0,0 +1,22 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 12 6">
<title>Flag of Slovenia</title>
<rect width="12" fill="#ed1c24" height="6"/>
<rect width="12" fill="#005da4" height="4"/>
<rect width="12" fill="#fff" height="2"/>
<g transform="translate(2.2238 1) scale(.12937)">
<svg width="12" viewBox="-120 -190.223125 240 309.188274" height="15.459">
<path d="m110.26-19.478l9.74-143.75a280.22 280.22 0 0 0 -240 0l9.74 143.75a155.61 155.61 0 0 0 110.26 138.45 155.61 155.61 0 0 0 110.26 -138.45" fill="#005da4"/>
<path d="m-90 0a138.29 138.29 0 0 0 90 100.77 138.29 138.29 0 0 0 90 -100.77l-45-60-18 24-27-54-27 54-18-24-45 60" fill="#fff"/>
<g id="wave" fill="#005da4" transform="scale(5) translate(0 5.1962)">
<path d="m-17.196-2.1962a6 6 0 0 0 8.1962 2.1962 6 6 0 0 1 6 0 6 6 0 0 0 6 0 6 6 0 0 1 6 0 6 6 0 0 0 8.1962 -2.1962v1.732a6 6 0 0 1 -8.1962 2.1962 6 6 0 0 0 -6 0 6 6 0 0 1 -6 0 6 6 0 0 0 -6 0 6 6 0 0 1 -8.1962 -2.1962z"/>
</g>
<use xlink:href="#wave" transform="translate(0 17.321)"/>
<g id="s" transform="translate(0,-120) scale(2.25)">
<path stroke-width=".2" d="m0-5l1 3.2679 3.3301-0.7679-2.3301 2.5 2.3301 2.5-3.3301-0.7679-1 3.2679-1-3.2679-3.3301 0.7679 2.3301-2.5-2.3301-2.5 3.3301 0.7679z" fill="#fd0"/>
</g>
<use xlink:href="#s" transform="translate(-33.75,-45)"/>
<use xlink:href="#s" transform="translate(33.75,-45)"/>
<path d="m-111.58-167.05l9.96 146.99a146.95 146.95 0 0 0 101.62 129.95 146.95 146.95 0 0 0 101.62 -129.95l9.96-146.99a280.22 280.22 0 0 0 8.42 3.82l-9.74 143.75a155.61 155.61 0 0 1 -110.26 138.45 155.61 155.61 0 0 1 -110.26 -138.45l-9.74-143.75a280.22 280.22 0 0 0 8.42 -3.82" fill="#ed1c24"/>
</svg>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,76 +0,0 @@
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="566.92944"
height="127.05661"
id="svg1983"
inkscape:version="0.47 r22583"
sodipodi:docname="Z2Z.svg">
<metadata
id="metadata11">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="1004"
id="namedview9"
showgrid="false"
inkscape:zoom="0.89647062"
inkscape:cx="283.46472"
inkscape:cy="57.499599"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg1983" />
<defs
id="defs1985">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 81.248032 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="602.36218 : 81.248032 : 1"
inkscape:persp3d-origin="301.18109 : 54.165354 : 1"
id="perspective13" />
</defs>
<g
id="layer1"
transform="translate(-17.716373,-11.69102)">
<g
transform="matrix(3.543307e-5,0,0,3.543307e-5,5.462343e-4,-6.025515)"
style="fill-rule:evenodd"
id="Layer_x0020_1">
<g
id="_89729424">
<path
d="m 15949500,4085820 c 258030,0 503370,-204070 544270,-461180 43470,-273390 -145940,-473350 -412100,-473350 -241680,0 -484250,212200 -523830,461150 -41530,261180 129490,473380 391660,473380 z m -2267880,-44910 1474550,0 109730,-726370 -680900,0 70890,-469300 610840,0 109730,-726350 -610910,0 64700,-428540 680900,0 109700,-726340 -1474580,0 -464650,3076900 z m -153530,0 -467740,-1591510 858520,-1485390 -836490,0 -633570,1309940 193900,-1309940 -793680,0 -464680,3076900 793750,0 213180,-1411920 284800,1411920 852010,0 z m -4528050,0 762580,0 136180,-901820 c 43760,-289810 51890,-575430 76180,-865140 l 332350,1766960 762550,0 464680,-3076900 -762580,0 -118310,783490 c -53610,355010 -48280,705940 -70790,1060990 l -363360,-1844480 -754800,0 -464680,3076900 z m -1400360,0 109640,-726370 -595290,0 354980,-2350530 -793680,0 -464680,3076900 1389030,0 z m -3726490,0 1474580,0 109700,-726370 -680860,0 70880,-469300 610840,0 109700,-726350 -610910,0 64730,-428540 680870,0 109730,-726340 -1474580,0 -464680,3076900 z m -315970,0 464610,-3076900 -793680,0 -464680,3076900 793750,0 z M 1642530,1731210 c 361800,0 353830,465190 303310,799840 -43750,289710 -177520,763090 -539960,767140 l 236650,-1566980 0,0 z m -1142550,2309700 692590,0 c 482430,0 1354240,-130570 1568700,-1550720 C 2901720,1559780 2505370,964010 1602750,964010 l -638090,0 -464680,3076900 0,0 z m 8179050,0 391470,-2513670 -793680,0 -391540,2513670 793750,0 z"
style="fill:#000000;fill-opacity:1"
id="_47141144" />
<polygon
points="9230140,500000 9230140,500000 7697260,963340 9094490,1374000 "
style="fill:#dc0000;fill-opacity:1"
id="_48064328" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="602.36218"
height="744.05902"
id="svg4327">
<defs
id="defs4329" />
<g
transform="translate(-621.71456,-25.168913)"
id="layer1">
<g
id="g4367">
<path
d="M 639.43106,42.889413 L 639.43106,609.81855 L 780.87788,609.81855 L 922.88428,751.50735 L 922.88428,609.81855 L 1206.3602,609.81855 L 1206.3602,42.889413"
id="path15"
style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 1093.5533,84.317988 C 1071.9262,84.348296 1051.728,91.683355 1039.1071,103.97913 C 1029.3598,113.70396 1022.4556,126.34747 1022.4707,141.41093 C 1022.4478,156.98873 1028.0136,169.481 1036.8385,178.27558 C 1045.6558,187.0851 1057.6415,192.24255 1070.4893,194.34478 C 1082.6564,196.40158 1098.2417,197.03685 1110.0006,199.26007 C 1115.1882,200.19782 1119.9219,202.03532 1123.2341,204.93155 C 1126.5385,207.86542 1128.6787,211.64659 1128.7165,217.40882 C 1128.7091,221.34843 1127.8847,224.04824 1126.826,226.29415 C 1125.7751,228.54011 1124.4138,230.28687 1122.4779,232.34373 C 1116.7385,238.41612 1105.5391,241.07781 1093.5533,241.04 C 1083.5717,241.07043 1072.2739,238.9529 1065.763,232.34373 C 1060.961,227.54943 1057.2407,220.5546 1057.2558,212.68258 L 1057.2558,209.46874 L 1017.9335,209.46874 L 1017.9335,212.68258 C 1017.9561,230.51343 1026.4674,246.22371 1037.5947,256.35301 C 1052.9907,270.38817 1073.7561,275.6285 1093.1752,275.63606 C 1115.5815,275.62094 1137.3069,270.04019 1151.7806,255.59681 C 1161.0968,246.33321 1167.5019,233.47046 1167.4717,216.08547 C 1167.4943,200.0767 1161.4901,187.24409 1151.9696,178.08653 C 1142.4489,168.91385 1129.5483,163.41629 1115.6721,161.45017 C 1103.951,159.92247 1088.0784,158.65224 1076.917,156.91299 C 1072.0472,156.10367 1068.198,154.40997 1065.574,151.80865 C 1062.965,149.19209 1061.4376,145.60783 1061.4149,140.46568 C 1061.4603,134.62802 1063.1239,131.11151 1066.5192,127.42127 C 1072.8409,120.80448 1083.6925,118.51326 1093.3643,118.53594 C 1097.7879,118.53588 1102.7941,119.4585 1107.3539,120.99359 C 1111.914,122.50604 1115.9443,124.7292 1118.3188,127.23222 C 1122.13,131.21738 1125.1397,137.57701 1125.3136,142.92333 L 1125.5027,145.75907 L 1164.825,145.75907 L 1164.825,142.73428 C 1164.5451,126.85412 1156.7488,112.9552 1145.731,102.46674 L 1145.5419,102.46674 C 1132.6641,90.435629 1113.343,84.340673 1093.5533,84.317988 z M 689.36553,87.531829 L 689.36553,272.42222 L 727.74257,272.42222 L 727.74257,208.33445 L 762.33863,208.33445 C 783.43655,208.34183 800.18633,202.4361 811.49149,191.69809 C 822.80415,180.9677 828.52107,165.60926 828.50595,147.83861 C 828.52113,130.06778 822.81178,114.83814 811.49149,104.16818 C 800.17889,93.498291 783.42899,87.516705 762.33863,87.531829 L 689.36553,87.531829 z M 860.45531,87.531829 L 860.45531,272.42222 L 863.4801,272.42222 L 993.92424,272.42222 L 993.92424,236.69187 L 899.0214,236.69187 L 899.0214,193.96668 L 982.58127,193.96668 L 982.58127,158.61443 L 899.0214,158.61443 L 899.0214,123.07313 L 993.92424,123.07313 L 993.92424,87.531829 L 860.45531,87.531829 z M 727.74257,122.12788 L 761.20433,122.12788 C 771.51881,122.13545 778.47589,124.91069 782.94502,129.31176 C 787.39915,133.7204 789.54663,140.01196 789.56175,148.02766 C 789.54663,156.04354 787.39146,162.40298 782.94502,166.74356 C 778.49846,171.08402 771.52643,173.72327 761.20433,173.73839 L 727.74257,173.73839 L 727.74257,122.12788 z"
id="path19"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1,183 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="409.84076"
height="181.36501"
id="svg2"
xml:space="preserve"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs6"><clipPath
id="clipPath18"><path
d="m 0,0 841.89,0 0,595.276 L 0,595.276 0,0 z"
id="path20" /></clipPath><clipPath
id="clipPath50"><path
d="m 0,0 841.89,0 0,595.276 L 0,595.276 0,0 z"
id="path52" /></clipPath><clipPath
id="clipPath122"><path
d="m 0,0 841.89,0 0,595.276 L 0,595.276 0,0 z"
id="path124" /></clipPath></defs><g
transform="matrix(1.25,0,0,-1.25,-321.26087,462.72975)"
id="g10"><g
id="g14"><g
clip-path="url(#clipPath18)"
id="g16"><g
transform="translate(386.0987,297.6378)"
id="g22"><path
d="m 0,0 c 0,-31.228 -25.314,-56.546 -56.547,-56.546 -31.227,0 -56.543,25.318 -56.543,56.546 0,31.229 25.316,56.546 56.543,56.546 C -25.314,56.546 0,31.229 0,0"
id="path24"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(383.1153,297.6378)"
id="g26"><path
d="m 0,0 c 0,-29.582 -23.981,-53.563 -53.564,-53.563 -29.58,0 -53.562,23.981 -53.562,53.563 0,29.582 23.982,53.562 53.562,53.562 C -23.981,53.562 0,29.582 0,0"
id="path28"
style="fill:#254aa5;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g></g></g><g
transform="translate(333.3126,278.5118)"
id="g30"><path
d="M 0,0 -30.347,-21.691 -19.095,13.873 -49.1,36.029 -11.802,36.319 0,71.703 11.802,36.319 49.1,36.029 19.095,13.873 30.347,-21.691 0,0 z"
id="path32"
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(287.0147,282.3889)"
id="g34"><path
d="M 0,0 -8.498,-6.073 -5.347,3.885 -13.75,10.09 -3.305,10.171 0,20.078 3.306,10.171 13.749,10.09 5.347,3.885 8.498,-6.073 0,0 z"
id="path36"
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(368.961,274.9415)"
id="g38"><path
d="M 0,0 -5.946,-4.251 -3.742,2.72 -9.624,7.062 -2.313,7.119 0,14.053 2.313,7.119 9.623,7.062 3.742,2.72 5.948,-4.251 0,0 z"
id="path40"
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(354.171,331.6749)"
id="g42"><path
d="M 0,0 -4.593,-3.284 -2.89,2.101 -7.433,5.454 -1.786,5.499 0,10.855 1.786,5.499 7.434,5.454 2.891,2.101 4.594,-3.284 0,0 z"
id="path44"
style="fill:#fff200;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
id="g46"><g
clip-path="url(#clipPath50)"
id="g48"><g
transform="translate(329.5225,338.3898)"
id="g54"><path
d="m 0,0 c -22.495,0 -40.722,-18.286 -40.722,-40.782 0,-22.494 18.227,-40.781 40.722,-40.781 22.493,0 40.784,18.287 40.784,40.781 C 40.784,-18.288 22.493,0 0,0"
id="path56"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(329.5225,335.3282)"
id="g58"><path
d="m 0,0 c -20.804,0 -37.657,-16.912 -37.657,-37.721 0,-20.804 16.853,-37.716 37.657,-37.716 20.804,0 37.721,16.912 37.721,37.716 C 37.721,-16.916 20.804,0 0,0"
id="path60"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(331.3302,318.8029)"
id="g62"><path
d="m 0,0 c 13.817,-0.43 21.852,-6.716 21.852,-15.938 0,-8.429 -5.212,-13.041 -22.365,-16.085 -12.775,-2.269 -16.155,-5.35 -16.155,-10.611 0,-3.224 1.077,-5.692 2.962,-7.903 -2.869,1.803 -5.176,5.523 -5.176,9.734 0,2.587 0.765,5.039 2.498,7.115 l 0,30.135 c -0.427,0.028 -0.857,0.04 -1.298,0.04 -0.191,0 -0.378,-0.008 -0.559,-0.018 -0.235,-0.016 -0.306,0.256 -0.061,0.359 0.592,0.249 1.233,0.492 1.918,0.723 l 0,6.334 c 0,0.13 0.102,0.234 0.234,0.234 l 3.434,0 c 0.129,0 0.236,-0.104 0.236,-0.234 l 0,-5.252 C -8.378,-0.425 -3.685,0.115 0,0 m -12.48,-30.574 c 0.465,0.253 0.964,0.492 1.485,0.717 6.213,2.678 9.287,7.384 9.287,13.177 0,5.746 -4.245,10.75 -10.772,12.5 l 0,-26.394 z"
id="path64"
style="fill:#121212;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(329.5225,335.3282)"
id="g66"><path
d="m 0,0 c -20.804,0 -37.657,-16.912 -37.657,-37.721 0,-20.802 16.853,-37.716 37.657,-37.716 20.804,0 37.721,16.914 37.721,37.716 C 37.721,-16.916 20.804,0 0,0 m 0.002,-3.617 c 18.849,0 34.102,-15.256 34.102,-34.104 0,-18.845 -15.253,-34.1 -34.102,-34.1 -18.842,0 -34.043,15.255 -34.043,34.1 0,18.848 15.201,34.104 34.043,34.104"
id="path68"
style="fill:#00adef;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(395.2472,280.9357)"
id="g70"><path
d="m 0,0 c -0.305,0 -0.493,0.188 -0.493,0.494 l 0,17.672 c 0,0.305 0.188,0.494 0.493,0.494 l 6.869,0 c 3.979,0 5.953,-2.193 5.953,-5.692 l 0,-0.45 c 0,-2.934 -1.974,-5.707 -5.968,-5.707 l -2.788,0 c -0.304,0 -0.494,-0.19 -0.494,-0.495 l 0,-5.822 C 3.572,0.188 3.384,0 3.079,0 L 0,0 z m 6.941,10.499 c 1.148,0 2.034,0.769 2.034,2.004 l 0,0.421 c 0,1.234 -0.886,2.033 -2.034,2.033 l -2.875,0 c -0.304,0 -0.494,-0.189 -0.494,-0.494 l 0,-3.471 c 0,-0.304 0.19,-0.493 0.494,-0.493 l 2.875,0 z"
id="path72"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(411.4102,281.4298)"
id="g74"><path
d="m 0,0 0,17.817 c 0,0.306 0.189,0.494 0.493,0.494 l 3.079,0 c 0.305,0 0.494,-0.188 0.494,-0.494 L 4.066,0 c 0,-0.306 -0.189,-0.494 -0.494,-0.494 l -3.079,0 C 0.189,-0.494 0,-0.306 0,0"
id="path76"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(420.1222,281.4298)"
id="g78"><path
d="m 0,0 0,17.672 c 0,0.305 0.189,0.494 0.494,0.494 l 7.493,0 c 3.718,0 5.94,-2.222 5.94,-5.736 0,-2.018 -0.785,-3.529 -2.454,-4.545 -0.145,-0.087 -0.218,-0.174 -0.218,-0.291 0,-0.116 0.028,-0.203 0.073,-0.319 l 2.846,-6.927 c 0.131,-0.305 0.188,-0.494 0.188,-0.611 0,-0.115 -0.116,-0.231 -0.348,-0.231 l -3.514,0 c -0.116,0 -0.218,0.072 -0.291,0.231 L 7.377,6.562 C 7.319,6.708 7.204,6.766 7.072,6.766 l -2.512,0 C 4.256,6.766 4.067,6.578 4.067,6.272 L 4.067,0 c 0,-0.306 -0.189,-0.494 -0.494,-0.494 l -3.079,0 C 0.189,-0.494 0,-0.306 0,0 m 10.064,12.154 0,0.508 c 0,1.031 -0.885,1.801 -2.033,1.801 l -3.471,0 c -0.304,0 -0.493,-0.19 -0.493,-0.494 l 0,-3.137 c 0,-0.305 0.189,-0.494 0.493,-0.494 l 3.471,0 c 1.118,0 2.033,0.785 2.033,1.816"
id="path80"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(441.3097,283.8976)"
id="g82"><path
d="M 0,0 C -0.233,0 -0.29,-0.029 -0.334,-0.175 L -1.017,-2.744 C -1.06,-2.89 -1.162,-2.962 -1.307,-2.962 l -3.587,0 c -0.217,0 -0.334,0.072 -0.334,0.218 0,0.072 0.029,0.203 0.058,0.276 0.015,0.043 5.316,18.006 5.316,18.006 0.057,0.203 0.246,0.305 0.463,0.305 l 4.401,0 c 0.217,0 0.406,-0.102 0.465,-0.305 l 5.33,-18.123 c 0.028,-0.087 0.028,-0.116 0.028,-0.159 0,-0.146 -0.102,-0.218 -0.319,-0.218 l -3.602,0 c -0.159,0 -0.262,0.072 -0.305,0.218 L 5.925,-0.175 C 5.882,-0.029 5.808,0 5.591,0 L 0,0 z m 4.487,3.704 c 0.262,0 0.349,0.115 0.305,0.304 l -1.67,6.274 -0.073,0.595 -0.508,0 L 2.469,10.282 0.784,4.008 C 0.74,3.819 0.813,3.704 1.074,3.704 l 3.413,0 z"
id="path84"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(456.8194,281.4298)"
id="g86"><path
d="m 0,0 0,13.969 c 0,0.304 -0.189,0.494 -0.494,0.494 l -3.253,0 c -0.306,0 -0.494,0.189 -0.494,0.493 l 0,2.716 c 0,0.305 0.188,0.494 0.494,0.494 l 11.558,0 c 0.306,0 0.495,-0.189 0.495,-0.494 l 0,-2.716 c 0,-0.304 -0.189,-0.493 -0.495,-0.493 l -3.252,0 c -0.305,0 -0.494,-0.19 -0.494,-0.494 L 4.065,0 c 0,-0.306 -0.188,-0.494 -0.494,-0.494 l -3.078,0 C 0.187,-0.494 0,-0.306 0,0"
id="path88"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(469.2491,280.9357)"
id="g90"><path
d="m 0,0 c -0.305,0 -0.494,0.188 -0.494,0.494 l 0,17.672 c 0,0.305 0.189,0.494 0.494,0.494 l 11.355,0 c 0.305,0 0.495,-0.189 0.495,-0.494 l 0,-2.716 c 0,-0.304 -0.19,-0.493 -0.495,-0.493 l -7.29,0 c -0.303,0 -0.493,-0.189 -0.493,-0.494 l 0,-2.715 c 0,-0.306 0.19,-0.494 0.493,-0.494 l 5.984,0 c 0.305,0 0.494,-0.189 0.494,-0.494 l 0,-2.716 c 0,-0.304 -0.189,-0.493 -0.494,-0.493 l -5.984,0 C 3.762,7.551 3.572,7.363 3.572,7.057 l 0,-2.86 c 0,-0.306 0.19,-0.494 0.493,-0.494 l 7.29,0 c 0.305,0 0.495,-0.189 0.495,-0.494 l 0,-2.715 C 11.85,0.188 11.66,0 11.355,0 L 0,0 z"
id="path92"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(491.0312,280.9357)"
id="g94"><path
d="m 0,0 c -0.305,0 -0.493,0.188 -0.493,0.494 l 0,17.672 c 0,0.305 0.188,0.494 0.493,0.494 l 6.868,0 c 3.979,0 5.955,-2.193 5.955,-5.692 l 0,-0.45 c 0,-2.934 -1.976,-5.707 -5.968,-5.707 l -2.789,0 c -0.305,0 -0.494,-0.19 -0.494,-0.495 l 0,-5.822 C 3.572,0.188 3.384,0 3.079,0 L 0,0 z m 6.941,10.499 c 1.148,0 2.034,0.769 2.034,2.004 l 0,0.421 c 0,1.234 -0.886,2.033 -2.034,2.033 l -2.875,0 c -0.305,0 -0.494,-0.189 -0.494,-0.494 l 0,-3.471 c 0,-0.304 0.189,-0.493 0.494,-0.493 l 2.875,0 z"
id="path96"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(509.2276,283.8976)"
id="g98"><path
d="M 0,0 C -0.233,0 -0.291,-0.029 -0.334,-0.175 L -1.017,-2.744 C -1.061,-2.89 -1.162,-2.962 -1.308,-2.962 l -3.587,0 c -0.216,0 -0.334,0.072 -0.334,0.218 0,0.072 0.03,0.203 0.059,0.276 0.014,0.043 5.315,18.006 5.315,18.006 0.057,0.203 0.247,0.305 0.464,0.305 l 4.401,0 c 0.218,0 0.406,-0.102 0.465,-0.305 l 5.328,-18.123 c 0.029,-0.087 0.029,-0.116 0.029,-0.159 0,-0.146 -0.102,-0.218 -0.318,-0.218 l -3.602,0 c -0.16,0 -0.262,0.072 -0.305,0.218 L 5.924,-0.175 C 5.881,-0.029 5.809,0 5.59,0 L 0,0 z m 4.486,3.704 c 0.262,0 0.349,0.115 0.306,0.304 l -1.67,6.274 -0.073,0.595 -0.509,0 L 2.468,10.282 0.783,4.008 C 0.74,3.819 0.812,3.704 1.074,3.704 l 3.412,0 z"
id="path100"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(522.9649,281.4298)"
id="g102"><path
d="m 0,0 0,17.672 c 0,0.305 0.188,0.494 0.493,0.494 l 7.492,0 c 3.719,0 5.941,-2.222 5.941,-5.736 0,-2.018 -0.784,-3.529 -2.454,-4.545 -0.146,-0.087 -0.218,-0.174 -0.218,-0.291 0,-0.116 0.029,-0.203 0.072,-0.319 l 2.847,-6.927 c 0.131,-0.305 0.188,-0.494 0.188,-0.611 0,-0.115 -0.116,-0.231 -0.348,-0.231 l -3.515,0 c -0.116,0 -0.218,0.072 -0.29,0.231 L 7.377,6.562 C 7.318,6.708 7.202,6.766 7.071,6.766 l -2.511,0 C 4.254,6.766 4.065,6.578 4.065,6.272 L 4.065,0 c 0,-0.306 -0.188,-0.494 -0.494,-0.494 l -3.078,0 C 0.188,-0.494 0,-0.306 0,0 m 10.063,12.154 0,0.508 c 0,1.031 -0.886,1.801 -2.033,1.801 l -3.47,0 c -0.306,0 -0.495,-0.19 -0.495,-0.494 l 0,-3.137 c 0,-0.305 0.189,-0.494 0.495,-0.494 l 3.47,0 c 1.117,0 2.033,0.785 2.033,1.816"
id="path104"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(543.8896,281.4298)"
id="g106"><path
d="m 0,0 0,13.969 c 0,0.304 -0.189,0.494 -0.494,0.494 l -3.253,0 c -0.305,0 -0.493,0.189 -0.493,0.493 l 0,2.716 c 0,0.305 0.188,0.494 0.493,0.494 l 11.559,0 c 0.305,0 0.494,-0.189 0.494,-0.494 l 0,-2.716 c 0,-0.304 -0.189,-0.493 -0.494,-0.493 l -3.251,0 c -0.306,0 -0.495,-0.19 -0.495,-0.494 L 4.066,0 c 0,-0.306 -0.189,-0.494 -0.494,-0.494 l -3.079,0 C 0.189,-0.494 0,-0.306 0,0"
id="path108"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(559.2823,281.4298)"
id="g110"><path
d="m 0,0 0,7.348 -5.445,10.499 c -0.044,0.087 -0.044,0.159 -0.044,0.231 0,0.16 0.073,0.233 0.305,0.233 l 3.413,0 c 0.16,0 0.32,-0.073 0.435,-0.262 l 2.105,-4.066 c 0.611,-1.278 1.176,-2.7 1.176,-3.223 l 0.147,0 c 0,0.508 0.435,1.931 1.074,3.223 l 2.033,4.066 c 0.072,0.189 0.262,0.262 0.406,0.262 l 3.66,0 c 0.189,0 0.334,-0.073 0.334,-0.233 0,-0.072 -0.029,-0.144 -0.073,-0.231 L 4.066,7.348 4.066,0 c 0,-0.306 -0.189,-0.494 -0.494,-0.494 l -3.078,0 C 0.19,-0.494 0,-0.306 0,0"
id="path112"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g></g></g><g
transform="translate(396.3097,321.9025)"
id="g114"><path
d="m 0,0 8.302,0 -0.241,-1.479 -6.581,0 -0.76,-4.862 6.341,0 -0.24,-1.501 -6.341,0 -0.8,-5.261 6.761,0 -0.24,-1.48 -8.462,0 L 0,0 z"
id="path116"
style="fill:#52a5e0;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
id="g118"><g
clip-path="url(#clipPath122)"
id="g120"><g
transform="translate(411.9708,307.3195)"
id="g126"><path
d="M 0,0 0.12,1.18 C -0.5,0.359 -1.9,-0.28 -3.241,-0.28 c -2.12,0 -3.521,1.36 -3.101,4.1 l 1.101,7.122 1.6,0 -1.04,-6.821 c -0.301,-2.02 0.46,-2.881 1.861,-2.881 1.259,0 2.46,0.76 3.16,1.7 l 1.24,8.002 1.62,0 L 1.5,0 0,0 z"
id="path128"
style="fill:#52a5e0;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(423.1905,316.5421)"
id="g130"><path
d="m 0,0 c -0.181,0.059 -0.4,0.079 -0.601,0.079 -1.36,0 -2.38,-0.42 -3.22,-1.66 l -1.16,-7.642 -1.601,0 1.681,10.943 1.28,0 0.019,-1.441 C -2.681,1.399 -1.28,2 -0.16,2 0,2 0.38,1.96 0.5,1.939 L 0,0 z"
id="path132"
style="fill:#52a5e0;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(432.9513,314.1202)"
id="g134"><path
d="m 0,0 c 0,-4.521 -2.4,-7.081 -5.741,-7.081 -2.242,0 -3.782,1.56 -3.782,4.421 0,4.521 2.401,7.082 5.762,7.082 C -1.541,4.422 0,2.861 0,0 m -7.762,-2.439 c 0,-2.141 0.92,-3.121 2.46,-3.121 1.961,0 3.541,1.679 3.541,5.341 0,2.14 -0.9,3.12 -2.44,3.12 -1.981,0 -3.561,-1.68 -3.561,-5.34"
id="path136"
style="fill:#52a5e0;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(433.9093,303.1593)"
id="g138"><path
d="m 0,0 2.34,15.103 1.28,0 0.04,-1.341 c 0.681,1 2.221,1.621 3.221,1.621 2.361,0 3.441,-1.641 3.441,-4.141 C 10.322,7.101 8.241,3.88 4.4,3.88 3.681,3.88 2.96,4.02 2.28,4.28 L 1.62,0 0,0 z m 4.841,5.4 c 2.421,0 3.701,2.361 3.701,5.402 0,2.04 -0.78,3.06 -2.161,3.06 -1.22,0 -2.42,-1.16 -2.96,-2.2 L 2.54,6.021 C 3.24,5.601 4.02,5.4 4.841,5.4"
id="path140"
style="fill:#52a5e0;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(449.71,307.0392)"
id="g142"><path
d="m 0,0 c -2.6,0 -3.641,1.841 -3.641,4.44 0,4.403 2.541,7.063 5.601,7.063 2.021,0 3.281,-1.24 3.281,-2.881 0,-2.881 -2.6,-3.461 -5.161,-3.461 -0.98,0 -1.921,0.16 -1.921,0.16 -0.24,-2.36 0.38,-3.8 2.261,-3.8 1.16,0 2.221,0.3 3.261,0.759 L 4.061,1.04 C 3.021,0.48 1.54,0 0,0 m 0.56,6.562 c 1.64,0 3.001,0.459 3.001,1.72 0,1.12 -0.861,1.68 -2.04,1.68 -1.601,0 -2.601,-1.3 -3.101,-3.24 0,0 1.22,-0.16 2.14,-0.16"
id="path144"
style="fill:#52a5e0;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(463.5499,309.5206)"
id="g146"><path
d="m 0,0 c -0.86,-1.441 -2.12,-2.481 -3.78,-2.481 -2.381,0 -3.322,1.9 -3.322,4.241 0,3.881 1.881,7.261 5.381,7.261 1.081,0 2.341,-0.38 2.881,-1.26 l 0.321,0.98 1.259,0 -1.12,-6.021 -0.2,-4.921 -1.36,0 L 0,0 z m 0,2.76 0.7,3.18 c -0.48,1.061 -1.721,1.561 -2.881,1.561 -2.08,0 -3.12,-2.681 -3.12,-5.302 0,-1.539 0.48,-3.16 1.941,-3.16 1.28,0 2.78,1.78 3.36,3.721"
id="path148"
style="fill:#52a5e0;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g><g
transform="translate(474.6095,307.3195)"
id="g150"><path
d="m 0,0 1.001,6.481 c 0.279,1.761 0.04,3.201 -1.801,3.201 -1.34,0 -2.62,-1.02 -3.221,-2.18 L -5.181,0 l -1.6,0 1.68,10.942 1.281,0 0.019,-1.34 c 0.721,0.861 1.981,1.621 3.461,1.621 2.701,0 3.421,-1.801 3.001,-4.442 L 1.621,0 0,0 z"
id="path152"
style="fill:#52a5e0;fill-opacity:1;fill-rule:nonzero;stroke:none" /></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 17 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="500" height="500" viewBox="0 0 340 340">
<rect width="340" height="340" fill="#E2001A"/>
<path id="S" d="M 87,239 L 100,219 C 28,179 -6,266 59,277 C 91,282 63,309 33,283 L 20,305 C 94,354 142,256 66,249 C 50,248 49,223 87,239 z" style="fill:#ffffff;stroke:none"/>
<path id="P" d="M 110,210 V 315 H 140 V 280 H 163 C 200,280 201,209 163,210 H 110 z M 140,233 H 152 C 165,233 165,258 152,258 H 140 V 233 z" style="fill:#ffffff;fill-rule:evenodd;stroke:none"/>
<path id="D" d="M 198,210 V 315 H 244 C 303,316 303,210 245,210 H 198 z M 227,235 H 232 C 269,235 269,291 232,291 H 227 V 235 z" style="fill:#ffffff;fill-rule:evenodd;stroke:none"/>
</svg>

Before

Width:  |  Height:  |  Size: 717 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 48 KiB

View file

@ -157,7 +157,7 @@
border-radius: $border-radius;
a {
color: $text-color-secondary;
color: $medium-blue;
font-weight: 600;
&:hover {

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