Browse Source

background features and assets

develop
Rob Colbert 2 years ago
parent
commit
0628c67936
  1. BIN
      game/assets/img/beach/cloud-001.png
  2. BIN
      game/assets/img/beach/cloud-002.png
  3. BIN
      game/assets/img/beach/cloud-003.png
  4. BIN
      game/assets/img/beach/cloud-004.png
  5. BIN
      game/assets/img/beach/cloud-005.png
  6. BIN
      game/assets/img/beach/cloud-006.png
  7. BIN
      game/assets/img/beach/rocky-island.png
  8. BIN
      game/assets/img/beach/sailboat.png
  9. 7
      game/js/game-app.js
  10. 400
      game/js/lib/game-background.js
  11. 11
      game/js/lib/game-enemies.js
  12. 2
      game/js/lib/game-player.js
  13. 162
      src/images/beach-cloud-001.svg
  14. 211
      src/images/beach-cloud-002.svg
  15. 192
      src/images/beach-cloud-003.svg
  16. 247
      src/images/beach-cloud-004.svg
  17. 147
      src/images/beach-cloud-005.svg
  18. 157
      src/images/beach-cloud-006.svg
  19. 409
      src/images/beach-island.svg
  20. 265
      src/images/beach-sailboat.svg

BIN
game/assets/img/beach/cloud-001.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
game/assets/img/beach/cloud-002.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
game/assets/img/beach/cloud-003.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
game/assets/img/beach/cloud-004.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
game/assets/img/beach/cloud-005.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
game/assets/img/beach/cloud-006.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
game/assets/img/beach/rocky-island.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
game/assets/img/beach/sailboat.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

7
game/js/game-app.js

@ -41,7 +41,7 @@ export default class GameApp extends NiceGame {
margin: 120,
colors: {
margin: {
fill: new NiceColor(0, 0, 0, 0.6),
fill: new NiceColor(0, 0, 0, 0.8),
stroke: new NiceColor(32,32,64, 1.0),
},
},
@ -105,7 +105,7 @@ export default class GameApp extends NiceGame {
startLevel ( ) {
const now = performance.now();
this.nextSpawnInterval = 1000 * 5;
this.nextSpawnInterval = 1000 * 2;
this.nextSpawnTime = now + this.nextSpawnInterval;
this.formations = [ ];
}
@ -301,7 +301,8 @@ export default class GameApp extends NiceGame {
}
getRandomPlayfieldX (padding) {
return this.playfield.margin + padding + ((this.playfield.width - padding - (this.playfield.margin * 2)) * Math.random());
const fieldWidth = this.playfield.width - (this.playfield.margin * 2) - (padding * 2);
return this.playfield.margin + padding + (Math.random() * fieldWidth);
}
}

400
game/js/lib/game-background.js

@ -4,12 +4,112 @@
'use strict';
import { NiceEasing, NiceSprite, NiceTween, NiceVector2d } from 'dtp-nice-game';
import { NiceColor, NiceEasing, NiceSprite, NiceTween, NiceVector2d } from 'dtp-nice-game';
const CANVAS_WIDTH = 960;
const CANVAS_HEIGHT = 540;
const SKY_HEIGHT = 150;
const SKY_HEIGHT = 200;
const WATER_HEIGHT = 150;
const WATER_END = SKY_HEIGHT + WATER_HEIGHT;
class OceanWave {
constructor (game) {
this.game = game;
function randomY ( ) {
return SKY_HEIGHT + (Math.random() * 20);
}
this.points = [ ];
this.startY = randomY();
const wavePointSpacing = game.playfield.width / 16;
for (let x = wavePointSpacing; x <= game.playfield.width; x += wavePointSpacing) {
this.points.push({
control: new NiceVector2d(x - (wavePointSpacing / 0.8), randomY()),
target: new NiceVector2d(x, randomY())
});
}
}
update (elapsed) {
const BASE_RATE = 10.0;
const VARIANCE = 2.0;
const timeScale = elapsed / 1000.0;
this.startY += (BASE_RATE + (VARIANCE * Math.random())) * timeScale;
let maxY = 0;
this.points.forEach((point) => {
point.control.y += (BASE_RATE + (VARIANCE * Math.random())) * timeScale;
point.target.y += (BASE_RATE + (VARIANCE * Math.random())) * timeScale;
if (point.target.y > maxY) {
maxY = point.target.y;
}
});
return maxY < WATER_END;
}
render (ctx) {
let maxY = 0;
let minY = this.game.playfield.height;
ctx.beginPath();
ctx.moveTo(0, this.startY);
if (this.startY > maxY) {
maxY = this.startY;
}
if (this.startY < minY) {
minY = this.startY;
}
this.points.forEach((point) => {
ctx.quadraticCurveTo(point.control.x, point.control.y, point.target.x, point.target.y);
if (point.target.y > maxY) {
maxY = point.target.y;
}
if (point.target.y < minY) {
minY = point.target.y;
}
});
const oldOpacity = ctx.globalAlpha;
ctx.globalAlpha = 1.0;
if (maxY > (WATER_END - 50)) {
let term = WATER_END - maxY;
if (term < 0) { term = 0; }
ctx.globalAlpha = term / 50.0;
}
let alpha = (maxY - SKY_HEIGHT) / WATER_HEIGHT;
const color = new NiceColor(255,255,255, alpha);
ctx.strokeStyle = color.toCssString();
ctx.lineWidth = 2.0;
ctx.stroke();
minY -= 80;
if (minY < SKY_HEIGHT) {
minY = SKY_HEIGHT;
}
ctx.lineTo(this.game.playfield.width, minY);
ctx.lineTo(0, minY);
ctx.closePath();
color.a /= 2.0;
if (color.a > 0.2) {
color.a = 0.4;
}
ctx.fillStyle = ctx.createLinearGradient(0, minY, 0, maxY);
ctx.fillStyle.addColorStop(0.0, '#ffffff00');
ctx.fillStyle.addColorStop(1.0, color.toCssString());
ctx.fill();
ctx.globalAlpha = oldOpacity;
}
}
/**
* GameBackground is responsible for rendering the background/environment, and
@ -34,6 +134,10 @@ export default class GameBackground {
this.sun = {
position: new NiceVector2d(480, 140),
};
this.waves = [ ];
this.boats = [ ];
this.clouds = [ ];
}
async load ( ) {
@ -41,13 +145,15 @@ export default class GameBackground {
this.buildSprites();
this.buildTweens();
this.setEnvironmentMode('day');
}
async loadImages ( ) {
const jobs = [ ];
jobs.push(this.game.loadImage('bg:foreground-base', '/dist/assets/img/beach/foreground-base.png', 960, 114));
jobs.push(this.game.loadImage('bg:waves', '/dist/assets/img/beach/waves.png', 112, 40));
jobs.push(this.game.loadImage('bg:sailboat', '/dist/assets/img/beach/sailboat.png', 116, 120));
jobs.push(this.game.loadImage('bg:rocky-island', '/dist/assets/img/beach/rocky-island.png', 385, 80));
jobs.push(this.game.loadImage('bg:tree-left', '/dist/assets/img/beach/tree-left.png', 361, 540));
jobs.push(this.game.loadImage('bg:tree-right', '/dist/assets/img/beach/tree-right.png', 351, 540));
@ -55,41 +161,34 @@ export default class GameBackground {
jobs.push(this.game.loadImage('bg:plant-left', '/dist/assets/img/beach/plant-left.png', 148, 303));
jobs.push(this.game.loadImage('bg:plant-right', '/dist/assets/img/beach/plant-right.png', 170, 211));
jobs.push(this.game.loadImage('bg:cloud-001', '/dist/assets/img/beach/cloud-001.png', 132, 40));
jobs.push(this.game.loadImage('bg:cloud-002', '/dist/assets/img/beach/cloud-002.png', 115, 40));
jobs.push(this.game.loadImage('bg:cloud-003', '/dist/assets/img/beach/cloud-003.png', 105, 60));
jobs.push(this.game.loadImage('bg:cloud-004', '/dist/assets/img/beach/cloud-004.png', 118, 32));
jobs.push(this.game.loadImage('bg:cloud-005', '/dist/assets/img/beach/cloud-005.png', 141, 50));
jobs.push(this.game.loadImage('bg:cloud-006', '/dist/assets/img/beach/cloud-006.png', 119, 50));
await Promise.all(jobs);
}
buildSprites ( ) {
this.sprites.foreground = new NiceSprite(this.game, new NiceVector2d(CANVAS_WIDTH / 2, CANVAS_HEIGHT));
this.sprites.foreground = new NiceSprite(this.game, new NiceVector2d(this.game.playfield.width / 2, this.game.playfield.height));
this.sprites.foreground.image = this.game.images['bg:foreground-base'];
this.sprites.foreground.registration = new NiceVector2d(480, this.sprites.foreground.image.height);
this.sprites.waves1 = new NiceSprite(this.game, new NiceVector2d(CANVAS_WIDTH * 0.8, SKY_HEIGHT + 32));
this.sprites.waves1.image = this.game.images['bg:waves'];
this.sprites.waves1.registration = new NiceVector2d(
this.sprites.waves1.image.width / 2,
this.sprites.waves1.image.height / 2,
);
this.sprites.waves2 = new NiceSprite(this.game, new NiceVector2d(CANVAS_WIDTH * 0.3, SKY_HEIGHT + 48));
this.sprites.waves2.image = this.game.images['bg:waves'];
this.sprites.waves2.registration = new NiceVector2d(
this.sprites.waves2.image.width / 2,
this.sprites.waves2.image.height / 2,
);
this.sprites.treeLeft = new NiceSprite(this.game, new NiceVector2d(0, CANVAS_HEIGHT));
this.sprites.treeLeft = new NiceSprite(this.game, new NiceVector2d(0, this.game.playfield.height));
this.sprites.treeLeft.image = this.game.images['bg:tree-left'];
this.sprites.treeLeft.registration = new NiceVector2d(0, this.sprites.treeLeft.image.height);
this.sprites.treeRight = new NiceSprite(this.game, new NiceVector2d(CANVAS_WIDTH, 0));
this.sprites.treeRight = new NiceSprite(this.game, new NiceVector2d(this.game.playfield.width, 0));
this.sprites.treeRight.image = this.game.images['bg:tree-right'];
this.sprites.treeRight.registration = new NiceVector2d(this.sprites.treeRight.image.width, 0);
this.sprites.plantLeft = new NiceSprite(this.game, new NiceVector2d(0, CANVAS_HEIGHT));
this.sprites.plantLeft = new NiceSprite(this.game, new NiceVector2d(0, this.game.playfield.height));
this.sprites.plantLeft.image = this.game.images['bg:plant-left'];
this.sprites.plantLeft.registration = new NiceVector2d(0, this.sprites.plantLeft.image.height);
this.sprites.plantRight = new NiceSprite(this.game, new NiceVector2d(CANVAS_WIDTH, CANVAS_HEIGHT));
this.sprites.plantRight = new NiceSprite(this.game, new NiceVector2d(this.game.playfield.width, this.game.playfield.height));
this.sprites.plantRight.image = this.game.images['bg:plant-right'];
this.sprites.plantRight.registration = new NiceVector2d(
this.sprites.plantRight.image.width,
@ -208,28 +307,83 @@ export default class GameBackground {
this.tweens.plantRightOut.duration(PLANT_DURATION);
/*
* WAVES
* Environment: Day To Night transition
*/
this.tweens.waves1 = this.game
.createTween(
this.sprites.waves1,
{ rotation: (Math.PI * 0.1) },
{ rotation: -(Math.PI * 0.1) },
)
.duration(3000)
.loop()
.run();
this.tweens.environmentDayToNight = new NiceTween(
this.game,
this.applyEnvironmentTween.bind(this),
{
sun_y: 20,
sky_r0: 189, sky_g0: 213, sky_b0: 179, sky_a0: 1.0,
sky_r1: 240, sky_g1: 242, sky_b1: 220, sky_a1: 1.0,
beach_r0: 224, beach_g0: 164, beach_b0: 127, beach_a0: 1.0,
beach_r1: 246, beach_g1: 234, beach_b1: 182, beach_a1: 1.0,
},
{
sun_y: 140,
sky_r0: 1, sky_g0: 13, sky_b0: 66, sky_a0: 1.0,
sky_r1: 49, sky_g1: 56, sky_b1: 122, sky_a1: 1.0,
beach_r0: 47, beach_g0: 81, beach_b0: 152, beach_a0: 1.0,
beach_r1: 36, beach_g1: 51, beach_b1: 92, beach_a1: 1.0,
},
NiceEasing.Circular.InOut,
);
/*
* Environment: Night To Day transition
*/
this.tweens.environmentNightToDay = new NiceTween(
this.game,
this.applyEnvironmentTween.bind(this),
{
sun_y: 140,
sky_r0: 1, sky_g0: 13, sky_b0: 66, sky_a0: 1.0,
sky_r1: 49, sky_g1: 56, sky_b1: 122, sky_a1: 1.0,
beach_r0: 47, beach_g0: 81, beach_b0: 152, beach_a0: 1.0,
beach_r1: 36, beach_g1: 51, beach_b1: 92, beach_a1: 1.0,
},
{
sun_y: 20,
sky_r0: 189, sky_g0: 213, sky_b0: 179, sky_a0: 1.0,
sky_r1: 240, sky_g1: 242, sky_b1: 220, sky_a1: 1.0,
beach_r0: 224, beach_g0: 164, beach_b0: 127, beach_a0: 1.0,
beach_r1: 246, beach_g1: 234, beach_b1: 182, beach_a1: 1.0,
},
NiceEasing.Cubic.InOut,
);
}
applyEnvironmentTween (current) {
this.sun.position.y = current.sun_y;
this.skyGradient = this.game.gameDisplayCtx.createLinearGradient(0, 0, 0, SKY_HEIGHT);
this.skyGradient.addColorStop(0.0, `rgba(${current.sky_r0},${current.sky_g0},${current.sky_b0}, ${current.sky_a0})`);
this.skyGradient.addColorStop(1.0, `rgba(${current.sky_r1},${current.sky_g1},${current.sky_b1}, ${current.sky_a1})`);
this.beachGradient = this.game.gameDisplayCtx.createLinearGradient(0, SKY_HEIGHT, 0, this.game.playfield.height);
this.beachGradient.addColorStop(0.0, `rgba(${current.beach_r0},${current.beach_g0},${current.beach_b0}, ${current.beach_a0})`);
this.beachGradient.addColorStop(1.0, `rgba(${current.beach_r1},${current.beach_g1},${current.beach_b1}, ${current.beach_a1})`);
}
setMode (mode) {
this.mode = mode;
switch (this.mode) {
case 'story':
this.tweens.foregroundIn.run();
this.tweens.treeLeftIn.run();
this.tweens.treeRightIn.run();
this.tweens.plantLeftIn.run();
this.tweens.plantRightIn.run();
this.tweens.foregroundIn.delay(2000).run();
this.tweens.treeLeftIn.delay(2000).run();
this.tweens.treeRightIn.delay(2000).run();
this.tweens.plantLeftIn.delay(2000).run();
this.tweens.plantRightIn.delay(2000).run();
break;
case 'play':
@ -243,6 +397,21 @@ export default class GameBackground {
}
update (elapsed, now) {
if ((!this.nextWaveSpawnTime) || (now >= this.nextWaveSpawnTime)) {
this.nextWaveSpawnTime = now + 12000;
this.waves.push(new OceanWave(this.game));
}
this.waves = this.waves.filter((wave) => wave.update(elapsed, now));
if ((!this.nextBoatSpawnTime) || (now >= this.nextBoatSpawnTime)) {
this.nextBoatSpawnTime = now + 20000 + (Math.random() * 10000);
this.spawnBoat();
}
if ((!this.nextCloudSpawnTime) || (now >= this.nextCloudSpawnTime)) {
this.nextCloudSpawnTime = now + 30000 + (Math.random() + 50000);
this.spawnCloud();
}
for (const tweenKey in this.tweens) {
const tween = this.tweens[tweenKey];
if (tween.state !== 'running') {
@ -252,35 +421,112 @@ export default class GameBackground {
}
}
spawnBoat ( ) {
function randomBoatY ( ) {
return SKY_HEIGHT + 20 + (Math.random() * 40);
}
const { playfield } = this.game;
if (Math.random() > 0.5) {
const boat = new NiceSprite(this.game, { x: 0, y: randomBoatY() });
boat.image = this.game.images['bg:sailboat'];
boat.registration = new NiceVector2d(boat.image.width / 2, boat.image.height - 10);
this.boats.push(boat);
this.game
.createTween(
boat.position,
{ x: -boat.image.width },
{ x: playfield.width + boat.image.width },
NiceEasing.Linear.None,
)
.duration(30000 + (Math.random() * 10000))
.run()
;
} else {
const boat = new NiceSprite(this.game, { x: playfield.width, y: randomBoatY() });
boat.image = this.game.images['bg:sailboat'];
boat.registration = new NiceVector2d(boat.image.width / 2, boat.image.height - 10);
boat.mirror = true;
this.boats.push(boat);
this.game
.createTween(
boat.position,
{ x: this.game.playfield.width + boat.image.width },
{ x: -boat.image.width },
NiceEasing.Linear.None,
)
.duration(30000 + (Math.random() * 10000))
.run()
;
}
this.boats = this.boats.sort((a, b) => a.position.y - b.position.y);
}
spawnCloud ( ) {
function randomCloudY ( ) {
return 20 + (Math.random() * (SKY_HEIGHT - 50));
}
const image = this.game.images['bg:cloud-001'];
if (Math.random() > 0.5) {
const cloud = new NiceSprite(this.game, new NiceVector2d(-image.width / 2, randomCloudY()));
this.clouds.push(cloud);
cloud.image = image;
cloud.registration = new NiceVector2d(image.width / 2, image.height / 2);
this.game
.createTween(
cloud.position,
{ x: -image.width / 2 },
{ x: this.game.playfield.width + image.width / 2 },
NiceEasing.Linear.None,
)
.duration(60000 + (Math.random() * 20000))
.run()
;
} else {
const cloud = new NiceSprite(this.game, new NiceVector2d(-image.width / 2, randomCloudY()));
this.clouds.push(cloud);
cloud.image = image;
cloud.registration = new NiceVector2d(image.width / 2, image.height / 2);
this.game
.createTween(
cloud.position,
{ x: this.game.playfield.width + image.width / 2 },
{ x: -image.width / 2 },
NiceEasing.Linear.None,
)
.duration(60000 + (Math.random() * 20000))
.run()
;
}
}
render (ctx) {
/*
* Gradient Fills
*/
if (!this.skyGradient) {
this.skyGradient = ctx.createLinearGradient(0, 0, 0, SKY_HEIGHT);
this.skyGradient.addColorStop(0.0, '#bdd5b3');
this.skyGradient.addColorStop(1.0, '#f0f2dc');
}
ctx.fillStyle = this.skyGradient;
ctx.fillRect(0, 0, CANVAS_WIDTH, SKY_HEIGHT);
if (!this.beachGradient) {
this.beachGradient = ctx.createLinearGradient(0, SKY_HEIGHT, 0, CANVAS_HEIGHT);
this.beachGradient.addColorStop(0.0, '#e0a47f');
this.beachGradient.addColorStop(1.0, '#f6eab6');
}
ctx.fillRect(0, 0, this.game.playfield.width, SKY_HEIGHT);
ctx.fillStyle = this.beachGradient;
ctx.fillRect(0, SKY_HEIGHT, CANVAS_WIDTH, CANVAS_HEIGHT - SKY_HEIGHT);
ctx.fillRect(0, SKY_HEIGHT, this.game.playfield.width, this.game.playfield.height - SKY_HEIGHT);
this.drawSun(ctx);
this.waves.forEach((wave) => wave.render(ctx));
if (!this.oceanGradient) {
this.oceanGradient = ctx.createLinearGradient(0, SKY_HEIGHT, 0, SKY_HEIGHT + WATER_HEIGHT);
this.oceanGradient.addColorStop(0.0, '#72b5ae');
this.oceanGradient.addColorStop(1.0, '#edeec800');
}
ctx.fillStyle = this.oceanGradient;
ctx.fillRect(0, SKY_HEIGHT, CANVAS_WIDTH, WATER_HEIGHT);
ctx.fillRect(0, SKY_HEIGHT, this.game.playfield.width, WATER_HEIGHT);
this.clouds.forEach((cloud) => cloud.render(ctx));
this.game.images['bg:rocky-island'].draw(ctx, 0, SKY_HEIGHT - 70);
this.boats.forEach((boat) => boat.render(ctx));
/*
* Image/sprite overlays
@ -291,6 +537,20 @@ export default class GameBackground {
}
}
setEnvironmentMode (mode) {
const ctx = this.game.gameDisplayCtx;
switch (mode) {
case 'day':
this.tweens.environmentNightToDay.duration(2000).run();
this.oceanGradient = ctx.createLinearGradient(0, SKY_HEIGHT, 0, SKY_HEIGHT + WATER_HEIGHT);
this.oceanGradient.addColorStop(0.0, '#72b5aeff');
this.oceanGradient.addColorStop(0.75, '#72b5ae40');
this.oceanGradient.addColorStop(1.0, '#edeec800');
break;
}
}
drawSun (ctx) {
ctx.beginPath();
ctx.ellipse(
@ -303,18 +563,16 @@ export default class GameBackground {
Math.PI * 2,
);
if (!this.sun.gradient) {
this.sun.gradient = ctx.createRadialGradient(
this.sun.position.x,
this.sun.position.y,
32,
this.sun.position.x + 16,
this.sun.position.y - 16,
8
);
this.sun.gradient.addColorStop(0.0, '#e0a579');
this.sun.gradient.addColorStop(1.0, '#eabf8a');
}
this.sun.gradient = ctx.createRadialGradient(
this.sun.position.x,
this.sun.position.y,
32,
this.sun.position.x + 16,
this.sun.position.y - 16,
4
);
this.sun.gradient.addColorStop(0.0, '#e0a579');
this.sun.gradient.addColorStop(1.0, '#eabf8a');
ctx.fillStyle = this.sun.gradient;
ctx.lineWidth = 3.0;

11
game/js/lib/game-enemies.js

@ -6,7 +6,7 @@
const DTP_COMPONENT_NAME = 'game-enemies';
import { NiceLog, NiceImage, NiceColor, NiceEasing } from 'dtp-nice-game';
import { NiceLog, NiceImage, NiceColor, NiceEasing, NiceVector2d } from 'dtp-nice-game';
import GameEnemyGroyper from './game-enemy-groyper.js';
import GameEnemyBeardson from './game-enemy-beardson.js';
@ -63,7 +63,9 @@ export default class GameEnemies {
return false;
}
this.game.audio.playSound(this.getRandomImpactSound());
this.game.audio.playSound(this.getRandomTexQuote());
if (Math.random() > 0.6) {
this.game.audio.playSound(this.getRandomTexQuote());
}
return true;
});
for (const enemy of eliminatedEnemies) {
@ -129,10 +131,7 @@ export default class GameEnemies {
}
getRandomSpawnPoint (padding = 0) {
return {
x: this.game.getRandomPlayfieldX(padding),
y: 32,
};
return new NiceVector2d(this.game.getRandomPlayfieldX(padding), 32);
}
removeEnemy (enemy) {

2
game/js/lib/game-player.js

@ -22,7 +22,7 @@ export default class GamePlayer extends NiceSprite {
constructor (game) {
super(game, new NiceVector2d(CANVAS_WIDTH / 2, CANVAS_HEIGHT - 20));
this.game = game;
this.moveSpeed = 4;
this.moveSpeed = 12;
this.registration = new NiceVector2d(CELL_WIDTH / 2, CELL_HEIGHT);
this.margin = CELL_WIDTH / 2;
}

162
src/images/beach-cloud-001.svg

@ -0,0 +1,162 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="329.77643mm"
height="100.08672mm"
viewBox="0 0 329.77643 100.08672"
version="1.1"
id="svg1366"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="beach-cloud-001.svg">
<defs
id="defs1360" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="1064.6281"
inkscape:cy="-513.71689"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1051"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata1363">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(313.05487,87.174305)">
<g
id="g94"
transform="matrix(0.04014505,0,0,-0.04014505,-364.00376,567.19001)">
<path
d="m 8494.66,15116.7 c -31.92,242.3 -418.96,433.7 -892.04,433.7 -91.87,0 -180.48,-7.2 -263.91,-20.6 -72.34,39.6 -155.4,62.2 -243.74,62.2 -77.11,0 -150.16,-17.2 -215.61,-48 0.1,3.9 0.31,7.8 0.31,11.8 0,260.3 -217.47,471.4 -485.73,471.4 -216.87,0 -400.48,-138 -462.9,-328.4 -159.01,103.4 -348.62,163.7 -552.4,163.7 -37.32,0 -74.13,-2.2 -110.42,-6.1 -44.94,252.1 -265.13,443.6 -530.19,443.6 -218.44,0 -406.38,-130.1 -490.93,-317 -58.1,28.3 -122.86,44.2 -191.21,44.2 -249.91,0 -452.5,-211.1 -452.5,-471.4 0,-25.3 1.96,-50.1 5.63,-74.3 -1.87,0.1 -3.74,0.2 -5.63,0.2 -126.54,0 -244.32,-37.2 -343.3,-101 -86.48,47.3 -185.7,74.2 -291.22,74.2 -287.54,0 -528.27,-199.7 -591.42,-468 -154.17,-0.9 -278.79,-92.3 -278.79,-205 0,-4.9 0.31,-9.7 0.78,-14.5 -502.27,-79.2 -830.32,-209.9 -830.32,-357.6 0,-241.6 876.66,-437.4 1958.06,-437.4 363.31,0 703.43,22.1 995.03,60.7 66.26,-134 204.28,-226.2 363.89,-226.2 125.25,0 237.21,56.8 311.64,145.9 143.15,-77.1 306.9,-120.9 480.9,-120.9 316.74,0 599.54,145.1 785.74,372.4 260.07,-19.5 539.95,-30.1 831.64,-30.1 1373.87,0 2487.61,234.7 2487.61,524.2 0,170.9 -388.24,322.7 -988.97,418.3"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path96"
inkscape:connector-curvature="0" />
</g>
<g
id="g98"
transform="matrix(0.03654425,0,0,-0.03654425,-364.00376,567.19001)">
<path
d="m 10418.2,16146.6 c 0,-318 -1223.59,-575.7 -2732.87,-575.7 -320.4,0 -627.91,11.6 -913.52,32.9 -204.61,-249.6 -515.17,-409 -863.19,-409 -191.2,0 -370.98,48.2 -528.32,132.9 -81.66,-98 -204.75,-160.4 -342.31,-160.4 -175.4,0 -326.9,101.3 -399.79,248.5 -320.27,-42.3 -693.9,-66.6 -1093.03,-66.6 -1187.96,0 -2151,215.1 -2151,480.5 0,1.1 0,2.1 0.13,3.2 261.31,-50.9 574.53,-80.5 911.13,-80.5 485.29,0 921.73,61.5 1224.21,159.5 90.68,-56.2 197.57,-88.6 312.16,-88.6 235.28,0 438.7,136.8 535.09,335.2 0,-2.7 -0.26,-5.2 -0.26,-7.7 0,-330 267.54,-597.5 597.5,-597.5 202.22,0 380.81,100.6 488.89,254.2 139.28,-208.4 376.69,-345.9 646.36,-345.9 313.76,0 583.96,186.3 706.51,454.3 51.25,-107.4 160.8,-181.7 287.73,-181.7 172.75,0 313.36,137.6 318.4,309.1 316.68,-135.5 762.54,-220 1256.48,-220 758.44,0 1403.6,199.1 1641.7,476.7 63.8,-48.9 98,-100.2 98,-153.4"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path100"
inkscape:connector-curvature="0" />
</g>
<g
id="g102"
transform="matrix(0.04014505,0,0,-0.04014505,-364.00376,567.19001)">
<path
d="m 9394.54,14838 c -216.79,-252.8 -804.05,-433.9 -1494.46,-433.9 -449.63,0 -855.5,76.8 -1143.78,200.2 -4.58,-156.1 -132.58,-281.3 -289.84,-281.3 -115.54,0 -215.27,67.5 -261.92,165.3 -111.56,-243.9 -357.52,-413.5 -643.14,-413.5 -245.49,0 -461.6,125.1 -588.39,314.9 -98.38,-139.9 -260.95,-231.5 -445.04,-231.5 -300.36,0 -543.9,243.6 -543.9,543.9 0,2.3 0.24,4.6 0.24,7 -87.75,-180.5 -272.92,-305 -487.1,-305 -104.31,0 -201.61,29.5 -284.16,80.6 -275.35,-89.2 -672.64,-145.2 -1114.41,-145.2 -306.4,0 -591.53,27 -829.4,73.3 4.23,146.5 331.18,275.9 830.24,354.6 -0.48,4.8 -0.84,9.7 -0.84,14.5 0,112.8 124.62,204.1 278.84,205 19.22,81.9 55.12,157.5 103.83,222.9 110.72,148.8 287.79,245.1 487.58,245.1 86.06,0 167.89,-17.9 242.1,-50.2 16.68,-7.2 33.12,-15.3 49.08,-24 91.73,59.1 199.67,95.5 315.7,100.3 9.19,0.5 18.38,0.7 27.68,0.7 1.81,0 3.74,-0.1 5.56,-0.1 -3.62,24.2 -5.56,49 -5.56,74.2 0,260.4 202.58,471.4 452.41,471.4 25.63,0 50.65,-2.2 74.94,-6.5 0,0 0.13,0.1 0.24,0 40.85,-7.2 79.78,-20 116.04,-37.6 6.64,14.6 13.89,28.9 21.75,42.6 92.47,163.8 267.85,274.3 469.21,274.3 265.07,0 485.3,-191.5 530.25,-443.6 36.27,3.9 73.01,6.1 110.36,6.1 203.78,0 393.43,-60.2 552.37,-163.6 62.49,190.4 246.08,328.3 462.93,328.3 203.53,0 377.95,-121.6 450.11,-294.1 23.08,-54.7 35.66,-114.5 35.66,-177.3 0,-4 -0.25,-7.8 -0.36,-11.7 65.5,30.7 138.51,48 215.62,48 88.36,0 171.39,-22.6 243.79,-62.3 83.4,13.4 172,20.6 263.86,20.6 473.08,0 860.1,-191.4 892.01,-433.6 430.9,-68.6 752.44,-166.2 899.9,-278.8"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path104"
inkscape:connector-curvature="0" />
</g>
<g
id="g106"
transform="matrix(0.04014505,0,0,-0.04014505,-364.00376,567.19001)">
<path
d="m 9394.54,14838 c -40.78,-47.4 -94.47,-92.4 -159.32,-134.1 -115.56,39.9 -250.1,62.9 -393.68,62.9 -164.15,0 -525.19,-6.2 -577.28,26.6 70.59,63.8 111.93,141.3 111.93,224.8 0,219 -284.17,396.6 -634.56,396.6 -350.4,0 -634.56,-177.6 -634.56,-396.6 0,-25.9 3.99,-51.1 11.6,-75.5 -87.39,-19.9 -443.22,387.1 -689.68,430.8 34.45,45.5 54.76,102.1 54.76,163.3 0,149.8 -121.35,271.2 -271.11,271.2 -149.76,0 -271.1,-121.4 -271.1,-271.2 0,-94.7 48.58,-178 122.19,-226.5 -45.2,-25.8 -86.3,-58 -122.08,-95.2 -127.52,92.7 -284.4,147.3 -454.22,147.3 -30.82,0 -61.29,-1.8 -91.14,-5.3 -83.76,72.5 -219.61,129.2 -383.27,158.3 43.88,60.7 69.74,135.3 69.74,215.9 0,203.8 -165.11,368.9 -368.89,368.9 -203.79,0 -368.89,-165.1 -368.89,-368.9 0,-2.5 0,-5.1 0.13,-7.6 -257.22,-43.1 -453.14,-266.9 -453.14,-536.3 0,-86.7 20.3,-168.7 56.44,-241.5 -24.29,3.6 -49.19,5.6 -74.57,5.6 -198.95,0 -370.95,-117.3 -451.93,-287.2 -78.69,104.5 -215.02,173.7 -369.98,173.7 -171.87,0 -320.66,-85 -393.55,-209 -162.69,28.5 -344.84,44.5 -537.14,44.5 -232.07,0 -449.51,-23.2 -635.77,-63.7 145.28,63 356.81,117 614.01,157.6 -0.48,4.8 -0.84,9.7 -0.84,14.5 0,112.8 124.62,204.1 278.84,205 19.22,81.9 55.12,157.5 103.83,222.9 110.72,148.8 287.79,245.1 487.58,245.1 86.06,0 167.89,-17.9 242.1,-50.2 16.68,-7.2 33.12,-15.3 49.08,-24 91.73,59.1 199.67,95.5 315.7,100.3 9.19,0.5 18.38,0.7 27.68,0.7 1.81,0 3.74,-0.1 5.56,-0.1 -3.62,24.2 -5.56,49 -5.56,74.2 0,260.4 202.58,471.4 452.41,471.4 25.63,0 50.65,-2.2 74.94,-6.5 0,0 0.13,0.1 0.24,0 40.85,-7.2 79.78,-20 116.04,-37.6 6.64,14.6 13.89,28.9 21.75,42.6 92.47,163.8 267.85,274.3 469.21,274.3 265.07,0 485.3,-191.5 530.25,-443.6 36.27,3.9 73.01,6.1 110.36,6.1 203.78,0 393.43,-60.2 552.37,-163.6 62.49,190.4 246.08,328.3 462.93,328.3 203.53,0 377.95,-121.6 450.11,-294.1 23.08,-54.7 35.66,-114.5 35.66,-177.3 0,-4 -0.25,-7.8 -0.36,-11.7 65.5,30.7 138.51,48 215.62,48 88.36,0 171.39,-22.6 243.79,-62.3 83.4,13.4 172,20.6 263.86,20.6 473.08,0 860.1,-191.4 892.01,-433.6 430.9,-68.6 752.44,-166.2 899.9,-278.8"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path108"
inkscape:connector-curvature="0" />
</g>
<path
d="m 6.7439567,-23.099329 c -6.87540997,4.405442 -16.8980897,7.910761 -28.7650197,9.972712 -5.50222,0.959601 -11.40735,1.60991 -17.57971,1.895411 -2.3776,0.111027 -4.7988,0.170506 -7.25411,0.170506 -16.89573,0 -32.24815,-2.704328 -43.63647,-7.113733 -0.77641,-0.301363 -1.53814,-0.610656 -2.28084,-0.927881 -0.0821,2.767775 -1.12574,5.285737 -2.80901,7.240625 -1.64005,1.9112696 -3.88678,3.2792976 -6.443997,3.8106476 -0.37829,0.0793 -0.76649,0.138784 -1.15469,0.178438 -0.40248,0.04758 -0.81526,0.06741 -1.22766,0.06741 -3.58581,0 -6.79333,-1.621806 -8.93301,-4.1794186 -0.62612,-0.745477 -1.15985,-1.570257 -1.58175,-2.458482 -0.97507,2.133327 -2.20788,4.123904 -3.65402,5.9360426 -5.20167,6.499114 -13.19808,10.662672 -22.16479,10.662672 -9.85534,0 -18.53101,-5.020062 -23.62086,-12.6373866 -1.81491,2.5734756 -4.17307,4.7424896 -6.90516,6.3365356 -3.2218,1.875583 -6.96266,2.954144 -10.96126,2.954144 -3.03701,0 -5.9293,-0.622551 -8.55908,-1.740762 -7.80251,-3.330848 -13.2758,-11.0750646 -13.2758,-20.0961046 0,-0.0912 0.01,-0.182403 0.01,-0.281535 -3.52237,7.25252 -10.9561,12.248788 -19.55444,12.248788 -0.11183,0 -0.22325,0 -0.33031,-0.004 -1.60595,-0.01982 -3.16312,-0.218091 -4.6624,-0.578935 -2.30026,-0.539279 -4.45976,-1.447332 -6.41505,-2.652779 -0.66458,0.214125 -1.34423,0.424286 -2.04291,0.630481 -6.07483,1.784382 -13.44076,3.192061 -21.6509,4.0842516 -6.55066,0.717716 -13.64457,1.110281 -21.0442,1.110281 -12.30034,0 -23.74655,-1.078561 -33.29617,-2.9382816 0.0777,-2.847073 3.20712,-5.535544 8.67605,-7.910754 0,0 0,0 0.005,0 7.47736,-1.625769 16.20615,-2.557613 25.523,-2.557613 7.71964,0 15.03203,0.642377 21.56327,1.788348 2.92599,-4.980408 8.8993,-8.390559 15.79891,-8.390559 6.22075,0 11.69405,2.775704 14.8528,6.970985 3.25114,-6.820305 10.15591,-11.527108 18.1428,-11.527108 1.01869,0 2.01873,0.07534 2.9938,0.222057 -1.4509,-2.918455 -2.26616,-6.213612 -2.26616,-9.69514 0,-10.813354 7.86555,-19.794742 18.19157,-21.527575 -0.005,-0.103097 -0.005,-0.206195 -0.005,-0.305327 0,-8.184364 6.62798,-14.810369 14.80918,-14.810369 8.18079,0 14.80918,6.626005 14.80918,14.810369 0,3.235679 -1.03851,6.229475 -2.7999,8.664163 6.5701,1.169763 12.02396,3.445841 15.38653,6.356366 1.19831,-0.138787 2.4216,-0.214127 3.65877,-0.214127 6.81714,0 13.11521,2.192808 18.2344,5.916218 1.43663,-1.494917 3.08619,-2.783636 4.90071,-3.822544 -2.95454,-1.946957 -4.90507,-5.289701 -4.90507,-9.092414 0,-6.01535 4.87136,-10.884729 10.88354,-10.884729 6.01178,0 10.88354,4.869379 10.88354,10.884729 0,2.458479 -0.81527,4.730594 -2.19836,6.554629 9.894197,1.756624 20.590177,3.842366 27.687257,17.296606 -0.30572,-0.979427 -0.46592,-1.994543 -0.46592,-3.03345 0,-8.791054 11.40775,-15.920649 25.47462,-15.920649 14.06649,0 25.47424,7.129595 25.47424,15.920649 0,3.354638 -1.65949,6.463426 -4.49307,9.025006 11.28601,-6.181889 16.58482,1.070631 23.1743497,1.070631 5.76434,0 11.16547,0.919946 15.80446,2.521924"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03965292"
id="path112"
inkscape:connector-curvature="0" />
<path
d="m -205.81962,-6.5113174 c 0,0 -13.74951,12.453056 -38.17197,4.205113 0,0 22.96795,13.5854704 38.17197,-4.205113"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path114"
inkscape:connector-curvature="0" />
<path
d="m -161.99827,-1.9287344 c 0,0 0.94192,7.22489 20.20888,6.25475 0,0 -20.20888,8.1950274 -20.20888,-6.25475"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path116"
inkscape:connector-curvature="0" />
<g
id="g118"
transform="matrix(0.03619853,0,0,-0.03619853,-364.00376,567.19001)">
<path
d="m 5093.74,16300 c 0,0 166.47,-697 1045.01,-234.6 0,0 -703.19,-268.1 -1045.01,234.6"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path120"
inkscape:connector-curvature="0" />
</g>
<g
id="g122"
transform="matrix(0.0364169,0,0,-0.0364169,-364.00376,567.19001)">
<path
d="m 6981.88,16105.4 c 0,0 632.43,-272.3 786.14,194.6 0,0 -186.54,-282.6 -786.14,-194.6"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path124"
inkscape:connector-curvature="0" />
</g>
<g
id="g126"
transform="matrix(0.03587115,0,0,-0.03587115,-364.00376,567.19001)">
<path
d="m 3345.65,16300 c 0,0 191.64,-274.9 631.26,-49.5 0,0 -456.55,-125.2 -631.26,49.5"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path128"
inkscape:connector-curvature="0" />
</g>
<g
id="g130"
transform="matrix(0.03806366,0,0,-0.03806366,-364.00376,567.19001)">
<path
d="m 4442.6,15756.3 c 0,0 577.98,35.7 577.98,543.7 0,0 155.03,-664.8 -577.98,-543.7"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path132"
inkscape:connector-curvature="0" />
</g>
<g
id="g134"
transform="matrix(0.03750592,0,0,-0.03750592,-364.00376,567.19001)">
<path
d="m 5041.1,16300 c 0,0 399.29,-181.4 580.69,0 0,0 -151.76,-238.3 -580.69,-108.9 v 108.9"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path136"
inkscape:connector-curvature="0" />
</g>
<g
id="g138"
transform="matrix(0.03654425,0,0,-0.03654425,-364.00376,567.19001)">
<path
d="m 8643.85,16300 c 0,0 78.06,-490.7 891.02,-384.4 0,0 -14.78,-95.8 0,-110.6 14.79,-14.7 -298.24,-58.4 -311.23,-71.4 -12.97,-12.9 -628.48,52.2 -579.79,566.4"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path140"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

211
src/images/beach-cloud-002.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 20 KiB

192
src/images/beach-cloud-003.svg

@ -0,0 +1,192 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="324.05188mm"
height="184.70772mm"
viewBox="0 0 324.05188 184.70772"
version="1.1"
id="svg2754"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="beach-cloud-003.svg">
<defs
id="defs2748" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="-606.18993"
inkscape:cy="377.62537"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1051"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata2751">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-129.01573,-64.038998)">
<g
id="g316"
transform="matrix(0.07130168,0,0,-0.07130168,-709.14978,739.81707)">
<path
d="m 15766.4,7658.88 c 6.4,15.8 9.7,32.36 9.7,49.44 0,108.58 -136.3,196.6 -304.5,196.6 -168.3,0 -304.6,-88.02 -304.6,-196.6 0,-29.3 10,-57.08 27.8,-82.06 -14.2,-3.95 -28,-8.11 -41.4,-12.49 -30.1,60.66 -107.6,109.06 -207,129.81 10.8,11.2 21.1,22.73 30.8,34.54 115.7,67.87 189.8,172.05 189.8,288.95 0,14.37 -1.3,28.53 -3.4,42.46 21.9,-1.45 44.1,-2.23 66.5,-2.23 343.8,0 628.9,174.97 682.7,404.25 224,49.28 387.2,201.69 387.2,382.16 0,220.35 -243.3,398.98 -543.4,398.98 -67.3,0 -131.8,-9.04 -191.3,-25.48 0,0.79 0.1,1.57 0.1,2.35 0,114.97 -146.2,208.17 -326.6,208.17 -180.3,0 -326.6,-93.2 -326.6,-208.17 0,-12.88 2,-25.47 5.5,-37.71 -53.3,30.57 -124.6,49.28 -203,49.28 -165.1,0 -298.9,-82.84 -298.9,-185.04 0,-13.13 2.2,-25.93 6.4,-38.29 -22.4,2.35 -45.3,3.6 -68.6,3.6 -256.7,0 -464.8,-147.56 -464.8,-329.6 0,-57.14 20.5,-110.88 56.6,-157.73 -202.7,-103.26 -336.5,-281.5 -336.5,-484.12 0,-12.46 0.5,-24.83 1.5,-37.11 -299.5,-45.98 -519.5,-198.27 -519.5,-379.09 0,-0.38 0,-0.76 0,-1.15 -8.6,0.19 -17.3,0.32 -26,0.32 -344,0 -622.9,-150 -622.9,-335.03 0,-19.65 3.1,-38.9 9.2,-57.63 -9.4,0.1 -18.7,0.16 -28.1,0.16 -368.9,0 -667.9,-75.08 -667.9,-167.69 0,-92.61 299,-167.69 667.9,-167.69 212.6,0 401.9,24.95 524.2,63.81 38.1,-3.91 77.4,-5.99 117.6,-5.99 226.7,0 425,65.1 534,162.41 10.6,-6.54 21.5,-12.92 32.9,-19.15 -82.6,-17.83 -142,-67.45 -142,-125.91 0,-73.45 93.8,-132.99 209.5,-132.99 115.7,0 209.5,59.54 209.5,132.99 0,8.84 -1.4,17.46 -4,25.81 117.7,-27.59 250.7,-43.16 391.5,-43.16 292.9,0 552,67.23 709.8,170.29 126.6,-75.33 327.6,-124.03 553.9,-124.03 383.2,0 693.9,139.65 693.9,311.9 0,139.95 -205.1,258.36 -487.5,297.86"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path318"
inkscape:connector-curvature="0" />
</g>
<g
id="g320"
transform="matrix(0.05882111,0,0,-0.05882111,-709.14978,739.81707)">
<path
d="m 16040.4,9890.61 c 143.4,0 259.6,94.14 259.6,210.29 0,116.1 -116.2,210.3 -259.6,210.3 -143.4,0 -259.6,-94.2 -259.6,-210.3 0,-116.15 116.2,-210.29 259.6,-210.29"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path322"
inkscape:connector-curvature="0" />
</g>
<g
id="g324"
transform="matrix(0.06021952,0,0,-0.06021952,-709.14978,739.81707)">
<path
d="m 16300,8930.98 c -17.2,-0.73 -34.3,-2.1 -50.8,-3.79 8.5,4.83 16.9,9.67 25.2,14.58 8.2,-3.79 16.8,-7.41 25.6,-10.79"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path326"
inkscape:connector-curvature="0" />
</g>
<g
id="g328"
transform="matrix(0.07087835,0,0,-0.07087835,-709.14978,739.81707)">
<path
d="m 16300,7287.03 c -103.7,-114.8 -354.3,-195.79 -647,-195.79 -227.6,0 -429.8,49.01 -557.2,124.8 -158.8,-103.72 -419.4,-171.35 -714.1,-171.35 -141.6,0 -275.4,15.67 -393.8,43.47 2.6,-8.43 4,-17.12 4,-26.02 0,-73.87 -94.4,-133.77 -210.8,-133.77 -116.3,0 -210.8,59.9 -210.8,133.77 0,58.81 59.9,108.71 143,126.65 -11.5,6.3 -22.6,12.73 -33.2,19.31 -109.6,-97.9 -309.1,-163.41 -537.1,-163.41 -40.4,0 -80,2.12 -118.3,6.02 -123.1,-39.09 -313.5,-64.15 -527.4,-64.15 -371.1,0 -671.8,75.52 -671.8,168.68 0,9.52 3.1,18.9 9.2,28.01 121.5,-47.72 287.7,-77.16 470.9,-77.16 290.3,0 537.9,73.94 632.9,177.66 43.4,-8.63 89.5,-13.36 137.2,-13.36 196.8,0 365.9,78.87 439.6,191.55 16,4.93 31.7,10 47.4,15.27 -5,-9.79 -7.7,-20.06 -7.7,-30.53 0,-78.45 147,-142.05 328.6,-142.05 145.4,0 268.7,40.86 312,97.48 129.4,-59.35 330.9,-97.48 557.4,-97.48 216.4,0 410,34.84 539.7,89.75 126,-103.24 349.2,-171.91 603.5,-171.91 150,0 289.1,23.83 403.8,64.56"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path330"
inkscape:connector-curvature="0" />
</g>
<g
id="g332"
transform="matrix(0.05882111,0,0,-0.05882111,-709.14978,739.81707)">
<path
d="m 16040.4,9890.61 c 143.4,0 259.6,94.14 259.6,210.29 0,116.1 -116.2,210.3 -259.6,210.3 -143.4,0 -259.6,-94.2 -259.6,-210.3 0,-116.15 116.2,-210.29 259.6,-210.29"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path334"
inkscape:connector-curvature="0" />
</g>
<g
id="g336"
transform="matrix(0.07130168,0,0,-0.07130168,-709.14978,739.81707)">
<path
d="m 15766.4,7658.88 c 6.4,15.8 9.7,32.36 9.7,49.44 0,108.58 -136.3,196.6 -304.5,196.6 -168.3,0 -304.6,-88.02 -304.6,-196.6 0,-29.3 10,-57.08 27.8,-82.06 -14.2,-3.95 -28,-8.11 -41.4,-12.49 -30.1,60.66 -107.6,109.06 -207,129.81 10.8,11.2 21.1,22.73 30.8,34.54 115.7,67.87 189.8,172.05 189.8,288.95 0,14.37 -1.3,28.53 -3.4,42.46 21.9,-1.45 44.1,-2.23 66.5,-2.23 343.8,0 628.9,174.97 682.7,404.25 224,49.28 387.2,201.69 387.2,382.16 0,220.35 -243.3,398.98 -543.4,398.98 -67.3,0 -131.8,-9.04 -191.3,-25.48 0,0.79 0.1,1.57 0.1,2.35 0,114.97 -146.2,208.17 -326.6,208.17 -180.3,0 -326.6,-93.2 -326.6,-208.17 0,-12.88 2,-25.47 5.5,-37.71 -53.3,30.57 -124.6,49.28 -203,49.28 -165.1,0 -298.9,-82.84 -298.9,-185.04 0,-13.13 2.2,-25.93 6.4,-38.29 -22.4,2.35 -45.3,3.6 -68.6,3.6 -256.7,0 -464.8,-147.56 -464.8,-329.6 0,-57.14 20.5,-110.88 56.6,-157.73 -202.7,-103.26 -336.5,-281.5 -336.5,-484.12 0,-12.46 0.5,-24.83 1.5,-37.11 -299.5,-45.98 -519.5,-198.27 -519.5,-379.09 0,-0.38 0,-0.76 0,-1.15 -8.6,0.19 -17.3,0.32 -26,0.32 -344,0 -622.9,-150 -622.9,-335.03 0,-19.65 3.1,-38.9 9.2,-57.63 -9.4,0.1 -18.7,0.16 -28.1,0.16 -331.1,0 -605.9,-60.49 -658.7,-139.84 v 0 c 0,-0.01 0,-0.02 0,-0.02 -3,-4.46 -5.3,-8.98 -6.8,-13.55 0,-0.1 -0.1,-0.21 -0.1,-0.31 -0.7,-2.22 -1.3,-4.44 -1.7,-6.68 0,-0.17 0,-0.34 0,-0.51 -0.4,-2.25 -0.6,-4.51 -0.6,-6.78 0,-9.35 3.1,-18.53 8.9,-27.46 12.9,8.34 25.9,16.69 38.8,25.04 91.1,54.33 199.8,87.63 303.6,105.94 110,19.41 226.1,24.26 337.4,13.97 27.3,-2.52 54.8,-5.91 82.3,-10.11 40.4,53.15 86.1,103.1 133.1,149.78 31.3,31.11 65,60.14 102.1,84.26 60.8,39.56 121.4,83.85 190.2,109.46 118.3,44.1 245.3,76.01 372.5,69.2 23.7,48.23 57,91.68 98.2,126.74 85.8,72.93 181,91.19 290.1,91.19 15.1,0 30.4,-1.77 45.8,-4.73 -12.8,45.9 -17.5,94.13 -13,142.02 9.5,100.98 59.2,195.84 136.5,261.48 75.1,63.86 157.4,85.79 249.9,90.26 9.1,12.97 19.1,25.38 29.7,37.19 -8.8,39.64 -11.7,80.66 -7.8,121.44 9.5,100.98 59.2,195.84 136.5,261.47 67.2,57.17 140.2,80.66 221.2,88.19 15.2,18.86 32.1,36.4 50.7,52.2 84.2,71.56 177.5,90.43 284,91.12 22,37.34 50.2,71.11 83.5,99.42 85.8,72.94 181,91.2 290,91.2 51.9,0 105.8,-18.81 154,-47.13 49.7,14.9 102.5,19.9 159.1,19.9 96.9,0 200.9,-65.25 261.5,-136.46 67.8,-79.78 101,-185.76 91.1,-290.03 -9.5,-100.97 -59.2,-195.83 -136.4,-261.47 -61.9,-52.63 -128.8,-76.7 -202.1,-86.08 -22.5,-39.69 -51.9,-75.55 -86.9,-105.35 -85.9,-72.93 -181,-91.19 -290,-91.19 -62.9,0 -128.8,27.56 -183.8,66.32 -43.8,-20.26 -90,-30.67 -139.1,-35.23 -4.5,-5.54 -9,-11.01 -13.8,-16.32 8.8,-39.63 11.6,-80.66 7.8,-121.44 -9.5,-100.98 -59.2,-195.84 -136.5,-261.47 -34,-28.93 -69.5,-49.19 -106.8,-63.19 9.4,-40.57 12.4,-82.64 8.5,-124.46 -1.1,-11.56 -2.8,-23.04 -4.9,-34.4 16.4,1.03 33.2,1.55 50.3,1.55 95.9,0 198.7,-63.86 259.5,-134.18 67.5,31.93 144.5,43.82 218.6,40.97 93.8,-3.61 184.2,-31.27 266.7,-74.87 11.5,12.78 23.8,24.87 37,36.07 79.8,67.81 185.8,101 290,91.19 49.7,-4.94 96.2,-18.55 139.6,-40.6 1.1,-0.08 2.2,-0.14 3.3,-0.24 33,-7.53 65.9,-15.07 98.9,-22.61 102.3,-26.14 195.7,-68.01 288.2,-116.71 -12.7,133.99 -213.5,246.09 -486.8,284.31"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path338"
inkscape:connector-curvature="0" />
</g>
<g
id="g340"
transform="matrix(0.05881511,0,0,-0.05881511,-709.14978,739.81707)">
<path
d="m 16300,10125.3 c -14.3,105.1 -124.3,186.9 -258,186.9 -143.3,0 -259.6,-94.1 -259.6,-210.3 0,-19.8 3.5,-39 9.8,-57.2 152.8,84.2 336.1,113.2 507.8,80.6"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path342"
inkscape:connector-curvature="0" />
</g>
<g
id="g344"
transform="matrix(0.06351623,0,0,-0.06351623,-709.14978,739.81707)">
<path
d="m 15986.7,9354.22 c 0,0 155.4,-393.15 -124.7,-556.13 0,0 438,121.69 124.7,556.13"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path346"
inkscape:connector-curvature="0" />
</g>
<g
id="g348"
transform="matrix(0.06426024,0,0,-0.06426024,-709.14978,739.81707)">
<path
d="m 16300,9126.62 c 0,0 -338.2,26.96 -430.4,-178.71 v 131.18 c 0,0 211.4,123.04 430.4,47.53"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path350"
inkscape:connector-curvature="0" />
</g>
<g
id="g352"
transform="matrix(0.06683057,0,0,-0.06683057,-709.14978,739.81707)">
<path
d="m 16024.1,9453.3 c 0,0 -177.2,-469.58 275.9,-567.19 0,0 -580.9,25.06 -275.9,567.19"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path354"
inkscape:connector-curvature="0" />
</g>
<g
id="g356"
transform="matrix(0.06545897,0,0,-0.06545897,-709.14978,739.81707)">
<path
d="m 16300,9361.8 c 0,0 -251.6,150.28 -488.8,0 0,0 182,175.87 488.8,101.74 V 9361.8"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path358"
inkscape:connector-curvature="0" />
</g>
<g
id="g360"
transform="matrix(0.06349647,0,0,-0.06349647,-709.14978,739.81707)">
<path
d="m 15543.5,8346.49 c 0,0 271.3,-307.88 756.5,0 0,0 -428,-185.62 -756.5,0"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path362"
inkscape:connector-curvature="0" />
</g>
<g
id="g364"
transform="matrix(0.05986427,0,0,-0.05986427,-709.14978,739.81707)">
<path
d="m 15760.8,8916 c 0,0 243.4,-202.63 539.2,-28.37 0,0 -276,-60.79 -539.2,28.37"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path366"
inkscape:connector-curvature="0" />
</g>
<g
id="g368"
transform="matrix(0.06290098,0,0,-0.06290098,-709.14978,739.81707)">
<path
d="m 15713.7,8166.74 c 0,0 190.8,-116.86 586.3,-25.71 0,0 -292.5,-222.94 -586.3,25.71"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path370"
inkscape:connector-curvature="0" />
</g>
<g
id="g372"
transform="matrix(0.06059381,0,0,-0.06059381,-709.14978,739.81707)">
<path
d="m 15909.6,8222.11 c 0,0 322.7,-97.56 390.4,58.05 0,0 -30,-270.27 -390.4,-58.05"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path374"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

247
src/images/beach-cloud-004.svg

@ -0,0 +1,247 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="336.37613mm"
height="90.976715mm"
viewBox="0 0 336.37613 90.976715"
version="1.1"
id="svg3473"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="beach-cloud-004.svg">
<defs
id="defs3467" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="968.52932"
inkscape:cy="271.9245"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1051"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata3470">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(287.62874,-129.80331)">
<path
d="m -167.2775,157.28117 c 0,9.00994 -13.73963,16.31597 -30.68813,16.31597 -16.94886,0 -30.68814,-7.30603 -30.68814,-16.31597 0,-9.01348 13.73928,-16.31597 30.68814,-16.31597 16.9485,0 30.68813,7.30249 30.68813,16.31597"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path18"
inkscape:connector-curvature="0" />
<path
d="m -138.887,144.78931 c 0,8.27616 -9.8926,14.98247 -22.09588,14.98247 -12.20329,0 -22.09624,-6.70631 -22.09624,-14.98247 0,-8.27617 9.89295,-14.986 22.09624,-14.986 12.20328,0 22.09588,6.70983 22.09588,14.986"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path20"
inkscape:connector-curvature="0" />
<path
d="m -27.138996,156.40628 c 0,8.53016 -14.94966,15.44108 -33.39112,15.44108 -18.44146,0 -33.39112,-6.91092 -33.39112,-15.44108 0,-8.53017 14.94966,-15.44108 33.39112,-15.44108 18.44146,0 33.39112,6.91091 33.39112,15.44108"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path22"
inkscape:connector-curvature="0" />
<path
d="m -77.263076,152.20469 c 0,7.54592 -13.10922,13.66662 -29.280554,13.66662 -16.17133,0 -29.28091,-6.1207 -29.28091,-13.66662 0,-7.54944 13.10958,-13.66661 29.28091,-13.66661 16.171334,0 29.280554,6.11717 29.280554,13.66661"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path24"
inkscape:connector-curvature="0" />
<path
d="m -7.4194262,152.80442 c 0,3.8488 -5.6419698,6.96736 -12.6012298,6.96736 -6.95959,0 -12.60156,-3.11856 -12.60156,-6.96736 0,-3.84881 5.64197,-6.97089 12.60156,-6.97089 6.95926,0 12.6012298,3.12208 12.6012298,6.97089"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path26"
inkscape:connector-curvature="0" />
<path
d="m -165.77114,197.25442 c -0.3683,13.22563 -22.70759,23.33624 -49.89265,22.5813 -15.12817,-0.42333 -28.57218,-4.12044 -37.45618,-9.59908 -7.08131,-4.36386 -11.26596,-9.86014 -11.10262,-15.72331 0.0325,-1.17475 0.2413,-2.33186 0.6096,-3.45369 3.77472,-11.48645 24.51947,-19.81906 49.28306,-19.12761 17.54998,0.48683 32.8302,5.38691 41.36001,12.3578 3.50732,2.86809 5.86987,6.07836 6.78215,9.48267 0.30515,1.13947 0.44944,2.30717 0.41663,3.48192"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path28"
inkscape:connector-curvature="0" />
<path
d="m -171.41241,190.31528 c -0.37535,13.49022 -26.26112,23.71372 -57.81674,22.8353 -8.55239,-0.23989 -16.64547,-1.27 -23.89082,-2.91394 -3.16794,-1.95439 -5.75169,-4.1275 -7.62882,-6.46642 -2.32727,-2.88572 -3.56411,-6.01486 -3.4738,-9.25689 0.0325,-1.17475 0.2413,-2.33186 0.6096,-3.45369 3.77472,-11.48645 24.51947,-19.81906 49.28306,-19.12761 16.57949,0.46214 31.13157,4.85775 39.88258,11.22186 0.51152,0.37041 1.00647,0.75141 1.47743,1.13594 1.07315,1.94381 1.61502,3.96522 1.55751,6.02545"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path30"
inkscape:connector-curvature="0" />
<path
d="m 4.5351638,197.25442 c -0.3683,13.22563 -22.7075998,23.33624 -49.8926598,22.5813 -15.12817,-0.42333 -28.57218,-4.12044 -37.45618,-9.59908 -7.08131,-4.36386 -11.26631,-9.86014 -11.10298,-15.72331 0.0328,-1.17475 0.24166,-2.33186 0.60996,-3.45369 3.77472,-11.48645 24.51946,-19.81906 49.2827,-19.12761 17.54999,0.48683 32.83055,5.38691 41.3600098,12.3578 3.50768001,2.86809 5.86988,6.07836 6.78251,9.48267 0.30514,1.13947 0.44945,2.30717 0.41664,3.48192"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path32"
inkscape:connector-curvature="0" />
<path
d="m -1.1061262,190.31528 c -0.37571,13.49022 -26.2611198,23.71372 -57.8167298,22.8353 -8.5524,-0.23989 -16.64547,-1.27 -23.89082,-2.91394 -3.16795,-1.95439 -5.75169,-4.1275 -7.62882,-6.46642 -2.32728,-2.88572 -3.56447,-6.01486 -3.47416,-9.25689 0.0328,-1.17475 0.24166,-2.33186 0.60996,-3.45369 3.77472,-11.48645 24.51946,-19.81906 49.2827,-19.12761 16.57985,0.46214 31.13193,4.85775 39.8829398,11.22186 0.51152,0.37041 1.00648,0.75141 1.47707,1.13594 1.07352,1.94381 1.61538,3.96522 1.55786,6.02545"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path34"
inkscape:connector-curvature="0" />
<path
d="m -63.778496,180.88906 c 0,3.85233 -0.95603,7.57413 -2.73191,11.06663 -1.0481,2.07434 -2.38725,4.06048 -3.9885,5.95842 -3.56659,4.23686 -8.41869,7.98689 -14.24164,11.05606 -10.39813,5.48569 -23.877774,8.79475 -38.609414,8.79475 -9.99067,0 -19.40913,-1.524 -27.68212,-4.21923 -3.01802,-0.97719 -5.88116,-2.11666 -8.56439,-3.39372 -3.28471,-1.5628 -6.2932,-3.32669 -8.98631,-5.27403 -0.12629,-0.0917 -0.25717,-0.18344 -0.38346,-0.27516 -0.82974,-0.61384 -1.62525,-1.23825 -2.38725,-1.88031 -0.21343,-0.17992 -0.42686,-0.36336 -0.63571,-0.54328 -1.21285,-1.06186 -2.33856,-2.16252 -3.36726,-3.29847 -0.0875,-0.0917 -0.17004,-0.18344 -0.24765,-0.27517 -0.15522,-0.17638 -0.30551,-0.34925 -0.45614,-0.52563 -0.16475,-0.19403 -0.32491,-0.38453 -0.48507,-0.57856 -0.15029,-0.18697 -0.30586,-0.37747 -0.45121,-0.5715 -0.17004,-0.21167 -0.3302,-0.42686 -0.49,-0.64206 -0.16016,-0.21519 -0.32033,-0.43038 -0.47096,-0.64911 -0.15523,-0.21872 -0.30551,-0.43744 -0.4512,-0.65616 -0.17957,-0.27164 -0.35913,-0.53975 -0.52882,-0.81845 -0.15028,-0.23636 -0.29598,-0.47625 -0.43674,-0.71966 -0.0483,-0.0811 -0.0921,-0.15875 -0.13582,-0.23637 -0.0921,-0.15522 -0.17956,-0.31397 -0.26705,-0.46919 -0.0776,-0.13758 -0.15028,-0.27164 -0.21837,-0.40922 -0.0582,-0.10936 -0.11642,-0.22225 -0.17463,-0.33867 -0.0921,-0.16933 -0.17462,-0.33867 -0.25717,-0.51153 -0.0727,-0.15522 -0.15028,-0.31397 -0.21837,-0.47272 -0.0582,-0.11289 -0.10654,-0.22578 -0.15522,-0.33514 -0.38806,-0.86783 -0.72284,-1.7533 -1.00436,-2.64583 -0.0727,-0.23283 -0.1457,-0.46567 -0.20849,-0.70203 -0.0148,-0.0353 -0.0243,-0.0705 -0.0293,-0.1023 -0.0681,-0.23284 -0.13088,-0.47273 -0.18909,-0.70909 -0.0342,-0.13053 -0.0632,-0.26811 -0.0924,-0.39864 -0.0339,-0.13052 -0.0631,-0.26105 -0.0871,-0.39158 -0.0342,-0.15169 -0.0631,-0.30692 -0.0875,-0.45861 -0.0339,-0.14464 -0.0582,-0.28928 -0.0825,-0.43392 -0.024,-0.13053 -0.0483,-0.26811 -0.0628,-0.39864 -0.0437,-0.254 -0.078,-0.50447 -0.10689,-0.762 -0.0293,-0.20461 -0.0487,-0.40922 -0.0631,-0.61736 -0.0194,-0.15875 -0.0339,-0.32103 -0.0437,-0.47977 -0.0194,-0.25753 -0.0339,-0.51859 -0.0434,-0.77964 -0.0148,-0.30339 -0.0194,-0.60325 -0.0194,-0.90311 0,-0.82198 0.0434,-1.64042 0.13088,-2.44475 0.0776,-0.71967 0.18451,-1.43228 0.32491,-2.13431 0.0536,-0.254 0.10689,-0.508 0.1651,-0.75847 0.29104,-1.23825 0.67945,-2.45181 1.16452,-3.6442 v -0.004 c 0.12136,-0.30691 0.25224,-0.61383 0.38841,-0.91369 1.74166,-3.88056 4.48345,-7.50359 8.04016,-10.75267 2.47438,-2.2613 5.33752,-4.34269 8.54004,-6.20536 10.66024,-6.21594 25.02288,-10.01889 40.81709,-10.01889 0.62619,0 1.25201,0.004 1.8729,0.0176 1.15994,0.0176 2.30999,0.0635 3.45017,0.13053 0.18909,0.004 0.38312,0.0141 0.57749,0.0282 0.42687,0.0247 0.84914,0.0529 1.27106,0.0882 0.5969,0.0423 1.18887,0.0917 1.78083,0.14464 0.19402,0.0212 0.3884,0.0388 0.58243,0.06 0.38312,0.0388 0.77153,0.0776 1.15464,0.11994 0.2914,0.0353 0.58244,0.067 0.86854,0.10231 0.33973,0.0388 0.67945,0.0847 1.01424,0.13053 0.21343,0.0247 0.42686,0.0529 0.6357,0.0882 0.44627,0.06 0.89289,0.127 1.33421,0.19402 2.16923,0.33514 4.29436,0.74789 6.36623,1.22767 0.24271,0.06 0.48542,0.11642 0.72778,0.17639 0.0536,0.007 0.10689,0.0212 0.16016,0.0388 0.40287,0.0952 0.80081,0.19403 1.19874,0.29986 0.528814,0.13406 1.048104,0.27517 1.567044,0.41981 0.0342,0.0106 0.0681,0.0212 0.10195,0.0317 0.50483,0.14111 0.99977,0.28575 1.49437,0.43744 0.0536,0.0141 0.11183,0.0317 0.17003,0.0459 0.33479,0.10936 0.66958,0.20814 0.99943,0.32103 0.0875,0.0247 0.17497,0.0529 0.26211,0.0811 0.25717,0.0847 0.51435,0.1658 0.76659,0.25047 1.34902,0.45508 2.6737,0.93839 3.95957,1.4605 0.2473,0.0952 0.49001,0.19403 0.73272,0.29633 1.09185,0.44803 2.15935,0.92428 3.20252,1.4217 0.19402,0.0917 0.38311,0.18344 0.5775,0.27516 0.33937,0.16934 0.67909,0.33514 1.01388,0.508 0.93168,0.47625 1.84397,0.96662 2.72697,1.48167 0.21378,0.11995 0.42227,0.24342 0.63571,0.36689 0.57255,0.34219 1.14017,0.69144 1.69333,1.04775 0.10195,0.0635 0.20391,0.13406 0.30586,0.19403 0.34925,0.2293 0.69391,0.46214 1.03364,0.69497 0.13088,0.0917 0.26176,0.17991 0.39299,0.27164 0.25718,0.17991 0.50941,0.35983 0.75706,0.54327 0.17463,0.12348 0.34431,0.25048 0.51435,0.381 0.38806,0.28575 0.76659,0.57503 1.14018,0.87489 0.17463,0.14111 0.35419,0.28223 0.52881,0.43039 0.17463,0.14464 0.34925,0.28928 0.52423,0.43392 0.16969,0.14817 0.33937,0.2928 0.50941,0.43744 0.097,0.0847 0.18909,0.16581 0.2861,0.254 0.17004,0.14464 0.33479,0.29634 0.49495,0.4445 0.13124,0.11642 0.25718,0.23284 0.38347,0.35631 0.22331,0.20814 0.44133,0.41628 0.6597,0.62794 3.78989,3.72181 6.53626,7.89517 7.97736,12.35428 0.20849,0.64206 0.393,1.29117 0.54328,1.94733 0.40781,1.74273 0.62124,3.52778 0.62124,5.33753"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path36"
inkscape:connector-curvature="0" />
<path
d="m -70.833696,170.45742 c 0,1.60161 -0.1845,3.17147 -0.53869,4.72016 -1.07703,4.67784 -3.73133,9.08403 -7.66657,13.06336 -1.11125,1.11831 -2.31951,2.21192 -3.62938,3.25967 -3.08116,2.48003 -6.69642,4.74486 -10.75266,6.75922 0,0 0,0 -0.005,0 -12.285844,6.08542 -28.623684,9.80017 -46.552564,9.80017 -2.38266,0 -4.73604,-0.067 -7.05061,-0.19756 -2.45992,-0.13052 -4.88139,-0.33514 -7.25417,-0.6103 -4.94418,-0.56445 -9.69469,-1.41817 -14.18308,-2.52942 -0.16968,-0.0388 -0.33478,-0.0776 -0.49988,-0.11994 -0.82974,-0.61384 -1.62525,-1.23825 -2.38725,-1.88031 -0.21343,-0.17992 -0.42686,-0.36336 -0.63571,-0.54328 -1.21285,-1.06186 -2.33856,-2.16252 -3.36726,-3.29847 -0.0875,-0.0917 -0.17004,-0.18344 -0.24765,-0.27517 -0.15522,-0.17638 -0.30551,-0.34925 -0.45614,-0.52563 -0.16475,-0.19403 -0.32491,-0.38453 -0.48507,-0.57856 -0.15029,-0.18697 -0.30586,-0.37747 -0.4512,-0.5715 -0.17004,-0.21167 -0.3302,-0.42686 -0.49001,-0.64206 -0.16016,-0.21519 -0.32033,-0.43038 -0.47096,-0.64911 -0.15522,-0.21872 -0.30551,-0.43744 -0.4512,-0.65616 -0.17957,-0.27164 -0.35913,-0.53975 -0.52882,-0.81845 -0.15028,-0.23636 -0.29598,-0.47625 -0.43674,-0.71966 -0.0483,-0.0811 -0.0921,-0.15875 -0.13582,-0.23637 -0.0921,-0.15522 -0.17956,-0.31397 -0.26705,-0.46919 -0.0776,-0.13758 -0.15028,-0.27164 -0.21837,-0.40922 -0.0582,-0.10936 -0.11642,-0.22225 -0.17462,-0.33867 -0.0921,-0.16933 -0.17463,-0.33867 -0.25718,-0.51153 -0.0727,-0.15522 -0.15028,-0.31397 -0.21837,-0.47272 h -0.005 c -0.0536,-0.11289 -0.10196,-0.22578 -0.15064,-0.33514 -0.38806,-0.86783 -0.72284,-1.7533 -1.00436,-2.64583 -0.0727,-0.23283 -0.1457,-0.46567 -0.20849,-0.70203 -0.0148,-0.0353 -0.0243,-0.0705 -0.0293,-0.1023 -0.0681,-0.23284 -0.13088,-0.47273 -0.18909,-0.70909 -0.0342,-0.13053 -0.0632,-0.26811 -0.0924,-0.39864 -0.0339,-0.13052 -0.0631,-0.26105 -0.0871,-0.39158 -0.0342,-0.15169 -0.0631,-0.30692 -0.0875,-0.45861 -0.0339,-0.14464 -0.0582,-0.28928 -0.0825,-0.43392 -0.024,-0.13053 -0.0483,-0.26811 -0.0628,-0.39864 -0.0437,-0.254 -0.078,-0.50447 -0.10689,-0.762 -0.0293,-0.20461 -0.0487,-0.40922 -0.0631,-0.61736 -0.0194,-0.15875 -0.0339,-0.32103 -0.0437,-0.47977 -0.0194,-0.25753 -0.0339,-0.51859 -0.0434,-0.77964 -0.0148,-0.30339 -0.0194,-0.60325 -0.0194,-0.90311 0,-0.82198 0.0434,-1.64042 0.13088,-2.44475 0.0776,-0.71967 0.18451,-1.43228 0.32491,-2.13431 0.0536,-0.254 0.10689,-0.508 0.1651,-0.75847 0.29104,-1.23825 0.67945,-2.45181 1.16452,-3.6442 v -0.004 c 0.12136,-0.30691 0.25224,-0.61383 0.38841,-0.91369 1.74166,-3.88056 4.48345,-7.50359 8.04016,-10.75267 2.47438,-2.2613 5.33752,-4.34269 8.54004,-6.20536 10.66024,-6.21594 25.02288,-10.01889 40.81709,-10.01889 0.62619,0 1.25201,0.004 1.8729,0.0176 1.15994,0.0176 2.30999,0.0635 3.45017,0.13053 0.18909,0.004 0.38312,0.0141 0.57749,0.0282 0.42687,0.0247 0.84914,0.0529 1.27106,0.0882 0.5969,0.0423 1.18887,0.0917 1.78083,0.14464 0.19402,0.0212 0.3884,0.0388 0.58243,0.06 0.38312,0.0388 0.77153,0.0776 1.15464,0.11994 0.2914,0.0353 0.58244,0.067 0.86854,0.10231 0.33973,0.0388 0.67945,0.0847 1.01424,0.13053 0.21343,0.0247 0.42686,0.0529 0.6357,0.0882 0.44627,0.06 0.89289,0.127 1.33421,0.19402 2.16923,0.33514 4.29436,0.74789 6.36623,1.22767 0.24271,0.06 0.48542,0.11642 0.72778,0.17639 0.0536,0.007 0.10689,0.0212 0.16016,0.0388 0.40287,0.0952 0.80081,0.19403 1.19874,0.29986 0.528814,0.13406 1.048104,0.27517 1.567044,0.41981 0.0342,0.0106 0.0681,0.0212 0.10195,0.0317 0.50483,0.14111 0.99977,0.28575 1.49437,0.43744 0.0536,0.0141 0.11183,0.0317 0.17003,0.0459 0.33479,0.10936 0.66958,0.20814 0.99943,0.32103 0.0875,0.0247 0.17497,0.0529 0.26211,0.0811 0.25717,0.0847 0.51435,0.1658 0.76659,0.25047 1.34902,0.45508 2.6737,0.93839 3.95957,1.4605 0.2473,0.0952 0.49001,0.19403 0.73272,0.29633 1.09185,0.44803 2.15935,0.92428 3.20252,1.4217 0.19402,0.0917 0.38311,0.18344 0.5775,0.27516 0.33937,0.16934 0.67909,0.33514 1.01388,0.508 0.93168,0.47625 1.84397,0.96662 2.72697,1.48167 0.21378,0.11995 0.42227,0.24342 0.63571,0.36689 0.57255,0.34219 1.14017,0.69144 1.69333,1.04775 0.10195,0.0635 0.20391,0.13406 0.30586,0.19403 0.34925,0.2293 0.69391,0.46214 1.03364,0.69497 0.13088,0.0917 0.26176,0.17991 0.39299,0.27164 0.25718,0.17991 0.50941,0.35983 0.75706,0.54327 0.17463,0.12348 0.34431,0.25048 0.51435,0.381 0.38806,0.28575 0.76659,0.57503 1.14018,0.87489 0.17463,0.14111 0.35419,0.28223 0.52881,0.43039 0.17463,0.14464 0.34925,0.28928 0.52423,0.43392 0.16969,0.14817 0.33937,0.2928 0.50941,0.43744 0.097,0.0847 0.18909,0.16581 0.2861,0.254 0.17004,0.14464 0.33479,0.29634 0.49495,0.4445 0.13124,0.11642 0.25718,0.23284 0.38347,0.35631 0.22331,0.20814 0.44133,0.41628 0.6597,0.62794 1.36348,2.9457 2.08668,6.0325 2.08668,9.2075"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path38"
inkscape:connector-curvature="0" />
<path
d="m -23.281366,185.41167 c -0.1263,1.15358 -0.37853,2.29305 -0.76694,3.4043 -0.66958,1.92264 -1.71274,3.65125 -3.06635,5.17878 -1.48484,1.68275 -3.35809,3.12561 -5.53649,4.2933 -8.67587,4.66725 -22.19925,5.13998 -35.84399,0.36337 -0.6791,-0.23637 -1.34408,-0.48331 -2.00377,-0.73731 -4.49792,-1.74625 -8.59332,-3.92994 -12.16943,-6.4135 -2.00907,-1.38642 -3.85268,-2.86808 -5.50756,-4.42031 -0.59196,-0.55033 -1.15959,-1.10772 -1.70321,-1.67569 -0.66958,-0.6985 -1.30034,-1.41111 -1.89689,-2.12725 -0.67451,-0.82197 -1.30069,-1.64747 -1.87325,-2.48708 -0.11148,-0.16228 -0.21837,-0.32456 -0.32491,-0.49036 -0.10689,-0.15875 -0.21343,-0.32456 -0.31538,-0.49036 -0.61631,-0.97367 -1.15993,-1.96498 -1.63054,-2.95981 -0.11148,-0.23283 -0.21837,-0.46567 -0.32032,-0.70203 0,-0.004 -0.005,-0.0106 -0.005,-0.0106 -0.073,-0.16933 -0.1457,-0.33866 -0.20884,-0.508 -0.10654,-0.25753 -0.20356,-0.51153 -0.29599,-0.76553 -0.0582,-0.15169 -0.11147,-0.30338 -0.16474,-0.45861 -0.0875,-0.25752 -0.17004,-0.508 -0.24271,-0.76552 -0.0632,-0.1905 -0.11642,-0.37748 -0.1651,-0.5715 -0.0194,-0.0706 -0.0339,-0.13406 -0.0533,-0.20109 -0.097,-0.37747 -0.18451,-0.75494 -0.25718,-1.13594 -0.0293,-0.14817 -0.0582,-0.29634 -0.0825,-0.44097 -0.0339,-0.17992 -0.0582,-0.35278 -0.0825,-0.5327 -0.0483,-0.33514 -0.0871,-0.67028 -0.11148,-1.00542 -0.0194,-0.18344 -0.0339,-0.36688 -0.0388,-0.55386 -0.005,-0.0423 -0.01,-0.0847 -0.005,-0.12347 -0.0145,-0.24342 -0.0194,-0.48683 -0.0194,-0.72319 0,-1.74273 0.27657,-3.45017 0.85407,-5.10117 0.2473,-0.70203 0.54328,-1.38642 0.89288,-2.04258 0.19403,-0.37395 0.40746,-0.73731 0.63571,-1.09714 0.0776,-0.11995 0.15522,-0.24342 0.2473,-0.36336 2.16887,-3.22086 5.58482,-5.69736 9.83544,-7.33778 8.61765,-3.33375 20.68054,-3.24556 32.83549,1.00894 1.15465,0.4057 2.2853,0.83609 3.38667,1.29823 0.26705,0.10583 0.53375,0.22225 0.79587,0.33866 0.28645,0.11995 0.57256,0.24695 0.85407,0.37395 0.25718,0.10936 0.50941,0.2293 0.75706,0.34925 0.33479,0.15169 0.66464,0.31044 0.9899,0.46919 0.21802,0.10231 0.43638,0.2152 0.65017,0.32103 0.2861,0.14464 0.57256,0.2928 0.85372,0.44097 0.29139,0.1517 0.5775,0.30692 0.86395,0.46214 0.31045,0.16933 0.62089,0.33867 0.92181,0.51506 0.0921,0.0529 0.17957,0.1023 0.27164,0.15522 0.30092,0.17286 0.5969,0.34925 0.88794,0.52211 0.3108,0.18697 0.6163,0.37394 0.92216,0.56797 0.0483,0.0282 0.097,0.0635 0.14535,0.0917 0.31079,0.19403 0.6163,0.39511 0.92216,0.59972 0.27164,0.17286 0.53869,0.35278 0.80045,0.53622 0.36901,0.254 0.73272,0.51153 1.09185,0.77259 0.27164,0.19403 0.53869,0.39158 0.80045,0.59266 0.33514,0.25048 0.66499,0.508 0.99483,0.76906 0.24765,0.20108 0.49495,0.39864 0.73272,0.59972 0.0727,0.0564 0.1457,0.11642 0.21837,0.17639 0.25224,0.21167 0.49495,0.42333 0.73766,0.63853 0.17956,0.14817 0.35419,0.31044 0.52881,0.46919 0.0632,0.0529 0.13089,0.11289 0.19403,0.16934 0.24765,0.2293 0.49495,0.46214 0.73766,0.69497 0.24271,0.2293 0.48049,0.46214 0.71332,0.6985 0.23777,0.23283 0.46567,0.46567 0.68897,0.70203 0.20391,0.21166 0.39794,0.42333 0.58702,0.63147 0.35913,0.39511 0.7038,0.78669 1.03858,1.18533 0.024,0.0282 0.0434,0.0529 0.0677,0.0811 0.14569,0.17639 0.29104,0.35631 0.4318,0.52917 0.0487,0.06 0.097,0.11642 0.14076,0.17639 0.13581,0.16933 0.27163,0.34219 0.39793,0.51153 0.1651,0.21519 0.32526,0.42686 0.47554,0.64205 0.11642,0.15523 0.23284,0.31398 0.33973,0.4692 0.0871,0.127 0.17462,0.25047 0.25717,0.37394 0.11642,0.16934 0.2279,0.33514 0.33479,0.50447 0.14534,0.21873 0.2861,0.43745 0.41734,0.6597 0.10653,0.1658 0.20849,0.33514 0.30091,0.50094 0.0533,0.0811 0.1016,0.16934 0.14535,0.254 0.1457,0.24695 0.28645,0.49389 0.41734,0.74436 0.0293,0.0459 0.0533,0.0952 0.0727,0.14112 0,0 0.005,0 0.005,0.007 0.12136,0.21872 0.23284,0.44097 0.33973,0.65969 1.74696,3.54189 2.52802,7.14728 2.15935,10.59745"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path40"
inkscape:connector-curvature="0" />
<path
d="m -26.134636,180.90669 c -1.1744,3.35845 -3.60998,6.08542 -6.98712,8.13506 -1.30069,0.78317 -2.74179,1.47461 -4.2993,2.05669 -7.54027,2.8187 -17.91441,3.21734 -29.08935,0.85725 -3.31399,-0.69144 -6.70101,-1.63336 -10.1025,-2.82222 -0.81985,-0.28575 -1.6256,-0.58208 -2.42605,-0.89253 -2.25143,-0.8643 -4.4203,-1.8168 -6.49711,-2.82927 -0.98037,-0.47978 -1.94098,-0.9772 -2.87267,-1.48167 -0.71331,-0.38806 -1.41181,-0.77964 -2.0962,-1.18181 -1.08197,-0.63147 -2.13007,-1.28763 -3.14431,-1.95791 -0.11148,-0.16228 -0.21837,-0.32456 -0.32491,-0.49036 -0.10689,-0.15875 -0.21343,-0.32456 -0.31538,-0.49036 -0.61631,-0.97367 -1.15993,-1.96498 -1.63054,-2.95981 -0.11148,-0.23283 -0.21837,-0.46567 -0.32032,-0.70203 0,-0.004 -0.005,-0.0106 -0.005,-0.0106 -0.073,-0.16933 -0.1457,-0.33866 -0.20884,-0.508 -0.10654,-0.25753 -0.20356,-0.51153 -0.29599,-0.76553 -0.0582,-0.15169 -0.11147,-0.30338 -0.16474,-0.45861 -0.0875,-0.25752 -0.17004,-0.508 -0.24271,-0.76552 -0.0632,-0.1905 -0.11642,-0.37748 -0.1651,-0.5715 -0.0194,-0.0706 -0.0339,-0.13406 -0.0533,-0.20109 -0.097,-0.37747 -0.18451,-0.75494 -0.25718,-1.13594 -0.0293,-0.14817 -0.0582,-0.29634 -0.0825,-0.44097 -0.0339,-0.17992 -0.0582,-0.35278 -0.0825,-0.5327 -0.0483,-0.33514 -0.0871,-0.67028 -0.11148,-1.00542 -0.0194,-0.18344 -0.0339,-0.36688 -0.0388,-0.55386 -0.005,-0.0423 -0.01,-0.0847 -0.005,-0.12347 -0.0145,-0.24342 -0.0194,-0.48683 -0.0194,-0.72319 0,-1.74273 0.27657,-3.45017 0.85407,-5.10117 0.2473,-0.70203 0.54328,-1.38642 0.89288,-2.04258 0.19403,-0.37395 0.40746,-0.73731 0.63571,-1.09714 0.0776,-0.11995 0.15522,-0.24342 0.2473,-0.36336 2.16887,-3.22086 5.58482,-5.69736 9.83544,-7.33778 8.61765,-3.33375 20.68054,-3.24556 32.83549,1.00894 1.15465,0.4057 2.2853,0.83609 3.38667,1.29823 0.26705,0.10583 0.53375,0.22225 0.79587,0.33866 0.28645,0.11995 0.57256,0.24695 0.85407,0.37395 0.25718,0.10936 0.50941,0.2293 0.75706,0.34925 0.33479,0.15169 0.66464,0.31044 0.9899,0.46919 0.21802,0.10231 0.43638,0.2152 0.65017,0.32103 0.2861,0.14464 0.57256,0.2928 0.85372,0.44097 0.29139,0.1517 0.5775,0.30692 0.86395,0.46214 0.31045,0.16933 0.62089,0.33867 0.92181,0.51506 0.0921,0.0529 0.17957,0.1023 0.27164,0.15522 0.30092,0.17286 0.5969,0.34925 0.88794,0.52211 0.3108,0.18697 0.6163,0.37394 0.92216,0.56797 0.0483,0.0282 0.097,0.0635 0.14535,0.0917 0.31079,0.19403 0.6163,0.39511 0.92216,0.59972 0.27164,0.17286 0.53869,0.35278 0.80045,0.53622 0.36901,0.254 0.73272,0.51153 1.09185,0.77259 0.27164,0.19403 0.53869,0.39158 0.80045,0.59266 0.33514,0.25048 0.66499,0.508 0.99483,0.76906 0.24765,0.20108 0.49495,0.39864 0.73272,0.59972 0.0727,0.0564 0.1457,0.11642 0.21837,0.17639 0.25224,0.21167 0.49495,0.42333 0.73766,0.63853 0.17956,0.14817 0.35419,0.31044 0.52881,0.46919 h 0.005 c 0.0632,0.06 0.12594,0.11642 0.18909,0.16934 0.24765,0.2293 0.49495,0.46214 0.73766,0.69497 0.24271,0.2293 0.48048,0.46214 0.71332,0.6985 0.23777,0.23283 0.46566,0.46567 0.68897,0.70203 0.20391,0.21166 0.39794,0.42333 0.58702,0.63147 0.35913,0.39511 0.70379,0.78669 1.03858,1.18533 0.024,0.0282 0.0434,0.0529 0.0677,0.0811 0.14569,0.17639 0.29104,0.35631 0.4318,0.52917 0.0487,0.06 0.097,0.11642 0.14075,0.17639 0.13582,0.16933 0.27164,0.34219 0.39794,0.51153 0.1651,0.21519 0.32526,0.42686 0.47554,0.64205 0.11642,0.15523 0.23283,0.31398 0.33973,0.4692 0.0871,0.127 0.17462,0.25047 0.25717,0.37394 0.11642,0.16934 0.22789,0.33514 0.33479,0.50447 0.14534,0.21873 0.2861,0.43745 0.41733,0.6597 0.10654,0.1658 0.2085,0.33514 0.30092,0.50094 0.0533,0.0811 0.1016,0.16934 0.14535,0.254 0.0293,0.0423 0.0533,0.0811 0.0776,0.12348 0.11642,0.21166 0.23283,0.41275 0.33972,0.62088 0.0293,0.0494 0.0533,0.0952 0.0776,0.14112 v 0.007 c 0.12136,0.21872 0.23284,0.44097 0.33973,0.65969 0.20391,2.09903 -0.0145,4.14867 -0.69392,6.09247"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path42"
inkscape:connector-curvature="0" />
<path
d="m -146.38812,206.27847 c -4.36985,12.48833 -21.2157,17.96344 -37.62375,12.22022 -9.13059,-3.19264 -16.20307,-9.18986 -19.92594,-16.03022 -2.96827,-5.45394 -3.80929,-11.44058 -1.87148,-16.97919 0.38841,-1.11125 0.87771,-2.16959 1.45485,-3.16442 5.91114,-10.21292 21.22276,-14.2875 36.16889,-9.05933 10.59215,3.70769 18.41359,11.17952 21.45171,19.37455 1.24954,3.36903 1.6891,6.858 1.18146,10.25525 -0.17075,1.13947 -0.44733,2.27189 -0.83574,3.38314"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path44"
inkscape:connector-curvature="0" />
<path
d="m -147.66835,198.64789 c -4.45628,12.7388 -23.50875,17.66358 -42.55452,10.99961 -5.16184,-1.80622 -9.79452,-4.2792 -13.71494,-7.17903 -1.32785,-2.44122 -2.22814,-4.98475 -2.64548,-7.54944 -0.52034,-3.17148 -0.29739,-6.36764 0.774,-9.42975 0.38841,-1.11125 0.87771,-2.16959 1.45485,-3.16442 5.91114,-10.21292 21.22276,-14.2875 36.16889,-9.05933 10.00654,3.50308 17.53976,10.36461 20.90314,18.02341 0.19685,0.4445 0.38135,0.89959 0.54857,1.35114 0.0483,2.04259 -0.25329,4.064 -0.93451,6.00781"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path46"
inkscape:connector-curvature="0" />
<path
d="m -170.96508,191.17605 c -0.35913,1.68275 -1.07245,3.24556 -2.10609,4.67784 -0.69885,0.97366 -1.54799,1.89794 -2.53294,2.75166 -4.77943,4.1522 -12.72751,6.81567 -22.38834,7.62 -1.09184,0.0882 -2.20274,0.15875 -3.33833,0.20109 -7.01146,0.26458 -14.77504,-0.39511 -22.79579,-2.10609 -4.57095,-0.97719 -8.92352,-2.23308 -12.9847,-3.70769 -2.02847,-0.73378 -3.97897,-1.51694 -5.84729,-2.35303 -6.54543,-2.921 -12.09639,-6.42055 -16.25988,-10.18469 -0.32984,-0.29634 -0.65017,-0.5962 -0.96555,-0.89959 -0.15522,-0.14816 -0.3055,-0.29986 -0.46108,-0.45508 -0.11642,-0.11642 -0.23777,-0.23636 -0.35419,-0.35983 0,0 0,0 0,-0.004 -0.0339,-0.0282 -0.0628,-0.06 -0.0921,-0.0917 -1.26647,-1.31234 -2.3629,-2.64584 -3.28013,-3.99345 -0.097,-0.15169 -0.19896,-0.29986 -0.29598,-0.45508 -0.0776,-0.11289 -0.15063,-0.2293 -0.21343,-0.34219 -0.23777,-0.37748 -0.46108,-0.762 -0.66498,-1.13948 0,0 0,-0.004 -0.005,-0.004 -0.0582,-0.11641 -0.12136,-0.23283 -0.18451,-0.34925 -0.10195,-0.20108 -0.19896,-0.39864 -0.29104,-0.59972 -0.0632,-0.13405 -0.12629,-0.26811 -0.1845,-0.40569 -0.0582,-0.11995 -0.11148,-0.24695 -0.16016,-0.37042 -0.11148,-0.26458 -0.21837,-0.53269 -0.31045,-0.79728 -0.0388,-0.10936 -0.073,-0.21166 -0.10689,-0.3175 -0.0388,-0.10583 -0.0727,-0.21872 -0.10654,-0.33161 -0.0582,-0.16933 -0.10689,-0.33867 -0.15063,-0.51153 -0.0388,-0.13052 -0.0727,-0.25752 -0.10196,-0.38805 -0.0339,-0.11642 -0.0582,-0.23284 -0.0822,-0.34925 -0.0293,-0.12347 -0.0536,-0.24342 -0.0776,-0.37042 0,-0.0177 -0.005,-0.0388 -0.01,-0.0635 -0.0194,-0.0811 -0.0339,-0.16582 -0.0437,-0.25049 -0.0194,-0.10936 -0.0339,-0.21519 -0.0483,-0.32455 -0.0243,-0.14817 -0.0437,-0.29634 -0.0582,-0.44803 -0.0148,-0.1517 -0.0293,-0.29986 -0.0388,-0.45156 -0.0875,-1.14652 -0.01,-2.286 0.2279,-3.4043 0.24271,-1.15006 0.66004,-2.2472 1.22766,-3.28084 5.79826,-10.61155 27.7114,-15.03891 51.93383,-9.86013 1.92158,0.41275 3.80894,0.86783 5.65291,1.37583 h 0.005 c 0.21344,0.06 0.42193,0.11642 0.63077,0.17639 0.49989,0.14111 0.9899,0.28222 1.4799,0.42686 0.61137,0.18344 1.22273,0.37394 1.82457,0.56797 h 0.005 c 0.34467,0.11289 0.68933,0.22225 1.0287,0.33514 0.12136,0.0388 0.24271,0.0811 0.36901,0.11994 0.42192,0.14464 0.83926,0.28575 1.25165,0.43745 0.33973,0.11642 0.67452,0.23636 1.01424,0.36336 0.22331,0.0776 0.44626,0.16228 0.66957,0.24694 0.38806,0.14817 0.77647,0.29281 1.15499,0.44098 0.42193,0.1658 0.8442,0.33161 1.2566,0.50094 0.0681,0.0282 0.13582,0.0529 0.2039,0.0882 0.4318,0.17286 0.85867,0.35278 1.28094,0.53975 0.44626,0.18697 0.89288,0.38806 1.32962,0.58561 0.44133,0.19403 0.87313,0.39864 1.30528,0.60325 0.883,0.41628 1.75154,0.84314 2.59574,1.28411 0.38841,0.19756 0.76658,0.40217 1.14511,0.60678 0.75706,0.41275 1.49966,0.82903 2.2225,1.26295 0.22789,0.13405 0.46108,0.27163 0.68403,0.40569 0.21343,0.13053 0.42722,0.26458 0.64065,0.39511 0.26211,0.16228 0.52387,0.32808 0.77646,0.49389 0.62089,0.40217 1.22273,0.80433 1.80975,1.21708 0.15522,0.10584 0.31045,0.21873 0.46567,0.32456 0.33972,0.24694 0.67451,0.49036 1.00471,0.74436 0.19861,0.14464 0.39758,0.29633 0.59655,0.45156 0.19438,0.14816 0.38841,0.29986 0.57749,0.45155 v 0.004 c 0.39794,0.32103 0.79093,0.63853 1.1744,0.96661 0.25718,0.22225 0.51435,0.4445 0.76165,0.66675 0.27164,0.24342 0.53869,0.48684 0.8008,0.73378 0.25718,0.24342 0.50448,0.48683 0.75213,0.72672 0.24236,0.24342 0.48013,0.48684 0.71331,0.73378 0.0628,0.06 0.11642,0.11642 0.16969,0.17992 0.13088,0.13758 0.25717,0.27516 0.38806,0.41627 0.23777,0.26459 0.46602,0.52564 0.68897,0.7867 1.01918,1.20297 1.89265,2.42005 2.60597,3.64772 1.04316,1.76742 1.75648,3.54895 2.11067,5.31989 0.11148,0.53269 0.1845,1.06186 0.22789,1.59103 0.0924,1.17828 0.0243,2.3495 -0.22295,3.49955"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path48"
inkscape:connector-curvature="0" />
<path
d="m -175.01215,181.136 c -0.005,0.51506 -0.0434,1.02306 -0.11642,1.52753 v 0.007 c -0.0339,0.21872 -0.0727,0.44097 -0.12135,0.65969 -0.63536,2.97392 -2.51319,5.54919 -5.39574,7.67644 h -0.005 c -5.40067,3.99345 -14.32418,6.41703 -25.19785,6.97795 0,0 0,0 -0.005,0 -8.0645,0.40922 -17.1965,-0.20461 -26.76031,-1.98261 -1.20333,-0.21872 -2.42147,-0.45861 -3.63926,-0.7232 -0.27657,-0.0564 -0.54821,-0.11289 -0.81985,-0.17639 -8.0546,-1.77098 -15.54161,-4.1875 -22.14561,-7.02736 -0.32984,-0.29634 -0.65017,-0.5962 -0.96555,-0.89959 -0.15522,-0.14816 -0.3055,-0.29986 -0.46108,-0.45508 -0.11642,-0.11642 -0.23777,-0.23636 -0.35419,-0.35983 -0.0339,-0.0317 -0.0628,-0.0635 -0.0921,-0.0952 -1.26647,-1.31234 -2.3629,-2.64584 -3.28013,-3.99345 -0.097,-0.15169 -0.19896,-0.29986 -0.29598,-0.45508 -0.0776,-0.11289 -0.15063,-0.22931 -0.21343,-0.3422 -0.23777,-0.37747 -0.46108,-0.762 -0.66498,-1.13947 0,0 0,-0.003 -0.005,-0.003 -0.0582,-0.11642 -0.12136,-0.23283 -0.18451,-0.34925 -0.10195,-0.20108 -0.19896,-0.39864 -0.29104,-0.59972 -0.0632,-0.13406 -0.12629,-0.26811 -0.1845,-0.4057 -0.0582,-0.11994 -0.11148,-0.24694 -0.16016,-0.37041 -0.11148,-0.26459 -0.21837,-0.5327 -0.31045,-0.79728 -0.0388,-0.10936 -0.073,-0.21167 -0.10689,-0.3175 -0.0388,-0.10583 -0.0727,-0.21872 -0.10654,-0.33161 -0.0582,-0.16933 -0.10689,-0.33867 -0.15063,-0.51153 -0.0388,-0.13053 -0.0727,-0.25753 -0.10196,-0.38805 -0.0339,-0.11642 -0.0582,-0.23284 -0.0822,-0.34925 -0.0293,-0.12348 -0.0536,-0.24342 -0.0776,-0.37042 0,-0.0177 -0.005,-0.0388 -0.01,-0.0635 -0.0194,-0.0812 -0.0339,-0.16582 -0.0437,-0.25049 -0.0194,-0.10936 -0.0339,-0.21519 -0.0483,-0.32455 -0.0243,-0.14817 -0.0437,-0.29634 -0.0582,-0.44803 -0.0148,-0.1517 -0.0293,-0.29986 -0.0388,-0.45156 -0.0875,-1.14652 -0.01,-2.286 0.2279,-3.4043 0.24271,-1.15006 0.66004,-2.2472 1.22766,-3.28084 5.79826,-10.61155 27.7114,-15.03891 51.93383,-9.86013 1.92158,0.41275 3.80894,0.86783 5.65291,1.37583 h 0.005 c 0.21344,0.06 0.42193,0.11642 0.63077,0.17639 0.49989,0.14111 0.9899,0.28222 1.4799,0.42686 0.61137,0.18344 1.22273,0.37394 1.82457,0.56797 h 0.005 c 0.34467,0.11289 0.68933,0.22225 1.0287,0.33514 0.12136,0.0388 0.24271,0.0811 0.36901,0.11994 0.42192,0.14464 0.83926,0.28575 1.25165,0.43745 0.33973,0.11642 0.67452,0.23636 1.01424,0.36336 0.22331,0.0776 0.44626,0.16228 0.66957,0.24694 0.38806,0.14817 0.77647,0.29281 1.15499,0.44098 0.42193,0.1658 0.8442,0.33161 1.2566,0.50094 0.0681,0.0282 0.13582,0.0529 0.2039,0.0882 0.4318,0.17286 0.85867,0.35278 1.28094,0.53975 0.44626,0.18697 0.89288,0.38805 1.32962,0.58561 0.44133,0.19403 0.87313,0.39864 1.30528,0.60325 0.883,0.41628 1.75154,0.84314 2.59574,1.28411 0.38841,0.19756 0.76658,0.40217 1.14511,0.60678 0.75706,0.41275 1.49966,0.82903 2.2225,1.26294 0.22789,0.13406 0.46108,0.27164 0.68403,0.4057 0.21343,0.13053 0.42722,0.26458 0.64065,0.39511 0.26211,0.16228 0.52387,0.32808 0.77646,0.49389 0.62089,0.40216 1.22273,0.80433 1.80975,1.21708 0.15522,0.10583 0.31045,0.21872 0.46567,0.32456 0.33972,0.24694 0.67451,0.49036 1.00471,0.74436 0.19861,0.14464 0.39758,0.29633 0.59655,0.45155 0.19438,0.14817 0.38841,0.29986 0.57749,0.45509 0.39794,0.32102 0.79093,0.63852 1.1744,0.96661 0.25718,0.22225 0.51435,0.4445 0.76165,0.66675 0.27164,0.24341 0.53869,0.48683 0.8008,0.73378 0.25718,0.24341 0.50448,0.48683 0.75213,0.72672 0.24236,0.24341 0.48013,0.48683 0.71331,0.73378 0.0582,0.06 0.11148,0.11994 0.16475,0.17991 h 0.005 c 0.13088,0.13759 0.25717,0.27517 0.38805,0.41628 0.23777,0.26458 0.46602,0.52564 0.68898,0.78669 0.45155,1.35467 0.67945,2.69875 0.67451,4.01814"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path50"
inkscape:connector-curvature="0" />
<path
d="m 11.198774,180.88906 c 0,3.24555 -0.60642,6.34647 -1.7226202,9.20044 -0.65511,1.69686 -1.49437,3.30905 -2.4892,4.8013 -0.74719,1.13242 -1.58184,2.19781 -2.50365,3.18912 -4.63409999,5.03061 -11.28183,8.18444 -18.6668798,8.18444 -0.64524,0 -1.29048,-0.0212 -1.92125,-0.0706 -6.50697,-0.48683 -12.32992,-3.42547 -16.54632,-7.90575 -1.97485,-2.09197 -3.59551,-4.51555 -4.76991,-7.18961 -1.37795,-3.12561 -2.13995,-6.57931 -2.13995,-10.20939 0,-1.48872 0.12629,-2.94922 0.37853,-4.36739 0.21343,-1.22414 0.51435,-2.42005 0.89288,-3.57716 0.0727,-0.22578 0.15028,-0.45156 0.23283,-0.67028 1.03364,-2.87514 2.57669,-5.51039 4.51274,-7.79639 h 0.005 c 4.65314,-5.48922 11.59687,-8.97114 19.35551,-8.97114 8.8409398,0 16.6288798,4.52261 21.1705298,11.37708 1.10138,1.66512 2.01366,3.46428 2.70264,5.37281 0.4949502,1.36878 0.8784102,2.794 1.1306402,4.26508 0.25225,1.41817 0.37854,2.87867 0.37854,4.36739"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path52"
inkscape:connector-curvature="0" />
<path
d="m 10.820234,176.52167 c -0.80044,4.62844 -2.8578402,8.8265 -5.8081302,12.2308 -0.64064,0.74436 -1.32467,1.44639 -2.04751,2.11314 -0.61632,0.56797 -1.2619,1.10067 -1.93146,1.60161 -0.97508999,0.73025 -2.00378999,1.39347 -3.07623,1.97908 -3.60539,1.96498 -7.74417,3.08681 -12.1404798,3.08681 -4.72123,0 -9.14154,-1.29117 -12.93108,-3.53836 -2.25143,-1.34056 -4.2799,-3.01272 -6.0071,-4.953 -3.0861,-3.45722 -5.23557,-7.76111 -6.06072,-12.52008 0.21343,-1.22414 0.51435,-2.42006 0.89288,-3.57717 0.0727,-0.22578 0.15028,-0.45156 0.23283,-0.67028 1.03364,-2.87514 2.57669,-5.51039 4.51274,-7.79639 h 0.005 c 4.65314,-5.48922 11.59687,-8.97114 19.35551,-8.97114 8.8409398,0 16.6288798,4.52262 21.1705298,11.37709 1.10138,1.66511 2.01366,3.46428 2.70264,5.3728 0.4949502,1.36878 0.8784102,2.794 1.1306402,4.26509"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path54"
inkscape:connector-curvature="0" />
<path
d="m 48.747384,180.88906 c 0,8.79827 -12.67177,15.92086 -28.29632,15.92086 -4.87537,0 -9.46113,-0.69498 -13.4641102,-1.91912 -0.98002,-0.29633 -1.92617,-0.62441 -2.83385,-0.98777 -1.10138,-0.43745 -2.14455,-0.91723 -3.11996,-1.43581 -0.77612999,-0.40922 -1.50883999,-0.84667 -2.19782,-1.31233 -4.16348,-2.76578 -6.67702,-6.35 -6.67702,-10.26583 v -0.11289 c 0.01,-0.89253 0.15062,-1.77095 0.42227,-2.62467 1.06257,-3.45017 4.09046,-6.51581 8.41870001,-8.81944 1.79032999,-0.95603 3.79940999,-1.78153 5.98767999,-2.44828 4.0029802,-1.22061 8.5887402,-1.91559 13.4641102,-1.91559 12.18849,0 22.57425,4.33212 26.55359,10.41753 0.58208,0.889 1.02306,1.80975 1.3194,2.76578 0.28223,0.889 0.42333,1.80622 0.42333,2.73756"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path56"
inkscape:connector-curvature="0" />
<path
d="m 48.324054,178.1515 c -2.30365,7.48947 -13.9065,13.17978 -27.87299,13.17978 -3.89112,0 -7.59777,-0.44098 -10.9749102,-1.24178 -1.56245,-0.37042 -3.05681,-0.81492 -4.46405,-1.33703 -2.20308,-0.80786 -4.19734999,-1.78505 -5.91502999,-2.89983 -0.52879001,-0.33867 -1.02375001,-0.69497 -1.49929001,-1.05481 -0.79586,-0.61383 -1.51378,-1.25941 -2.14947,-1.93322 -0.005,-0.007 -0.01,-0.007 -0.01,-0.0106 -1.36348,-1.44639 -2.34349,-3.02683 -2.85784,-4.70253 1.06256,-3.45016 4.09045,-6.5158 8.41869001,-8.81944 1.79032999,-0.95603 3.79941999,-1.78153 5.98767999,-2.44828 4.0029902,-1.22061 8.5887502,-1.91558 13.4641202,-1.91558 12.18848,0 22.57425,4.33211 26.55358,10.41753 0.58209,0.889 1.02307,1.80975 1.3194,2.76577"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path58"
inkscape:connector-curvature="0" />
<path
d="m -80.080006,172.95508 c -2.30469,-7.48594 -13.90791,-13.1833 -27.875094,-13.1833 -11.15306,0 -20.79554,3.63714 -25.4007,8.91822 7.12329,9.29922 23.67033,13.85358 33.376664,7.52475 1.99143,-1.30175 4.46687,-1.47461 6.14821,0.50447 1.39241,1.63689 1.48802,4.84717 -0.50447,6.14539 -12.226574,7.97631 -30.197074,5.46453 -41.371314,-4.07105 2.56223,7.30955 14.01269,12.82347 27.75161,12.82347 15.628064,0 28.297014,-7.12611 28.297014,-15.92086 0,-0.93486 -0.14075,-1.85209 -0.42192,-2.74109"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path60"
inkscape:connector-curvature="0" />
<path
d="m -80.080006,172.95508 c -2.30434,7.48948 -13.90791,13.17978 -27.875094,13.17978 -13.96153,0 -25.56509,-5.6903 -27.86944,-13.17978 2.30435,-7.48594 13.90791,-13.1833 27.86944,-13.1833 13.967184,0 25.570754,5.69736 27.875094,13.1833"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path62"
inkscape:connector-curvature="0" />
<path
d="m -231.04137,190.75625 c 0,1.8415 -0.55316,3.60539 -1.57198,5.2458 -1.04316,1.68628 -2.57669,3.2385 -4.49792,4.61081 -4.92054,3.50308 -12.4026,5.82436 -20.86504,6.04661 h -0.005 c -0.45155,0.0141 -0.90276,0.0177 -1.3589,0.0177 -15.61922,-1e-5 -28.28853,-7.12612 -28.28853,-15.92087 0,-0.93486 0.14076,-1.84856 0.42193,-2.74108 0.19896,-0.63853 0.46108,-1.26648 0.79586,-1.87678 2.75132,-5.12233 9.96174,-9.15458 19.09375,-10.66095 2.528,-0.4198 5.20629,-0.64558 7.97701,-0.64558 4.76497,0 9.24842,0.66675 13.18366,1.83445 3.44522,1.01952 6.46324,2.42711 8.8847,4.12397 2.93053,2.05316 4.9784,4.52261 5.80814,7.22489 0.28116,0.89252 0.42192,1.80622 0.42192,2.74108"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path64"
inkscape:connector-curvature="0" />
<path
d="m -231.46329,188.01517 c -0.81033,2.64583 -2.78518,5.06236 -5.60917,7.0873 -1.67887,1.2065 -3.6636,2.27542 -5.8861,3.15736 -4.62421,1.85209 -10.27218,2.93864 -16.38123,2.93864 -1.08197,0 -2.15442,-0.0317 -3.20711,-0.10583 h -0.005 c -12.49966,-0.79022 -22.52913,-6.16656 -24.65461,-13.07747 0.19896,-0.63853 0.46108,-1.26648 0.79586,-1.87678 2.75132,-5.12233 9.96174,-9.15458 19.09375,-10.66095 2.528,-0.4198 5.20629,-0.64558 7.97701,-0.64558 4.76497,0 9.24842,0.66675 13.18366,1.83445 3.44522,1.01952 6.46324,2.42711 8.8847,4.12397 2.93053,2.05316 4.9784,4.52261 5.80814,7.22489"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path66"
inkscape:connector-curvature="0" />
<path
d="m -155.20509,163.13375 c -0.12136,-0.39864 -0.27164,-0.79022 -0.44627,-1.17475 -1.39276,-3.10444 -4.41077,-5.85258 -8.5157,-7.92692 -5.01262,-2.54 -11.64554,-4.08164 -18.91418,-4.08164 -10.94492,0 -20.44135,3.49956 -25.13823,8.62189 1.39559,2.8575 3.40783,5.52098 6.42232,6.7945 3.15383,1.32998 6.00851,1.79917 9.58356,2.21545 5.32094,0.62441 13.60487,1.22061 16.7587,-3.16089 3.28613,-4.56495 10.43552,0.43039 7.14516,5.00239 -5.57389,7.747 -16.75059,7.94455 -25.31815,6.7698 -4.57094,-0.62441 -9.32603,-1.45344 -13.38086,-3.75355 -1.2319,-0.6985 -2.36255,-1.52047 -3.40148,-2.4377 0.36336,0.762 0.82268,1.50284 1.37407,2.21545 1.79034,2.31775 4.53213,4.34622 7.95302,5.93372 4.89091,2.27542 11.16506,3.64067 18.00189,3.64067 h 0.17957 c 2.00871,-0.0106 3.9691,-0.13053 5.85646,-0.36336 h 0.005 c 0.68403,-0.0847 1.36348,-0.17992 2.02812,-0.29281 0.65511,-0.11289 1.30034,-0.23283 1.93146,-0.37042 4.47851,-0.94897 8.41375,-2.52236 11.4755,-4.52614 v -0.004 c 4.25062,-2.77989 6.82237,-6.39939 6.82237,-10.36461 0,-0.93133 -0.14076,-1.84855 -0.42227,-2.73755"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path68"
inkscape:connector-curvature="0" />
<path
d="m -155.20509,163.13375 c -1.33914,4.34622 -5.81801,8.09272 -12.07241,10.46339 -2.83845,1.0795 -6.0459,1.87678 -9.48619,2.31775 h -0.005 c -1.83903,0.23636 -3.74121,0.37042 -5.69665,0.39511 -0.20356,0.004 -0.4124,0.004 -0.61595,0.004 -2.23697,0 -4.41573,-0.14464 -6.50699,-0.42686 -0.01,0.004 -0.0194,0 -0.0293,-0.007 -2.29023,-0.29986 -4.47357,-0.762 -6.50663,-1.35819 -0.99483,-0.28575 -1.95086,-0.61031 -2.86773,-0.96309 -0.005,0 -0.005,0 -0.01,-0.007 -6.19152,-2.37057 -10.62135,-6.09238 -11.95097,-10.41743 0.12135,-0.38806 0.26211,-0.77259 0.4318,-1.14653 0.49001,-1.10067 1.18392,-2.15195 2.0574,-3.15383 h 0.005 c 4.60975,-5.26345 14.24622,-8.88295 25.37741,-8.88295 7.26864,0 13.90156,1.54164 18.91418,4.08164 4.10493,2.07433 7.12294,4.82247 8.51571,7.92692 0.17462,0.38452 0.3249,0.77611 0.44626,1.17475"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path70"
inkscape:connector-curvature="0" />
<path
d="m 47.004654,175.38572 c -10.15294,-5.39044 -28.41977,-4.15219 -37.3150602,-3.12914 -3.16831,0.36336 -5.14808,0.6985 -5.14808,0.6985 -1.10138,-1.42169 -2.29023,-2.62114 -3.54223999,-3.62302 -9.26291001,-7.43656 -22.13609981,-4.26156 -30.58371981,-0.77259 -3.52778,1.45345 -6.28368,2.97039 -7.68633,3.78531 l -0.005,0.004 c -0.65511,0.37747 -1.0093,0.60677 -1.0093,0.60677 0,-0.004 -0.005,-0.004 -0.005,-0.0106 -0.10654,-0.24341 -0.21837,-0.4833 -0.33479,-0.71614 -6.15231,-12.58708 -22.54801,-13.21502 -34.95521,-11.60636 -8.62259,1.11478 -15.32361,3.302 -15.32361,3.302 -0.005,-0.004 -0.005,-0.004 -0.01,-0.004 -2.10608,-1.60513 -4.25556,-2.98802 -6.42937,-4.17336 -22.645524,-12.39308 -48.081144,-3.55247 -60.308784,2.21192 -4.6048,2.17311 -7.33671,3.91231 -7.33671,3.91231 -3.10551,-2.5012 -6.37576,-4.33212 -9.71903,-5.63387 -11.05311,-4.3039 -22.86834,-2.77638 -31.81125,-0.23285 h -0.005 c -2.18864,0.62442 -4.20723,1.30881 -5.99758,1.98261 -5.27932,1.98614 -8.60319,3.88409 -8.60319,3.88409 -10.29652,0.37747 -15.04174,3.83822 -16.99754,7.9128 -1.10137,2.286 -1.32433,4.76956 -1.1497,7.00617 0.29104,4.0005 1.82421,7.22489 1.82421,7.22489 -4.81824,-4.81542 -12.06747,-6.63575 -19.59821,-6.9215 -3.28507,-0.12348 -6.62341,0.0423 -9.83545,0.381 -11.57286,1.22413 -21.52966,4.66371 -21.52966,4.66371 2.75132,-5.12233 9.96174,-9.15458 19.09375,-10.66095 -0.0194,-0.0811 -0.0339,-0.1658 -0.0437,-0.25047 -0.0194,-0.10936 -0.0339,-0.21519 -0.0483,-0.32455 -0.0243,-0.14817 -0.0437,-0.29634 -0.0582,-0.44803 -0.0148,-0.1517 -0.0293,-0.29986 -0.0388,-0.45156 -0.0875,-1.14652 -0.01,-2.286 0.22789,-3.4043 0.24271,-1.15006 0.66005,-2.2472 1.22767,-3.28084 5.79825,-10.61155 27.7114,-15.03891 51.93382,-9.86013 1.92158,0.41275 3.80894,0.86783 5.65292,1.37583 h 0.005 c 4.60974,-5.26345 14.24622,-8.88295 25.37741,-8.88295 7.26864,0 13.90156,1.54164 18.91418,4.08164 10.66024,-6.21594 25.02288,-10.01889 40.8171,-10.01889 0.62618,0 1.25201,0.004 1.87289,0.0176 1.15994,0.0176 2.30999,0.0635 3.45017,0.13053 0.18909,0.004 0.38312,0.0141 0.5775,0.0282 0.42686,0.0247 0.84913,0.0529 1.27106,0.0882 0.5969,0.0423 1.18886,0.0917 1.78082,0.14464 0.19403,0.0212 0.38841,0.0388 0.58243,0.06 0.38312,0.0388 0.77153,0.0776 1.15465,0.11995 0.29139,0.0353 0.58243,0.067 0.86854,0.1023 0.33972,0.0388 0.67945,0.0847 1.01423,0.13053 0.21343,0.0247 0.42686,0.0529 0.63571,0.0882 0.44626,0.06 0.89288,0.127 1.3342,0.19403 2.16923,0.33514 4.29437,0.74789 6.36623,1.22766 0.24271,0.06 0.48542,0.11642 0.72778,0.17639 0.0536,0.007 0.10689,0.0212 0.16016,0.0388 0.40287,0.0952 0.80081,0.19403 1.19874,0.29986 0.528814,0.13406 1.048104,0.27517 1.567044,0.41981 0.0342,0.0106 0.0681,0.0212 0.10195,0.0317 0.50483,0.14111 0.99977,0.28575 1.49437,0.43744 0.0536,0.0141 0.11183,0.0317 0.17004,0.0459 0.33478,0.10936 0.66957,0.20814 0.99942,0.32103 0.0875,0.0247 0.17498,0.0529 0.26211,0.0811 0.25718,0.0847 0.51435,0.16581 0.76659,0.25047 1.34902,0.45509 2.6737,0.93839 3.95958,1.4605 0.24729,0.0953 0.49,0.19403 0.73271,0.29634 1.09185,0.44802 2.15936,0.92427 3.20252,1.42169 0.19403,0.0917 0.38312,0.18345 0.5775,0.27517 0.33937,0.16933 0.67909,0.33514 1.01388,0.508 8.61766,-3.33375 20.68054,-3.24556 32.8355,1.00894 1.15464,0.4057 2.28529,0.83609 3.38666,1.29822 0.26706,0.10584 0.53376,0.22225 0.79587,0.33867 0.28646,0.11995 0.57256,0.24695 0.85408,0.37395 0.25717,0.10936 0.50941,0.2293 0.75706,0.34925 0.33478,0.15169 0.66463,0.31044 0.98989,0.46919 0.21802,0.1023 0.43639,0.21519 0.65017,0.32103 0.2861,0.14463 0.57256,0.2928 0.85372,0.44097 0.2914,0.15169 0.5775,0.30691 0.86396,0.46214 0.31044,0.16933 0.62089,0.33866 0.9218,0.51505 0.0921,0.0529 0.17957,0.10231 0.27164,0.15522 0.30092,0.17287 0.5969,0.34925 0.88795,0.52212 0.31079,0.18697 0.6163,0.37394 0.92216,0.56797 0.0483,0.0282 0.097,0.0635 0.14534,0.0917 0.3108,0.19402 0.6163,0.39511 0.92216,0.59972 0.27164,0.17286 0.53869,0.35278 0.80045,0.53622 0.36901,0.254 0.73272,0.51153 1.09185,0.77258 0.27164,0.19403 0.53869,0.39159 0.80045,0.59267 0.33514,0.25047 0.66499,0.508 0.99484,0.76906 0.24765,0.20108 0.49495,0.39864 0.73272,0.59972 0.0727,0.0564 0.14569,0.11642 0.21837,0.17639 0.25223,0.21166 0.49494,0.42333 0.73766,0.63853 0.17956,0.14816 0.35418,0.31044 0.52881,0.46919 h 0.005 c 4.65313,-5.48922 11.59687,-8.97114 19.35551,-8.97114 8.8409498,0 16.6288798,4.52261 21.1705298,11.37708 4.0029902,-1.22061 8.5887502,-1.91558 13.4641202,-1.91558 12.18848,0 22.57425,4.33211 26.55358,10.41753"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path72"
inkscape:connector-curvature="0" />
<path
d="m -146.72855,155.40086 c 0,5.28461 -6.57507,9.56733 -14.68543,9.56733 -8.11036,0 -14.68508,-4.28272 -14.68508,-9.56733 0,-5.28461 6.57472,-9.56733 14.68508,-9.56733 8.11036,0 14.68543,4.28272 14.68543,9.56733"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path74"
inkscape:connector-curvature="0" />
<path
d="m -85.885666,161.77203 c 0,6.52991 -13.3103,11.82511 -29.729994,11.82511 -16.41934,0 -29.73,-5.2952 -29.73,-11.82511 0,-6.52992 13.31066,-11.82159 29.73,-11.82159 16.419694,0 29.729994,5.29167 29.729994,11.82159"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path76"
inkscape:connector-curvature="0" />
<path
d="m -7.8416962,171.30056 c 0,5.23522 -6.4727698,9.47561 -14.4571798,9.47561 -7.98478,0 -14.45755,-4.24039 -14.45755,-9.47561 0,-5.23523 6.47277,-9.47562 14.45755,-9.47562 7.98441,0 14.4571798,4.24039 14.4571798,9.47562"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path78"
inkscape:connector-curvature="0" />
<path
d="m 23.340314,174.77894 c 0,3.31259 -4.20862,5.99723 -9.40011,5.99723 -5.1918202,0 -9.4004602,-2.68464 -9.4004602,-5.99723 0,-3.30905 4.20864,-5.99369 9.4004602,-5.99369 5.19149,0 9.40011,2.68464 9.40011,5.99369"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path80"
inkscape:connector-curvature="0" />
<path
d="m 13.940204,155.99 c 0,2.08844 -1.51622,3.78178 -3.38667,3.78178 -1.8707602,0 -3.3870102,-1.69334 -3.3870102,-3.78178 0,-2.09197 1.51625,-3.78531 3.3870102,-3.78531 1.87045,0 3.38667,1.69334 3.38667,3.78531"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path82"
inkscape:connector-curvature="0" />
<path
d="m -231.46329,150.11978 c 0,1.48166 -1.47109,2.68464 -3.28578,2.68464 -1.81468,0 -3.28577,-1.20298 -3.28577,-2.68464 0,-1.4852 1.47109,-2.68464 3.28577,-2.68464 1.81469,0 3.28578,1.19944 3.28578,2.68464"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path84"
inkscape:connector-curvature="0" />
<path
d="m -83.571096,202.01692 c 0,0 29.98435,19.21933 65.09209,5.16466 0,0 -31.27375,6.14892 -65.09209,-5.16466"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path86"
inkscape:connector-curvature="0" />
<path
d="m -238.03484,206.26436 c 0,0 20.78391,6.35 35.34057,0 0,0 -9.76277,15.20825 -35.34057,0"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path88"
inkscape:connector-curvature="0" />
<path
d="m -210.41022,209.64397 c 0,0 5.70618,4.49086 15.38217,2.97392 0,0 -6.3119,3.48897 -19.96899,-1.32997 l 4.58682,-1.64395"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path90"
inkscape:connector-curvature="0" />
<path
d="m -60.582326,208.06 c 0,0 27.08663,-0.81492 33.44333,-7.17197 0,0 -6.51475,6.62869 -28.2889,9.46502 l -5.15443,-2.29305"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path92"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 48 KiB

147
src/images/beach-cloud-005.svg

@ -0,0 +1,147 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="378.02652mm"
height="133.72331mm"
viewBox="0 0 378.02652 133.72331"
version="1.1"
id="svg4186"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="beach-cloud-005.svg">
<defs
id="defs4180" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="378.66652"
inkscape:cy="21.276904"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1051"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata4183">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(131.56087,-20.739535)">
<g
id="g376"
transform="matrix(0.06899099,0,0,-0.06899099,-958.47046,443.79029)">
<path
d="m 15465.5,5640.87 c 0,-104.33 113.3,-188.91 253,-188.91 139.8,0 253,84.58 253,188.91 0,14.31 -2.2,28.24 -6.3,41.64 187.5,9.73 334.8,106.4 334.8,224.29 0,124.36 -163.8,225.17 -365.9,225.17 -134.3,0 -251.7,-44.58 -315.3,-110.98 -88.3,-4.44 -153.3,-19.26 -153.3,-36.88 0,-14.56 44.4,-27.22 109.6,-33.67 -4.5,-14.13 -6.9,-28.71 -6.9,-43.64 0,-34.91 13,-67.95 36,-97.44 -82.3,-31.19 -138.7,-94.9 -138.7,-168.49"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path378"
inkscape:connector-curvature="0" />
</g>
<g
id="g380"
transform="matrix(0.07392246,0,0,-0.07392246,-958.47046,443.79029)">
<path
d="m 15656.7,4406.96 c 14.6,31.74 22.3,65 22.3,99.26 0,218.38 -313,395.43 -699.2,395.43 -327.5,0 -602.4,-127.37 -678.3,-299.31 -14.5,4.72 -30.1,9.07 -46.4,12.93 16.5,18.28 25.6,38.08 25.6,58.75 0,71.39 -107.7,132.33 -259.3,156.53 14.3,27.44 25.5,55.88 33.3,85.23 28.7,-8.97 61.7,-14.13 97,-14.13 109.5,0 198.3,49.54 198.3,110.63 0,61.09 -88.8,110.61 -198.3,110.61 -34.5,0 -67,-4.92 -95.2,-13.56 -62.4,250 -369.9,439.89 -739.9,439.89 -343.4,0 -633,-163.5 -722.7,-386.83 -202.9,-9.23 -350.9,-37.85 -350.9,-71.75 0,-32.28 134.2,-59.79 322.2,-70.31 0,-1.53 -0.1,-3.05 -0.1,-4.58 0,-18.47 1.4,-36.72 3.9,-54.71 -527.9,-2.88 -950.6,-74.08 -950.6,-161.56 0,-74.49 307.1,-137.25 724.8,-155.96 -217.8,-61.08 -368.4,-174.14 -383,-305.14 -102.5,-18.47 -183.3,-56.74 -219.7,-104.51 -312.5,-9.88 -554.3,-77.46 -554.3,-159.35 0,-88.67 283.6,-160.54 633.4,-160.54 224.9,0 422.3,29.69 534.8,74.45 107.3,-28.92 230.3,-45.38 361,-45.38 171.5,0 329.5,28.25 456.4,75.83 136.8,-51.69 322.7,-83.47 527.5,-83.47 277,0 519.5,58.18 652.8,145.17 120.3,18 216.6,48.39 270.5,85.71 101.8,-34.31 220.2,-54.35 346.8,-55.4 81.5,-96.93 342.6,-167.84 652.1,-167.84 374.7,0 678.5,103.94 678.5,232.12 0,124.17 -284.9,225.54 -643.3,231.79"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path382"
inkscape:connector-curvature="0" />
</g>
<g
id="g384"
transform="matrix(0.07392211,0,0,-0.07392211,-958.47046,443.79029)">
<path
d="m 16300,4175.23 c 0,-128.23 -303.7,-232.12 -678.4,-232.12 -309.6,0 -570.7,70.86 -652.1,167.79 -126.6,1.05 -245.1,21.09 -346.9,55.36 -53.8,-37.27 -150.1,-67.67 -270.5,-85.62 -133.3,-87.04 -375.8,-145.22 -652.8,-145.22 -204.7,0 -390.6,31.79 -527.5,83.52 -126.8,-47.63 -284.9,-75.83 -456.3,-75.83 -130.8,0 -253.8,16.41 -361.1,45.29 -112.4,-44.72 -309.9,-74.45 -534.7,-74.45 -349.8,0 -633.4,71.87 -633.4,160.59 0,20.37 15,39.94 42.4,57.93 90.5,-57.36 236.6,-94.59 401.5,-94.59 195.1,0 364,52.12 445.3,128 50.3,-7.35 106.2,-11.46 165.1,-11.46 2.9,0 5.7,0.05 8.5,0.05 69.4,-69.63 200.5,-116.59 350.8,-116.59 130.9,0 247,35.51 320.8,90.68 83.7,-30.31 176.8,-47.1 274.8,-47.1 193,0 366.7,65.28 488.1,169.51 61,-35.94 136.6,-57.18 218.4,-57.18 192.4,0 350.2,117.35 365.4,266.63 139.1,-73.25 335.1,-118.92 552.4,-118.92 114.9,0 223.9,12.79 321.7,35.69 20.5,-112.86 271.7,-201.96 578.6,-201.96 214.3,0 401.6,43.48 501.9,108.14 49.8,-32.36 78,-69.15 78,-108.14"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path386"
inkscape:connector-curvature="0" />
</g>
<g
id="g388"
transform="matrix(0.06855954,0,0,-0.06855954,-958.47046,443.79029)">
<path
d="m 15562.9,5676.37 c 0,-26.26 7.2,-51.29 20.1,-74.05 2.2,10.47 5.2,20.98 9.2,31.49 28,74.4 90.8,131.72 163.1,162.68 54.7,23.4 117.1,39.45 180.8,45.72 30.4,87.58 90.6,163.43 178.2,211.32 58.3,31.83 121.8,46.64 185.7,47.29 -67,42.96 -161.2,69.74 -265.6,69.74 -135.2,0 -253.3,-44.85 -317.3,-111.67 -88.9,-4.47 -154.2,-19.38 -154.2,-37.11 0,-14.65 44.6,-27.39 110.3,-33.89 -4.6,-14.21 -7,-28.88 -7,-43.91 0,-35.12 13,-68.38 36.2,-98.06 -82.7,-31.38 -139.5,-95.49 -139.5,-169.55"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path390"
inkscape:connector-curvature="0" />
</g>
<g
id="g392"
transform="matrix(0.07392246,0,0,-0.07392246,-958.47046,443.79029)">
<path
d="m 16299.6,4182.33 c 0,0.14 0,0.29 0,0.48 -0.2,2.14 -0.5,4.29 -0.9,6.44 0,0.29 -0.1,0.62 -0.1,0.9 -0.5,2.2 -0.9,4.4 -1.5,6.59 -0.1,0.05 -0.1,0.14 -0.1,0.19 -1.2,4.73 -3,9.36 -5,13.98 -0.1,0.15 -0.2,0.24 -0.2,0.39 -1,2.14 -2.1,4.24 -3.2,6.34 -0.1,0.24 -0.2,0.48 -0.4,0.72 -3.7,6.73 -8.2,13.41 -13.6,19.95 -0.2,0.19 -0.4,0.43 -0.6,0.67 -1.6,1.9 -3.3,3.77 -5,5.68 -0.3,0.33 -0.6,0.66 -0.9,1 -1.8,1.95 -3.7,3.91 -5.7,5.82 -0.1,0.14 -0.2,0.29 -0.3,0.43 -2.2,2.1 -4.5,4.2 -6.8,6.3 -0.2,0.14 -0.4,0.33 -0.5,0.48 -2,1.76 -4.1,3.53 -6.3,5.29 -0.8,0.67 -1.6,1.29 -2.3,1.91 -1.6,1.29 -3.2,2.53 -4.9,3.82 -1,0.76 -2,1.53 -3,2.29 -1.5,1.1 -3,2.15 -4.4,3.24 -1.3,0.86 -2.4,1.72 -3.7,2.58 -0.3,0.24 -0.6,0.43 -1,0.67 -2.4,1.62 -4.7,3.29 -7.2,4.87 0,0 0,0 -0.1,0 -108.5,70.34 -319.6,119.3 -565.2,123.6 14.6,31.74 22.3,65 22.3,99.26 0,218.38 -313,395.43 -699.2,395.43 -327.5,0 -602.4,-127.37 -678.3,-299.31 -14.5,4.72 -30.1,9.07 -46.4,12.93 16.5,18.28 25.6,38.08 25.6,58.75 0,71.39 -107.7,132.33 -259.3,156.53 14.3,27.44 25.5,55.88 33.3,85.23 28.7,-8.97 61.7,-14.13 97,-14.13 109.5,0 198.3,49.54 198.3,110.63 0,61.09 -88.8,110.61 -198.3,110.61 -34.5,0 -67,-4.92 -95.2,-13.56 -62.4,250 -369.9,439.89 -739.9,439.89 -343.4,0 -633,-163.5 -722.7,-386.83 -202.9,-9.23 -350.9,-37.85 -350.9,-71.75 0,-32.28 134.2,-59.79 322.2,-70.31 0,-1.53 -0.1,-3.05 -0.1,-4.58 0,-18.47 1.4,-36.72 3.9,-54.71 -527.9,-2.88 -950.6,-74.08 -950.6,-161.56 0,-33.93 63.8,-65.48 172.8,-91.48 -6.6,50.87 17.4,108.14 67.4,127.08 235.9,89.28 499.7,94.46 746.5,53.5 17.9,-2.96 35.8,-6.16 53.8,-9.55 116.4,187.64 280.7,383.03 514.1,414.23 88.4,11.82 203,12.33 286.5,-26.8 92.2,-43.24 161.4,-85.09 229.9,-161.97 16.1,-18 32,-37.68 46.7,-58.52 23.7,17.51 54.2,26.77 86.3,26.77 66.2,0 115.1,-71.2 109.4,-132.31 -5.7,-60.49 -50.5,-97.71 -104.9,-107.02 3,-11.64 5.5,-23.34 7.3,-35.12 4.6,-31.69 6.3,-64 7,-96.17 65.7,-22.66 127.8,-68.1 168.9,-116.53 52.9,-62.19 83.8,-140.88 88.8,-221.82 11.7,12.31 24.4,24.77 38.5,37.46 48.7,43.91 106.8,79.84 163.7,111.34 77.3,42.86 162.9,69.91 247.6,95.11 47.5,15.66 95.8,30.54 144.7,38.99 65.2,11.31 132.9,14.08 198.8,13.17 87.6,-1.19 181.8,-20.23 260,-60.41 8.7,-4.49 17.4,-9.02 26,-13.65 61.8,-20.57 121.1,-48.68 178.9,-82.08 95.8,-55.41 171.2,-140.45 228.2,-234.52 208,39.04 431.6,-2.72 629.2,-66.81 28.8,-9.3 57.2,-19.28 85.4,-29.82 0,0.9 0.1,1.76 0.1,2.62 0,2.39 -0.1,4.77 -0.4,7.16"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path394"
inkscape:connector-curvature="0" />
</g>
<g
id="g396"
transform="matrix(0.05712319,0,0,-0.05712319,-958.47046,443.79029)">
<path
d="m 16288.8,6012.27 c -6.3,1.05 -12.5,2.22 -18.8,3.21 -74.2,11.55 -149,20.2 -224.1,24.46 -37.1,2.09 -74.3,3.64 -111.5,3.76 -20.4,0.06 -40.9,0.06 -61.3,-0.49 -4.2,-0.13 -8.2,-0.25 -12.4,-0.37 -1.7,-0.06 -3.7,-0.19 -6.3,-0.31 -51.1,-3.03 -102.3,-7.91 -153.1,-15.44 85.2,-7.6 176.3,-13.65 271.9,-17.97 -281.9,-79.05 -476.8,-225.35 -495.6,-394.88 -132.7,-23.9 -237.2,-73.43 -284.4,-135.25 -303.5,-9.63 -555.5,-61.26 -662.3,-131.23 v 0 c -8.3,-5.44 -15.6,-10.93 -22.1,-16.55 -0.4,-0.43 -0.9,-0.81 -1.4,-1.18 -2.1,-1.85 -3.9,-3.76 -5.8,-5.68 -1.2,-1.17 -2.6,-2.34 -3.7,-3.52 -1,-1.11 -1.8,-2.22 -2.8,-3.33 -1.7,-2.04 -3.5,-4.02 -5,-6.06 -0.3,-0.36 -0.5,-0.74 -0.7,-1.11 -6.5,-9.01 -10.9,-18.28 -12.6,-27.73 -0.1,-0.68 -0.1,-1.42 -0.2,-2.09 -0.4,-2.6 -0.7,-5.13 -0.7,-7.72 v 0 0 c 0,-40.39 45.4,-78 123.9,-109.87 35.3,32.42 75.2,59.59 120,81.09 l 124.8,39.71 c 176.5,49.09 350.7,31.24 521.9,-9.88 27,44.15 60.8,84.23 100.6,118.01 77.5,65.96 161.4,95.97 253.4,107.59 17.4,116.1 77.3,223.93 167,300.14 1.5,1.23 3,2.4 4.5,3.64 2.7,3.02 5.5,6.05 8.2,9.08 99.7,84.67 231.9,126.11 362.1,113.82 12.6,-1.18 25.2,-3.03 37.7,-5.25 -1.5,6.73 -2.9,13.46 -4.1,20.25 -4.3,24.21 -6.6,47.87 -7.1,71.15"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path398"
inkscape:connector-curvature="0" />
</g>
<g
id="g400"
transform="matrix(0.06330668,0,0,-0.06330668,-958.47046,443.79029)">
<path
d="m 16300,5166.07 c 0,0 -188.7,-429.25 -667.8,-183.95 0,0 427.3,-115.01 667.8,183.95"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path402"
inkscape:connector-curvature="0" />
</g>
<g
id="g404"
transform="matrix(0.06005795,0,0,-0.06005795,-958.47046,443.79029)">
<path
d="m 15585,5227.35 c 0,0 218.1,-391.85 715,-32.3 0,0 -379.7,-181.8 -715,32.3"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path406"
inkscape:connector-curvature="0" />
</g>
<g
id="g408"
transform="matrix(0.07028356,0,0,-0.07028356,-958.47046,443.79029)">
<path
d="m 15792.6,4459.9 c 0,0 203.6,-158.76 507.4,-179.5 0,0 -409,-50.04 -507.4,179.5"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path410"
inkscape:connector-curvature="0" />
</g>
<g
id="g412"
transform="matrix(0.06450824,0,0,-0.06450824,-958.47046,443.79029)">
<path
d="m 15784.8,4644.8 c 0,0 348.8,-96.85 515.2,69.62 0,0 -145.3,-280.66 -515.2,-69.62"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path414"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

157
src/images/beach-cloud-006.svg

@ -0,0 +1,157 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="298.99631mm"
height="125.18659mm"
viewBox="0 0 298.99631 125.18659"
version="1.1"
id="svg4873"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="beach-cloud-006.svg">
<defs
id="defs4867" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="160.74669"
inkscape:cy="1185.1445"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1051"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata4870">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(73.902918,-337.21622)">
<g
id="g142"
transform="matrix(0.04581666,0,0,-0.04581666,-521.71816,541.98233)">
<path
d="m 15379.2,2840.6 c 8,21.56 12.4,43.81 12.4,66.52 0,172.4 -241.3,316.08 -561.2,348.11 10.5,27.02 16.2,55.05 16.2,83.92 0,54.67 -19.9,106.57 -55.5,153.38 49.7,-5.31 100.9,-8.16 153.3,-8.16 467.9,0 847.3,220.45 847.3,492.4 0,272.03 -379.4,492.48 -847.3,492.48 -467.9,0 -847.2,-220.45 -847.2,-492.48 0,-97.17 48.6,-187.64 132.2,-264.02 -4.2,0.07 -8.3,0.23 -12.5,0.23 -88.9,0 -173.4,-11.01 -250.1,-30.72 0.8,10.16 1.3,20.4 1.3,30.72 0,342.64 -445.2,620.44 -994.2,620.44 -549.1,0 -994.2,-277.8 -994.2,-620.44 v 0 c -0.3,0 -0.7,0 -1.1,0 -549.7,0 -995.3,-155.54 -995.3,-347.34 0,-37.65 17.3,-73.84 49,-107.79 -710.3,-30.19 -1258.23,-222.68 -1258.23,-455.75 0,-102.87 106.72,-197.89 286.93,-274.42 -20,-31.88 -30.6,-65.3 -30.6,-99.72 0,-217.9 425.7,-394.53 950.9,-394.53 394.9,0 733.6,99.87 877.3,242.08 471.7,-63.75 1106.2,-102.79 1804,-102.79 1456.6,0 2637.4,170.01 2637.4,379.67 0,115.27 -357.2,218.52 -920.8,288.21"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path144"
inkscape:connector-curvature="0" />
</g>
<g
id="g146"
transform="matrix(0.03998207,0,0,-0.03998207,-521.71816,541.98233)">
<path
d="m 15194.3,2330.17 c -610.6,0 -1105.6,-76.05 -1105.6,-169.94 0,-93.79 495,-169.85 1105.6,-169.85 610.7,0 1105.7,76.06 1105.7,169.85 0,93.89 -495,169.94 -1105.7,169.94"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path148"
inkscape:connector-curvature="0" />
</g>
<g
id="g150"
transform="matrix(0.0457581,0,0,-0.0457581,-521.71816,541.98233)">
<path
d="m 16300,2507.48 c -164.2,-187.11 -1274.6,-331.98 -2619.9,-331.98 -698.8,0 -1334,39.09 -1806.3,102.85 -143.9,-142.32 -483,-242.31 -878.4,-242.31 -525.9,0 -952.1,176.85 -952.1,395.04 0,34.46 10.7,67.92 30.6,99.84 -141.9,60.36 -238.35,131.91 -272.96,210.01 174.24,-46.57 396.86,-74.55 639.46,-74.55 65,0 128.6,2 190.4,5.93 162.9,-119.88 487.7,-201.53 861.9,-201.53 246.4,0 471.5,35.47 642.9,93.91 32.6,-118.81 286.5,-211.4 595.2,-211.4 175.7,0 333.6,30.07 443.2,77.79 47.3,-15.27 99.9,-23.9 155.5,-23.9 142.8,0 266.7,56.43 328.8,139.16 129.6,-114.57 394.2,-193.05 699.8,-193.05 233.3,0 442.7,45.87 586.5,118.34 175.6,-40.71 385.8,-64.45 611.7,-64.45 285.9,0 546.6,38.01 743.7,100.3"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path152"
inkscape:connector-curvature="0" />
</g>
<g
id="g154"
transform="matrix(0.03998207,0,0,-0.03998207,-521.71816,541.98233)">
<path
d="m 16300,2160.23 c 0,-93.79 -495,-169.85 -1105.7,-169.85 -595.2,0 -1080.6,72.36 -1104.5,162.88 -0.8,2.3 -1.1,4.68 -1.1,6.97 0,93.89 495.1,169.94 1105.6,169.94 338.9,0 642.4,-23.38 845.1,-60.44 162.6,-29.64 260.6,-67.85 260.6,-109.5"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path156"
inkscape:connector-curvature="0" />
</g>
<g
id="g158"
transform="matrix(0.03934284,0,0,-0.03934284,-521.71816,541.98233)">
<path
d="m 16300,2306.6 c -79.6,-104.73 -562,-185.25 -1145,-185.25 -329,0 -625.8,25.65 -836.3,66.89 -0.8,2.33 -1.2,4.76 -1.2,7.09 0,95.4 503.2,172.7 1123.7,172.7 344.4,0 652.7,-23.76 858.8,-61.43"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path160"
inkscape:connector-curvature="0" />
</g>
<g
id="g162"
transform="matrix(0.04571682,0,0,-0.04571682,-521.71816,541.98233)">
<path
d="m 15092.4,2920.95 c 93.2,-109.73 147.2,-249.24 154.1,-392.31 114.7,35.96 234.3,60.58 351.1,75.31 215.8,27.32 438.3,36.81 655.5,20.38 15.6,-1.16 31.2,-2.47 46.9,-3.94 -103.3,90.05 -426.3,169.46 -887.3,226.41 8.1,21.6 12.5,43.9 12.5,66.67 0,172.77 -241.9,316.76 -562.4,348.86 10.5,27.09 16.2,55.17 16.2,84.11 0,54.79 -20,106.8 -55.6,153.72 49.8,-5.33 101.1,-8.18 153.6,-8.18 468.9,0 849.1,220.92 849.1,493.47 0,272.63 -380.2,493.55 -849.1,493.55 -468.9,0 -849.1,-220.92 -849.1,-493.55 0,-97.38 48.7,-188.05 132.5,-264.6 -4.1,0.08 -8.3,0.23 -12.5,0.23 -89.1,0 -173.7,-11.03 -250.6,-30.79 0.8,10.19 1.2,20.45 1.2,30.79 0,343.39 -446.1,621.8 -996.3,621.8 -550.3,0 -996.3,-278.41 -996.3,-621.8 v 0 c -0.4,0 -0.8,0 -1.2,0 -550.9,0 -997.4,-155.88 -997.4,-348.09 0,-37.74 17.3,-74.01 49.1,-108.04 -699.2,-29.7 -1241.17,-216.29 -1260.38,-444.24 72.3,49.77 149.08,93.07 227.28,127.48 143.7,63.28 302.4,115.44 460,129.02 164.8,14.12 333.2,20.99 496.6,-9.33 143.4,-26.55 287.8,-59.35 425.9,-108.19 39.7,87.04 98.2,165.36 171.7,227.87 143.1,121.61 301.8,152.09 483.8,152.09 48.5,0 98,-9.88 146.3,-26.77 0.5,9.18 1,18.36 1.9,27.46 15.8,168.46 98.8,326.73 227.7,436.22 94.2,80.1 195.3,120.53 305.2,138.9 23.6,6.87 47,13.43 69.7,19.91 77.1,22.07 159,16.59 238.2,19.29 99.1,3.4 207.6,-20.37 296.3,-63.74 93.2,-45.53 185.5,-87.58 262.4,-157.03 67.4,-60.88 132.6,-116.67 190.1,-184.19 92.9,33.79 192.3,44.67 299.9,44.67 161.7,0 335.2,-108.88 436.2,-227.64 54.6,-64.27 95.6,-138.74 121.7,-218.14 161.4,-0.31 334.7,-109.04 435.5,-227.64"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path164"
inkscape:connector-curvature="0" />
</g>
<path
d="m 16.073923,416.56278 c 0,0 19.409835,22.09447 33.968975,0 0,0 -15.52928,14.00528 -33.968975,0"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path166"
inkscape:connector-curvature="0" />
<g
id="g168"
transform="matrix(0.03944338,0,0,-0.03944338,-521.71816,541.98233)">
<path
d="m 15574.2,2958.64 c 0,0 455.2,-264.47 725.8,184.52 0,0 -295.2,-295.24 -725.8,-184.52"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path170"
inkscape:connector-curvature="0" />
</g>
<g
id="g172"
transform="matrix(0.03856496,0,0,-0.03856496,-521.71816,541.98233)">
<path
d="m 16300,4013.69 c 0,0 -132.1,-352.27 -1126.1,-352.27 0,0 1038,-226.5 1126.1,352.27"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path174"
inkscape:connector-curvature="0" />
</g>
<g
id="g176"
transform="matrix(0.03944338,0,0,-0.03944338,-521.71816,541.98233)">
<path
d="m 15697.2,3666.02 c 0,0 316.6,157.41 602.8,-128.79 0,0 -202.8,273.59 -802,51.16 l -38.2,34.79 237.4,42.84"
style="fill:#b5d7f7;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path178"
inkscape:connector-curvature="0" />
</g>
<path
d="m -45.387021,429.42153 c 0,0 32.67075,13.57136 63.080194,6.13128 0,0 -41.084497,23.63963 -63.080194,-6.13128"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path180"
inkscape:connector-curvature="0" />
<g
id="g182"
transform="matrix(0.04200349,0,0,-0.04200349,-521.71816,541.98233)">
<path
d="m 16300,2601.94 c 0,0 -444.8,-210.64 -826,-135.56 0,0 606.5,-179.39 826,135.56"
style="fill:#e9f6fc;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path184"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

409
src/images/beach-island.svg

@ -0,0 +1,409 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="317.73895mm"
height="66.122116mm"
viewBox="0 0 317.73895 66.122116"
version="1.1"
id="svg1406"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="beach-island.svg">
<defs
id="defs1400">
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath380">
<path
d="M 0,2477 V 17469 H 35440 V 2477 Z"
id="path378"
inkscape:connector-curvature="0" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="1007.5944"
inkscape:cy="44.955187"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1051"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata1403">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(297.96472,-94.605614)">
<g
transform="matrix(0.03527778,0,0,-0.03527778,-297.96472,471.43403)"
id="g374">
<g
id="g376"
clip-path="url(#clipPath380)">
<path
d="m -750.496,8984.2 c 0,0 1318.957,-117 1678.984,-114.4 360.032,2.6 422.342,-8 1291.252,-0.1 868.92,8 962.39,23.8 1242.8,26.4 280.41,2.7 605.82,36.9 1183.94,44.8 578.12,8 605.82,-28.3 1405.5,-15.4 799.68,12.8 830.83,-10.9 1710.14,12.8 879.3,23.7 1205.57,30.3 1205.57,30.3 0,0 -426.67,75.2 -668.99,138.4 -242.33,63.3 -910.46,113.3 -1246.26,195.1 -335.79,81.7 -747.75,374.2 -834.29,403.2 -86.55,29 -865.46,139.7 -1277.42,203 -411.95,63.26 -363.49,131.8 -737.36,158.1 -373.88,26.4 -484.66,247.8 -484.66,247.8 0,0 -1090.47,84.4 -1336.26,47.5 -245.79,-36.9 -287.33,-195.1 -851.61,-52.8 -564.274,142.4 -591.965,232 -1149.32,263.6 -557.352,31.7 -616.2,-26.3 -616.2,-26.3 l -515.816,-1562"
style="fill:#140900;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path382"
inkscape:connector-curvature="0" />
<path
d="m 4756.08,9699.3 c 0,0 92.54,-116.2 267.77,-175.4 175.14,-59 484.75,-136.7 553.91,-116 69.05,20.9 54.37,60.3 341.67,39.8 287.21,-20.6 416.59,17.2 594.88,-63.5 41.9,-19 74.06,-27 98.83,-28.1 79.85,-3.6 80.22,65.2 80.22,65.2 0,0 -501.56,380.7 -692.53,425.8 -191.07,45.1 -380.73,156.2 -436.52,159.3 -55.79,3.2 -131.61,-23.58 -167.34,-34.98 -33.57,-10.7 -125.05,-111.72 -307.48,-132.52 -12.15,-1.4 -24.61,-2.5 -37.58,-3.1 -207.69,-10 -295.83,-136.5 -295.83,-136.5"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path384"
inkscape:connector-curvature="0" />
<path
d="m 4756.08,9699.3 c 0,0 92.54,-116.2 267.77,-175.4 175.14,-59 484.75,-136.7 553.91,-116 69.05,20.9 54.37,60.3 341.67,39.8 287.21,-20.6 416.59,17.2 594.88,-63.5 41.9,-19 74.06,-27 98.83,-28.1 79.85,-3.6 80.22,65.2 80.22,65.2 0,0 -501.56,380.7 -692.53,425.8 -191.07,45.1 -380.73,156.2 -436.52,159.3 -55.79,3.2 -131.61,-23.58 -167.34,-34.98 -33.57,-10.7 -125.05,-111.72 -307.48,-132.52 -12.15,-1.4 -24.61,-2.5 -37.58,-3.1 -207.69,-10 -295.83,-136.5 -295.83,-136.5"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path386"
inkscape:connector-curvature="0" />
<path
d="m 4757.29,9701.1 c 0,0 73.71,-109.7 236.46,-154.8 162.65,-45.1 454.06,-97.8 524.63,-71.1 70.48,26.8 61.8,65.4 339.63,68.7 277.73,3.2 409.6,52.1 572.24,-14.5 38.2,-15.7 68.48,-21.1 92.54,-20.1 -46.83,27 -108.24,61.8 -179.72,99.9 -164.37,87.4 -201.93,126.4 -330.38,63.6 -128.36,-62.7 -217.13,-119.9 -437.17,-114 -220.24,5.9 -328.34,-61.5 -340.02,-53.8 -11.69,7.7 -82.01,-11.8 14.78,164.9 96.88,176.7 209.33,204 193.73,217 -15.51,13 -68.28,33.2 -199.49,-13.4 -65.87,-23.3 -111.31,-16.5 -141.31,-3.6 -12.07,-2.4 -24.41,-4.5 -37.17,-6.2 -204.42,-27.5 -308.75,-162.6 -308.75,-162.6"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path388"
inkscape:connector-curvature="0" />
<path
d="m 4757.29,9701.1 c 0,0 73.71,-109.7 236.46,-154.8 162.65,-45.1 454.06,-97.8 524.63,-71.1 70.48,26.8 61.8,65.4 339.63,68.7 277.73,3.2 409.6,52.1 572.24,-14.5 38.2,-15.7 68.48,-21.1 92.54,-20.1 -46.83,27 -108.24,61.8 -179.72,99.9 -164.37,87.4 -201.93,126.4 -330.38,63.6 -128.36,-62.7 -217.13,-119.9 -437.17,-114 -220.24,5.9 -328.34,-61.5 -340.02,-53.8 -11.69,7.7 -82.01,-11.8 14.78,164.9 96.88,176.7 209.33,204 193.73,217 -15.51,13 -68.28,33.2 -199.49,-13.4 -65.87,-23.3 -111.31,-16.5 -141.31,-3.6 -12.07,-2.4 -24.41,-4.5 -37.17,-6.2 -204.42,-27.5 -308.75,-162.6 -308.75,-162.6"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path390"
inkscape:connector-curvature="0" />
<path
d="m 8861.36,8954.3 -0.02,-0.2 c -47.96,-2.4 -109.57,-4.1 -188.44,-5.5 -155.74,-2.6 -298.15,-13.1 -436.98,-25.9 -170.53,8.6 -311.73,21.2 -330.1,19.3 -31.93,-3 -671.42,-31.3 -1009.14,-45.9 -71.91,8 -147.47,17.7 -226.25,29.7 -927.2,140.4 -1291.84,198.3 -1291.84,198.3 l 57.79,373.5 c 0,0 346.39,114.2 523.83,116.9 269.51,4.3 531.19,-36.1 1120.18,-100.4 588.99,-64.3 873.59,-14.3 1132.74,-133.7 259.18,-119.3 718.88,-165.2 655.96,-269.4 -55.1,-91.8 341.43,-139.3 -7.73,-156.7"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path392"
inkscape:connector-curvature="0" />
<path
d="m 8861.36,8954.3 -0.02,-0.2 c -47.96,-2.4 -109.57,-4.1 -188.44,-5.5 -155.74,-2.6 -298.15,-13.1 -436.98,-25.9 -170.53,8.6 -311.73,21.2 -330.1,19.3 -31.93,-3 -671.42,-31.3 -1009.14,-45.9 -71.91,8 -147.47,17.7 -226.25,29.7 -927.2,140.4 -1291.84,198.3 -1291.84,198.3 l 57.79,373.5 c 0,0 346.39,114.2 523.83,116.9 269.51,4.3 531.19,-36.1 1120.18,-100.4 588.99,-64.3 873.59,-14.3 1132.74,-133.7 259.18,-119.3 718.88,-165.2 655.96,-269.4 -55.1,-91.8 341.43,-139.3 -7.73,-156.7"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path394"
inkscape:connector-curvature="0" />
<path
d="m 8861.36,8954.3 -0.02,-0.2 c -47.96,-2.4 -109.57,-4.1 -188.44,-5.5 -155.74,-2.6 -298.15,-13.1 -436.98,-25.9 -170.53,8.6 -311.73,21.2 -330.1,19.3 -31.93,-3 -671.42,-31.3 -1009.14,-45.9 -71.91,8 -147.47,17.7 -226.25,29.7 -927.2,140.4 -1291.84,198.3 -1291.84,198.3 l 319.73,269.5 457.34,-48.5 c 527.11,-11.7 169.36,62.7 826.12,9.5 656.79,-53.1 901.2,-31.5 1114.91,-109.2 213.74,-77.5 952.47,-208.4 764.67,-291.1"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path396"
inkscape:connector-curvature="0" />
<path
d="m 8861.36,8954.3 -0.02,-0.2 c -47.96,-2.4 -109.57,-4.1 -188.44,-5.5 -155.74,-2.6 -298.15,-13.1 -436.98,-25.9 -170.53,8.6 -311.73,21.2 -330.1,19.3 -31.93,-3 -671.42,-31.3 -1009.14,-45.9 -71.91,8 -147.47,17.7 -226.25,29.7 -927.2,140.4 -1291.84,198.3 -1291.84,198.3 l 319.73,269.5 457.34,-48.5 c 527.11,-11.7 169.36,62.7 826.12,9.5 656.79,-53.1 901.2,-31.5 1114.91,-109.2 213.74,-77.5 952.47,-208.4 764.67,-291.1"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path398"
inkscape:connector-curvature="0" />
<path
d="m 4753.8,9949.15 c -30.96,-0.73 -67.72,-1 -109.96,-0.82 -459.2,1.83 -1862.61,10.89 -1862.61,10.89 l 51.59,148.48 101.59,293.5 c 797.15,-59.9 1014.17,-103.4 1262.8,-170.4 248.95,-67 529.5,-126.8 599.48,-181.1 63.85,-49.2 264.11,-94.04 -42.89,-100.55"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path400"
inkscape:connector-curvature="0" />
<path
d="m 4753.8,9949.15 c -30.96,-0.73 -67.72,-1 -109.96,-0.82 -459.2,1.83 -1862.61,10.89 -1862.61,10.89 l 51.59,148.48 101.59,293.5 c 797.15,-59.9 1014.17,-103.4 1262.8,-170.4 248.95,-67 529.5,-126.8 599.48,-181.1 63.85,-49.2 264.11,-94.04 -42.89,-100.55"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path402"
inkscape:connector-curvature="0" />
<path
d="m 4753.8,9949.15 c -30.96,-0.73 -67.72,-1 -109.96,-0.82 -459.2,1.83 -1862.61,10.89 -1862.61,10.89 l 51.59,148.48 c 230.58,-12.8 554.01,-27.7 892.29,-32.6 625.28,-9.1 663.65,-41.2 886.8,-71.3 131.25,-17.67 152.21,-39.45 141.89,-54.65"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path404"
inkscape:connector-curvature="0" />
<path
d="m 4753.8,9949.15 c -30.96,-0.73 -67.72,-1 -109.96,-0.82 -459.2,1.83 -1862.61,10.89 -1862.61,10.89 l 51.59,148.48 c 230.58,-12.8 554.01,-27.7 892.29,-32.6 625.28,-9.1 663.65,-41.2 886.8,-71.3 131.25,-17.67 152.21,-39.45 141.89,-54.65"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path406"
inkscape:connector-curvature="0" />
<path
d="m 1852.7,10213.6 c 0,0 92.54,-116.3 267.78,-175.4 175.14,-59.11 484.74,-136.8 553.9,-116 69.06,20.78 54.37,60.19 341.67,39.71 287.21,-20.57 416.59,17.16 594.88,-63.51 41.9,-19 74.06,-27 98.83,-28.1 79.85,-3.6 80.22,65.22 80.22,65.22 0,0 -501.55,380.68 -692.53,425.78 -191.07,45.1 -380.73,156.2 -436.52,159.4 -55.79,3.2 -131.61,-23.7 -167.34,-35.1 -33.57,-10.7 -125.05,-111.7 -307.48,-132.5 -12.15,-1.4 -24.61,-2.5 -37.58,-3.1 -207.69,-10 -295.83,-136.4 -295.83,-136.4"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path408"
inkscape:connector-curvature="0" />
<path
d="m 1852.7,10213.6 c 0,0 92.54,-116.3 267.78,-175.4 175.14,-59.11 484.74,-136.8 553.9,-116 69.06,20.78 54.37,60.19 341.67,39.71 287.21,-20.57 416.59,17.16 594.88,-63.51 41.9,-19 74.06,-27 98.83,-28.1 79.85,-3.6 80.22,65.22 80.22,65.22 0,0 -501.55,380.68 -692.53,425.78 -191.07,45.1 -380.73,156.2 -436.52,159.4 -55.79,3.2 -131.61,-23.7 -167.34,-35.1 -33.57,-10.7 -125.05,-111.7 -307.48,-132.5 -12.15,-1.4 -24.61,-2.5 -37.58,-3.1 -207.69,-10 -295.83,-136.4 -295.83,-136.4"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path410"
inkscape:connector-curvature="0" />
<path
d="m 1852.7,10213.6 c 0,0 92.54,-116.3 267.78,-175.4 175.14,-59.11 484.74,-136.8 553.9,-116 69.06,20.78 54.37,60.19 341.67,39.71 287.21,-20.57 416.59,17.16 594.88,-63.51 41.9,-19 74.06,-27 98.83,-28.1 -52.49,31.1 -121.24,71.27 -200.91,115.54 -183.14,101.66 -227.81,143.96 -351.59,91.96 -123.71,-51.8 -207.22,-101.53 -436.03,-76.8 -228.99,24.8 -331.02,-33.51 -344.25,-24.84 -13.24,8.67 -83.21,-4.83 -9.02,163.94 74.29,168.8 186.74,186.5 168.67,200.8 -17.99,14.4 -75.62,39.1 -204.66,3.7 -64.81,-17.7 -112.87,-7 -145.86,8.5 -12.15,-1.4 -24.61,-2.5 -37.58,-3.1 -207.69,-10 -295.83,-136.4 -295.83,-136.4"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path412"
inkscape:connector-curvature="0" />
<path
d="m 1852.7,10213.6 c 0,0 92.54,-116.3 267.78,-175.4 175.14,-59.11 484.74,-136.8 553.9,-116 69.06,20.78 54.37,60.19 341.67,39.71 287.21,-20.57 416.59,17.16 594.88,-63.51 41.9,-19 74.06,-27 98.83,-28.1 -52.49,31.1 -121.24,71.27 -200.91,115.54 -183.14,101.66 -227.81,143.96 -351.59,91.96 -123.71,-51.8 -207.22,-101.53 -436.03,-76.8 -228.99,24.8 -331.02,-33.51 -344.25,-24.84 -13.24,8.67 -83.21,-4.83 -9.02,163.94 74.29,168.8 186.74,186.5 168.67,200.8 -17.99,14.4 -75.62,39.1 -204.66,3.7 -64.81,-17.7 -112.87,-7 -145.86,8.5 -12.15,-1.4 -24.61,-2.5 -37.58,-3.1 -207.69,-10 -295.83,-136.4 -295.83,-136.4"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path414"
inkscape:connector-curvature="0" />
<path
d="m 2571.78,10086.4 v -0.1 c -18.98,-7 -43.45,-14.6 -74.83,-23.4 -61.97,-17.3 -118.13,-41.5 -172.73,-67.73 -68.56,-6.99 -125.66,-7.11 -132.88,-10.72 -12.55,-6.15 -265.91,-95.25 -399.74,-142.05 -29.18,1.6 -59.93,4.7 -92.09,9.8 -378.56,59.6 -527.6,85.74 -527.6,85.74 v 394.16 c 0,0 131.14,151.2 201.75,170.6 107.26,29.6 214.15,12 453.09,0 238.93,-11.9 349.38,66.8 460.13,-33.3 110.76,-100 296.98,-104.9 278.31,-219.2 -16.31,-100.7 144.81,-113.1 6.59,-163.8"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path416"
inkscape:connector-curvature="0" />
<path
d="m 2571.78,10086.4 v -0.1 c -18.98,-7 -43.45,-14.6 -74.83,-23.4 -61.97,-17.3 -118.13,-41.5 -172.73,-67.73 -68.56,-6.99 -125.66,-7.11 -132.88,-10.72 -12.55,-6.15 -265.91,-95.25 -399.74,-142.05 -29.18,1.6 -59.93,4.7 -92.09,9.8 -378.56,59.6 -527.6,85.74 -527.6,85.74 v 394.16 c 0,0 131.14,151.2 201.75,170.6 107.26,29.6 214.15,12 453.09,0 238.93,-11.9 349.38,66.8 460.13,-33.3 110.76,-100 296.98,-104.9 278.31,-219.2 -16.31,-100.7 144.81,-113.1 6.59,-163.8"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path418"
inkscape:connector-curvature="0" />
<path
d="m 2571.78,10086.4 v -0.1 c -18.98,-7 -43.45,-14.6 -74.83,-23.4 -61.97,-17.3 -118.13,-41.5 -172.73,-67.73 -68.56,-6.99 -125.66,-7.11 -132.88,-10.72 -12.55,-6.15 -265.91,-95.25 -399.74,-142.05 -29.18,1.6 -59.93,4.7 -92.09,9.8 -378.56,59.6 -527.6,85.74 -527.6,85.74 l 110.92,310.36 185.43,-7.7 c 211.02,37 63.7,81.1 328.99,87 265.29,6 361.46,51.3 451.51,-9.6 90.05,-60.7 392.84,-128 323.02,-231.6"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path420"
inkscape:connector-curvature="0" />
<path
d="m 2571.78,10086.4 v -0.1 c -18.98,-7 -43.45,-14.6 -74.83,-23.4 -61.97,-17.3 -118.13,-41.5 -172.73,-67.73 -68.56,-6.99 -125.66,-7.11 -132.88,-10.72 -12.55,-6.15 -265.91,-95.25 -399.74,-142.05 -29.18,1.6 -59.93,4.7 -92.09,9.8 -378.56,59.6 -527.6,85.74 -527.6,85.74 l 110.92,310.36 185.43,-7.7 c 211.02,37 63.7,81.1 328.99,87 265.29,6 361.46,51.3 451.51,-9.6 90.05,-60.7 392.84,-128 323.02,-231.6"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path422"
inkscape:connector-curvature="0" />
<path
d="m 5552.22,9515.1 v -0.2 c -24.85,-7.3 -56.9,-15.3 -97.98,-24.6 -81.14,-18.1 -154.68,-43.6 -226.17,-71.3 -89.77,-7.3 -164.54,-7.5 -173.99,-11.3 -16.43,-6.4 -348.18,-100.3 -523.41,-149.6 -38.21,1.7 -78.47,5 -120.58,10.3 -495.68,62.8 -690.83,90.3 -690.83,90.3 v 415.2 c 0,0 171.71,159.2 264.18,179.71 140.43,31.14 280.39,12.56 593.25,0 312.85,-12.56 457.46,70.29 602.49,-35.11 145.03,-105.4 388.86,-110.4 364.42,-230.9 -21.37,-106 189.6,-119.1 8.62,-172.5"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path424"
inkscape:connector-curvature="0" />
<path
d="m 5552.22,9515.1 v -0.2 c -24.85,-7.3 -56.9,-15.3 -97.98,-24.6 -81.14,-18.1 -154.68,-43.6 -226.17,-71.3 -89.77,-7.3 -164.54,-7.5 -173.99,-11.3 -16.43,-6.4 -348.18,-100.3 -523.41,-149.6 -38.21,1.7 -78.47,5 -120.58,10.3 -495.68,62.8 -690.83,90.3 -690.83,90.3 v 415.2 c 0,0 171.71,159.2 264.18,179.71 140.43,31.14 280.39,12.56 593.25,0 312.85,-12.56 457.46,70.29 602.49,-35.11 145.03,-105.4 388.86,-110.4 364.42,-230.9 -21.37,-106 189.6,-119.1 8.62,-172.5"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path426"
inkscape:connector-curvature="0" />
<path
d="m 5552.22,9515.1 v -0.2 c -24.85,-7.3 -56.9,-15.3 -97.98,-24.6 -81.14,-18.1 -154.68,-43.6 -226.17,-71.3 -89.77,-7.3 -164.54,-7.5 -173.99,-11.3 -16.43,-6.4 -348.18,-100.3 -523.41,-149.6 -38.21,1.7 -78.47,5 -120.58,10.3 -495.68,62.8 -690.83,90.3 -690.83,90.3 l 145.23,326.9 242.81,-8.1 c 276.29,38.9 83.4,85.4 430.77,91.6 347.36,6.4 473.28,54.1 591.2,-10 117.91,-64 514.37,-134.9 422.95,-244"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path428"
inkscape:connector-curvature="0" />
<path
d="m 5552.22,9515.1 v -0.2 c -24.85,-7.3 -56.9,-15.3 -97.98,-24.6 -81.14,-18.1 -154.68,-43.6 -226.17,-71.3 -89.77,-7.3 -164.54,-7.5 -173.99,-11.3 -16.43,-6.4 -348.18,-100.3 -523.41,-149.6 -38.21,1.7 -78.47,5 -120.58,10.3 -495.68,62.8 -690.83,90.3 -690.83,90.3 l 145.23,326.9 242.81,-8.1 c 276.29,38.9 83.4,85.4 430.77,91.6 347.36,6.4 473.28,54.1 591.2,-10 117.91,-64 514.37,-134.9 422.95,-244"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path430"
inkscape:connector-curvature="0" />
<path
d="m 1520.52,9917.9 c 0,0 -169.72,-42.2 -353.22,0 -183.37,42.18 -484.612,137 -519.265,187.1 -34.523,50.1 10.371,72.6 -224.98,199.8 -235.352,127 -301.114,219.8 -505.3519,247.2 -48.0431,6.4 -79.2891,16.3 -98.9761,27.8 -63.661,36.9 -4.985,89.3 -4.985,89.3 0,0 706.313,39.5 889.684,-21.1 183.5,-60.7 422.394,-70.7 467.414,-96 45.03,-25.2 79.55,-83.2 96.87,-109.6 16.28,-24.8 -0.92,-146.8 119.58,-253.2 8.01,-7.1 16.54,-14.1 25.86,-20.9 148.85,-110.8 107.37,-250.4 107.37,-250.4"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path432"
inkscape:connector-curvature="0" />
<path
d="m 1520.52,9917.9 c 0,0 -169.72,-42.2 -353.22,0 -183.37,42.18 -484.612,137 -519.265,187.1 -34.523,50.1 10.371,72.6 -224.98,199.8 -235.352,127 -301.114,219.8 -505.3519,247.2 -48.0431,6.4 -79.2891,16.3 -98.9761,27.8 -63.661,36.9 -4.985,89.3 -4.985,89.3 0,0 706.313,39.5 889.684,-21.1 183.5,-60.7 422.394,-70.7 467.414,-96 45.03,-25.2 79.55,-83.2 96.87,-109.6 16.28,-24.8 -0.92,-146.8 119.58,-253.2 8.01,-7.1 16.54,-14.1 25.86,-20.9 148.85,-110.8 107.37,-250.4 107.37,-250.4"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path434"
inkscape:connector-curvature="0" />
<path
d="m 1520.52,9917.9 c 0,0 -169.72,-42.2 -353.22,0 -183.37,42.18 -484.612,137 -519.265,187.1 -34.523,50.1 10.371,72.6 -224.98,199.8 -235.352,127 -301.114,219.8 -505.3519,247.2 -48.0431,6.4 -79.2891,16.3 -98.9761,27.8 66.421,-2.5 152.9214,-6.2 251.2378,-12.2 225.8982,-13.9 295.9882,-4 345.3442,-104.8 49.355,-100.8 70.093,-179.9 264.754,-274.8 194.789,-94.9 222.226,-189.75 239.679,-189.75 17.457,0 58.938,-44.97 147.278,119.85 88.21,164.8 18.11,234 44.1,236 25.99,2 90.83,-8 158.3,-98.9 34,-45.6 79.55,-61.4 117.87,-66 8.01,-7.1 16.54,-14.1 25.86,-20.9 148.85,-110.8 107.37,-250.4 107.37,-250.4"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path436"
inkscape:connector-curvature="0" />
<path
d="m 1520.52,9917.9 c 0,0 -169.72,-42.2 -353.22,0 -183.37,42.18 -484.612,137 -519.265,187.1 -34.523,50.1 10.371,72.6 -224.98,199.8 -235.352,127 -301.114,219.8 -505.3519,247.2 -48.0431,6.4 -79.2891,16.3 -98.9761,27.8 66.421,-2.5 152.9214,-6.2 251.2378,-12.2 225.8982,-13.9 295.9882,-4 345.3442,-104.8 49.355,-100.8 70.093,-179.9 264.754,-274.8 194.789,-94.9 222.226,-189.75 239.679,-189.75 17.457,0 58.938,-44.97 147.278,119.85 88.21,164.8 18.11,234 44.1,236 25.99,2 90.83,-8 158.3,-98.9 34,-45.6 79.55,-61.4 117.87,-66 8.01,-7.1 16.54,-14.1 25.86,-20.9 148.85,-110.8 107.37,-250.4 107.37,-250.4"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path438"
inkscape:connector-curvature="0" />
<path
d="m 483.43,10088.4 c -12.598,-0.8 -27.563,-1.1 -44.754,-0.9 -186.914,2 -758.16,11.9 -758.16,11.9 l 20.996,162.1 41.351,320.5 c 324.4729,-65.4 412.813,-112.9 514.016,-186.1 101.332,-73.1 215.527,-138.4 244.012,-197.7 25.992,-53.7 107.5,-102.7 -17.461,-109.8"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path440"
inkscape:connector-curvature="0" />
<path
d="m 483.43,10088.4 c -12.598,-0.8 -27.563,-1.1 -44.754,-0.9 -186.914,2 -758.16,11.9 -758.16,11.9 l 20.996,162.1 41.351,320.5 c 324.4729,-65.4 412.813,-112.9 514.016,-186.1 101.332,-73.1 215.527,-138.4 244.012,-197.7 25.992,-53.7 107.5,-102.7 -17.461,-109.8"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path442"
inkscape:connector-curvature="0" />
<path
d="m 483.43,10088.4 c -12.598,-0.8 -27.563,-1.1 -44.754,-0.9 -186.914,2 -758.16,11.9 -758.16,11.9 l 20.996,162.1 c 93.851,-13.9 225.5075,-30.2 363.1989,-35.6 254.5161,-9.9 270.1371,-45 360.9651,-77.8 53.429,-19.3 61.957,-43.1 57.754,-59.7"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path444"
inkscape:connector-curvature="0" />
<path
d="m 483.43,10088.4 c -12.598,-0.8 -27.563,-1.1 -44.754,-0.9 -186.914,2 -758.16,11.9 -758.16,11.9 l 20.996,162.1 c 93.851,-13.9 225.5075,-30.2 363.1989,-35.6 254.5161,-9.9 270.1371,-45 360.9651,-77.8 53.429,-19.3 61.957,-43.1 57.754,-59.7"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path446"
inkscape:connector-curvature="0" />
<path
d="m 872.488,9787.6 v -0.1 c -15.883,-5.8 -36.359,-12.1 -62.609,-19.4 -51.848,-14.3 -98.84,-34.4 -144.52,-56.2 -57.359,-5.8 -105.136,-5.9 -111.175,-8.9 -10.5,-5.1 -222.489,-79 -334.454,-117.8 -24.414,1.3 -50.136,3.9 -77.046,8.1 -316.735,49.5 -441.43,71.1 -441.43,71.1 l 92.801,257.5 75.996,211.1 c 7.746,0 179.1717,9.9 379.082,0 199.906,-9.9 292.316,55.3 384.984,-27.7 92.672,-83 248.477,-87 232.86,-181.8 -13.653,-83.6 121.156,-93.8 5.511,-135.9"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path448"
inkscape:connector-curvature="0" />
<path
d="m 872.488,9787.6 v -0.1 c -15.883,-5.8 -36.359,-12.1 -62.609,-19.4 -51.848,-14.3 -98.84,-34.4 -144.52,-56.2 -57.359,-5.8 -105.136,-5.9 -111.175,-8.9 -10.5,-5.1 -222.489,-79 -334.454,-117.8 -24.414,1.3 -50.136,3.9 -77.046,8.1 -316.735,49.5 -441.43,71.1 -441.43,71.1 l 92.801,257.5 75.996,211.1 c 7.746,0 179.1717,9.9 379.082,0 199.906,-9.9 292.316,55.3 384.984,-27.7 92.672,-83 248.477,-87 232.86,-181.8 -13.653,-83.6 121.156,-93.8 5.511,-135.9"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path450"
inkscape:connector-curvature="0" />
<path
d="m 872.488,9787.6 v -0.1 c -15.883,-5.8 -36.359,-12.1 -62.609,-19.4 -51.848,-14.3 -98.84,-34.4 -144.52,-56.2 -57.359,-5.8 -105.136,-5.9 -111.175,-8.9 -10.5,-5.1 -222.489,-79 -334.454,-117.8 -24.414,1.3 -50.136,3.9 -77.046,8.1 -316.735,49.5 -441.43,71.1 -441.43,71.1 l 92.801,257.5 155.1481,-6.4 c 176.5469,30.68 53.28909,67.26 275.2539,72.16 221.961,5 302.426,42.54 377.766,-7.9 75.343,-50.36 328.679,-106.26 270.265,-192.16"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path452"
inkscape:connector-curvature="0" />
<path
d="m 872.488,9787.6 v -0.1 c -15.883,-5.8 -36.359,-12.1 -62.609,-19.4 -51.848,-14.3 -98.84,-34.4 -144.52,-56.2 -57.359,-5.8 -105.136,-5.9 -111.175,-8.9 -10.5,-5.1 -222.489,-79 -334.454,-117.8 -24.414,1.3 -50.136,3.9 -77.046,8.1 -316.735,49.5 -441.43,71.1 -441.43,71.1 l 92.801,257.5 155.1481,-6.4 c 176.5469,30.68 53.28909,67.26 275.2539,72.16 221.961,5 302.426,42.54 377.766,-7.9 75.343,-50.36 328.679,-106.26 270.265,-192.16"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path454"
inkscape:connector-curvature="0" />
<path
d="m 990.547,9408.1 c 12.993,-55.4 124.563,-33.6 306.363,-33 181.66,0.6 111.57,42.9 223.27,64.7 111.7,21.7 119.45,-47.5 246.64,-63.3 127.19,-15.9 202.53,108.6 283,166 80.46,57.4 101.33,29.7 145.43,39.6 44.11,9.9 44.11,160.1 106.46,302.4 0,0 -27.31,13.4 -67.47,28.7 -42.67,16.2 -99.63,34.38 -153.31,40.48 -103.83,11.89 -319.23,81.02 -495.91,106.72 -176.54,25.8 -347.84,29.7 -443.92,-29.1 -21.4,-13.1 -39.12,-27.2 -54.34,-42.94 -53.3,-55.16 -75.48,-129.56 -111.834,-240.26 -46.731,-142.3 2.621,-284.6 15.621,-340"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path456"
inkscape:connector-curvature="0" />
<path
d="m 990.547,9408.1 c 12.993,-55.4 124.563,-33.6 306.363,-33 181.66,0.6 111.57,42.9 223.27,64.7 111.7,21.7 119.45,-47.5 246.64,-63.3 127.19,-15.9 202.53,108.6 283,166 80.46,57.4 101.33,29.7 145.43,39.6 44.11,9.9 44.11,160.1 106.46,302.4 0,0 -27.31,13.4 -67.47,28.7 -42.67,16.2 -99.63,34.38 -153.31,40.48 -103.83,11.89 -319.23,81.02 -495.91,106.72 -176.54,25.8 -347.84,29.7 -443.92,-29.1 -21.4,-13.1 -39.12,-27.2 -54.34,-42.94 -53.3,-55.16 -75.48,-129.56 -111.834,-240.26 -46.731,-142.3 2.621,-284.6 15.621,-340"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path458"
inkscape:connector-curvature="0" />
<path
d="m 990.547,9408.1 c 12.993,-55.4 124.563,-33.6 306.363,-33 181.66,0.6 111.57,42.9 223.27,64.7 111.7,21.7 119.45,-47.5 246.64,-63.3 127.19,-15.9 202.53,108.6 283,166 80.46,57.4 101.33,29.7 145.43,39.6 44.11,9.9 44.11,160.1 106.46,302.4 0,0 -27.31,13.4 -67.47,28.7 -59.07,-45.1 -58.68,-140.6 -90.05,-221.1 -38.06,-97.5 -77.97,-89.6 -176.54,-104.1 -98.58,-14.5 -133.37,-104.2 -353.09,-76.5 -219.87,27.7 -69.7,66.6 -89.13,298.9 -19.56,232.2 -136.38,72.1 -180.48,71.1 -44.11,-1 -216.85,-60.2 -242.84,-12.8 -16.93,31 -17.19,85.58 -15.35,119.66 -53.3,-55.16 -75.48,-129.56 -111.834,-240.26 -46.731,-142.3 2.621,-284.6 15.621,-340"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path460"
inkscape:connector-curvature="0" />
<path
d="m 990.547,9408.1 c 12.993,-55.4 124.563,-33.6 306.363,-33 181.66,0.6 111.57,42.9 223.27,64.7 111.7,21.7 119.45,-47.5 246.64,-63.3 127.19,-15.9 202.53,108.6 283,166 80.46,57.4 101.33,29.7 145.43,39.6 44.11,9.9 44.11,160.1 106.46,302.4 0,0 -27.31,13.4 -67.47,28.7 -59.07,-45.1 -58.68,-140.6 -90.05,-221.1 -38.06,-97.5 -77.97,-89.6 -176.54,-104.1 -98.58,-14.5 -133.37,-104.2 -353.09,-76.5 -219.87,27.7 -69.7,66.6 -89.13,298.9 -19.56,232.2 -136.38,72.1 -180.48,71.1 -44.11,-1 -216.85,-60.2 -242.84,-12.8 -16.93,31 -17.19,85.58 -15.35,119.66 -53.3,-55.16 -75.48,-129.56 -111.834,-240.26 -46.731,-142.3 2.621,-284.6 15.621,-340"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path462"
inkscape:connector-curvature="0" />
<path
d="m 4094.09,8921.4 c 23.83,-58.9 228.44,-35.7 561.83,-35.1 333.15,0.7 204.61,45.7 409.46,68.9 204.84,23.1 219.05,-50.6 452.3,-67.4 233.25,-16.9 371.42,115.7 518.98,176.8 147.56,61 185.83,31.5 266.71,42.1 80.88,10.5 80.88,170.4 195.22,321.9 0,0 -50.07,14.3 -123.73,30.6 -78.23,17.2 -182.7,36.6 -281.15,43.1 -190.41,12.6 -585.42,86.2 -909.42,113.6 -323.76,27.4 -637.89,31.6 -814.1,-31 -39.24,-13.9 -71.73,-29 -99.65,-45.7 -97.73,-58.8 -138.41,-137.9 -205.09,-255.8 -85.69,-151.5 4.82,-303 28.64,-362"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path464"
inkscape:connector-curvature="0" />
<path
d="m 4094.09,8921.4 c 23.83,-58.9 228.44,-35.7 561.83,-35.1 333.15,0.7 204.61,45.7 409.46,68.9 204.84,23.1 219.05,-50.6 452.3,-67.4 233.25,-16.9 371.42,115.7 518.98,176.8 147.56,61 185.83,31.5 266.71,42.1 80.88,10.5 80.88,170.4 195.22,321.9 0,0 -50.07,14.3 -123.73,30.6 -78.23,17.2 -182.7,36.6 -281.15,43.1 -190.41,12.6 -585.42,86.2 -909.42,113.6 -323.76,27.4 -637.89,31.6 -814.1,-31 -39.24,-13.9 -71.73,-29 -99.65,-45.7 -97.73,-58.8 -138.41,-137.9 -205.09,-255.8 -85.69,-151.5 4.82,-303 28.64,-362"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path466"
inkscape:connector-curvature="0" />
<path
d="m 4094.09,8921.4 c 23.83,-58.9 228.44,-35.7 561.83,-35.1 333.15,0.7 204.61,45.7 409.46,68.9 204.84,23.1 219.05,-50.6 452.3,-67.4 233.25,-16.9 371.42,115.7 518.98,176.8 147.56,61 185.83,31.5 266.71,42.1 80.88,10.5 80.88,170.4 195.22,321.9 0,0 -50.07,14.3 -123.73,30.6 -108.32,-48 -107.6,-149.7 -165.13,-235.4 -69.81,-103.8 -142.98,-95.4 -323.76,-110.8 -180.78,-15.5 -244.56,-110.9 -647.52,-81.4 -403.19,29.4 -127.82,70.8 -163.44,318.1 -35.87,247.2 -250.11,76.8 -330.99,75.7 -80.88,-1 -397.66,-64.1 -445.32,-13.6 -31.05,33 -31.53,91.1 -28.16,127.4 -97.73,-58.8 -138.41,-137.9 -205.09,-255.8 -85.69,-151.5 4.82,-303 28.64,-362"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path468"
inkscape:connector-curvature="0" />
<path
d="m 4094.09,8921.4 c 23.83,-58.9 228.44,-35.7 561.83,-35.1 333.15,0.7 204.61,45.7 409.46,68.9 204.84,23.1 219.05,-50.6 452.3,-67.4 233.25,-16.9 371.42,115.7 518.98,176.8 147.56,61 185.83,31.5 266.71,42.1 80.88,10.5 80.88,170.4 195.22,321.9 0,0 -50.07,14.3 -123.73,30.6 -108.32,-48 -107.6,-149.7 -165.13,-235.4 -69.81,-103.8 -142.98,-95.4 -323.76,-110.8 -180.78,-15.5 -244.56,-110.9 -647.52,-81.4 -403.19,29.4 -127.82,70.8 -163.44,318.1 -35.87,247.2 -250.11,76.8 -330.99,75.7 -80.88,-1 -397.66,-64.1 -445.32,-13.6 -31.05,33 -31.53,91.1 -28.16,127.4 -97.73,-58.8 -138.41,-137.9 -205.09,-255.8 -85.69,-151.5 4.82,-303 28.64,-362"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path470"
inkscape:connector-curvature="0" />
<path
d="m 1272.05,9101.1 c -13,-55.4 -124.57,-33.6 -306.37,-33 -181.66,0.6 -111.567,42.9 -223.27,64.7 -111.703,21.6 -119.449,-47.5 -246.637,-63.3 -127.191,-15.9 -202.539,108.6 -283.003,166 -80.457,57.4 -101.332,29.7 -145.4341,39.6 -44.1015,9.9 -44.1015,160.1 -106.4492,302.4 0,0 27.3008,13.4 67.4649,28.7 42.6601,16.2 99.6284,34.4 153.3124,40.5 103.828,11.9 319.227,81 495.902,106.7 176.547,25.8 347.844,29.7 443.924,-29.1 21.39,-13.1 39.12,-27.3 54.34,-43 53.29,-55.1 75.48,-129.5 111.83,-240.2 46.73,-142.3 -2.62,-284.7 -15.61,-340"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path472"
inkscape:connector-curvature="0" />
<path
d="m 1272.05,9101.1 c -13,-55.4 -124.57,-33.6 -306.37,-33 -181.66,0.6 -111.567,42.9 -223.27,64.7 -111.703,21.6 -119.449,-47.5 -246.637,-63.3 -127.191,-15.9 -202.539,108.6 -283.003,166 -80.457,57.4 -101.332,29.7 -145.4341,39.6 -44.1015,9.9 -44.1015,160.1 -106.4492,302.4 0,0 27.3008,13.4 67.4649,28.7 42.6601,16.2 99.6284,34.4 153.3124,40.5 103.828,11.9 319.227,81 495.902,106.7 176.547,25.8 347.844,29.7 443.924,-29.1 21.39,-13.1 39.12,-27.3 54.34,-43 53.29,-55.1 75.48,-129.5 111.83,-240.2 46.73,-142.3 -2.62,-284.7 -15.61,-340"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path474"
inkscape:connector-curvature="0" />
<path
d="m 1272.05,9101.1 c -13,-55.4 -124.57,-33.6 -306.37,-33 -181.66,0.6 -111.567,42.9 -223.27,64.7 -111.703,21.6 -119.449,-47.5 -246.637,-63.3 -127.191,-15.9 -202.539,108.6 -283.003,166 -80.457,57.4 -101.332,29.7 -145.4341,39.6 -44.1015,9.9 -44.1015,160.1 -106.4492,302.4 0,0 27.3008,13.4 67.4649,28.7 59.0664,-45.1 58.6718,-140.6 90.0434,-221.1 38.066,-97.5 77.968,-89.6 176.55,-104.1 98.575,-14.5 133.36,-104.2 353.09,-76.5 219.863,27.7 69.695,66.6 89.125,298.8 19.555,232.3 136.379,72.2 180.485,71.2 44.101,-1 216.835,-60.3 242.835,-12.8 16.93,31 17.19,85.6 15.35,119.6 53.29,-55.1 75.48,-129.5 111.83,-240.2 46.73,-142.3 -2.62,-284.7 -15.61,-340"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path476"
inkscape:connector-curvature="0" />
<path
d="m 1272.05,9101.1 c -13,-55.4 -124.57,-33.6 -306.37,-33 -181.66,0.6 -111.567,42.9 -223.27,64.7 -111.703,21.6 -119.449,-47.5 -246.637,-63.3 -127.191,-15.9 -202.539,108.6 -283.003,166 -80.457,57.4 -101.332,29.7 -145.4341,39.6 -44.1015,9.9 -44.1015,160.1 -106.4492,302.4 0,0 27.3008,13.4 67.4649,28.7 59.0664,-45.1 58.6718,-140.6 90.0434,-221.1 38.066,-97.5 77.968,-89.6 176.55,-104.1 98.575,-14.5 133.36,-104.2 353.09,-76.5 219.863,27.7 69.695,66.6 89.125,298.8 19.555,232.3 136.379,72.2 180.485,71.2 44.101,-1 216.835,-60.3 242.835,-12.8 16.93,31 17.19,85.6 15.35,119.6 53.29,-55.1 75.48,-129.5 111.83,-240.2 46.73,-142.3 -2.62,-284.7 -15.61,-340"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path478"
inkscape:connector-curvature="0" />
<path
d="m -57.2617,9340.3 c 27.2578,-13.9 33.75,-18.8 85.6758,-58.3 51.9297,-39.6 268.7269,-108.8 124.6249,-109.8 -144.09759,-0.9 -254.441,11.9 -254.441,11.9 l 44.1403,156.2"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path480"
inkscape:connector-curvature="0" />
<path
d="m -57.2617,9340.3 c 27.2578,-13.9 33.75,-18.8 85.6758,-58.3 51.9297,-39.6 268.7269,-108.8 124.6249,-109.8 -144.09759,-0.9 -254.441,11.9 -254.441,11.9 l 44.1403,156.2"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path482"
inkscape:connector-curvature="0" />
<path
d="m 677.566,8809.2 c -301.242,-4 -908.847,0 -908.847,0 l 53.554,213.4 34.786,138.4 c 150.55428,-19.7 301.109,-27.7 301.109,-27.7 0,0 202.539,-71.1 218.156,-71.1 15.621,0 244.012,-47.4 244.012,-47.4 0,0 20.82,-5.3 57.23,-35.6 25.61,-21.3 82.563,-61.6 118.399,-94.3 43.183,-39.5 46.074,-73.6 -118.399,-75.7"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path484"
inkscape:connector-curvature="0" />
<path
d="m 677.566,8809.2 c -301.242,-4 -908.847,0 -908.847,0 l 53.554,213.4 34.786,138.4 c 150.55428,-19.7 301.109,-27.7 301.109,-27.7 0,0 202.539,-71.1 218.156,-71.1 15.621,0 244.012,-47.4 244.012,-47.4 0,0 20.82,-5.3 57.23,-35.6 25.61,-21.3 82.563,-61.6 118.399,-94.3 43.183,-39.5 46.074,-73.6 -118.399,-75.7"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path486"
inkscape:connector-curvature="0" />
<path
d="m 677.566,8809.2 c -301.242,-4 -908.847,0 -908.847,0 l 53.554,213.4 c 280.766,-5.4 286.278,-17.7 303.082,-36.8 20.743,-23.8 169.59,-26.4 183.5,-26.4 13.786,0 -38.066,-73.8 128.11,-73.8 166.176,0 159.219,7.9 346.137,0 4.464,-0.2 8.664,-0.4 12.863,-0.7 43.183,-39.5 46.074,-73.6 -118.399,-75.7"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path488"
inkscape:connector-curvature="0" />
<path
d="m 677.566,8809.2 c -301.242,-4 -908.847,0 -908.847,0 l 53.554,213.4 c 280.766,-5.4 286.278,-17.7 303.082,-36.8 20.743,-23.8 169.59,-26.4 183.5,-26.4 13.786,0 -38.066,-73.8 128.11,-73.8 166.176,0 159.219,7.9 346.137,0 4.464,-0.2 8.664,-0.4 12.863,-0.7 43.183,-39.5 46.074,-73.6 -118.399,-75.7"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path490"
inkscape:connector-curvature="0" />
<path
d="m 4347.78,9384 v -0.1 c -33.51,-9.2 -76.7,-19.2 -132.08,-30.8 -109.37,-22.6 -208.51,-54.4 -304.86,-88.9 -121.01,-9.2 -221.8,-9.4 -234.53,-14.1 -22.16,-8.1 -469.34,-125.3 -705.54,-186.7 -51.5,2 -105.77,6.2 -162.54,12.8 -668.15,78.4 -931.21,112.7 -931.21,112.7 V 9707 c 0,0 231.46,198.7 356.1,224.2 189.3,38.9 377.96,15.72 799.68,0 421.71,-15.6 616.65,87.8 812.13,-43.8 195.49,-131.4 524.17,-137.8 491.22,-288 -28.8,-132.4 255.58,-148.7 11.63,-215.4"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path492"
inkscape:connector-curvature="0" />
<path
d="m 4347.78,9384 v -0.1 c -33.51,-9.2 -76.7,-19.2 -132.08,-30.8 -109.37,-22.6 -208.51,-54.4 -304.86,-88.9 -121.01,-9.2 -221.8,-9.4 -234.53,-14.1 -22.16,-8.1 -469.34,-125.3 -705.54,-186.7 -51.5,2 -105.77,6.2 -162.54,12.8 -668.15,78.4 -931.21,112.7 -931.21,112.7 V 9707 c 0,0 231.46,198.7 356.1,224.2 189.3,38.9 377.96,15.72 799.68,0 421.71,-15.6 616.65,87.8 812.13,-43.8 195.49,-131.4 524.17,-137.8 491.22,-288 -28.8,-132.4 255.58,-148.7 11.63,-215.4"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path494"
inkscape:connector-curvature="0" />
<path
d="m 4347.78,9384 v -0.1 c -33.51,-9.2 -76.7,-19.2 -132.08,-30.8 -109.37,-22.6 -208.51,-54.4 -304.86,-88.9 -121.01,-9.2 -221.8,-9.4 -234.53,-14.1 -22.16,-8.1 -469.34,-125.3 -705.54,-186.7 -51.5,2 -105.77,6.2 -162.54,12.8 -668.15,78.4 -931.21,112.7 -931.21,112.7 l 195.77,407.9 327.3,-10.1 c 372.42,48.6 112.42,106.6 580.65,114.3 468.23,7.9 637.97,67.5 796.91,-12.5 158.93,-79.8 693.35,-168.3 570.13,-304.5"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path496"
inkscape:connector-curvature="0" />
<path
d="m 4347.78,9384 v -0.1 c -33.51,-9.2 -76.7,-19.2 -132.08,-30.8 -109.37,-22.6 -208.51,-54.4 -304.86,-88.9 -121.01,-9.2 -221.8,-9.4 -234.53,-14.1 -22.16,-8.1 -469.34,-125.3 -705.54,-186.7 -51.5,2 -105.77,6.2 -162.54,12.8 -668.15,78.4 -931.21,112.7 -931.21,112.7 l 195.77,407.9 327.3,-10.1 c 372.42,48.6 112.42,106.6 580.65,114.3 468.23,7.9 637.97,67.5 796.91,-12.5 158.93,-79.8 693.35,-168.3 570.13,-304.5"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path498"
inkscape:connector-curvature="0" />
<path
d="m 2487.11,8872.2 c 604.74,-8 1824.5,0 1824.5,0 l 0.26,0.8 c 5.01,17.3 88.02,307.8 38.47,396.9 -10.53,19.2 -32.93,39.1 -61.66,58.9 -76.67,52.8 -197.1,103.8 -252.7,133.1 -252.17,133 -506.19,61 -506.19,61 0,0 -406.58,-142.9 -437.94,-142.9 -31.35,0 -489.86,-95.1 -489.86,-95.1 0,0 -41.63,-10.6 -114.88,-71.4 -51.38,-42.8 -165.75,-123.6 -237.68,-189.4 -86.69,-79.3 -92.49,-147.7 237.68,-151.9"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path500"
inkscape:connector-curvature="0" />
<path
d="m 2487.11,8872.2 c 604.74,-8 1824.5,0 1824.5,0 l 0.26,0.8 c 5.01,17.3 88.02,307.8 38.47,396.9 -10.53,19.2 -32.93,39.1 -61.66,58.9 -76.67,52.8 -197.1,103.8 -252.7,133.1 -252.17,133 -506.19,61 -506.19,61 0,0 -406.58,-142.9 -437.94,-142.9 -31.35,0 -489.86,-95.1 -489.86,-95.1 0,0 -41.63,-10.6 -114.88,-71.4 -51.38,-42.8 -165.75,-123.6 -237.68,-189.4 -86.69,-79.3 -92.49,-147.7 237.68,-151.9"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path502"
inkscape:connector-curvature="0" />
<path
d="m 2487.11,8872.2 c 604.74,-8 1824.5,0 1824.5,0 l 0.26,0.8 c 5.01,17.3 88.02,307.8 38.47,396.9 -10.53,19.2 -32.93,39.1 -61.66,58.9 -436.09,-18.8 -663.5,-68.4 -693.01,-102.1 -41.63,-47.7 -340.45,-52.9 -368.38,-52.9 -27.67,0 76.42,-148.3 -257.18,-148.3 -333.59,0 -319.63,15.8 -694.86,0 -8.96,-0.4 -17.39,-0.8 -25.82,-1.4 -86.69,-79.3 -92.49,-147.7 237.68,-151.9"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path504"
inkscape:connector-curvature="0" />
<path
d="m 2487.11,8872.2 c 604.74,-8 1824.5,0 1824.5,0 l 0.26,0.8 c 5.01,17.3 88.02,307.8 38.47,396.9 -10.53,19.2 -32.93,39.1 -61.66,58.9 -436.09,-18.8 -663.5,-68.4 -693.01,-102.1 -41.63,-47.7 -340.45,-52.9 -368.38,-52.9 -27.67,0 76.42,-148.3 -257.18,-148.3 -333.59,0 -319.63,15.8 -694.86,0 -8.96,-0.4 -17.39,-0.8 -25.82,-1.4 -86.69,-79.3 -92.49,-147.7 237.68,-151.9"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path506"
inkscape:connector-curvature="0" />
<path
d="m 763.473,8903.4 c 17.023,-52.7 163.179,-32 401.337,-31.4 237.98,0.6 146.16,40.9 292.49,61.7 146.33,20.6 156.48,-45.3 323.1,-60.4 166.62,-15.1 265.32,103.6 370.73,158.3 105.41,54.7 132.74,28.3 190.52,37.7 57.78,9.4 57.78,152.6 139.46,288.3 0,0 -35.77,12.8 -88.39,27.3 -55.89,15.5 -130.51,32.8 -200.84,38.6 -136.01,11.4 -418.19,77.3 -649.64,101.8 -231.27,24.6 -455.67,28.3 -581.541,-27.7 -28.027,-12.5 -51.238,-26.1 -71.183,-41 -69.817,-52.6 -98.875,-123.5 -146.504,-229 -61.211,-135.7 3.437,-271.4 20.461,-324.2"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path508"
inkscape:connector-curvature="0" />
<path
d="m 763.473,8903.4 c 17.023,-52.7 163.179,-32 401.337,-31.4 237.98,0.6 146.16,40.9 292.49,61.7 146.33,20.6 156.48,-45.3 323.1,-60.4 166.62,-15.1 265.32,103.6 370.73,158.3 105.41,54.7 132.74,28.3 190.52,37.7 57.78,9.4 57.78,152.6 139.46,288.3 0,0 -35.77,12.8 -88.39,27.3 -55.89,15.5 -130.51,32.8 -200.84,38.6 -136.01,11.4 -418.19,77.3 -649.64,101.8 -231.27,24.6 -455.67,28.3 -581.541,-27.7 -28.027,-12.5 -51.238,-26.1 -71.183,-41 -69.817,-52.6 -98.875,-123.5 -146.504,-229 -61.211,-135.7 3.437,-271.4 20.461,-324.2"
style="fill:#7a6c5f;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path510"
inkscape:connector-curvature="0" />
<path
d="m 763.473,8903.4 c 17.023,-52.7 163.179,-32 401.337,-31.4 237.98,0.6 146.16,40.9 292.49,61.7 146.33,20.6 156.48,-45.3 323.1,-60.4 166.62,-15.1 265.32,103.6 370.73,158.3 105.41,54.7 132.74,28.3 190.52,37.7 57.78,9.4 57.78,152.6 139.46,288.3 0,0 -35.77,12.8 -88.39,27.3 -77.38,-42.9 -76.86,-134 -117.96,-210.7 -49.86,-93 -102.14,-85.4 -231.28,-99.3 -129.13,-13.8 -174.7,-99.2 -462.54,-72.8 -288.03,26.3 -91.31,63.4 -116.76,284.8 -25.62,221.4 -178.66,68.8 -236.44,67.8 -57.77,-0.9 -284.06,-57.4 -318.107,-12.1 -22.184,29.5 -22.528,81.5 -20.117,114 -69.817,-52.6 -98.875,-123.5 -146.504,-229 -61.211,-135.7 3.437,-271.4 20.461,-324.2"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path512"
inkscape:connector-curvature="0" />
<path
d="m 763.473,8903.4 c 17.023,-52.7 163.179,-32 401.337,-31.4 237.98,0.6 146.16,40.9 292.49,61.7 146.33,20.6 156.48,-45.3 323.1,-60.4 166.62,-15.1 265.32,103.6 370.73,158.3 105.41,54.7 132.74,28.3 190.52,37.7 57.78,9.4 57.78,152.6 139.46,288.3 0,0 -35.77,12.8 -88.39,27.3 -77.38,-42.9 -76.86,-134 -117.96,-210.7 -49.86,-93 -102.14,-85.4 -231.28,-99.3 -129.13,-13.8 -174.7,-99.2 -462.54,-72.8 -288.03,26.3 -91.31,63.4 -116.76,284.8 -25.62,221.4 -178.66,68.8 -236.44,67.8 -57.77,-0.9 -284.06,-57.4 -318.107,-12.1 -22.184,29.5 -22.528,81.5 -20.117,114 -69.817,-52.6 -98.875,-123.5 -146.504,-229 -61.211,-135.7 3.437,-271.4 20.461,-324.2"
style="fill:#4d3e32;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path514"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 43 KiB

265
src/images/beach-sailboat.svg

@ -0,0 +1,265 @@
<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="241.51552mm"
height="250.02376mm"
viewBox="0 0 241.51552 250.02376"
version="1.1"
id="svg1263"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="beach-sailboat.svg">
<defs
id="defs1257" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="123.55012"
inkscape:cy="361.05727"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1051"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata1260">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(138.14466,5.6606845)">
<path
d="m 93.8406,219.64393 h 0.65158 V 206.28424 H 93.8406 v 13.35969"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path18"
inkscape:connector-curvature="0" />
<path
d="m 85.15168,219.64393 h 0.65158 v -13.35969 h -0.65158 v 13.35969"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path20"
inkscape:connector-curvature="0" />
<path
d="m 76.46241,219.64393 h 0.65158 v -13.35969 h -0.65158 v 13.35969"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path22"
inkscape:connector-curvature="0" />
<path
d="m 66.48374,219.01599 h 0.65158 v -12.4072 h 35.08939 v 6.40292 h 0.65159 v -7.05203 H 66.48374 v 13.05631"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path24"
inkscape:connector-curvature="0" />
<path
d="M 56.84409,219.60513 37.262806,205.12007 h 2.027412 v -2.46239 H -64.107885 l -4.34446,18.24567 117.300372,3.6195 7.996063,-4.91772"
style="fill:#dddddd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path26"
inkscape:connector-curvature="0" />
<path
d="m 102.8643,212.79299 c 0,0 -8.10965,24.90964 -25.48749,31.57008 h -191.44615 c 0,0 -22.3012,-2.31775 -23.74935,-23.45972 H 10.761788 c 0,0 59.084632,1.15711 92.102512,-8.11036"
style="fill:#0482d8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path28"
inkscape:connector-curvature="0" />
<g
id="g30"
transform="matrix(-0.03629342,0,0,-0.03629342,181.63146,612.93118)">
<path
d="m 5160.88,16300 c 0,0 494.78,-3705.5 2074.87,-4749.6 H 5320.49 c 0,0 -1165.11,1286.2 -159.61,4749.6"
style="fill:#cecece;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path32"
inkscape:connector-curvature="0" />
</g>
<g
id="g34"
transform="matrix(-0.0372043,0,0,-0.0372043,181.63146,612.93118)">
<path
d="M 4979.09,11027.6 H 4833.6 V 16300 h 145.49 v -5272.4"
style="fill:#eeebe9;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path36"
inkscape:connector-curvature="0" />
</g>
<path
d="m -10.977165,-5.6606845 c 0,0 56.692612,114.4774445 7.899,198.4693145 0,0 84.437025,6.37188 106.449025,-14.48188 0,0 -28.27078,-142.708763 -114.348025,-183.9874345"
style="fill:#e5e5e5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03795042"
id="path40"
inkscape:connector-curvature="0" />
<path
d="M 41.896893,216.41249 31.615185,208.16102 H 6.272338 v 8.25147 h 35.624555"
style="fill:#369be0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path42"
inkscape:connector-curvature="0" />
<path
d="m 13.585421,208.16102 4.055179,8.25147 H 6.272338 v -8.25147 h 7.313083"
style="fill:#48b3ef;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path44"
inkscape:connector-curvature="0" />
<path
d="m 20.971175,208.16102 4.99604,8.25147 h 3.765195 l -5.140677,-8.25147 h -3.620558"
style="fill:#48b3ef;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path46"
inkscape:connector-curvature="0" />
<path
d="m -25.876655,216.41249 h 26.64601 v -8.25147 h -26.64601 v 8.25147"
style="fill:#369be0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path48"
inkscape:connector-curvature="0" />
<path
d="m -11.395125,208.16102 4.99604,8.25147 h 3.76519 l -5.14067,-8.25147 h -3.62056"
style="fill:#48b3ef;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path50"
inkscape:connector-curvature="0" />
<path
d="m -18.563215,208.16102 4.05483,8.25147 h -11.36827 v -8.25147 h 7.31344"
style="fill:#48b3ef;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path52"
inkscape:connector-curvature="0" />
<path
d="m -58.241195,216.41249 h 26.64601 v -8.25147 h -26.64601 v 8.25147"
style="fill:#369be0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path54"
inkscape:connector-curvature="0" />
<path
d="m -43.759665,208.16102 4.99604,8.25147 h 3.7652 l -5.14104,-8.25147 h -3.6202"
style="fill:#48b3ef;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path56"
inkscape:connector-curvature="0" />
<path
d="m -50.928105,208.16102 4.05518,8.25147 h -11.36827 v -8.25147 h 7.31309"
style="fill:#48b3ef;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path58"
inkscape:connector-curvature="0" />
<path
d="m 57.89184,230.69293 c 0,2.42711 1.969203,4.39561 4.398433,4.39561 2.429227,0 4.398787,-1.9685 4.398787,-4.39561 0,-2.43064 -1.96956,-4.39914 -4.398787,-4.39914 -2.42923,0 -4.398433,1.9685 -4.398433,4.39914"
style="fill:#c6c6c6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path60"
inkscape:connector-curvature="0" />
<path
d="m 60.345056,233.29291 c -0.790575,-0.59267 -1.302104,-1.53812 -1.302104,-2.59998 0,-1.79564 1.453798,-3.24908 3.247321,-3.24908 0.768702,0 1.47461,0.26811 2.030587,0.71614 -0.618773,1.54164 -1.788583,3.53483 -3.975804,5.13292"
style="fill:#969696;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path62"
inkscape:connector-curvature="0" />
<path
d="m 64.32086,228.15999 c 0.74154,0.59267 1.21673,1.50636 1.21673,2.53294 0,1.79211 -1.453797,3.24556 -3.247317,3.24556 -0.729546,0 -1.402998,-0.23989 -1.945217,-0.64558 2.187221,-1.59809 3.357031,-3.59128 3.975804,-5.13292"
style="fill:#a5a5a5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path64"
inkscape:connector-curvature="0" />
<path
d="m 45.003456,230.69293 c 0,2.42711 1.969204,4.39561 4.398434,4.39561 2.429226,0 4.398433,-1.9685 4.398433,-4.39561 0,-2.43064 -1.969207,-4.39914 -4.398433,-4.39914 -2.42923,0 -4.398434,1.9685 -4.398434,4.39914"
style="fill:#c6c6c6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path66"
inkscape:connector-curvature="0" />
<path
d="m 47.456318,233.29291 c -0.79022,-0.59267 -1.30175,-1.53812 -1.30175,-2.59998 0,-1.79564 1.453798,-3.24908 3.247322,-3.24908 0.76835,0 1.474258,0.26811 2.030587,0.71614 -0.619125,1.54164 -1.788584,3.53483 -3.976159,5.13292"
style="fill:#969696;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path68"
inkscape:connector-curvature="0" />
<path
d="m 51.432477,228.15999 c 0.741539,0.59267 1.216731,1.50636 1.216731,2.53294 0,1.79211 -1.45415,3.24556 -3.247318,3.24556 -0.729899,0 -1.40335,-0.23989 -1.945572,-0.64558 2.187575,-1.59809 3.357034,-3.59128 3.976159,-5.13292"
style="fill:#a5a5a5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path70"
inkscape:connector-curvature="0" />
<path
d="m 32.114718,230.69293 c 0,2.42711 1.969207,4.39561 4.398434,4.39561 2.429229,0 4.398433,-1.9685 4.398433,-4.39561 0,-2.43064 -1.969204,-4.39914 -4.398433,-4.39914 -2.429227,0 -4.398434,1.9685 -4.398434,4.39914"
style="fill:#c6c6c6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path72"
inkscape:connector-curvature="0" />
<path
d="m 34.567935,233.29291 c -0.790575,-0.59267 -1.30175,-1.53812 -1.30175,-2.59998 0,-1.79564 1.453798,-3.24908 3.246967,-3.24908 0.768704,0 1.474258,0.26811 2.030589,0.71614 -0.618773,1.54164 -1.788583,3.53483 -3.975806,5.13292"
style="fill:#969696;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path74"
inkscape:connector-curvature="0" />
<path
d="m 38.543741,228.15999 c 0.74154,0.59267 1.216732,1.50636 1.216732,2.53294 0,1.79211 -1.453798,3.24556 -3.247321,3.24556 -0.729544,0 -1.402996,-0.23989 -1.945217,-0.64558 2.187223,-1.59809 3.357033,-3.59128 3.975806,-5.13292"
style="fill:#a5a5a5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path76"
inkscape:connector-curvature="0" />
<path
d="m -101.14391,232.97541 c 0,2.43063 1.969205,4.39913 4.398435,4.39913 2.42958,0 4.39879,-1.9685 4.39879,-4.39913 0,-2.42712 -1.96921,-4.39562 -4.39879,-4.39562 -2.42923,0 -4.398435,1.9685 -4.398435,4.39562"
style="fill:#c6c6c6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path78"
inkscape:connector-curvature="0" />
<path
d="m -98.690695,235.57891 c -0.79022,-0.59267 -1.3021,-1.53812 -1.3021,-2.6035 0,-1.79212 1.45415,-3.24556 3.24732,-3.24556 0.7687,0 1.47461,0.26811 2.03059,0.71261 -0.61877,1.54517 -1.78858,3.53836 -3.97581,5.13645"
style="fill:#969696;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path80"
inkscape:connector-curvature="0" />
<path
d="m -94.714885,230.44246 c 0.74154,0.5962 1.21673,1.50989 1.21673,2.53295 0,1.79563 -1.4538,3.24908 -3.24732,3.24908 -0.72954,0 -1.403,-0.23989 -1.94522,-0.64558 2.18723,-1.59809 3.35704,-3.59128 3.97581,-5.13645"
style="fill:#a5a5a5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path82"
inkscape:connector-curvature="0" />
<path
d="m -114.03265,232.97541 c 0,2.43063 1.96956,4.39913 4.39879,4.39913 2.42922,0 4.39843,-1.9685 4.39843,-4.39913 0,-2.42712 -1.96921,-4.39562 -4.39843,-4.39562 -2.42923,0 -4.39879,1.9685 -4.39879,4.39562"
style="fill:#c6c6c6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path84"
inkscape:connector-curvature="0" />
<path
d="m -111.57908,235.57891 c -0.79057,-0.59267 -1.3021,-1.53812 -1.3021,-2.6035 0,-1.79212 1.45379,-3.24556 3.24732,-3.24556 0.76835,0 1.47426,0.26811 2.03059,0.71261 -0.61878,1.54517 -1.78859,3.53836 -3.97581,5.13645"
style="fill:#969696;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path86"
inkscape:connector-curvature="0" />
<path
d="m -107.60327,230.44246 c 0.74153,0.5962 1.21673,1.50989 1.21673,2.53295 0,1.79563 -1.4538,3.24908 -3.24732,3.24908 -0.7299,0 -1.40335,-0.23989 -1.94522,-0.64558 2.18722,-1.59809 3.35703,-3.59128 3.97581,-5.13645"
style="fill:#a5a5a5;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path88"
inkscape:connector-curvature="0" />
<path
d="m -138.14466,220.90335 h 0.65194 v -12.41778 h 56.187975 v 12.41778 h 0.65194 v -13.07042 h -57.491855 v 13.07042"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path90"
inkscape:connector-curvature="0" />
<path
d="m -92.346685,220.90335 h 0.65158 v -12.74233 h -0.65158 v 12.74233"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path92"
inkscape:connector-curvature="0" />
<path
d="m -101.03561,220.90335 h 0.65158 v -12.74233 h -0.65158 v 12.74233"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path94"
inkscape:connector-curvature="0" />
<path
d="m -109.72453,220.90335 h 0.65158 v -12.74233 h -0.65158 v 12.74233"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path96"
inkscape:connector-curvature="0" />
<path
d="m -118.41344,220.90335 h 0.65158 v -12.74233 h -0.65158 v 12.74233"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path98"
inkscape:connector-curvature="0" />
<path
d="m -127.10236,220.90335 h 0.65158 v -12.74233 h -0.65158 v 12.74233"
style="fill:#bababa;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path100"
inkscape:connector-curvature="0" />
<path
d="m -59.945815,199.98716 h 94.51375 v 2.67052 h -94.51375 v -2.67052"
style="fill:#29637c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path102"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Loading…
Cancel
Save