feat(hikes): inline cantonal Wappen next to region label

26 public-domain coats of arms fetched once from Wikimedia Commons
via scripts/download-cantons.ts and committed under static/cantons/.
$lib/data/cantons.ts maps Swisstopo's free-form name (German default,
French/Italian alternates for Romandie / Ticino) to the ISO code +
emblem URL.

Card shows an 18×22 emblem, detail page a 24×30 one — both with a
drop-shadow so they read against the dark hero gradient. Unknown
canton names fall back to plain text without the emblem.

The downloaded SVGs are written verbatim — earlier draft prepended a
provenance HTML comment but that breaks the leading `<?xml … ?>` and
browsers refuse to render the image. Provenance lives in the script's
CANTONS table instead.
This commit is contained in:
2026-05-19 08:44:30 +02:00
parent 2c3886296c
commit cfdd58fb18
31 changed files with 2371 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "homepage", "name": "homepage",
"version": "1.74.1", "version": "1.75.0",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {
+126
View File
@@ -0,0 +1,126 @@
/**
* One-shot fetch of the 26 Swiss cantonal coats of arms (Wappen) from
* Wikimedia Commons into `static/cantons/<iso-code>.svg`. Files are
* public-domain Swiss official insignia (PD-CH-coat-of-arms); we keep
* the source filename in a header comment for traceability.
*
* Re-run with `pnpm exec vite-node scripts/download-cantons.ts` to refresh
* any missing files. Existing files are left alone — the cantonal arms
* don't change.
*/
import { promises as fs } from 'node:fs';
import path from 'node:path';
type CantonEntry = {
code: string; // ISO 3166-2:CH (lowercase for filename)
commonsFile: string; // Commons filename WITHOUT the `File:` prefix
};
// Names follow the "Wappen <German-name> matt.svg" convention used across
// almost all cantons on Commons. The handful of exceptions (Basel-Stadt,
// Basel-Landschaft, the two Appenzells) are spelt out explicitly. If a
// fetch returns 404 the script logs the failure and continues so the
// remaining cantons still land.
const CANTONS: CantonEntry[] = [
{ code: 'ag', commonsFile: 'Wappen Aargau matt.svg' },
{ code: 'ai', commonsFile: 'Wappen Appenzell Innerrhoden matt.svg' },
{ code: 'ar', commonsFile: 'Wappen Appenzell Ausserrhoden matt.svg' },
{ code: 'be', commonsFile: 'Wappen Bern matt.svg' },
{ code: 'bl', commonsFile: 'Wappen Basel-Landschaft matt.svg' },
{ code: 'bs', commonsFile: 'Wappen Basel-Stadt matt.svg' },
{ code: 'fr', commonsFile: 'Wappen Freiburg matt.svg' },
{ code: 'ge', commonsFile: 'Wappen Genf matt.svg' },
{ code: 'gl', commonsFile: 'Wappen Glarus matt.svg' },
{ code: 'gr', commonsFile: 'Wappen Graubünden matt.svg' },
{ code: 'ju', commonsFile: 'Wappen Jura matt.svg' },
{ code: 'lu', commonsFile: 'Wappen Luzern matt.svg' },
{ code: 'ne', commonsFile: 'Wappen Neuenburg matt.svg' },
{ code: 'nw', commonsFile: 'Wappen Nidwalden matt.svg' },
{ code: 'ow', commonsFile: 'Wappen Obwalden matt.svg' },
{ code: 'sg', commonsFile: 'Wappen St. Gallen matt.svg' },
{ code: 'sh', commonsFile: 'Wappen Schaffhausen matt.svg' },
{ code: 'so', commonsFile: 'Wappen Solothurn matt.svg' },
{ code: 'sz', commonsFile: 'Wappen Schwyz matt.svg' },
{ code: 'tg', commonsFile: 'Wappen Thurgau matt.svg' },
{ code: 'ti', commonsFile: 'Wappen Tessin matt.svg' },
{ code: 'ur', commonsFile: 'Wappen Uri matt.svg' },
{ code: 'vd', commonsFile: 'Wappen Waadt matt.svg' },
{ code: 'vs', commonsFile: 'Wappen Wallis matt.svg' },
{ code: 'zg', commonsFile: 'Wappen Zug matt.svg' },
{ code: 'zh', commonsFile: 'Wappen Zürich matt.svg' }
];
const OUT_DIR = path.resolve(process.cwd(), 'static', 'cantons');
const UA = 'bocken-homepage cantons-downloader (https://bocken.org)';
async function exists(p: string): Promise<boolean> {
try { await fs.access(p); return true; } catch { return false; }
}
/** Resolve a Commons `File:Foo.svg` to its actual upload.wikimedia.org URL
* via the public API. Returns null on failure (typo in filename, etc.). */
async function resolveCommonsUrl(file: string): Promise<string | null> {
const url =
'https://commons.wikimedia.org/w/api.php' +
'?action=query&format=json&prop=imageinfo&iiprop=url' +
'&titles=' + encodeURIComponent('File:' + file);
const res = await fetch(url, { headers: { 'User-Agent': UA } });
if (!res.ok) return null;
const json = (await res.json()) as {
query?: { pages?: Record<string, { imageinfo?: Array<{ url?: string }> }> };
};
const pages = json.query?.pages;
if (!pages) return null;
for (const page of Object.values(pages)) {
const u = page.imageinfo?.[0]?.url;
if (u) return u;
}
return null;
}
async function downloadCanton(c: CantonEntry): Promise<'ok' | 'cached' | 'failed'> {
const outPath = path.join(OUT_DIR, `${c.code}.svg`);
if (await exists(outPath)) return 'cached';
const url = await resolveCommonsUrl(c.commonsFile);
if (!url) {
console.warn(`[cantons] ${c.code}: could not resolve Commons file "${c.commonsFile}"`);
return 'failed';
}
const res = await fetch(url, { headers: { 'User-Agent': UA } });
if (!res.ok) {
console.warn(`[cantons] ${c.code}: HTTP ${res.status} fetching ${url}`);
return 'failed';
}
const body = await res.text();
// Don't prepend anything: most of these files start with an `<?xml … ?>`
// declaration, and that MUST be the very first thing in the file or
// strict XML parsers (including browsers loading via `<img>`) reject
// the document. Provenance is tracked in the CANTONS table above
// instead — keep it out of the file bytes.
await fs.writeFile(outPath, body);
return 'ok';
}
async function main() {
await fs.mkdir(OUT_DIR, { recursive: true });
let ok = 0, cached = 0, failed = 0;
for (const c of CANTONS) {
const r = await downloadCanton(c);
if (r === 'ok') ok++;
else if (r === 'cached') cached++;
else failed++;
if (r === 'ok') console.log(`[cantons] ${c.code}: downloaded`);
else if (r === 'cached') console.log(`[cantons] ${c.code}: cached`);
}
console.log(`[cantons] done — ${ok} downloaded, ${cached} cached, ${failed} failed`);
if (failed > 0) process.exitCode = 1;
}
main().catch((err) => {
console.error('[cantons] fatal:', err);
process.exit(1);
});
+40 -1
View File
@@ -6,6 +6,7 @@
import TrendingDown from '@lucide/svelte/icons/trending-down'; import TrendingDown from '@lucide/svelte/icons/trending-down';
import Mountain from '@lucide/svelte/icons/mountain'; import Mountain from '@lucide/svelte/icons/mountain';
import CalendarRange from '@lucide/svelte/icons/calendar-range'; import CalendarRange from '@lucide/svelte/icons/calendar-range';
import { resolveCanton } from '$lib/data/cantons';
import type { HikeManifestEntry } from '$types/hikes'; import type { HikeManifestEntry } from '$types/hikes';
interface Props { interface Props {
@@ -48,6 +49,8 @@
const days = (Date.now() - t) / 86_400_000; const days = (Date.now() - t) / 86_400_000;
return days >= 0 && days <= 30; return days >= 0 && days <= 30;
}); });
const canton = $derived(resolveCanton(hike.canton));
</script> </script>
<a class="card" href={resolve('/hikes/[slug]', { slug: hike.slug })} style="view-transition-name: hike-{hike.slug}"> <a class="card" href={resolve('/hikes/[slug]', { slug: hike.slug })} style="view-transition-name: hike-{hike.slug}">
@@ -88,7 +91,22 @@
<header class="head"> <header class="head">
<h2 class="title">{hike.title}</h2> <h2 class="title">{hike.title}</h2>
{#if hike.region} {#if hike.region}
<p class="region">{hike.region}{hike.canton && hike.canton !== hike.region ? `, ${hike.canton}` : ''}</p> <p class="region">
{#if canton}
<img
class="canton-emblem"
src={canton.emblemUrl}
alt=""
aria-hidden="true"
loading="lazy"
decoding="async"
/>
{/if}<span class="region-text"
>{hike.region}{hike.canton && hike.canton !== hike.region
? `, ${hike.canton}`
: ''}</span
>
</p>
{/if} {/if}
</header> </header>
@@ -275,11 +293,32 @@
} }
.region { .region {
display: flex;
align-items: center;
gap: 0.4rem;
margin: 0; margin: 0;
font-size: 0.85rem; font-size: 0.85rem;
color: var(--color-text-secondary); color: var(--color-text-secondary);
} }
.canton-emblem {
flex: 0 0 auto;
width: 18px;
height: 22px;
object-fit: contain;
/* Most cantonal arms are tall-rectangle shields, a couple (Schwyz,
* Solothurn) are squarer — `contain` keeps the proportions correct
* inside the fixed slot so a row of cards stays visually aligned. */
filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.18));
}
.region-text {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.metrics { .metrics {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
+86
View File
@@ -0,0 +1,86 @@
/**
* Swiss-canton lookup. `resolveCanton(name)` takes whatever the Swisstopo
* reverse-geocode returns (German is the default, but French/Italian names
* surface for Romandie / Ticino hikes) and resolves it to a stable record
* carrying the ISO code, a short label for tooltips, and the URL of the
* pre-downloaded coat-of-arms SVG.
*
* The 26 SVGs live in `static/cantons/<iso-code>.svg` — fetched once by
* `scripts/download-cantons.ts` and committed.
*/
export type Canton = {
/** ISO 3166-2:CH code, lowercase (e.g. 'ar'). */
code: string;
/** Canonical German name (matches the `static/cantons/` filename map). */
name: string;
/** Short label used in tooltips / compact UIs. */
abbr: string;
/** Absolute URL of the coat-of-arms SVG. */
emblemUrl: string;
};
// Tuple format keeps the file compact: [code, German name, short abbr, ...alternate names].
// Alternates cover French/Italian renderings that Swisstopo occasionally returns
// for cantons with multiple official languages, plus the few historic spellings.
const CANTON_TABLE: ReadonlyArray<readonly [string, string, string, ...string[]]> = [
['ag', 'Aargau', 'AG'],
['ai', 'Appenzell Innerrhoden', 'AI'],
['ar', 'Appenzell Ausserrhoden', 'AR'],
['be', 'Bern', 'BE', 'Berne'],
['bl', 'Basel-Landschaft', 'BL', 'Bâle-Campagne'],
['bs', 'Basel-Stadt', 'BS', 'Bâle-Ville'],
['fr', 'Freiburg', 'FR', 'Fribourg'],
['ge', 'Genf', 'GE', 'Genève', 'Geneva'],
['gl', 'Glarus', 'GL'],
['gr', 'Graubünden', 'GR', 'Grigioni', 'Grischun', 'Grisons'],
['ju', 'Jura', 'JU'],
['lu', 'Luzern', 'LU', 'Lucerne'],
['ne', 'Neuenburg', 'NE', 'Neuchâtel'],
['nw', 'Nidwalden', 'NW'],
['ow', 'Obwalden', 'OW'],
['sg', 'St. Gallen', 'SG', 'Sankt Gallen', 'Saint-Gall', 'San Gallo'],
['sh', 'Schaffhausen', 'SH', 'Schaffhouse'],
['so', 'Solothurn', 'SO', 'Soleure'],
['sz', 'Schwyz', 'SZ'],
['tg', 'Thurgau', 'TG', 'Thurgovie'],
['ti', 'Tessin', 'TI', 'Ticino'],
['ur', 'Uri', 'UR'],
['vd', 'Waadt', 'VD', 'Vaud'],
['vs', 'Wallis', 'VS', 'Valais', 'Vallese'],
['zg', 'Zug', 'ZG', 'Zoug'],
['zh', 'Zürich', 'ZH', 'Zurich', 'Zurigo']
];
// Normalise for lookup: strip accents, lowercase, collapse whitespace.
// Lets "St. Gallen" / "Sankt Gallen" / "saint-gall" all match the same entry.
function normalise(s: string): string {
return s
.normalize('NFD')
.replace(/[̀-ͯ]/g, '')
.replace(/[^a-z0-9]+/gi, ' ')
.trim()
.toLowerCase();
}
const BY_NAME = new Map<string, Canton>();
for (const [code, name, abbr, ...alts] of CANTON_TABLE) {
const canton: Canton = {
code,
name,
abbr,
emblemUrl: `/cantons/${code}.svg`
};
BY_NAME.set(normalise(name), canton);
for (const alt of alts) BY_NAME.set(normalise(alt), canton);
// Also accept the ISO code itself (`'AR'`, `'ar'`).
BY_NAME.set(normalise(code), canton);
}
/** Resolve a free-form canton name (any official language) to a Canton
* record. Returns null if the name doesn't match a known canton — caller
* should fall back to plain text without the emblem. */
export function resolveCanton(name: string | null | undefined): Canton | null {
if (!name) return null;
return BY_NAME.get(normalise(name)) ?? null;
}
+35 -1
View File
@@ -16,6 +16,7 @@
import CalendarRange from '@lucide/svelte/icons/calendar-range'; import CalendarRange from '@lucide/svelte/icons/calendar-range';
import Download from '@lucide/svelte/icons/download'; import Download from '@lucide/svelte/icons/download';
import { buildGpx, type GpxWritePoint } from '$lib/gpx'; import { buildGpx, type GpxWritePoint } from '$lib/gpx';
import { resolveCanton } from '$lib/data/cantons';
import type { HikeTrackPoint } from '$types/hikes'; import type { HikeTrackPoint } from '$types/hikes';
import type { PageProps } from './$types'; import type { PageProps } from './$types';
@@ -49,6 +50,8 @@
return () => mq.removeEventListener('change', onChange); return () => mq.removeEventListener('change', onChange);
}); });
const canton = $derived(resolveCanton(hike.canton));
const heroPose = $derived.by(() => { const heroPose = $derived.by(() => {
if ( if (
narrowViewport && narrowViewport &&
@@ -334,7 +337,21 @@
<h1>{hike.title}</h1> <h1>{hike.title}</h1>
{#if hike.region} {#if hike.region}
<p class="region"> <p class="region">
{hike.region}{hike.canton && hike.canton !== hike.region ? `, ${hike.canton}` : ''} {#if canton}
<img
class="canton-emblem"
src={canton.emblemUrl}
alt=""
aria-hidden="true"
loading="eager"
decoding="async"
/>
{/if}
<span class="region-text">
{hike.region}{hike.canton && hike.canton !== hike.region
? `, ${hike.canton}`
: ''}
</span>
</p> </p>
{/if} {/if}
</div> </div>
@@ -571,11 +588,28 @@
} }
.region { .region {
display: flex;
align-items: center;
gap: 0.5rem;
margin: 0.2rem 0 0; margin: 0.2rem 0 0;
opacity: 0.9; opacity: 0.9;
text-shadow: 0 1px 4px rgb(0 0 0 / 0.45); text-shadow: 0 1px 4px rgb(0 0 0 / 0.45);
} }
.canton-emblem {
flex: 0 0 auto;
width: 24px;
height: 30px;
object-fit: contain;
/* Drop shadow keeps the emblem readable on the gradient overlay
* (which only goes dark from ~50 % down). */
filter: drop-shadow(0 1px 3px rgb(0 0 0 / 0.5));
}
.region-text {
min-width: 0;
}
.metrics { .metrics {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1900 2298">
<title>Wappen Aargau</title>
<path d="m949.4 7.088h939.6v1381c0 497-420 899-939.1 899-518.5 0-939-402-939-899v-1381l938.5 0.088z" stroke="#000" stroke-width="14.18" fill="#248bcc"/>
<path d="m949.9 2287c-518.5 0-939-402-939-899v-1381l938.5 0.088 0.5 2280z"/>
<g fill="#fff">
<path d="m919.9 857.4c-44.4 0-64.7-9.8-83-19.5-9.8-5.7-19.9-11.5-33.8-15.5-0.3-0.1-0.7-0.2-1.1-0.2-0.4-0.2-0.7-0.3-1.2-0.5-10-2.6-21.9-4.3-37.6-4.3h-0.5-0.6c-20.9 0-35.1 3-46.6 7.4-31.7 11.6-46.3 32.4-108.6 32.6-17-0.1-30.5-1.6-41.5-4-46.1-9.9-52.4-36-113.4-36h-0.6-0.5c-75.6 0-70 40-157 40s-78.5-40-154.2-40c-70.31 0-72.77 33.6-125.3 38.3l-0.01 127.4c52.54-4.7 55-38.2 125.3-38.2 75.7 0 67.2 40 154.2 40 12.8 0 23.5-0.9 32.8-2.4v0.1c52.3-4.7 54.9-38.1 124.7-38.3 60.6 0.2 66.5 26.1 114 36.1 10.9 2.4 24.1 3.9 40.8 3.9 0.2 0 0.4-0.1 0.7-0.1s0.5 0.1 0.7 0.1c65.5 0 77.6-20.9 107.9-32.6 12-4.3 26.5-7.3 47.2-7.4 15.7 0.1 27.9 1.8 38.1 4.5 0.5 0.1 0.8 0.2 1.2 0.3 0.4 0 0.8 0.2 1.1 0.3 13.4 3.9 23.3 9.6 33.8 15.4 11.6 6.6 22.8 13.1 39.8 16.3v-0.3c11.5 2.5 25.3 4.1 43.2 4.1 11.4 0 21.2-0.7 29.7-1.8v-127.5c-8.5 1.1-18.3 1.8-29.7 1.8"/>
<path d="m919.9 1028c-44.4 0-64.7-10-83-20-9.8-6-19.9-11.3-33.8-15.3-0.3-0.1-0.7-0.2-1.1-0.2-0.4-0.2-0.7-0.3-1.2-0.4-10-2.7-21.9-4.4-37.6-4.4h-0.5-0.6c-20.9 0-35.1 3-46.6 7.5-31.7 11.8-46.3 31.8-108.6 32.8-17 0-30.5-2-41.5-4-46.1-10-52.4-36.3-113.4-36.3h-0.6-0.5c-75.6 0-70 40.3-157 40.3s-78.5-40.3-154.2-40.3c-70.31 0-72.77 33.3-125.3 38.3l-0.01 127c52.54-4 55-38 125.3-38 75.7 0 67.2 40 154.2 40 12.8 0 23.5-1 32.8-2 52.3-5 54.9-38 124.7-38 60.6 0 66.5 26 114 36 10.9 2 24.1 4 40.8 4h0.7 0.7c65.5 0 77.6-21 107.9-33 12-4 26.5-7 47.2-7 15.7 0 27.9 1 38.1 4h1.2c0.4 0 0.8 1 1.1 1 13.4 4 23.3 9 33.8 15 11.6 7 22.8 13 39.8 16 11.5 3 25.3 4 43.2 4 11.4 0 21.2 0 29.7-2v-127c-8.5 1-18.3 2-29.7 2"/>
<path d="m919.9 1198c-44.4 0-64.7-10-83-20-9.8-5-19.9-11-33.8-15h-1.1c-0.4 0-0.7-1-1.2-1-10-2-21.9-4-37.6-4h-0.5-0.6c-20.9 0-35.1 3-46.6 7-31.7 12-46.3 33-108.6 33-17 0-30.5-2-41.5-4-46.1-10-52.4-36-113.4-36h-0.6-0.5c-75.6 0-70 40-157 40s-78.5-40-154.2-40c-70.31 0-72.77 33-125.3 38l-0.01 128c52.54-5 55-39 125.3-39 75.7 0 67.2 40 154.2 40 12.8 0 23.5 0 32.8-2 52.3-5 54.9-38 124.7-38 60.6 0 66.5 26 114 36 10.9 2 24.1 4 40.8 4h0.7 0.7c65.5 0 77.6-21 107.9-33 12-4 26.5-7 47.2-7 15.7 0 27.9 2 38.1 4 0.5 0 0.8 0 1.2 1h1.1c13.4 4 23.3 10 33.8 15 11.6 7 22.8 14 39.8 17v-1c11.5 3 25.3 4 43.2 4 11.4 0 21.2 0 29.7-1v-128c-8.5 1-18.3 2-29.7 2"/>
</g>
<path d="m1640 639.8 55 148.7h145l-114 78.7 43 140.8-129-82.7-129 82.7 45-141.9-116-77.6h146l54-148.7z" stroke="#000" stroke-width="14.18" fill="#fff"/>
<path d="m1191 639.8 54 148.7h146l-115 78.7 44 140.8-129-82.7-128 82.7 44-141.9-116.4-77.6h145.4l55-148.7z" stroke="#000" stroke-width="14.18" fill="#fff"/>
<path d="m1416 1033 55 149h145l-116 78 45 142-129-83-129 82 44-141-115-79h145l55-148z" stroke="#000" stroke-width="14.18" fill="#fff"/>
<path d="m948.3 5.674v2281" stroke="#000" stroke-width="10.34" fill="none"/>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

+163
View File
@@ -0,0 +1,163 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="407.152px" height="493.613px" viewBox="-176.681 -214.424 407.152 493.613"
enable-background="new -176.681 -214.424 407.152 493.613" xml:space="preserve">
<g>
<path fill="#FFFFFF" d="M26.78-212.905h202.184v297.18c0,106.805-90.469,193.375-202.055,193.375
c-111.59,0-202.07-86.57-202.07-193.375v-297.18H26.78z"/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="-176.681" y="-214.424" width="407.152" height="493.613"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="none" stroke="#010202" stroke-width="3.048" d="M26.78-212.905h202.184v297.18
c0,106.805-90.469,193.375-202.055,193.375c-111.59,0-202.07-86.57-202.07-193.375v-297.18H26.78z"/>
</g>
</g>
</g>
</g>
<path fill="#010202" d="M-39.787-112.249c21.641,8.055,45.262,17.223,50.535,21.504c1.504,1.223-14.84,14.832-15.574,41.688
c-11.371,4.656-14.555-0.41-14.555-0.41s-3.125,0.473-4.063,2.504c-8.273-4.766-6.391-11.215-12.25-7.293
c-1.375,0.918-6.941-9.707-9.328-4.969c-5.949-1.359-5.344-7.785-6.973-8.145c-1.602-0.336-5.016,2.246-5.945,0.504
c-1.504-2.938-3.238-6.41-3.816-6.922c-0.609-0.496-1.375,1.625-3.871,0.84c-2.551-0.813-3.93-6.773-6.129-7.621
c-4.535,1.598-6.84-5.145-7.113-6.059c-0.742,1.852-6.863,2.488-5.965-0.648c3.152-10.926-13.355-13.344-11.465-23.848
c-23.656-3.695-17.48-41.902-22.121-42.711c-8.559-1.504-14.48-0.969-14.48-0.969s0.961-6.168,12.914-6.934
c-6.121-3.984-14.402-5.023-14.402-5.023s3.57-4.824,18.418-2.25c-3.066-7-10.891-10.449-10.891-10.449s9.152-2.094,18.297,5.504
c-0.457-8.758-7.656-15.887-7.656-15.887s8.945-1.09,17.09,12.719c2.277-8.301-0.777-17.125-0.777-17.125s9.578,1.238,11.84,18.527
c7.816,10.352,1.848,25.719,9.832,43.496C-73.794-122.338-57.892-118.987-39.787-112.249"/>
<path fill="#010202" d="M-9.994,128.541c6.68-22.75,29.383-36.891,52.402-35c1.219-4.688,2.266-9.891,1.844-10.719
C30.749,54.306,22.717,52.431,22.717,52.431s-29.762-6.672-47.746,1.672c-3.598,1.688-30.469,17.594-25.176,18.766
c8.691,1.906-3.461,7.516-5.398,12.188c-1.91,4.672,2.855,3.547,3.07,4.109c0.531,1.422-12.023,13.578-8.902,14.219
c11.648,2.25-5.238,13.828-1.633,14.688c10.031,2.359-2.262,12.438,1.32,12.953c1.266,0.164,3.719,0.797,5.703,1.078
c-1.117,1.984-4.094,7.688-3.445,13.594c0.277,2.734,3.496-2.492,5.133,1.109c-8.254,6.688,7.18,25.813,8.266,37.203
c-5.59,0.625-4.656-6.422-9.504-8.508c-2.617,4.758-7.938,4.703-14.289,3.164c-6.32-1.547-13.727-4.625-20.488-4.719
c-14.91-3.758-21.102,1.328-22.461,3.031c0.445,0.141,5.68,1.328,13.168,4.539c-12.648,0.922-14.898,8.523-14.898,8.523
s6.512-0.375,14.609,1.203c-13.121,6.609-11.313,13.922-11.313,13.922s7.266-4.266,14.754-4.844c-4.051,3-7.402,9.578-4.922,14.281
c2.977-2.766,8.719-5.391,10.785-6.25c-2.785,6.297-2.359,10.891,0.711,14.25c8.16-11.156,11.105-10.469,13.48-10.297
c1.297,0.117,4.824,1.234,10.016,1.773c4.32,0.453,9.793,0.289,16.055,0.648c15.016,0.859,32.457,1.352,43.938-10.156
C-10.001,178.947-16.443,150.423-9.994,128.541"/>
<path fill="#010202" d="M15.397-121.018c0,0-0.695,7.664,4.945,8.16c1.816,0.145,8.504-0.48,17.16,0.688
c18.203,2.418,38.859,8.902,53.938-5.801c13-12.711,2.797-31.521,14.484-39.543c9.594-6.641,20.156-0.656,20.578,1.91
c-14.344-5.23-17.359-0.598-19.016,0.508c-11.563,7.773,5.703,47.32-38.219,48.492c-15.297,0.41-31.398,1.234-38.375,7.984
c-3.961,3.801-7.922,3.586-13.625,8.738C1.702-75.948,1.147-58.354-0.466-49.729c-0.641,3.391,1.121,2.313,1.121,2.313
s9.832-2.488,15.863-3.203c1.078-0.141,1.207,0.488,1.207,0.488s0.328,1.184-1.039,1.281
c-20.082,1.184-73.305,24.457-97.199,24.703c-1.508-0.328-15.426-3.473-17.152-10.934c1.934-2.344,10.84,11.375,19.184,7.184
c-9.824-8.066-15.863-27.199-27.051-32.953c-7.184-20.582-16.398-20.938-16.398-20.938s5.273,17.266,3.594,20.73
c-14.496-13.898-22.547-9.953-22.547-9.953l12.922,16.266c0,0-14.906-6.785-21.891-0.859c8.707,3,16.656,8.547,16.449,10.363
c-1.086,0.184-13.52-0.953-16.129,6.063c4.938,0.594,13.641,3.031,15.059,5.457c-5.16,2.313-14.617,5.625-13.344,13.512
c6.445-1.266,11.473-4.871,17.238-4.016c7.824-2.379,14.512,5.871,23.426,14.719c10.48,10.41,25.824,20.281,33.063,17.375
c1.746-0.703,0.727-2.309,2.008-2.527c1.313-0.199,10.168,7.441,10.832,5.266c2.207-7.25,2.52-3.313,6.504-1.563
c2.023,0.875,5.234,0.203,7.961,2.266c1.75-7.785,12.984,3.922,15.535-2.801c5.625,0.832,11.609,4.656,10.727-1.871
c7.258,4.512,7.914,2.184,11.578,3.887C-8.601,3.87-1.211,9.249,1.543,9.198c28.944-0.575,36.077-8.919,41.6-20.247
c2.234-4.578,4.703-4.266,3.969-1.594c-4.109,14.441-14.5,24.891-38.785,23.754c-1.348-0.066-1.977,0.473-2.531,1.297
c-0.551,0.824-0.527,1.488-0.383,4.406c0.23,6,17.137,25.313,26.426,38.594c12.18,17.375,16.836,26.344,15.344,30.211
c-2.602,6.859-7.742,43.375-7.492,44.531c0.266,1.156,2.227,2.188,4.195,0.578c2.359,2.453-2.18,11.859,0.75,12.094
c2.188-1.391,4.922-2.594,4.922-2.594s-4.586,10.563,2,15.609c0.867-2.953,3.461-5.109,3.461-5.109s-1.297,10.234,5.094,13.094
c0.094-0.641,0.016-1.063,0.734-4.313c3.828,12.375,5.641,13.516,6.625,12.641c1.031-0.828-1.844-5.172,1.508-4.219
c1.148,10.797,4.531,10.656,4.531,10.656s0.422-0.453,2.031-2.969c3.82,9.172,25.047,18.328,21.211,40.344
c-0.75,0.492-2.5,0.422-3.016-1.281c-0.523-1.703-1.852-6.719-2.469-7.406c-0.609-0.688-2.438-2.891-16.625-4.406
c-14.219-1.469-21.25,4.984-21.25,4.984s-15.719-4.688-24.125,5.234c4.969-1.047,17.227,4.828,17.227,4.828
s-12.617,2.719-14.539,14.25c8.969-4.156,18.125-3.016,18.125-3.016s-11.133,7.625-8.883,18.406
c7.836-7.357,16.07-9.281,16.07-9.281s-7.563,11.359-1.297,18.922c3.063-3.97,8.625-12.281,12.844-11.641
c1.703,11.25,8.859,15.234,9.859,14.438c0.961-0.781-1.938-10.392,5.273-16.328c12.383-2.656,42.789-7.867,54.547-33.313
c-1.383-7.852-26.266-44.734-25.742-71.273c0.148-7.43,1.281-36.773,1.281-36.773s0.906-15.523-5.906-26.969
c4.219,0.313,5.859,7.844,8.266,9.203c2.445,1.375,4.359-2.078,4.359-2.078l-0.898-6.469l4.836,5.234c0,0,4.164-8.234,0.672-18.414
c-3.5-10.18-19.836-29.328-22.094-36.047c-1.547-4.672-4.516-24.543-5.656-31.801c-1.172-7.25-0.766-30.656-0.766-30.656
s3.438,0.512,5.672,2.297c1.828-1.938-0.875-8.512-0.063-9.488c0.766,1.277,3.852,1.391,5.688,3.113
c2.953-5.41,0.344-10.691,0.063-11.379c4.969,1.922,9.547,1.512,10.281-0.215c-1.891-1.734-4.508-12.016-4.375-13.313
c1.922-0.84,7.375,3.512,8.328,1.938c-2.969-4.168-1.359-10.617-6.047-17.77c1.734-1.23,3.57,1.023,5.672-2.008
c-9.164-12.938,2.094-24.672,1.141-34.32c-1.578-15.367-10.984-17.969-10.984-17.969s24.766-0.109,19.578-17.992
c-5.234-17.855-18.094-6.48-26.516-11.078c-8.422-4.609-8.219-16.824-21.188-17.488c-18.359-0.953-42.852,11.504-57.098,11.504
c-4.426-0.031-3.852,0.695-14.402-2.082c-2.766,13.387,2.73,14.793,1.137,17.922c-2.961,5.848-1.848,7.328-1.848,7.328l1.566,0.031
c-0.43,2.066-0.613,6.023,2.633,10.52c3.895-5.375,5.184-8.773,5.617-10.375l1.078,0.031c-0.176,2.457-0.078,6.969,2.539,10.344
c3.949-3.551,5.324-8.063,5.805-10.199h0.227c0,0,8.98-0.594,14.699,2.242c5.75,2.828,5.508,12.813,5.508,12.813
s-15.586-4.672-22.289-4.527c-9.504,0.176-24.23,3.77-33.168,1.898c-8.961-1.883-17.063-13.355-17.063-13.355
s-14.066,19.922,17.383,24.656c7.016,1.051,13.625,0.656,19.344-0.164c0,0,14.984-2.938,18.199-3.336
c3.18-0.395,16.273,1.293,16.273,1.293s-0.734,4.242-7.172,4.242C40.924-120.569,15.397-121.018,15.397-121.018"/>
<path fill="#010202" d="M90.557-181.811c6.898-8.359,33.734-2.84,21.406,17.043C101.377-162.104,100.331-180.256,90.557-181.811"/>
<path fill="#E8423F" d="M-22.083-137.62c0,1.41,0.266,2.715,0.824,3.891c2.07,4.625,8.121,7.711,17.984,9.184
c5.816,0.871,11.918,0.824,18.75-0.16c0.105-0.023,14.914-2.922,18.246-3.336c2.852-0.352,11.813,0.68,15.508,1.137
c0,0,1.18,0.152,1.609,0.207c0.18-0.703,0.469-1.992,0.602-2.672c-0.422-0.145-1.734-0.449-1.734-0.449
c-3.414-0.977-15.109-4.191-20.406-4.07c-3.367,0.07-7.445,0.574-11.773,1.113c-7.793,0.973-15.84,2-21.848,0.742
c-7.016-1.479-13.371-8.098-16.336-11.617C-21.365-142.026-22.083-139.889-22.083-137.62"/>
<path fill="#E8423F" d="M15.397,63.025c0,0,7.719-2.125,19.113,1.875c1.508,2.531,4.477,6.859,6.602,11.547
C36.721,71.822,15.397,63.025,15.397,63.025"/>
<path fill="#E8423F" d="M-145.9-55.788c4.754,2.02,10.418,5.203,12.871,7.984c0.859-1.984,2.867-4.816,3.609-5.781
C-131.818-54.545-140.146-57.577-145.9-55.788"/>
<path fill="#E8423F" d="M-146.787-40.393c3.457,0.672,9.168,2.199,12.168,4.297c-0.063-0.771-0.121-1.531-0.121-2.281
c0-1.816,0.191-3.563,0.504-5.266C-135.931-43.643-144.251-43.506-146.787-40.393"/>
<path fill="#E8423F" d="M-137.869-69.866c0.699,0.879,10.641,13.406,11.008,13.863c1.754-1.344,5.715-3.527,6.992-4.23
C-128.587-68.491-134.708-69.913-137.869-69.866"/>
<path fill="#E8423F" d="M-146.169-22.346c1.414-0.391,2.84-0.832,4.551-1.457c2.992-1.094,6.094-2.215,9.457-2.16
c-0.832-1.918-1.504-4-1.961-6.184C-136.044-31.393-145.771-27.331-146.169-22.346"/>
<path fill="#E8423F" d="M-116.365-63.202c0,0.984-0.133,1.703-0.293,2.297c1.504-0.168,6.359-0.641,9.176-0.328
c-4.234-11.715-9.059-16.176-11.93-17.871C-118.189-74.729-116.365-67.53-116.365-63.202"/>
<path fill="#E8423F" d="M33.487,211.65c5.742,0.984,12.969,4.391,13.789,4.789c0,0,0.727,0.359,1.18,0.539
c-0.031-0.156-0.031-0.313-0.031-0.469c0-3.125,1.016-5.641,2.891-7.547C46.885,208.197,39.198,207.697,33.487,211.65"/>
<path fill="#E8423F" d="M51.081,230.478L51.081,230.478c-0.078,0.047-8.047,5.703-8.391,13.688
c6.273-5.078,12.227-6.984,13.688-7.375c-0.922-0.953-1.75-2.078-2.555-3.391c0.016,0.016,0,0.016-1.203-2.266
c0,0-0.508-0.906-0.688-1.25C51.768,229.978,51.51,230.166,51.081,230.478"/>
<path fill="#E8423F" d="M46.854,219.509L46.854,219.509c-0.086,0.016-9.164,2.188-12.297,10.031
c8.148-2.875,15.445-2.094,15.727-2.031c0,0,0.406,0.031,0.719,0.078c-1.359-2.906-2.18-5.734-2.5-8.438
C48.26,219.212,47.768,219.306,46.854,219.509"/>
<path fill="#E8423F" d="M70.471,245.197c0.023,0.031,0.023,0.078,0.023,0.078c1.109,7.219,4.539,11.148,6.672,12.547
c0-0.563,0-1.625,0-1.625c0-2.984,0.391-7.328,3.305-11.172C77.69,245.962,74.198,246.041,70.471,245.197"/>
<path fill="#E8423F" d="M58.659,239.142c-0.039,0.063-3.492,5.359-3.492,10.805c0,1.625,0.359,3.063,0.961,4.359
c2.859-3.859,6.922-9.25,11.039-10.205C64.065,242.994,61.112,241.291,58.659,239.142"/>
<path fill="#E8423F" d="M-89.955-176.354c0,0,0.016-0.008,0.016-0.023c-1.391-9.105-4.902-13.184-7.418-14.992
c0.395,1.816,0.77,4.176,0.816,6.824c0.059,2.465-0.168,5.137-0.895,7.793l-0.215,0.797
C-94.884-176.706-92.236-176.85-89.955-176.354"/>
<path fill="#E8423F" d="M-100.673-176.385c-4.121-7.023-8.426-9.871-11.402-11.063c2.199,3.07,4.961,7.887,5.258,13.406l0.07,1.48
c2.266-1.168,4.535-2.051,6.762-2.648L-100.673-176.385z"/>
<path fill="#E8423F" d="M-116.306-167.467c-6.863-1.199-11.051-0.711-13.52,0.02c3.063,0.758,7.262,2.109,10.895,4.438l0.574,0.375
c0.977-1.453,2.234-2.934,3.691-4.344L-116.306-167.467z"/>
<path fill="#E8423F" d="M-119.869-160.163c-6.109,0.395-8.887,2.242-10.199,3.703c1.785,0,5.465,0.184,9.176,0.57
c0.082-1.359,0.457-2.816,1.16-4.289L-119.869-160.163z"/>
<path fill="#E8423F" d="M-108.337-171.659l-1.379-1.16c-4.293-3.551-8.535-4.809-11.656-5.207c5.289,3.473,7.754,9.113,8.066,9.84
c0.52-0.527,2.734-2.168,4.352-3.137C-108.763-171.432-108.564-171.538-108.337-171.659"/>
<path fill="#E8423F" d="M-93.345,199.994l-2.168,1.609c-2.844,2.125-5.113,5.969-5.113,9.375c0,0.297,0.07,0.547,0.094,0.844
c3.531-2.5,8.152-4.5,9.195-4.938l2.871-1.188C-90.345,204.025-92.044,202.111-93.345,199.994"/>
<path fill="#E8423F" d="M-96.357,191.291l-2.848,1.406c-7.199,3.656-9.512,7.344-10.207,9.711
c2.922-1.398,7.754-3.297,12.762-3.695l2.52-0.18c-0.105-0.211-0.242-0.422-0.336-0.656
C-95.412,195.767-96.037,193.509-96.357,191.291"/>
<path fill="#E8423F" d="M-96.244,182.9l-3.32,0.234c-7.191,0.516-10.598,3.297-12.16,5.297c2.723,0.047,7.059,0.281,12.09,1.266
l3.16,0.609C-96.771,187.767-96.65,185.212-96.244,182.9"/>
<path fill="#E8423F" d="M-89.138,209.009c-1.129,2.594-1.723,4.875-1.723,6.859c0,1.484,0.371,2.766,0.977,3.938
c4.617-5.969,7.648-8.203,10.113-8.875c-2.801-1.063-5.602-2.703-8.09-4.766L-89.138,209.009z"/>
<path fill="#E8423F" d="M-109.306,176.291c2.375,0.703,5.926,1.875,10.305,3.75l3.094,1.328c0.648-2.5,1.641-4.703,2.953-6.313
C-101.681,173.244-106.763,174.837-109.306,176.291"/>
<path fill="#E8423F" d="M109.182-142.034c0,0-1.688,0.168-1.594,1.215c0.102,1.066,1.359,1.234,1.359,1.234
s6.836,1.848,8.563-5.691C116.362-141.674,109.182-142.034,109.182-142.034"/>
<path fill="#E8423F" d="M110.018-147.561c-0.578-0.121-2.359,0.84-2.328,1.902c0.031,0.57,0.656,0.602,1.258,0.695
c2.773,0.395,8.953-4.504,6.195-5.406C114.018-150.745,113.768-147.338,110.018-147.561"/>
<path fill="#E8423F" d="M78.213-171.737c-0.703-0.695-22.359,7.191-22.82,11.063c-0.031,0.313,0.43,1.32,1.531,1.082
c0.813-0.168,11.563-1.281,19.813-0.84c3.172,0.176,6.031,0.879,7.703,1.535c2.234,0.848,5.344,0.52,5.477-0.441
c0.102-0.984-7.867-3.254-11.375-3.535c-6.359-0.535-18.984,1.063-18.984,1.063S79.198-170.729,78.213-171.737"/>
<path fill="#FFFFFF" d="M14.901-144.338c0,1.398,0.273,3.16,1.266,5.145c2.117-3.246,3.262-5.816,3.742-7.184
c-1.77-0.113-3.496,0.031-4.785-0.055C15.006-145.905,14.901-145.194,14.901-144.338"/>
<path fill="#FFFFFF" d="M24.42-144.971c0,1.777,0.25,4.074,1.234,6.121c2.23-2.641,3.285-5.77,3.734-7.527
c-1.664,0-3.391-0.008-4.914-0.129C24.444-146.057,24.42-145.553,24.42-144.971"/>
<path fill="#FFFFFF" d="M-90.357-125.827c4.473-16.246-7.07-31.656-6.863-44.223c-3.734,9.52,1.922,19.695,3.914,29.816
c2.191,11.063,1.512,20.168-6.066,20.102c-1.422,0.035-1.301,1.426-0.488,1.41C-93.22-119.01-91.65-121.956-90.357-125.827"/>
<path fill="#FFFFFF" d="M76.198-157.889c0.805,0.574,1.328,1.504,1.328,2.535c0,1.762-1.461,3.16-3.25,3.16
c-1.82,0-3.273-1.398-3.273-3.16c0-1.152,0.617-2.129,1.586-2.688c-2.953,0.633-5.586,2.641-5.586,3.734
c0,1.289,3.617,4,7.156,4.121c3.375,0.121,6.703-2.918,6.703-3.926C80.854-154.92,78.737-157.081,76.198-157.889"/>
<path fill="#010202" d="M17.428-127.124c-0.672,1.242-1.504,3.191-1.504,5.402c0,2.398,0.93,4.453,2.711,5.969l0.402,0.328h7.383
l-1.52-2.059c-0.969-1.277-1.617-2.895-2.352-4.711c-0.832-2.168-1.656-4.031-2.984-5.266l-1.305-1.168L17.428-127.124z"/>
<path fill="#010202" d="M26.924-127.506c-0.68,1.402-1.512,3.711-1.512,6.863c0,1.176,0.176,2.504,0.465,3.875l0.223,1.086
l3.785-0.16c-0.023,0,3.406-0.113,3.406-0.113l2.414-0.063l-1.344-1.93c-0.781-1.133-1.438-2.629-2.156-4.23
c-0.887-2.047-1.777-4.016-2.977-5.551l-1.336-1.711L26.924-127.506z"/>
<path fill="#FFFFFF" d="M21.292-121.729c-0.789-1.945-1.527-3.738-2.672-4.793c-0.75,1.344-1.336,3.023-1.336,4.801
c0,0.254,0.016,0.504,0.043,0.75c1.078,0.016,2.559,0.051,4.293,0.082C21.502-121.186,21.397-121.448,21.292-121.729"/>
<path fill="#FFFFFF" d="M30.999-121.674c-0.867-1.895-1.73-3.832-2.852-5.281c-0.52,1.082-1.324,3.195-1.359,6.137
c1.504,0.031,3.059,0.059,4.602,0.09C31.245-121.049,31.124-121.354,30.999-121.674"/>
<path fill="#FFFFFF" d="M33.362-116.834h-0.016H33.362z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

+175
View File
@@ -0,0 +1,175 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="407.543px" height="494.059px" viewBox="-176.544 -214.721 407.543 494.059"
enable-background="new -176.544 -214.721 407.543 494.059" xml:space="preserve">
<g>
<path fill="#FFFFFF" d="M27.088-213.19h202.395V84.275c0,106.875-90.568,193.532-202.25,193.532
c-111.703,0-202.242-86.657-202.242-193.532V-213.19H27.088z"/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="-176.544" y="-214.721" width="407.543" height="494.059"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="none" stroke="#010202" stroke-width="3.048" d="M27.088-213.19h202.395V84.275
c0,106.875-90.568,193.532-202.25,193.532c-111.703,0-202.242-86.657-202.242-193.532V-213.19H27.088z"/>
</g>
</g>
</g>
</g>
<path fill="#010202" d="M-170.048,30.888v1.281c0,0,12.563,1.785,17.738,10.715c5.16,8.906,48.254,115.719,47.648,119.25
c0.672,0.063,1.148-0.25,1.148-0.25l46.969-116.969c0,0,4.527-11.809,15.641-11.73c2.832-0.25,4.152-0.512,4.152-0.512v-1.281
l-42.832,0.266v1.262h4.625c0,0,12.664-0.031,8.055,14.816c-4.625,14.852-29.945,88.117-29.945,88.117s-33-82.883-34.293-93.211
c-1.297-10.344,11.742-10.234,11.742-10.234h2.977v-1.27L-170.048,30.888z"/>
<path fill="#010202" d="M166.139,153.9c0,0-10.484-1.781-11.766-8.18c-1.297-6.406-0.523-53.688-0.523-53.688
s1.125-1.102,1.813-0.773c0.695,0.344,2.445,2.672,2.445,2.672s24.813,58.172,53.125,58.625c2.563,0,3.656,0.414,5.938-0.094
c-28.734-28.547-34.594-51.125-37.469-55.5c-2.875-4.391,1.18-6.172,2.539-6.219c35.03-1.094,37.164-27.891,37.313-30.922
c0.789-14.891-11.953-22.328-20.166-25.063c-8.234-2.719-26.344-3.063-26.344-3.063l-24.805,1.016h-7.164l-17.867-2.344
c0,0-0.758,0.098-0.836,0.359c-0.063,0.266,0.164,0.543,0.25,0.754c0.891,1.934,11.438,3.543,12.328,6.605
c1.75,6.031-0.266,104.563-0.266,104.563s-1.984,10.219-14.836,11.25c0.141,0.156,0,1.266,0,1.266h46.289L166.139,153.9
L166.139,153.9z"/>
<path fill="#010202" d="M-46.302-113.92c20.277,6.961,52.734,19.641,58.414,23.297C9.577-88.112-2.056-75.752-6.638-48.799
c-10.352,4.688-13.434-0.422-13.434-0.422s-4.031,0.184-4.84,2.229c-7.762-4.816-6.23-11.336-11.512-7.375
c-1.238,0.934-7.055-9.52-9.129-4.707c-5.504-1.406-5.137-7.887-6.648-8.246c-1.488-0.344-4.566,2.262-5.453,0.512
c-1.496-2.992-3.176-6.504-3.73-7c-0.559-0.512-2.27,0.922-4.613,0.113c-2.355-0.801-3.809-6.832-5.867-7.699
c-4.133,1.602-6.445-5.223-6.719-6.148c-0.625,1.871-6.258,2.512-5.504-0.672c2.594-11.051-14.664-10.715-13.207-21.336
c-21.93-3.746-17.242-44.531-21.555-45.344c-7.926-1.531-13.367-0.992-13.367-0.992s0.703-6.25,11.695-7
c-5.758-4.043-13.422-5.09-13.422-5.09s3.137-4.895,16.91-2.281c-3.023-7.07-10.344-10.574-10.344-10.574s8.402-2.113,17.051,5.566
c-0.699-8.863-7.547-16.063-7.547-16.063s8.219-1.113,16.137,12.863c1.863-8.398-1.223-17.328-1.223-17.328
s8.863,1.266,11.445,18.77c7.504,10.445,2.457,26.008,10.305,43.984C-76.83-123.014-63.576-119.846-46.302-113.92"/>
<path fill="#010202" d="M-9.728,127.478c6.68-22.75,29.305-37.875,52.297-35.969c1.211-4.703,2.242-8.922,1.852-9.75
c-13.492-28.516-21.5-31.719-21.5-31.719s-29.727-6.344-47.633,2.016c-3.598,1.688-30.398,18.578-25.117,19.719
c8.672,1.922-3.465,7.547-5.379,12.203c-1.926,4.688,2.832,3.563,3.059,4.141c0.535,1.406-12.008,13.578-8.883,14.188
c11.625,2.297-5.238,13.844-1.621,14.703c10,2.375-2.25,12.438,1.301,12.969c1.273,0.188,3.715,0.797,5.68,1.078
c-1.109,1.984-4.055,7.703-3.445,13.609c0.297,2.719,3.512-2.5,5.152,1.078c-8.242,6.703,7.16,25.828,8.23,37.234
c-5.574,0.641-4.633-6.406-9.473-8.484c-2.621,4.719-7.918,4.703-14.254,3.141c-6.32-1.563-13.707-4.641-20.457-4.734
c-14.832-3.75-21.008,1.359-22.359,3.047c0.43,0.141,5.633,1.344,13.109,4.547c-12.613,0.898-14.832,8.555-14.832,8.555
s6.48-0.406,14.539,1.195c-13.074,6.594-11.266,13.891-11.266,13.891s7.242-4.266,14.695-4.828
c-4.023,2.984-7.359,9.547-4.887,14.297c2.953-2.797,8.672-5.422,10.734-6.266c-2.758,6.297-2.344,10.906,0.691,14.25
c8.168-11.164,11.102-10.469,13.469-10.281c1.297,0.094,4.816,1.203,9.977,1.766c4.313,0.438,9.785,0.281,16.023,0.656
c14.992,0.828,32.352,1.328,43.809-10.188C-9.728,177.9-16.158,149.369-9.728,127.478"/>
<path fill="#0A0406" d="M90.553-182.983c6.898-8.375,33.641-2.84,21.375,17.047C101.389-163.288,100.303-181.448,90.553-182.983"/>
<polygon fill="#FFFFFF" points="33.405,-118.401 33.405,-118.393 33.42,-118.393 "/>
<path fill="#E8423F" d="M15.592,61.931c0,0,7.727-2.125,19.094,1.906c1.508,2.516,4.453,6.844,6.594,11.547
C36.897,70.759,15.592,61.931,15.592,61.931"/>
<path fill="#010202" d="M14.577-50.655C-37.841-40.823-79.326-6.721-99.998-36.487c5.887,1.16,10.773,11.719,18.672,7.922
c-9.672-8.395-16.074-27.578-26.992-33.723c-7.578-20.656-16.426-21.391-16.426-21.391s5.551,17.305,4.063,20.648
c-14.344-14.355-21.992-10.777-21.992-10.777l12.906,16.625c0,0-14.57-7.352-21.074-1.777c8.473,3.32,16.281,9.152,16.121,10.93
c-1.039,0.145-13.055-1.512-15.328,5.293c4.785,0.816,13.207,3.594,14.672,6.051c-4.895,2.078-13.918,4.934-12.438,12.801
c6.16-0.984,10.879-4.363,16.461-3.234c7.449-2.016,20.363,14.488,21.609,16.113c1.23,1.621,26.488,25.641,35.711,15.656
c0.625-0.688,9.219,5.984,10.555,4.129c4.461-6.129,3.656-3.953,6.824-1.021c1.621,1.512,5.719-0.512,7.629,2.313
c4.168-6.781,13.867,2.328,18.449-3.199c5.039,2.609,8.09,5.359,9.391-1.094c5.363,6.604,6.77,0.016,11.395,4.59
c-0.379-6.313,3.535-3.77,10.781-2.574c4.684,0.781,11,0.078,17.625-0.891C35.483,4.466,42.124-9.721,43.319-12.174
c2.195-4.594,4.711-4.266,3.93-1.578C43.155,0.689,34.288,12.76,10.019,11.607c-1.328-0.063-1.961,0.508-2.531,1.313
c-0.559,0.816-0.535,1.488-0.383,4.41c0.242,6,16.383,23.703,25.66,36.984c12.14,17.406,16.03,26.359,14.562,30.242
c-2.594,6.859-8.055,42.742-7.813,43.906c0.25,1.164,2.219,2.203,4.156,0.563c2.375,2.453-2.141,11.875,0.766,12.094
c2.195-1.375,4.906-2.563,4.906-2.563s-4.578,10.547,2.016,15.594c0.828-2.922,3.422-5.109,3.422-5.109s-1.281,10.219,5.063,13.094
c0.109-0.656,0.008-1.078,0.742-4.328c3.82,12.391,5.617,13.547,6.617,12.672c1-0.836-1.844-5.164,1.5-4.234
c1.156,10.805,4.523,10.656,4.523,10.656s0.406-0.438,2.016-2.945c3.82,9.164,25.328,18.945,21.57,41.016
c-0.781,0.453-2.523,0.406-3.047-1.297c-0.508-1.688-1.836-6.719-2.469-7.414c-0.609-0.688-2.406-2.898-16.578-4.391
c-14.172-1.484-21.219,4.953-21.219,4.953s-15.672-4.672-24.051,5.266c4.988-1.063,17.199,4.813,17.199,4.813
s-12.57,2.727-14.508,14.25c8.953-4.141,18.094-3.016,18.094-3.016s-11.109,7.641-8.844,18.422c7.805-7.375,16-9.281,16-9.281
s-7.523,11.398-1.281,18.938c3.031-3.969,8.609-12.258,12.805-11.672c1.734,11.297,8.867,15.266,9.836,14.477
c0.984-0.805-1.938-10.414,5.281-16.328c12.328-2.672,42.672-7.883,54.391-33.328c-1.328-7.883-26.188-44.773-25.656-71.344
c0.125-7.391,1.25-36.773,1.25-36.773s0.898-17.164-5.875-28.586c4.234,0.313,5.836,7.836,8.266,9.195
c2.422,1.391,4.328-2.078,4.328-2.078l-0.906-6.469l4.836,5.25c0,0,4.164-8.234,0.656-18.438
c-3.492-10.188-19.781-29.988-22.016-36.711c-1.57-4.688-4.508-22.293-5.656-29.543c-1.164-7.266-0.75-29.359-0.75-29.359
s3.422,0.504,5.656,2.297c1.805-1.953-0.891-8.547-0.086-9.504c0.758,1.262,3.859,1.391,5.656,3.094
c2.969-5.391,0.398-10.672,0.086-11.359c4.969,1.902,9.539,1.504,10.258-0.223c-1.898-1.73-4.5-12.031-4.391-13.305
c1.906-0.855,7.375,3.504,8.344,1.938c-2.984-4.188-1.375-10.609-6.031-17.777c1.734-1.242,3.531,1.016,5.656-2.016
c-9.141-12.953,2.094-25.992,1.109-35.625c-1.57-15.391-10.93-18-10.93-18s24.688-0.121,19.508-17.992
c-5.203-17.887-18.031-6.48-26.43-11.078c-8.391-4.602-8.195-16.824-21.148-17.488c-18.273-0.953-42.719,11.521-56.93,11.521
c-4.426-0.031-3.848,0.68-14.383-2.098c-2.762,13.383,2.695,14.793,1.117,17.922c-2.949,5.848-1.855,7.344-1.855,7.344l1.578,0.031
c-0.449,2.055-0.617,6.023,2.613,10.512c3.871-5.359,5.176-8.762,5.602-10.367l1.113,0.023c-0.188,2.457-0.082,6.984,2.527,10.344
c3.918-3.543,5.313-8.039,5.781-10.191l0.234,0.008c0,0,8.93-0.609,14.664,2.223c5.734,2.848,5.5,13.793,5.5,13.793
s-15.563-4.672-22.27-4.535c-9.465,0.191-24.16,3.777-33.078,1.895c-8.922-1.871-17.023-13.344-17.023-13.344
s-14.035,18.969,17.344,23.688c7,1.059,13.551,0.664,19.293-0.152c0,0,14.961-2.934,18.172-3.336
c3.203-0.398,16.234,1.289,16.234,1.289s-0.75,4.246-7.156,4.246c-2.141,0-27.633-0.43-27.633-0.43s-0.688,7.656,4.953,8.137
c1.809,0.145,8.48-0.465,17.117,0.688c18.156,2.426,38.766,8.91,53.781-5.801c12.969-12.703,2.805-31.52,14.445-39.559
c9.57-6.641,20.133-0.648,20.523,1.918c-14.328-5.223-17.313-0.613-18.969,0.496c-11.5,7.793,5.688,47.352-38.094,48.512
c-15.25,0.41-31.313,1.234-38.281,7.969c-3.949,3.816-7.898,3.617-13.637,8.762C1.928-77.088,0.295-59.983-1.326-51.358
c-0.641,3.391,1.086,2.313,1.086,2.313s8.25-2.656,14.273-3.379c1.063-0.125,1.176,0.504,1.176,0.504s0.023,0.746-1.031,1.266"/>
<path fill="#E8423F" d="M-148.025-59.311c4.762,2.207,10.457,5.617,13.016,8.52c0.777-1.984,2.625-4.785,3.297-5.742
C-134.119-57.6-142.455-60.944-148.025-59.311"/>
<path fill="#E8423F" d="M-147.662-43.686c3.438,0.801,9.133,2.543,12.156,4.766c-0.078-0.766-0.168-1.543-0.191-2.309
c-0.078-1.836,0.035-3.594,0.273-5.313C-137.103-46.616-145.287-46.768-147.662-43.686"/>
<path fill="#E8423F" d="M-140.216-72.944c0.738,0.93,10.922,14.059,11.297,14.527c1.688-1.277,5.535-3.328,6.77-3.969
C-131.017-71.143-137.072-72.831-140.216-72.944"/>
<path fill="#E8423F" d="M-146.63-25.502c1.344-0.375,2.734-0.801,4.359-1.41c2.902-1.047,5.879-2.125,9.184-2.016
c-0.945-1.965-1.719-4.078-2.273-6.293C-137.216-34.487-146.56-30.565-146.63-25.502"/>
<path fill="#E8423F" d="M-119.119-66.182c0.07,0.992,0,1.727-0.16,2.32c1.504-0.145,6.254-0.594,9.07-0.219
c-5.023-11.949-10.07-16.52-13.016-18.285C-121.712-77.901-119.439-70.577-119.119-66.182"/>
<path fill="#E8423F" d="M33.663,210.626c5.742,1.016,12.914,4.406,13.758,4.781c0,0,0.719,0.367,1.172,0.578
c0-0.164-0.031-0.328-0.031-0.508c0-3.109,0.992-5.625,2.875-7.508C47.045,207.166,39.374,206.689,33.663,210.626"/>
<path fill="#E8423F" d="M51.202,229.447L51.202,229.447c-0.078,0.063-8.016,5.734-8.375,13.719
c6.266-5.078,12.188-6.984,13.695-7.391c-0.93-0.953-1.805-2.078-2.578-3.391c0.023,0.031,0.023,0.016-1.211-2.266
c0,0-0.5-0.906-0.672-1.266C51.897,228.986,51.663,229.15,51.202,229.447"/>
<path fill="#E8423F" d="M47.03,218.494L47.03,218.494c-0.117,0.031-9.164,2.172-12.266,10.031
c8.094-2.852,15.359-2.094,15.672-2.047c0,0,0.375,0.047,0.688,0.078c-1.328-2.883-2.164-5.719-2.477-8.438
C48.389,218.197,47.936,218.314,47.03,218.494"/>
<path fill="#E8423F" d="M70.569,244.197c0.008,0.031,0.023,0.078,0.023,0.078c1.109,7.204,4.5,11.148,6.633,12.563
c0-0.578-0.031-1.625-0.031-1.625c0-3,0.422-7.359,3.344-11.18C77.749,244.97,74.272,245.041,70.569,244.197"/>
<path fill="#E8423F" d="M58.78,238.119c-0.031,0.063-3.492,5.359-3.492,10.813c0,1.609,0.344,3.07,0.977,4.367
c2.813-3.875,6.875-9.25,10.961-10.18C64.139,242.001,61.241,240.298,58.78,238.119"/>
<path fill="#E8423F" d="M-93.017-178.616l0.02-0.016c-1.922-9.367-5.555-13.504-8.121-15.27c0.504,1.836,1.008,4.27,1.246,7
c0.219,2.543,0.184,5.316-0.336,8.078l-0.16,0.824C-97.736-178.831-95.224-179.057-93.017-178.616"/>
<path fill="#E8423F" d="M-103.353-178.624c-4.293-7.199-8.535-10.105-11.469-11.297c2.27,3.145,5.133,8.082,5.664,13.793
l0.148,1.535c2.105-1.238,4.234-2.191,6.348-2.848L-103.353-178.624z"/>
<path fill="#E8423F" d="M-118.095-169.12c-6.672-1.031-10.664-0.445-12.969,0.391c3,0.699,7.121,1.969,10.746,4.297l0.574,0.375
c0.84-1.559,1.945-3.102,3.289-4.598L-118.095-169.12z"/>
<path fill="#E8423F" d="M-120.638-161.456c-5.855,0.609-8.402,2.625-9.52,4.176c1.703-0.063,5.246,0,8.848,0.281
c-0.043-1.41,0.238-2.914,0.781-4.457H-120.638z"/>
<path fill="#E8423F" d="M-110.599-173.471l-1.383-1.168c-4.273-3.609-8.402-4.855-11.418-5.223
c5.23,3.496,7.855,9.297,8.191,10.055c0.496-0.543,2.563-2.258,4.023-3.289C-110.974-173.229-110.806-173.342-110.599-173.471"/>
<path fill="#E8423F" d="M-92.849,198.986l-2.16,1.602c-2.832,2.117-5.109,5.984-5.109,9.398c0,0.258,0.078,0.539,0.109,0.836
c3.504-2.516,8.113-4.508,9.168-4.938l2.875-1.203C-89.873,203.017-91.552,201.072-92.849,198.986"/>
<path fill="#E8423F" d="M-95.857,190.259l-2.824,1.445c-7.223,3.625-9.504,7.313-10.176,9.656
c2.875-1.359,7.699-3.258,12.699-3.656l2.52-0.211c-0.113-0.188-0.242-0.414-0.336-0.609
C-94.912,194.744-95.529,192.494-95.857,190.259"/>
<path fill="#E8423F" d="M-95.728,181.853l-3.313,0.25c-7.168,0.516-10.566,3.297-12.145,5.297c2.723,0.031,7.027,0.266,12.066,1.25
l3.145,0.641C-96.248,186.728-96.134,184.181-95.728,181.853"/>
<path fill="#E8423F" d="M-88.63,208.001c-1.16,2.586-1.715,4.867-1.715,6.867c0,1.477,0.336,2.773,0.938,3.922
c4.617-5.969,7.625-8.188,10.082-8.875c-2.762-1.078-5.578-2.703-8.074-4.766L-88.63,208.001z"/>
<path fill="#E8423F" d="M-108.759,175.259c2.367,0.711,5.91,1.891,10.254,3.758l3.105,1.313c0.633-2.508,1.625-4.688,2.93-6.328
C-101.185,172.228-106.224,173.791-108.759,175.259"/>
<path fill="#E8423F" d="M109.139-143.221c0,0-1.688,0.184-1.57,1.229c0.094,1.055,1.344,1.223,1.344,1.223s6.836,1.875,8.539-5.688
C116.319-142.823,109.139-143.221,109.139-143.221"/>
<path fill="#E8423F" d="M109.975-148.737c-0.555-0.117-2.375,0.852-2.328,1.898c0.039,0.582,0.672,0.617,1.266,0.703
c2.773,0.406,8.953-4.496,6.18-5.406C113.959-151.92,113.749-148.487,109.975-148.737"/>
<path fill="#E8423F" d="M78.256-172.928c-0.672-0.695-22.289,7.199-22.75,11.082c-0.039,0.313,0.438,1.305,1.523,1.07
c0.813-0.184,11.523-1.297,19.75-0.832c3.203,0.168,6.016,0.848,7.703,1.52c2.219,0.867,5.313,0.531,5.43-0.438
c0.117-0.969-7.836-3.25-11.313-3.539c-6.328-0.551-18.938,1.074-18.938,1.074S79.272-171.913,78.256-172.928"/>
<path fill="#FFFFFF" d="M-92.208-126.565c3.672-16.449-7.406-32.043-7.559-44.754c-3.168,9.633,2.297,19.934,4.457,30.16
c2.336,11.191,1.957,20.406-5.027,20.336c-1.293,0.031-1.156,1.449-0.422,1.43C-94.623-119.655-93.255-122.647-92.208-126.565"/>
<path fill="#FFFFFF" d="M76.241-159.073c0.836,0.586,1.344,1.508,1.344,2.555c0,1.734-1.461,3.145-3.242,3.145
c-1.797,0-3.266-1.41-3.266-3.145c0-1.145,0.641-2.145,1.586-2.68c-2.961,0.605-5.586,2.633-5.586,3.727
c0,1.289,3.625,3.984,7.156,4.113c3.375,0.102,6.672-2.922,6.672-3.93C80.897-156.096,78.78-158.256,76.241-159.073"/>
<path fill="#010202" d="M17.631-128.295c-0.68,1.25-1.504,3.207-1.504,5.402c0,2.398,0.938,4.469,2.703,5.992l0.395,0.309h7.383
l-1.527-2.039c-0.969-1.297-1.633-2.91-2.352-4.727c-0.84-2.16-1.648-4.043-2.977-5.266l-1.289-1.176L17.631-128.295z"/>
<path fill="#010202" d="M27.12-128.655c-0.688,1.391-1.496,3.711-1.496,6.848c0,1.199,0.137,2.504,0.434,3.895l0.223,1.09
l3.785-0.168c-0.016,0,3.387-0.098,3.387-0.098l2.398-0.07l-1.336-1.938c-0.75-1.117-1.422-2.641-2.125-4.223
c-0.891-2.047-1.797-4.023-2.98-5.559l-1.328-1.715L27.12-128.655z"/>
<path fill="#FFFFFF" d="M15.081-145.495c0,1.383,0.305,3.16,1.289,5.137c2.125-3.242,3.262-5.809,3.734-7.176
c-1.742-0.121-3.48,0.031-4.785-0.059C15.186-147.081,15.081-146.366,15.081-145.495"/>
<path fill="#FFFFFF" d="M24.608-146.135c0,1.762,0.25,4.063,1.223,6.121c2.25-2.648,3.305-5.785,3.738-7.527
c-1.641,0-3.391-0.016-4.906-0.137C24.639-147.229,24.608-146.729,24.608-146.135"/>
<path fill="#FFFFFF" d="M21.463-122.901c-0.758-1.938-1.504-3.738-2.648-4.785c-0.742,1.352-1.352,3.023-1.352,4.793
c0,0.254,0.023,0.508,0.043,0.773c1.102,0.016,2.582,0.039,4.301,0.063C21.698-122.327,21.577-122.616,21.463-122.901"/>
<path fill="#FFFFFF" d="M31.155-122.823c-0.828-1.906-1.715-3.832-2.828-5.281c-0.535,1.082-1.336,3.184-1.367,6.137
c1.512,0.031,3.09,0.055,4.609,0.082C31.436-122.206,31.311-122.502,31.155-122.823"/>
<path fill="#FFFFFF" d="M197.913,60.228c0,0,1.734,4.531-1.758,14.016c-3.484,9.461-19.766,12.25-19.766,12.25
s-16.438,2.164-21.523,1c-2.656-5.523-0.492-47.297-0.492-47.297s5.031-3.078,17.266-3.484
C194.389,35.935,197.913,60.228,197.913,60.228"/>
<path fill="#E8423F" d="M-21.783-137.721c0,1.289,0.277,2.508,0.801,3.602c2.094,4.258,8.133,7.105,17.973,8.473
c5.77,0.801,11.875,0.746,18.699-0.145c0.094-0.023,14.855-2.703,18.184-3.078c2.859-0.328,11.797,0.621,15.5,1.047
c0,0,1.172,0.137,1.609,0.191c0.141-0.664,0.438-1.84,0.57-2.465c-0.445-0.117-1.711-0.406-1.711-0.406
c-3.406-0.906-15.078-3.863-20.371-3.77c-3.352,0.059-7.43,0.527-11.758,1.043c-7.777,0.895-15.816,1.836-21.793,0.68
c-7.031-1.371-13.328-7.473-16.289-10.738C-21.064-141.799-21.783-139.823-21.783-137.721"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

+153
View File
@@ -0,0 +1,153 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.505px" height="492.818px" viewBox="-176.002 -213.546 406.505 492.818"
enable-background="new -176.002 -213.546 406.505 492.818" xml:space="preserve">
<g>
<path fill="#FFD72E" d="M27.127-212.022h201.852V84.685c0,106.625-90.297,193.063-201.723,193.063
c-111.406,0-201.734-86.438-201.734-193.063v-296.707H27.127z"/>
<path d="M210.557-11.084c-3.766-7.023-31.813-35.09-66.813-54.191c-15.422-8.426-63.109-34.066-102.172-41.242
c-4.227-0.773-7.898-2.629-12.164-1.641c-1.77,0.41-4.414-2.152-1.367-3.902c1.672-0.969,3.375-1.77,12.031-1.609
c-7.359-5.16-9.801-4.367-21.527-4.148c2.496-4.777,16.152-4.785,16.152-4.785s-6.289-3.891-25.023-2.535
c3.789-3.137,11.145-4.594,11.145-4.594s-10.227-4.207-21.969,1.176c-0.953,0.434-2.066,1.352-4.352,1.488
c-2.289,0.137-7.961-0.68-8.891-0.879c-0.91-0.211-4.504-0.832-4.102-4.129c0.375-3.289,3.207-3.359,3.926-3.426
c0.703-0.094,9.168,0.539,11.367-3.527c1.488-2.766,4.281-13.574-3.352-16.688c-10.91-4.441-16.414-0.777-18.047-0.391
c-1.648,0.367-3.902-1.313-3.902-1.313s-8.418-8.578-11.145-10.625c-2.738-2.031-10.594-5.703-16.563-6.734
c-1.32-0.211-3.672-0.859-4.031-1.16c-1.359-1.137-5.848-1.785-7.445-1.656c-1.992,0.168-6.313-0.512-8.648,3.023
c-1.488,2.246-2.641,2.305-5.617,2.785c-2.969,0.484-10.801,0.039-10.801,0.039s-10.094-0.047-13.352-2.273
c-1.52-1.047-6.223-5.281-7.504-6.816c-1.258-1.527-3.238-0.598-3.07-0.031c0.773,2.832,0.168,7.992-2.84,11.344
c-3.457,3.801-7.363,7.395-8.043,8.234c-0.695,0.832-1.816,4.879,0.602,6.414c2.406,1.512,4.305,2.648,4.305,2.648
s-1.555,10.023-1.219,13.039c-2.277-0.969-6.23-3.113-8.621-5.031c-15.625-12.551-16.93-26.582-20.16-27.113
c-3.234-0.527-7.664,15.961,1.238,27.281c10.289,13.104,30.039,16.168,30.039,16.168s-3.223,4.09-2.855,9.719
c-3.43,1.707-3.902,2.875-3.902,2.875s-0.289,2.23,1.902,4c60.907-1.435,104.923,56.62,94.747,123.307
c-1.473,9.672-8.73,33.871-11.633,40.902c-2.922,7.031-3.785,18.461-3.785,18.461s-0.969,3.555-2.742,3.305
c-1.73-0.242-1.84-1.648-1.777-2.555c0.305-1.328-0.879-6.539-0.406-9.82c0.496-3.242-1.395-5.586-1.395-5.586
s4.688-10.43-7.422-19.461c2.168,11.82-1.73,14.461-1.73,14.461S-67.4,35.966-83.142,36.49c6.801,5.82,7.84,14.195,8.086,14.789
c-1.941-3.789-17.598-14.164-26.75-0.047c15.465,0.93,18.031,6.75,18.031,6.75s-18.414-6.797-26.313,10.906
c8.785-2.281,18.008-0.516,18.008-0.516s-10.961,2.484-11.094,12.063c6.016-2.922,15.375-0.938,15.375-0.938s-0.273,0-0.176,0.922
c1.48,0.469,8.262,10.641,13.91,13.328c5.656,2.672,37.832,4.625,51.578-1.719c3.488-1.609,3.719-0.969,5.016-5.281
c4.262-14.172,21.168-52.938,33.031-76.68C23.505-5.878,30.869-16.902,30.9-17.902c0.063-1.969-9.754-13.008-10.891-14.266
c-1.113-1.262,0.969-1.957,0.969-1.957s7.43,1.789,10.477,6.148c3.07,4.363,3.609,5.145,2.969,7.465
c-0.656,2.328-6.199,19.043-6.199,19.043s85.887,6.895,86.449,9.75c0.586,2.863-26.82,5.406-34,6.93
C68.33,17.832,56.752,32.527,57.963,36.699c5,17.344,6.805,60.828,7.203,64.125c0.422,3.297,4.82,4.953,6.508,5.047
c1.672,0.078,10.57,0.164,11.406,1.563c0.805,1.406-0.461,1.953-0.461,1.953s-1.984,1.438-5.523,1.109
c-3.539-0.297-24.164-6.031-27.539-9.766c-3.344-3.75-5.031-5.656-5.031-5.656s2.016-16.766-14.063-14.922
c5.781,8.094,1.406,11.688,1.406,11.688s-6.453-12.359-26.453-6.375c13.512,5.188,13.871,9.047,13.871,9.047
s-11.109-5-22.453,5.531c14.977,0.172,17,5.984,17,5.984s-16.898-3.5-20.336,14.563c12.055-7.445,18.59-2.641,18.59-2.641
s-18.633,5.828-13.512,22.227c7.289-7.195,16.512-9.016,16.512-9.016l0.25,0.773c0,0,4.422,1.867,8.438,1.922
c4.008,0.047,4.984-0.578,4.449-2.789c-0.535-2.211,0.313-4.711,0.352-5.563c0.055-0.836,1.48-1.063,1.48-1.063
s0.906-0.211,1.203,1.086c0.688,2.898-1.5,5.273,1.328,8.586c2.836,3.313,7.211,2.57,8.594,3.086
c1.375,0.508,9.047,1.961,9.047,1.961s21.555,3.773,28.359,0.867c4.813-2.047,18.938-11.172,22.797-17.5
c1.875-3.078,2.688-7.016,3.141-11.344c1.656-16.609,5.922-36.531,17.906-45.938c0.922-0.75,2.875-1.297,3.906-1.938
c1.156-0.703,2.188-0.953,2.625-2.078c0.328-2.625-4.203-36.469-4.859-45.859c-1.156-16.992-13.875-30.105-13.875-30.105
s0-1.113,1.375-1.398c1.383-0.305,3.578,0.246,3.578,0.246s7.984-0.344,13.922,30.922c5.922,31.242,6.484,56.273,12.719,68.094
c1.906,3.578,10.625,17.656,17.656,31.414c5.813,11.375,7.531,19.359,9.875,24.047c5.188,10.359,0.188,23.125-1.859,24.523
c-2.063,1.414-2.203,0.102-2.922-0.328c-0.734-0.461,0.25-5.445,0.25-5.445s2.016-2.406-0.75-6.719
c-2.797-4.328-15.438-7.422-15.438-7.422s-1.875-1.359-3.094-2.016c1.297-12.625-19.805-13.813-19.805-13.813
s6.086,8.625,5.227,16.953c-15.164-11.164-27.453-0.031-27.453-0.031s11.453,2.016,16.609,11.094
c-20.109-5.156-22.297,9.719-22.297,9.719s8.164-3.719,16.891,3.047c-18.922,1.406-16.016,16.359-16.016,16.359
s4.938-6.516,19.625-1.609c-0.281,0.438-12.063,9.203-4.734,23.477c1.719-3.695,6.141-9.695,11.391-11.875
c0.531,0.672,0.625,0.625,0.797,0.789c0,0,11.688-5,17.641-5.164c5.969-0.164,10.844-0.523,18.563-1.313
c7.719-0.805,12.172-4.438,15.797-6.523c3.609-2.078,17.813-20.313,21.422-23.461c3.609-3.164,4.531-8.539,4.531-8.539
s2.375-7.625,3.75-25.133c1.375-17.523,2.392-41.633,2.017-56.984C208.965,47.277,196.45,0.144,196.45,0.144
s-0.047-1.574,1.078-1.969c1.148-0.383,1.109,0.012,2.672,2.504c1.547,2.465,4.546,15.852,7.046,17.801
c0.969,0.746,0.805,3.594,4.655,2.105c1.188-0.449,2.97-8.063,3.625-12.215C216.213,4.154,214.307-4.069,210.557-11.084
M-112.544-147.948c0.457,0.168,0.961,0.43,0.961,0.43s-1.023,8.938,0.281,12.953c-5.527-2.09-10-3.703-10-3.703
S-116.041-146.413-112.544-147.948 M-112.318-117.725c-0.219,0.016-0.855-0.078-1.754-0.16c-4.07-3.375-4.422-9.23-4.422-9.23
s9.023,2.199,10.543,2.902C-108.677-122.303-111.873-119.885-112.318-117.725 M-101.248-115.917
c-1.113-0.352-3.664-2.672-3.766-4.176c-0.098-2.055-0.586-3.359-0.586-3.359s13.184,3.633,17.023,10.191
C-93.935-114.588-100.134-115.565-101.248-115.917 M-109.927-133.975c0,0,4.328-6.879,8.055-8.637
c12.426,6.48,18.379,17.695,20.504,25.629C-88.263-125.702-109.927-133.975-109.927-133.975"/>
<path d="M-109.529-18.303c16.02-4.672,32.539-22.516,44.113-34.086c6.578-6.586,11.328-10,12.648-11.047
c1.938,1.574,10.367,15.512,14.449,28.992c3.152,10.406,2.887,21.191,2.734,24.285C-36.087-0.741-42.294,1.13-42.294,1.13
S-80.119,13.548-86.63,13.388c-2.992-0.09-26.113,5.453-32.816,4.824c-17.625-1.695-21.879-10.113-21.879-10.113l-8.809-15.297
c0,0-1.113-3.582,2.113-2.504c3.23,1.105,3.652,1.168,6.559,1.969c2.902,0.816,0.582-2.078,0.582-2.078s-2.863-1.602-5.375-2.707
c-8.113-3.566-8.977-15.457-8.977-15.457s-0.414-9.828-0.016-17.023c0.395-7.191-16.289-6.734-16.289-6.734s6.387-13.168,26-5.52
c0.176-7.066-17.023-12.367-17.023-12.367s10.563-11.191,29.992,4.438c1.016-11.367-8.84-20.43-8.84-20.43
s15.543-2.824,21.898,18.863c6.605-5.336,2.59-19.871,2.59-19.871s15.039,8.359,10.336,23.645
c7.832-1.383,10.77-11.598,10.77-11.598s6.039,10.648-3.73,21.113c-3.672,3.926-4.496,2.773-4.496,2.773
s-15.613,20.395-5.605,46.305c1.277,3.336,3.438,0.824,3.727-0.672C-105.638-6.542-106.455-12.061-109.529-18.303"/>
<path d="M-38.646-170.405c0,0,11.48,10.328,12.559,11.641c0.938,1.109,7.855-2.656,11.449-1.816
c2.191,0.512-1.168-6.199-2.543-8.145c-1.387-1.922-5.977-6.785-11.516-5.863C-33.408-173.803-38.646-170.405-38.646-170.405"/>
<path fill="#E7423F" d="M-87.919-116.557c-5.895-7.098-18.617-10.055-33.289-13.777c-10.605-2.703-22.109-7.293-27.832-15.496
c-3.008-4.27-4.438-8.973-4.613-13.191c-0.129-3.16,0.32-5.918,0.902-7.75c0.297,0.559,0.578,1.152,0.84,1.703
c2.594,5.473,6.785,14.766,17.504,23.094c5.113,3.945,14.219,6.664,23.098,10.027c9.535,3.277,19.75,8.137,25.961,14.445
c0,0,3.934,4.371,4.309,5.84c-0.895-0.168-2.301-0.496-4.031-0.781C-85.677-114.022-87.919-116.557-87.919-116.557"/>
<path fill="none" stroke="#E41E2E" stroke-width="0.888" d="M-87.919-116.557c-5.895-7.098-18.617-10.055-33.289-13.777
c-10.605-2.703-22.109-7.293-27.832-15.496c-3.008-4.27-4.438-8.973-4.613-13.191c-0.129-3.16,0.32-5.918,0.902-7.75
c0.297,0.559,0.578,1.152,0.84,1.703c2.594,5.473,6.785,14.766,17.504,23.094c5.113,3.945,14.219,6.664,23.098,10.027
c9.535,3.277,19.75,8.137,25.961,14.445c0,0,3.934,4.371,4.309,5.84c-0.895-0.168-2.301-0.496-4.031-0.781
C-85.677-114.022-87.919-116.557-87.919-116.557z"/>
<path fill="#FFFFFF" d="M-122.189-118.174c1.52-0.031,3.453-0.207,5-0.031c-2.16-1.52-3.074-7.473-3.074-7.473
S-122.431-122.303-122.189-118.174"/>
<path fill="#FFFFFF" d="M-110.255-117.381c1.504,0.078,2.57,0.406,5.098,0.84c-2.227-1.488-1.297-4.254-2.168-5.465
C-108.873-119.475-109.822-119.213-110.255-117.381"/>
<path fill="#FFFFFF" d="M-109.759-137.756c2.344-3.711,5.527-5.961,5.703-6.008c-1.086-0.504-5.59-2.785-5.59-2.785
S-109.99-138.092-109.759-137.756"/>
<path fill="#FFFFFF" d="M-121.83-141.045c0,0,4.926-6.793,7.102-7.809c-3.375-0.992-4.781-1.793-5.902-2.43
C-121.576-146.038-121.83-141.045-121.83-141.045"/>
<path fill="#E7423F" d="M104.62,22.49c0,0,13.344-1.934,20.766,4.363c-0.094-1.234-0.953-8.289-0.953-8.289
S111.417,13.939,104.62,22.49"/>
<path fill="none" stroke="#E41E2E" stroke-width="0.888" d="M104.62,22.49c0,0,13.344-1.934,20.766,4.363
c-0.094-1.234-0.953-8.289-0.953-8.289S111.417,13.939,104.62,22.49z"/>
<path fill="#FFFFFF" d="M-66.431-170.573c0,0,3.633,0.297,4.93,3.832c1.238,3.438,1.816,8.512-0.785,18.961
c-0.23,0.961-2.129,0.758-2.176-0.426c-0.039-1.191,1.168-6.391,1.496-9.406c0.328-3.015-0.082-6.73-1.09-7.641
c-0.824-0.746-2.375-1.359-2.711-1.426c-0.336-0.078-2.145-0.445-1.77-2.16C-68.15-170.557-66.431-170.573-66.431-170.573"/>
<path fill="#FFFFFF" d="M-65.576-160.366c1.816-0.504,1.016-2.375-1.23-3.191c-2.242-0.824-7.359,0.496-8.945,5.313
c-1.473,4.406,5.648,8.055,7.121,7.984c2.52-0.105,3.176-3.457,1.664-4.146c-1.488-0.703-3.855-0.953-3.648-2.896
C-70.416-159.252-67.384-159.846-65.576-160.366"/>
<path fill="#E7423F" d="M-105.392-60.1c0,0,4.219,0.168,8.387-6.121c-0.336,5.625-4.824,10.367-4.824,10.367L-105.392-60.1z"/>
<path fill="#E7423F" d="M-164.767-54.292c6.098-4.961,18.375-0.012,18.375-0.012l-6.262,5.434
C-152.654-48.877-155.181-54.366-164.767-54.292"/>
<path fill="#E7423F" d="M-154.888-69.924c8.824-2.809,21.234,7.992,21.234,7.992s-6.563,3.375-8.496,4.336
C-142.005-58.327-143.103-66.252-154.888-69.924"/>
<path fill="#E7423F" d="M-134.697-81.991c8.684,2.961,12.059,17.281,12.059,17.281l-6.945,1.383
C-129.591-63.327-127.623-72.436-134.697-81.991"/>
<path fill="#E7423F" d="M-116.759-64.733c3.242-3.375,5.383-8.695,4-14.938c2.281,2.098,5.145,10.746,2.648,17.043
C-111.134-63.167-112.384-64.534-116.759-64.733"/>
<path fill="#E7423F" d="M-55.751,54.888c-1.207-0.75-3.086-1.078-4.383-1.094c3.605-3.469,2.816-8.672,2.816-8.672
S-53.888,50.576-55.751,54.888"/>
<path fill="#E7423F" d="M-65.056,53.904c-3.438,0.328-5.816,1.078-6.488,1.438c-0.512-9.867-4.016-14.406-4.016-14.406
S-67.509,45.56-65.056,53.904"/>
<path fill="#E7423F" d="M-74.72,56.544c-1.75,1.25-1.43,0.75-4.184,2.836c-3.238-5.297-6.758-9.758-18.16-10.039
C-88.376,43.107-77.263,50.576-74.72,56.544"/>
<path fill="#E7423F" d="M-103.791,64.919c3.168-6.047,16.129-6.375,22.48-2.883c-1.93,2.273-2.387,3.305-3.113,5.797
C-90.189,64.201-100.677,64.591-103.791,64.919"/>
<path fill="#E7423F" d="M-98.791,76.185c4.305-5.75,13.031-5.766,13.168-5.5c-0.273,0.375-1.785,5.109-1.785,5.734
C-87.837,76.138-92.615,74.888-98.791,76.185"/>
<path fill="#E7423F" d="M41.401,94.388c-1.969-0.438-4.594-0.938-6.422-1.234c0.719-0.703,2.828-6.281,0.313-10.422
C37.088,83.201,41.276,84.701,41.401,94.388"/>
<path fill="#E7423F" d="M23.104,95.013c2.465-1.531,4.074-1.719,5.992-1.625c-2.238-5.391-12.992-7.516-14.863-6.922
C15.424,86.998,22.799,90.623,23.104,95.013"/>
<path fill="#E7423F" d="M4.471,98.044c7.219-3.5,14.012-0.859,14.539-0.5c-0.809,0.766-2.93,3.063-3.824,5.195
C13.592,99.013,4.471,98.044,4.471,98.044"/>
<path fill="#E7423F" d="M-2.349,115.419c0.574-1.375,7.398-8.172,15.055-6c-1.176,2.109-1.367,3.344-0.793,5.125
C4.44,111.529-2.095,115.341-2.349,115.419"/>
<path fill="#E7423F" d="M0.639,134.654c1.785-9.078,8.402-11.672,11.648-13.188c-0.094,1.422,0.41,5.422,1.16,6.531
C12.553,127.81,4.377,130.091,0.639,134.654"/>
<path fill="#E7423F" d="M141.12,141.982c-2.297,0.625-5.688,2.047-6.906,2.813c0.406-5.469-1.313-10.813-2.898-13.188
C133.932,131.966,141.807,135.248,141.12,141.982"/>
<path fill="#E7423F" d="M123.667,154.732c-0.734-2.359-7.406-9.922-13.391-11.109c4.609-2.516,12.656-2.234,20.047,3.922
C127.401,149.451,124.323,153.482,123.667,154.732"/>
<path fill="#E7423F" d="M102.542,161.544c3.82-6.859,15.703-4.094,19.063-2.781c-1.453,1.594-2.766,4.359-3.109,8.688
C115.557,162.201,106.323,160.56,102.542,161.544"/>
<path fill="#E7423F" d="M101.948,179.107c-0.25,0.641,1.734-8.563,16.063-7.859c-0.422,3.492-0.469,4.953,0.063,8.375
C108.792,175.748,101.948,179.107,101.948,179.107"/>
<path fill="#E7423F" d="M114.432,199.482c0,0-1.313-7.344,4.922-13.047c0.625,3.141,1.578,4.969,2.828,6.203
C118.37,193.888,114.432,199.482,114.432,199.482"/>
<path fill="none" stroke="#FFFFFF" stroke-width="3.176" stroke-linecap="round" stroke-linejoin="round" d="M-114.63-57.831
c-3.074,2.855-6.344,2.313-9.129,5.504c-2.023,2.32-7.48,10.219-4.582,23.145c1.895,8.418,3.664,23.219,4.75,28.008
c1.457,6.426-2.262,12.504-4.855,12.602"/>
<path fill="none" stroke="#FFFFFF" stroke-width="2.664" stroke-linecap="round" stroke-linejoin="round" d="M36.26,99.529
c0.25,3.703,0.25,5.859,1.453,9.281c0.859,2.469,5.625,4.297,14.719,6.891c5.563,1.594,15.875,5.141,19.094,6.516
c7.422,3.156,4.266,8.211,4.391,11"/>
<path fill="#E7423F" d="M-174.478,84.685c0,106.625,90.328,193.063,201.734,193.063c46.254,0,88.879-14.906,122.91-39.969
L-174.478,40.732V84.685z"/>
<polygon fill="#E7423F" points="228.979,-212.022 27.127,-212.022 -71.904,-212.022 228.979,-29.381 "/>
<g>
<path fill="none" stroke="#000000" stroke-width="3.048" d="M27.127-212.022h201.852V84.685
c0,106.625-90.297,193.063-201.723,193.063c-111.406,0-201.734-86.438-201.734-193.063v-296.707H27.127z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

+110
View File
@@ -0,0 +1,110 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Ebene_1"
x="0px"
y="0px"
width="408.272px"
height="494.945px"
viewBox="-176.966 -215.01 408.272 494.945"
enable-background="new -176.966 -215.01 408.272 494.945"
xml:space="preserve"
sodipodi:docname="20221123102357!Coat_of_arms_of_Kanton_Basel-Landschaft.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs12379">
<defs
id="defs12359">
<rect
id="SVGID_1_"
x="-176.966"
y="-215.00999"
width="408.272"
height="494.94501" />
</defs>
<clipPath
id="SVGID_2_">
<use
xlink:href="#SVGID_1_"
overflow="visible"
id="use12361" />
</clipPath>
</defs><sodipodi:namedview
id="namedview12377"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.84554848"
inkscape:cx="-172.66899"
inkscape:cy="180.94764"
inkscape:window-width="1920"
inkscape:window-height="1017"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Ebene_1" />
<g
id="g20203"><path
fill="#ffffff"
d="m 27.034,-213.491 h 202.75 V 84.49 c 0,107.102 -90.704,193.906 -202.605,193.906 -111.918,0 -202.625,-86.813 -202.625,-193.906 v -297.98 z"
id="path12338" /><path
clip-path="url(#SVGID_2_)"
fill="none"
stroke="#010202"
stroke-width="3.048"
d="m 27.034,-213.491 h 202.75 V 84.49 c 0,107.102 -90.704,193.906 -202.605,193.906 -111.918,0 -202.625,-86.813 -202.625,-193.906 v -297.98 z"
id="path12364"
style="display:inline"
sodipodi:nodetypes="ccssscc" /></g>
<g
id="g17966"
transform="matrix(0.82046799,0,0,0.82046799,-27.363074,-35.612349)"
style="display:inline"><path
style="opacity:1;fill:#e8423f;fill-opacity:1;stroke:#0b0000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 120.87213,-189.3121 a 22.051837,22.127499 0 0 0 -22.05326,22.12661 22.051837,22.127499 0 0 0 2.47092,10.16138 c -8.36526,4.21436 -16.12053,8.74903 -23.25864,13.65995 a 22.051837,22.127499 0 0 0 -17.67129,-8.93097 22.051837,22.127499 0 0 0 -22.05094,22.1266 22.051837,22.127499 0 0 0 7.65802,16.7476 c -5.25543,6.84634 -9.81083,14.23294 -13.641,22.244999 a 22.051837,22.127499 0 0 0 -10.37188,-2.611727 22.051837,22.127499 0 0 0 -22.05326,22.128917 22.051837,22.127499 0 0 0 19.88542,22.019812 c -0.23444,1.463095 -0.46716,2.92852 -0.67095,4.422543 C -9.36801,163.5933 -3.12081,216.24024 -30.8007,333.79137 -7.57528,325.90786 11.92418,265.66634 33.26989,231.37661 l 31.28915,127.08345 33.5241,-131.56867 c 20.53519,36.82906 32.01715,97.28049 61.83566,109.89012 -17.5283,-106.15591 -34.10626,-223.70878 -43.95382,-348.358774 -2.92561,-37.032289 4.41253,-48.688363 16.38955,-69.523184 12.30638,-21.407752 80.07499,-44.749572 89.39759,13.455659 7.59694,47.431091 -44.26557,45.961126 -58.10842,17.943183 l -25.32933,20.183476 c 20.40346,16.527765 29.39707,42.768469 75.98334,33.24678 a 22.051837,22.127499 0 0 0 21.21341,16.102211 22.051837,22.127499 0 0 0 22.05094,-22.128928 22.051837,22.127499 0 0 0 -5.8534,-14.980907 c 4.6061,-7.170272 8.45023,-16.233543 11.49628,-26.298412 a 22.051837,22.127499 0 0 0 7.23001,1.248999 22.051837,22.127499 0 0 0 22.05095,-22.12661 22.051837,22.127499 0 0 0 -22.05095,-22.128928 22.051837,22.127499 0 0 0 -1.01798,0.03708 c -0.49309,-9.054332 -2.35033,-17.878565 -5.88118,-26.247335 a 22.051837,22.127499 0 0 0 10.51764,-18.84162 22.051837,22.127499 0 0 0 -22.05095,-22.1266 22.051837,22.127499 0 0 0 -16.16283,7.11552 c -7.20139,-5.37534 -15.18427,-9.93315 -23.58717,-13.65066 a 22.051837,22.127499 0 0 0 1.02261,-6.64889 22.051837,22.127499 0 0 0 -22.05094,-22.12661 22.051837,22.127499 0 0 0 -21.54658,17.47656 c -3.96231,-0.40995 -7.89332,-0.64808 -11.75772,-0.69646 -5.29639,-0.0663 -10.45988,0.22754 -15.42711,0.85201 a 22.051837,22.127499 0 0 0 -21.62061,-17.87123 z"
id="path6434" /><path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 64.55905,358.46006 c 0,0 -0.98816,-200.09938 -2.23458,-299.767724 -0.28682,-22.935258 1.03109,-45.121847 2.23498,-68.027081 0.98964,-18.829158 -4.5946,-40.141113 8.19493,-69.522173 6.54009,-15.024358 13.56259,-24.091862 23.83981,-32.892222 11.6583,-9.98297 27.03892,-17.14571 40.97469,-20.9314 11.04975,-3.0017 30.42732,-5.6226 41.71967,-3.73776 12.7382,2.12617 24.12243,5.00089 35.01472,11.96081 9.63775,6.15831 18.21753,16.93071 23.83981,26.911807 4.98458,8.849005 8.33615,18.990721 8.19494,29.154463 0.93701,32.164707 -19.24931,43.655788 -34.26973,44.056178 -16.07027,0.428375 -19.34577,-4.655067 -28.30977,-7.62454"
id="path6514" /><rect
style="opacity:1;fill:#e8423f;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect6487-3"
width="154.19331"
height="72.757988"
x="-12.343102"
y="-12.732811" /><rect
style="opacity:1;fill:#e8423f;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect6487"
width="188.95602"
height="36.538342"
x="-29.724457"
y="5.3770123" /></g></svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="512px" height="613px" viewBox="0 0 512 613" enable-background="new 0 0 512 613" xml:space="preserve">
<title>Wappen Stadt Basel</title>
<path fill="#FFFFFF" stroke="#000000" stroke-width="3.9713" d="M510,2v369.066C510,503.704,396.071,611,255.883,611
C115.559,611,2.008,503.704,2.008,371.066L2,2H510z"/>
<path d="M181.015,250.662h179.513c8.687,0,15.744,6.785,15.744,15.278c0,8.44-7.057,15.495-15.744,15.495H181.286h-0.271
c-8.604,0-15.501-7.056-15.501-15.495C165.514,257.447,172.41,250.662,181.015,250.662z M189.022,235.386
c0,5.372,3.746,9.334,8.632,9.334h146.043c4.615,0,8.688-3.962,8.688-9.334c0-5.102-4.071-9.336-8.688-9.336H197.654
C192.768,226.05,189.022,230.284,189.022,235.386z M351.569,287.134H189.619c-5.157,0-9.475,4.341-9.475,9.225
c0,5.157,4.316,9.498,9.475,9.498h161.949c5.158,0,9.501-4.341,9.501-9.498C361.07,291.475,356.727,287.134,351.569,287.134z
M345.326,311.014H195.917l-39.008,243.951l66.561-49.659l47.206,50.475l47.505-50.475l66.507,49.659L345.326,311.014z
M191.885,160.008c0-22.174-17.719-31.399-26.723-31.399c-10.329,0-18.235,6.094-20.307,15.953
c8.035-1.14,12.622,3.961,12.622,9.334c0,9.046-5.954,11.023-10.48,11.023c-11.997,0-16.249-11.418-16.249-21.75
c0-5.096,6.418-33.964,40.793-33.964c24.625,0,46.191,29.296,46.191,62.803c0,23.493-4.605,48.372-4.605,48.372h115.097
c0-120.629-61.474-187.563-143.191-187.563c-47.282,0-108.35,34.684-108.35,97.943c0,41.241,26.068,75.754,57.859,75.754
C181.75,207.969,191.885,179.189,191.885,160.008z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" height="765" width="605">
<path d="m1.5,1.5v458a301,301 0 0,0 602,0V1.5z" fill="#FFF" stroke="#000" stroke-width="3"/>
<path d="m2,2v363h601V2"/>
</svg>

After

Width:  |  Height:  |  Size: 215 B

+112
View File
@@ -0,0 +1,112 @@
<?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"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="406.539"
height="492.82401"
viewBox="-175.626 -214.155 406.539 492.824"
id="Ebene_1"
xml:space="preserve"><metadata
id="metadata405"><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="defs403"><defs
id="defs163">
<rect
width="406.539"
height="492.82401"
x="-175.62601"
y="-214.155"
id="SVGID_7_" />
</defs><clipPath
id="SVGID_8_">
<use
id="use167"
style="overflow:visible"
x="0"
y="0"
width="406.539"
height="492.82401"
xlink:href="#SVGID_7_" />
</clipPath></defs>
<g
id="g5">
<path
d="M 27.502,-212.635 H 229.404 V 84.091 c 0,106.609 -90.328,193.047 -201.773,193.047 l -0.129,-489.773 z"
id="path7"
style="fill:#ef3340" />
</g><path
d="m 174.788,-132.315 0,27.168 18.867,0 0,16.199 -18.867,0 0,27.168 -16.493,0 0,-27.168 -18.851,0 0,-16.199 18.851,0 0,-27.168 z m 23.078,91.973 0,-19.328 19.742,0 0,-9.157 0,-65.851 -19.742,0 0,-19.071 19.742,0 0,-26.257 -29.609,-0.055 0,17.922 -24.836,0.293 0,-18.285 -29.883,0 0,45.453 -20.344,0 -0.102,75.008 20.446,0 0,45.843 29.883,0 0,-18.433 24.836,-0.305 0,18.457 29.609,0.031 0,-26.265 z"
id="polygon37"
style="fill:#ffd100;fill-opacity:1;stroke:#010202;stroke-width:3.26399994" /><path
d="m 121.163,-183.717 c 0,-2.945 -1.477,-5.559 -3.656,-7.199 -0.461,-4.543 -4.266,-8.105 -8.922,-8.105 -4.625,0 -8.391,3.496 -8.875,7.992 -2.297,1.625 -3.75,4.305 -3.75,7.313 0,0.242 -0.016,0.488 0,0.711 V 88.607 h 25.203 v -271.828 -0.496 z M 96.499,74.4075 c -0.047,13.125 0.6015,54.2345 -37.5625,68.8125 l -0.03125,24.96875 c 38.141,14.609 37.7655,47.35925 37.8125,60.53125 l 23.65625,0 c 0.031,-13.172 -1.68725,-45.9535 36.46875,-60.5625 l 0,-24.84375 C 118.68575,128.73575 120.405,87.5325 120.374,74.4075 l -23.875,0 z m 11.46875,59.40625 c 5.898,0 10.656,4.703 10.75,10.5 5.82,0.149 10.5,4.84325 10.5,10.65625 0,5.812 -4.679,10.56225 -10.5,10.65625 -0.125,5.797 -4.883,10.4375 -10.75,10.4375 -5.852,0 -10.60975,-4.6405 -10.71875,-10.4375 -5.82,-0.141 -10.46875,-4.85925 -10.46875,-10.65625 0,-5.797 4.64875,-10.50025 10.46875,-10.65625 0.047,-5.813 4.85175,-10.5 10.71875,-10.5 z"
id="path95"
style="fill:#ffd100;fill-opacity:1;stroke:#010202;stroke-width:3.0480001;stroke-miterlimit:10" /><g
id="g9">
<path
d="m 27.631,277.138 0,0 c -111.41,0 -201.73,-86.438 -201.73,-193.047 V -212.636 H 27.502 l 0.129,489.774 z"
id="path11"
style="fill:#ffd100" />
</g><line
stroke-miterlimit="10"
x1="213.55299"
y1="103.435"
x2="213.55299"
y2="103.435"
id="line41"
style="fill:#ffd100;fill-opacity:1;stroke:#010202;stroke-width:2.77600002;stroke-linecap:square;stroke-miterlimit:10" /><path
d="m 284.03125,301.5 c -0.1073,13.77069 -6.88799,55.23566 -49.25,67.40625 -0.55232,-4.61762 -4.86532,-8.23275 -10.09375,-8.21875 -5.609,0 -10.1875,4.13275 -10.1875,9.21875 0,5.086 4.5785,9.21875 10.1875,9.21875 5.34465,0 9.73414,-3.75573 10.125,-8.53125 52.8486,14.05113 47.97111,61.08204 49.21875,64.34375 0.52689,-6.9571 1.9133,-55.2445 47.90625,-64.5625 0.272,4.86588 4.70581,8.75 10.125,8.75 5.633,0 10.125,-4.11675 10.125,-9.21875 0,-5.086 -4.492,-9.23375 -10.125,-9.21875 -5.24438,0 -9.57372,3.63557 -10.09375,8.28125 C 293.05168,358.38672 283.62028,317.68259 284.03125,301.5 z m -0.4375,46.46875 c 5.898,0 10.656,4.703 10.75,10.5 5.82,0.149 10.5,4.84325 10.5,10.65625 0,5.812 -4.679,10.56225 -10.5,10.65625 -0.125,5.797 -4.883,10.4375 -10.75,10.4375 -5.852,0 -10.60975,-4.6405 -10.71875,-10.4375 -5.82,-0.141 -10.46875,-4.85925 -10.46875,-10.65625 0,-5.797 4.64875,-10.50025 10.46875,-10.65625 0.047,-5.813 4.85175,-10.5 10.71875,-10.5 z m 0.4375,88.625 c -5.641,0 -10.1875,4.133 -10.1875,9.25 0,5.071 4.5465,9.21875 10.1875,9.21875 5.617,0 10.15625,-4.14075 10.15625,-9.21875 0,-5.117 -4.53925,-9.258 -10.15625,-9.25 z"
transform="translate(-175.626,-214.155)"
id="path73"
style="fill:#ffd100;fill-opacity:1;stroke:#010202;stroke-width:3.0480001;stroke-linecap:square;stroke-miterlimit:10" /><path
d="m 123.077,231.755 c 0.133,0 0.219,0.016 0.352,0.016 3.836,0 6.914,-3.148 6.914,-6.969 0,-3.836 -3.078,-6.961 -6.914,-6.961 h -0.055 -29.93 -0.07 c -3.836,0 -6.914,3.125 -6.914,6.961 0,3.836 3.094,6.969 6.914,6.969 0.133,0 0.234,-0.016 0.344,-0.016 h 29.359 z M 49.264,170.451 c 0,0.109 -0.039,0.219 -0.039,0.328 0,3.859 3.102,6.953 6.969,6.953 3.844,0 6.953,-3.094 6.953,-6.953 0,0 -0.016,0 -0.016,-0.016 h 0.016 v -29.969 l 0,0 c 0,-0.016 0.016,-0.031 0.016,-0.031 0,-3.844 -3.117,-6.969 -6.953,-6.969 -3.875,0 -6.969,3.125 -6.969,6.969 0,0.094 0.031,0.219 0.031,0.328 v 29.359 h -0.008 z m 117.11,-29.453 c 0,-0.125 0.031,-0.211 0.031,-0.289 0,-3.867 -3.141,-6.984 -6.977,-6.984 -3.844,0 -6.953,3.117 -6.953,6.984 h -0.016 v 29.93 h 0.016 v 0.07 c 0,3.836 3.109,6.945 6.953,6.945 3.836,0 6.977,-3.109 6.977,-6.945 0,-0.133 -0.031,-0.211 -0.031,-0.328 V 140.998 z M 124.881,77.232 H 92.084 c -3.594,0 -6.453,2.891 -6.453,6.438 0,3.563 2.828,6.461 6.406,6.477 h 32.813 0.031 c 3.547,0 6.43,-2.898 6.43,-6.477 0,-3.547 -2.867,-6.438 -6.43,-6.438 z M 124.405,56.826 H 91.936 c -3.508,0 -6.367,2.844 -6.367,6.359 0,3.508 2.844,6.328 6.328,6.344 h 32.492 0.016 c 3.508,0 6.383,-2.836 6.383,-6.344 0,-3.516 -2.875,-6.359 -6.383,-6.359 z"
id="path135"
style="fill:#ffd100;fill-opacity:1;stroke:#010202;stroke-width:3.24799991;stroke-miterlimit:10" /><path
d="m -17.81,103.841 -52.441,59.125 c 0,0 -3.637,3.313 -11.559,2.906 -9.582,-0.422 -14.664,-10.813 -18.598,-17.828 -1.496,-0.484 -4.754,-1.172 -4.754,-1.172 l -6.734,5.406 c 0,0 -2.082,1.984 -0.867,4.25 1.195,2.266 14.305,15.469 19.41,15.922 2.352,0.203 0.414,1.891 -0.152,2.125 -5.762,2.063 -15.168,-1.984 -15.168,-1.984 0,0 -0.695,-0.18 -6.258,-0.719 -5.566,-0.5 -4.711,3.516 -4.711,3.516 0,0 2.145,6.563 3.641,8.672 3.406,4.766 25.223,-2.953 25.223,-2.953 0,0 4.57,-0.734 5.824,1.953 -8.59,8.094 -14.414,14.016 -17.109,18.375 -4.609,7.938 -1.891,12.031 -1.02,13.094 1.824,1.609 9.121,1.859 12.625,-2.094 1.992,-2.281 4.219,-11.5 10.09,-20.016 4.406,-6.375 12.063,-12.656 16.688,-13.984 10.063,-2.891 24.742,4.969 24.742,4.969 0,0 7.176,3.031 10.336,-5.719 0.848,-2.375 1.059,-4.344 1.059,-4.344 l -0.977,-2.797 c 0,0 -17.961,-4.609 -25.457,-1.398 -2.945,1.266 -3.273,-1.477 -2.449,-3.094 1.25,-2.477 5.738,-8.742 12.305,-16.398 12.266,-14.305 29.535,-33.359 30.617,-41.141 -4.025,-2.406 -4.306,-4.672 -4.306,-4.672 z"
id="path147"
style="fill:#ef3340;fill-opacity:1;stroke:#010202;stroke-width:3.0480001" /><path
d="m -53.232,-162.26 c -0.32,1.457 -0.059,7.168 2.488,8.535 1.141,0.625 2.156,-0.023 2.91,-1.129 0.75,-1.086 0.594,-2.582 0.594,-2.582 -0.02,-0.031 -1.832,-3.184 0.336,-6.555 2.383,-3.652 8.711,-8.055 25.352,-8.18 16.621,0.133 22.949,4.527 25.32,8.18 2.168,3.371 0.367,6.523 0.352,6.555 0,0 -0.168,1.504 0.59,2.582 0.746,1.105 1.785,1.754 2.922,1.129 2.535,-1.367 2.809,-7.086 2.488,-8.535 -1.512,-6.984 -8.219,-15.352 -31.664,-15.535 -23.473,0.183 -30.176,8.55 -31.688,15.535 z m 7.871,53.695 c -14.496,-7.656 -32.199,-6.617 -32.199,-6.617 0,0 -3.977,1.832 -4.336,5.234 -5.449,-3.066 -4.867,-9.074 -4.867,-9.074 0,0 0.449,-15.352 17.641,-9.629 2.051,0.68 6.938,-0.043 6.641,-1.93 -0.305,-1.832 4.551,-6.496 10.207,-2.488 5.656,4.016 42.938,43.742 48.547,57.234 -28.09,-14.41 -49.563,-16.234 -49.563,-16.234 0,0 -6.559,-0.457 -13.543,-0.266 4.543,-4.367 13.77,-9.52 17.641,-8.254 5.145,1.695 19.406,6.598 19.406,6.598 l -15.575,-14.574 z m -47.265,-14.262 c -1.664,10.422 1.227,11.262 4.785,13.301 3.969,2.258 30.703,0.363 35.938,0.832 5.215,0.48 20.133,14.859 20.133,14.859 0,0 -12.23,-7.313 -19.359,-8.508 -10.336,-1.758 -25.816,-0.133 -36.137,1.188 -10.359,1.309 -12.902,-8.387 -12.902,-8.387 0,0 -1.587,-9.449 7.542,-13.285 z"
id="path369"
style="fill:#ef3340;fill-opacity:1;stroke:#010202;stroke-width:3.0480001" /><path
d="M 27.709,-212.549 V 276.396"
id="path4707"
style="fill:none;stroke:#010202;stroke-width:3.0480001" /><path
d="M 27.502,-212.635 H 229.404 V 84.091 c 0,106.609 -90.328,193.047 -201.773,193.047 -111.41,0 -201.73,-86.438 -201.73,-193.047 V -212.636 H 27.502 z"
id="path4705"
style="fill:none;stroke:#010202;stroke-width:3.0480001" /><path
d="m -90.56,224.466 c -5.059,-4.078 -5.098,-9.313 -5.016,-12.484 0.094,-4.094 -6.984,1.344 -6.41,3.953 0.313,1.477 -1.945,10.969 11.426,8.531 z"
id="path4703"
style="fill:#ef3340;fill-opacity:1;stroke:#010202;stroke-width:3.0480001" /><path
d="m -126.369,193.919 c 0,0 1.117,-11.938 10.496,-13.672 5.641,-1.078 2.047,-5.523 2.047,-5.523 0,0 -8.969,-2.852 -15.063,8.625 -1.952,3.672 2.52,10.57 2.52,10.57 z"
id="path4701"
style="fill:#ef3340;fill-opacity:1;stroke:#010202;stroke-width:3.0480001" /><path
d="m -128.603,154.904 c 0.57,-3.453 4.953,-16 18.25,-8.672 4.926,2.703 3.609,6.477 3.609,6.477 0,0 -2.633,3.359 -5.93,1.063 -8.601,-5.993 -7.855,-7.321 -15.929,1.132 z"
id="path4699"
style="fill:#ef3340;fill-opacity:1;stroke:#010202;stroke-width:3.0480001" /><path
d="m -23.802,192.466 c 4.754,-2 5.719,-9.953 4.563,-11.531 -5.859,-7.867 -13.219,-8.453 -13.219,-8.453 0,0 -3.781,3.219 3.602,8.578 7.374,5.352 5.23,9.844 5.054,11.406 z"
id="path399"
style="fill:#ef3340;fill-opacity:1;stroke:#010202;stroke-width:3.0480001" />
<path
d="m -16.971,-174.20599 c 0,2.31904 -2.08098,4.199 -4.647999,4.199 -2.56702,0 -4.648,-1.87996 -4.648,-4.199 0,-2.31905 2.08098,-4.199 4.648,-4.199 2.567019,0 4.647999,1.87995 4.647999,4.199 z m 5.114,-20.806 c 0,5.11194 -4.477153,9.256 -10,9.256 -5.522848,0 -10,-4.14406 -10,-9.256 0,-5.11195 4.477152,-9.256 10,-9.256 5.522847,0 10,4.14405 10,9.256 z m -5.039,12.60699 c 0,2.32 -2.082,4.215 -4.664,4.215 -2.563,0 -4.633,-1.895 -4.633,-4.215 0,-2.297 2.07,-4.176 4.633,-4.176 2.582,0 4.664,1.879 4.664,4.176 z m -0.075,25.047 c 0,2.30634 -2.08098,4.176 -4.647999,4.176 -2.56702,0 -4.648,-1.86966 -4.648,-4.176 0,-2.30634 2.08098,-4.176 4.648,-4.176 2.567019,0 4.647999,1.86966 4.647999,4.176 z m 0,-8.414 c 0,2.31462 -2.08098,4.191 -4.647999,4.191 -2.56702,0 -4.648,-1.87638 -4.648,-4.191 0,-2.31463 2.08098,-4.191 4.648,-4.191 2.567019,0 4.647999,1.87637 4.647999,4.191 z m 27.321,3.359 c 0,2.32 2.082,4.199 4.664,4.199 2.543,0 4.641,-1.879 4.641,-4.199 0,-2.32 -2.098,-4.191 -4.641,-4.191 -2.582,0 -4.664,1.871 -4.664,4.191 z m -3.199,-7.914 c 0,2.363 2.063,4.266 4.648,4.266 2.559,0 4.641,-1.902 4.641,-4.266 0,-2.352 -2.082,-4.254 -4.641,-4.254 -2.586,0 -4.648,1.903 -4.648,4.254 z m -6.609,-5.918 c 0,2.305 2.09,4.184 4.672,4.184 2.555,0 4.648,-1.879 4.648,-4.184 0,-2.328 -2.094,-4.207 -4.648,-4.207 -2.583,0 -4.672,1.879 -4.672,4.207 z m -8.391,-3.656 c 0,2.313 2.086,4.176 4.664,4.176 2.559,0 4.641,-1.863 4.641,-4.176 0,-2.32 -2.082,-4.199 -4.641,-4.199 -2.578,0 -4.664,1.879 -4.664,4.199 z m 0.2300005,-1.88699 c 0,2.31462 -2.0845622,4.191 -4.6560005,4.191 -2.571437,0 -4.656,-1.87638 -4.656,-4.191 0,-2.31463 2.084563,-4.191 4.656,-4.191 2.5714383,0 4.6560005,1.87637 4.6560005,4.191 z m -45.8159995,19.375 c 0,2.31904 -2.084563,4.199 -4.656001,4.199 -2.571437,0 -4.656,-1.87996 -4.656,-4.199 0,-2.31905 2.084563,-4.199 4.656,-4.199 2.571438,0 4.656001,1.87995 4.656001,4.199 z M -54.865,-174.588 c 2.57,0 4.656,1.91 4.656,4.262 0,2.355 -2.086,4.266 -4.656,4.266 -2.57,0 -4.656,-1.91 -4.656,-4.266 0,-2.352 2.086,-4.262 4.656,-4.262 z m 11.221999,-1.657 c 0,2.31076 -2.08098,4.184 -4.647999,4.184 -2.56702,0 -4.648,-1.87324 -4.648,-4.184 0,-2.31075 2.08098,-4.184 4.648,-4.184 2.567019,0 4.647999,1.87325 4.647999,4.184 z m 8.419,-3.656 c 0,2.30634 -2.084562,4.176 -4.656,4.176 -2.571438,0 -4.656,-1.86966 -4.656,-4.176 0,-2.30634 2.084562,-4.176 4.656,-4.176 2.571438,0 4.656,1.86966 4.656,4.176 z m 9.078001,-1.88699 c 0,2.31462 -2.084562,4.191 -4.656,4.191 -2.571438,0 -4.656,-1.87638 -4.656,-4.191 0,-2.31463 2.084562,-4.191 4.656,-4.191 2.571438,0 4.656,1.87637 4.656,4.191 z m -28.719,7.19999 c 2.57,0 4.656,1.91 4.656,4.262 0,2.355 -2.086,4.266 -4.656,4.266 -2.57,0 -4.656,-1.91 -4.656,-4.266 0,-2.352 2.086,-4.262 4.656,-4.262 z m 60.657,28.589 v -0.016 c 0,0 -54.25,0.016 -54.266,0.016 -1.664,0 -3.023,1.586 -3.023,3.57 0,1.977 1.359,3.574 3.023,3.574 H 5.768 c 1.68,0 3.031,-1.598 3.031,-3.574 0,-1.968 -1.336,-3.542 -3.007,-3.57 z m 2.75,-7.14 v -0.016 l -59.504,0.008 c -1.848,0 -3.336,1.598 -3.336,3.574 0,1.992 1.488,3.582 3.336,3.582 0.051,0 0.098,-0.016 0.16,-0.023 h 59.16 c 0.066,0.008 0.121,0.023 0.168,0.023 1.84,0 3.328,-1.59 3.328,-3.582 -0.016,-1.969 -1.488,-3.551 -3.312,-3.566 z"
id="path4794"
style="fill:#ef3340;fill-opacity:1;stroke:#010202;stroke-width:3.0480001" /><path
d="m 26.936,-98.405 c 0,0 -6.41,-7.199 -7.16,-7.145 4.328,-3.801 7.566,-6 7.16,-8.535 -2.418,2.223 -12.402,-0.375 -13.035,-5.223 2.625,-1.168 1.961,-0.449 7.656,-7.152 -17.437,2.313 -15.574,-13.21 -15.574,-13.21 l -54.434,-0.543 -5.359,10.73 48.801,51.461 c 0,0 7.305,13.434 7.168,17.336 -7.441,-1.656 -10.055,-4.605 -27.25,8.707 -16.766,-6.16 -12.598,-3.113 -41.391,6.047 -9.68,3.078 -18.887,-3.297 -18.887,-3.297 0,0 -9.457,-10.84 5.238,-17.215 0.961,-2.234 -10.641,-17.57 -26.168,-35.762 -20.59,-29.977 -41.094,-68.734 -53.008,-88.91 -18.48,26.824 -4.617,54.719 17.223,79.512 5.641,6.688 18.305,20.398 24.371,25.566 10.352,10.008 12.809,11.855 12.809,14 -2.152,-0.094 -5.609,-1.246 -7.16,-1.297 -3.633,-0.965 -41.563,-20.141 -52.867,-30.934 -9.109,32.617 10.371,39.16 25.16,43.289 11.273,3.125 21.672,5.309 30.305,6.734 -0.238,0.969 -0.039,0.641 -0.246,1.098 -14.059,3.703 -42.168,5.656 -57.746,2.484 -4,34.172 47.961,22.172 60.352,13.672 0.746,-0.016 1.035,0 1.035,0 0,0 -0.418,1.313 -0.785,2.473 -13.297,12.035 -47.449,25.457 -57.402,29.219 19.188,38.766 61.832,-10.816 67.371,-18 0.902,0.031 1.031,0 1.781,0 4.586,5.621 -52.781,79.625 -62.352,91.125 39.754,23.375 66.473,-52.078 81.473,-83.422 1.895,0.375 2.551,0.281 2.551,0.281 0,0 0.168,4.816 -0.504,6.324 0.395,2.801 -33.063,108.41 -47.551,138.941 61.734,0.984 57.785,-97.316 67.695,-143.629 0.328,-1 1.664,-1.141 3.074,-0.813 3.367,4.984 -0.707,86.215 -3.633,110.277 47.113,-13.865 25.297,-104.47 27.184,-114.275 1.863,-4.508 5.023,-3.188 5.023,-3.188 0,0 18.512,54.657 17.945,59.536 -2.168,4.617 -42.953,88.141 -42.953,88.141 l 21.375,-4.422 c 0,0 11.848,37.938 13.801,38.766 C 3.19,105.201 6.526,87.529 8.983,85.013 c 4.816,16.375 19.164,46.422 12.582,83.125 -6.52,36.688 -34.391,61.875 -51.133,60.547 -9.211,-0.203 -9.41,-6.594 -7.816,-8.375 11.422,-12.836 7.207,-26.422 -6.395,-27.406 -5.941,-0.43 -20.512,0.984 -24.375,11.797 -0.992,2.781 1.465,2.828 1.465,2.828 0,0 3.32,-3.031 9.527,-3.836 18.375,-2.367 -12.582,19 -10.582,33.82 0.66,4.836 3.574,8.703 5.527,10.539 5.352,5.031 15.918,4.75 17.848,4.602 2.793,-0.18 32.766,2.805 65.727,-46.852 0.922,-1.406 1.879,0.281 1.602,4.953 -0.578,10.938 -14.555,29.227 -20.848,35.938 -1.832,1.93 -4.328,11.57 2.48,13.961 10.199,3.625 22.094,15.578 22.094,15.578 l 0.25,-374.637 z"
clip-path="url(#SVGID_8_)"
id="path169"
style="fill:#010202" /><path
d="m -17.154,-126.565 c 0,1.961 -2.543,3.527 -5.695,3.527 -3.137,0 -5.688,-1.566 -5.688,-3.527 0,-1.926 2.551,-3.504 5.688,-3.504 3.152,-0.008 5.695,1.578 5.695,3.504"
id="path201"
style="fill:#ffffff" /><path
d="m -22.322,-127.124 c 0,1.367 -1.281,2.473 -2.848,2.473 -1.586,0 -2.863,-1.105 -2.863,-2.473 0,-1.352 1.277,-2.449 2.863,-2.449 1.567,0 2.848,1.098 2.848,2.449"
id="path205"
style="fill:#010202" /><path
d="m -33.115,-134.436 c 0,0 -4.461,0.766 -4.422,3.984 0.102,5.352 15.496,-3.258 24.766,-1.434 -6.727,-3.113 -21.055,3.051 -22.055,0.633 -0.297,-0.679 1.711,-3.183 1.711,-3.183"
id="path209"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 16 KiB

+119
View File
@@ -0,0 +1,119 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.539px" height="492.849px" viewBox="-175.873 -214.081 406.539 492.849"
enable-background="new -175.873 -214.081 406.539 492.849" xml:space="preserve">
<g>
<path fill="#E8423F" d="M27.264-212.561h201.895V84.166c0,106.625-90.352,193.063-201.766,193.063
c-111.426,0-201.746-86.438-201.746-193.063v-296.727H27.264z"/>
<path fill="#FFD730" d="M112.682-152.225c0,27.32-24.266,49.48-54.203,49.48c-29.941,0-54.207-22.16-54.207-49.48
c0-27.336,24.266-49.488,54.207-49.488C88.417-201.713,112.682-179.561,112.682-152.225"/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="-175.873" y="-214.081" width="406.539" height="492.849"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="none" stroke="#010202" stroke-width="3.32" stroke-miterlimit="10" d="M58.479-201.706
c29.945,0,54.211,22.152,54.211,49.48s-24.266,49.48-54.211,49.48c-29.938,0-54.207-22.152-54.207-49.48
S28.542-201.706,58.479-201.706z"/>
</g>
</g>
</g>
</g>
<polygon fill="#010202" points="-128.814,-181.905 -77.361,233.791 -62.087,232.103 -109.806,-184.026 "/>
<path fill="#FFD730" d="M-124.966-178.866c0.086,0.625,50.543,408.258,50.625,408.859c0.551-0.078,7.863-0.867,8.438-0.93
c-0.086-0.633-46.871-408.648-46.941-409.289C-113.431-180.143-124.384-178.928-124.966-178.866"/>
<path fill="#010202" d="M-121.623-197.659L-121.623-197.659c-9.801,1.234-17.055,7.898-16.184,14.867
c0.895,6.969,9.582,11.613,19.367,10.375c5.77-0.719,10.938-3.391,13.84-7.113c1.848-2.414,2.672-5.094,2.336-7.758
C-103.142-194.256-111.83-198.913-121.623-197.659"/>
<path fill="#FFD730" d="M-121.201-194.241c-7.52,0.945-13.223,5.457-13.223,10.254c0,0.25,0.016,0.508,0.047,0.762
c0.648,5.082,7.602,8.402,15.52,7.395c4.859-0.617,9.18-2.793,11.523-5.82c1.285-1.672,1.855-3.477,1.645-5.199
C-106.333-191.928-113.287-195.241-121.201-194.241"/>
<path fill="#010202" d="M-108.24-91.858L-108.24-91.858c-9.457,1.219-16.43,7.68-15.559,14.395
c0.871,6.719,9.254,11.199,18.695,9.984c9.449-1.203,16.406-7.672,15.559-14.395C-90.408-88.592-98.791-93.073-108.24-91.858"/>
<path fill="#FFD730" d="M-107.806-88.424c-7.168,0.918-12.617,5.215-12.617,9.801c0,0.238,0.016,0.496,0.047,0.734
c0.625,4.824,7.273,7.969,14.832,6.992c7.547-0.969,13.191-5.695,12.555-10.527C-93.591-86.264-100.24-89.409-107.806-88.424"/>
<path fill="#010202" d="M-68.263-51.737c40.969-3.543,90.336-17.848,112.375-71.199c21.672,0,27.75-1.457,27.75-1.457
s7.984,10.535,46.078,30.594c7.219,3.789,29.203,82.59,29.203,82.59s4.063,15.594-7.297,16.906
c-11.359,1.277-31.953,0.438-31.953,0.438s26.492,208.734,26.688,210.516c-1.5,0.422-10.523,5.203-20.828,10.594
c-10.219,5.313-21.75,11.266-28.547,12.953c-0.438,0.125-5.469,1.359-7.781-3.25c-2.313-4.578,0.859-8.063,0.859-8.063
l22.281-19.641c0,0,0.625-1.117,0.594-1.875c-0.055-0.781-1.039-1.078-1.039-1.078l-36.422-0.281L29.432,29.4l-4.023,0.902
L58.651,206.54l-71.137,0.047L6.323-24.303l-72.211-0.203C-65.88-24.506-68.064-49.608-68.263-51.737"/>
<polygon fill="#FFFFFF" points="71.417,-102.768 74.057,-122.944 67.698,-109.143 48.846,-109.143 43.549,-121.881
45.909,-102.768 "/>
<rect x="42.995" y="-57.377" fill="#FFD730" width="47.797" height="32.145"/>
<rect x="33.713" y="-57.377" fill="#FFD730" width="7.18" height="32.145"/>
<rect x="27.338" y="-57.377" fill="#FFD730" width="4.508" height="32.145"/>
<path fill="#010202" d="M93.581-152.225c0,18.609-16.195,33.68-36.164,33.68c-19.984,0-36.176-15.07-36.176-33.68
c0-18.605,16.191-33.688,36.176-33.688C77.385-185.913,93.581-170.831,93.581-152.225"/>
<path fill="#FFFFFF" d="M56.612-167.127c8.313,0.16,22.836-2.891,19.922,14.805c-0.609,3.699,0,8.57,0,8.57
s0.547,5.664-0.156,9.414c-1.25,11.328-3.859,13.496-16.859,13.961c-15.344,0.547-15.063-0.969-17.563-7.191
c-5.672-17.281-3.328-30.551-3.328-30.551S40.026-167.409,56.612-167.127"/>
<path fill="#010202" d="M13.608,210.064c0,0-16.992,0-26.613-0.055c-6.426,9.023-25.891,6.328-31.082,6.609
c-4.559,0.266-7.695,3.219-7.695,7.969c0,4.773,3.953,8.016,8.207,8.016H5.288c5.938,0,7.715-5.359,7.715-5.359L13.608,210.064z"/>
<path fill="#FFFFFF" d="M65.94-0.346l-2.945-22.75l-15.742,0.109H32.549c-0.625,0-1.148,0.656-1.148,1.426
c0,0.801,0.508,1.441,1.148,1.441h11.688c0,0,0.297,2.031-0.57,2.078c0,0-12.883,0.234-13.461,0.234
c-0.594,0-4.285-3.25-4.285-3.25c-0.215-0.215-0.305-0.313-0.391-0.438c-0.152-0.219-0.207-0.578-0.207-0.578
c0-0.656-0.203-1.25-0.945-1.297c-0.754-0.047-1.328,0.426-1.41,1.098c-0.184,1.473,0.059,1.605,0.168,1.766
c0.098,0.168,0.242,0.426,4.699,4.855c0.215,0.313,0.773,0.516,1.133,0.508l11.77-0.066l0.109,2.184H28.881
c-0.641,0-1.152,0.641-1.152,1.441c0,0.785,0.504,1.426,1.152,1.426h12.074l0.109,2.031H29.44c-0.633,0-1.16,0.641-1.16,1.422
c0,0.801,0.52,1.426,1.16,1.426h11.766l0.078,2.145H30.19c-0.652,0-1.164,0.641-1.164,1.422c0,0.801,0.504,1.441,1.164,1.441
h14.953c0.047,0,0.109-0.051,0.172-0.051H65.94V-0.346z"/>
<path fill="#010202" d="M-116.494-50.264c0,1.832,1.285,4.77,4.918,4.77h13.801v21.215l57.594-0.215l-2.641-27.922l-73.672-0.07
V-50.264z"/>
<path fill="#FFFFFF" d="M-67.56-26.674l-2.215-23.543l-44.52-0.047c0,0.918,0.574,2.605,2.727,2.605h15.984v21.035L-67.56-26.674z"
/>
<path fill="#010202" d="M-110.287-47.639c-2.023,0-3.664,1.719-3.664,3.855c0,2.125,1.641,3.84,3.664,3.84h13.953
c2.039,0,3.672-1.723,3.672-3.84c0-2.145-1.633-3.855-3.672-3.855H-110.287z"/>
<path fill="#FFFFFF" d="M-110.287-45.456c-0.809,0-1.465,0.75-1.465,1.672c0,0.902,0.656,1.656,1.465,1.656h13.953
c0.824,0,1.496-0.754,1.496-1.656c0-0.922-0.672-1.672-1.496-1.672H-110.287z"/>
<path fill="#010202" d="M-109.263-41.69c-2.023,0-3.641,1.703-3.641,3.816c0,2.082,1.617,3.801,3.641,3.801h13.488
c2,0,3.633-1.719,3.633-3.801c0-2.113-1.633-3.816-3.633-3.816H-109.263z"/>
<path fill="#FFFFFF" d="M-109.263-39.506c-0.801,0-1.457,0.723-1.457,1.625c0,0.871,0.656,1.609,1.457,1.609h13.488
c0.793,0,1.449-0.738,1.449-1.609c0-0.902-0.656-1.625-1.449-1.625H-109.263z"/>
<path fill="#010202" d="M-108.767-35.897c-1.992,0-3.574,1.574-3.574,3.512c0,1.922,1.582,3.512,3.574,3.512h13.625
c1.984,0,3.59-1.59,3.59-3.512c0-1.938-1.605-3.512-3.59-3.512H-108.767z"/>
<path fill="#FFFFFF" d="M-108.767-33.69c-0.801,0-1.457,0.578-1.457,1.313c0,0.738,0.656,1.313,1.457,1.313h13.625
c0.809,0,1.445-0.574,1.445-1.313c0-0.734-0.637-1.313-1.445-1.313H-108.767z"/>
<path fill="#010202" d="M-107.904-30.905c-1.961,0-3.559,1.488-3.559,3.328c0,1.855,1.598,3.375,3.559,3.375h12.914
c1.977,0,3.566-1.512,3.566-3.375c0-1.84-1.59-3.328-3.566-3.328H-107.904L-107.904-30.905z"/>
<path fill="#FFFFFF" d="M-107.904-28.721c-0.758,0-1.375,0.512-1.375,1.145c0,0.641,0.617,1.168,1.375,1.168h12.914
c0.781,0,1.375-0.527,1.375-1.168c0-0.625-0.594-1.145-1.375-1.145H-107.904z"/>
<path fill="#010202" d="M47.924-147.194c0,1.229-1,2.207-2.195,2.207c-1.211,0-2.195-0.979-2.195-2.207
c0-1.215,0.984-2.199,2.195-2.199C46.924-149.401,47.924-148.409,47.924-147.194"/>
<path fill="#010202" d="M67.877-147.194c0,1.229-0.984,2.207-2.219,2.207c-1.188,0-2.188-0.979-2.188-2.207
c0-1.215,1-2.199,2.188-2.199C66.893-149.401,67.877-148.409,67.877-147.194"/>
<path fill="#010202" d="M59.76-154.522c-0.477,0.395-0.508,1.074-0.148,1.555c0.398,0.461,1.758,0.879,2.219,0.488
c0.125-0.105,3.844-2.121,4.781-1.953c1.656,0.32,3.672,0.895,6,2.063c0.547,0.273,1.172,0.25,1.547-0.23
c0.375-0.504,0.078-1.449-0.445-1.809C66.284-159.799,59.831-154.577,59.76-154.522"/>
<path fill="#010202" d="M42.713-154.616c-0.555,0.23-0.805,0.879-0.57,1.449c0.25,0.559,1.297,1.008,1.844,0.758
c1.188-0.504,4.266-1.734,6.125-0.449c1.094,0.793,1.563,2.395,1.391,4.785c-0.703,10-0.641,12.879-0.641,13.008
c0.016,0.586,0.477,1.063,1.063,1.09l9.031,0.344c0.609,0.023,0.672-2.191,0.086-2.219c0,0-6.25,0.219-7.906,0.145
c0.039-1.527,0.117-5.445,0.594-12.191c0.031-0.367,0.031-0.703,0.031-1.063c0-2.648,0.313-4.586-1.227-5.723
C49.088-157.194,42.924-154.729,42.713-154.616"/>
<path fill="#010202" d="M51.956-128.995c-0.914,0-1.656,0.73-1.656,1.648c0,0.914,0.742,1.664,1.656,1.664h10
c0.922,0,1.672-0.75,1.672-1.664c0-0.918-0.75-1.648-1.672-1.648H51.956z"/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_3_" x="-175.873" y="-214.081" width="406.539" height="492.849"/>
</defs>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_3_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#010202" stroke-width="3.048" d="M27.264-212.561h201.895V84.166
c0,106.625-90.352,193.063-201.766,193.063c-111.426,0-201.746-86.438-201.746-193.063v-296.727H27.264z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.0 KiB

+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1900 2307">
<title>Wappen Graubünden</title>
<path d="m1893 8.939v1387c0 498-422 902-943 902-520.7 0-942.9-404-942.9-902l0.005-1387z" stroke="#000" stroke-width="14.21" fill="#fff"/>
<path d="m477.6 1111h-469.6l0.037-1104 469.6 0.186v1104zm1094 247c-1-5-4-10-6-14 1-6 1-12-1-18-4-11-14-19-25-22 0-5 0-9-2-14-4-13-17-22-33-23 0-4 0-7-1-10-7-19-29-28-52-22 0-2 0-4-1-6-7-19-31-29-54-21-1 1-2 1-2 1 0-3-1-5-2-8-6-18-30-26-53-18-4 1-8 3-11 5 0-2 0-5-1-7-6-18-30-26-54-18-8 3-16 8-21 14-5-17-27-28-50-24-13 3-23 9-30 17-8-13-27-20-47-17-18 4-32 15-36 28-8-12-26-19-44-16-22 5-38 23-34 42 0 2 1 3 1 5 9-7 22-14 33-17 23-6 45-2 58 10 4-3 8-6 13-8 23-11 49-8 63 7 1 0 2-1 3-2 28-13 59-6 70 17v2c1-1 1-1 2-1 27-13 58-6 69 17 1 1 2 3 2 5 54-15 191 58 238 156 9-11 12-26 8-40m-716.7-104c0-4 3.8-7 9.6-9 1 7 7.6 13 15.6 13 8.7 0 15.8-7 15.8-16h-0.1c9.7 1 17.3 5 17.3 12 0 20-58.2 16-58.2 0m641.7 208c2-8 2-17-2-25-5-9-12-16-20-19 3-8 3-17-1-26-5-9-13-16-23-18 2-8 2-16-1-24-6-12-19-18-33-18 2-8 1-17-2-24-8-15-26-22-45-19 0-4-1-9-3-13-8-17-29-24-50-17 1-7 0-13-2-18-8-17-33-23-56-12-5 2-9 5-13 9 0-5 0-10-3-15-8-17-33-23-55-12-4 2-8 4-11 7-8-18-33-23-56-12-7 3-13 8-18 13-8-14-31-21-54-15-14 4-25 11-33 20-41.4-44-94.9-39-109.6-37-74.4 11-111.2 58-158 62-21.3 2-42.6-6-53.5-12-10.4 19 8.7 13 7.1 26-0.5 4-21.3 28 8.2 29 14.1 1 39.2-2 47.9 9-137.9 23-100.3-43-123.7-43-33.8 0-28.4 97 66.5 79 3.3 7 10.4 12 15.3 16 31.6-22 101.9-10 35.4 38 52.9 6 60.5-31 61-34 19.2-9 62.2 9 86.2 6 24-2 57.2-36 66.5-38 33.2 38 56.7 36 120.7 22-22-56-85-37-89.1-52 24.1-16 73.1-24 128.1-22 0 0 1 1 2 1 50 2 107 13 156 35 103 48 191 138 194 245 28-32 32-63 20-92m-357 266c25 27 27 80 95 132-42 39-50 12-53 10-69 4-19-69-24-87-92 84-34 149-34 149s15 25-9 30c-52 11-178.6 60-218.5 122-21 32-40.3-12-48.1-11-14.8 3-48.7 62-48.7 62s-79.4 12-81.7 9c-2.4-4 28.2-52 39.1-69-19.9-10-48.9 42-48.9 42l-42.9 6s67.8-69 71.2-81c3.2-8 153.9 6 248-123-170.8-149 112.5-205 155.5-191m-1036 30s27.2 7 33.2 10c5.9 4 53.3-39 56.9-39 3.7 1 7.1 3 7.9 7 0.7 4-65.5 68-65.5 68s57.7 3 90.8 1c33.2-3 32.3-24 41.6-43 12.6-13 19.6-16 19.6-16s8.8 13 29.1 16c22.1 4 44.6-47 103.8-87 38.2-27 149 7 149 7s165.7 51 175.3 69c49.6-13 53.5-109 72.3-102 32.9 13-7.6 41-6.4 59 26.5-5 277.1-15 298.1-5 2 0-57-31-57-31s80-51 153 125c24 59 93 57 135 76 122 18 82 170 87 189-1 3-8 10-10 12-8 9-32 13-32 13h-8s-11-3-21-3c-26-1-51 35-84 72 21 10 41-6 41-6s38-62 48-41c1 3-43 72-47 76 5 16 33-9 42-11 10-1 59-5 68-45 4-23 59-17 59-17s10-4 14-9c-16-19-1-182-9-207 12-31-2-47-2-47s-25 1-45-16c-35-17-74-165-100-178 2-5 4-9 8-11 35-15 70 18 73 42 1 17 56 24 56 24s3-4-13-23c-4-4 4-8 4-8s61 27 74-19c-70 23-116-96-216-17-41-36-129-93-388.5-133 78.5-88 58.4-143 26.7-158-71.9 55-95.4 14-121.1 22-20.9 90-248.1 18-258.8 215 3.6 0 65.3 3 74.2 3 3.2 12 7.9 12-24.6 20-17.9-5-112.6-7-155.9-20-45.9-9-91.7 30-91.7 30s-76.3 61-93.8 69c-17.4 8-55.7 16-66.1 21-10.2 4-30.3-2-30.3-2l-93.8 48zm479.4-297c4.4 6 20.6 14 20.6 14s-29 35-44.5 111c-20.4-1-33.5-2-33.5-2s-25.2 2-33.7-32c-21.5-85-23.6-121-45.6-151-10.8-15-39.4-23-65.7-31-27.4-9-52.5-17-52.5-17s-34.4-16-61.6 8c-3.1 3-9.7 2-10.6-14s-18.1-9-18.1-9-24.7 14-50.5 21c-32.4 9-84.3-55-101.4-54 25.2-1 98.9-2 98.9-2s10.4-8 2.9-15-63.7 10-69.7 1-16.8-26-16.8-26 31.2 10 77.6 4c35.4-5 56.5 1 60.1 3 72.4 45 199 50 219.1 47 28.4-4 42.4 22 48.3 31 7.8 13 11.7 24 11.7 24s33.1 46 65 89"/>
<path d="m1098 1763s21-18 63 0c4 9 5 10 11 22-12-17-60-15-74-22" fill="#e7423f"/>
<path d="m632.3 1267c8.2 1 4.8 36 44.7 43 21.9 4 48.4 4 79.1-1 0 4-0.3 6-0.6 10-64.2 12-80.3 17-107.1 5-31.7-13-26.3-58-16.1-57" fill="#e7423f"/>
<path d="m950.7 7.107v1104h941.3v-1104l-941.3 0.107z" stroke="#000" stroke-width="14.21" fill="#0083c2"/>
<g stroke="#000" stroke-width="14.21" fill="none">
<path d="m1276 1111h-325.3v-402.1h325.3v402.1z"/>
<path d="m1892 410.5h-325v-403l325 0.059v403z"/>
<path d="m7.813 7.108 0.218 1104h1884v-1104z" stroke-linecap="square" stroke-miterlimit="10"/>
</g>
<path d="m1892 410.5h-325v-403l325 0.059v403zm-616 700.5h-325.3v-402.1h325.3v402.1zm0-1103v402.9h-323.8l-0.2 149.2h469v-552.1l-145 0.021zm616 701.3v-149.8h-471v551.9h146v-402.1h325z" stroke="#000" stroke-width="14.21" fill="#ffd303"/>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

+71
View File
@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.316px" height="492.574px" viewBox="-175.931 -213.741 406.316 492.574"
enable-background="new -175.931 -213.741 406.316 492.574" xml:space="preserve">
<path fill="#FFFFFF" d="M27.084-212.217h201.77V84.357c0,106.555-90.271,192.954-201.641,192.954
c-111.352,0-201.617-86.397-201.617-192.954v-296.574H27.084z"/>
<rect x="27.147" y="-212.217" fill="#E8423F" width="201.707" height="68.734"/>
<rect x="27.139" y="-73.362" fill="#E8423F" width="201.707" height="70.137"/>
<path fill="#E8423F" d="M27.139,137.021H221.26c4.93-16.719,7.594-34.422,7.594-52.672V66.896H27.139V137.021z"/>
<path fill="#E8423F" d="M182.745,207.177H27.139v70.134h0.648C90.151,277.115,145.862,249.88,182.745,207.177"/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="-175.931" y="-213.741" width="406.316" height="492.574"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="none" stroke="#010202" stroke-width="3.048" d="M27.139-3.225h201.714v-70.129H27.139
V-3.225z M182.745,207.177H27.139v70.134h0.648C90.151,277.115,145.862,249.88,182.745,207.177z M27.139,207.177h155.59
c17.547-20.328,30.805-44.109,38.523-70.156H27.139V207.177z M27.139,137.021H221.26c4.93-16.719,7.594-34.422,7.594-52.672
V66.896H27.139V137.021z M27.139,66.896h201.714V-3.225H27.139V66.896z M228.854-143.483v-68.734H27.139v68.734H228.854z
M27.139-73.354h201.714v-70.137H27.139V-73.354z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_3_" x="-175.931" y="-213.741" width="406.316" height="492.574"/>
</defs>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_3_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#010202" stroke-width="3.048" d="M27.084-212.217h201.77V84.357
c0,106.555-90.271,192.954-201.641,192.954c-111.352,0-201.617-86.397-201.617-192.954v-296.574H27.084z"/>
</g>
</g>
</g>
</g>
<path fill="#E8423F" d="M-157.173-138.331c0,20.855,9.961,45.488,38.043,46.184c5.313,0.145,18.621-0.496,27.414-9.07
c5.266-5.145,7.938-12.266,7.938-21.145c0-14.922-7.586-21.52-13.945-24.441c-7.711-3.496-16.809-3.129-22.086-1.551
c1.688-4.387,5.863-11.543,20.32-12c5.797-0.191,14.086,1.285,20.68,9.391c7.902,9.703,15,31,3.863,77.305l-0.441,1.871h57.129
l0.023-1.504c0.711-48.145-9.168-82.949-29.391-103.465c-16.938-17.184-36.281-19.047-43.824-19.047
C-156.412-195.795-157.173-138.905-157.173-138.331"/>
<path fill="#010202" d="M-91.458-197.315c-34.168,0-50.609,15.609-58.402,28.703c-8.727,14.738-8.832,29.648-8.832,30.273
c0,21.543,10.352,46.984,39.504,47.727h0.523l0.605,0.008c8.41,0,35.801-2.285,35.801-31.75c0-21.168-15.016-28.723-29.063-28.723
c-1.832,0-3.824,0.137-5.723,0.434c2.352-3.727,7.137-7.863,17.602-8.199c0.344-0.016,0.609-0.016,0.871-0.016
c5.297,0,12.855,1.598,18.848,9.199c7.504,9.52,14.168,30.375,3.289,75.641l-0.895,3.758h3.855h53.703h3l0.047-3.016
c0.711-48.559-9.313-83.734-29.832-104.543C-63.892-195.42-83.732-197.315-91.458-197.315 M-155.634-138.362
c0-2.395,1.285-55.906,64.176-55.906c14.176,0,71.535,6.738,71.734,115.691c0,1.727-0.008,3.492-0.039,5.262h-53.703
c4.023-16.746,5.766-30.695,5.766-42.191c-0.008-33.793-15-46.398-30.863-46.398c-0.32,0-0.648,0-0.969,0.023
c-20.688,0.656-22.086,15.094-22.965,16.215c0.512-0.441,1.484-0.887,2.781-1.281c0.32-0.086,0.664-0.184,1.023-0.27
c1.992-0.48,4.555-0.809,7.379-0.809c11.055,0,26.023,5.039,26.023,25.672c0,26.031-23.746,28.703-32.762,28.703
c-0.383,0-0.727-0.016-1.047-0.016c-26.434-0.664-36.527-23.777-36.527-44.672v-0.023L-155.634-138.362L-155.634-138.362z"/>
<rect x="-85.373" y="-67.506" fill="#E8423F" width="77.387" height="11.504"/>
<rect x="-85.373" y="-67.506" fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="10" width="77.387" height="11.504"/>
<rect x="-85.373" y="-35.788" fill="#E8423F" width="77.387" height="11.512"/>
<rect x="-85.373" y="-35.788" fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="10" width="77.387" height="11.512"/>
<rect x="-100.994" y="-51.604" fill="#E8423F" width="108.621" height="11.512"/>
<rect x="-100.994" y="-51.604" fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="10" width="108.621" height="11.512"/>
<polygon fill="#E8423F" points="-73.763,154.724 -107.701,194.427 -81.451,-19.569 -12.236,-19.569 14.292,194.427 -19.923,154.982
-46.701,240.052 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="10" points="-73.763,154.724 -107.701,194.427
-81.451,-19.569 -12.236,-19.569 14.292,194.427 -19.923,154.982 -46.701,240.052 "/>
</svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

+29
View File
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.504px" height="492.75px" viewBox="-176.134 -213.811 406.504 492.75"
enable-background="new -176.134 -213.811 406.504 492.75" xml:space="preserve">
<g>
<path fill="#FFFFFF" d="M26.963-212.292h201.875V84.376c0,106.609-90.328,193.031-201.73,193.031
c-111.395,0-201.715-86.422-201.715-193.031v-296.668H26.963z"/>
<path fill="#248BCC" d="M27.116,277.408L27.116,277.408c-111.395,0-201.715-86.422-201.715-193.031v-296.668H26.963L27.116,277.408
z"/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="-176.134" y="-213.811" width="406.504" height="492.75"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="none" stroke="#000000" stroke-width="3.048" d="M26.963-212.292h201.875V84.376
c0,106.609-90.328,193.031-201.73,193.031c-111.395,0-201.715-86.422-201.715-193.031v-296.668H26.963z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+76
View File
@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.469px" height="492.748px" viewBox="0 0 406.469 492.748" enable-background="new 0 0 406.469 492.748"
xml:space="preserve">
<g>
<g>
<g>
<g>
<g>
<path fill="#FFFFFF" d="M203.086,1.565h201.839v296.668c0,106.594-90.281,193.047-201.703,193.047
c-111.406,0-201.711-86.453-201.711-193.047V1.565H203.086z"/>
</g>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<path fill="#E8423F" d="M274.115,1.748v477.259c76.164-27.384,130.414-97.538,130.805-179.905V1.746L274.115,1.748
L274.115,1.748z"/>
</g>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<path fill="#16A74E" d="M1.52,1.756v296.477c0,85.461,58.031,157.922,138.43,183.313V1.757L1.52,1.756L1.52,1.756z"/>
</g>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<polygon fill="#FFFFFF" points="393.559,59.955 346.365,59.955 346.365,12.526 332.332,12.526 332.332,59.955 285.99,59.955
285.99,73.998 332.332,73.998 332.332,119.877 346.365,119.877 346.365,73.998 393.559,73.998 "/>
</g>
</g>
</g>
</g>
<g>
<g>
<g>
<g>
<g>
<g>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" y="0.014" width="406.457" height="492.734"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="none" stroke="#010202" stroke-width="3.048" d="M203.086,1.533h201.839v296.668
c0,106.609-90.281,193.031-201.703,193.031c-111.406,0-201.711-86.422-201.711-193.031V1.533H203.086z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

+11
View File
@@ -0,0 +1,11 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" height="2298" width="1900">
<title>Wappen Nidwalden</title>
<g stroke="#000" stroke-linecap="square" stroke-miterlimit="10" stroke-width="14.13" fill="#fff">
<path d="m949.4 7.048h939.6v1381c0 497-420 899-939 899-518.6 0-939.1-402-939.1-899l-0.02-1381 938.5 0.048z" fill="#e7423f"/>
<path d="m1119 844.2h129v107.3h200v-107.3h90v107.3h220v-121.7h-81v-96.9h81v-122.9h-220v107.3h-90v-107.3h-119v-94.3h119v-107.3h90v107.3h220v-121.6h-81v-96.9h81v-121.6h-220v105.9h-90v-105.9h-200v105.9h-129v562.7z"/>
<path d="m777.8 844.2h-128.2v107.3h-200.2v-107.3h-90.3v107.3h-219.8v-121.7h81.1v-96.9h-81.1v-122.9h219.8v107.3h90.3v-107.3h119.1v-94.3h-119.1v-107.3h-90.3v107.3h-219.8v-121.6h81.1v-96.9h-81.1v-121.6h219.8v105.9h90.3v-105.9h200.2v105.9h128.2v562.7z"/>
<path d="m969.1 69.66 1.2 1293c0 2 1.7 132 134.7 132 72 0 104-24 134-46 34-25 68-50 156-51 32 0 107 4 156 53 32 32 48 76 48 133 0 52-34 103-89 134-73 39-162 36-234-12l-18-12c-41-28-98-67-165-34-43 21-66 57-63 99 0 26 8 41 18 58 15 25 33 56 33 140 0 50-16 137-119.7 146-83.1 8-143.7-73-144.1-146-0.5-84 18.1-115 32.6-140 9.9-17 18.4-32 18.4-57 2.7-43-20.4-79-63.5-100-66.8-33-123.1 6-164.7 34l-17.8 12c-72.7 49-161.2 51-233.8 12-55.3-31-89.6-82-89.6-134 0-57 16.2-101 48-133 49.4-49 124.3-53 154.2-53 89.9 1 124.3 26 157.6 51 30.9 22 62.8 46 134.3 46 133.1 0 134.8-130 134.8-132l1.1-1293-163.3-0.68v1227c0 22-6 37-17 42-12.7 6-32.3-2-53.6-21-56.4-51-151.6-74-220.9-74-69.8 0-330.7 57-330.7 339 0 151 113.5 314 362.9 314 76.5 0 150.5-39 190.5-67-20.8 37-34.7 80-34.7 126 0 39 7.3 79 22.4 118 40.8 103 125.6 170 232.6 182 9.3 2 23.7 2 33 2 9.2 0 18.1 0 26.2-1 111.8-13 196.8-80 237.8-183 15-38 22-79 22-117 0-47-14-90-35-127 40 28 114 67 191 67 249 0 363-163 363-314 0-282-261-339-331-339-69 0-165 23-221 74-21 19-41 27-54 21-10-5-16-20-16-42v-1227z"/>
<path d="m1213 1127c0 29-23 52-51 52h-424.7c-28.6 0-51.7-23-51.7-52s23.1-52 51.7-52h424.7c28 0 51 23 51 52z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

+103
View File
@@ -0,0 +1,103 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="647"
width="530"
version="1.1"
id="svg60"
sodipodi:docname="20221120201213!Wappen_Obwalden_matt.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs64" />
<sodipodi:namedview
id="namedview62"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.45737896"
inkscape:cx="83.08209"
inkscape:cy="157.4187"
inkscape:window-width="1920"
inkscape:window-height="1017"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg60" />
<g
id="g5781">
<path
d="m 2,3 v 377 a 263,263 0 0 0 526,0 V 3 Z"
fill="#ffffff"
id="path34"
style="stroke:#000000;stroke-width:3.6" />
<path
d="M 528,2 H 2 v 306 h 526 z"
id="path36"
style="fill:#e7423f;stroke:#000000;stroke-width:3.6;fill-opacity:1" />
<path
d="M 286,324 V 18 H 244 V 324 M 244,39 H 194 V 63.3 H 178 V 39 h -62 v 42 h 45 v 18 h -45 v 42 h 62 v -24 h 16 v 24 h 24 v 17 h -24 v 24 h -16 v -24 h -62 v 42 h 45 v 18 h -45 v 42 h 62 v -24 h 16 v 24 h 50"
fill="#ffffff"
id="path38"
style="stroke:#000000;stroke-width:3.6" />
<use
xlink:href="#b"
transform="matrix(-1,0,0,1,530,0)"
id="use40"
style="fill:#dd3322;stroke:#000000;stroke-width:3.6" />
<g
id="b"
style="fill:#e7423f;stroke:#000000;stroke-width:3.6;fill-opacity:1">
<path
id="a"
d="m 395,422 c 18,31 11,62 -14,76 -25,14 -36,1 -35,-22 -16,17 -5,43 11,47 12,3 31,-1 44,-8 36,-20 48,-72 24,-111"
style="fill:#e7423f;fill-opacity:1" />
<path
d="m 264,343 h 34 c 4,0 6,-4 6,-7 v -21 c 0,-3 -2,-7 -6,-7 h -34 m 0,318 c 37,0 67,-17 81,-46 11,-22 7,-42 1,-58 -11,-29 -51,-23 -55,1 15,-10 33,-11 36,11 4,36 -22,57 -63,57 m 1,-248 h 27 c 9,0 21,7 17,21 l -15,51 h -29"
id="path43"
style="fill:#e7423f;fill-opacity:1" />
<use
xlink:href="#a"
transform="matrix(0.472,-0.882,-0.882,-0.472,581,970)"
id="use45"
style="fill:#e7423f;fill-opacity:1" />
<path
d="m 264,334 h 40 c 12,0 11,-17 0,-17 h -40"
id="path47"
style="fill:#e7423f;fill-opacity:1" />
<circle
cy="483"
cx="320"
r="18.200001"
id="circle49"
style="fill:#e7423f;fill-opacity:1" />
<circle
cy="543"
cx="370"
r="18.200001"
id="circle51"
style="fill:#e7423f;fill-opacity:1" />
</g>
<ellipse
cy="371"
cx="265"
rx="21"
ry="28"
id="ellipse54"
style="fill:#e7423f;stroke:#000000;stroke-width:3.6;fill-opacity:1" />
<circle
cy="426"
cx="265"
r="24.700001"
id="circle56"
style="fill:#e7423f;stroke:#000000;stroke-width:3.6;fill-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

+11
View File
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="541" height="678.98352" viewBox="-5 -5 365.66667 457.65568">
<g stroke="black" stroke-width="4.5" fill="#009639">
<path d="M 2.5,2.5 h 349 V 176.2 C 351.5,293.6 320,395 177,443.35 34,395 2.5,293.6 2.5,176.2 z" stroke-width="5" />
<path d="M 168.6,35.7 a 8.45,7.5 0 0,1 16.8,0 V 411.5 a 8.45,7.5 0 0,1 -16.8,0 z" fill="white" />
<path d="M 144.75,369.3 a 7.45,7.2 0 0,1 -14.9,0 V 114.6 a 7.45,6.4 0 0,1 14.9,0 V 367.9 a 9.375,8.9 0 0,0 18.75,0 V 116.2 a 9.375,8.4 0 0,0 -18.75,0 M 209.25,369.3 a 7.45,7.2 0 0,0 14.9,0 V 114.6 a 7.45,6.4 0 0,0 -14.9,0 V 367.9 a 9.375,8.9 0 0,1 -18.75,0 V 116.2 a 9.375,8.4 0 0,1 18.75,0 M 163.5,119 A 13.5,11.5 0 0 1 190.5,119 L 190.5,366 A 13.5,11 0 0 1 163.5,366 M 198,77.6 V 49.8 H 173 c -25,-0.2 -38.5,-13 -49.4,-27.2 -6.9,13.6 -8.9,22 -9.2,34.8 0.4,15 2.2,24.1 11,40 13.9,-14.2 26.7,-19.5 46.3,-19.8 z" fill="white" />
<path d="M 125.5,131 l 103,0 0,22 -103,0 z M 125.5,331.7 l 103,0 0,22 -103,0 z M 125.5,319.5 l 1.5,0 101.5,-120.5 0,-33.7 -1.5,0 -101.5,120.5 z" stroke-linejoin="round" />
<path d="M 125.5,165.3 l 1.5,0 101.5,120.5 0,33.7 -1.5,0 -101.5,-120.5 z" stroke-linejoin="round" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+53
View File
@@ -0,0 +1,53 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" height="2298" width="1900" version="1.1" xmlns:cc="http://creativecommons.org/ns#">
<title>Wappen Schaffhausen</title>
<path d="m949.4 7.069h939.6v1381c0 497-420 899-939 899-518.7 0-939.1-402-939.1-899l-0.02-1381 938.5 0.069z" fill="#ffd72e"/>
<path d="m949.4 7.069h939.6v1381c0 497-420 899-939 899-518.7 0-939.1-402-939.1-899l-0.02-1381 938.5 0.069z" stroke="#000" stroke-width="14.14" fill="none"/>
<path d="m166.5 747.7s60.5 14.3 93.1 2.5c19.4-7 21.1-43.5 15.7-42-14.6 4.3-91.4-8-117.7-14.8-7.5-1.9 8.9 54.3 8.9 54.3z" stroke="#000" stroke-miterlimit="10" stroke-width="12.43" fill="none"/>
<path d="m294 742.6s-141.5-3.1-150.5-6.7c-9.1-3.6 16.9 60.1 53.2 75.1 20.9 8.6 58.5-36 100.2-39.4 10.3-0.8-2.9-29-2.9-29" fill="#ffd72e"/>
<path d="m253.4 698.5c-2.4 2.5-4.1 35-4.1 35l31.8 45.3s25.5-8.5 24.7-3c3.1 15.2-12.9 27 10 33 22.8 6.1 22.7-32 90.6-29.6 67.8 2.5 90.5 10 107.9 35.7 22 32.5 36.2 126 41.8 139.5 4.2 10.1 16.1 40.9 33.7 48.6 18.4 7 41.4-27.7 41.4-28.7 0-7.8-7.9-16.4-7.9-23.2 0-6.9 9.8-25.1 17.1-36.8 9.5-15.3-29.6-103.7-32.2-113.8-0.3-17.4-7-33.8-7-33.8s-11.3-20.8-16.6-26.1c-5.4-5.2-6.4-11.2-12.8-13.2-4.7-1.6-61.8-12.4-100.8-13-11.3-0.2-94.5-14.5-103.8-8.1-32.1-10.1-81.7-44-113.8-7.8"/>
<path d="m1003 1482c1 6 19 140 19 144s-28.3 44-66.3 41c-24.8-3-38.7-50-33-98 5.6-48 68.4-90 80.3-87z" stroke="#000" stroke-width="13.99" fill="none"/>
<path d="m1108 1618c-27-43-83-129-83-129s-52.7 10-48.6 98c4.2 88 106.6 81 131.6 31" fill="#ffd72e"/>
<g stroke="#000" fill="none">
<path d="m1108 1618c-27-43-83-129-83-129s-52.7 10-48.6 98c4.2 88 106.6 81 131.6 31z" stroke-width="13.99"/>
<path d="m294 742.6s-141.5-3.1-150.5-6.7c-9.1-3.6 16.9 60.1 53.2 75.1 20.9 8.6 58.5-36 100.2-39.4 10.3-0.8-2.9-29-2.9-29z" stroke-miterlimit="10" stroke-width="12.43"/>
<path d="m225.9 1104-33.3 100s-84.5 1-76.4-5c8-7 51.9-77 60.6-80s49.1-15 49.1-15z" stroke-miterlimit="10" stroke-width="13.99"/>
</g>
<path d="m222.5 1096s58.3 9 54.7 8 3.1 83 0.7 87c-2.3 5-71.3 54-112 38-6-2 56.6-133 56.6-133" fill="#ffd72e"/>
<path d="m222.5 1096s58.3 9 54.7 8 3.1 83 0.7 87c-2.3 5-71.3 54-112 38-6-2 56.6-133 56.6-133z" stroke="#000" stroke-miterlimit="10" stroke-width="13.99" fill="none"/>
<path d="m454.5 1900s41.7-3 48.9 7-60.1 73-60.1 73-69.2 5-73.3-2 84.5-78 84.5-78z" stroke="#000" stroke-width="13.99" fill="none"/>
<path d="m508.2 1888 30.4 11s7.9 83-2.6 95c-10.7 13-72.2 40-124.6 17-12.3-6 96.8-123 96.8-123" fill="#ffd72e"/>
<path d="m508.2 1888 30.4 11s7.9 83-2.6 95c-10.7 13-72.2 40-124.6 17-12.3-6 96.8-123 96.8-123zm989.8-10c14-10 29-22 53-23l-4 114s-72 34-74 29 14-110 25-120z" stroke="#000" stroke-width="13.99" fill="none"/>
<path d="m1550 1824s-39 173-35 179c3 5 99-42 104-76 4-33-26-110-26-110l-43 7z" fill="#ffd72e"/>
<path d="m1550 1824s-39 173-35 179c3 5 99-42 104-76 4-33-26-110-26-110l-43 7z" stroke="#000" stroke-width="13.99" fill="none"/>
<path d="m1037 1460c-11 14-28 21-30 17 6-38-10.6-85-40.2-122 35.2 5 83.2 90 70.2 105m-471.4-324c4.9 7-6.2 30 7.1 49 9.8 14 34.8 8 41.1 17 10.6 14 36.9 86 104.6 30 17 38 257.1 113 237 107-94.6-23-88.1 9-106.6 2-18.5-8-66.7-35-82.2 22-39-10-57.2-7-83.9 45-5.4 3-70.6 15-53.8 84-40 23-29.5 58 6.5 97-4.7 38-14.7 68 51.2 76 3.8 6 11.5 33 67.2 30 10.5 18-1.8 26-1.8 26s-150.6 108-216.6 111c-26.7 2-25.4 4-32.3 10s-25.7 51-25.7 51-7.5 12 3.1 17c10.4 6 36.9 16 55.3 17 5.6 1 13.6-2 16.9-14 3.4-13 28.7-23 32.3 14 0.4 4 22.4-1 24.3-4 16.2-26 28.8-65 99.5-94 58.3-23 166-61 174.3-66 8.2-6 12.3-38 5-49-7.4-10-26.2-35-26.2-35s68.3-24 74.2-26c-50.6-78 20.3-179 89.9-163-2 2-21 23 15 48-25 52 40 64 40 64s2 34 9 39 7 6 61 2c16-1 46 57 102 0 12 30 80 43 92-1 67 36 91-34 86-46 9 0 9-1 12-8 32 17 37 50 52 93 16 49 33 104 33 104s3 23-1 26c-10 6-19 31-10 57 61 31 92 4 92-1 1-5 4-21 9-25s29-15 29-21c-1-6-8-15-18-26-11-5-18-20-27-25-16-9-68-177-74-202-5-25 16-89-19-96-31-6-44 29-64 11-5-6 13-11-2-34-3-4-15-18-38-13 8-49-51-54-51-54s9-24-28-82c97 7 87-28 103-32 8-2 78 21 86-30 10 0 60 7 71-46 53 12 62-48 62-48s71-13 37-67c27-22 30-63-22-69 2-57.5-43-61.3-72-31.2-2-4.6-48-38.2-77 33.2-63-9-55 50-55 50s-51-13-47 62c-23 3-20 20-20 20s10 104-79 122c-33-55-130-83-197-119-45-23-75-50-70-59 28-53 17-65 17-65s48-22.9 40-54.1c47-14.5 33-52.6 42-62.9 8-10.3 49-5.3 30-59.9-4-9.3-55-27.1-74-54.3-4 0-7 0.5-7 0.5s-2-38.2-18-39.5-39 26.8-58 25.9c-10-0.4-39.6-1.7-47.6-3-8.1-1.2-37.3 22.7-37.3 22.7s-65-15.2-83.5 21.8c-47.7-22.6-71.5 18.5-71.5 18.5s-60.7-18.9-71.2 53c-69.1 12.1-64.9 47.7-63.4 63.6 1.4 16 8.6 16.2 3.4 32.5-24.9 6.5-49.6 36.2-49.6 36.2s-8.9 4-38.3-20c-35-27.9-51.6-41.3-59.7-50.5-8.2-9.2-30.3-14.3-64.5 0.9-14.8 6.5-12.8 12.6-54.2 39.1-49.1 31.5-102.7 69.5-136.5 64.5-20.5-3-58.5 29-58.9 56-0.3 26 98.2 23 99.3 12 1.2-11 8.8-16 8.8-16s23.8 48 52.6 12 52.4-55 52.4-55 37.6-42 73.8-26 61.4 63 93.5 97"/>
<path d="m815.3 300.2c-15.9-161.7 369.7-165.2 268.7 183.2" stroke="#000" stroke-width="13.8" fill="none"/>
<path d="m1145 616.5c10 7.9 72-130.1 84-142.9 12-12.7 19-30.4 19-50.1 0-31.2-18-57.8-43-67.6 9-14.2 14-31.4 14-50.1 1-48.9-34-88.9-78-89.3-2-0.1-4 0.1-6 0.3 16-20.4 20-48.4 7-70.7-16-29.1-54-37.3-84-18.4-2 1.1-4 2.4-5 3.6-1-8.9-4-17.5-9-25.1-17-27.26-54.8-32.45-83.7-11.75-3.3 2.3-6.2 4.86-8.9 7.55-18-25.25-54.3-29.77-82.5-9.59-8.2 5.79-14.7 13.09-19.5 21.19-17.6-9.6-38.8-9.4-55.6 2.6-23.1 16.5-29.6 49.3-16.4 76.2-14.5-0.9-28.7 4-39.1 15-20.9 21.7-19.2 59 3.6 83.4 1.4 1.4 2.9 2.8 4.3 4.1-0.8 0.8-1.6 1.5-2.4 2.3-19.8 20.7-19.7 54.8 0.3 76.1 14.6 15.5 35.6 19.9 53.6 13.2-6.5 18.6-3.4 39.6 9.8 53.7 18.8 19.9 50.6 18.8 71.1-2.7 3.6-3.8 6.6-8 9.1-12.5 17.2 21.7 46.6 25.8 66.2 9.2 18.1-15.4 21.4-43.1 9-64.9 52.1-42.2-20.6-112.6-64.3-69.6 22.1 10.3 25.1 36.6 6.2 45.9-9 4.3-19.1 7.2-27.2 4.5-34.3-11.2-29.6-57.8-25.8-70.1 15-48.9 86.4-58.5 133.2-38.8 24 10 122 49 42 264.6" stroke="#000" stroke-width="14" fill="none"/>
<path d="m1650 765.4c23-15 37-42.6 33-72-3-25.9-19-46.7-40-57.2 6-12.2 8-25.9 7-40.2-5-39-39-66.7-79-64 4-8.2 6-17.1 5-26.4-4-29.2-33-49.4-65-45.2-17 2.2-32 11-41 23.2-11-32-44-52.8-79-48.1-23 2.9-42 15.5-54 33-17-11.4-40-17-64-13.8-48 6.3-82 42.4-77 80.8 1 12.3 6 23.4 14 32.4l-71 48.5 66 94.7s95-73.4 176-69.4c91 4.4 136 45.8 132 121.7-4 66.1-72 65.6-85 32.9-14-32.6 16-49.2 16-49.2-41-40.5-82-7.9-88 19.2-14-3.4-28-0.8-39 8.7-20 16.7-22 48.4-5 70.8 4 4.2 7 7.9 11 10.8-11 18.3-10 44.3 5 63.7 18 23.7 49 28.9 70 11.6 0-0.4 1-0.9 1-1.3 2 4.7 5 9.2 8 13.4 18 23.7 50 28 72 9.6 8-7.2 14-17 16-27.5 2 1.4 3 2.9 4 4.3 25 24.3 64 22.5 87-3.9 16-17.9 21-42.5 14-64.2 4 0 7-0.1 10-0.5 37-4.9 64-33.1 60-63.1-2-13.6-9-25.2-20-33.3" fill="#ffd72e"/>
<path d="m1650 765.4c23-15 37-42.6 33-72-3-25.9-19-46.7-40-57.2 6-12.2 8-25.9 7-40.2-5-39-39-66.7-79-64 4-8.2 6-17.1 5-26.4-4-29.2-33-49.4-65-45.2-17 2.2-32 11-41 23.2-11-32-44-52.8-79-48.1-23 2.9-42 15.5-54 33-17-11.4-40-17-64-13.8-48 6.3-82 42.4-77 80.8 1 12.3 6 23.4 14 32.4l-71 48.5 66 94.7s95-73.4 176-69.4c91 4.4 136 45.8 132 121.7-4 66.1-72 65.6-85 32.9-14-32.6 16-49.2 16-49.2-41-40.5-82-7.9-88 19.2-14-3.4-28-0.8-39 8.7-20 16.7-22 48.4-5 70.8 4 4.2 7 7.9 11 10.8-11 18.3-10 44.3 5 63.7 18 23.7 49 28.9 70 11.6 0-0.4 1-0.9 1-1.3 2 4.7 5 9.2 8 13.4 18 23.7 50 28 72 9.6 8-7.2 14-17 16-27.5 2 1.4 3 2.9 4 4.3 25 24.3 64 22.5 87-3.9 16-17.9 21-42.5 14-64.2 4 0 7-0.1 10-0.5 37-4.9 64-33.1 60-63.1-2-13.6-9-25.2-20-33.3zm-251 40.3c44 104.1 211 27.3 131-126.5-52-100.2-214-95.1-287-25.6" stroke="#000" stroke-width="14.06" fill="none"/>
<g fill="#ffd72e">
<path d="m1141 605.6c11 13.7 35 10.8 54-6.2 20-17 27-41.9 16-55.6s-36-10.9-55 6.2c-19 17-26 41.9-15 55.6"/>
<path d="m1059 523.5c11 14.3 36 12.1 55-5 20-17 26-42.5 15-56.7-11-14.3-36-12.1-56 4.9-19 17.1-25 42.6-14 56.8"/>
<path d="m1204 682.9c12 14.2 37 11.7 56-5.7 20-17.4 27-43 16-57.2-12-14.3-37-11.7-56 5.6-20 17.4-27 43.1-16 57.3"/>
</g>
<path d="m1141 605.6c11 13.7 35 10.8 54-6.2 20-17 27-41.9 16-55.6s-36-10.9-55 6.2c-19 17-26 41.9-15 55.6zm-82-82.1c11 14.3 36 12.1 55-5 20-17 26-42.5 15-56.7-11-14.3-36-12.1-56 4.9-19 17.1-25 42.6-14 56.8zm145 159.4c12 14.2 37 11.7 56-5.7 20-17.4 27-43 16-57.2-12-14.3-37-11.7-56 5.6-20 17.4-27 43.1-16 57.3z" stroke="#000" stroke-width="11.73" fill="none"/>
<path d="m1008 498.9c25-52.7 14-108.2 14-108.2s83 39.3 46 151c-4-3.7-39-31.1-60-42.8" fill="#ffd72e"/>
<path d="m1209 717.1c55-32.6 134-17.9 134-17.9s-59-89.1-159-22c4 3.4 17 18.8 25 39.9" fill="#ffd72e"/>
<path d="m1008 498.9c25-52.7 14-108.2 14-108.2s83 39.3 46 151c-4-3.7-39-31.1-60-42.8z" stroke="#000" stroke-width="14.06" fill="none"/>
<path d="m1209 717.1c55-32.6 134-17.9 134-17.9s-59-89.1-159-22c4 3.4 17 18.8 25 39.9z" stroke="#000" stroke-width="13.8" fill="none"/>
<g>
<path d="m868.3 698c-10.2 8.6-159.1 60.8-196.1 11.8-39.8-52.5 13.1-111.3 20.9-107.1 7.7 4.2 10.2 67.4 49.8 79.1 39.5 11.7 113.4 4.6 113.4 4.6l12 11.6z" fill="#050102"/>
<path d="m1051 617.1c19 22.8 58 19.2 89-8s41-67.8 23-90.6-58-19.3-88 7.9c-31 27.3-42 67.9-24 90.7" fill="#ffd72e"/>
<path d="m1128 673c15 19.1 50 14.4 78-10.3 29-24.8 39-60.2 24-79.3-15-19-50-14.4-78 10.4-28 24.7-39 60.2-24 79.2" fill="#ffd72e"/>
</g>
<path d="m1051 617.1c19 22.8 58 19.2 89-8s41-67.8 23-90.6-58-19.3-88 7.9c-31 27.3-42 67.9-24 90.7zm77 55.9c15 19.1 50 14.4 78-10.3 29-24.8 39-60.2 24-79.3-15-19-50-14.4-78 10.4-28 24.7-39 60.2-24 79.2z" stroke="#000" stroke-width="14.06" fill="none"/>
<path d="m987.3 523.8c111.7 62.3 177.7 173.7 194.7 213.5 14-6.9 19-17.5 32-23.3-44-93.6-126-183-203-222.9-7 11.7-14.9 21.6-23.7 32.7" fill="#ffd72e"/>
<path d="m987.3 523.8c111.7 62.3 177.7 173.7 194.7 213.5 14-6.9 19-17.5 32-23.3-44-93.6-126-183-203-222.9-7 11.7-14.9 21.6-23.7 32.7z" stroke="#000" stroke-width="14.06" fill="none"/>
<path d="m1086 576.2c44 42.8 88 102.3 102 148-2 2.7 7-2 3-0.1 17 6.4 20 10.6 38 26.3 9 8.2 17 14.7 22 29.4 3 10.4 3 21 3 31.6 2 35.1-8 68.1-23 77.1-20 12.4-21-13.9-32-32.3-21-36.5-80-60.7-97-90.1-4-7.6-12-44.3-12-44.3s-52 36-83 39.7c-31.7 3.7-47.8-20.7-107-19.3-20.7 18.4-41.4 25.5-58.8 33-18.1 7.9-27.6-23.9-52.4-40.1 9.4-7.4 77.5 5.7 79.5-37.1-10.2 8.6-159.1 60.8-196.1 11.8-39.8-52.5 13.1-111.3 20.9-107.1 7.7 4.2 10.2 67.4 49.8 79.1 39.5 11.7 113.4 4.6 113.4 4.6s-2.5-1.5-4.4-3c-1.4 5.1-98.1-2.7-98.1-2.7s-13.1-25.7-3.9-40.5c3.8-4.7 4.2-4.7 4.2-4.7l9.6-19.8s5.7-7.9 13.9-4.5 25.8 2.8 25.8 2.8 79.7-65 106.1-54.1c2.4-21.2 36.7-73.4 87.2-48.9 3.1-1.9 0.1 2 2.5 3.1 6.8 0.2 47.8 24.4 86.8 62.1"/>
<path d="m671.8 654.9c-0.9 4.2-1.3 8.3-1.4 12.2 0 12.2 3.9 23.7 11.8 34.2 28 37.3 141.8 4.2 179-9.2-34.2 10.6-98.7 7.3-123.7 1.3-29.1-6.3-46.7-47.5-50.2-70.2v-0.1c-5.7 7-12.6 18.2-15.5 31.8" fill="#e7423f"/>
<g fill="#ffd72e">
<path d="m999.8 598.2c-2-1.8-19.6-13.8-27.5-13-2.4-2.3-13.3-8.8-7.4-11.4 3.1-1.4 9-2.1 10.2-2.1 1.3 0 14.4 2.2 17.2 2.3 12.7 1.8 37.7 20.6 32.7 53.7-1 6.7-20-24.8-25.2-29.5"/>
<path d="m804.4 633.3 7.7-2.3 6.6 3.5-0.1 3.5-3.3 6.9-5.5 5.7-8.8 5.7h-5.5l-3.2-2.3-2.2-4.7 3.3-5.7 11-10.3z"/>
<circle cx="986" cy="605.4" r="18.8"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

+28
View File
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.425px" height="492.703px" viewBox="-176.197 -213.866 406.425 492.703"
enable-background="new -176.197 -213.866 406.425 492.703" xml:space="preserve">
<g>
<path fill="#FFFFFF" d="M26.881-212.346h201.824V84.306c0,106.594-90.281,193.016-201.688,193.016
c-111.398,0-201.695-86.422-201.695-193.016v-296.652H26.881z"/>
<polygon fill="#E8423F" points="-174.677,20.529 -174.677,-212.346 26.881,-212.346 228.707,-212.346 228.707,20.529 "/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="-176.197" y="-213.866" width="406.425" height="492.703"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="none" stroke="#010202" stroke-width="3.048" d="M26.881-212.346h201.824V84.306
c0,106.594-90.281,193.016-201.688,193.016c-111.398,0-201.695-86.422-201.695-193.016v-296.652H26.881z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+89
View File
@@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Ebene_1"
x="0px"
y="0px"
width="406.523px"
height="492.832px"
viewBox="-176.119 -213.831 406.523 492.832"
enable-background="new -176.119 -213.831 406.523 492.832"
xml:space="preserve"
sodipodi:docname="Wappen_Schwyz_matt.svg"
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs27">
</defs><sodipodi:namedview
id="namedview25"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="1.5867476"
inkscape:cx="203.24593"
inkscape:cy="236.01737"
inkscape:window-width="1920"
inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Ebene_1" />
<path
fill="#e7423f"
d="M 27.018,-212.311 H 228.889 V 84.392 c 0,106.633 -90.328,193.07 -201.742,193.07 -111.426,0 -201.746,-86.438 -201.746,-193.07 v -296.703 z"
id="path2" /><polygon
fill="#ffffff"
points="151.092,-197.553 132.014,-197.553 132.014,-139.518 73.577,-139.518 73.577,-120.217 132.014,-120.217 132.014,-61.92 151.092,-61.92 151.092,-120.217 209.686,-120.217 209.686,-139.518 151.092,-139.518 "
id="polygon4-0"
transform="matrix(0.98,0,0,0.98,3.75358,0.59692)" /><g
id="g20">
<g
id="g18">
<g
id="g16">
<g
id="g14">
<defs
id="defs7">
<rect
id="SVGID_1_"
x="-176.119"
y="-213.83099"
width="406.52301"
height="492.832" />
</defs>
<clipPath
id="SVGID_2_">
<use
xlink:href="#SVGID_1_"
overflow="visible"
id="use9"
x="0"
y="0"
width="100%"
height="100%" />
</clipPath>
<path
clip-path="url(#SVGID_2_)"
fill="none"
stroke="#000000"
stroke-width="3.048"
d="M 27.018,-212.311 H 228.889 V 84.392 c 0,106.633 -90.328,193.07 -201.742,193.07 -111.426,0 -201.746,-86.438 -201.746,-193.07 v -296.703 z"
id="path12" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

+334
View File
@@ -0,0 +1,334 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.402px" height="492.691px" viewBox="-176.306 -213.897 406.402 492.691"
enable-background="new -176.306 -213.897 406.402 492.691" xml:space="preserve">
<g>
<path fill="#FFFFFF" d="M26.772-212.377h201.816V84.271c0,106.586-90.297,193-201.68,193c-111.406,0-201.695-86.416-201.695-193
v-296.648H26.772z"/>
<path fill="#16A74E" d="M-174.787,84.271c0,106.586,90.289,193,201.695,193c74.484,0,139.5-38.643,174.453-96.104l-376.148-391.277
V84.271z"/>
<path fill="#E8423F" d="M-51.091-27.659c-1.176-0.457-6.078-1.512-7.328,0.625c-7.047,12.047,4.504,38.688,15.352,44.016
c5.84,2.84,5.914,0.832,5.898,0.184C-37.322,9.63-58.833-13.284-51.091-27.659"/>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M-51.091-27.659c-1.176-0.457-6.078-1.512-7.328,0.625
c-7.047,12.047,4.504,38.688,15.352,44.016c5.84,2.84,5.914,0.832,5.898,0.184C-37.322,9.63-58.833-13.284-51.091-27.659z"/>
<path fill="#FFD730" d="M48.393,130.498c-19.262-3.75-49.18,5.719-49.18,5.719s-17.672,7.656-21.402,17.102
c-3.758,9.492,0.379,13.328,0.379,13.328s9.008,15.297,3.031,21.898c-11.074,2.758-29.336-0.141-33.879-6.391
c-4.707-6.438,3.031-10.688,3.168-15.281c0.293-9.75-7.426-13.984-10.387-12.719c-1.863,0.805,3.922,4.625,0.914,8.969
c-3.512,5.031-8.633-2.891-13.41-5.328c-4.773-2.453-9.391,1.148-9.391,1.148s4.809,1.508,5.887,2.508
c1.074,1.016,1.234,5.734-1.152,7c-3.605,1.953-12.832-2.344-18.629,6.109c4.879-1.523,6.848-0.094,7.277,0.25
c3.449,2.609-2.133,8.078,6.418,12.641c-6.137,0.148-8.168,0.297-9.57,0.703c6.488,0.789,4.531,7.844,9.035,9.688
c4.488,1.875,7.992,1.391,8.758,2.102c34.711,30.57,91.754,8.031,95.578,3.867c0.941-0.969-6.098-8.797-7.402-11.508
c-0.758-1.521,2.68-21.508,7.289-23.211c6.473-6.695,30.934-11.641,30.934-11.641S50.002,137.466,48.393,130.498"/>
<path fill="#FFD730" d="M48.393,130.498c-19.262-3.75-49.18,5.719-49.18,5.719s-17.672,7.656-21.402,17.102
c-3.758,9.492,0.379,13.328,0.379,13.328s9.008,15.297,3.031,21.898c-11.074,2.758-29.336-0.141-33.879-6.391
c-4.707-6.438,3.031-10.688,3.168-15.281c0.293-9.75-7.426-13.984-10.387-12.719c-1.863,0.805,3.922,4.625,0.914,8.969
c-3.512,5.031-8.633-2.891-13.41-5.328c-4.773-2.453-9.391,1.148-9.391,1.148s4.809,1.508,5.887,2.508
c1.074,1.016,1.234,5.734-1.152,7c-3.605,1.953-12.832-2.344-18.629,6.109c4.879-1.523,6.848-0.094,7.277,0.25
c3.449,2.609-2.133,8.078,6.418,12.641c-6.137,0.148-8.168,0.297-9.57,0.703c6.488,0.789,4.531,7.844,9.035,9.688
c4.488,1.875,7.992,1.391,8.758,2.102c34.711,30.57,91.754,8.031,95.578,3.867c0.941-0.969-6.098-8.797-7.402-11.508
c-0.758-1.521,2.68-21.508,7.289-23.211c6.473-6.695,30.934-11.641,30.934-11.641S50.002,137.466,48.393,130.498"/>
<path fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="17" d="M48.393,130.498
c-19.262-3.75-49.18,5.719-49.18,5.719s-17.672,7.656-21.402,17.102c-3.758,9.492,0.379,13.328,0.379,13.328
s9.008,15.297,3.031,21.898c-11.074,2.758-29.336-0.141-33.879-6.391c-4.707-6.438,3.031-10.688,3.168-15.281
c0.293-9.75-7.426-13.984-10.387-12.719c-1.863,0.805,3.922,4.625,0.914,8.969c-3.512,5.031-8.633-2.891-13.41-5.328
c-4.773-2.453-9.391,1.148-9.391,1.148s4.809,1.508,5.887,2.508c1.074,1.016,1.234,5.734-1.152,7
c-3.605,1.953-12.832-2.344-18.629,6.109c4.879-1.523,6.848-0.094,7.277,0.25c3.449,2.609-2.133,8.078,6.418,12.641
c-6.137,0.148-8.168,0.297-9.57,0.703c6.488,0.789,4.531,7.844,9.035,9.688c4.488,1.875,7.992,1.391,8.758,2.102
c34.711,30.57,91.754,8.031,95.578,3.867c0.941-0.969-6.098-8.797-7.402-11.508c-0.758-1.521,2.68-21.508,7.289-23.211
c6.473-6.695,30.934-11.641,30.934-11.641S50.002,137.466,48.393,130.498z"/>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M-65.205,163.544c0,0-5.336,14.516,1.242,23.844
c6.574,9.328,13.344,8.297,18.879,25.781 M-79.314,169.576c0,0-0.754,3.117,4.781,6.148c-2.039,2.656-2.445,19.234,1.441,24.25"/>
<path fill="#FFD730" d="M-3.13,64.974c0-0.07,0-0.164-0.008-0.313c0,0.016-0.008,0.047-0.008,0.063
C-3.138,64.81-3.13,64.904-3.13,64.974 M-3.13,64.974C-3.107,65.154-3.107,65.154-3.13,64.974 M144.167,143.123
c-11.477-16.906-35.547-29.938-48-34.422C81.112,97.294,78.002,97.263,73.471,94.044c2.188-14.781-10.164-32.703-10.164-32.703
s-5.781-6.578-18.508-6.641c3.344,2.625,16.891,13.422,13.367,16.031c-15.383-26.828-37.68-17.906-37.68-17.906
s9.168,1.719,11.652,7.172c2.52,5.469,11.895,26.344,22.059,36.031c3.242,3.109,9.852,8.047,18.313,11.047
c20.781,7.359,50.555,25.578,56.82,33.719c3.273,4.234,5.375,10.078,5.273,12.188c-0.109,2.094-2.297,4.031-5.391,3.625
c-3.906-0.5-50.492-30.594-50.492-30.594s-10.047-7.266-30.438-12.281C34.932,95.654-4.189,77.154-12.466,70.357
c-0.059,0.078-0.121,0.156-0.168,0.219c4.367-5.25,7.68-10.922,10.039-15.938c-0.656,5.344-0.594,8.844-0.543,10.016
c0.086-1.906,20.344-22.438,16.504-31.855c14.664-5.801,12.801-7.457,12.121-13.082c-0.516,0.199-1.625,0.129-2.992,0
c0.973,0.066,1.973,0.082,2.992,0C25.467,12.212,7.061,8.279,7.573,7.279c0.504-0.984,5.961,1.438,7.113,0.391
C15.1,7.244-8.404-20.643-13.74-19.889c-2.063,0.656-3.152,2.543-5.457,1.246c-2.316-1.297-7.805-6.816-9.934-7.168
c0.137,0.785-2.488,2.816-2.488,2.816s-3.137,1.082-5.672,2.887c-2.543,1.816-2.367,7.969,0.145,10.488
c0.137,0.129-2.129,6.625-2.129,6.625s3.93-5.297,4.641-5.297c0.688,0,7.961,4.594,8.254,8.891
c0.547,7.766-12.809,19.605-13.305,19.688c-2.75,0.422-7.988-9.457-9.293-10.129c-0.504-0.25-2.563-2.184-5.281,7.785
c-0.199,0.766,0.574,2.453,1.922,4.637v-0.016c0,0-10.914-7.59-21.793-8.527c1.832,0.113,3.496,0.41,4.75,0.801
c-3.781-7.922-11.352-38.344-7.711-54.594c24.594-9.309,22.039-13.199,21.777-17.871c3.672-4.59-2.023-10.109-2.023-10.109
l-2.188,6.184c0,0-2.484,1.672-5.559-0.512c-3.07-2.168-1.086-10.434-2.391-15.105c-1.313-4.641-6.586-9.434-6.586-9.434
s1.207,3.707,1.434,4.809c0.199,1.113-0.496,3.266-4.832,3.031c-4.328-0.23-4.168-4.773-6.57-6.934
c-2.43-2.184-7.309-3.395-7.309-3.395s3.27,7.113,2.496,8.172c-2.211,0.23-5,6.598-6.777,7.148
c-1.762,0.523-6.953-7.605-11.031-2.148c5.039-0.578,5.504,2.172,5.598,3.117c0.313,3.479-8.16,16.801-1.504,20.77
c-6.406,14.816,0.168,23.672,0.168,23.672s-4.941,24.641-5.52,53.422c0.754,0.547,1.328,1.203,1.785,1.875
c-15.359-13.297-24.84-54.145-24-59.184c0.438-2.609,1.047-3.594,1.047-3.594s1.961,0.281,3.984-0.266
c2.047-0.543,2.664-1.063,2.664-1.063s5.816-0.527,7.352-1.016c1.52-0.488,7.098-11.113,4.16-18.234
c-0.816,1.754-1.902,5.836-4.273,6.426c-2.375,0.609-2.102-1.609-5.84-3.145c1.16-11.109-9.656-23.039-9.656-23.039
s3.633,7.422,1.227,8.758c-2.395,1.344-6.512,2.594-6.512,2.594l-1.25,12.855c0.191-2.672,0.395-6.656,0.395-11.902
c-1.465-3.344-4.602-9.008-8.73-13.703c1.922,3.063,4.219,8.438-0.664,15.422c0.176,0.473,0.52,1.504,3.402,7.785
c-3.273-5.754-15.105-13.145-15.105-13.145s2.977,11.313-2.953,17.785c4.203,1.855,1.234,39.063,11.785,40.965
c2.68,5.563,5.656,72.262,19.641,89.98c1.758,0.117,15.598-0.078,15.598-0.078l-2.652,0.656c0,0,17.973,20,24.566,25
c9.07,6.938,47.887,13.266,74.434,15.938c26.551,2.688,39.68,12.359,40.543,11.031c0.496-1.063-6.137-8.734-4.816-9.109
c2.809-0.781,14.922,38.438,25.828,47.625c10.922,9.234,37.281,12.906,38.906,21.625c1.313,6.828-2.766,25.078-13.516,23.672
c-1.602-0.234-6.313-17.266-9.016-18.531c-2.719-1.25-9.93-2.75-16.328,0.813c1.078,0.328,7.641,1.859,10.203,2.461
c2.219,2.281-1.609,6.836-2.938,7.328c-3.031,1.063-5.43,0.344-7.805,0.836c-6.461,1.391-10.414,10.281-10.414,10.281
s11.75,0.359,12.25,6.688c6.328-3.547,8.328-6.328,12.734-3.656c-14.289,3.25-15.422,6.734-17.836,16.805
c5.383-2.891,8.586-5.219,10.18-4.164c1.563,1.078,3.469,2.344,5.906,1.406c0.422-0.156,0.969-0.391,1.586-0.688
c-1.195,0.789-2.164,1.531-2.406,2.031c-0.789,1.688-1.18,9.82-0.164,10.844c0.477-1.047,1.625-5.078,4.313-5.156
c2.672-0.125,12.047,1.969,13.359,0c1.297-1.984-0.969,0.156,1.875-3.148c2.844-3.242,15.422-8.18,18.281-10.211
c3.328-6.719,30.328-32.313,29.125-50.531c-17.125-3.203-16.5-6.953-18.508-9.922c-11.773-2.719-30.039-33.5-33.203-38.25
c4.609,4.844,46.656,31.805,57.25,34.906C140.737,171.466,154.245,157.974,144.167,143.123 M17.803,19.251
c-2.711-0.164-5.504-0.125-7.301,0.906C12.62,18.958,15.124,18.998,17.803,19.251 M-36.009,86.341
c0.879-0.25,1.773-0.531,2.645-0.828C-34.236,85.81-35.123,86.091-36.009,86.341"/>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M-102.212-28.249c6.41-0.984,12.824-9.707,19.855-20.738
c7.035-11.047,14.77-13.543,16.891-13.281 M-102.65-52.37c0,0,13.695-14.504,23.313-17.336c-3.664-9.898,0.512-9.266,0.512-9.266
M-120.978-52.827c0,0-8.633,8.906-9.074,19.145 M46.237,210.451c8.484,0.922,23.391,10.953,21.109,4 M45.799-24.315
c-0.797,2.441-0.734,2.754,3.398,6.984C41.69-2.737,47.081,7.951,47.081,7.951"/>
<path fill="#E8423F" d="M9.182,139.63c0,0,15.305,7.703,20.848,7.492c-0.992-2.742-3.969-8.727-3.969-8.727
S20.174,135.029,9.182,139.63"/>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M9.182,139.63c0,0,15.305,7.703,20.848,7.492
c-0.992-2.742-3.969-8.727-3.969-8.727S20.174,135.029,9.182,139.63z"/>
<path fill="#FFD730" d="M150.065-18.729c-2.188-1.184-24.445-4.906-35.516-3.168c-11.078,1.719-13.063,12.766-13.797,17.832
c-0.688,5.031,0.813,12.855-15.047,9.98C78.963,4.701,70.393-3.69,70.456-8.018c0.094-5.984,7.438-8.41,7.641-13.082
c0.063-1.406,0.141-13.031-8.82-13.031c-0.766,2.473,3.297,9.047-2.18,9.641c-5.266,0.563-9.672-7.016-14.219-9.871
c-3.453-2.199-8.078-0.656-8.078-0.656l6.031,3.816c0,0-0.141,5.129-2.375,6.313c-4.266,2.246-12.984-5.098-20.953,3.641
c5.168-0.656,6.664,0.781,8.086,1.109c1.539,3.816-1.914,10.641,4.133,13.281c-1.25-0.16-9.805-0.754-9.645-0.457
c5.121,1.723,4.285,6.281,4.285,6.281s1.969,6.246,11.227,7.457c14.57,19.887,53.773,35.355,79.43,33.996
c-0.344-20.375,6.289-26.094,18.406-28.141C144.393,7.662,149.854-17.764,150.065-18.729"/>
<path fill="#FFD730" d="M-52.244-160.698c-0.254,0.984-3.145,10.613,2.551,20.262c0.105-0.27-0.055-1.805-0.055-1.805
s3.57-2.523,4.984-5.352c0.672-1.32,5.488-3.195,8.184-6.5c2.762-4.094,0.559-12.848-4.816-17.598
c0.313,4.168,1.367,6.664,0.656,7.406C-43.611-161.17-51.986-161.674-52.244-160.698"/>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M-52.244-160.698c-0.254,0.984-3.145,10.613,2.551,20.262
c0.105-0.27-0.055-1.805-0.055-1.805s3.57-2.523,4.984-5.352c0.672-1.32,5.488-3.195,8.184-6.5
c2.762-4.094,0.559-12.848-4.816-17.598c0.313,4.168,1.367,6.664,0.656,7.406C-43.611-161.17-51.986-161.674-52.244-160.698z"/>
<path fill="#E8423F" d="M67.854-186.377c-1.266-0.168-6.398-0.008-7.102,2.605c-4.063,14.762,13.953,40.258,26.031,43.082
c6.516,1.504,6.086-0.688,5.922-1.344C90.706-150.084,63.737-168.94,67.854-186.377"/>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M150.065-18.729c-2.188-1.184-24.445-4.906-35.516-3.168
c-11.078,1.719-13.063,12.766-13.797,17.832c-0.688,5.031,0.813,12.855-15.047,9.98C78.963,4.701,70.393-3.69,70.456-8.018
c0.094-5.984,7.438-8.41,7.641-13.082c0.063-1.406,0.141-13.031-8.82-13.031c-0.766,2.473,3.297,9.047-2.18,9.641
c-5.266,0.563-9.672-7.016-14.219-9.871c-3.453-2.199-8.078-0.656-8.078-0.656l6.031,3.816c0,0-0.141,5.129-2.375,6.313
c-4.266,2.246-12.984-5.098-20.953,3.641c5.168-0.656,6.664,0.781,8.086,1.109c1.539,3.816-1.914,10.641,4.133,13.281
c-1.25-0.16-9.805-0.754-9.645-0.457c5.121,1.723,4.285,6.281,4.285,6.281s1.969,6.246,11.227,7.457
c14.57,19.887,53.773,35.355,79.43,33.996c-0.344-20.375,6.289-26.094,18.406-28.141C144.393,7.662,149.854-17.764,150.065-18.729z
M67.854-186.377c-1.266-0.168-6.398-0.008-7.102,2.605c-4.063,14.762,13.953,40.258,26.031,43.082
c6.516,1.504,6.086-0.688,5.922-1.344C90.706-150.084,63.737-168.94,67.854-186.377z"/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="-176.306" y="-213.897" width="406.402" height="492.691"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="#FFD730" d="M223.346-2.713c-0.859-8.266-9.609-29.953-30.938-62.457
c-15.063-22.93-16.313-34.688-13.516-44.77c13.844-2.008,32.079-20.695,31.579-32.008c-0.517-11.336-7.392-17.094-7.392-17.094
s-3.906,24.449-8.969,23.055c1.734-2.504,7.016-10.344,7.094-21.398c0.094-11.043-15.609-20.832-17.797-20.977
c1.453,2.008,7.555,8.367,6,13.277c-1.578,4.898-5.688,10.523-11.281,17.883c-5.672,7.422-13.016,19.664-13.891,31.375
c-0.891,11.602,5.516,25.473,8.406,33.848c3.094,8.879,24.094,42.77,24.094,42.77S221.82-1.459,213.329,5.51
c-2.578,2.129-13.508,1.488-19.625-7c-5.734-7.938-4.969-7.609-9.883-14.953c-6.969-10.438-11.328-9.672-11.609-10.934
c-22.461-37.625-53.82-58.543-58.445-61.281c0,0,7.25-7.063,9.461-14.895c-0.148,2.742-0.703,9.734-0.703,9.734
s20.211-22.633,17.883-34.43c26.133-2.344,16.508-14.816,14.313-16.059c0.148-1.488-14.938-7.91-14.938-9.32
c0,0,0.344-0.207,0.844-0.414c4.953,1.48,6.156,1.191,6.078,0.414c-0.063-0.766-20.594-23.91-29.141-25.559
c-2.859,1.992-3.344,0.848-5.188,1.199c-2.836,0.449-9.836-8.734-13.359-8.941c-0.359,1.406-3.625,3.086-3.625,3.086
s-7.078,2.129-8.484,4.734c-1.422,2.602,1.203,8.77,1.203,8.77l-1.148,5.84c0,0,3.773-4.648,3.969-5.008
c1.906,2.832,8,2.527,9.477,10.656c1.484,8.121-4.734,10.801-7.133,15.68c-2.422,4.855-4.898,3.105-6.945,2.758
c-3.039-0.535-10.133-7.637-10.398-7.637c-3.195,0-4.898,8.336-4.836,9.465c0.922-0.344,1.328,3.031,2.25,3.484
c0.406,0.195,1,0.563,1.656,1c-11.016-7.336-29.125-5.504-29-4.965c0.141,0.52,4.961,2.461,4.672,3.688
c-0.203,0.871-8.594-1.258-19.863,2.703c0.129-0.047,0.242-0.098,0.363-0.145c0,0-20.008-20.703-14.664-35.457
c6.75-1.527,12.094-0.926,16.094-2.48c6.664-2.582,9.805-10.367,9.703-14.031c-6.508,7.059-8.469,5.25-9.551,4.777
c-4.016-1.816,0.387-12.168,0-15.887c-0.367-3.715-5.254-8.105-5.254-8.105s1.512,5.504-6.512,8.105
c-3.785,1.215-6.906-4.336-9.547-6.672c-2.664-2.313-7.664-2.699-7.664-2.699s4.008,6.043,2.875,7.633
c-2.617,0.059-4.992,4.289-8.457,5.074c-3.465,0.789-6.824-6.992-12.73-1.906c4.418-0.422,4.801,0.848,5.25,1.586
c2.063,3.352-1.121,4.367-2.504,17.488c-0.625,5.719-0.105,11.773,0.504,16.734c1.367,11.273,9.801,24.074,14.582,50.105
c0.02,0.016,0.066,0.039,0.121,0.055c-17.727-7.25-37.512-12.25-47.785-22.496c-10.68-10.656-9.246-27.16-7.863-29.648
c0-0.871-7.16-11.672-20.742-13.336c7.152,5.809,6.238,3.984,0.984,12.336c3.504,3.887,5.391,7.73,6.406,10.488
c-1-2.078-2.832-4.992-6.273-8.992c-3.637-1.129-9.52-1.344-17.102,0.648c10.102,1.727,8.152,13.273,8.152,13.273
s2.598,1.742,7.75,4.398c-5.641-2.406-22.766,1.176-22.766,1.176s13.848,1.184,12.598,9.777
c6.984,4.605,15.113,13.945,18.754,15.918c1.391,0.832,0.742,1.52,7.742,3C-31.373-81.42,9.108-56.85,13.604-55.147
c5.121-1.109,14.121-0.734,14.121-0.734s-3.762,0.488-7.625,0.918c6.738,8.785,30.434,10.41,61.074,14.035
c41.109,4.836,57.344,27.766,59.719,28.141c0.734-1.984-1.375-3.125-1.641-10.344c6.875,11.328-1.234,44.969,11.016,57.563
c11.75,12.082,28.359,22.543,32.578,28.262c1.328,1.773,3.016,5.492,2.125,15.82c-0.375,4.75-3.875,7.359-7.297,13.438
c-2.203,1.094-5.047,1.344-8.688,0.031c-21.063-7.563-27.359,3.484-27.359,3.484s12.766-1.375,12.375,6.094
c1.078-0.195,2.328-0.289,3.625-0.328c-3,1.07-5.922,3.547-7.75,8.695c5.5-3.133,10.484,3.227,12.891,6.422
c2.391,3.211,5.156,0.461,5.156,0.461s6.563-7.625,12.031-7.719c-0.594,0.344-16.594,4.328-12.453,21.852
c2.125-11.07,14.844-2.578,18.047-6.867c0.188-0.789-0.078-3.172,1.734-5.563c1.75-2.391,12-6,12-6
s10.172-16.531,10.734-26.148c0.164-2.641,2.547-15.789,2.766-38.945c-17.438-1.516-18.313-13.102-19.93-25.711
c-1.117-8.672-3.922-14.902-5.594-17.965c3.297,5.109,12.836,17.391,27.07,14.109C224.081,15.564,224.213,5.517,223.346-2.713
M77.096-132.506c-0.258-0.25-0.57-0.48-0.852-0.711C76.542-132.971,76.838-132.737,77.096-132.506 M75.87-133.499
c-0.281-0.191-0.563-0.398-0.852-0.602C75.307-133.889,75.588-133.69,75.87-133.499"/>
</g>
</g>
</g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_3_" x="-176.306" y="-213.897" width="406.402" height="492.691"/>
</defs>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_3_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_4_)" fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="16" d="
M113.752-88.651c4.625,2.738,35.984,23.656,58.445,61.281c0.273,1.262,4.641,0.504,11.602,10.934
c4.922,7.344,4.164,7.016,9.891,14.953c6.109,8.488,17.046,9.129,19.625,7c8.484-6.969-16.592-44.719-16.592-44.719
s-20.984-33.891-24.086-42.77c-2.883-8.383-9.289-22.246-8.406-33.848c0.867-11.711,8.211-23.953,13.883-31.375
c5.594-7.359,9.711-12.984,11.281-17.879c1.563-4.914-4.539-11.273-6-13.281c2.188,0.145,17.891,9.934,17.805,20.977
c-0.086,11.055-5.359,18.887-7.102,21.398c5.07,1.395,8.969-23.055,8.969-23.055s6.875,5.758,7.391,17.094
c0.508,11.313-17.734,30-31.57,32.012c-2.805,10.078-1.539,21.836,13.508,44.766c21.33,32.504,30.08,54.184,30.938,62.457
c0.875,8.23,0.75,18.277-9.031,20.543c-17.859,4.129-28.344-16.281-28.344-16.281s5.25,7.516,6.875,20.145
c1.625,12.609,2.5,24.203,19.938,25.703c-0.22,23.172-2.608,36.313-2.767,38.953c-0.563,9.609-10.742,26.141-10.742,26.141
s-10.242,3.609-12,6c-1.82,2.391-1.539,4.789-1.734,5.563c-3.195,4.297-15.922-4.188-18.055,6.875
c-4.141-17.531,11.859-21.516,12.461-21.859c-5.477,0.094-12.031,7.719-12.031,7.719s-2.773,2.766-5.164-0.453
c-2.406-3.188-7.391-9.547-12.883-6.422c5-14.219,18.492-8.125,18.492-8.125s-9.117-1.188-14.367-0.234
c0.398-7.469-12.375-6.094-12.375-6.094s6.297-11.047,27.359-3.492c3.641,1.313,6.492,1.063,8.695-0.031
c3.422-6.086,6.914-8.695,7.289-13.445c0.891-10.328-0.805-14.047-2.125-15.813c-4.219-5.719-20.836-16.188-32.578-28.262
c-12.242-12.594-4.148-46.234-11.016-57.563c0.266,7.219,2.375,8.359,1.641,10.344c-2.375-0.375-18.609-23.297-59.727-28.145
C50.511-44.56,26.812-46.185,20.078-54.97c3.863-0.441,7.625-0.918,7.625-0.918s-9-0.379-14.121,0.734
c-4.496-1.703-44.977-26.273-70.328-56.809c-7-1.48-6.352-2.168-7.742-3c-3.641-1.977-11.77-11.313-18.754-15.918
c1.25-8.586-12.598-9.777-12.598-9.777s18.734-3.926,23.477-0.824c-5.613-2.848-8.461-4.758-8.461-4.758
s1.949-11.547-8.152-13.273c7.574-1.992,13.465-1.777,17.102-0.648c8.258,9.586,7.387,13.063,7.387,13.063
s-0.891-7.199-7.512-14.551c5.254-8.352,6.168-6.527-0.984-12.336c13.582,1.664,20.742,12.465,20.742,13.336
c-1.383,2.496-2.816,18.992,7.863,29.648c14.602,14.559,48.457,18.488,68.191,33.496c13.145,10.008,11.238,25.793-1.965,27.094
c5.574,5.188,29.203,4.043,29.203,4.043s-4.508,4.23-6,5.621c2.016,1.492,28,4.984,44.242-13.828
c-2.258,5.109-3.633,7.719-3.633,7.719S92.276-65.858,113.752-88.651z"/>
</g>
</g>
</g>
</g>
<path fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="9" d="M21.87-70.42
c5.574,5.188,29.211,4.043,29.211,4.043s-4.516,4.23-6,5.621c2.016,1.488,27.984,4.984,44.234-13.828
c-2.266,5.109-3.641,7.719-3.641,7.719s6.609,1,28.094-21.793c0,0,7.25-7.063,9.461-14.895c-0.148,2.742-0.703,9.734-0.703,9.734
s20.211-22.633,17.883-34.43c26.133-2.344,16.508-14.816,14.313-16.059c-0.688-0.137-7.438,0-13.195-0.27
c-5.789-0.273-7.563,5.504-7.563,5.504s-3.984,9.453-12.688,20.84c-12.867,16.957-33.539-5.09-44.164-14.273
c-10.586-9.176-31.227-7.145-31.094-6.566c0.148,0.521,4.961,2.461,4.672,3.688c-0.281,1.229-16.922-3.563-34.941,11.391
c0.816,0,9.242-0.113,8.93,2.176c-0.129,1.105-11.664,2.48-15.539,15.801c0.832,0.262,10.379,5.223,14.707,8.504
C36.971-87.506,35.081-71.721,21.87-70.42"/>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M9.131-106.018c3.875-13.32,15.418-14.695,15.539-15.801
c0.309-2.289-8.121-2.176-8.93-2.176c5.406-4.48,10.695-7.184,15.441-8.832c0,0-20.008-20.703-14.664-35.457
c6.75-1.527,12.094-0.926,16.094-2.48c6.664-2.582,9.813-10.367,9.703-14.031c-6.5,7.059-8.469,5.25-9.551,4.777
c-4.016-1.816,0.379-12.168,0-15.887c-0.367-3.715-5.254-8.104-5.254-8.104s1.512,5.504-6.512,8.104
c-3.785,1.215-6.906-4.336-9.547-6.672c-2.664-2.313-7.664-2.699-7.664-2.699s4.008,6.043,2.875,7.633
c-2.617,0.059-4.992,4.289-8.457,5.074c-3.465,0.789-6.824-6.992-12.73-1.906c4.418-0.422,4.801,0.848,5.25,1.586
c2.063,3.352-1.121,4.367-2.504,17.488c-0.625,5.719-0.105,11.773,0.504,16.734c1.367,11.273,9.801,24.074,14.582,50.105
C3.893-108.217,9.131-106.018,9.131-106.018z"/>
<path fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="5" d="M154.721-144.299
c-0.016,0.281-7.445,0-13.203-0.27c-5.781-0.273-7.563,5.504-7.563,5.504s-3.984,9.453-12.688,20.84
c-12.875,16.957-33.547-5.09-44.156-14.273c-1.148-1-2.875-2.176-3.75-2.602c-0.922-0.453-1.328-3.828-2.25-3.484
c-0.078-1.129,1.625-9.465,4.828-9.465c0.266,0,7.359,7.102,10.391,7.637c2.047,0.348,4.531,2.105,6.953-2.758
c2.391-4.879,8.609-7.559,7.125-15.68c-1.477-8.121-7.57-7.824-9.477-10.656c-0.195,0.359-3.969,5.008-3.969,5.008l1.148-5.84
c0,0-2.625-6.168-1.203-8.77c1.406-2.605,8.484-4.734,8.484-4.734s3.266-1.68,3.625-3.086c3.516,0.207,10.516,9.391,13.359,8.941
c1.844-0.352,2.328,0.793,5.188-1.199c8.547,1.648,29.078,24.801,29.141,25.559c0.078,0.785-1.125,1.066-6.078-0.414
c-0.5,0.199-0.844,0.414-0.844,0.414C139.768-152.209,154.854-145.788,154.721-144.299z"/>
<path fill="#010202" d="M114.213-172.17c1.148,0.145,11.836,2.887,13.719,15.391c-0.422,0.688-13.719-2.063-13.719-6.023
C114.213-167.268,118.799-168.233,114.213-172.17"/>
<path fill="#E8423F" d="M120.393-14.331c8.328-0.047,18.344,0.344,20.813,4.41c0.047,1.688,0.625,5.484,0.906,8.164
C138.002-2.338,120.393-13.401,120.393-14.331"/>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M-104.533,30.662c0,0,1.16-5.938,12.961-4.672
c1.227-2.199-7.559-3.938-7.414-4.609c0.168-0.688,12.688-5.934,21.262-3.984c-1.809-1.375-3.102-1.949-5.559-2.168
c4.328-1.781,10.582-1.406,13.895-0.391c-3.781-7.922-11.352-38.344-7.711-54.594c24.594-9.309,22.039-13.199,21.777-17.871
c3.672-4.59-2.023-10.109-2.023-10.109l-2.188,6.184c0,0-2.488,1.672-5.559-0.512c-3.07-2.168-1.086-10.434-2.391-15.105
c-1.313-4.641-6.586-9.434-6.586-9.434s1.207,3.707,1.434,4.809c0.199,1.113-0.496,3.266-4.832,3.031
c-4.328-0.23-4.168-4.773-6.57-6.934c-2.43-2.184-7.309-3.395-7.309-3.395s3.27,7.113,2.492,8.172c-2.207,0.23-5,6.598-6.773,7.148
c-1.762,0.523-6.953-7.605-11.031-2.148c5.039-0.578,5.504,2.172,5.598,3.117c0.313,3.479-8.16,16.801-1.504,20.77
c-6.406,14.816,0.168,23.672,0.168,23.672s-4.941,24.641-5.52,53.422C-105.189,27.044-104.533,30.662-104.533,30.662z
M18.42-196.209c0.594,2.52-5.199,4.574-7.855,9.688c-11.922,2.984-20.113,12.543-22.504,18.801 M-8.474-148.163
c2.27-1.129,16.574-30.457,28.758-35.777c6.609-2.879,6.082,0.656,10.984-2.52 M120.393-14.331
c8.328-0.047,18.344,0.344,20.813,4.41c0.047,1.688,0.625,5.484,0.906,8.164C138.002-2.338,120.393-13.401,120.393-14.331z"/>
<path fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="17" d="M-39.283-3.002c0,0,3.926-5.297,4.641-5.297
c0.688,0,7.961,4.594,8.254,8.887c0.547,7.77-12.809,19.609-13.305,19.691c-2.75,0.422-7.988-9.457-9.293-10.129
c-0.504-0.25-2.563-2.184-5.281,7.785c-0.816,3.031,13.855,20.906,19.625,25.953c18.992,16.641,35.238-8.89,37.199-10.859
c5.719-5.672,4.098-10.719,7.938-12.871c4.078-2.313,9.543-0.031,14.973-0.441C25.452,12.212,7.045,8.279,7.557,7.279
c0.504-0.984,5.961,1.438,7.113,0.391c0.414-0.426-23.09-28.313-28.426-27.559c-2.063,0.656-3.152,2.543-5.457,1.246
c-2.32-1.297-7.809-6.816-9.934-7.168c0.137,0.785-2.488,2.816-2.488,2.816s-3.137,1.082-5.672,2.887
c-2.547,1.816-2.367,7.969,0.145,10.488C-37.029-9.499-39.283-3.002-39.283-3.002z"/>
<path fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="7" d="M-52.345,22.564
c4.039,6.547,13.375,17.543,17.703,21.324C-15.65,60.529,0.596,35.005,2.557,33.037c5.719-5.672,4.098-10.719,7.938-12.871
c4.078-2.313,13.102,0.281,14.973-0.441c0.68,5.625,2.547,7.281-12.117,13.082c3.863,9.473-16.68,30.215-16.504,31.918
c0.176,1.711-0.426-2.242,0.551-10.078C-8.129,66.272-18.512,81.483-36.02,86.35c0.457-0.898,1.898-3.508,3.473-7.461
c-24,23.398-48.277,14.844-48.277,14.844s1.695-1.453,6.016-5.125c-15.953-0.766-22.855-2.781-37.602-14.688
c9.129-1.266,13.25-10.234,14.281-18.688c1.047-8.438-2.891-9.766-4.922-14.422c-2.063-4.672-1.488-10.164-1.488-10.164
s1.16-5.938,12.961-4.672c1.223-2.199-7.559-3.938-7.414-4.609c0.168-0.688,12.688-5.934,21.262-3.984
c-1.809-1.375-4.031-2.422-6.496-2.621C-71.412,9.486-52.345,22.564-52.345,22.564z"/>
<path fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="10" d="M-12.458,70.357
c-5.504,6.5-13.504,13.188-23.543,15.984c0.453-0.906,1.895-3.5,3.469-7.453c-24,23.391-48.277,14.836-48.277,14.836
s1.695-1.453,6.016-5.125c-15.953-0.773-22.855-2.789-37.602-14.695c9.129-1.258,13.25-10.227,14.281-18.688
c1.047-8.438-2.887-9.766-4.922-14.422c-2.063-4.672-1.488-10.156-1.488-10.156s-0.184-2.281-1.605-3.738
c-15.359-13.293-24.84-54.141-24-59.184c0.438-2.605,1.047-3.59,1.047-3.59s1.961,0.281,3.984-0.266
c2.047-0.543,2.664-1.063,2.664-1.063s5.816-0.527,7.352-1.016c1.52-0.488,7.098-11.113,4.16-18.234
c-0.816,1.754-1.902,5.832-4.273,6.426c-2.375,0.605-2.102-1.609-5.84-3.145c1.16-11.113-9.656-23.039-9.656-23.039
s3.633,7.422,1.227,8.758c-2.395,1.344-6.512,2.594-6.512,2.594l-1.695,16.969c0,0,0.813-5.457,0.813-16
c-1.461-3.344-4.598-9.008-8.727-13.703c1.113,3.398,4.215,8.438-0.664,15.422c0.184,0.488,0.559,1.625,4.016,9.129
c-1.902-5.855-15.719-14.488-15.719-14.488s2.977,11.313-2.953,17.781c4.199,1.859,1.234,39.066,11.785,40.969
c2.68,5.563,5.656,72.262,19.641,89.98c1.758,0.117,15.598-0.078,15.598-0.078l-2.656,0.656c0,0,17.977,20,24.57,25
c9.07,6.938,47.887,13.266,74.43,15.938c26.555,2.688,39.68,12.359,40.547,11.031c0.496-1.063-1.824-6.906-4.816-9.109
c4.16,0.125,14.922,38.438,25.828,47.625c10.922,9.234,37.281,12.906,38.906,21.625c1.313,6.828-2.766,25.078-13.516,23.672
c-1.609-0.234-6.313-17.266-9.016-18.531c-2.719-1.25-9.938-2.75-16.328,0.813c1.078,0.328,7.641,1.859,10.203,2.461
c2.219,2.273-1.609,6.836-2.938,7.328c-3.031,1.063-5.43,0.344-7.805,0.836c-6.461,1.391-10.414,10.281-10.414,10.281
s11.75,0.359,12.25,6.688c6.328-3.547,8.328-6.328,12.734-3.656c-14.297,3.25-15.422,6.734-17.836,16.797
c5.375-2.883,8.586-5.211,10.18-4.156c1.563,1.078,3.469,2.344,5.906,1.406c2.422-0.898,8.273-4.508,8.273-4.508
s-8.289,4.195-9.094,5.852c-0.789,1.688-1.18,9.82-0.164,10.845c0.477-1.048,1.625-5.079,4.313-5.157
c2.672-0.133,12.047,1.969,13.359,0c1.297-1.984-0.969,0.156,1.875-3.148c2.844-3.242,15.422-8.18,18.281-10.211
c3.328-6.719,30.328-32.313,29.125-50.531c-17.125-3.203-16.5-6.953-18.516-9.922c-12.453-2.891-32-36.563-33.633-38.859
c0,2.188,46.492,32.203,57.688,35.516c12.852,3.766,26.375-9.734,16.289-24.578c-11.469-16.906-35.539-29.938-48-34.422
c-15.048-11.41-18.165-11.441-22.688-14.66c2.188-14.781-10.164-32.703-10.164-32.703s-5.781-6.578-18.508-6.641
c3.344,2.625,16.891,13.422,13.359,16.031C42.784,43.904,20.487,52.826,20.487,52.826s9.168,1.719,11.652,7.172
c2.52,5.469,11.895,26.344,22.059,36.031c3.242,3.109,9.852,8.047,18.313,11.047c20.781,7.359,50.555,25.578,56.82,33.719
c3.273,4.234,5.375,10.078,5.273,12.188c-0.109,2.094-2.297,4.031-5.391,3.625c-3.906-0.5-50.492-30.594-50.492-30.594
s-10.047-7.266-30.438-12.281C34.932,95.662-4.177,77.154-12.458,70.357z"/>
<path fill="#010202" d="M-14.771-11.155C-3.38-8.17-1.314,3.662-1.162,5.005c-1.211,0.344-12.145-1.969-13.32-6.199
C-15.564-5.108-8.763-8.057-14.771-11.155"/>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M62.127-25.659c0,0-6.75,12-4.867,19.281
C59.885,3.916,72.721,11.951,72.034,26.06"/>
<path fill="#FFD730" d="M158.331,88.927c0,0-0.328-2.852,0.703-4.234c1-1.375,1.469-5.18,1.344-6.359
c-0.117-1.164,0.555-1.477-5.906-2.625c5.609-2.164,14.938,1.414,16.828,2.891c1.859,1.422,2.953,10.648,5.5,12.18
c-1.156,2.188-5.781,1.508-5.781,1.508L158.331,88.927z"/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_5_" x="-176.306" y="-213.897" width="406.402" height="492.691"/>
</defs>
<clipPath id="SVGID_6_">
<use xlink:href="#SVGID_5_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_6_)" fill="none" stroke="#010202" stroke-width="3.048" d="M158.331,88.927
c0,0-0.328-2.852,0.703-4.234c1-1.375,1.469-5.18,1.344-6.359c-0.117-1.164,0.555-1.477-5.906-2.625
c5.609-2.164,14.938,1.414,16.828,2.891c1.859,1.422,2.953,10.648,5.5,12.18c-1.156,2.188-5.781,1.508-5.781,1.508
L158.331,88.927z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_7_" x="-176.306" y="-213.897" width="406.402" height="492.691"/>
</defs>
<clipPath id="SVGID_8_">
<use xlink:href="#SVGID_7_" overflow="visible"/>
</clipPath>
<line clip-path="url(#SVGID_8_)" fill="none" stroke="#010202" stroke-width="3.048" stroke-miterlimit="7" x1="-174.548" y1="-209.881" x2="201.377" y2="180.669"/>
</g>
</g>
</g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_9_" x="-176.306" y="-213.897" width="406.402" height="492.691"/>
</defs>
<clipPath id="SVGID_10_">
<use xlink:href="#SVGID_9_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_10_)" fill="none" stroke="#010202" stroke-width="3.048" d="M26.772-212.377h201.816V84.271
c0,106.586-90.297,193-201.68,193c-111.406,0-201.695-86.416-201.695-193v-296.648H26.772z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

+29
View File
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="407.406px" height="493.888px" viewBox="-176.31 -214.37 407.406 493.888"
enable-background="new -176.31 -214.37 407.406 493.888" xml:space="preserve">
<g>
<path fill="#268BCC" d="M27.241-212.842h202.332V84.509c0,106.859-90.516,193.47-202.188,193.47L27.241-212.842z"/>
<path fill="#E8423F" d="M27.385,277.979L27.385,277.979c-111.664,0-202.168-86.609-202.168-193.47v-297.352H27.241L27.385,277.979z
"/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="-176.31" y="-214.37" width="407.406" height="493.888"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="none" stroke="#010202" stroke-width="3.048" d="M27.241-212.842h202.332V84.509
c0,106.859-90.516,193.47-202.188,193.47c-111.664,0-202.168-86.609-202.168-193.47v-297.352L27.241-212.842L27.241-212.842z"
/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+39
View File
@@ -0,0 +1,39 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1900 2298">
<title>Wappen Uri</title>
<path d="m949.3 7.079h939.7v1381c0 497-420 899-939 899-518.6 0-939.1-402-939.1-899l0.04-1381 938.4 0.079z" fill="#ffd72e"/>
<g stroke="#fff" fill="none">
<path stroke-linejoin="round" d="m1446 949c7-46.6 11-99.2 7-134.7-6-50.9-23-103.1-48-124.6 13-17.5 77-104.4-25-146m-925.4 405.3c-7.7-46.6-11.7-99.2-7.5-134.7 6.1-50.9 22.7-103.1 47.8-124.6-12.6-17.5-76.7-104.4 25.3-146" stroke-linecap="round" stroke-width="25.19"/>
<path d="m755.2 1802h381.8" stroke-width="14.2"/>
<path d="m480.3 742 313.2 215.8 1.4 408.2s-3.6 59-20.3 94c-9.2 19-63.1 64-81.9 70m722.3-788-313 215.8-1 408.2s4 59 20 94c9 19 63 64 82 70" stroke-linecap="round" stroke-width="25.19"/>
</g>
<g>
<path d="m515.6 535.1s-51.5-22.4-131.3-228.1c-79.8-205.8-209-184.7-210.2-184.5-4 0.9-13.5 1.7-15.8 13.6-2.1 12 7.3 17.2 10.3 18.4 3 1.3 78.8 21 113.4 234.4 38.3 236.8 166.7 294.8 193.6 301.7-65.6-126.9 40-155.5 40-155.5"/>
<path d="m1515 307c80-205.8 209-184.7 210-184.5 4 0.9 14 1.7 16 13.6 2 12-7 17.2-10 18.4-3 1.3-79 21-114 234.4-38 236.8-167 294.8-193 301.7 65-126.9-40-155.5-40-155.5"/>
<path d="m1435 718.7s50 94.1 21 230.3c4 6.3 59 54 157 22.6s103-144.7 188-172.4c-54-90.6-176-206.4-366-80.5"/>
</g>
<path d="m1780 794.1s-78-38.9-122-38.9-141 60.4-158 59.1c-18-1.2-36-1.2-36-1.2" stroke="#fff" stroke-width="14.2" fill="none"/>
<path d="m463.9 715s-49.5 94-20.6 230.2c-3.8 6.3-58.7 54.1-156.8 22.7-98.2-31.5-103.2-144.7-188.8-172.5 54.1-90.5 176.2-206.3 366.2-80.4"/>
<path d="m119.2 790.4s77.9-39 121.9-39 140.9 60.4 158.6 59.1c17.6-1.2 35.2-1.2 35.2-1.2" stroke="#fff" stroke-width="14.2" fill="none"/>
<g>
<path d="m755.3 1809h381.7s7 69-46 69h-297.5c-41.1 0-38.2-69-38.2-69"/>
<path d="m470.5 749.2 315.4 214.8 1.1 403s-8.6 53-23.1 93c-7.3 19-63.2 65-82.7 65-11.3-1-53.6-127-77.5-170-11.5-21-102.8-97-45.1-180-167.7-257.1-88.1-425.8-88.1-425.8"/>
<path d="m1427 749.2-316 214.8-1 403s9 53 23 93c8 19 64 65 83 65 12-1 54-127 78-170 11-21 102-97 45-180 167-257.1 88-425.8 88-425.8"/>
</g>
<g>
<path d="m599.2 901.4c0 48.2 41.5 87.3 92.7 87.3 25.5 0 48.4-9.7 65.2-25.3l-147.4-102.4c-6.6 12.1-10.5 25.8-10.5 40.4" fill="#fff"/>
<path d="m627.1 901.4c0 33.7 29 61.1 64.8 61.1 17.5 0 33.3-6.6 45.1-17.2l-103-71.5c-4.4 8.3-6.9 17.6-6.9 27.6"/>
<path d="m1296 901.4c0 48.2-41 87.3-93 87.3-25 0-48-9.7-65-25.3l147-102.4c7 12.1 11 25.8 11 40.4" fill="#fff"/>
<path d="m1268 901.4c0 33.7-29 61.1-65 61.1-17 0-33-6.6-45-17.2l103-71.5c4 8.3 7 17.6 7 27.6"/>
<path d="m1250 1556c-4-2-42 2-101-53-14-14-39-45-40-51-12-44-16-92-15-168 1-88 0-330 0-330l329-227.9s-24-51.1-62-52.8c-19-0.8-317 0.4-412.2 0.9-95.4-0.5-393.5-1.7-412-0.9-38.3 1.7-62.5 52.8-62.5 52.8l329 227.9s-1 242 0.4 330c1 76-3 124-14.8 168-1.5 6-26.1 37-40.7 51-58.3 55-96 51-100.5 53-22.8 8-49.3 26-22.8 129 26.4 102 72.2 110 72.2 110h503.9s45-8 72-110c26-103 0-121-23-129"/>
<path d="m512.8 535.5c-29.8 11.6-50.3 30-58.5 52.8-2.7 7.8-4.2 15.9-4.2 24.5 0 22.4 8 52.2 27.1 79.2 53.4 75.8 119.6 67 150.8 52.7 0.1 0.1 0.1 0.1 0.2 0.1 10 19.1 19.7 31.3 41.7 41.3 15.8 7 36 1.2 55.6-4.4 6.8-2 16.6-4.8 20.7-4.9 2.8 1.5 9.1 7.4 13.5 11.4 11.4 10.7 24.4 22.9 39.8 24.5 12.2 1.2 24.8-3.6 38.3-8.6 10.6-4 22.4-8.5 29.7-7.8 0 0 1.5 0.1 1.6 0.1 0 0.2 1.1 1.1 1.1 1.1 11.4 9.5 25 17.3 79 17.8 54.8-0.6 67.8-8.9 77.8-18.8v-0.1l1-0.1c7-0.7 19 3.8 30 7.8 13 5 26 9.8 38 8.6 15-1.6 28-13.8 40-24.5 4-4 10-9.8 13-11.4 4 0.1 14 2.9 21 4.9 19 5.6 40 11.4 55 4.4 22-10 32-22.2 42-41.3v-0.2c19 8 96 23.6 155-52.6 18-23.4 23-56.8 23-79.2 0-8.4-1-16.5-4-24.1-9-27.4-33-43.2-56-52.5" fill="#fff"/>
<path d="m1363 546.9c3-7.6 4-15.9 4-24.4 0-44.5-37-80.5-82-80.5-11 0-20 1.9-30 5.3-10-32.2-41-55.5-78-55.5-18 0-35 6.1-49 16.4-15-22.8-40-38.1-69-38.1-18 0-34 5.7-48 15.4-17.2 12.8-60.6-14.5-60.6-14.5s-53.6 22.8-76.2 9.7c-12-6.7-25.6-10.6-40.3-10.6-28.3 0-53.2 14.4-67.6 36.2-13.4-9.6-29.8-15.4-47.7-15.4-36.1 0-66.7 23.6-77 56.2-9.4-3.9-19.6-6-30.3-6-44.7 0-81 36.1-81 80.6 0 8.6 1.3 16.9 3.9 24.6-34.6 9.6-102.3 47.2-40.1 135.4 62.2 88.3 130.6 42.7 130.6 42.7s11.3-6.1 20 10.4c8.5 16.5 15.4 25.1 32.9 32.8 17.3 7.9 59.8-14.7 73.6-10.3 13.9 4.3 33.6 33.8 50.2 35.5 16.5 1.7 45.9-18.2 67.6-16.5 21.7 1.8 2.5 18.2 80.4 19.1 77.6-0.9 55.6-17.3 76.6-19.1 22-1.7 51 18.2 68 16.5 16-1.7 36-31.2 50-35.5 14-4.4 56 18.2 74 10.3 17-7.7 24-16.3 33-32.8 8-16.5 19-10.4 19-10.4s72 44.3 134-44c61-86.5-6-123.2-41-133.5"/>
<path d="m818.3 1683c6.3 13 2.4 28-9 33l-18.3 9c-11.4 6-25.7 0-32-12l-36.7-73c-6.4-13-2.5-28 8.8-34l18.3-9c11.3-5 25.7 0 32.1 13l36.8 73z" fill="#12080d"/>
<path d="m1075 1683c-6 13-3 28 9 33l18 9c11 6 26 0 32-12l37-73c6-13 2-28-9-34l-19-9c-11-5-25 0-31 13l-37 73z" fill="#12080d"/>
</g>
<path d="m818.3 1683c6.3 13 2.4 28-9 33l-18.3 9c-11.4 6-25.7 0-32-12l-36.7-73c-6.4-13-2.5-28 8.8-34l18.3-9c11.3-5 25.7 0 32.1 13l36.8 73zm256.7 0c-6 13-3 28 9 33l18 9c11 6 26 0 32-12l37-73c6-13 2-28-9-34l-19-9c-11-5-25 0-31 13l-37 73z" stroke="#fff" stroke-width="14.2" fill="none"/>
<path d="m1107 1645c17-27 22-26 23-26 68 51 113 131 113 220 0 154-133 279-296 279-163.3 0-295.7-125-295.7-279 0-89 44.2-169 112.9-220 2.2-1 12.1-6 22.5 27 10.6 33 10.3 38 9.4 39-45 38-73.5 93-73.5 154 0 115 100.6 208 224.4 208 124 0 224-93 224-208 0-62-29-117-75-156 0 0-8-7 11-38" fill="#e7423f"/>
<path d="m1107 1645c17-27 22-26 23-26 68 51 113 131 113 220 0 154-133 279-296 279-163.3 0-295.7-125-295.7-279 0-89 44.2-169 112.9-220 2.2-1 12.1-6 22.5 27 10.6 33 10.3 38 9.4 39-45 38-73.5 93-73.5 154 0 115 100.6 208 224.4 208 124 0 224-93 224-208 0-62-29-117-75-156 0 0-8-7 11-38z" stroke="#000" stroke-width="14.2" fill="none"/>
<path d="m1027 1796c4 18 7 37 7 57 0 78-39.8 141-89 141s-89.2-63-89.2-141c0-20 2.7-39 7.6-56 45.1 0 146.6-1 163.6-1" fill="#e7423f"/>
<path d="m1027 1796c4 18 7 37 7 57 0 78-39.8 141-89 141s-89.2-63-89.2-141c0-20 2.7-39 7.6-56 45.1 0 146.6-1 163.6-1zm-77.7-1789h939.7v1381c0 497-420 899-939 899-518.6 0-939.1-402-939.1-899l0.04-1381 938.4 0.079z" stroke="#000" stroke-width="14.2" fill="none"/>
</svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

+211
View File
@@ -0,0 +1,211 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.431px" height="492.728px" viewBox="-175.826 -214.526 406.431 492.728"
enable-background="new -175.826 -214.526 406.431 492.728" xml:space="preserve">
<g>
<path fill="#16A74E" d="M27.249-213.002h201.832V83.662c0,106.594-90.313,193.016-201.688,193.016
c-111.398,0-201.695-86.422-201.695-193.016v-296.664H27.249z"/>
<polygon fill="#FFFFFF" points="-174.302,19.876 -174.302,-213.002 27.249,-213.002 229.081,-213.002 229.081,19.876 "/>
<path fill="#010202" d="M-123.041-185.194v4.473l1.328,0.07c2.281,0.121,3.152,0.434,3.473,0.602
c0.527,0.289,1.191,0.848,1.191,2.758v32.922c0,1.926-0.719,2.52-1.27,2.809c-0.344,0.191-1.234,0.504-3.387,0.574l-1.336,0.051
v4.5h41.891l3.297-18.23h-4.617l-0.359,0.914c-1.883,4.902-4.145,8.223-6.633,9.855c-2.543,1.648-5.762,2.496-9.559,2.496
c-2.715,0-3.602-0.379-3.844-0.527c-0.324-0.203-0.527-0.852-0.527-1.793v-32.146c0-3.152,0.688-3.801,0.824-3.895
c0.32-0.242,1.395-0.785,4.762-0.891l1.375-0.039v-4.504L-123.041-185.194L-123.041-185.194z"/>
<path fill="#FFD730" d="M-121.08-183.233v0.656c1.777,0.133,3.039,0.398,3.793,0.824c1.48,0.773,2.223,2.285,2.223,4.473v32.918
c0,2.207-0.781,3.754-2.336,4.543c-0.781,0.434-2.039,0.648-3.68,0.754v0.664h38.289c0.16-0.832,2.375-13.129,2.59-14.289h-0.949
c-2.023,5.098-4.449,8.633-7.242,10.449c-2.863,1.855-6.43,2.805-10.629,2.805c-2.41,0-4.012-0.27-4.883-0.82
c-0.949-0.602-1.457-1.77-1.457-3.465v-32.145c0-2.895,0.539-4.695,1.609-5.496c0.953-0.703,2.738-1.105,5.336-1.23v-0.641H-121.08
z"/>
<path fill="#010202" d="M-77.814-185.194v4.488l1.344,0.055c2.383,0.105,3.305,0.418,3.648,0.602
c0.512,0.27,1.199,0.832,1.199,2.77v32.941c0,1.938-0.746,2.535-1.297,2.824c-0.344,0.176-1.289,0.496-3.52,0.535l-1.375,0.035
v4.508h26.598v-4.543h-1.422c-2.313,0-3.488-0.406-4.047-0.758c-0.625-0.371-0.938-1.242-0.938-2.602v-32.953
c0-1.941,0.711-2.512,1.246-2.797c0.328-0.168,1.281-0.473,3.801-0.57l1.359-0.055v-4.48H-77.814z"/>
<path fill="#FFD730" d="M-75.853-183.233v0.648c1.832,0.117,3.133,0.367,3.941,0.789c1.496,0.777,2.25,2.297,2.25,4.504v32.945
c0,2.223-0.801,3.77-2.371,4.574c-0.832,0.41-2.117,0.625-3.832,0.707v0.656h22.664v-0.641c-1.965-0.051-3.469-0.367-4.52-1.008
c-1.238-0.746-1.855-2.191-1.855-4.289v-32.945c0-2.238,0.762-3.766,2.297-4.551c0.801-0.398,2.145-0.625,4.078-0.75v-0.641
h-22.652V-183.233z"/>
<path fill="#010202" d="M-51.294-185.194v4.473l1.328,0.07c2.246,0.129,3.113,0.434,3.406,0.609
c0.297,0.168,1.145,0.625,1.145,2.762v32.941c0,1.914-0.703,2.504-1.23,2.801c-0.344,0.184-1.199,0.496-3.281,0.559l-1.359,0.051
v4.504h23.215c6.031,0,10.953-1.258,14.641-3.754c3.855-2.594,5.832-6.063,5.832-10.305c0-4.527-2.063-8.102-6.113-10.625
c-1.063-0.645-2.23-1.191-3.469-1.645c1.277-0.586,2.512-1.336,3.688-2.289c2.391-1.914,3.59-4.535,3.59-7.793
c0-5.246-2.855-8.918-8.504-10.871c-2.801-0.984-6.359-1.48-10.512-1.48h-22.375v-0.008H-51.294z M-31.822-178.467
c0-0.887,0.16-1.367,0.344-1.504c0.078-0.063,0.512-0.375,2.063-0.375c2.168,0,3.563,0.625,4.234,1.91
c0.832,1.563,1.262,3.539,1.262,5.875c0,3.094-0.574,5.215-1.734,6.297c-0.738,0.688-2.395,1.492-6.168,1.648L-31.822-178.467
L-31.822-178.467z M-31.478-142.178l-0.016-0.031c-0.082-0.152-0.297-0.656-0.328-1.93v-15.574c2.75,0.047,4.816,0.414,6.109,1.152
c2.41,1.344,3.578,4.109,3.578,8.43c0,2.914-0.543,5.152-1.656,6.656c-1.031,1.367-2.953,2.074-5.688,2.074
C-31.048-141.409-31.361-141.987-31.478-142.178"/>
<path fill="#FFD730" d="M-49.326-183.233v0.656c1.75,0.133,2.984,0.398,3.734,0.824c1.441,0.773,2.145,2.285,2.145,4.473v32.941
c0,2.199-0.77,3.73-2.281,4.52c-0.766,0.426-2,0.648-3.59,0.746v0.672h21.246c5.641,0,10.184-1.152,13.543-3.418
c3.328-2.238,4.953-5.086,4.953-8.672c0-3.848-1.688-6.789-5.168-8.953c-1.801-1.109-3.953-1.91-6.391-2.383l-0.457-0.094v-1.555
l0.457-0.094c2.297-0.426,4.438-1.441,6.406-3.023c1.922-1.547,2.855-3.602,2.855-6.258c0-4.391-2.344-7.352-7.168-9.031
c-2.59-0.898-5.934-1.359-9.871-1.359h-20.414L-49.326-183.233L-49.326-183.233z M-33.775-178.467c0-1.406,0.328-2.422,1.031-3
c0.656-0.574,1.754-0.848,3.328-0.848c2.922,0,4.922,1,5.969,2.961c1,1.84,1.488,4.137,1.488,6.801
c0,3.646-0.785,6.254-2.344,7.734c-1.578,1.488-4.504,2.211-8.922,2.211h-0.551L-33.775-178.467L-33.775-178.467z M-33.775-144.1
v-17.574l0.527-0.008c3.871-0.098,6.641,0.359,8.488,1.41c3.047,1.695,4.594,5.102,4.594,10.141c0,3.344-0.688,5.977-2.051,7.824
c-1.438,1.906-3.855,2.863-7.262,2.863c-1.816,0-3.051-0.59-3.703-1.75C-33.56-141.842-33.767-142.788-33.775-144.1"/>
<path fill="#010202" d="M-6.064-185.194v4.473l1.328,0.07c2.297,0.129,3.184,0.441,3.504,0.617
c0.547,0.289,1.234,0.848,1.234,2.754v32.941c0,1.871-0.672,2.457-1.184,2.746c-0.348,0.207-1.266,0.543-3.516,0.613l-1.359,0.051
v4.504h42.301l3.344-16.93h-4.492l-0.359,0.816c-2.016,4.328-4.297,7.305-6.785,8.832c-2.512,1.535-5.84,2.32-9.902,2.32
c-2.801,0-3.578-0.426-3.77-0.543c-0.438-0.297-0.512-1.242-0.512-1.777v-15.016c2.688,0.16,4.594,0.758,5.625,1.848
c1.297,1.344,2.168,3.832,2.594,7.367l0.168,1.227h4.375v-25.707h-4.305l-0.207,1.129c-0.855,4.434-2,6.383-2.801,7.23
c-0.922,0.961-2.816,1.496-5.457,1.609v-14.273c0-1.008,0.199-1.383,0.281-1.453c0.031,0,0.574-0.355,3.113-0.355
c5.094,0,8.605,0.715,10.406,2.113c1.77,1.395,3.074,4.145,3.855,8.152l0.219,1.129h4.297v-16.488L-6.064-185.194L-6.064-185.194z"
/>
<path fill="#FFD730" d="M-4.095-183.233v0.656c1.785,0.133,3.031,0.398,3.801,0.824c1.504,0.773,2.262,2.277,2.262,4.473v32.941
c0,2.16-0.734,3.648-2.184,4.457c-0.832,0.48-2.145,0.719-3.871,0.816v0.672h38.723c0.164-0.809,2.344-11.824,2.578-12.992h-0.875
c-2.125,4.496-4.594,7.656-7.344,9.352c-2.832,1.727-6.512,2.598-10.938,2.598c-2.441,0-4.047-0.285-4.887-0.879
c-0.906-0.629-1.344-1.785-1.344-3.398v-17.039h0.543c4.031,0,6.855,0.848,8.473,2.543c1.512,1.609,2.504,4.238,3.031,7.984h0.719
v-21.793h-0.734c-0.754,3.703-1.801,6.273-3.199,7.746c-1.504,1.582-4.203,2.328-8.281,2.27h-0.543v-16.289
c0-1.469,0.344-2.461,1.047-3.008c0.688-0.527,2.047-0.766,4.297-0.766c5.641,0,9.438,0.824,11.621,2.527
c2.07,1.633,3.547,4.633,4.477,8.863h0.703v-12.559L-4.095-183.233L-4.095-183.233z"/>
<path fill="#010202" d="M39.409-185.194v4.434l1.281,0.109c2.852,0.242,3.539,0.688,3.641,0.785
c0.289,0.215,0.961,1.078,0.961,4.008v30.098c0,2.918-0.602,3.703-0.797,3.854c-0.313,0.297-1.234,0.805-3.75,0.926l-1.344,0.066
v4.488h25.594v-4.512l-1.359-0.051c-2.656-0.094-3.484-0.695-3.719-0.934c-0.25-0.25-0.805-1.129-0.805-3.852v-9.156
c3.523,4.719,13.82,18.492,13.82,18.492H89.26v-4.316l-1.328-0.105c-0.461-0.039-0.859-0.105-1.133-0.207
c-0.078-0.043-0.273-0.152-0.57-0.551c-0.016-0.027-9.859-13.203-13.297-17.801c1.867-0.602,3.719-1.418,5.422-2.664
c3.219-2.418,4.859-5.738,4.859-9.875c0-5.645-3.063-9.582-9.102-11.727c-2.945-1.008-6.82-1.504-11.469-1.504H39.409V-185.194z
M59.127-178.584c0-0.395,0.07-0.93,0.328-1.145c0.016-0.016,0.492-0.371,2.711-0.371c2.813,0,4.617,0.984,5.656,3.105
c0.617,1.32,0.945,3.215,0.945,5.633c0,3.703-0.766,6.137-2.211,7.031c-1.492,0.914-4.016,1.449-7.43,1.609L59.127-178.584
L59.127-178.584z"/>
<path fill="#FFD730" d="M41.377-183.233v0.68c2.117,0.215,3.508,0.59,4.195,1.152c1.133,0.91,1.672,2.727,1.672,5.535v30.094
c0,2.715-0.453,4.449-1.406,5.328c-0.875,0.777-2.359,1.219-4.469,1.379v0.664h21.672v-0.656c-2.219-0.152-3.734-0.625-4.563-1.504
c-0.891-0.953-1.328-2.656-1.328-5.211v-32.813c0-1.203,0.359-2.105,1.078-2.672c0.672-0.547,1.906-0.809,3.922-0.809
c3.547,0,6.047,1.414,7.422,4.199c0.758,1.602,1.148,3.801,1.148,6.504c0,4.551-1.031,7.398-3.148,8.711
c-2.031,1.25-5.242,1.891-9.836,1.961h-0.508c0.133,0.168,1,1.273,1,1.273s15.359,20.559,15.688,21.008h13.375v-0.602
c-0.438-0.055-0.867-0.113-1.211-0.238c-0.523-0.195-1.031-0.625-1.461-1.242l-14.984-20.07l0.891-0.168
c2.328-0.434,4.578-1.418,6.672-2.945c2.719-2.031,4.047-4.75,4.047-8.289c0-4.789-2.539-8.008-7.781-9.871
c-2.734-0.918-6.359-1.398-10.813-1.398H41.377z"/>
<path fill="#010202" d="M86.784-185.194l-0.078,16.488h4.641l0.148-1.281c0.359-4.398,1.93-7.285,4.766-8.832
c1.313-0.703,3.195-1.125,5.578-1.305v34.344c0,2.816-0.625,3.707-0.906,3.945c-0.25,0.258-1.234,0.871-4.375,0.871h-1.406v4.527
h27.078v-4.527h-1.406c-3.234,0-4.203-0.59-4.492-0.855c-0.25-0.238-0.875-1.117-0.875-3.961v-34.359
c2.43,0.168,4.313,0.594,5.578,1.289c2.586,1.504,4.211,4.496,4.805,8.922l0.156,1.207h4.609l-0.094-16.488H86.784V-185.194z"/>
<path fill="#FFD730" d="M88.737-183.233c0,0.984-0.047,11.566-0.047,12.566h0.898c0.531-4.742,2.43-8.094,5.727-9.887
c1.836-0.992,4.508-1.535,7.883-1.633l0.578-0.016v36.414c0,2.672-0.5,4.441-1.5,5.395c-0.922,0.863-2.656,1.305-5.172,1.359v0.633
h23.141v-0.633c-2.586-0.047-4.344-0.488-5.281-1.352c-0.977-0.945-1.453-2.703-1.453-5.402v-36.414l0.578,0.016
c3.469,0.098,6.109,0.641,7.891,1.633c3.063,1.766,4.969,5.109,5.688,9.887h0.922c0-1-0.047-11.582-0.047-12.566H88.737z"/>
<path fill="#010202" d="M158.573-201.553c-0.523,0.375-1.016,0.832-1.438,1.375l-10.594,13.016h6.953l9.438-6.246
c0.953-0.625,1.688-1.227,2.203-1.832c0.672-0.754,1.016-1.746,1.016-2.961c0-1.207-0.422-2.25-1.219-3.098
c-0.828-0.855-1.93-1.301-3.242-1.301C160.588-202.608,159.542-202.241,158.573-201.553 M131.393-185.194v4.473l1.328,0.07
c2.297,0.129,3.164,0.441,3.492,0.617c0.555,0.289,1.227,0.848,1.227,2.754v32.941c0,1.871-0.656,2.457-1.164,2.746
c-0.359,0.207-1.266,0.543-3.531,0.613l-1.344,0.051v4.504h42.297l3.344-16.93h-4.484l-0.375,0.816
c-2.016,4.328-4.297,7.305-6.773,8.832c-2.523,1.535-5.836,2.32-9.898,2.32c-2.805,0-3.578-0.426-3.758-0.543
c-0.461-0.297-0.523-1.242-0.523-1.777v-15.016c2.672,0.16,4.594,0.758,5.625,1.848c1.297,1.344,2.141,3.832,2.602,7.367
l0.133,1.227h4.391v-25.707h-4.313l-0.211,1.129c-0.836,4.434-1.961,6.383-2.781,7.23c-0.938,0.961-2.836,1.496-5.461,1.609
v-14.273c0-1.008,0.219-1.383,0.297-1.453c0,0,0.578-0.355,3.109-0.355c5.086,0,8.594,0.715,10.383,2.113
c1.766,1.395,3.078,4.145,3.883,8.152l0.203,1.129h4.313v-16.488L131.393-185.194L131.393-185.194z"/>
<path fill="#FFD730" d="M159.706-199.944L159.706-199.944c-0.375,0.254-0.742,0.59-1.031,0.988c0,0-5.891,7.234-8,9.832h2.227
c0.25-0.191,8.922-5.926,8.922-5.926c0.813-0.527,1.422-1.016,1.844-1.488c0.313-0.391,0.5-0.953,0.5-1.672
c0-0.695-0.219-1.266-0.656-1.734c-0.438-0.473-1.047-0.699-1.828-0.699C161.002-200.643,160.362-200.417,159.706-199.944
M133.346-183.233v0.656c1.805,0.133,3.063,0.398,3.836,0.824c1.453,0.766,2.242,2.27,2.242,4.461v32.945
c0,2.16-0.734,3.648-2.195,4.457c-0.82,0.48-2.133,0.719-3.875,0.816v0.672h38.75c0.156-0.809,2.313-11.824,2.547-12.992h-0.859
c-2.125,4.496-4.594,7.656-7.344,9.352c-2.844,1.727-6.516,2.598-10.938,2.598c-2.453,0-4.047-0.285-4.906-0.879
c-0.883-0.633-1.328-1.785-1.328-3.396v-17.039h0.563c4,0,6.844,0.848,8.453,2.543c1.531,1.609,2.508,4.238,3.039,7.984h0.688
v-21.785h-0.703c-0.773,3.703-1.82,6.273-3.203,7.746c-1.508,1.582-4.195,2.328-8.258,2.27h-0.563v-16.289
c0-1.469,0.344-2.461,1.047-3.008c0.672-0.527,2.047-0.766,4.313-0.766c5.609,0,9.406,0.824,11.609,2.527
c2.063,1.633,3.578,4.633,4.438,8.863h0.766v-12.559H133.346L133.346-183.233z"/>
<path fill="#010202" d="M-17.998-123.772v4.473l1.313,0.074c2.309,0.137,3.199,0.445,3.512,0.609
c0.527,0.285,1.246,0.863,1.246,2.758v32.938c0,1.871-0.688,2.469-1.184,2.75c-0.359,0.199-1.281,0.535-3.527,0.617l-1.359,0.047
v4.496h42.293l3.344-16.918h-4.47l-0.379,0.813c-2.016,4.336-4.293,7.305-6.781,8.836c-2.512,1.535-5.84,2.301-9.891,2.301
c-2.816,0-3.59-0.398-3.781-0.52c-0.441-0.313-0.512-1.246-0.512-1.793V-97.28c2.688,0.164,4.605,0.766,5.637,1.855
c1.266,1.352,2.16,3.832,2.578,7.367l0.16,1.23h4.391v-25.734h-4.297l-0.215,1.152c-0.855,4.43-1.984,6.375-2.801,7.223
c-0.902,0.961-2.816,1.504-5.453,1.617v-14.289c0-1.016,0.215-1.398,0.293-1.465c0.016-0.016,0.578-0.352,3.098-0.352
c5.113,0,8.594,0.711,10.406,2.113c1.785,1.398,3.082,4.145,3.875,8.152l0.199,1.129h4.297v-16.492h-41.992V-123.772z"/>
<path fill="#FFD730" d="M-16.033-121.803v0.656c1.785,0.129,3.035,0.395,3.816,0.816c1.488,0.77,2.234,2.289,2.234,4.473v32.938
c0,2.168-0.723,3.656-2.168,4.477c-0.816,0.449-2.145,0.715-3.871,0.809v0.664h38.719c0.168-0.801,2.344-11.824,2.559-13h-0.84
c-2.145,4.504-4.605,7.664-7.375,9.354c-2.816,1.727-6.488,2.598-10.906,2.598c-2.453,0-4.047-0.289-4.902-0.879
c-0.887-0.633-1.344-1.77-1.344-3.402v-17.039h0.574c4,0,6.832,0.855,8.441,2.551c1.527,1.594,2.512,4.234,3.047,7.977h0.688
v-21.79h-0.734c-0.734,3.719-1.785,6.277-3.184,7.75c-1.504,1.578-4.184,2.328-8.281,2.281l-0.543-0.008v-16.281
c0-1.48,0.344-2.473,1.063-3.023c0.672-0.512,2.035-0.77,4.281-0.77c5.641,0,9.441,0.832,11.609,2.543
c2.094,1.625,3.574,4.625,4.473,8.852h0.734v-12.555h-38.09V-121.803z"/>
<path fill="#010202" d="M28.112-123.772l-0.078,16.492h4.641l0.125-1.271c0.383-4.41,1.938-7.297,4.789-8.84
c1.297-0.695,3.18-1.137,5.578-1.297v34.336c0,2.816-0.641,3.695-0.906,3.945c-0.281,0.27-1.266,0.863-4.391,0.863h-1.398v4.527
h27.07v-4.527h-1.391c-3.234,0-4.219-0.594-4.516-0.84c-0.227-0.25-0.852-1.129-0.852-3.969v-34.344
c2.43,0.168,4.313,0.598,5.547,1.297c2.602,1.496,4.242,4.488,4.836,8.902l0.156,1.219h4.594l-0.078-16.492H28.112L28.112-123.772z
"/>
<path fill="#FFD730" d="M30.065-121.803c0,0.969-0.047,11.563-0.063,12.555H30.9c0.531-4.746,2.445-8.098,5.719-9.875
c1.859-1,4.516-1.551,7.906-1.629l0.578-0.027v36.418c0,2.672-0.5,4.434-1.5,5.375c-0.938,0.879-2.672,1.32-5.188,1.387v0.621
h23.141V-77.6c-2.57-0.066-4.328-0.508-5.266-1.363c-0.977-0.941-1.484-2.703-1.484-5.398v-36.418l0.578,0.027
c3.484,0.078,6.141,0.629,7.922,1.629c3.063,1.746,4.953,5.098,5.688,9.875h0.922c0-0.992-0.047-11.586-0.047-12.555H30.065z"/>
<path fill="#010202" d="M-96.623-62.331v4.375l1.246,0.145c2.504,0.281,3.402,0.77,3.707,1.031c0.086,0.066,0.68,0.691,0.68,3.771
v30.098c0,2.75-0.512,3.574-0.738,3.813c-0.238,0.234-1.055,0.801-3.59,0.984l-1.305,0.098v4.441h25.359v-4.488l-1.352-0.051
c-2.504-0.094-3.426-0.604-3.746-0.902c-0.184-0.184-0.797-0.984-0.797-3.887v-11.313c3.367-0.016,6.047-0.113,7.895-0.281
c2.176-0.184,4.391-0.75,6.559-1.625c3.02-1.313,5.211-3.094,6.547-5.293c1.313-2.184,1.969-4.527,1.969-7.02
c0-5.078-1.738-8.734-5.195-10.871c-3.223-2.016-7.934-3.016-13.957-3.016h-23.281L-96.623-62.331L-96.623-62.331z M-77.158-56.28
c0-0.348,0.055-0.609,0.152-0.656c0.176-0.098,0.727-0.313,2.23-0.313c2.414,0,3.961,0.703,4.762,2.141
c0.91,1.707,1.383,4,1.383,6.844c0,4.031-0.863,6.621-2.57,7.719c-0.695,0.438-2.277,0.969-5.949,1.145v-16.88H-77.158z"/>
<path fill="#FFD730" d="M-94.654-60.37v0.688c2.063,0.266,3.473,0.719,4.277,1.426c0.914,0.797,1.344,2.512,1.344,5.246v30.098
c0,2.574-0.414,4.277-1.285,5.184c-0.816,0.816-2.234,1.313-4.336,1.504v0.672h21.414v-0.641c-2.121-0.16-3.598-0.594-4.473-1.406
c-0.934-0.906-1.414-2.625-1.414-5.313v-13.25h0.574c4.008,0,7.074-0.094,9.105-0.281c1.992-0.164,4.008-0.672,6.016-1.5
c2.578-1.129,4.465-2.656,5.578-4.492c1.133-1.855,1.695-3.871,1.695-6c0-4.422-1.379-7.422-4.266-9.199
c-2.918-1.816-7.273-2.734-12.918-2.734h-21.311V-60.37z M-79.126-56.28c0-1.164,0.398-1.953,1.176-2.379
c0.68-0.375,1.719-0.559,3.168-0.559c3.16,0,5.328,1.078,6.48,3.168c1.094,1.984,1.633,4.605,1.633,7.785
c0,4.734-1.168,7.887-3.496,9.375c-1.449,0.918-4.195,1.422-8.395,1.504h-0.574V-56.28H-79.126z"/>
<path fill="#010202" d="M-37.775-63.331l-15.391,38.129c-1.426,3.527-2.184,4.887-2.578,5.422
c-0.766,1.051-1.688,1.578-2.926,1.656l-1.305,0.098v4.441h16.664V-18.1l-1.375-0.016c-1.754-0.016-2.641-0.199-3.082-0.344
c-0.984-0.328-0.984-0.656-0.984-0.781c0-0.359,0.113-1.281,0.84-3.375c-0.016,0.016,1.031-2.836,1.578-4.328h13.359
c0.438,1.078,1.344,3.246,1.344,3.246l0.855,2.246c0.406,1.25,0.457,1.801,0.457,1.969c0,0.625-0.129,0.855-0.16,0.891
c-0.266,0.109-1.129,0.359-3.891,0.469l-1.359,0.051v4.488h24.816v-4.578l-1.457,0.047c-1.078,0.035-1.84-0.328-2.391-1.109
c-0.543-0.719-1.609-2.625-3.672-7.488l-15.512-36.609h-3.832v-0.01H-37.775z M-39.853-43.659
c1.293,3.113,3.652,8.801,4.652,11.234h-9.031C-43.31-34.827-41.095-40.514-39.853-43.659"/>
<path fill="#FFD730" d="M-36.439-61.354c-0.281,0.688-14.902,36.887-14.902,36.887c-1.234,3.031-2.168,4.938-2.832,5.84
c-0.984,1.363-2.281,2.129-3.848,2.363v0.703h12.75v-0.641c-1.313-0.047-2.375-0.16-3.098-0.391
c-1.934-0.656-2.359-1.816-2.359-2.656c0-0.875,0.313-2.168,0.938-4c0-0.016,2.063-5.688,2.063-5.688h0.395h15.656l1.871,4.484
l0.887,2.363c0.375,1.16,0.543,2.016,0.543,2.605c0,1.426-0.453,2.344-1.375,2.723c-0.703,0.277-2.031,0.469-4.016,0.574v0.625
h20.871v-0.641c-1.473-0.098-2.641-0.719-3.488-1.871c-0.855-1.199-2.145-3.785-3.871-7.871c0,0-13.543-32-15-35.41h-1.185V-61.354
z M-40.509-47.37h1.23l7.031,16.902h-14.871L-40.509-47.37z"/>
<path fill="#010202" d="M-15.326-62.331l-0.082,16.473h4.656l0.113-1.266c0.391-4.406,1.934-7.293,4.801-8.84
c1.293-0.703,3.168-1.125,5.543-1.309v34.344c0,2.813-0.609,3.703-0.855,3.949c-0.281,0.25-1.281,0.871-4.41,0.871h-1.422v4.516
h27.094v-4.516h-1.406c-3.215,0-4.199-0.605-4.488-0.855c-0.25-0.23-0.855-1.125-0.855-3.965v-34.344
c2.422,0.164,4.297,0.605,5.559,1.293c2.609,1.488,4.215,4.488,4.801,8.922l0.16,1.199h4.59l-0.078-16.473L-15.326-62.331
L-15.326-62.331z"/>
<path fill="#FFD730" d="M-13.376-60.37c0,0.984-0.047,11.559-0.047,12.543h0.906c0.527-4.734,2.438-8.078,5.719-9.855
c1.84-1,4.504-1.559,7.902-1.641l0.563-0.016v36.41c0,2.672-0.488,4.422-1.504,5.375c-0.922,0.871-2.641,1.313-5.184,1.375v0.625
h23.156v-0.609c-2.59-0.063-4.344-0.504-5.262-1.375c-1-0.938-1.473-2.703-1.473-5.391v-36.41l0.559,0.016
c3.488,0.082,6.145,0.641,7.906,1.641c3.078,1.754,4.969,5.098,5.703,9.855h0.922c-0.02-0.984-0.066-11.559-0.066-12.543H-13.376z"
/>
<path fill="#010202" d="M29.409-62.331v4.41l1.281,0.109c2.852,0.25,3.523,0.703,3.641,0.785c0.289,0.23,0.945,1.098,0.945,4.016
v30.098c0,2.934-0.586,3.703-0.781,3.871c-0.328,0.297-1.25,0.801-3.766,0.918l-1.32,0.066v4.473h25.594v-4.488l-1.367-0.051
c-2.672-0.109-3.5-0.703-3.719-0.934c-0.242-0.266-0.797-1.129-0.797-3.855v-9.16c3.516,4.734,13.813,18.488,13.813,18.488h16.313
v-4.328l-1.313-0.082c-0.469-0.031-0.852-0.113-1.141-0.215c-0.094-0.031-0.297-0.145-0.563-0.543
c-0.031-0.035-9.867-13.203-13.313-17.816c1.875-0.594,3.719-1.41,5.445-2.656c3.211-2.41,4.852-5.719,4.852-9.875
c0-5.637-3.063-9.574-9.094-11.734c-2.969-1-6.828-1.488-11.484-1.488H29.409V-62.331z M49.127-55.713
c0-0.41,0.055-0.922,0.313-1.16c0.016-0.016,0.508-0.375,2.711-0.375c2.828,0,4.617,0.984,5.648,3.109
c0.641,1.328,0.953,3.219,0.953,5.625c0,3.719-0.766,6.16-2.195,7.047c-1.508,0.922-4.016,1.441-7.43,1.594V-55.713z"/>
<path fill="#FFD730" d="M31.362-60.37v0.672c2.109,0.215,3.508,0.59,4.195,1.146c1.148,0.918,1.688,2.734,1.688,5.543v30.098
c0,2.719-0.469,4.453-1.422,5.328c-0.859,0.766-2.344,1.215-4.469,1.375v0.656h21.672v-0.641c-2.203-0.16-3.719-0.641-4.547-1.512
c-0.906-0.938-1.328-2.641-1.328-5.199v-32.801c0-1.215,0.344-2.145,1.047-2.688c0.688-0.543,1.938-0.816,3.938-0.816
c3.563,0,6.063,1.422,7.422,4.215c0.773,1.609,1.164,3.785,1.164,6.488c0,4.563-1.031,7.426-3.148,8.719
c-2.031,1.234-5.242,1.891-9.852,1.953c0,0-0.391,0-0.508,0c0.117,0.168,0.984,1.281,0.984,1.281s15.391,20.559,15.719,21h13.359
v-0.586c-0.438-0.063-0.867-0.125-1.195-0.246c-0.523-0.215-1.031-0.625-1.461-1.25L59.604-37.698l0.906-0.168
c2.328-0.426,4.594-1.406,6.688-2.953c2.719-2.031,4.031-4.734,4.031-8.281c0-4.797-2.539-8.016-7.766-9.871
c-2.734-0.918-6.375-1.391-10.828-1.391H31.362V-60.37z"/>
<path fill="#010202" d="M78.456-62.331v4.473l1.328,0.047c2.383,0.129,3.313,0.441,3.656,0.594c0.508,0.281,1.18,0.855,1.18,2.781
v32.938c0,1.938-0.734,2.543-1.273,2.832c-0.359,0.168-1.313,0.504-3.508,0.543l-1.383,0.035v4.504h26.578v-4.531h-1.414
c-2.328,0-3.484-0.422-4.063-0.766c-0.609-0.359-0.922-1.234-0.922-2.609v-32.934c0-1.938,0.727-2.531,1.234-2.801
c0.344-0.16,1.297-0.457,3.82-0.578l1.344-0.047v-4.473H78.456V-62.331z"/>
<path fill="#FFD730" d="M80.424-60.37v0.656c1.82,0.098,3.133,0.359,3.922,0.77c1.492,0.781,2.258,2.309,2.258,4.508v32.938
c0,2.234-0.797,3.785-2.359,4.578c-0.836,0.406-2.141,0.621-3.828,0.719v0.641h22.625v-0.625c-1.938-0.063-3.438-0.375-4.5-1.016
c-1.234-0.754-1.859-2.184-1.859-4.297v-32.938c0-2.23,0.781-3.766,2.297-4.543c0.797-0.391,2.156-0.637,4.063-0.734v-0.656
L80.424-60.37L80.424-60.37z"/>
<path fill="#010202" d="M104.854-62.331v4.457l1.328,0.063c2.289,0.145,3.164,0.457,3.484,0.625c0.563,0.281,1.25,0.855,1.25,2.75
v32.938c0,1.871-0.672,2.473-1.188,2.754c-0.359,0.199-1.266,0.543-3.531,0.621l-1.344,0.051v4.488h42.328l3.328-16.922h-4.484
l-0.406,0.832c-1.984,4.328-4.266,7.297-6.766,8.816c-2.508,1.527-5.836,2.313-9.875,2.313c-2.813,0-3.609-0.391-3.766-0.512
c-0.461-0.328-0.531-1.266-0.531-1.801v-15c2.672,0.168,4.594,0.785,5.641,1.855c1.266,1.344,2.156,3.832,2.578,7.375l0.156,1.234
h4.391v-25.738h-4.297l-0.219,1.16c-0.828,4.426-1.984,6.363-2.797,7.219c-0.922,0.965-2.828,1.504-5.453,1.621v-14.285
c0-1.02,0.234-1.41,0.297-1.473c0,0,0.563-0.359,3.109-0.359c5.094,0,8.578,0.719,10.391,2.125
c1.766,1.395,3.078,4.129,3.844,8.145l0.25,1.129h4.281v-16.473h-42L104.854-62.331L104.854-62.331z"/>
<path fill="#FFD730" d="M106.799-60.37v0.656c1.805,0.129,3.07,0.406,3.82,0.801c1.5,0.797,2.266,2.297,2.266,4.488v32.934
c0,2.16-0.734,3.656-2.188,4.473c-0.813,0.473-2.141,0.703-3.891,0.816v0.656h38.734c0.164-0.801,2.344-11.816,2.563-12.984h-0.844
c-2.125,4.512-4.602,7.672-7.375,9.359c-2.813,1.719-6.484,2.594-10.898,2.594c-2.477,0-4.055-0.297-4.906-0.875
c-0.898-0.637-1.375-1.781-1.375-3.406v-17.031h0.57c4.016,0,6.859,0.855,8.477,2.543c1.508,1.609,2.508,4.25,3.031,7.984h0.727
v-21.801h-0.742c-0.766,3.719-1.805,6.281-3.195,7.77c-1.508,1.559-4.203,2.313-8.281,2.262h-0.578v-16.285
c0-1.488,0.359-2.473,1.078-3.02c0.672-0.527,2.047-0.781,4.313-0.781c5.609,0,9.406,0.84,11.578,2.543
c2.094,1.625,3.578,4.625,4.5,8.84h0.719v-12.543H106.8L106.799-60.37L106.799-60.37z"/>
<g>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M-174.318,19.912h403.43 M27.249-213.002h201.832V83.662
c0,106.594-90.313,193.016-201.688,193.016c-111.398,0-201.695-86.422-201.695-193.016v-296.664H27.249z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

+70
View File
@@ -0,0 +1,70 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.794px" height="493.177px" viewBox="-176.752 -214.492 406.794 493.177"
enable-background="new -176.752 -214.492 406.794 493.177" xml:space="preserve">
<g>
<path fill="#E8423F" d="M26.506-212.967h202.012V83.958c0,106.703-90.391,193.203-201.867,193.203L26.506-212.967z"/>
<path fill="#FFFFFF" d="M26.651,277.163L26.651,277.163c-111.504,0-201.879-86.5-201.879-193.204v-296.926H26.506L26.651,277.163z"
/>
<polygon fill="#FFFFFF" points="139.799,-167.901 153.37,-131.006 189.487,-131.006 160.963,-111.452 171.815,-76.436
139.799,-97.069 108.042,-76.436 118.877,-111.717 90.127,-131.006 126.221,-131.006 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="139.799,-167.901 153.37,-131.006 189.487,-131.006
160.963,-111.452 171.815,-76.436 139.799,-97.069 108.042,-76.436 118.877,-111.717 90.127,-131.006 126.221,-131.006 "/>
<polygon fill="#FFFFFF" points="139.799,-78.151 153.37,-41.221 189.487,-41.221 160.963,-21.694 171.815,13.322 139.799,-7.303
108.042,13.322 118.877,-21.959 90.127,-41.221 126.221,-41.221 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="139.799,-78.151 153.37,-41.221 189.487,-41.221
160.963,-21.694 171.815,13.322 139.799,-7.303 108.042,13.322 118.877,-21.959 90.127,-41.221 126.221,-41.221 "/>
<polygon fill="#FFFFFF" points="139.799,11.603 153.37,48.521 189.487,48.521 160.963,68.076 171.815,103.091 139.799,82.466
108.042,103.091 118.877,67.81 90.127,48.521 126.221,48.521 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="139.799,11.603 153.37,48.521 189.487,48.521 160.963,68.076
171.815,103.091 139.799,82.466 108.042,103.091 118.877,67.81 90.127,48.521 126.221,48.521 "/>
<polygon fill="#FFFFFF" points="139.799,101.38 153.37,138.287 189.487,138.287 160.963,157.833 171.815,192.833 139.799,172.208
108.042,192.833 118.877,157.552 90.127,138.287 126.221,138.287 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="139.799,101.38 153.37,138.287 189.487,138.287
160.963,157.833 171.815,192.833 139.799,172.208 108.042,192.833 118.877,157.552 90.127,138.287 126.221,138.287 "/>
<polygon fill="#E8423F" points="-86.47,-167.901 -72.9,-131.006 -36.806,-131.006 -65.302,-111.452 -54.447,-76.436
-86.47,-97.069 -118.228,-76.436 -107.373,-111.717 -136.15,-131.006 -100.052,-131.006 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="-86.47,-167.901 -72.9,-131.006 -36.806,-131.006
-65.302,-111.452 -54.447,-76.436 -86.47,-97.069 -118.228,-76.436 -107.373,-111.717 -136.15,-131.006 -100.052,-131.006 "/>
<polygon fill="#E8423F" points="-86.47,-78.151 -72.9,-41.221 -36.806,-41.221 -65.302,-21.694 -54.447,13.322 -86.47,-7.303
-118.228,13.322 -107.373,-21.959 -136.15,-41.221 -100.052,-41.221 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="-86.47,-78.151 -72.9,-41.221 -36.806,-41.221
-65.302,-21.694 -54.447,13.322 -86.47,-7.303 -118.228,13.322 -107.373,-21.959 -136.15,-41.221 -100.052,-41.221 "/>
<polygon fill="#E8423F" points="-86.47,11.603 -72.9,48.521 -36.806,48.521 -65.302,68.076 -54.447,103.091 -86.47,82.466
-118.228,103.091 -107.373,67.81 -136.15,48.521 -100.052,48.521 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="-86.47,11.603 -72.9,48.521 -36.806,48.521 -65.302,68.076
-54.447,103.091 -86.47,82.466 -118.228,103.091 -107.373,67.81 -136.15,48.521 -100.052,48.521 "/>
<polygon fill="#E8423F" points="-86.47,101.38 -72.9,138.287 -36.806,138.287 -65.302,157.833 -54.447,192.833 -86.47,172.208
-118.228,192.833 -107.373,157.552 -136.15,138.287 -100.052,138.287 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="-86.47,101.38 -72.9,138.287 -36.806,138.287 -65.302,157.833
-54.447,192.833 -86.47,172.208 -118.228,192.833 -107.373,157.552 -136.15,138.287 -100.052,138.287 "/>
<polygon fill="#E8423F" points="26.588,-126.862 -5.431,-106.495 5.452,-141.51 -23.068,-161.053 13.042,-161.053 26.588,-197.694
"/>
<polygon fill="#FFFFFF" points="26.588,-197.694 40.159,-160.772 76.276,-160.772 47.502,-141.51 58.635,-106.221 26.588,-126.862
"/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="26.588,-197.694 40.159,-160.772 76.276,-160.772
47.502,-141.51 58.635,-106.221 26.588,-126.862 -5.431,-106.495 5.452,-141.51 -23.068,-161.053 13.042,-161.053 "/>
<polygon fill="#E8423F" points="26.588,-37.1 -5.431,-16.741 5.452,-51.756 -23.068,-71.295 13.042,-71.295 26.588,-107.936 "/>
<polygon fill="#FFFFFF" points="26.588,-107.936 40.159,-71.022 76.276,-71.022 47.502,-51.756 58.635,-16.479 26.588,-37.1 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="26.588,-107.936 40.159,-71.022 76.276,-71.022
47.502,-51.756 58.635,-16.479 26.588,-37.1 -5.431,-16.741 5.452,-51.756 -23.068,-71.295 13.042,-71.295 "/>
<polygon fill="#E8423F" points="26.588,52.662 -5.431,73.021 5.452,38.021 -23.068,18.466 13.042,18.466 26.588,-18.167 "/>
<polygon fill="#FFFFFF" points="26.588,-18.167 40.159,18.748 76.276,18.748 47.502,38.021 58.635,73.287 26.588,52.662 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="26.588,-18.167 40.159,18.748 76.276,18.748 47.502,38.021
58.635,73.287 26.588,52.662 -5.431,73.021 5.452,38.021 -23.068,18.466 13.042,18.466 "/>
<polygon fill="#E8423F" points="26.588,142.435 -5.431,162.794 5.452,127.779 -23.068,108.224 13.042,108.224 26.588,71.568 "/>
<polygon fill="#FFFFFF" points="26.588,71.568 40.159,108.49 76.276,108.49 47.502,127.779 58.635,163.052 26.588,142.435 "/>
<polygon fill="none" stroke="#010202" stroke-width="3.048" points="26.588,71.568 40.159,108.49 76.276,108.49 47.502,127.779
58.635,163.052 26.588,142.435 -5.431,162.794 5.452,127.779 -23.068,108.224 13.042,108.224 "/>
<polygon fill="#FFFFFF" points="26.588,161.349 40.159,198.255 76.276,198.255 47.502,217.521 58.635,252.81 26.588,232.177 "/>
<polygon fill="#E8423F" points="26.588,232.177 -5.431,252.551 5.452,217.521 -23.068,197.974 13.042,197.974 26.588,161.349 "/>
<g>
<path fill="none" stroke="#010202" stroke-width="3.048" d="M26.506-212.967l0.145,490.129 M26.506-212.967h202.012V83.958
c0,106.703-90.391,193.203-201.867,193.203c-111.504,0-201.879-86.5-201.879-193.203v-296.926L26.506-212.967L26.506-212.967z
M26.588,161.349l13.57,36.906h36.117l-28.789,19.266l11.148,35.28l-32.047-20.625l-32.02,20.375l10.875-35.03l-28.512-19.547
h36.109L26.588,161.349z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

+28
View File
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="407.257px" height="493.719px" viewBox="-176.486 -214.276 407.257 493.719"
enable-background="new -176.486 -214.276 407.257 493.719" xml:space="preserve">
<g>
<path fill="#FFFFFF" d="M26.987-212.749h202.277V84.49c0,106.844-90.508,193.422-202.141,193.422s-202.09-86.578-202.09-193.422
v-297.238L26.987-212.749L26.987-212.749z"/>
<polygon fill="#268BCC" points="-174.966,103.224 -174.966,-54.198 26.987,-54.198 229.264,-54.198 229.264,103.224 "/>
<g>
<g>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="-176.486" y="-214.276" width="407.257" height="493.719"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="none" stroke="#010202" stroke-width="3.048" d="M26.987-212.749h202.277V84.49
c0,106.844-90.508,193.422-202.141,193.422s-202.09-86.578-202.09-193.422v-297.238L26.987-212.749L26.987-212.749z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="406.224px" height="492.466px" viewBox="-175.818 -214.101 406.224 492.466"
enable-background="new -175.818 -214.101 406.224 492.466" xml:space="preserve">
<g>
<path fill="#FFFFFF" d="M27.194-212.026h201.734v296.5c0,106.563-90.25,192.938-201.602,192.938
c-111.336,0-201.59-86.375-201.59-192.938v-296.5H27.194L27.194-212.026z"/>
<path fill="#248BCC" d="M-174.263,84.458c0,106.563,90.254,192.953,201.59,192.953c74.461,0,140.805-40.906,175.711-98.357
l-377.301-391.414V84.458z"/>
<path fill="none" stroke="#000000" stroke-width="3.048" d="M27.159-212.577h201.722V83.927
c0,106.531-90.233,192.913-201.577,192.913c-111.336,0-201.598-86.382-201.598-192.913v-296.504H27.159z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB