Compare commits

..

No commits in common. "master" and "1.0" have entirely different histories.
master ... 1.0

189 changed files with 6744 additions and 50765 deletions

2
.gitignore vendored
View File

@ -1,2 +0,0 @@
*.pyc
*.zip

View File

@ -1 +0,0 @@
plugin_path: orientation

View File

@ -1,11 +1,7 @@
# CaLiÉc
FR :
Le projet CaLiÉc consiste à documenter et automatiser une procédure pour réaliser, en utilisant des données libres (OpenStreetMap) et avec le logiciel libre QGIS, des cartes dorientation très détaillées, à échelle rapprochée, pour de multiples usages.
EN:
CaLiÉc project consists in documenting and automating a procedure to realize, using feee data (OpenStreetMap) and with free software QGIS, detailed orientation maps at a small scale, for muliple usage.
# Installation et utilisation
Le plugin est disponible dans le gestionnaire d'extension de QGIS.
[Voir le wiki du projet pour plus de détails](https://forge.chapril.org/linux_alpes/caliec/wiki/CaLi%C3%89c)

View File

@ -1,53 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="en_US" sourcelanguage="fr_FR">
<context>
<name>Orientation</name>
<message>
<source>Zone étendue</source>
<translation>Large area</translation>
</message>
<message>
<source>La zone est vraiment trop étendue, descendre en-dessous de 1:20000</source>
<translation>The area is too large, lower the scale below 1:20000</translation>
</message>
<message>
<source>La zone est étendue et le téléchargement risque de prendre longtemps.
Continuer ?</source>
<translation>The area is large and the downloading might take time.
Continue?</translation>
</message>
<message>
<source>Sélectionnez un dossier de travail pour enregistrer le projet QGIS</source>
<translation>Select a working directory to save the QGIS project</translation>
</message>
<message>
<source>Attention</source>
<translation>Warning</translation>
</message>
<message>
<source>Vous n&apos;avez pas installé l&apos;extension QuickOSM</source>
<translation>You haven&apos;t installed QuickOSM extension</translation>
</message>
<message>
<source>Chargement</source>
<translation>Loading</translation>
</message>
<message>
<source>Récupération des data en ligne</source>
<translation>Gettin gonline data</translation>
</message>
<message>
<source>Erreur</source>
<translation>Error</translation>
</message>
<message>
<source>Les champs suivants sont en doublons et ont é supprimés au profit de leur doublon en minuscule :
-
- </source>
<translation>The following fields were duplicated and have been deleted using the lower-case field in priority:
-
- </translation>
</message>
</context>
</TS>

11
orientation/i18n/fr.ts Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="fr" sourcelanguage="en">
<context>
<name>@default</name>
<message>
<location filename="test_translations.py" line="48"/>
<source>Good morning</source>
<translation>Bonjour</translation>
</message>
</context>
</TS>

View File

@ -1,2 +0,0 @@
TRANSLATIONS = en.ts
SOURCES = ../orientation.py

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -6,7 +6,7 @@
name=CaLiÉc
qgisMinimumVersion=3.0
description=Réaliser des cartes dorientation
version=2.3
version=1.0
author=Association Linux-Alpes
email=caliec@linux-alpes.org

View File

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Orientation
@ -20,38 +21,25 @@
* *
***************************************************************************/
"""
from qgis.PyQt.QtCore import Qt, QSettings, QTranslator, QCoreApplication
from qgis.PyQt.QtGui import QIcon
from qgis.PyQt.QtWidgets import QAction, qApp, QFileDialog, QProgressBar, QMessageBox
from qgis.core import QgsCoordinateReferenceSystem, QgsProject, QgsVectorFileWriter, QgsVectorLayer, QgsFeatureRequest
from processing import QgsProcessingException
# Initialize Qt resources from file resources.py
from .resources import *
import processing
import os.path
import shutil
import tempfile
from pathlib import Path
import processing
from processing import QgsProcessingException
from processing.tools import dataobjects
from qgis.core import (
QgsCoordinateReferenceSystem,
QgsCoordinateTransformContext,
QgsFeatureRequest,
QgsProject,
QgsVectorFileWriter,
QgsVectorLayer,
)
from qgis.PyQt.QtCore import QCoreApplication, QSettings, Qt, QTranslator, QUrl
from qgis.PyQt.QtGui import QDesktopServices, QIcon
from qgis.PyQt.QtWidgets import (
QAction,
QFileDialog,
QMenu,
QMessageBox,
QProgressBar,
QToolButton,
qApp,
)
from qgis.utils import OverrideCursor
# Initialize Qt resources from file resources.py
from .resources_rc import *
class Orientation:
"""QGIS Plugin Implementation."""
@ -69,10 +57,11 @@ class Orientation:
# initialize plugin directory
self.plugin_dir = os.path.dirname(__file__)
# initialize locale
locale = QSettings().value("locale/userLocale")[0:2]
locale = QSettings().value('locale/userLocale')[0:2]
locale_path = os.path.join(
self.plugin_dir, "i18n", "Orientation_{}.qm".format(locale)
)
self.plugin_dir,
'i18n',
'Orientation_{}.qm'.format(locale))
if os.path.exists(locale_path):
self.translator = QTranslator()
@ -81,7 +70,7 @@ class Orientation:
# Declare instance attributes
self.actions = []
self.menu = "CaLiÉc"
self.menu = self.tr(u'&CaLiÉc')
# Check if plugin was started the first time in current QGIS session
# Must be set in initGui() to survive plugin reloads
@ -100,7 +89,8 @@ class Orientation:
:rtype: QString
"""
# noinspection PyTypeChecker,PyArgumentList,PyCallByClass
return QCoreApplication.translate("Orientation", message)
return QCoreApplication.translate('Orientation', message)
def add_action(
self,
@ -112,8 +102,7 @@ class Orientation:
add_to_toolbar=True,
status_tip=None,
whats_this=None,
parent=None,
):
parent=None):
"""Add a toolbar icon to the toolbar.
:param icon_path: Path to the icon for this action. Can be a resource
@ -169,7 +158,9 @@ class Orientation:
self.iface.addToolBarIcon(action)
if add_to_menu:
self.iface.addPluginToMenu(self.menu, action)
self.iface.addPluginToMenu(
self.menu,
action)
self.actions.append(action)
@ -178,81 +169,39 @@ class Orientation:
def initGui(self):
"""Create the menu entries and toolbar icons inside the QGIS GUI."""
icon_path = ":/plugins/caliec/icon.png"
my_menu = QMenu()
my_menu.addActions(
[
self.add_action(
icon_path=":/plugins/caliec/vignette_caliec",
text=self.tr("Style CaLiÉc"),
parent=my_menu,
add_to_toolbar=False,
add_to_menu=False,
callback=lambda: self.run("style_caliec"),
),
self.add_action(
icon_path=":/plugins/caliec/vignette_kid",
text=self.tr("Style kid"),
parent=my_menu,
add_to_toolbar=False,
add_to_menu=False,
callback=lambda: self.run("style_kid"),
),
self.add_action(
icon_path=":/plugins/caliec/vignette_jardin",
text=self.tr("Style jardin"),
parent=my_menu,
add_to_toolbar=False,
add_to_menu=False,
callback=lambda: self.run("style_jardin"),
),
]
)
menu_action = self.add_action(
icon_path = ':/plugins/caliec/icon.png'
self.add_action(
icon_path,
text=self.tr("DEV - Créer le projet"),
callback=lambda: None,
parent=self.iface.mainWindow(),
)
menu_action.setMenu(my_menu)
self.iface.pluginToolBar().widgetForAction(menu_action).setPopupMode(
QToolButton.InstantPopup
)
self.help_action = QAction(QIcon(icon_path), "CaLiÉc", self.iface.mainWindow())
self.iface.pluginHelpMenu().addAction(self.help_action)
self.help_action.triggered.connect(self.show_help)
text=self.tr(u'Créer le projet'),
callback=self.run,
parent=self.iface.mainWindow())
# will be set False in run()
self.first_start = True
@staticmethod
def show_help():
QDesktopServices.openUrl(
QUrl("https://forge.chapril.org/linux_alpes/caliec/wiki/CaLi%C3%89c")
)
def unload(self):
"""Removes the plugin menu item and icon from QGIS GUI."""
for action in self.actions:
self.iface.removePluginMenu("CaLiÉc", action)
self.iface.removePluginMenu(
self.tr(u'&CaLiÉc'),
action)
self.iface.removeToolBarIcon(action)
self.iface.pluginHelpMenu().removeAction(self.help_action)
del self.help_action
def run(self, main_style):
def run(self):
try:
self.main(main_style)
self.main()
finally:
self.iface.messageBar().popWidget()
qApp.restoreOverrideCursor()
def main(self, main_style):
def main(self):
# Paramètres du projet
tempdir = tempfile.TemporaryDirectory()
styles_url = f"https://forge.chapril.org/linux_alpes/caliec/raw/branch/master/{main_style}/styles/"
styles_url = 'https://forge.chapril.org/linux_alpes/caliec/raw/tag/1.0/styles/'
lambert93 = QgsCoordinateReferenceSystem("EPSG:2154")
wgs = QgsCoordinateReferenceSystem("EPSG:4326")
wgspm = QgsCoordinateReferenceSystem("EPSG:3857")
scr = wgspm
project = QgsProject.instance()
@ -263,63 +212,30 @@ class Orientation:
context = dataobjects.createContext()
context.setInvalidGeometryCheck(QgsFeatureRequest.GeometryNoCheck)
if len(project.mapLayersByName("OpenStreetMap")) == 0:
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Attention"),
self.tr(
"Affichez d'abord un fond Openstreetmap (menu XYZ tiles) et cadrez la zone voulue"
),
)
return
# Correspondances des noms des couches et des styles:
# "NOM_DE_LA_COUCHE_OSM": ("nom_du_style", "nom_du_layer")
# Commenter les couches non désirées
# L'ordre impacte directement l'ordre final des couches
names = {
# "OUTPUT_OTHER_RELATIONS": (None, "Autres"),
"OUTPUT_MULTIPOLYGONS": ("multipolygon", "Surfaces"),
# "OUTPUT_MULTILINESTRINGS": (None, "Multilignes"),
"OUTPUT_LINES": ("linestring", "Lignes"),
"OUTPUT_POINTS": ("point", "Points"),
}
#"OUTPUT_OTHER_RELATIONS": (None, "Autres"),
"OUTPUT_MULTIPOLYGONS": ("multipolygon", "Surfaces"),
#"OUTPUT_MULTILINESTRINGS": (None, "Multilignes"),
"OUTPUT_LINES": ("linestring", "Lignes"),
"OUTPUT_POINTS": ("point", "Points"),
}
# Vérif de l'échelle
if self.iface.mapCanvas().scale() > 10000:
if self.iface.mapCanvas().scale() > 20000:
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Zone étendue"),
self.tr(
"La zone est vraiment trop étendue, descendre en-dessous de 1:20000"
),
QMessageBox.Ok,
)
return
if (
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Zone étendue"),
self.tr(
"La zone est étendue et le téléchargement risque de prendre longtemps.\n"
"Continuer ?"
),
QMessageBox.Yes | QMessageBox.No,
)
== QMessageBox.No
):
if QMessageBox.warning(self.iface.mainWindow(), "Zone étendue",
"La zone est étendue et le téléchargement risque de prendre longtemps",
QMessageBox.Ok | QMessageBox.Cancel) == QMessageBox.Cancel:
return
# Paramétrage du dossier de travail
settings = QSettings()
dir = QFileDialog.getExistingDirectory(
self.iface.mainWindow(),
self.tr(
"Sélectionnez un dossier de travail pour enregistrer le projet QGIS"
),
settings.value("caliec/workingDir"),
)
dir = QFileDialog.getExistingDirectory(self.iface.mainWindow(),
"Sélectionnez un dossier de travail",
settings.value("caliec/workingDir"))
if dir == "":
return
settings.setValue("caliec/workingDir", dir)
@ -327,16 +243,10 @@ class Orientation:
# Construction de la requête overpass
try:
url = processing.run(
"quickosm:buildqueryextent",
parameters={"EXTENT": self.iface.mapCanvas().extent()},
)["OUTPUT_URL"]
url = processing.run("quickosm:buildqueryextent",
parameters={"EXTENT": self.iface.mapCanvas().extent()})["OUTPUT_URL"]
except QgsProcessingException:
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Attention"),
self.tr("Vous n'avez pas installé l'extension QuickOSM"),
)
QMessageBox.warning(self.iface.mainWindow(), "Attention", "Vous n'avez pas installé l'extension QuickOSM")
return
# Barre de chargement animée
@ -344,9 +254,7 @@ class Orientation:
message_bar = self.iface.messageBar()
progress_bar = QProgressBar()
progress_bar.setMaximum(0)
widget = message_bar.createMessage(
self.tr("Chargement"), self.tr("Récupération des data en ligne")
)
widget = message_bar.createMessage("Chargement", "Récupération des data en ligne")
widget.layout().addWidget(progress_bar)
message_bar.pushWidget(widget)
@ -359,78 +267,27 @@ class Orientation:
style_name, layer_name = style_layer_names
# On explose les champs
layer = processing.run(
"native:explodehstorefield",
parameters={
"INPUT": layers[osm_name],
"FIELD": "other_tags",
"OUTPUT": "memory:",
},
context=context,
)["OUTPUT"]
# On enlève les champs en doublons en gardant celui des doublons qui est écrit tout en minuscule
field_names = [a.name() for a in layer.fields()]
field_names_lower = [a.lower() for a in field_names]
expected_fields, deleted_fields = [], []
for field_name, field_name_lower in zip(field_names, field_names_lower):
if (
field_names_lower.count(field_name_lower) == 1
or field_name.lower() == field_name
):
expected_fields.append(field_name)
else:
deleted_fields.append(field_name)
# S'il y a des doublons
if len(deleted_fields) > 0:
# On réexplose les champs sans doublons
layer = processing.run(
"native:explodehstorefield",
parameters={
"INPUT": layers[osm_name],
"FIELD": "other_tags",
"OUTPUT": "memory:",
"EXPECTED_FIELDS": ",".join(expected_fields),
},
context=context,
)["OUTPUT"]
layer = processing.run("native:explodehstorefield",
parameters={"INPUT": layers[osm_name],
"FIELD": "other_tags", "OUTPUT": "memory:"},
context=context)["OUTPUT"]
# On enregistre le layer dans le gpkg
options.layerName = layer_name
code, error = QgsVectorFileWriter.writeAsVectorFormatV2(
layer,
str(workDir / "data.gpkg"),
QgsCoordinateTransformContext(),
options,
)
code, error = QgsVectorFileWriter.writeAsVectorFormat(layer, str(workDir / "data.gpkg"), options)
if code != 0:
with OverrideCursor(Qt.ArrowCursor):
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Erreur"),
self.tr(
f"Erreur à l'export de la couche {layer_name} : \n\n{error[:2000]}"
),
)
return
new_layer = QgsVectorLayer(
str(workDir / f"data.gpkg|layername={layer_name}"), layer_name
)
QMessageBox.warning(None, 'Erreur', f"Erreur à l'export de la couche {layer_name} : \n\n{error}")
return
new_layer = QgsVectorLayer(str(workDir / f"data.gpkg|layername={layer_name}"), layer_name)
# Les layers suivants seront enregistrés dans le gpkg déjà existant
options.actionOnExistingFile = QgsVectorFileWriter.CreateOrOverwriteLayer
# On charge le style
if style_name is not None:
stylefile = str((Path(tempdir.name) / style_name).with_suffix(".qml"))
processing.run(
"native:filedownloader",
parameters={
"URL": styles_url + f"{style_name}.qml",
"OUTPUT": stylefile,
},
)
stylefile = str((Path(tempdir.name) / style_name).with_suffix('.qml'))
processing.run("native:filedownloader",
parameters={"URL": styles_url + f"{style_name}.qml", "OUTPUT": stylefile})
new_layer.loadNamedStyle(stylefile)
# On charge le nouveau layer
@ -441,15 +298,5 @@ class Orientation:
except IndexError:
pass
self.iface.mapCanvas().refreshAllLayers()
project.write(str(workDir / "orient.qgs"))
project.write(str(workDir / 'orient.qgs'))
if len(deleted_fields) > 0:
with OverrideCursor(Qt.ArrowCursor):
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Attention"),
self.tr(
"Les champs suivants sont en doublons et ont été supprimés au profit de leur doublon en minuscule :\n- "
+ "\n - ".join(deleted_fields)
),
)

774
orientation/resources.py Normal file
View File

@ -0,0 +1,774 @@
# -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.15.2)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x2c\x6f\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x68\x00\x00\x00\x75\x08\x06\x00\x00\x00\xa2\x54\xa4\xe4\
\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\
\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\
\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\
\xe5\x03\x01\x0c\x25\x29\xd6\x1a\x8c\xcb\x00\x00\x20\x00\x49\x44\
\x41\x54\x78\xda\xed\x5d\x77\x78\x14\xc5\xdf\xff\xcc\x5e\xca\xa5\
\x57\x08\x09\xa1\x06\x88\x04\x41\x08\x45\x3a\x0a\x88\x20\xd5\x50\
\x14\x44\x40\xf9\x59\x29\x22\x22\x22\x8a\xa2\x40\x00\x51\x10\x50\
\xa9\x2a\x88\x8a\x09\x22\x55\x40\x42\x8d\x84\x00\x09\xcd\x84\x12\
\x20\x60\x20\x80\x94\x40\x48\xcf\x25\x77\xf3\xfe\x71\x5b\x66\xf7\
\x76\xf7\xf6\x02\xfe\x5e\xdf\xf7\x71\xf3\xdc\x93\xdd\xd9\x99\xd9\
\xa9\xdf\xfa\x99\x19\x42\x29\xc5\xbf\xd7\x3f\xf7\xe2\xfe\x6d\x82\
\x7f\x78\x07\x09\x33\x48\xef\xbf\x91\x38\xc2\x65\x34\x6e\x55\xd3\
\xb8\x92\xaf\xab\xf9\xff\x9d\xe5\x56\x4b\xa3\x57\x1f\xe1\x9e\xfc\
\xb7\x49\x1c\xa5\x14\x84\x90\xff\x77\xdf\xfa\xbb\x2e\xf2\x2f\x0f\
\xfa\x67\x5f\x6e\xca\x51\x26\x3c\xeb\x75\x9c\x32\xbe\xda\x7b\x65\
\x38\x1b\x66\x34\x7f\xa3\xf1\x8d\xc6\xd1\xca\x5f\x99\x87\x32\x2f\
\x67\xcf\xae\x96\x45\xeb\x3b\xaa\x71\x6d\x36\x9b\x4b\x95\x73\xb5\
\x11\x5d\x69\x5c\xbd\xb8\xae\x54\xca\x48\xd9\x1f\x64\x87\xff\x9d\
\xdf\xf9\x97\xc4\xfd\x5f\x12\xb3\xf5\x24\x14\x23\xef\xb5\xf2\xd2\
\x4b\xaf\xc7\xe0\x5d\x7d\xef\xca\x60\x63\x25\x28\x23\xf9\xdf\xef\
\xf7\xaa\x5a\x16\x37\x23\xb4\xd9\x15\x69\x49\xed\x5e\xf8\xaf\x75\
\xaf\x97\x2e\x25\x25\x85\x26\x27\x27\x6b\x7e\x3b\x3a\x3a\x1a\x71\
\x71\x71\x44\x29\xad\x09\x79\x7c\xfb\xed\xb7\xf4\xfa\xf5\xeb\xaa\
\x69\x9b\x36\x6d\x8a\xbe\x7d\xfb\x12\x35\x69\x4f\x59\x3e\xb5\xbc\
\x95\x64\x57\x8f\x97\xeb\xd5\x57\xd9\xf6\xb2\x7e\x60\xe5\xf1\x7f\
\xe2\x6f\xfa\xf4\xe9\x14\x00\xf5\xf3\xf3\xa3\x01\x01\x01\xb2\x9f\
\x9f\x9f\x1f\xf5\xf6\xf6\xa6\x19\x19\x19\x54\x2b\x7d\x6c\x6c\x2c\
\xe5\x38\x4e\x96\xce\xdf\xdf\x9f\x12\x42\xe8\xf0\xe1\xc3\xe9\x3f\
\xbd\xfe\x6e\x7a\xd2\xcc\x83\x60\x86\x6a\x12\x50\x55\x66\x69\xf2\
\xfe\x64\xd4\xa9\x53\x47\x16\x66\xb1\x58\xd0\xa7\x6f\x1f\xf4\xec\
\xd9\x13\x07\x0e\x1c\xa0\x75\xea\xd4\x21\x6a\x65\x89\x89\x89\xc1\
\xde\x3d\x7b\x61\x32\x99\x00\x00\xf9\xf9\xf9\x68\xd5\xba\x95\x4b\
\x52\xa8\xd1\x70\xe5\xbd\x2b\x75\x55\xcb\x9f\xd3\xa3\xad\xf7\xab\
\xe4\xa9\x7d\x50\x18\x19\xce\xf2\x56\xbe\xf7\xf7\xf7\x47\x60\x60\
\x20\x02\x83\xec\xbf\xa0\xa0\x20\x54\x0f\xab\x8e\x29\xef\x4c\xc1\
\xd5\xab\x57\xb1\x78\xf1\x62\xcd\xb2\x9b\x4c\x26\x04\x05\x05\x89\
\x69\x03\x02\x02\xc0\x11\xce\xb0\x82\xeb\xac\xa1\xd5\x78\xab\xb3\
\x34\x02\x89\xd4\xca\x47\x78\xcf\x09\x91\xd8\x04\x6a\x3c\x42\xed\
\xbd\x1a\x5f\x71\x96\x5e\x2f\x1f\x36\x5c\xad\x93\x08\x21\x10\xfe\
\x28\xa5\x20\x20\x18\x30\x60\x00\x06\x0d\x1a\x84\xa5\x4b\x97\x22\
\x33\x33\x93\xea\xa6\xe7\xff\xd4\x06\x82\xd6\xf7\xf5\xea\xe7\x2c\
\x4c\xaf\xfd\xb4\xbe\xaf\x4c\xcf\x29\x6d\x43\x42\x81\x9c\xd9\xc1\
\xd8\x9f\x5a\x1a\xf6\x9e\x7d\xef\xec\xa7\x66\xa7\x12\x47\x18\xf3\
\xb7\x6a\xf5\x2a\xdc\xb9\x73\x07\x9c\x89\xc3\x9a\xef\xd6\xa0\x49\
\x93\x26\x18\x3b\x76\x2c\x2a\x2a\x2a\x74\xd3\xeb\xd9\xe9\xb4\xca\
\xaa\x55\x3f\xbd\x30\x23\xed\xa7\x65\x9b\x63\xdf\x73\x0f\x42\x74\
\xbc\x5f\x91\xd9\xf8\x87\xa4\xff\x3b\x76\xec\xc0\xaa\xd5\xab\x00\
\x0a\x78\x9a\x3d\x31\x7e\xdc\x78\x1c\x3e\x7c\x18\x9f\x7d\xf6\x19\
\xd5\xcf\xe2\xef\x15\xdf\x1f\x64\xbb\x89\x1d\x64\x84\xf4\x18\x25\
\x51\xce\xe2\xe9\x3d\xeb\x91\x02\x19\x89\x23\x04\x15\x96\x0a\xcc\
\x98\x31\x03\xe7\xce\x9f\x03\x00\x0c\x1b\x36\x0c\x4f\x74\x7f\x02\
\x33\x66\xcc\x40\x7a\x7a\x3a\x55\xa3\xf1\x7a\xbc\xc0\x08\x29\xbf\
\xdf\x5f\x55\xf2\xe7\x9c\x49\x6c\x46\x94\x4b\x3d\xa5\x4e\xad\x91\
\xb5\x98\xa9\xf2\x9d\x33\x12\x95\x9f\x9f\x8f\x99\x33\x67\x02\x14\
\x20\x1c\x41\x7c\x7c\x3c\x00\x60\xda\xb4\x69\xea\xd2\x16\x88\xcb\
\xba\x9c\x11\x65\x5d\x4d\xd9\xd4\x12\x1c\xf4\x4c\x63\x6a\x69\x38\
\x67\x3c\xc6\x19\xfd\x74\x96\xc6\x15\x5e\xe3\x74\xca\x53\x9e\x0f\
\x31\xf1\x12\x12\x12\x70\xf0\xe0\x41\x80\x02\x4d\x9a\x34\xc1\xf2\
\xe5\xcb\xb1\x77\xef\x5e\xec\xdc\xb9\x93\xaa\x76\x30\xd5\xd6\xe2\
\x9d\xf9\x9b\x9c\xdd\xbb\xda\x56\x46\xda\x9a\xd3\x1b\xe5\x5a\xa2\
\xaf\x2b\xf1\xb5\x24\x16\xad\xb8\xae\x88\xf8\xd5\xaa\x55\x43\xcb\
\x96\x2d\xd1\xbb\x4f\x6f\x9c\x3e\x7d\x1a\x84\x23\x18\x36\x74\x18\
\xfa\xf6\xed\x8b\xe7\x9f\x7f\x1e\x07\x0f\x1e\xa4\x46\x49\x9c\x1a\
\xb9\x73\x26\xfa\xab\x91\x2d\x3d\x31\x5a\xab\x1d\xb4\xda\x09\x80\
\xa3\x98\x6d\x44\x04\x66\xc5\x4e\xbd\xf4\x5a\x8d\xa0\x25\x56\x1a\
\xe2\x41\x54\x7a\xef\xee\xee\x8e\x89\x13\x27\xe2\xde\xbd\x7b\xf8\
\xea\xab\xaf\x00\x0a\x70\x1c\x87\x49\x6f\x4d\x42\x5e\x5e\x1e\x3e\
\xff\xfc\x73\x47\x31\xbb\x8a\x8d\xef\x6a\x3d\xd5\x78\x9c\x96\xfa\
\xa1\x36\x48\x45\x1e\x54\x55\x05\xf4\x7e\xde\xdf\x97\x14\x47\x20\
\x23\x53\x3d\x7b\xf6\xc4\xf8\xf1\xe3\xb1\xf2\xeb\x95\x22\xa9\x7b\
\xf4\xd1\x47\x31\x76\xec\x58\x6c\xdc\xb8\x11\x67\xcf\x9e\x75\x94\
\x02\xff\x6e\x2f\xe8\x7d\xb6\x8f\x6c\x06\x69\xe9\x1d\x6a\x74\xd5\
\x08\xbf\x71\x46\x8b\xf5\x78\x8f\x11\x3d\x48\xe0\x43\x6c\x65\x3e\
\xfd\xf4\x53\xb4\x6d\xdb\x16\x13\xde\x9c\x00\x4b\x85\x05\x00\xf0\
\xc9\xdc\x4f\xf0\xd4\x53\x4f\xa1\xa4\xa4\xc4\x10\x0f\x32\xc2\x3f\
\xb5\xd2\x68\x59\xfe\x8d\xf0\x1d\x67\xdf\xe0\xd4\xa4\x29\x35\x89\
\x4a\x4d\x0a\xd1\xb2\x00\x3b\x93\xde\xb4\x68\xbd\xde\xf4\x17\xa5\
\x30\xe2\x18\xee\xee\xee\x8e\xc9\x93\x27\x23\x23\x23\x03\x53\xde\
\x9d\x02\x4a\x29\x3c\x3d\x3c\x31\xe5\x9d\x29\x70\x73\x73\x73\x48\
\xaf\xc7\x83\x5c\xe5\x2f\x6a\xe4\x5f\x49\xda\xd4\x2c\x11\xce\xc8\
\xb9\x10\xe6\x66\x84\x79\xeb\x3d\x6b\xd9\xad\xb4\xf2\x35\x9a\x5e\
\x93\x0c\x30\x33\xa0\xa0\xa0\x00\xef\xbd\xf7\x1e\x2c\x16\x0b\x8a\
\x8b\x8b\xe1\xe1\xe1\x81\x2f\xbe\xf8\x02\x7d\xfb\xf4\xc5\xe3\x8f\
\x3d\x8e\x76\x6d\xdb\x61\xec\x98\xb1\xd8\xbb\x6f\xaf\x26\x99\x53\
\x36\x9e\xd1\x72\x6b\xb9\x24\x8c\xb4\xa1\x2b\xed\xe4\xa6\xa7\xd3\
\x38\xb3\x52\x1b\xd1\x88\x8d\xc4\xd3\xd2\x9b\x1c\xa6\xbd\xa2\x75\
\x8b\x8a\x8a\xb0\x68\xd1\x22\x69\x7e\x10\x80\x52\x60\xfe\x82\xf9\
\x78\xec\xb1\xc7\x00\x00\xaf\xbf\xfe\x3a\x8e\x1d\x3b\xa6\x6b\x45\
\xb8\xdf\x3a\xaa\x51\x8d\x07\x81\xed\x00\x00\x37\xb5\x4c\x5d\x75\
\x5c\x19\x0d\xd7\x9a\x41\xca\xf0\xdb\xb7\x6f\xcf\xd9\xb6\x6d\xdb\
\x3b\xbb\x76\xed\xc2\xb6\x6d\xdb\xe4\x69\x99\x7a\xf8\x06\x04\x63\
\xdc\x47\x2b\xe0\x1f\x18\x02\x4f\x2f\x6f\x98\xbd\x7d\x71\x29\xeb\
\x24\x3e\x7f\x77\x24\x12\x12\x12\x30\x64\xc8\x10\x34\x68\xd8\x00\
\xab\x56\xad\x92\x66\x09\x93\x7e\xe3\xc6\x8d\x18\x34\x68\x10\xed\
\xd6\xad\x1b\xfa\xf7\xef\x8f\x88\x88\x08\xa2\x55\x1f\x23\xb3\x5f\
\x2d\xdc\x88\xc0\xa4\x96\x8f\x18\x26\x8c\x52\x9b\xcd\x06\x9b\xcd\
\x26\x7b\x56\xbb\xaf\xca\x7b\xad\x34\xc2\xb3\xf0\xff\xf8\xf1\xe3\
\x74\xe0\xc0\x81\x34\x24\x24\x84\xf2\xc4\x88\x9a\x4c\x6e\x14\x00\
\xcd\xbe\x90\x4d\xa9\x8d\x52\x6a\xa5\x94\xda\x28\x7d\x7a\xc0\xd3\
\x34\xb8\x7a\x04\x4d\x4c\x2b\xa4\x9b\x4f\xd9\xe8\xe6\x4c\x1b\xdd\
\x72\x8a\xd2\xcd\x99\x36\xda\xb1\xe7\x10\xea\xef\xef\x4f\x53\x52\
\x52\x28\xb5\x52\x6a\xb3\xda\xc4\x74\xd4\x4a\x69\xde\xed\x3c\x1a\
\x1a\x12\x2a\xe6\x2d\x38\x04\x7b\xf6\xec\x49\x93\x92\x92\xa8\xd1\
\x3a\x2a\xeb\xa6\x8c\xa3\x97\x5e\xed\x59\x2d\x3e\xe7\x4c\xa9\x74\
\x85\x86\xba\x4a\x77\x09\x21\xb0\x5a\xad\x38\x76\xec\x18\x9d\x34\
\x69\x12\xed\xdc\xb9\x33\xd6\xaf\x5f\x0f\xb8\x79\xa1\xef\xf0\xf1\
\x98\xf6\xe5\x66\xc4\xbd\xf8\xb6\xd2\x5e\xa3\x62\xc2\xb1\xe7\x57\
\x78\xef\x0e\x8a\xee\xdd\xc5\x90\x97\xa6\xa2\xb4\xcc\x82\x59\xb3\
\x66\xc1\x6a\xb3\xda\xbf\xab\x92\xae\xc3\x93\x83\x31\xeb\x9b\x3d\
\x18\xfc\xf2\x54\xf8\x06\x85\xe1\xb7\xdf\x76\xa2\x4f\x9f\x3e\x18\
\x35\x6a\x14\x3d\x70\xe0\x00\xad\xac\xac\x74\x49\x34\xd6\xe3\xd7\
\xce\x78\xb9\x56\xfb\xbb\x29\x7d\xea\x6a\xff\x9d\x39\xe4\xb4\x70\
\x63\x7a\x95\xb2\xd9\x6c\x38\x74\xe8\x10\x9d\x3d\x7b\x36\xb6\x6f\
\xdf\x0e\x80\xa0\x6d\xf7\xa7\xd1\x63\xe0\x68\xc4\xb4\xe8\x08\x4f\
\x6f\x1f\x00\x14\xd9\xa7\xed\xfc\xe3\xfd\x69\xef\xc3\xcf\xcf\x4f\
\x4c\x7f\xfc\xc4\x71\x59\x17\x65\xa4\xed\xc7\xac\x71\x03\x40\xa9\
\x0d\x53\x17\x6d\xc0\x90\x57\xa6\x22\x61\xe9\x4c\x3c\x37\xfc\x39\
\x04\x04\x04\xc8\xbe\x5d\x5e\x5e\x8e\xa2\xe2\x22\x98\x4c\x26\x34\
\x7d\xf4\x71\x34\x7b\xf4\x71\x0c\x7d\xed\x03\x9c\xcf\x4c\xc7\xee\
\x4d\xab\xf0\x53\xe2\x8f\xf8\xee\xbb\xef\xd0\xbe\x7d\x7b\x1a\x1f\
\x1f\x8f\x76\xed\xda\x11\x77\x77\x77\x55\xfe\xe2\xac\xad\x8c\xb4\
\xad\x96\x0d\x50\xc6\x83\x9c\xfd\x77\xc6\xe8\x8c\x9a\x7f\x00\xa0\
\xa2\xa2\x02\xb3\x66\xcd\xa2\x33\x67\xce\x84\xcd\x66\x43\xdd\xe8\
\x47\x30\x7c\xdc\x0c\xb4\xee\xfc\x14\x08\xc7\x31\xfa\x28\x81\xc9\
\xcd\x1d\x9e\x66\x6f\xfc\xb2\x61\x93\x43\x3e\xc1\xd5\xc2\xed\xf1\
\x28\xc5\xf6\x84\x25\x28\x2e\xcc\x07\x00\x6c\xf9\x7e\x11\xa6\x7e\
\xbe\x1e\xd9\xa7\x8f\x61\xe3\xa6\x2d\x9a\x86\x7c\x37\x0f\x4f\x3e\
\x3d\xe0\xee\xe1\x89\x98\xd8\x0e\x68\xdc\xa2\x3d\x7a\x0e\x7e\x05\
\x2b\xe6\xbc\x81\xd4\xd4\x43\xe8\xd6\xad\x1b\x46\x8c\x18\x41\x17\
\x2e\x5c\x48\x7c\x7d\x7d\xab\xd4\x56\x46\xe3\xab\x52\x9d\xbf\x1b\
\x17\xa7\xd4\xa9\x36\x6f\xde\x4c\xe7\xcd\x9b\x87\x94\x94\x83\xa8\
\x59\xb7\x21\x86\xbc\xf2\x3e\x1e\xeb\x3d\x0c\x1c\x67\x92\xc8\x10\
\x65\x71\x07\xa5\x28\x2f\x2b\x55\x6f\x62\x8e\x83\xb7\x6f\x00\xce\
\x9f\x4a\xc7\xd4\x51\x8f\xa3\xbc\xb4\xd8\x3e\xea\xdc\x3d\xb0\xe8\
\x97\x13\x08\xab\x59\x0f\xe5\x65\x25\x9a\x65\x73\xf7\xf0\x84\xd9\
\xec\x0d\x08\x0d\x43\x25\x12\x4a\xa9\x0d\xc7\x52\x76\xe2\x9b\x79\
\x93\x70\x25\xfb\x0c\xa2\xa3\x1b\xe1\x93\x4f\x3e\x41\xaf\x5e\xbd\
\x08\xab\x5b\xb9\x22\x20\x55\xc9\x2a\xa1\xf4\x1a\x1a\x01\x43\xb8\
\x02\x1a\x61\xc9\xca\xd4\xa9\x53\xe9\xa2\x45\x8b\x60\xf6\xf6\xc3\
\xa8\xb7\xe6\xe2\xf1\xbe\xcf\xc3\xd3\x6c\x16\x5b\x85\x82\xf2\x2e\
\x01\xd6\xa6\x43\x44\x01\xd9\xf1\x1d\x50\x59\x51\x81\xd7\xfb\x35\
\xc1\xf5\xcb\x17\x64\xdf\x6b\xdb\x6d\x00\xde\x9c\xbd\x1a\xde\x3e\
\x7e\x50\xf6\xbc\x3c\x2f\x75\x6b\x92\x70\x95\x95\x96\xe0\x58\xca\
\x6f\x58\x31\x67\x02\xf2\xfe\xca\xc5\xe0\xc1\x83\xb1\x6c\xd9\x32\
\x12\x10\x10\xa0\x2b\xd5\x19\x51\xf6\x9d\xb5\xa1\x68\x8b\x33\xe2\
\x6b\xd7\x73\x30\x39\x73\x3e\x5d\xbb\x76\x8d\x4e\x9e\x3c\x99\x2e\
\x5e\xbc\x18\x61\x91\x51\x78\x79\xea\x22\x3c\x39\xe8\x25\x78\x9a\
\xbd\x00\xca\x88\xbe\xe2\x3d\x91\xd8\x3f\x05\x28\xb5\x1b\x49\xed\
\xf2\x16\x91\xe2\x82\xe0\xf4\xf1\x14\x87\xce\x01\x80\xb4\xfd\x5b\
\x71\xea\xe8\xef\x4c\x7c\x7b\x3e\x94\x32\xb8\x04\x4a\x00\x3e\x4c\
\xb8\x27\xc2\x3d\xec\xe1\x9e\x66\x1f\xb4\xef\x1e\x87\x09\x33\xbf\
\x45\x58\x64\x3d\x24\x26\x26\x62\xe2\xc4\x89\x34\x27\x27\x87\x1a\
\x15\x9c\x5c\x31\x44\x3b\x84\x39\xac\x47\xd1\x00\xd8\x39\x93\xf9\
\xb5\xde\x9f\x39\x73\x86\xf6\xeb\xd7\x0f\x17\x2e\x5c\xc0\xe3\x7d\
\x87\xe3\xe5\xa9\x8b\xe1\xeb\x17\x68\x1f\xa9\x02\x03\x60\x47\x38\
\x91\x00\x21\x8e\x36\x52\xf9\x0c\xb3\xd9\xac\xf8\xf0\x95\x9e\x38\
\x91\xba\x4b\x75\xd6\x3e\xd4\xbc\x1d\xe6\xae\x39\x00\x42\x38\xd9\
\x1c\x22\x2a\x79\x4a\xff\xf9\x70\x02\x10\x2a\xa5\xa0\xa0\x28\x2b\
\x29\x42\xe2\xf2\x78\xfc\xf2\xcd\x3c\x84\x86\x86\x20\x31\x31\x11\
\x5d\xba\x74\x21\x46\x49\x9b\xb3\x38\x6a\x6d\x49\x6c\x36\x9b\x4b\
\xb0\x29\x57\xae\xf3\xe7\xcf\xd3\xae\x5d\xbb\xe2\xaf\x1b\x37\x11\
\xf7\xe2\xdb\x18\x3e\xf6\x63\x70\x26\x4e\x9b\x9e\xa8\x0a\xd0\x14\
\x94\x4a\x6c\x82\x4d\x77\x3e\xf3\x28\x26\x0d\x6d\x0b\x9b\xcd\xaa\
\x99\xc3\xdc\x35\x07\x10\x13\xdb\x5e\xce\xdb\x78\x8b\x03\xa0\xc8\
\x57\xef\xfb\x4c\xba\x2d\x3f\x2c\xc6\xd7\x73\x27\xc2\xdb\xdb\x0b\
\xfb\xf7\xef\x47\x8b\x16\x2d\xc8\xdf\xd1\x7e\xa2\xcb\xdb\xa8\xdf\
\xc7\x15\xb2\x76\xe0\xc0\x01\xda\xa1\x43\x07\xdc\xb8\x79\x0b\x2f\
\xbf\xbb\x10\xcf\x8f\x9b\x01\xc2\x99\xec\xe4\x84\x27\x1f\x94\x27\
\x33\x2c\x89\xa1\x90\x9e\xed\xfc\x91\x6f\x26\x26\x1e\x05\x81\xb5\
\xb2\x12\x3b\xd7\xaf\x94\x3a\x87\x98\xa4\x8a\xb9\x79\x8a\xf7\xdb\
\x13\x97\xc2\x8e\xa0\x15\x35\x26\x86\xcc\x49\x24\x4e\x8c\x23\x3e\
\x0b\xdf\xe7\xe3\x11\x22\x76\x6a\xef\x67\x5f\xc3\xdb\x9f\xae\x85\
\x0d\x1c\x7a\xf7\xee\x8d\x9f\x7e\xfa\x89\xea\x19\x41\x9d\xf9\xbe\
\xb4\xde\x8b\xd6\x6c\x35\x32\x67\xc4\x56\xa5\x05\x4a\x3c\x71\xe2\
\x04\x1d\x34\x68\x10\x0a\x8b\x4b\xf1\x66\xfc\x6a\xf4\x7a\xe6\x55\
\x80\xb3\xdb\xca\x08\x11\x95\x77\xfb\xe8\x25\xfc\x28\x26\x14\x20\
\x14\x84\x0f\xa7\x44\x78\x6f\x8f\x40\x08\xb5\xa7\xe5\x7f\x7b\x36\
\xaf\xc1\x9e\x4d\xdf\xf1\xe2\x9c\x19\x08\xef\x21\x96\x23\xac\xd5\
\x50\xb1\x93\x0e\xee\x5c\x8f\xac\x3f\x0e\x09\x22\x91\x9d\x74\x31\
\xdf\xa5\xfc\xb7\x89\x60\x25\x27\x10\xcb\x69\x6f\x30\xa1\xcc\x10\
\xe3\x98\xdc\xdc\xd1\xf1\xc9\xc1\xf8\xe0\xab\xad\x28\x2a\xb5\xe0\
\x85\x17\x5e\x80\x60\x81\x50\x7a\x05\xd4\xdc\x0d\xca\x38\x5a\xef\
\x65\x33\xc8\x99\x95\x55\x4d\xc2\x50\x93\xe3\x2f\x5d\xba\x44\xc7\
\x8c\x19\x83\xbc\xbc\x3b\x18\xf7\xf1\x0a\x74\xea\xf5\x2c\x6f\x53\
\xe2\x47\x29\xc3\xe0\xed\xa3\x59\x12\x10\xa4\x11\x0c\x10\x7e\xa6\
\x40\xe8\x4f\x30\x23\xdb\x46\xb1\x73\xfd\xd7\xb0\x94\xf3\xe2\x77\
\x64\x5f\x20\xa0\x89\x58\x0e\x73\x68\x3d\x04\x3d\xd4\xcd\x2e\xa6\
\x97\x97\x62\xc5\xec\x09\xb0\x59\x2b\x79\x61\x03\xe2\x6c\x11\x66\
\x27\x71\x98\x45\x6c\x79\x20\x96\x93\x32\x61\x94\x02\x31\xb1\x9d\
\x30\xfa\xed\x4f\x61\x72\x37\xe3\xd5\x57\x5f\xc5\xb5\x6b\xd7\xa8\
\x96\x4b\x45\xcd\xa5\xaf\x25\x8c\xb1\x6d\xcf\x19\x75\x50\x39\x73\
\xec\x51\x4a\x71\xeb\xd6\xad\xc4\x7e\xfd\xfa\x21\x35\x35\x15\x23\
\x27\xce\x41\xe7\x5e\xcf\x0a\x91\x20\xb5\x34\xe1\x85\x66\xca\x77\
\x0e\x9f\xa7\x20\x20\x08\xef\xf8\x74\x44\x80\x2a\x32\x79\x9c\x4a\
\x4f\xc6\xb9\x8c\xc3\xbc\x32\xe3\x0f\x3c\x12\x2f\x67\x66\x84\xa0\
\x7e\xff\x78\x78\x04\xd6\x04\x00\x9c\xcb\x38\x82\xe3\x07\x93\x18\
\x71\x5d\xe0\x3d\x54\x51\x36\xca\x0b\x08\x94\x17\x1a\xa8\x58\x3e\
\x71\xc6\x8b\x82\x85\xfd\xae\xfb\x80\x51\x98\x10\xbf\x0a\x39\x97\
\x2f\xa3\x6d\xdb\xb6\x38\x77\xee\x1c\x55\x03\x3f\x2a\x85\x00\xa3\
\x3f\xce\x99\x98\xe8\x0c\xa7\xcc\x7e\x70\xdc\xb8\x71\x83\x4f\x9d\
\x3a\x85\x3e\xcf\x8d\xc3\x80\x11\x6f\xca\xb5\x1b\x81\xb4\x30\x0c\
\x9f\x30\xe4\x46\xe0\xc0\x22\xa9\x11\x1b\x4b\x22\x3b\xe0\x21\xbf\
\x3f\x7f\x3d\x17\x36\x2b\xcf\x7b\xa2\x46\x03\x1e\x41\x4a\xda\x0b\
\xdf\xc8\x66\x88\x7c\x6c\xac\x84\xfe\x59\x3a\x93\xff\x26\x15\xfb\
\x92\x10\xa9\x5b\x84\xb2\x50\xc6\x75\x21\x06\x12\x69\x9c\x11\x9e\
\x1c\x52\x46\x8e\x68\xd7\x6d\x00\xfe\xf3\xce\x02\xe4\xe6\xe6\x62\
\xc4\x88\x11\xb0\x58\x2c\x9a\xa0\x11\x67\xfe\x33\xe5\x8c\xe2\xf4\
\x3c\x84\xce\x18\x1f\x1b\x27\x29\x29\x89\x6e\xda\xb4\x09\xad\x3a\
\xf7\xc6\xc0\x17\x27\x83\x70\x1c\xe4\x68\x68\x5e\xcf\xe0\xc9\x19\
\xab\x8b\x10\x2a\xb0\x6c\x22\xea\x42\x84\xef\x39\xc2\x93\x3b\x41\
\xb5\xbc\x71\xf5\x92\x5d\xbf\x01\x00\xce\x03\x88\xec\xaf\x21\x8a\
\x11\x54\x6b\x39\x44\xe4\x45\xd9\x67\x8e\x21\xe7\x42\xa6\xa8\x5b\
\x89\xdf\x26\x52\x99\xec\xcf\x50\xe8\x5b\x52\x2d\x64\xf1\x14\xe5\
\xed\xda\x6f\x04\x5a\xb4\xef\x81\xf4\xf4\x74\x24\x24\x24\x50\x35\
\x67\xa0\x91\x7b\x55\x4c\xc2\xfd\x5e\xbb\x77\xef\xa6\xfd\xfb\xf7\
\x47\x40\x68\x38\xc6\xcf\x58\x89\xe0\xb0\x9a\x62\x1d\x29\x91\xeb\
\x9f\x6c\x18\xd4\xc2\x98\xf8\xb2\x30\x00\x16\x4b\x19\x16\x4d\x1b\
\x2d\x9a\x74\x50\xb3\x0f\x10\xf0\xb0\x26\x18\xc4\x2b\xb4\x3e\xc2\
\xdb\x8d\xb2\xdb\xff\x2c\xe5\xf8\x79\xc5\x1c\x54\x56\x56\x40\xa6\
\xa7\xea\x95\x53\x11\x07\x44\xc6\x3e\x65\x61\xde\x7e\x01\x78\x6f\
\xf1\x06\x34\x68\xd2\x0a\xe3\xc7\x8f\xc7\x9a\x35\x6b\xe8\x83\x30\
\xf9\x70\x46\xa4\x35\xbd\xab\xb2\xb2\x12\x1f\x7e\xf8\x21\xca\xcb\
\x2d\x18\xf9\xe6\x6c\x04\x85\xd6\x80\x20\x0d\x08\x02\x1b\x61\xc1\
\x1a\x22\xb9\xa7\x8c\x80\xa0\x1d\x87\x0d\x3b\x76\x60\x07\x32\xd3\
\xf6\x4b\xbc\x27\xea\x45\xa7\x0a\x55\x44\xe7\xd7\x01\x7e\xa9\x49\
\xea\xae\x0d\x48\xf9\x6d\x9d\x44\xae\xc4\x6f\x4b\xdf\x92\x87\xc9\
\xff\xb3\xec\x8a\x32\x61\xc2\x97\x3d\x3d\xbd\xf1\xca\x7b\x5f\xa0\
\xa0\xb0\x10\x53\xa6\x4c\x41\x59\x59\x99\x4b\x1e\x5c\xa7\x1d\xe4\
\x6a\x8f\x53\x4a\xb1\x6d\xdb\x36\x9a\x9a\x9a\x8a\x87\x5b\x77\x46\
\xbb\x6e\x4f\x8b\xc4\x5d\x26\x42\x0b\x34\x1d\xac\x88\x4b\x64\x16\
\x1d\x30\x80\x0e\x91\xf4\x13\x29\x1d\xb5\x59\xb1\x2d\x61\x89\xf4\
\xf1\xa8\x97\x80\x90\x36\xda\xda\x26\xdf\x90\x3e\x11\x31\xa8\xf1\
\xe8\x08\x51\xa2\xdb\xb4\x66\x21\xec\x2b\xdb\x15\x49\xf9\x6f\x29\
\x2d\x4d\xca\xff\x02\x0f\x23\x0a\x3e\x26\x58\x1f\xa2\x62\x62\xd1\
\xb9\xd7\xb3\xb8\x76\xed\x1a\x96\x2c\x59\x42\xb5\xec\x6e\x46\x3b\
\x8c\x33\xda\xc3\x6a\x61\x37\x6f\xde\xbc\x33\x71\xe2\x44\x84\xd7\
\x6e\x88\xf7\x16\x6d\x80\xc9\xdd\x5d\x66\x4a\x51\x4e\x08\x09\x17\
\x40\x55\xa1\x6e\x4a\x63\x36\x1b\xf3\xd4\xb1\xdf\x71\x32\x75\xb7\
\xfd\xc1\x23\x18\x68\xf0\x12\xaf\x9c\x12\x95\x09\xc4\x18\x27\x39\
\x37\x34\x18\xb2\x10\x9e\x81\x91\x76\xeb\x46\x46\x1a\xd2\xf6\x6f\
\x55\xc5\x90\xa8\xcd\x43\x47\x28\x1e\x71\xa8\x9b\xac\xf1\x39\x0e\
\x23\x26\xc4\xe3\xa1\xe6\xed\x31\x6b\xd6\x2c\xa8\xd9\xec\x5c\xe9\
\x30\x4e\x4d\xd1\x54\x53\xa4\x94\xe2\x21\x00\xcc\x9a\x35\x2b\x28\
\x3b\x3b\x1b\x3d\x06\xfd\x07\x3e\x7e\x41\x3c\xd3\xa4\xbc\x78\x0c\
\x10\xe1\x9e\x52\x89\xdc\xf1\xba\x08\xc4\x30\x86\x66\x88\xe1\xf2\
\x74\x94\x52\xec\xff\xf5\x47\xc9\x6a\x10\xd6\x15\xf0\x0c\x85\x48\
\x47\x89\x16\xfc\xc7\x9e\xa7\x9b\xd9\x1f\xa1\xcd\xfb\x8b\xe1\x7b\
\xb7\x7c\x2f\xd5\x83\x4a\x92\x1f\xd8\x30\x56\x59\x02\x43\x72\x99\
\xb2\x52\x5e\x0d\x00\x43\xca\x09\x28\x42\x6b\xd4\xc2\xc0\xd1\x6f\
\x23\x2f\x2f\x0f\x4b\x97\x2e\x75\x09\x53\xe8\xb0\x04\x52\x4f\xcb\
\x55\x7b\x16\xae\x8b\x17\x2f\xd2\x6f\xbf\xfd\x16\x61\x91\xf5\xd1\
\xeb\x99\x57\x45\xc7\x99\x38\xaa\xa8\x24\xc2\x52\x71\xee\x50\x85\
\xf1\x9a\x8a\x4a\x20\x11\x63\xf0\x0a\x2a\x23\xa4\x9f\x3d\x71\x10\
\xbb\x37\xae\x96\x24\xb7\xe8\x71\x72\x4e\x4d\x35\x87\xa6\xd8\x29\
\x91\xdd\xde\x02\xe7\xe1\x03\x00\x38\xb2\x77\x33\x2e\x9e\x3d\x21\
\xcd\x69\xd6\x1d\x00\x07\xb3\x1d\xa3\x83\xa9\xcc\x52\x2a\x95\x9c\
\x32\xd2\x44\x9b\xc7\xfa\x22\xa6\x65\x27\xcc\x9d\x3b\x17\xa9\xa9\
\xa9\xd4\x48\x9b\xaa\x02\x17\xd5\xb4\x5a\x2d\xd1\x8f\xfd\x7d\xf3\
\xcd\x37\x28\x2a\x2a\x42\x8f\x81\xa3\xe1\xe5\xe5\xcb\x00\x0a\x89\
\x64\x32\x11\xf5\x0b\x29\x5c\x14\x4f\x09\x23\x80\x13\xe9\x99\x10\
\x39\x5f\xb0\x5a\x2b\xf1\xd5\xc7\xaf\xa1\x92\x47\x8c\xa2\xc6\x13\
\x76\xab\x81\xc8\xb5\xd5\xe8\x12\xab\x6c\xd9\xf3\x31\x87\xd4\x45\
\xf5\xd8\xc1\xa2\x44\xb7\x64\xc6\xeb\xb0\x5a\x2b\xe5\x65\x13\xef\
\xa5\xb5\x48\x90\x85\x13\x49\x75\x50\xb3\xb7\x89\xf5\x01\x08\x31\
\xa1\xef\x73\xe3\x00\x00\x0b\x17\x2e\xac\xd2\xda\x2a\x42\x88\x64\
\x8b\x73\xe5\x57\x56\x56\x86\xb5\x6b\xd7\xc2\xcb\xc7\x0f\x5d\x7a\
\x0f\xe5\x21\xb5\x8c\xb6\x4f\x25\xeb\x00\xd5\xb8\x67\xe3\x53\x9d\
\xfb\x33\xc7\x53\x70\x39\xfb\x0c\x2f\xb9\x05\x02\xcd\x3e\x82\x23\
\x87\x97\xf7\x12\x85\x82\x44\xf1\x24\xb7\x46\xbb\x91\x70\xf3\x0a\
\x04\x00\x64\x9d\x3c\x84\xa3\xc9\xdb\xa4\x39\xae\x52\x06\xaa\x28\
\x8f\x20\x79\x8a\x96\x0d\x26\x8e\x78\x0f\x2a\x5a\x40\x9a\xb7\xeb\
\x8e\x90\xb0\x9a\x48\x4a\x4a\xc2\xd5\xab\x57\xa9\xd1\xa5\x39\x4e\
\x97\x9f\x38\xbb\x92\x92\x92\xe8\xc5\x8b\x17\xf1\xf2\xd4\x45\xa8\
\x1e\x51\x57\x26\xb1\x29\xef\xd5\x9e\xf5\xc2\xc0\xdc\x53\x6a\xc3\
\xba\x15\x73\x60\xb3\xf2\xe8\x9a\xa8\x17\x01\x9f\xba\x72\x0e\xad\
\xee\x18\x15\xf3\x62\x7f\x01\x0d\x3a\xa3\x4e\xef\x0f\xc4\x28\x89\
\xcb\xe3\x51\x59\x51\x29\xfb\x2e\x55\x29\x97\x20\x4d\x52\x22\x59\
\x12\xf4\xea\x2c\x50\x5e\x5f\xff\x40\x3c\xfb\xda\x07\xb8\x7b\xf7\
\x2e\x12\x12\x12\xaa\x04\xf2\xe4\x5c\x9d\x72\x56\xab\x15\x5b\xb6\
\x6c\x81\x97\x8f\x1f\x5a\x76\xe8\xc9\xaf\xb8\x96\x7b\x26\xd9\xff\
\x5a\xf7\x4a\x37\x83\xf0\x4c\x98\xe7\xbf\xae\x5c\xc4\x89\x83\x3b\
\x79\xde\xe3\x09\xd4\x1d\x2a\x58\x37\x21\x57\xb4\x8c\xf5\x10\x21\
\x1c\x6a\xb4\x1b\x05\xce\xdd\xcb\x2e\xd1\x9d\x4a\xc7\xf9\x53\x69\
\x9a\x65\xa1\x32\x23\xaa\xbc\x6c\x6a\xf1\xa1\xe2\x99\xed\x31\xf0\
\x3f\x08\xae\x5e\xd3\x01\x80\x69\xd4\x85\xc3\x19\x5d\x95\x2c\x5c\
\x47\x8e\x1c\xa1\x09\x09\x09\x88\x89\xed\x88\xc0\xd0\x30\xd9\x88\
\x97\x46\x22\x15\xd5\x1a\xc9\x9c\xc5\xba\x0b\xd8\x78\xd4\x2e\x2c\
\xc8\xee\xed\x3a\xcb\x86\x55\x9f\x4a\xdf\x8e\xe8\x05\xf8\xd4\x73\
\x64\x38\x54\x03\x2c\x47\xa9\xa3\xc2\x4b\x00\x37\xaf\x40\x84\xb7\
\x7f\x91\xd7\xad\x6c\xd8\xbc\x66\x21\x2c\x96\x32\xd1\xe5\x41\x40\
\x15\xb3\x9b\x2a\x5c\x1d\xd2\x2c\xa3\x4c\x79\xa5\x77\x54\x74\x61\
\x50\x42\xc1\x71\x1c\xda\x3f\x11\x87\x94\x94\x14\x64\x65\x65\x51\
\x2d\x12\xa7\x29\x66\x6b\x39\x8a\xd4\xa6\x1e\xa5\x14\xeb\xd6\xad\
\x43\x41\x41\x01\xba\xf4\x1e\xa6\xb2\xfa\x40\xa1\xc5\xb0\x23\x9b\
\x10\xb0\x0e\x64\x56\xeb\x90\x44\x07\x22\xe6\xf1\xfb\x6f\x89\x48\
\x5a\xff\x8d\xe4\x8c\x6b\x3c\x51\x52\xeb\x1d\x9d\x9e\x8e\x12\x96\
\x6c\xd0\x88\xfe\x6b\x10\x02\x44\x76\x7b\x13\x26\x4f\x5f\xd1\xba\
\xb0\xed\xa7\xaf\x14\x95\xa0\x0a\x39\x8e\xfd\x51\x99\x26\x44\x14\
\x75\x27\x62\xfd\x24\x60\x4a\x97\xde\x43\x51\x5e\x5e\x8e\x29\x53\
\xa6\x68\xba\x6c\xb4\x3a\x8b\x53\x43\x9d\x68\x2d\x0f\xa1\x94\xe2\
\xe8\xd1\xa3\xe0\x4c\x26\x44\x3f\xd2\x56\x43\x1b\x25\x8e\x46\x34\
\x71\x34\x13\x47\xc3\x17\x25\x72\x8f\x04\x08\xac\x56\x1b\x92\x7f\
\x5d\x0b\xab\xc0\x7b\x6a\x0d\x04\xfc\x63\xf4\xb0\x49\x2a\x2a\x10\
\x61\xbd\x08\x32\xb0\x89\x39\xa4\x1e\x02\x1b\xd9\xc1\xf5\xd6\xca\
\x0a\xec\xdb\xfa\x03\xac\x95\x95\x2a\xa4\x4a\x4d\xd3\x56\x01\x98\
\x50\xaa\x6b\x50\x8c\xac\xd7\x18\x7e\x81\xa1\x48\x4f\x4f\x47\x65\
\x65\xa5\x21\xcf\xaa\xd8\x41\xae\x2c\x3e\xca\xcf\xcf\xef\x7e\xe2\
\xc4\x09\x54\x8f\xa8\x83\xf0\x5a\x51\x8c\x92\xc8\x90\x29\xc1\x73\
\x29\x69\x6f\x7c\x3f\x51\xd1\x73\x49\x21\x91\x34\x41\xb7\x25\x4c\
\xfa\xb3\x27\x53\x25\x20\x88\x47\x10\xd0\xf4\x43\x55\xcc\x9c\x13\
\x40\x99\xe3\x8f\x57\xb8\x08\xc7\x21\x7a\xf8\x4a\xd1\xba\x70\xf1\
\xcc\x71\x1c\xd9\xb7\x45\x2c\x9f\x40\xaa\x64\xf5\x21\x6c\x7d\x28\
\x53\x07\x61\x5c\x31\x64\x9a\xca\xeb\xe7\xe3\x17\x80\xa8\x98\x58\
\xdc\xb8\x71\x03\x67\xce\x9c\xa1\x46\x36\xb4\x10\xa5\x38\x67\xbe\
\x72\xf6\x39\x2b\x2b\x2b\xa9\xb0\xb0\x10\x0d\x1f\x6e\x2d\x99\xda\
\x19\x97\x01\x3b\x6a\x08\xe3\x31\x15\x31\x00\x82\xb7\x94\xc8\xb1\
\x00\x84\xc5\x26\x00\xd8\xf9\xf3\x0a\xc9\x6a\x10\xd1\x0b\x30\x87\
\x49\xc4\x44\xb3\xa3\x88\x73\x31\x8e\x89\xe3\xe1\x1f\x86\xb0\x47\
\x9f\x17\x1b\xe2\xb7\x75\xcb\x41\x6d\x54\x3e\xe3\xa8\x04\xfb\x82\
\x5a\xfd\x04\xd7\x88\xc2\x24\xcf\x0a\x4e\x02\x55\x68\xf4\x70\x6b\
\x54\x56\x56\xe2\xc4\x89\x13\x86\xb6\x9f\x11\x5d\xde\xae\xe8\x3f\
\xa9\xa9\xa9\xe0\x38\x0e\x31\xb1\x1d\x15\xa3\x92\x91\xa8\xa0\xf4\
\x50\x0a\x8c\x57\xc2\x1c\x08\xfc\x49\xed\xdd\x5f\xb9\x97\x90\xb2\
\xf3\x67\x01\xfd\x61\x37\x8a\xca\x34\x77\x01\x13\x05\xb9\xd7\x4c\
\x4d\xcb\x07\xd5\xf8\xd9\xdf\x85\x77\x7c\x09\x26\xb3\x1d\xef\x7d\
\xf2\xf0\x1e\x64\x9f\x39\x2e\xd6\x83\x30\x75\x12\x85\x04\x28\xea\
\xa9\xbc\x67\xe2\x10\xc5\x7d\xe3\x16\x76\x64\x51\x6a\x6a\xaa\x6b\
\x1e\x55\x57\x76\xca\xc8\xc8\xc8\x40\x60\x68\x0d\x34\x89\xed\xe4\
\xa8\xb4\x38\x53\x76\xf4\xe2\xf3\xcf\x96\xf2\x32\x7c\xf6\xce\x70\
\x94\x97\xf2\x70\xdd\x88\x9e\x40\x60\x53\x15\x1b\xa8\xd2\x35\x41\
\x35\x4c\x71\xfa\xce\x26\x73\x48\x5d\xd1\xd2\x5d\x59\x61\xc1\xfc\
\x77\x47\xa0\xb4\xb8\x48\xbf\xbc\x30\x52\x3f\x38\xa4\xad\xdd\xa0\
\x09\xdc\xdc\x3d\x90\x91\x91\xe1\xba\x25\x41\x49\x03\xb5\xfe\xe7\
\xe6\xe6\x22\x20\xa8\x1a\x6a\xd4\xaa\x2f\xf1\x2c\xd6\xa9\x23\xf3\
\xe1\x48\xfe\x7e\x56\x13\x67\x9f\xa9\xcc\x20\x49\x71\xfe\x54\x3a\
\x83\x35\x08\x04\xea\x3e\x27\xa7\x4c\x5a\x54\x4b\x55\xd1\x56\x9b\
\x45\x4c\x38\xb1\x4b\x5c\xd5\x5b\x0f\x85\xbb\x5f\x75\x00\xc0\x95\
\xec\xd3\x38\x76\x70\xa7\xc2\x28\x4a\xe5\xcf\xb2\x01\x22\x0d\x14\
\xaa\xf1\x2c\x24\x09\x08\xae\x0e\x4f\xb3\x37\x6e\xde\xbc\x09\x8b\
\xc5\xa2\x89\xea\x51\x9d\x41\xce\xd6\xad\x08\x57\x56\x56\x16\x6a\
\xd4\x8e\x82\xd9\xc7\x4f\x66\x2f\x53\x2c\xd4\x61\x3c\x96\x92\x0d\
\x8b\xf2\xcf\x14\x4a\x9b\x9d\x84\x39\x5b\xb7\x62\xb6\x84\x35\xa8\
\x3f\xd2\x6e\x77\xd3\xed\x1d\xe8\x20\x1f\x05\xd1\x9a\xa8\x3c\x4b\
\xe1\xfe\xf5\xdb\xa1\x4e\xaf\xf7\xc4\x54\xeb\x57\xce\x41\x45\x65\
\x05\xe4\x8a\x9c\xdc\x5f\xe5\x28\x5f\x53\xd9\xc4\x61\x50\xcb\xa2\
\x50\xe4\xe1\x69\x46\x4c\xcb\x8e\xb8\x76\xed\x1a\x8a\x8a\x8a\x5e\
\xd6\x82\x14\x28\xf9\x3f\x67\xa4\x63\x00\xe0\xd6\xad\x5b\xe9\xb7\
\x6f\xdf\x46\x78\xad\x28\x9e\xd4\x12\x99\x77\x91\xf5\xe1\x8b\x8c\
\x94\x3a\x3e\x13\x07\xf1\xd7\x9e\xfe\x4a\xf6\x69\x1c\xfd\x7d\xbb\
\x3d\x0f\x93\x17\x50\x7f\x94\xe3\xcc\x74\xb0\xb1\xb1\x33\x95\x28\
\x8c\xa5\x6c\xa3\x2a\x5a\x8f\x69\x4d\x02\x0e\x35\xda\x8e\x82\x9b\
\x4f\x88\xdd\xba\x90\x99\x6e\xf7\xda\x2a\xfc\xdd\x54\xf1\x5f\xf6\
\x1e\x8e\xfe\x71\xb6\xae\xc2\xff\x16\xed\x7b\xa0\xb8\xb8\x18\x57\
\xae\x5c\x59\x66\x74\x69\x0f\x67\xd4\x39\x77\xeb\xd6\xad\x96\x56\
\xab\x15\xfe\x41\xa1\x72\x85\x4e\xd9\x06\x50\x1b\xe4\xea\x23\x0c\
\x4c\x1b\x6e\x4f\x5c\x26\xa5\xaf\xd1\x1d\xf0\xae\xc5\x98\xf3\x21\
\xb7\x5e\xeb\x4a\x73\x0a\x3e\x45\x15\xd6\x05\xa5\x2f\x81\x50\x98\
\xcc\x7e\x08\x6b\xf3\x9c\x18\x6d\xc7\xba\x65\xa0\xb0\x39\x96\x57\
\xc5\x6a\xe2\x30\xc1\xa1\xfd\x3e\x34\x2c\x52\x70\x74\x1a\x77\x79\
\x1b\x5d\xbe\x78\xf7\xee\x5d\xd8\x6c\x36\x78\xf9\xf8\x49\x75\x15\
\x49\x97\x9c\x2f\xcb\x58\x13\x91\x80\x7f\x20\x0a\xbe\xce\xeb\x40\
\x47\x92\xb7\x4a\xfe\x1e\x62\x02\x1a\xbf\xa5\xde\x11\x1a\xd6\x6b\
\x85\x04\x2d\x75\xac\x43\xa3\x29\xc8\x14\x95\x90\x3d\xb5\xba\xbd\
\x09\x93\xd9\x1f\x00\x70\x68\xd7\x46\x1c\xd8\xb1\x4e\x06\x00\x22\
\x6a\xb2\x89\x92\xb3\x31\x14\x54\xe6\x07\xe4\xbf\x29\xb4\xdd\x9d\
\x3b\x77\x5c\xc3\x24\x18\xd9\x2f\xbb\xa0\xa0\x00\x94\x52\x98\xcd\
\x3e\x12\xbe\x4c\x1c\x84\x54\x74\x06\x2b\x59\x13\x15\xbc\xa4\x44\
\xee\xaa\x11\xd2\x53\x6a\xc5\xa6\xd5\x0b\x50\x5a\x5c\x60\x8f\x10\
\xda\x0e\x08\x88\x61\x1a\x97\xca\x05\x01\x55\xf6\x43\xf4\xad\x0b\
\x44\x21\x38\xa8\xb0\x2f\x73\x48\x5d\x84\x34\xed\x0d\x00\xb0\xd9\
\xac\x58\xfb\xd5\x47\xa8\xa8\xb0\xc8\xa8\x03\x25\x94\x31\xe9\x30\
\x20\x13\x38\x4a\xfd\x84\x01\xfd\x8b\xa0\x12\x2f\x6f\x00\x10\xdb\
\xd2\x08\xe5\xe2\xf4\xe0\xbe\x6c\x58\x7e\x7e\x3e\x6c\x36\x1b\xcc\
\xde\x3e\xfc\xc8\x22\x8c\x05\x47\xb2\x3e\x39\x68\x1c\x44\x7a\x2f\
\x23\xd7\x7c\xdc\x73\x7f\x1c\x41\x46\xda\x3e\x49\x72\x6b\xb5\xd8\
\x3e\x8b\x1c\x86\x28\xd5\x46\xfc\xa8\x7a\x3b\x89\x86\x85\x5b\x3b\
\xa8\xd1\xb3\x5f\xc2\x33\xa8\x36\x00\x20\xf7\xd2\x59\x1c\xde\xb3\
\x49\x51\x0c\xc2\xe0\x4f\x89\x28\x00\x50\x85\xcd\x56\x8c\xc3\xbc\
\x07\x00\x2f\x6f\x5f\x91\x1a\x19\xa5\x5c\x9c\xde\xac\x51\x35\x41\
\x48\x70\x4c\x69\xc6\x50\x01\x7f\x00\x05\xfe\x80\x4a\xf1\xa8\x04\
\xe5\x25\x42\x3c\xd8\x25\x37\x2a\x2c\x81\xa9\x3b\x4c\xe2\x3d\x44\
\x21\x0e\x81\x38\x2a\xa6\x84\x81\xd5\xa8\x5a\xb9\x59\xda\xa3\x30\
\xaa\x51\x85\x5a\x40\xed\x96\xee\x5a\xdd\xdf\x12\xeb\xbb\xfe\x9b\
\x4f\x60\xad\xac\xe0\x27\x24\x5b\x57\x86\x32\xf0\xb6\x38\xc2\x08\
\x2d\x6c\xfd\xec\x02\x03\x65\x56\x57\x40\x77\x7f\x1f\xe5\x8c\xe2\
\xf4\x66\x0d\xfb\xdf\xcf\xcf\x0f\x1c\xc7\xc1\x52\x56\xca\x80\xf7\
\x58\x22\x4d\x24\xd1\x5a\x34\xc7\x0b\xbb\x7f\x10\xde\x44\x2f\x2c\
\x1f\xb1\xc7\xbf\x71\xf5\x92\x34\x7b\x40\x80\xda\x83\xe5\x8d\xa7\
\x89\xf1\xa1\xba\x4a\xaa\x43\x90\x03\x42\x51\x83\xce\x81\x20\xf4\
\x91\xfe\x30\x99\xed\xab\xc2\x2f\x9d\x39\x81\x3f\xb3\xfe\x10\x21\
\xc8\xac\x70\x28\x50\x06\xc8\x56\x60\x40\x34\x57\x51\x66\xb9\x8a\
\x40\xe7\x84\xf5\xb2\xfe\xfe\xfe\x86\xb6\x9b\xd1\xf4\x07\xa9\xcd\
\x9e\xa0\xa0\x20\x70\x1c\x87\x92\xe2\x02\x66\x96\xf0\x30\x0f\x7e\
\x43\x0c\xbb\xaa\x21\xc9\xce\xc4\x01\xe1\x23\xd1\xe7\xf2\xb2\x52\
\x7c\xf2\xd6\xb3\x28\x2d\x2e\xe4\x51\xa2\xbd\xed\x56\x03\x96\xd7\
\xa8\x69\xed\x72\x70\x9d\x36\x2e\x8e\x35\x43\xc9\x10\x88\x4a\x67\
\x1f\x64\x46\x50\xcf\xe0\xda\x08\xef\x30\xda\x6e\xe9\xb6\x56\xe2\
\xc7\x2f\xa7\xa3\xf0\xde\x1d\x86\x8f\xb2\x94\x82\xca\x28\x85\x40\
\x21\xc4\x59\x24\xe8\x47\x7c\x1b\x08\x75\x0d\x0e\x0e\x76\xba\x3b\
\xb0\xaa\xa9\x47\xcf\x80\x17\x10\x10\x00\x8e\xe3\x50\x5e\x52\x22\
\x71\x3e\x95\xb8\x54\xd5\x9f\xad\x90\xa0\x08\x41\x66\xfa\x7e\x9c\
\xcb\x38\x22\x8d\xe2\xa8\xd1\x8e\x0d\x4e\xb4\xd8\x87\xdc\x3a\xad\
\x6e\x45\x70\xd6\xb1\x6a\x1d\x6c\xaf\x4f\x44\xa7\x57\x40\x38\xfb\
\x4a\xee\xb4\xfd\x5b\x71\xe0\xb7\x75\x72\x1d\x4a\x09\xac\x77\x08\
\x23\x0a\xc1\xc6\xfe\x5f\x80\x2c\x0b\x0b\x90\x8d\x6c\x74\xc8\x19\
\xdd\x2f\x2d\x34\x34\x14\x26\x93\x09\x85\x05\x79\xe2\xca\x37\x01\
\x1b\x06\x76\x8f\x69\x51\x8f\x64\x71\x66\x8e\xf9\x6f\xfd\x61\x31\
\x83\x12\x7d\x11\x08\x79\x54\x85\x92\x29\x78\x86\xaa\x17\x55\x0b\
\x76\x45\x1d\x95\x5b\xc0\xd1\x8c\xa3\x02\x30\xf1\xaa\xde\x10\x75\
\xfb\x4c\x97\xf4\xa2\xc4\x65\xa8\xb0\x94\x31\x58\x3a\xca\xc0\x97\
\xa9\x43\x5d\x55\xeb\x4d\x81\xbb\xb7\xff\x02\x60\xdf\xca\xd3\xe8\
\x7e\x72\x9c\x11\x93\x37\x21\x04\xe1\xe1\xe1\x24\x24\x24\x04\x57\
\xff\x3c\x2f\x5b\xe0\x4b\x20\x87\x2a\x49\x03\x46\x6e\xce\x11\xfd\
\xa5\x14\xc8\xfa\xe3\x30\x8e\x1e\xd8\x21\x61\xac\x1f\x9a\x68\xc7\
\x1c\xb0\x30\x2a\xd6\x41\x06\x69\x79\x8a\xc3\x6c\xa2\x5a\x52\x9b\
\x7c\xc6\xaa\xce\x22\xe2\x80\x35\x16\xa9\x42\x64\xd7\x37\xe0\x55\
\xad\x81\xe8\x2f\x3a\xbc\x67\x13\x03\x45\x66\x2d\x11\xd2\xea\x0d\
\xc2\x68\xb1\x72\x2f\xb1\xbd\x2c\xe9\xbf\x6f\x87\x8f\x8f\x0f\xea\
\xd6\xad\x3b\xd7\xe8\x7e\x72\x9c\xd1\x1d\xd5\x01\x20\x32\x32\x12\
\x79\x37\x72\x61\xb5\x55\x3a\x0a\xd4\x0a\xe4\x25\x81\x72\xa4\x52\
\x11\xe0\xb7\x7f\xeb\x0f\x92\xe4\x56\xbd\x0b\x60\xae\x21\x5f\x38\
\x44\x95\xca\x14\xdb\x09\xce\x18\xbd\x51\x97\x83\xfe\xcf\xe4\xe9\
\x83\xd0\xe6\x4f\x8b\xb9\xed\xdd\xb2\x86\x41\xa2\xb2\xc2\xb5\x04\
\xcb\x54\x2e\x06\x63\x7f\x36\x9b\x15\x17\x32\xd3\x11\x1c\x1c\x0c\
\x6f\x6f\xef\x29\xce\xa8\x96\x83\xc3\xce\x19\xe2\x84\x10\x82\xe8\
\xe8\x68\xdc\xfe\xeb\x0a\xae\x64\x9f\xe1\xad\x08\x44\xd2\x89\x58\
\x6f\xbc\x8c\xb1\x83\x89\x4b\x70\x64\xef\x16\xec\xd9\xfc\x9d\xe4\
\xef\x79\x68\x02\x83\x42\xa7\x72\x05\x95\xb2\x18\x01\xa2\x62\x56\
\x61\xe3\x4b\xab\xd5\xa9\xad\xd2\xa0\x91\x95\x68\xd9\xa6\x00\x10\
\x44\x3e\xfe\x06\xdc\xbc\xec\x12\x5d\x7a\xf2\x36\x9c\x39\x9e\x22\
\xce\x3e\xa2\x10\x62\x88\xda\x4c\x25\x52\xbb\xdc\xb9\x79\x1d\x05\
\xf9\xb7\x51\xab\x56\x2d\x78\x79\x79\xc1\xe8\x66\xbe\x1c\x8b\xc7\
\x66\xd7\x50\xaa\xc9\xe7\xd1\xd1\xd1\xb8\x7b\xeb\x2f\x7e\x51\x2e\
\x15\x77\x15\x90\x3b\xb4\xd8\x31\x2c\x2c\x16\x14\x46\x91\x0d\x6b\
\x97\x7c\x84\x92\x22\xde\x6a\x10\x39\x00\x08\x6c\x06\xa8\x5a\xc6\
\x09\xe3\x72\x26\x2a\xa0\x0e\x3e\xdc\x66\x01\x32\x3e\x06\x2e\xac\
\x14\xa3\x5c\xff\x7d\x39\x2e\x6d\xfd\x10\x95\x25\xf9\x8e\xfc\x46\
\x6b\xa2\x39\x2a\x4f\xf0\x0c\xaa\x89\xea\xad\x87\x8a\x6d\x30\xff\
\xdd\x11\x28\x29\x2e\x10\x17\x52\x52\xc2\xa8\xa1\x02\x76\x5d\x14\
\x94\xa8\xcc\xf5\x7e\x35\xe7\x1c\x2a\x2c\xe5\x88\x8e\x8e\xd6\xdd\
\x80\x49\x39\xa3\x38\x67\x1b\xf8\xb1\xf7\xb1\xb1\xb1\xb0\xd9\xac\
\x38\x97\x91\xc6\xec\xc6\x41\x65\xee\x6a\x02\x22\xe3\xed\xe2\xaa\
\x34\x10\x9c\xcf\x4c\xb3\x7b\x2d\x01\xc0\x3d\x00\x68\x3a\x4d\x5c\
\xbb\xe3\x60\xc8\x54\xb3\xb7\x81\x31\xe2\x59\xf2\x81\xdc\x4d\xc0\
\xee\x27\x80\xac\x85\x40\xf9\x2d\x69\xcd\x52\x69\x3e\x72\x7e\x9d\
\x81\xf4\xd9\xad\x70\x3d\xe5\x6b\x54\x96\xde\x53\xe8\xab\xda\xcb\
\x55\xe4\x33\x89\x22\xa2\xf3\x6b\xf0\xaa\x16\x05\x00\xb8\x91\x7b\
\x09\x69\xc9\xbf\x32\x40\x11\x88\x7c\x55\xdc\x7c\x83\x51\xd4\x29\
\x95\xda\xe3\xc2\xa9\x74\xb1\x0d\x9d\xed\x03\x2b\xdb\x96\xd9\x95\
\xdd\xe6\x5b\xb5\x6a\xf5\x8a\xaf\xaf\x2f\x32\x8e\xec\x15\x69\x30\
\x81\x1c\x4f\x46\x19\x37\xb6\x48\xa9\x08\x05\x60\x43\xe2\xb2\x59\
\x52\x47\xd4\x1b\x0e\x78\xd5\x74\x5c\x41\xa0\xe4\x5d\x0a\x6d\x1f\
\x96\xbb\xc0\xd9\xcf\x81\x9d\x1d\x80\x43\x2f\x02\xf7\x32\xc5\xca\
\x36\x6e\xd1\x01\x8f\xb4\xed\x66\xdf\x98\x09\x14\x65\xb7\x2f\x22\
\xeb\xfb\x97\x70\x78\x7a\x34\x2e\x6e\x78\x07\xe5\xf7\xae\xca\x75\
\x1f\x19\x44\x0c\x8e\xab\xb4\x00\xf8\xd6\x6c\x8a\x5a\x4f\x4c\x16\
\xbf\xb1\x6e\xc5\x6c\x58\x2b\x2d\x00\x03\x11\x93\xb7\x83\x84\x91\
\x23\x8c\x24\x99\x71\x64\x1f\xdc\xdc\xdc\xd0\xa9\x53\x27\x55\x00\
\xbd\x56\xfb\xbb\xe4\xf2\x0e\x0c\x0c\x5c\xde\xa8\x51\x23\xdc\xbc\
\x96\x83\xfc\xbc\x9b\x92\x79\x94\x4a\xb4\x96\x30\x1b\x55\x88\x3c\
\x89\x12\x5c\xbf\x9c\x8d\x13\xa9\x49\x92\x85\xa9\xde\x08\xb9\x54\
\x25\x73\xa4\x29\xf5\x21\x02\x50\x0b\x90\xb3\x16\xd8\xd1\x0a\xc8\
\x9c\x01\x94\xfd\x25\x36\x9a\x6f\x40\x30\x5e\x98\x34\x0f\xb3\x57\
\xed\xc5\xc7\x2b\x7e\xc3\x84\xf8\x55\xbc\x5b\xc4\x9e\xbe\xa2\xf0\
\x26\xae\x24\xcd\x43\xfa\xac\x16\xc8\xd9\x31\x17\x56\x4b\x89\x8a\
\xff\x00\x9a\xfe\x84\x6a\xb1\x03\xe1\xee\x6b\x77\xb3\xe4\x9c\xcb\
\xc0\xe9\xe3\x29\x92\x6d\x4e\xac\x27\xd3\x0e\x54\x1e\x5e\x5e\x56\
\x82\x9c\xf3\x99\xf0\xf7\xf7\x47\xa3\x46\x8d\x88\x51\x9e\xaf\x09\
\x1a\xd1\xd2\x85\x38\x8e\x43\xc7\x8e\x1d\x61\xad\xac\xc0\x1f\x87\
\xf7\x48\xe0\x08\x96\x07\x89\xc8\x4c\x29\xbc\xb2\xa2\x1c\x6b\x97\
\x7c\x0c\x4b\x79\x99\x84\x35\xf0\x8d\x52\xe1\x2d\x2a\x9a\xa9\xe5\
\x2e\x70\xe1\x6b\x60\xcf\x93\x40\xfa\x58\xa0\xe2\x9e\xe4\x36\x8a\
\xac\x8f\x57\xa6\x2e\xc6\x37\xbb\x72\x10\xf7\xc2\x5b\x30\xb9\xb9\
\x81\x10\x0e\x8f\xf7\x1d\x8e\xe5\xdb\xcf\x63\xd2\x27\xdf\xa3\x6e\
\xa3\x66\x62\xfc\x8a\xa2\x5b\xb8\xb4\xe9\x5d\xa4\xcd\x68\x86\x2b\
\xbb\xe6\xa3\xec\xee\x15\xa8\x7a\x0f\x15\xd2\x98\xbb\x4f\x30\x6a\
\xb4\x7b\x41\xcc\x67\xe3\xea\xf9\xa0\xd4\xea\x58\x7f\xfe\x3f\x85\
\xfc\x39\xe7\xfc\x29\xe4\xdd\xb8\x8a\x0e\x1d\x3a\xc0\x6c\x36\xbb\
\x04\x1a\x91\x1d\x74\xab\x75\x6a\x21\x1b\x76\xe0\xc0\x01\xda\xab\
\x57\x2f\x34\x6e\xd9\x05\xd3\xbe\xdc\x22\x4a\x5f\x44\xdc\xe3\x40\
\xf2\x2b\x08\x61\xbf\x6f\x4f\xc4\xbc\x49\xcf\x4a\x7a\x4f\xc7\x75\
\x40\x48\x2b\x4d\x03\x00\x00\xa0\x38\x07\xb8\xf2\x8b\x9d\xf9\x33\
\xb3\x05\xb0\x6f\x92\xf4\xcc\xab\xd3\x10\x13\xdb\x91\xf7\xb1\x50\
\xc9\xff\xa3\x70\xca\x54\x58\xca\x70\xea\xe8\xef\xd8\xf2\xfd\x62\
\xa4\xed\xff\x55\xc6\xe4\xdc\xbc\x02\x51\xa3\xfd\x0b\x08\x6b\x33\
\x1c\x7e\xb5\x63\xe5\xcb\x56\xc4\x7b\x7b\x7e\x96\x82\xbf\x70\x68\
\x5a\x03\xd8\x2c\xc5\x30\xb9\xb9\x63\xd4\xc4\xb9\xe8\x3f\x72\x82\
\xc4\x77\x1d\x90\xfc\xd2\xca\xbf\x95\x73\xde\xc4\x6f\x89\x4b\x70\
\xec\xd8\x31\x34\x6e\xdc\x98\x18\x39\x1d\x52\xf8\xcf\x19\xd9\x6c\
\x9b\x0d\x6b\xd6\xac\x19\xe9\xda\xb5\x2b\xce\x67\xa6\xa3\xb8\xf0\
\x9e\xc8\xb4\x1d\xdc\xde\x8c\xb0\xb0\x6f\xcb\xf7\x52\xeb\xd6\x79\
\x56\x42\xea\xc8\xf8\x0c\x5f\x3f\x6b\x39\x90\xbb\x05\x48\x1d\x05\
\x64\xce\x94\x75\x4e\x58\xcd\x7a\x18\xf2\xf2\x7b\x78\x67\x7e\x22\
\x5a\x75\xea\x05\x2f\x6f\x3f\x99\x47\x8c\xa8\x20\x49\x3d\x3c\xbd\
\xd0\xbc\x5d\x0f\x4c\x9c\xf3\x1d\x9e\x1b\x3b\x1d\x75\x1a\x3e\x2c\
\x13\x26\x72\x77\x2f\x40\xe6\xb2\x38\x5c\x4d\x5e\x82\xca\xb2\x02\
\xc6\x50\x2b\x5f\x0a\xee\xee\x17\x26\x7a\x5d\xad\x95\x15\xd8\xb5\
\xe1\x5b\x54\x94\x97\x29\x70\x74\x8c\x13\x50\x14\xf9\x6d\x38\x79\
\x78\x37\x1e\x7e\xf8\x61\x19\x79\x33\xb2\xa1\xba\x0c\x59\xea\xcc\
\xf4\x2d\x84\xf9\xfb\xfb\xe3\x85\x17\x5e\x40\x7e\xde\x0d\x69\xad\
\x27\xb3\x24\x83\x5d\x1f\x47\x88\x7d\x97\x8f\x63\x29\xbc\xd5\xc0\
\xe4\x03\x44\xbf\x01\x98\x3c\x14\xfc\x07\x40\x65\x21\x70\x76\x21\
\x90\xd4\x09\x38\x34\x0a\xc8\xff\x43\xfc\x6e\xbd\xe8\x47\xf0\xca\
\x7b\x5f\x60\xd1\x2f\xc7\xf1\xfc\xf8\x99\x08\xad\x5e\x53\x6e\x16\
\x63\x8d\x07\x84\x88\xd8\x68\x76\x73\x0c\x5f\xff\x20\x3c\xf3\xea\
\x34\xcc\x4f\x48\xc3\xa4\x4f\x7e\x44\xc3\xa6\x6d\x40\x78\x09\xb2\
\xfc\x4e\x0e\xce\xaf\x7d\x1d\x47\xa6\x37\xc6\x85\xf5\x6f\xa1\x2c\
\xff\x8a\x83\x1e\x46\x40\x10\x35\xf0\x53\x78\x55\x6f\x64\xe7\x45\
\xe7\x33\x90\xba\x6b\x23\x83\xd7\x96\x9b\xea\x84\x76\xd9\xbd\x71\
\x15\x72\xce\x65\xe2\x99\x67\x9e\x81\x72\xa7\x46\x23\x6d\x5f\xa5\
\x2d\x31\x4b\x4a\x4a\x50\xb7\x6e\x5d\x5a\x5c\x52\x8e\x95\x49\x97\
\xe0\xe7\x1f\xac\xea\xa2\xa6\xa0\xf8\xec\x9d\xe1\xd8\xff\xeb\x8f\
\x7c\x4b\x3f\x0f\xc4\x7e\x2e\x77\x63\xdb\x2c\xc0\xf9\x2f\x81\x0b\
\x2b\x80\xb2\x1b\xb2\xef\xf8\xf8\x05\x62\xfc\x8c\x95\x78\xb4\x6b\
\x7f\x98\x4c\x6e\xea\xbe\x39\x25\x78\x9e\x18\x8b\x63\xb3\x5a\x91\
\x95\x71\x04\x9f\x4d\x7e\x0e\x37\xae\x5e\x92\x3b\xc9\x3c\x7c\x10\
\xd6\xfa\x3c\x22\x3b\xa4\x00\x00\x0b\xf0\x49\x44\x41\x54\x59\x44\
\xc5\x7d\x0a\x37\xef\x40\xd9\xbb\x2b\xbb\x17\x20\xfb\xe7\x89\x00\
\x80\x06\x4d\x5a\x62\x7e\x42\x9a\xfc\xe0\x28\xc6\xe5\x5d\x61\x29\
\xc3\x98\x7e\x4d\x70\x2f\xef\x3a\x32\x32\x32\x10\x15\x15\xe5\xf2\
\xc6\x09\x9a\x1b\x59\xe8\x1d\xba\xe4\xe5\xe5\x85\x61\xc3\x86\xa1\
\xa4\xb8\x00\xfb\xb6\xfe\x20\x07\xb8\x30\x05\xbd\xfa\x67\x16\xd2\
\x93\xb7\x49\x56\x83\xba\xc3\xa5\xf7\x96\x7b\x40\xce\x0f\xc0\xbe\
\xde\x3c\x29\x93\x3a\xa7\x7a\x44\x1d\xbc\x3c\x75\x21\x16\x6f\x38\
\x89\x76\x4f\xc4\x81\x33\xb9\x31\xae\x1d\x06\x1f\xad\xb0\x97\x52\
\x15\xc3\x00\x85\xe4\x0a\x91\xad\x59\xe0\x4c\x78\xe8\x91\xb6\x98\
\x9f\x78\x04\x93\xe6\xfd\x88\xfa\x0f\x35\x17\xbf\x61\xb3\x14\xe3\
\x7a\xca\xd7\x48\x8f\x8f\x45\xee\xde\x45\x28\xcb\xcb\x91\xc8\x6c\
\xab\xa1\x30\xf1\xd6\x85\x8b\x67\x4f\x20\xeb\xe4\x21\x07\xe7\xaf\
\xd0\x5f\x27\x0f\xef\xc6\x8d\xab\x7f\xa2\x6b\xd7\xae\xa8\x57\xaf\
\x1e\x31\x7c\x90\x95\xcc\x6b\x52\xc5\x0d\xe7\x2e\x5c\xb8\x40\x9b\
\x37\x6f\x0e\xff\x90\x70\x2c\xfa\xe5\x04\xcc\x66\x1f\x09\x07\x46\
\xed\x58\x83\x09\x83\x5b\xe1\x92\xb0\x58\x37\xbc\x27\xd0\x7e\x0d\
\x50\x9e\x07\x5c\x5e\x07\x9c\xfb\xd2\x81\xf9\x37\x7c\xb8\x35\xfa\
\x3c\x37\x0e\x6d\xbb\x0d\x80\xb7\x8f\x9f\x7c\x23\x3f\xaa\xc0\x8e\
\x50\xc7\x45\x76\xac\xb5\x48\xeb\x59\xc9\xcb\x85\xf0\x0a\x4b\x39\
\x4e\x1e\xde\x83\x6d\x6b\xbf\xe2\x95\x51\xa9\x5d\x4c\x66\x3f\xd4\
\x68\x3b\x12\xb5\x7b\xbc\x03\xcf\xa0\x48\x64\xff\x32\x19\x57\x92\
\xe6\xd9\xad\x2b\xcd\xda\x62\xda\x97\x9b\x11\x10\x5c\x4d\x26\x57\
\xd8\xa8\x0d\xef\x8f\xee\x8e\x8c\x23\x7b\x91\x9c\x9c\x8c\x4e\x9d\
\x3a\x55\x69\xdb\x11\xd5\x1d\x17\x8d\x9c\x29\x60\xb3\xd9\xd0\xab\
\x57\x2f\xba\x7b\xf7\x1e\xbc\xff\xc5\x46\xb4\xea\xd2\x5b\x36\xd5\
\xcf\x65\xa6\x61\xd2\xd0\xb6\x76\xa3\xa8\x9b\x9f\xbd\x73\x04\x3e\
\x73\xf7\x04\x40\xa5\x4d\xc3\x83\xab\x45\xa0\x5d\xf7\xa7\x11\xf7\
\xe2\x64\x54\x0b\xaf\xa5\xda\x90\xf2\x0d\x8d\x88\x8c\x8c\xea\xc5\
\xb7\x0b\x78\x92\x10\x41\x59\x90\x21\xdb\xf1\xbc\x98\x5f\x74\xef\
\x0e\x76\x24\x2e\xc3\xee\x8d\xab\x70\xf5\xcf\x73\x72\x92\x1b\xd1\
\x14\xe1\x1d\xff\x03\x9f\x9a\xcd\x90\xb9\xa4\x1f\xac\x65\x76\x07\
\xdc\xc4\x39\x6b\xf0\x78\xdf\xe7\x64\x92\x5b\xce\x85\x53\x78\x73\
\x70\x4b\x74\xea\xd8\x01\xdb\xb7\x6f\x97\xed\xbb\xed\x4a\x7b\xdf\
\xd7\xb6\xcc\xd7\xaf\x5f\xa7\xed\xdb\xb7\x87\xd5\xe4\x8d\x4f\xd7\
\xa6\xc2\xcb\xc7\x5f\x5c\xb6\x1e\xff\x46\x1c\x0e\xed\xde\xc8\xd3\
\xc4\x08\xc0\x23\x10\xb8\x77\x46\xc6\x0c\xc2\x6b\x37\x40\x9f\x61\
\x63\xd1\x6d\xc0\x28\x78\xfb\xfa\x8b\x08\x54\x56\x5a\x56\x6e\x87\
\x49\xe1\x08\x10\x55\xdb\x0c\x83\x95\x94\xd9\x91\x2d\xe2\xee\xe5\
\x52\xb4\x43\x1e\x96\xf2\x32\xa4\xed\xdb\x8a\x84\x65\x33\xf1\xe7\
\xb9\x0c\x50\x2a\x0d\x64\xcf\xe0\xda\xe0\x4c\x1e\x28\xbd\x65\xdf\
\xcc\x36\xb2\xde\x43\xf8\x62\x53\x06\x38\x93\x1b\x08\x80\xbc\x1b\
\x57\x31\x6f\xf2\x30\x5c\xbd\xf0\x07\x8e\x1e\x3d\x8a\x7a\xf5\xea\
\x91\xaa\xee\xdb\xc3\xb9\xc2\x7b\x94\xef\xc2\xc3\xc3\xc9\x07\x1f\
\x7c\x80\x2b\xd9\xa7\xb1\xe0\xdd\x91\xa2\x82\x97\x7b\xe9\x2c\xd2\
\xf7\xff\x2a\x25\x2c\xbd\x06\xdc\x3b\x2d\x76\x8e\x97\x8f\x1f\x26\
\x7d\xf2\x23\x96\xfd\x9a\x85\x7e\xcf\xbf\x01\x1f\x3f\x7f\xd1\x66\
\x25\x43\x52\x51\x2a\xc2\xb3\xc4\xbd\x43\x55\x7a\x43\x82\x40\x51\
\x99\x4f\x8e\xb0\xb0\x5c\xca\x98\x5f\x64\x9e\x59\x30\x52\x98\x24\
\x8d\x79\x78\x9a\xd1\xbe\xc7\x20\x2c\x5c\x7f\x1c\xf3\xd6\x1e\x44\
\x8d\xc8\xfa\x62\xaa\xf2\x3b\x97\xc5\xce\x11\x10\x40\xe9\xc9\xdb\
\x78\xa8\x15\xc5\x2f\xdf\xce\xc3\xa9\xf4\x64\xbc\xf6\xda\x6b\xa8\
\x5f\xbf\x3e\x51\x9b\x21\x46\x4e\x53\x71\xd8\x2f\x4e\x0b\x40\xa2\
\xf7\x6e\xe0\xc0\x81\xa4\x71\xe3\xc6\x48\x4f\xde\x86\xcc\xf4\xfd\
\xb0\xd9\x28\x92\x7e\xf9\xc6\xbe\xab\x94\xe2\x0a\x09\x8b\xc4\x8b\
\x6f\xcf\xc3\xc2\xf5\xc7\xd1\xf9\xa9\x67\xf9\x2d\xcb\x18\x90\xa1\
\x12\x08\xea\x60\x86\x11\x48\x11\x95\x91\x3c\x29\x3d\x91\x66\x06\
\xd3\xd3\x54\xe1\xd6\x96\x6d\x5b\xa1\xe1\x9d\xa5\x90\x56\x78\x47\
\x37\x7d\x14\xf3\x13\xd3\xf0\xda\xb4\xaf\x10\x15\x13\xab\xda\xa8\
\x3b\x12\x97\xc1\x66\xa3\xb8\x76\xf9\x3c\xf6\x6c\xfa\x0e\xc1\xc1\
\xc1\x18\x33\x66\x0c\x5c\x69\x5f\x55\xbc\xb6\x72\x5d\xa4\xde\x39\
\x0c\x5a\x5b\x30\x27\x25\x25\xd1\x7e\xfd\xfa\x21\x30\x34\x02\xaf\
\xbc\xff\x05\x16\x4f\xfb\x0f\xee\xdc\xba\xc6\xa7\xe7\xd0\xa8\x59\
\x1b\x74\x1f\x30\x0a\x5d\x7a\x0f\x13\xb1\x61\x50\x57\xd8\x19\x92\
\xa6\xdc\xf1\x97\x35\x2e\xda\x5d\x1c\x54\xd8\xdf\x4d\x3c\x3a\x4d\
\xda\x0c\x50\xce\xaf\xd4\x9f\x59\xc9\xc1\x9e\x17\x65\xbe\x23\xb7\
\x3e\x09\x75\xb6\x56\x56\xe0\xf0\xde\x2d\xd8\xb5\xf1\x5b\x1c\x4f\
\xd9\x29\x6e\xb0\xe1\xe1\x69\xc6\xe7\x3f\x1f\xc3\xa2\xf7\x47\xe3\
\xaf\x9c\x33\x58\xb0\x60\x01\x46\x8e\x1c\x49\xaa\x72\xae\x05\x3b\
\x8b\x4c\xd3\xa7\x4f\xd7\x75\x1a\x19\x39\x18\x22\x2a\x2a\xea\x23\
\xab\xd5\x3a\x7d\xeb\xe6\x0d\xa8\x28\x2f\x43\xe1\xbd\x3c\x14\xdd\
\xbb\x0b\xbf\x80\x60\x3c\x39\xf8\x25\x4c\x9c\xb3\x06\xd1\x8f\xb4\
\x85\xbb\x87\xa7\xdd\x6f\xc2\xba\x86\x15\x40\x0e\x22\x3a\xb9\xa8\
\x08\xcb\xa5\x0c\xf7\x27\xbc\x9f\x88\x30\x07\x3a\xc9\x5c\xd6\x7c\
\x27\x50\x30\x5b\x28\xb2\xab\x29\xa8\xdc\x81\x08\xb6\xc3\xc1\x3a\
\x0d\xf9\xef\xf0\x1b\x68\x8b\xbb\x40\x12\x13\x6a\x45\x35\x46\x97\
\xa7\x86\x22\x20\xa4\x3a\x2e\x9e\x3d\x8e\xd2\xe2\x42\x04\x84\x54\
\x47\x85\xa5\x1c\x29\x3b\xd7\x61\xec\xd8\xb1\x98\x3c\x79\x32\xd1\
\x73\xca\x39\x9b\x14\xe2\x4f\xed\x68\x00\x67\xb6\x39\x65\x4f\x13\
\x42\x50\x51\x51\x81\x21\x43\x86\xd0\x2d\x5b\xb7\xa2\xf3\x53\x43\
\xd1\xbe\x7b\x1c\x1e\x6e\xd5\x19\x3e\xfe\x41\x8c\x74\xe7\x6c\x3f\
\x29\xc7\xed\xc7\xa5\xed\xc6\x01\xa8\x1c\x0d\xc0\x36\xb2\x73\x0d\
\x55\x1e\xae\x8a\x3f\x25\xda\x80\x7c\x76\x5d\xba\x90\xbe\xac\xb4\
\x18\xb9\x17\xcf\xe0\xd0\x9e\x4d\x58\xb7\x62\x36\x5a\x34\x6f\x8e\
\x7d\xfb\xf6\x89\x07\x71\x68\x91\x30\xa3\xc2\x19\xe7\x8a\x1d\x4e\
\x8f\x2f\xb9\xbb\xbb\x63\xc9\x92\x25\x88\x08\x0f\xc7\xfe\xad\x3f\
\xa2\xf0\xde\x1d\xf8\x04\x04\x3b\x80\x37\xa8\x83\x22\xc9\xb8\xcd\
\x45\x96\xa0\x58\x32\x41\x18\xd4\x37\x51\xb8\xd1\x85\x19\xa1\x70\
\x41\x4b\x70\x63\xf6\x99\x48\x9b\x3b\x29\xc0\x23\x72\xb7\xbd\x34\
\xc3\xa8\xca\x2a\x3b\x4a\x24\xf8\xaf\x97\xb7\x2f\xca\x4a\x8a\xf1\
\xcb\x37\xf3\xe0\xed\xe5\x85\xef\xbe\xfb\x0e\x7e\x7e\x7e\x0f\xe4\
\x1c\xf4\x2a\xef\xd5\xa3\xe5\x92\x08\x0b\x0b\x23\xf3\xe7\xcf\x47\
\x78\x78\x0d\x7c\xbf\x68\x1a\xae\x64\x9f\x96\x76\xce\x95\x81\x49\
\x04\xa9\x8c\x97\xd2\x44\x48\x30\x65\x9c\x5c\x8c\xd9\x9e\x2a\xdc\
\x19\x80\x43\x18\xa1\x2c\x26\x97\x07\x16\x12\x16\x48\x28\xad\x35\
\x25\x32\x74\xb8\x54\x0e\x36\x9c\xf0\xab\xb5\xd9\xf2\x08\x52\x1a\
\xdb\x8d\xd9\x67\x8e\x63\xc5\x9c\x09\xf0\xf6\x32\x63\xd5\xaa\x55\
\x88\x89\x89\x21\x5a\xee\x9a\xaa\xfc\x44\x77\x83\x9e\x62\xaa\x77\
\xce\x9d\xda\x29\x1f\xc7\x8f\x1f\xa7\x4f\x3e\xf9\x24\x0a\x8b\x4a\
\x30\x21\x7e\x15\x3a\xf4\x18\xc4\xc0\x84\xa9\xe2\x9e\x71\x35\xb3\
\x67\x39\x10\xa8\xc4\x17\xb5\x4d\x05\x39\xaa\x42\x7c\x99\xa8\xad\
\x2c\x8f\xca\xe2\x23\x36\x0e\x9f\xfe\xec\x89\x14\xcc\x18\xd3\x0f\
\x96\xb2\x62\x6c\xd8\xb0\x01\x3d\x7b\xf6\x24\xca\x36\x73\x26\x60\
\x39\x6b\x6f\xcd\x83\x6e\x95\x7c\xc6\xe8\x01\xe1\x00\xd0\xa2\x45\
\x0b\xb2\x60\xc1\x02\x58\xca\x4b\x31\x7f\xca\xf3\xc8\x3a\xc9\x83\
\x4c\x88\x62\x17\x12\x66\x55\x22\x51\xec\x43\x20\xdf\xac\x8f\x71\
\x80\x41\xc5\xe9\x2a\x5b\x51\x2d\xdf\x76\x46\x2b\xbe\xe4\x50\x03\
\xb3\xd2\x9c\xd1\x84\x89\x7c\x71\x1a\x91\x2d\x73\xa4\xb8\x71\xf5\
\x22\x66\x8e\x7b\x1a\x85\xf7\xee\x60\xca\x94\x29\xb2\xce\xd1\x83\
\x50\xbb\xda\xde\x44\xb9\xe9\xb6\x9e\xd8\xe7\xec\x3d\xdb\xfb\x36\
\x9b\x0d\xeb\xd6\xad\xa3\x6f\xbc\xf1\x06\xca\x2a\x28\x46\xbe\x39\
\x1b\xdd\xfa\x8f\x04\x67\x32\x39\x0c\x4e\x46\xb8\x85\xfe\x69\x1b\
\x2a\xef\x65\x72\x03\x33\x03\x54\x8f\x3b\xa1\xec\xc2\x51\x1d\x88\
\x0f\xd1\xfc\x3e\x05\x70\xe0\xb7\x75\x58\x31\x7b\x02\x2c\xa5\x05\
\x58\xb9\x72\x25\xe2\xe2\xe2\x88\x87\x87\x87\xa1\x83\xe2\x5d\x6d\
\x67\xdd\xd3\x4f\x1e\xc4\x95\x91\x91\x41\xfb\xf7\xef\x8f\x9c\x9c\
\xcb\xe8\x36\x60\x24\x5e\x9a\xf2\xb9\xb8\xd2\x4c\xb9\x8c\x91\x10\
\xe5\x4e\x87\x0a\xca\xe7\x2c\x8e\x0a\xc5\x72\x10\xf8\xd4\xa8\xa0\
\x32\x7f\x8d\x6f\x95\x97\x95\x62\xdd\x8a\x39\xf8\x79\xe5\x1c\x04\
\xf8\xfb\xe1\xa7\x9f\x7e\x42\xf7\xee\xdd\xc9\xdf\xd9\x7e\x9c\x2b\
\x27\x3f\x6a\xd1\x49\xbd\x74\x4d\x9b\x36\x25\x4b\x96\x2c\x41\xc3\
\x86\x0d\xb0\x6b\xc3\xb7\x58\x3e\xfb\x0d\xd1\xff\x42\x18\x93\x8c\
\x68\xea\xa1\x44\x75\x0f\x20\x89\xa6\x2b\xd6\xe8\xf0\x9b\x9f\xcb\
\xac\x00\xac\xc9\x48\xdc\x84\x1c\x8a\xfd\x9d\xe4\x0b\x7c\x09\x18\
\x4b\x84\x28\x0a\x43\x84\x56\x15\xe6\xdf\xc1\xd2\x99\x63\xb1\x6e\
\x79\x3c\xea\xd4\xae\x85\x2f\xbf\xfc\x52\xec\x1c\x23\x67\xc6\x56\
\xe5\x24\x4d\xd9\x0c\xd2\x3b\x45\x57\x6b\x8f\x4d\x3d\xf9\x5e\x79\
\x5f\x5c\x5c\x8c\xc9\x93\x27\xd3\xa5\x4b\x97\xda\x51\x38\x6f\x7d\
\x82\x2e\xbd\x87\xd9\x95\x57\xca\x9f\x4a\xe2\xe0\xd3\xa7\x8c\x25\
\x88\x48\x67\x26\x50\xc6\x3a\xa0\xa4\x66\x4a\xd8\xb0\x08\xcd\x25\
\xe2\x52\x4d\x87\x77\xec\xf9\x40\x90\x77\x6e\x79\x79\x09\x4e\xa4\
\xee\xc2\xca\xb9\x6f\xe2\x46\xee\x25\xf4\xef\xdf\x1f\xcb\x97\x2f\
\x5f\x57\xad\x5a\xb5\x21\x5a\x75\x75\x76\xef\xec\x9d\x83\x35\x5b\
\xef\xe4\x2d\x2d\xfa\xa8\x25\xcd\xe9\x9d\xe3\x46\x29\xc5\x0f\x3f\
\xfc\x40\x27\x4d\x9a\x84\x9b\xb7\x6e\xa1\x76\xfd\xc6\x98\x10\xbf\
\x1a\x0d\x9a\xb4\x94\xcd\x10\x61\xbd\x91\xba\x24\x04\x11\x30\x29\
\x8c\x72\x42\x94\x65\x70\x3c\x37\x50\x3a\xd9\x97\xf5\x15\xa9\x7d\
\x03\xa2\xc9\xe7\xc6\xd5\x3f\x31\xfb\x8d\x81\xb8\x94\x75\x12\x6e\
\x6e\x26\xac\x5e\xbd\x5a\xc6\x6f\xf4\x4e\x29\xd3\x6b\x3f\x67\x6d\
\x2b\x0b\xfb\xbb\x4f\x81\x54\x63\x82\xd9\xd9\xd9\x74\xc2\x84\x09\
\xd8\xbe\x7d\x3b\xbc\x7c\xfc\xd1\x77\xf8\x78\x74\x7c\x72\x30\x6a\
\x37\x68\x52\xa5\x13\x14\xa9\x2e\x5b\x77\x72\xc8\x97\xc3\x16\x0b\
\x14\xb7\xae\x5f\xc6\x81\x1d\x89\xd8\xfc\xfd\x42\xdc\xcb\xbb\x81\
\x36\x6d\xda\x60\xc1\x82\x05\x68\xdd\xba\x35\x79\x90\x27\x3c\x1a\
\x76\xd8\x55\xa9\x51\x0c\x8e\x02\xad\xb4\x56\xab\x15\x07\x0f\x1e\
\xa4\xf1\xf1\xf1\xd8\xb9\x73\x27\xdc\xdc\x3d\xd0\xee\x89\x38\xf4\
\x88\x1b\x8d\x98\xd8\x8e\x76\xd2\xe7\xd0\x88\x54\x8d\x0e\x89\x16\
\x6a\xe2\xe0\x30\x52\xef\x0c\xb5\xb7\x56\x6b\x25\x2e\x9c\x4a\xc7\
\xee\x8d\xab\xb1\xff\xd7\x1f\x51\x52\x54\x80\x36\x6d\xda\x20\x3e\
\x3e\x1e\x1d\x3b\x76\x24\x9e\x9e\x9e\x2e\xd5\x5d\x4b\xdf\x71\xb5\
\xcd\xfe\xeb\x33\x48\x59\x28\xab\xd5\x8a\xb5\x6b\xd7\xd2\x39\x73\
\xe6\xe0\xd4\xa9\x53\x00\x21\xa8\xdb\xa8\x29\x46\x4f\xfe\x0c\x0d\
\x9b\xb4\x86\xb7\xaf\xbf\x8e\xfd\xae\xca\x25\x10\xc5\xbb\xf2\xd2\
\x62\x5c\xce\x3e\x8d\x55\xf3\xdf\x41\x66\x7a\x32\xa8\xcd\x86\x5a\
\xb5\x6a\x61\xe2\xc4\x89\x18\x33\x66\x8c\xae\x27\xf4\xbf\x3e\x83\
\x8c\x30\x37\x35\x29\xc4\x08\x23\x54\xcb\x97\x4d\x6b\xb1\x58\xb0\
\x7e\xfd\x7a\x9a\x90\x90\x80\xe4\xe4\x64\xe4\xe7\xe7\xc3\x2f\x20\
\x18\x2d\x3a\xf4\x40\x4c\x6c\x27\x34\x68\xd2\x12\x75\x1a\x3e\x0c\
\xb3\x97\x8f\x6c\xce\xc8\x4f\x71\x54\x18\x43\x45\xcb\xb6\xe4\x8c\
\xab\xb0\x58\x70\xe5\xe2\x19\x64\x9d\x3c\x84\x73\x99\x69\x38\x7e\
\xe0\x37\xe4\xdd\xbc\x0a\x6f\x6f\x6f\xb4\x6f\xdf\x1e\x71\x71\x71\
\x18\x3e\x7c\x38\xf1\xf5\xf5\x75\xda\x2e\x6a\xef\x5c\x39\x0a\xda\
\x90\x00\xf1\xbf\x31\x83\x9c\xcd\xae\x5b\xb7\x6e\xa5\x6f\xd9\xb2\
\xa5\x65\x52\x52\x12\xb6\x6f\xdf\x8e\x82\x82\x02\x10\x8e\x43\x40\
\x50\x35\x84\x45\xd6\x43\x78\xed\x06\x88\xac\x17\x8d\x6a\x35\x6a\
\x23\xb8\x7a\x04\xbc\x7c\xfc\x60\xf6\xf6\x15\xdd\xe6\xa5\xc5\x85\
\x28\x29\x2a\x40\x79\x69\x09\xee\xde\xfe\x0b\x37\x72\x2f\xe2\x7a\
\xee\x45\xe4\x5e\x3c\x83\x5b\xd7\x2e\xe3\x6e\xde\x0d\xd8\xac\x95\
\xf0\xf2\xf2\x42\xb7\x6e\xdd\xd0\xbd\x7b\x77\xc4\xc5\xc5\xa1\x66\
\xcd\x9a\x84\xe3\x38\x97\x49\xf6\x83\xa6\x2a\x9a\x52\x9c\x1a\xad\
\xd4\x92\x50\xb4\xc4\x6f\x67\x52\x8c\xd6\x48\x54\x8b\x53\x56\x56\
\x86\xb4\xb4\x34\x7a\xf0\xe0\x41\x1c\x39\x72\x04\x69\x69\x69\xb8\
\x7d\xfb\x36\x4a\x4b\xa5\xa3\xa3\xcd\x5e\x3e\xf0\xf4\xf2\x81\xa7\
\xd9\x1b\x66\x6f\x1f\x7b\xba\xd2\x62\x94\x95\x14\xc3\x52\x5e\x8a\
\xb2\x92\x22\x31\x4f\xb3\xd9\x8c\xa0\xa0\x20\xb4\x68\xd1\x02\x1d\
\x3b\x76\x44\xab\x56\xad\xd0\xb6\x6d\x5b\xd9\x19\xdd\x7a\x87\xc7\
\x3b\xe3\x21\x55\x89\xa3\xd7\x76\x55\x96\xe2\x1e\xc4\xa1\xae\x55\
\x49\x53\x52\x52\x82\x3b\x77\xee\xd0\x6b\xd7\xae\x21\x2b\x2b\x0b\
\x97\x2f\x5f\x46\x6e\x6e\x2e\x0a\x0a\x0a\x50\x58\x58\x28\xee\x86\
\x12\x10\x10\x80\xc0\xc0\x40\xf8\xf8\xf8\x20\x22\x22\x02\xf5\xeb\
\xd7\x47\xfd\xfa\xf5\x51\xa7\x4e\x1d\x04\x06\x06\x12\x3f\x3f\x3f\
\xfc\x5f\xb8\x34\x3b\xc8\x88\x44\x52\x55\x79\xff\x41\xd9\xfd\x5c\
\x71\x7a\x19\x91\xa6\x8c\x94\xdb\x48\xf9\x1e\x74\xfe\xff\x38\x1e\
\xf4\xef\xa5\xb0\xc5\x69\x1d\x56\xab\xd7\xbb\xce\x40\xf6\x46\xc0\
\x10\x7a\xe9\x8d\x40\x92\x8c\xa6\x77\x56\x3f\x67\xe5\x77\xb5\x7d\
\x8c\xd4\xdf\x95\xef\xff\x3b\x83\xfe\xe1\x97\xdb\xbf\x1d\xf4\xcf\
\xbe\xfe\x96\x19\xf4\xdf\xd4\x1f\xfe\xbf\x7f\x9f\x38\xa3\xa9\x46\
\x80\x8c\x55\xb5\x26\xe8\x69\xe7\x46\x74\x12\x57\xca\xab\xa7\x7b\
\x3c\xc8\xfc\xd5\x0e\x26\x71\x35\x7f\xb6\x8c\xaa\x3b\x2e\xea\x89\
\xd8\x46\x3e\xe2\x8a\xd8\xeb\x4c\x91\x75\x96\xde\xe8\xce\x85\xce\
\x44\x60\x36\xdc\xc8\xa9\xcc\x7a\xdf\xd6\x7a\x6f\x34\x7f\x59\x5e\
\x7f\xb7\xcb\xfb\xdf\xeb\xfe\xae\xff\x01\x23\xea\xed\xde\xc5\xed\
\x5c\x00\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
"
qt_resource_name = b"\
\x00\x07\
\x07\x3b\xe0\xb3\
\x00\x70\
\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x73\
\x00\x06\
\x06\x98\x2f\xb3\
\x00\x63\
\x00\x61\x00\x6c\x00\x69\x00\x65\x00\x63\
\x00\x08\
\x0a\x61\x5a\xa7\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
"
qt_resource_struct_v1 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\
\x00\x00\x00\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\
\x00\x00\x00\x26\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
"
qt_resource_struct_v2 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x26\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x77\xed\xcb\x53\xaa\
"
qt_version = [int(v) for v in QtCore.qVersion().split('.')]
if qt_version < [5, 8, 0]:
rcc_version = 1
qt_resource_struct = qt_resource_struct_v1
else:
rcc_version = 2
qt_resource_struct = qt_resource_struct_v2
def qInitResources():
QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()

View File

@ -1,8 +1,5 @@
<RCC>
<qresource prefix="/plugins/caliec" >
<file>icon.png</file>
<file alias="vignette_jardin">../style_jardin/vignette_jardin.png</file>
<file alias="vignette_caliec">../style_caliec/vignette_caliec.png</file>
<file alias="vignette_kid">../style_kid/vignette_kid.png</file>
</qresource>
</RCC>

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,102 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="3.7180686mm"
height="3.6729476mm"
viewBox="0 0 3.7180686 3.6729476"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="bac-sable.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="26.910887"
inkscape:cx="3.5301698"
inkscape:cy="9.0855422"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs2" /><g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.568079,-20.011839)"><g
id="rect355"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 19.746094,21.78125 -0.177735,0.177734 v 1.548828 l 0.177735,0.177735 h 3.363281 l 0.177734,-0.177735 V 21.958984 L 23.109375,21.78125 Z m 0.175781,0.355469 h 3.009766 v 1.193359 h -3.009766 z"
id="path3408" /><path
style="color:#000000;fill:#000000;stroke-width:0.354493;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 19.745325,21.959408 h 3.363576 v 1.548132 h -3.363576 z"
id="path3410" /></g><g
id="path413"><path
style="color:#000000;fill:#ffffff;stroke-width:0.264583px;-inkscape-stroke:none"
d="m 19.872434,22.779824 0.0011,0.613013 3.116653,0.0337 -0.03792,-1.184757 c 0,0 -0.454532,-0.249938 -0.847591,-0.154834 -0.301946,0.07306 -0.802062,-0.605039 -1.079282,-0.745246 -0.221787,-0.112172 -0.550687,-0.367206 -0.742013,-0.208567 -0.117099,0.09709 -0.318619,0.800532 -0.373362,0.942455 -0.05452,0.249461 0.0092,0.455087 -0.03761,0.704241 z"
id="path3414" /><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 20.457031,20.951172 c -0.08544,-0.0047 -0.182237,0.01741 -0.257812,0.08008 -0.07535,0.06247 -0.09794,0.129182 -0.136719,0.216797 -0.03878,0.08761 -0.07674,0.190295 -0.113281,0.294922 -0.07309,0.209254 -0.141534,0.431031 -0.16211,0.484375 l -0.0039,0.0098 -0.002,0.0098 c -0.06235,0.28528 0.0013,0.494224 -0.03906,0.708984 l -0.03516,0.191407 0.0332,-0.0059 0.002,0.582031 3.384766,0.03711 -0.04492,-1.398438 -0.06641,-0.03711 c 0,0 -0.474196,-0.279061 -0.941406,-0.166016 -0.02191,0.0053 -0.07854,-0.0055 -0.158203,-0.05273 -0.07967,-0.04719 -0.175468,-0.124408 -0.271485,-0.210938 -0.192032,-0.173058 -0.371926,-0.376294 -0.558594,-0.470703 -0.09836,-0.04975 -0.240363,-0.145889 -0.390625,-0.210937 -0.07513,-0.03252 -0.152837,-0.05782 -0.238281,-0.0625 z m -0.01563,0.263672 c 0.03697,0.002 0.0897,0.01754 0.148438,0.04297 0.117466,0.05085 0.251576,0.138749 0.375,0.201172 0.09055,0.0458 0.299136,0.250817 0.501953,0.433594 0.101408,0.09139 0.20481,0.1784 0.3125,0.242188 0.10769,0.06379 0.228357,0.111307 0.357422,0.08008 0.291611,-0.07056 0.623268,0.09998 0.6875,0.130859 l 0.0293,0.947266 -2.847657,-0.03125 -0.002,-0.501953 c 0.03667,-0.255351 -0.0078,-0.454983 0.03516,-0.654297 1.29e-4,-5.94e-4 -1.29e-4,-0.0014 0,-0.002 0.03475,-0.09344 0.09035,-0.278382 0.158204,-0.472657 0.03532,-0.101109 0.07377,-0.199369 0.107421,-0.27539 0.03365,-0.07602 0.0793,-0.135021 0.0625,-0.121094 0.02009,-0.01666 0.03725,-0.02156 0.07422,-0.01953 z"
id="path3416" /></g><g
id="g1074"
transform="translate(5.7244359,0.13205955)"><g
id="path511"><path
style="color:#000000;fill:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 14.408547,22.375312 1.337489,-0.0066 -0.848018,-0.788143 z"
id="path3420" /><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 14.988281,21.484375 -0.203125,0.02734 -0.488281,0.794922 0.113281,0.201171 1.335938,-0.0059 0.08984,-0.230469 z m -0.0625,0.302734 0.486328,0.451172 -0.765625,0.002 z"
id="path3422" /></g><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 16.433594,20.6875 -1.234375,1.171875 0.18164,0.193359 1.236328,-1.173828 z"
id="path1067" /><path
style="color:#000000;fill:#000000;stroke-linejoin:round;-inkscape-stroke:none"
d="m 16.507812,19.900391 c -0.204319,0.131571 -0.544921,0.380859 -0.544921,0.380859 a 0.13230472,0.13230472 0 0 0 -0.01367,0.201172 l 0.921875,0.898437 a 0.13230472,0.13230472 0 0 0 0.208984,-0.03516 l 0.314453,-0.597656 a 0.13230472,0.13230472 0 0 0 -0.02539,-0.15625 l -0.697266,-0.675781 a 0.13230472,0.13230472 0 0 0 -0.164063,-0.01563 z m 0.05664,0.283203 0.550781,0.529297 -0.185547,0.353515 -0.68164,-0.662109 c 0.08165,-0.05882 0.181928,-0.12949 0.316406,-0.220703 z"
id="path1069" /></g><g
id="path1190"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 22.183594,22.417969 a 0.08250825,0.08250825 0 0 0 -0.05078,0.01563 l -0.117187,0.08594 a 0.08250825,0.08250825 0 0 0 0.05078,0.148438 c 0.02466,-6.66e-4 0.01,3.3e-4 0.03711,0 a 0.08250825,0.08250825 0 0 0 0.04687,-0.01563 l 0.115234,-0.08398 a 0.08250825,0.08250825 0 0 0 -0.04687,-0.148437 c -0.026,-3.28e-4 -0.012,-0.0013 -0.03516,-0.002 z"
id="path3434" /><path
style="color:#000000;fill:#000000;stroke-width:0.165;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 22.063606,22.586372 c 0.02447,-6.61e-4 0.01162,-3.99e-4 0.03852,-7.27e-4 0,0 0.115571,-0.08397 0.115571,-0.08397 v 0 c -0.02576,-3.25e-4 -0.01358,-6e-5 -0.03652,-7.28e-4 0,0 -0.117578,0.08543 -0.117578,0.08543 z"
id="path3436" /></g><g
id="path1192"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.417969,22.826172 a 0.08250825,0.08250825 0 0 0 -0.04687,0.01563 l -0.115235,0.08398 a 0.08250825,0.08250825 0 0 0 0.04883,0.148438 c 0.03451,2.1e-4 0.01437,-7.63e-4 0.04687,0 a 0.08250825,0.08250825 0 0 0 0.05078,-0.01563 l 0.117187,-0.08398 a 0.08250825,0.08250825 0 0 0 -0.05078,-0.148437 c -0.03415,7.52e-4 -0.01534,-2.13e-4 -0.05078,0 z"
id="path3440" /><path
style="color:#000000;fill:#000000;stroke-width:0.165;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.470745,22.907921 c -0.03393,7.47e-4 -0.01664,5e-4 -0.05186,7.12e-4 0,0 -0.114498,0.08319 -0.114498,0.08319 v 0 c 0.03427,2.09e-4 0.01764,-4.5e-5 0.04991,7.12e-4 0,0 0.116455,-0.08461 0.116455,-0.08461 z"
id="path3442" /></g><g
id="path1194"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 22.566406,22.945312 c -0.02767,0.0014 -0.05499,0.0043 -0.08203,0.0078 a 0.08250825,0.08250825 0 0 0 -0.03906,0.01758 l -0.115234,0.08789 a 0.08250825,0.08250825 0 0 0 -0.03125,0.04687 0.08250825,0.08250825 0 0 0 0.0957,0.09961 c 0.01926,-0.0039 0.04069,-0.0062 0.06445,-0.0078 0.0042,-2.07e-4 0.0077,-0.0018 0.01172,-0.002 a 0.08250825,0.08250825 0 0 0 0.04492,-0.01563 l 0.117187,-0.08398 a 0.08250825,0.08250825 0 0 0 -0.05273,-0.150391 h -0.01172 a 0.08250825,0.08250825 0 0 0 -0.002,0 z"
id="path3446" /><path
style="color:#000000;fill:#000000;stroke-width:0.165;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 22.378975,23.123513 c 0.02486,-0.005 0.05015,-0.0074 0.07542,-0.0091 0.0041,-2.03e-4 0.0081,-4.07e-4 0.01221,-6.11e-4 0,0 0.116747,-0.08555 0.116747,-0.08555 v 0 c -0.0041,1.29e-4 -0.0082,2.59e-4 -0.01235,3.89e-4 -0.02527,0.0013 -0.05043,0.0037 -0.07553,0.007 0,0 -0.116492,0.08785 -0.116492,0.08785 z"
id="path3448" /></g><g
id="path1196"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 20.375,22.867187 c -0.04215,0.01302 -0.08965,0.02738 -0.138672,0.05078 a 0.08250825,0.08250825 0 0 0 -0.01563,0.0098 l -0.113281,0.08789 a 0.08250825,0.08250825 0 0 0 0.08398,0.140625 c 0.03794,-0.01759 0.07902,-0.0327 0.123047,-0.04687 a 0.08250825,0.08250825 0 0 0 0.02539,-0.01367 l 0.109375,-0.08398 A 0.08250825,0.08250825 0 0 0 20.375,22.867187 Z"
id="path3452" /><path
style="color:#000000;fill:#000000;stroke-width:0.165;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 20.157367,23.080954 c 0.04303,-0.01995 0.08769,-0.03532 0.132768,-0.04983 0,0 0.109311,-0.08464 0.109311,-0.08464 v 0 c -0.04315,0.01333 -0.08668,0.02588 -0.127572,0.0454 0,0 -0.114507,0.08906 -0.114507,0.08906 z"
id="path3454" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="65" height="65" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g id="svg_1" stroke="null">
<path id="svg_2" d="m62.75653,34.58033l-8.05376,-2.01399c-0.81086,-0.19895 -1.66603,-0.00337 -2.27777,0.52673l-3.12657,2.70092l-1.71601,-1.73935l1.06051,-1.62063c0.70161,-1.07148 0.34201,-2.47333 -0.80283,-3.13006c-1.14235,-0.65815 -2.64222,-0.32117 -3.34396,0.75147l-0.34201,0.52336l-1.04251,-1.05696c-0.82554,-0.83935 -1.99281,-1.14056 -3.12076,-1.01056l-1.08211,-1.33381c1.15924,-1.60404 1.04639,-3.79482 -0.41775,-5.28208c-1.25769,-1.27393 -3.15163,-1.66185 -4.80257,-1.14276l-10.94632,-13.47518l-1.13418,-4.49289c-0.32415,-1.28378 -1.54847,-2.19078 -2.95806,-2.19078c-1.40959,0 -2.63391,0.907 -2.95806,2.19091l-14.73698,58.38389c-0.38701,1.52951 0.62462,3.06227 2.25866,3.42349c1.63044,0.35928 3.27168,-0.5857 3.65759,-2.11405l11.77878,-46.66374l11.77892,46.66387c0.33038,1.30931 1.5781,2.19195 2.9557,2.19195c0.23179,0 0.46663,-0.02553 0.70175,-0.07789c1.63418,-0.36122 2.64582,-1.89397 2.25866,-3.42349l-12.22534,-48.43459l7.56096,9.30799c-1.47259,1.62063 -1.47384,4.04159 0.10676,5.64447c1.3776,1.39615 3.51165,1.71848 5.25965,0.9604l0.73609,0.907c-0.748,0.76262 -1.03767,1.74635 -0.90335,2.71777c-0.00485,0.15462 1.49613,8.23989 1.49613,8.23989c0.20895,1.08042 1.21477,1.87077 2.39298,1.87077c0.83578,0 1.6267,-0.4036 2.07326,-1.08703l0.77901,-1.18942l2.12338,2.09863c0.46192,0.39686 1.03656,0.62692 1.62933,0.62692c0.58904,0 1.18015,-0.19999 1.64803,-0.60372l5.71797,-4.93849l6.76048,1.69075c1.30754,0.32441 2.63142,-0.3979 2.97827,-1.61169c0.34658,-1.21495 -0.42523,-2.46335 -1.72197,-2.78802z" fill="black" stroke="null"/>
<path id="svg_3" d="m54.33583,39.12234l-4.89742,4.2294c-0.98671,0.85257 -1.04833,2.292 -0.13764,3.21676c0.47965,0.48551 1.13293,0.73242 1.78829,0.73242c0.58904,0 1.18043,-0.20012 1.64844,-0.60346l4.89714,-4.2294c0.98699,-0.85257 1.04861,-2.29187 0.13791,-3.21689c-0.91083,-0.92152 -2.44753,-0.9814 -3.43674,-0.12883l0.00002,0z" stroke="null"/>
</g>
<g id="svg_4"/>
<g id="svg_5"/>
<g id="svg_6"/>
<g id="svg_7"/>
<g id="svg_8"/>
<g id="svg_9"/>
<g id="svg_10"/>
<g id="svg_11"/>
<g id="svg_12"/>
<g id="svg_13"/>
<g id="svg_14"/>
<g id="svg_15"/>
<g id="svg_16"/>
<g id="svg_17"/>
<g id="svg_18"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,174 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="252.24365"
height="251.86287"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="basket.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/gioppo/Disegni/basketball2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="TRUE"
version="1.1">
<defs
id="defs4">
<linearGradient
id="linearGradient2189">
<stop
style="stop-color:#ffd52a;stop-opacity:1;"
offset="0"
id="stop2191" />
<stop
style="stop-color:#ff7f2a;stop-opacity:1;"
offset="1"
id="stop2193" />
</linearGradient>
<linearGradient
id="linearGradient17099">
<stop
style="stop-color:#f09700;stop-opacity:1;"
offset="0"
id="stop17101" />
<stop
id="stop17107"
offset="1"
style="stop-color:#f6f700;stop-opacity:0.49803922;" />
<stop
style="stop-color:#f6f700;stop-opacity:0;"
offset="1"
id="stop17103" />
</linearGradient>
<linearGradient
id="linearGradient4180">
<stop
style="stop-color:#ffe92a;stop-opacity:1;"
offset="0"
id="stop4182" />
<stop
id="stop4188"
offset="0.5"
style="stop-color:#fff22a;stop-opacity:0.49803922;" />
<stop
style="stop-color:#ff7f2a;stop-opacity:0;"
offset="1"
id="stop4184" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4180"
id="radialGradient5277"
cx="378.40622"
cy="466.38931"
fx="378.40622"
fy="466.38931"
r="171.71356"
gradientTransform="matrix(1,0,0,0.9950338,0,2.3161611)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient17099"
id="radialGradient17105"
cx="129.15811"
cy="738.49414"
fx="129.15811"
fy="738.49414"
r="483.95963"
gradientTransform="matrix(1,0,0,0.9994274,0,0.4228264)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2189"
id="linearGradient3172"
x1="481.63095"
y1="537.79144"
x2="274.91696"
y2="486.54004"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.1706996"
inkscape:cx="1.7660124"
inkscape:cy="31.551992"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Livello 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-274.92648,-319.60744)">
<path
style="fill:#ee6900;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4.9243083;stroke-miterlimit:4;stroke-opacity:1"
d="m 290.0785,500.00544 c -30.11295,-61.16013 -4.83796,-135.19883 56.41738,-165.26497 61.25534,-30.06614 135.4093,-4.83043 165.52224,56.32969 30.11294,61.16013 4.83796,135.19884 -56.41738,165.26497 -61.19954,30.03875 -135.27102,4.89016 -165.44407,-56.1712"
id="path2236"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.73245698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 277.39495,430.72241 Z"
id="path9163"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 278.66319,433.19164 c 19.44633,-47.32695 235.46979,-0.82308 244.77022,24.69233"
id="path9165"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 430.85192,324.54541 c 103.99563,36.62695 55.80254,231.28477 -41.8519,243.2194"
id="path10136"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 349.6846,333.18772 c 59.18451,4.93847 98.07718,93.83084 161.06641,61.73082"
id="path12150"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.15031,510.97246 c 84.97204,12.7577 197.84535,-105.35392 205.45478,8.64232"
id="path13121"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -1,68 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
viewBox="0 0 512 512"
enable-background="new 0 0 512 512"
id="svg8"
sodipodi:docname="letter-svgrepo-com.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview10"
showgrid="false"
inkscape:zoom="0.921875"
inkscape:cx="228.89591"
inkscape:cy="261.44697"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<path
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#fffefe;stroke-width:14.7525425;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
d="m 52.299302,271.64592 c 0,-142.35651 0.01482,-143.34115 2.128103,-141.42865 1.170457,1.05925 44.421065,44.99175 96.112465,97.62779 51.6914,52.63604 95.48917,96.5908 97.32836,97.67724 5.2045,3.07437 11.58198,2.56303 17.74929,-1.42311 2.90779,-1.8794 47.17338,-46.08282 99.03173,-98.89265 51.57552,-52.52181 93.92128,-95.49419 94.1017,-95.49419 0.1804,0 0.32801,64.18983 0.32801,142.64407 V 415.00048 H 255.68913 52.299302 Z"
id="path825"
inkscape:connector-curvature="0" />
<path
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#fffefe;stroke-width:14.7525425;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
d="M 168.71994,186.34338 81.750738,97.712349 168.99112,97.434747 c 47.98221,-0.152681 126.52444,-0.152681 174.53829,0 l 87.2979,0.277602 -86.77977,88.406781 c -47.72888,48.62373 -87.13497,88.50769 -87.56909,88.63103 -0.43413,0.12333 -39.92546,-39.65972 -87.75851,-88.40678 z"
id="path827"
inkscape:connector-curvature="0" />
<g
id="g6">
<g
id="g4">
<path
d="M480.5,56H31.3C20,56,10.9,65.2,10.9,76.5v359c0,11.3,9.1,20.5,20.4,20.5h449.2c11.3,0,20.4-9.2,20.4-20.5v-359 C500.9,65.2,491.7,56,480.5,56z M432.4,97L256.3,276.2L80.2,97H432.4z M51.7,415V126.5l190,193.3c10.3,10.9,18.6,9,29.1,0 l189.3-192.5V415H51.7z"
id="path2" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 495 495" style="enable-background:new 0 0 495 495;" xml:space="preserve">
<g>
<rect x="381.009" y="195.505" style="fill:#FF5023;" width="76.931" height="120"/>
<rect x="37.061" y="195.505" style="fill:#FF0C38;" width="76.93" height="120"/>
<path style="fill:#FF5023;" d="M247.5,315.505c-33.084,0-60-26.916-60-60s26.916-60,60-60V153.51H113.99V455H247.5V315.505z"/>
<path style="fill:#FF0C38;" d="M381.009,153.51H247.5v41.995c33.084,0,60,26.916,60,60s-26.916,60-60,60l0,139.495h133.509V153.51z
"/>
<path style="fill:#FFA733;" d="M187.5,255.505c0,33.084,26.916,60,60,60l0-120C214.416,195.505,187.5,222.421,187.5,255.505z"/>
<path style="fill:#FF9811;" d="M307.5,255.505c0-33.084-26.916-60-60-60v120C280.584,315.505,307.5,288.589,307.5,255.505z"/>
<path style="fill:#C70024;" d="M247.5,0c-66.821,0-122.331,49.346-132.011,113.51H247.5V0z"/>
<path style="fill:#A5001E;" d="M379.51,113.51C369.83,49.346,314.321,0,247.5,0v113.51H379.51z"/>
<rect x="93.99" y="113.51" style="fill:#FFA733;" width="307.018" height="40"/>
<rect x="53.99" y="455" style="fill:#A5001E;" width="387.018" height="40"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,135 +0,0 @@
<?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="127.51759mm"
height="74.327583mm"
viewBox="0 0 127.51759 74.327583"
version="1.1"
id="svg8"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="cage_foot.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="466.54066"
inkscape:cy="79.739722"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<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="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-40.383943,-43.166939)">
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 56.027259,65.4896 H 152.27121"
id="path874"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.5788,78.214793 h 95.41664"
id="path876"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 55.751487,90.939985 H 151.99544"
id="path878"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 56.303031,103.66518 H 152.27121"
id="path880"
inkscape:connector-curvature="0" />
<path
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.7650001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
d="M 41.766443,44.549439 V 107.48254 H 54.995609 V 57.610656 h 98.294261 v 50.040354 h 13.22916 V 44.717902 H 54.995609 v -0.168463 z"
id="rect918"
inkscape:connector-curvature="0" />
<g
transform="translate(1.7627355,7.1489988)"
id="g969">
<path
style="fill:#ffffff;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 123.22939,88.154239 c 0,-12.133208 -9.83599,-21.969128 -21.9692,-21.969128 -12.133205,0 -21.969125,9.83592 -21.969125,21.969128 0,12.133211 9.83592,21.969131 21.969125,21.969131 12.13321,0 21.9692,-9.83592 21.9692,-21.969131"
id="path951" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 100.92688,80.157144 -0.0139,-0.01023 -7.765067,5.650837 0.02414,0.0071 z"
id="path953" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 96.151434,94.964121 0.06711,-0.09849 -1.338351,-3.661828 1.220973,3.760314 z"
id="path955" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 86.591873,83.910024 -0.348654,-0.107898 -3.253564,5.412331 3.603582,-5.274424 z"
id="path957" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 92.09737,101.51906 0.08423,-0.13579 -3.715913,-1.406694 z"
id="path959" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 105.72464,94.964121 1.35601,-4.179422 -1.52945,4.179422 z"
id="path961" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 115.4839,83.927006 -0.006,0.125221 1.88487,2.919914 -1.83815,-3.05782 z"
id="path963" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 109.67087,101.63132 3.63162,-1.54248 -3.71585,1.40669 z"
id="path965" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 116.69552,102.88953 0.61445,-4.094233 0.0444,-0.0163 2.87408,-7.353734 2.36713,-2.490985 c -0.195,5.4006 -2.40539,10.296156 -5.90006,13.955252 m -6.984,-1.60079 -3.99575,-6.407759 1.524,-4.021804 1.73488,-4.74053 6.36506,-1.970731 1.87914,2.910912 2.63898,4.389965 -2.76188,7.06653 -3.85382,1.416376 z m -5.01109,6.66467 h -7.54791 l -4.950731,-6.5625 -0.02019,-0.008 -0.08423,0.13586 -0.04692,-0.0199 4.32599,-6.535019 h 9.002681 l -0.0158,0.04351 4.13891,6.580589 z m -3.44024,1.5504 c -2.062734,0 -4.05795,-0.29437 -5.946223,-0.84279 l 1.691234,-0.48519 v 0.0436 h 8.003169 l 1.68905,0.58259 c -1.73652,0.45764 -3.55891,0.70181 -5.43723,0.70181 m -12.728687,-9.682191 -3.858526,-1.638786 -2.762024,-6.847257 1.220428,-2.030272 3.547451,-5.192171 6.292084,1.89332 1.750161,5.266921 1.300157,3.603174 -4.12977,6.244752 z m -8.576821,-10.287357 1.588724,1.760255 -0.0074,0.01241 2.877015,7.133234 0.04733,0.02012 -0.03772,-0.01425 0.519299,3.460289 C 82.082035,98.518142 80.255759,94.230345 79.95471,89.534284 m 13.440185,-21.22851 -0.771105,1.534094 -6.521383,5.238617 -2.226492,0.695536 c 2.37272,-3.322244 5.672866,-5.938722 9.51898,-7.468247 m 7.378565,4.730027 v 7.001191 l -7.659972,5.576019 -6.234247,-1.826618 -0.439501,-8.547698 6.299722,-5.049558 z m 0.31346,-0.2604 -0.0337,0.01166 -1.487108,-0.527757 z m 7.59094,13.174874 -0.21265,0.580955 0.19322,-0.595004 z m -7.46108,-12.857457 8.23001,-2.847687 6.16154,5.048467 -0.43978,8.54879 -6.37454,1.833847 -7.57723,-5.562923 z m 17.66994,3.027744 -3.00033,-1.029391 -6.26071,-5.127991 0.005,-0.0015 -1.06144,-1.868426 c 4.21898,1.541801 7.81928,4.378917 10.31791,8.027309 m 2.82074,3.395699 c -1.11771,-2.6426 -2.71776,-5.015797 -4.7556,-7.053708 -2.03791,-2.037911 -4.41104,-3.637889 -7.05364,-4.755603 -2.73617,-1.157271 -5.64231,-1.744091 -8.638,-1.744091 -2.995619,0 -5.901824,0.58682 -8.637931,1.744091 -2.6426,1.117714 -5.015797,2.717692 -7.053708,4.755603 -2.037911,2.037911 -3.637889,4.411108 -4.755603,7.053708 -1.157271,2.736107 -1.744091,5.642312 -1.744091,8.637932 0,2.995619 0.58682,5.901825 1.744091,8.637999 1.117714,2.6426 2.717692,5.015867 4.755603,7.053637 2.037911,2.03784 4.411108,3.63789 7.053708,4.75567 2.736107,1.1572 5.642312,1.74402 8.637931,1.74402 2.99569,0 5.90183,-0.58682 8.638,-1.74402 2.6426,-1.11778 5.01573,-2.71783 7.05364,-4.75567 2.03784,-2.03777 3.63789,-4.411037 4.7556,-7.053637 1.15728,-2.736174 1.7441,-5.64238 1.7441,-8.637999 0,-2.99562 -0.58682,-5.901825 -1.7441,-8.637932"
id="path967" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="3.6033981mm"
height="3.603915mm"
viewBox="0 0 3.603398 3.603915"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="collecteur-eau-pluie.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="38.057741"
inkscape:cx="4.9398623"
inkscape:cy="9.235966"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.261616,-20.26938)">
<path
id="path7286"
style="color:#000000;opacity:0.995;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.06254,20.26938 c -0.992811,0 -1.800924,0.810179 -1.800924,1.802991 0,0.992811 0.808113,1.800924 1.800924,1.800924 0.992811,0 1.802474,-0.808113 1.802474,-1.800924 0,-0.992812 -0.809663,-1.802991 -1.802474,-1.802991 z m 0,0.400493 c 0.337906,0 0.647175,0.118467 0.888835,0.316259 h -1.77767 c 0.24166,-0.197792 0.550929,-0.316259 0.888835,-0.316259 z m -1.224731,0.716752 h 2.449462 c 0.07413,0.132578 0.127117,0.278601 0.15503,0.433565 h -2.760038 c 0.02791,-0.154967 0.08141,-0.300984 0.155546,-0.433565 z m -0.170016,0.834057 h 2.789494 c -0.0161,0.154208 -0.05715,0.300733 -0.118856,0.435633 h -2.551782 c -0.06171,-0.1349 -0.102755,-0.281425 -0.118856,-0.435633 z m 0.395325,0.836125 h 1.998327 c -0.25401,0.256978 -0.607158,0.415995 -0.998905,0.415995 -0.391784,0 -0.745406,-0.158974 -0.999422,-0.415995 z" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,239 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="compost.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.1212866"
inkscape:cx="-56.545285"
inkscape:cy="143.88697"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#a17400;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#3c2803;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="svg_28"
d="m 215.60974,222.31038 c -16.19899,2.177 -36.46726,31.17419 -55.2344,53.50557 -0.24903,0.28469 40.04563,27.44645 40.04563,27.44645 l 47.82148,-56.13772 c 0,0 -7.99631,-28.1223 -32.63271,-24.8143 z m 82.06191,74.10822 43.59546,-51.59893 -22.29556,11.0768 c -2.04904,-6.62333 -8.45175,-25.97387 -14.34946,-30.00771 -7.14262,-4.89439 -68.80818,-3.30801 -68.80818,-3.30801 0,0 2.02759,0.24901 10.73531,10.87034 7.51255,9.1417 14.09332,41.76725 15.77933,50.63859 l -23.38438,11.66019 z m -156.78188,79.67866 c 0,0 -23.59063,27.82361 -13.26784,46.24927 6.77981,12.11536 39.33413,7.9606 65.40045,7.1994 0.34843,-0.0137 13.61649,-54.72913 13.61649,-54.72913 z m 29.98619,-39.54758 17.6004,11.16935 -16.51186,-50.45369 -60.47754,1.42983 16.7752,10.70686 c -5.52057,6.68735 -21.54895,26.62115 -23.55499,34.66741 -2.41164,9.732 17.19485,60.93977 17.19485,60.93977 0,0 -0.36278,-1.91364 6.86515,-17.24465 6.23205,-13.1968 34.4184,-43.16883 42.10879,-51.21488 z m 160.23211,-48.99532 c -0.0926,-0.29158 -54.72204,28.07252 -54.72204,28.07252 l 18.90218,55.51168 c 0,0 32.26273,-0.0137 46.64763,-22.24584 9.44042,-14.59116 -3.13026,-39.51203 -10.82777,-61.33836 z m -21.68377,85.47672 c -13.97932,4.26852 -49.48605,1.93508 -59.07613,1.18799 l 5.64152,-23.24191 -42.52128,50.98017 17.79259,50.73807 5.39249,-22.15357 c 7.73312,-0.15629 30.60513,-0.96024 38.62267,-5.11509 9.71097,-5.00819 52.0473,-59.05457 52.0473,-59.05457 0,0 -1.67889,1.70729 -17.89916,6.65891 z"
style="fill:#000000;fill-opacity:1;stroke-width:1.71356702"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,234 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="dechets.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.5606433"
inkscape:cx="-305.42413"
inkscape:cy="31.876073"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#c1c1c1;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 6.5 KiB

View File

@ -1,126 +0,0 @@
<?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="518.43048" height="480.05527" id="svg4779" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="defibrillator.svg">
<defs id="defs4781"/>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35" inkscape:cx="-237.2133" inkscape:cy="100.02765" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1600" inkscape:window-height="848" inkscape:window-x="1272" inkscape:window-y="116" inkscape:window-maximized="1"/>
<metadata id="metadata4784">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Calque 1" inkscape:groupmode="layer" id="layer1" transform="translate(-117.92759,-152.33457)">
<g id="g4601" transform="matrix(34.728732,0,0,34.728732,-7885.2132,-7492.0539)" style="fill:#00a654;fill-opacity:1;stroke:none">
<g display="none" id="Selected_x5F_Ver1" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4484">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective9"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="base-8"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1-9" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_9_">
<stop id="stop4490" style="stop-color:#CE5C00" offset="0"/>
<stop id="stop4492" style="stop-color:#D16200" offset="0.1753"/>
<stop id="stop4494" style="stop-color:#D97100" offset="0.3981"/>
<stop id="stop4496" style="stop-color:#E68B00" offset="0.6465"/>
<stop id="stop4498" style="stop-color:#F8AF00" offset="0.9118"/>
<stop id="stop4500" style="stop-color:#FFBD00" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_2" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4504">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4506"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4508"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_5_" style="opacity:0.45000000000000001;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_10_">
<stop id="stop4512" style="stop-color:#703C19" offset="0"/>
<stop id="stop4514" style="stop-color:#CE5C00" offset="0.589"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_5_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4518">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4520"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4522"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_1_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_1_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4527">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4529"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4531"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_8_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_8_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g display="none" id="Selected_x5F_Ver2" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_2_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4537">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4539"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4541"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_6_" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_11_">
<stop id="stop4545" style="stop-color:#67A42C" offset="0"/>
<stop id="stop4547" style="stop-color:#88CD44" offset="0.7669"/>
<stop id="stop4549" style="stop-color:#99DA4C" offset="0.8651"/>
<stop id="stop4551" style="stop-color:#B8F059" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_6_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_1_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4555">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4557"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4559"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_4_" style="opacity:0.31999996000000003;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_12_">
<stop id="stop4563" style="stop-color:#4C662B" offset="0"/>
<stop id="stop4565" style="stop-color:#4C662B" offset="1"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_4_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4569">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4571"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4573"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_7_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_7_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4578">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4580"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4582"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_3_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_3_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_3" style="fill:#00a654;fill-opacity:1;stroke:none">
<defs id="defs4587">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4589"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4591"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_2_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 3.17563,6.69521 7.464,9.904 4.45115,-3.22151 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_2_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 459.30542,208.16062 -145.58282,173.50679 58.60048,0 -77.34278,162.89651 161.05792,-180.36371 -66.972,0 z" id="path11839" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="windows-1252"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 393.652 393.652" style="enable-background:new 0 0 393.652 393.652;" xml:space="preserve" width="512" height="512">
<g>
<rect x="170.212" y="152.226" style="fill:#5C6670;" width="53.23" height="57.395"/>
<rect x="170.212" y="152.226" style="opacity:0.2;fill:#222222;" width="26.615" height="57.395"/>
<path style="opacity:0.2;fill:#222222;" d="M170.212,152.226v14.156c8.471,2.369,17.389,3.663,26.615,3.663 c9.226,0,18.144-1.294,26.615-3.663v-14.156H170.212z"/>
<g>
<path style="fill:#7D868C;" d="M120.401,112.067c13.969,28.079,42.937,47.382,76.426,47.382c33.49,0,62.459-19.303,76.428-47.382 H120.401z"/>
<path style="opacity:0.1;fill:#222222;" d="M120.401,112.067c13.969,28.079,42.937,47.382,76.426,47.382v-47.382H120.401z"/>
<path style="opacity:0.2;fill:#222222;" d="M120.401,112.067c3.604,7.245,8.213,13.898,13.633,19.794H259.62 c5.422-5.896,10.031-12.549,13.635-19.794H120.401z"/>
<path style="fill:#A4A9AD;" d="M270.126,124.046H123.528c-6.615,0-11.977-5.363-11.977-11.979c0-6.614,5.361-11.977,11.977-11.977 h146.598c6.615,0,11.979,5.362,11.979,11.977C282.105,118.683,276.741,124.046,270.126,124.046z"/>
</g>
<path style="fill:#00B3E3;" d="M347.554,182.338c-4.142,0-7.5-3.358-7.5-7.5c0-12.798-10.411-23.21-23.209-23.21 c-12.799,0-23.211,10.412-23.211,23.21c0,4.142-3.357,7.5-7.5,7.5c-4.143,0-7.5-3.358-7.5-7.5c0-21.069,17.142-38.21,38.211-38.21 c21.068,0,38.209,17.141,38.209,38.21C355.054,178.98,351.696,182.338,347.554,182.338z"/>
<g>
<path style="fill:#00B3E3;" d="M107.52,182.338c-4.142,0-7.5-3.358-7.5-7.5c0-12.798-10.413-23.21-23.211-23.21 c-6.204,0-12.035,2.417-16.421,6.807c-2.928,2.93-7.677,2.932-10.606,0.005c-2.931-2.928-2.933-7.677-0.005-10.607 c7.219-7.226,16.819-11.205,27.032-11.205c21.069,0,38.211,17.141,38.211,38.21C115.02,178.98,111.662,182.338,107.52,182.338z"/>
<path style="fill:#00B3E3;" d="M46.101,182.338c-4.143,0-7.5-3.358-7.5-7.5c0-3.078,0.367-6.143,1.093-9.11 c0.984-4.024,5.042-6.488,9.067-5.505c4.023,0.984,6.487,5.044,5.504,9.067c-0.44,1.803-0.664,3.669-0.664,5.548 C53.601,178.98,50.242,182.338,46.101,182.338z"/>
</g>
<path style="fill:#00B3E3;" d="M289.289,17.169C278.229,6.098,263.52,0.001,247.872,0.001c-21.892,0-41.002,12.084-51.045,29.925 C186.784,12.085,167.674,0,145.783,0c-32.281,0-58.544,26.263-58.544,58.544c0,4.142,3.357,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5 c0-24.01,19.533-43.544,43.544-43.544c24.01,0,43.544,19.534,43.544,43.544v20.378c0,4.142,3.357,7.5,7.5,7.5 c4.143,0,7.5-3.358,7.5-7.5V58.544c0-24.01,19.534-43.543,43.545-43.543c11.639,0,22.579,4.535,30.806,12.769 c2.928,2.93,7.677,2.933,10.606,0.005C292.215,24.848,292.217,20.099,289.289,17.169z M304.736,44.576 c-0.985-4.022-5.047-6.485-9.07-5.498c-4.022,0.986-6.484,5.047-5.498,9.069c0.827,3.376,1.247,6.874,1.247,10.396 c0,4.142,3.357,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5C306.415,53.819,305.851,49.12,304.736,44.576z"/>
<g>
<rect x="96.931" y="216.127" style="fill:#7D868C;" width="199.794" height="75.517"/>
<g>
<path style="fill:#969DA2;" d="M135.494,237.403c-10.122,0-18.329,8.207-18.329,18.33v35.91h36.659v-35.91 C153.824,245.61,145.617,237.403,135.494,237.403z"/>
<path style="fill:#969DA2;" d="M196.826,237.403c-10.123,0-18.329,8.207-18.329,18.33v35.91h36.659v-35.91 C215.156,245.61,206.948,237.403,196.826,237.403z"/>
<path style="fill:#969DA2;" d="M258.158,237.403c-10.122,0-18.33,8.207-18.33,18.33v35.91h36.659v-35.91 C276.487,245.61,268.28,237.403,258.158,237.403z"/>
</g>
<rect x="96.931" y="216.127" style="opacity:0.1;fill:#222222;" width="99.896" height="75.517"/>
<rect x="96.931" y="216.127" style="opacity:0.2;fill:#222222;" width="199.794" height="27.126"/>
<path style="fill:#A4A9AD;" d="M295.47,221.598H98.185c-6.615,0-11.978-5.362-11.978-11.978c0-6.615,5.362-11.978,11.978-11.978 H295.47c6.615,0,11.978,5.362,11.978,11.978C307.448,216.235,302.085,221.598,295.47,221.598z"/>
</g>
<g>
<rect x="26.001" y="294.326" style="fill:#7D868C;" width="341.65" height="99.326"/>
<g>
<path style="fill:#969DA2;" d="M64.503,335.141c-10.921,0-19.774,8.854-19.774,19.773v38.738h39.546v-38.738 C84.275,343.994,75.423,335.141,64.503,335.141z"/>
<path style="fill:#969DA2;" d="M130.664,335.141c-10.92,0-19.773,8.854-19.773,19.773v38.738h39.545v-38.738 C150.437,343.994,141.584,335.141,130.664,335.141z"/>
<path style="fill:#969DA2;" d="M196.826,335.141c-10.92,0-19.773,8.854-19.773,19.773v38.738H216.6v-38.738 C216.6,343.994,207.745,335.141,196.826,335.141z"/>
<path style="fill:#969DA2;" d="M262.988,335.141c-10.919,0-19.773,8.854-19.773,19.773v38.738h39.547v-38.738 C282.762,343.994,273.907,335.141,262.988,335.141z"/>
<path style="fill:#969DA2;" d="M329.149,335.141c-10.919,0-19.772,8.854-19.772,19.773v38.738h39.547v-38.738 C348.924,343.994,340.069,335.141,329.149,335.141z"/>
</g>
<rect x="26.001" y="294.326" style="opacity:0.1;fill:#222222;" width="170.825" height="99.326"/>
<rect x="26.001" y="294.326" style="opacity:0.2;fill:#222222;" width="341.65" height="27.127"/>
<path style="fill:#A4A9AD;" d="M375.172,306.304H18.48c-6.615,0-11.977-5.363-11.977-11.978c0-6.615,5.362-11.978,11.977-11.978 h356.691c6.614,0,11.978,5.362,11.978,11.978C387.149,300.94,381.786,306.304,375.172,306.304z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -1,52 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="2.829627mm"
height="2.9575572mm"
viewBox="0 0 2.829627 2.9575572"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="homme-course.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="26.910887"
inkscape:cx="-3.3815311"
inkscape:cy="4.2547836"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs2" /><g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.563113,-20.738281)"><path
style="color:#000000;fill:#000000;stroke-linecap:round;-inkscape-stroke:none"
d="m 20.863281,22.140625 a 0.1825,0.1825 0 0 0 -0.126953,0.05859 l -0.333984,0.36914 -0.634766,-0.07813 a 0.1825,0.1825 0 0 0 -0.203125,0.158203 0.1825,0.1825 0 0 0 0.158203,0.203125 l 0.824219,0.103516 0.460937,-0.509766 a 0.1825,0.1825 0 0 0 -0.01367,-0.257812 0.1825,0.1825 0 0 0 -0.13086,-0.04687 z"
id="path8668" /><path
style="color:#000000;opacity:0.995;fill:#000000;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.677734,20.738281 c -0.224575,0 -0.371093,0.202614 -0.371093,0.408203 0,0.20559 0.146518,0.410157 0.371093,0.410157 0.224575,0 0.369141,-0.204567 0.369141,-0.410157 0,-0.205589 -0.144566,-0.408203 -0.369141,-0.408203 z"
id="path8724" /><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
d="m 20.835937,21.171875 a 0.18251825,0.18251825 0 0 0 -0.193359,0.03516 l -0.443359,0.414063 a 0.1825,0.1825 0 0 0 -0.0078,0.259765 0.1825,0.1825 0 0 0 0.257813,0.0078 l 0.357422,-0.335938 0.421875,0.171875 0.269531,0.492188 a 0.18251825,0.18251825 0 0 0 0.121094,0.0918 l 0.552734,0.11914 A 0.1825,0.1825 0 0 0 22.388685,22.289056 0.1825,0.1825 0 0 0 22.24806,22.07226 l -0.46875,-0.103516 -0.261719,-0.476563 a 0.18251825,0.18251825 0 0 0 -0.0918,-0.08203 z"
id="path8726" /><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
d="m 21.251953,21.503906 a 0.1825,0.1825 0 0 0 -0.111328,0.08594 l -0.351563,0.615234 a 0.18251825,0.18251825 0 0 0 0.01367,0.201172 l 0.330078,0.439453 -0.230468,0.601563 a 0.1825,0.1825 0 0 0 0.103515,0.236328 0.1825,0.1825 0 0 0 0.236328,-0.105469 l 0.267579,-0.695313 a 0.18251825,0.18251825 0 0 0 -0.02344,-0.175781 l -0.320312,-0.423828 0.291015,-0.511719 a 0.1825,0.1825 0 0 0 -0.06641,-0.25 0.1825,0.1825 0 0 0 -0.138672,-0.01758 z"
id="path8728" /></g></svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

View File

@ -1,70 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 612 612" style="enable-background:new 0 0 612 612;" xml:space="preserve">
<g>
<path d="M517.002,127.269c34.795-48.858,48.567-97.321,49.136-99.359c1.588-5.689,0.565-11.789-2.793-16.647
c-3.36-4.86-8.703-7.972-14.587-8.499C528.185,0.93,508.54,0,490.369,0c-91.523,0-153.357,23.368-183.782,69.456
c-31.759,48.104-18.893,105.348-8.956,134.088c-0.016,0.027-0.031,0.053-0.046,0.078c-6.111-4.977-12.544-8.849-18.563-11.7
c-8.083-43.785-36.625-88.232-96.018-88.232c-35.876,0-80.007,16.408-131.173,48.769c-3.615,2.286-6.027,6.063-6.579,10.303
c-0.554,4.242,0.808,8.511,3.715,11.649c2.623,2.831,65.198,69.347,147.254,69.347c20.353,0,40.183-4.142,59.18-12.339
c4.999,1.786,19.32,8.008,23.498,21.693c-3.719,16.277-6.058,34.191-6.92,53.19H90.676c-12.338,0-22.338,10.001-22.338,22.338
v23.308c0,12.338,10.001,22.337,22.338,22.337h15.216L137.81,592.89c1.602,10.974,11.012,19.11,22.103,19.11h286.694
c11.091,0,20.501-8.136,22.103-19.11l31.911-218.604h15.22c12.338,0,22.338-10.001,22.338-22.337v-23.31
c0-12.338-10.001-22.338-22.338-22.338H317.43c1.71-33.528,8.615-60.571,18.14-77.553
C407.427,228.128,470.132,193.082,517.002,127.269z M83.253,167.056c39.467-22.953,72.967-34.572,99.751-34.572
c36.966,0,54.318,23.243,62.463,45.171c-1.169-0.658-2.375-1.327-3.646-2.009c-12.044-6.528-28.857-13.734-46.45-17.672
c-4.373-1.028-8.808-1.792-13.163-2.425c-2.18-0.31-4.362-0.507-6.493-0.758c-2.144-0.149-4.262-0.295-6.344-0.443
c-2.082-0.047-4.127-0.095-6.129-0.14c-1.996,0.046-3.947,0.093-5.848,0.139c-3.794,0.232-7.348,0.503-10.606,0.975
c-1.632,0.175-3.181,0.436-4.65,0.718c-1.467,0.272-2.857,0.496-4.154,0.766c-2.581,0.629-4.824,1.107-6.646,1.617
c-3.613,1.077-5.678,1.694-5.678,1.694s2.138-0.171,5.881-0.472c1.865-0.118,4.142-0.12,6.723-0.197
c1.296,0.007,2.676,0.077,4.122,0.113c1.444,0.029,2.96,0.093,4.539,0.257c3.157,0.206,6.548,0.667,10.099,1.194
c1.763,0.332,3.575,0.673,5.427,1.023c1.825,0.432,3.69,0.875,5.587,1.323c1.867,0.538,3.764,1.081,5.688,1.633
c1.896,0.645,3.819,1.236,5.726,1.938c3.81,1.413,7.625,2.935,11.339,4.69c14.93,6.852,28.318,16.354,37.485,24.19
c4.61,3.897,8.196,7.367,10.575,9.8c0.37,0.377,0.7,0.722,1.012,1.048c-14.128,5.511-28.733,8.305-43.634,8.305
C146.748,214.965,103.918,184.633,83.253,167.056z M339.763,91.36c22.604-34.242,73.277-51.604,150.604-51.604
c9.277,0,18.986,0.263,29.049,0.78c-18.246,44.301-67.983,137.118-167.304,147.514c0.177-0.598,0.365-1.229,0.58-1.927
c1.385-4.488,3.597-11.014,6.796-18.712c1.573-3.861,3.44-7.988,5.5-12.334c2.109-4.309,4.384-8.865,6.991-13.437
c2.556-4.607,5.401-9.255,8.437-13.905c1.562-2.282,3.077-4.661,4.756-6.909l2.477-3.434l2.59-3.354
c3.451-4.501,7.173-8.777,10.96-12.921c1.9-2.062,3.885-4.001,5.806-5.994c2.013-1.892,3.998-3.759,5.954-5.596
c2.044-1.752,4.056-3.473,6.025-5.157c2.053-1.597,4.063-3.159,6.018-4.679c2.033-1.435,4.009-2.827,5.921-4.176
c1.918-1.364,3.885-2.481,5.722-3.67c0.93-0.574,1.83-1.165,2.733-1.695c0.915-0.507,1.808-1.004,2.68-1.488
c1.752-0.959,3.402-1.914,4.988-2.74c3.217-1.537,6.016-2.973,8.38-4.007c4.783-1.994,7.518-3.134,7.518-3.134
s-2.924,0.549-8.043,1.509c-2.558,0.525-5.615,1.351-9.182,2.211c-1.763,0.489-3.613,1.088-5.587,1.683
c-0.986,0.304-2,0.613-3.035,0.932c-1.028,0.343-2.06,0.742-3.126,1.125c-2.113,0.804-4.386,1.531-6.636,2.503
c-2.26,0.968-4.599,1.969-7.004,2.999c-2.363,1.145-4.789,2.321-7.266,3.524c-2.432,1.322-4.913,2.671-7.438,4.043
c-2.466,1.495-4.973,3.013-7.509,4.55c-2.461,1.653-5.013,3.274-7.494,5.031c-4.946,3.527-9.908,7.266-14.629,11.291
c-4.798,3.958-9.324,8.22-13.729,12.502c-4.355,4.322-8.524,8.717-12.38,13.136c-3.907,4.386-7.45,8.818-10.785,13.069
c-3.279,4.286-6.315,8.411-8.982,12.323c-1.054,1.528-2.045,3.006-3.001,4.453C324.619,133.264,327.418,110.06,339.763,91.36z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 296.166 296.166" style="enable-background:new 0 0 296.166 296.166;" xml:space="preserve">
<path d="M215.25,34.5c0-6.903-5.597-12.5-12.5-12.5h-15.222c2.683-2.293,4.389-5.694,4.389-9.5c0-6.903-5.597-12.5-12.5-12.5
h-62.667c-6.903,0-12.5,5.597-12.5,12.5c0,3.806,1.706,7.207,4.389,9.5H93.416c-6.903,0-12.5,5.597-12.5,12.5
c0,6.5,4.963,11.838,11.305,12.439l9.361,86.331c-5.026,1.619-8.666,6.33-8.666,11.896c0,6.903,5.597,12.5,12.5,12.5h21.299V281.97
c0,7.841,6.355,14.196,14.196,14.196h14.607c7.841,0,14.196-6.355,14.196-14.196V157.666h21.034c6.903,0,12.5-5.597,12.5-12.5
c0-5.565-3.64-10.276-8.666-11.896l9.361-86.331C210.287,46.338,215.25,41,215.25,34.5z M116.605,132.666L107.316,47h9.912
l5.784,53.334c0.417,3.844,3.667,6.692,7.447,6.692c0.27,0,0.543-0.015,0.817-0.045c4.118-0.446,7.094-4.146,6.648-8.265L132.316,47
h56.534l-9.289,85.666H116.605z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,21 +0,0 @@
<?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="463.89285" height="438.87704" id="svg2" sodipodi:version="0.32" inkscape:version="0.46" version="1.0" sodipodi:docname="dynaHouse.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs id="defs4">
<inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" id="perspective10"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.4098083" inkscape:cx="231.94643" inkscape:cy="219.43852" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1006" inkscape:window-height="954" inkscape:window-x="660" inkscape:window-y="43"/>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-42.339286,-276.34171)">
<path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 437.14509,499.4375 L 437.14509,499.4375 z M 437.14509,499.4375 L 274.33259,355.25 L 111.42634,499.5 L 111.42634,705.625 C 111.42634,710.94838 115.72796,715.21875 121.05134,715.21875 L 222.86384,715.21875 L 222.86384,624.84375 C 222.86384,619.52035 227.13421,615.21875 232.45759,615.21875 L 316.11384,615.21875 C 321.43719,615.21875 325.70759,619.52037 325.70759,624.84375 L 325.70759,715.21875 L 427.55134,715.21875 C 432.87471,715.21875 437.14511,710.9484 437.14509,705.625 L 437.14509,499.4375 z M 111.42634,499.5 L 111.42634,499.5 z" id="rect2391" sodipodi:nodetypes="cccccccccccccccccc"/>
<path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 273.3878,276.34171 L 42.339286,480.92527 L 66.677596,508.38266 L 274.33298,324.49848 L 481.9411,508.38266 L 506.23215,480.92527 L 275.2309,276.34171 L 274.33298,277.3814 L 273.3878,276.34171 z" id="path2399"/>
<path style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;stroke-miterlimit:4;stroke-opacity:1" d="M 111.42634,305.79074 L 169.99777,305.79074 L 169.48739,340.48183 L 111.42634,392.9336 L 111.42634,305.79074 z" id="rect2404" sodipodi:nodetypes="ccccc"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,92 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="3.814636mm"
height="5.3916502mm"
viewBox="0 0 3.8146359 5.3916502"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="marelle.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="38.057741"
inkscape:cx="5.0581037"
inkscape:cy="10.444656"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.257999,-19.95002)">
<g
id="rect234"
style="opacity:0.995">
<path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 19.396484,21.541016 c -0.0757,6e-6 -0.138665,0.06102 -0.138672,0.136718 v 1.763672 c 7e-6,0.0757 0.06297,0.138666 0.138672,0.138672 h 1.761719 c 0.0757,-6e-6 0.138666,-0.06297 0.138672,-0.138672 v -1.763672 c -6e-6,-0.0757 -0.06297,-0.136712 -0.138672,-0.136718 z m 0,0.09961 h 1.761719 c 0.02166,2e-6 0.03906,0.01545 0.03906,0.03711 v 1.763672 c -2e-6,0.02166 -0.0174,0.03906 -0.03906,0.03906 h -1.761719 c -0.02166,-2e-6 -0.03906,-0.0174 -0.03906,-0.03906 v -1.763672 c 2e-6,-0.02166 0.0174,-0.03711 0.03906,-0.03711 z m 0.08789,0.07617 a 0.050005,0.050005 0 0 0 -0.05078,0.05078 v 1.585938 a 0.050005,0.050005 0 0 0 0.05078,0.04883 h 1.585937 a 0.050005,0.050005 0 0 0 0.05078,-0.04883 v -1.585938 a 0.050005,0.050005 0 0 0 -0.05078,-0.05078 z m 0.05078,0.09961 h 1.486328 v 1.486328 h -1.486328 z"
id="path2717" />
<path
style="color:#000000;fill:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 19.396149,21.590318 a 0.08815731,0.08815731 0 0 0 -0.08815,0.08815 v 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,0.08815 h 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,-0.08815 v -1.76297 a 0.08815731,0.08815731 0 0 0 -0.08815,-0.08815 z m 0.08815,0.176297 h 1.586673 v 1.586673 h -1.586673 z"
id="path2719" />
</g>
<g
id="rect234-3"
style="opacity:0.995">
<path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.171875,21.541016 c -0.0757,6e-6 -0.138666,0.06102 -0.138672,0.136718 v 1.763672 c 6e-6,0.0757 0.06297,0.138666 0.138672,0.138672 h 1.761719 c 0.0757,-6e-6 0.138665,-0.06297 0.138672,-0.138672 v -1.763672 c -7e-6,-0.0757 -0.06297,-0.136712 -0.138672,-0.136718 z m 0,0.09961 h 1.761719 c 0.02166,2e-6 0.03906,0.01545 0.03906,0.03711 v 1.763672 c -2e-6,0.02166 -0.0174,0.03906 -0.03906,0.03906 h -1.761719 c -0.02166,-2e-6 -0.03906,-0.0174 -0.03906,-0.03906 v -1.763672 c 2e-6,-0.02166 0.0174,-0.03711 0.03906,-0.03711 z m 0.08789,0.07617 a 0.050005,0.050005 0 0 0 -0.05078,0.05078 v 1.585938 a 0.050005,0.050005 0 0 0 0.05078,0.04883 h 1.585937 a 0.050005,0.050005 0 0 0 0.05078,-0.04883 v -1.585938 a 0.050005,0.050005 0 0 0 -0.05078,-0.05078 z m 0.05078,0.09961 h 1.486328 v 1.486328 h -1.486328 z"
id="path2711" />
<path
style="color:#000000;fill:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.171515,21.590318 a 0.08815731,0.08815731 0 0 0 -0.08815,0.08815 v 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,0.08815 h 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,-0.08815 v -1.76297 a 0.08815731,0.08815731 0 0 0 -0.08815,-0.08815 z m 0.08815,0.176297 h 1.586673 v 1.586673 h -1.586673 z"
id="path2713" />
</g>
<g
id="rect234-3-6"
style="opacity:0.995">
<path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 20.283203,23.302734 c -0.0757,7e-6 -0.136712,0.06297 -0.136719,0.138672 v 1.761719 c 7e-6,0.0757 0.06102,0.138666 0.136719,0.138672 h 1.763672 c 0.0757,-6e-6 0.138666,-0.06297 0.138672,-0.138672 v -1.761719 c -6e-6,-0.0757 -0.06297,-0.138665 -0.138672,-0.138672 z m 0,0.09961 h 1.763672 c 0.02166,2e-6 0.03711,0.0174 0.03711,0.03906 v 1.761719 c -1e-6,0.02166 -0.01545,0.03906 -0.03711,0.03906 h -1.763672 c -0.02166,-1e-6 -0.03711,-0.0174 -0.03711,-0.03906 v -1.761719 c 2e-6,-0.02166 0.01545,-0.03906 0.03711,-0.03906 z m 0.08789,0.07617 a 0.050005,0.050005 0 0 0 -0.04883,0.05078 v 1.585937 a 0.050005,0.050005 0 0 0 0.04883,0.05078 h 1.58789 a 0.050005,0.050005 0 0 0 0.04883,-0.05078 v -1.585937 a 0.050005,0.050005 0 0 0 -0.04883,-0.05078 z m 0.05078,0.09961 h 1.486328 v 1.486328 h -1.486328 z"
id="path2723" />
<path
style="color:#000000;fill:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 20.283763,23.3524 a 0.08815731,0.08815731 0 0 0 -0.08815,0.08815 v 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,0.08815 h 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,-0.08815 v -1.76297 a 0.08815731,0.08815731 0 0 0 -0.08815,-0.08815 z m 0.08815,0.176298 h 1.586673 v 1.586672 h -1.586673 z"
id="path2725" />
</g>
<g
id="path1102"
style="opacity:0.995">
<path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.162109,19.949219 c -0.388305,7.76e-4 -0.735002,0.206111 -0.978515,0.521484 -0.243374,0.315193 -0.388672,0.742497 -0.388672,1.210938 6e-6,0.0757 0.06297,0.138665 0.138672,0.138671 h 1.232422 l 1.232421,-0.0059 c 0.0757,-2.03e-4 0.136911,-0.06102 0.136719,-0.136719 -0.0011,-0.468429 -0.146435,-0.896655 -0.390625,-1.210937 -0.244334,-0.314469 -0.594111,-0.518361 -0.982422,-0.517578 z m 0.002,0.101562 c 0.353219,-7.11e-4 0.671366,0.183751 0.900391,0.478516 0.22917,0.294951 0.370019,0.700783 0.371094,1.148437 5.5e-5,0.02166 -0.01545,0.03705 -0.03711,0.03711 l -1.232421,0.0059 a 0.050005,0.050005 0 0 0 -0.04687,0.03125 l 0.01172,-0.03125 h -1.197265 c -0.02166,-2e-6 -0.03906,-0.0174 -0.03906,-0.03906 0,-0.447649 0.140689,-0.852571 0.369141,-1.148438 0.228312,-0.295686 0.547165,-0.481716 0.90039,-0.482422 z m 0,0.07617 c -0.32658,6.59e-4 -0.624957,0.172299 -0.841796,0.453125 -0.20164,0.261143 -0.319516,0.619238 -0.337891,1.011719 a 0.050005,0.050005 0 0 0 0.05078,0.05273 h 1.13086 l 1.130859,-0.0059 a 0.050005,0.050005 0 0 0 0.04883,-0.05078 c -0.01929,-0.392501 -0.13951,-0.751367 -0.341797,-1.011719 -0.217484,-0.279912 -0.513255,-0.44989 -0.839844,-0.449219 z m 0,0.09961 c 0.291867,-5.99e-4 0.559108,0.149387 0.761719,0.410157 0.176316,0.226926 0.275312,0.551784 0.302735,0.902343 l -1.0625,0.0039 h -1.064454 c 0.02659,-0.350595 0.125014,-0.674708 0.300782,-0.902344 0.202014,-0.261627 0.469843,-0.413474 0.761718,-0.414063 z"
id="path2705" />
<path
style="color:#000000;fill:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.165707,21.770089 1.232472,-0.0048 a 0.08815731,0.08815731 0 0 0 0.08792,-0.08838 c -0.0011,-0.458042 -0.144838,-0.87391 -0.381518,-1.178527 -0.23668,-0.304617 -0.570633,-0.499107 -0.941398,-0.49836 -0.370766,7.41e-4 -0.703879,0.196503 -0.939792,0.502033 -0.235913,0.30553 -0.378763,0.72186 -0.378763,1.179905 a 0.08815731,0.08815731 0 0 0 0.08815,0.08815 h 1.232472 a 0.08815731,0.08815731 0 0 0 4.49e-4,0 z m -4.5e-4,-0.176297 h -1.130551 c 0.01797,-0.383837 0.134192,-0.733054 0.328032,-0.984095 0.209427,-0.271227 0.491684,-0.432773 0.800912,-0.433397 0.309228,-6.35e-4 0.591552,0.159842 0.8016,0.430183 0.19445,0.250266 0.311693,0.599108 0.330557,0.982948 z"
id="path2707" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -1,62 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 14 14"
height="14"
width="14"
id="svg109"
version="1.1"
sodipodi:docname="panneau.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview6"
showgrid="false"
inkscape:zoom="33.714286"
inkscape:cx="0.38126703"
inkscape:cy="4.0848826"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg109" />
<metadata
id="metadata115">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs113" />
<rect
style="opacity:1;vector-effect:none;fill:#dbdbdb;fill-opacity:1;stroke:none;stroke-width:1.12158978;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect824"
width="12"
height="9"
x="1"
y="1" />
<path
id="rect18-1"
d="m 0,0 c 0,4.6666667 0,9.3333333 0,14 h 1 v -3 h 12 v 3 h 1 C 14,9.3333333 14,4.6666667 14,0 9.3333333,0 4.6666667,0 0,0 Z m 1,1 h 12 v 9 H 1 Z m 3,2 v 1 h 6 V 3 Z M 2,5 V 6 H 12 V 5 Z M 2,7 V 8 H 12 V 7 Z"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:5.16719103;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,99 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="142.18591"
height="104.58382"
viewBox="0 0 142.18593 104.58381"
xml:space="preserve"
sodipodi:docname="parking_velos.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
id="metadata21"><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 /></cc:Work></rdf:RDF></metadata><defs
id="defs19"><inkscape:path-effect
effect="simplify"
id="path-effect865"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
</defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview17"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.6568543"
inkscape:cx="53.28101"
inkscape:cy="40.907667"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<g
id="g889"><path
inkscape:connector-curvature="0"
id="path6"
d="M 25.4149,52.348265 C 9.7645253,52.210346 -3.0169234,68.425398 0.62583776,83.596312 3.3160329,99.189947 21.900281,108.85147 36.219588,102.23108 50.942655,96.556905 56.880991,76.506558 47.586776,63.746703 42.744432,56.50052 34.125723,52.065125 25.4149,52.348265 Z m 1.560547,8.447266 c 14.215211,0.01353 22.170061,19.27854 12.083985,29.314453 C 30.067621,101.14064 10.150841,95.125996 8.7352128,80.979125 6.8432193,70.30665 16.155664,59.98214 26.975447,60.795531 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path8"
d="M 96.006697,52.586546 C 80.349854,52.440293 67.543952,68.65287 71.194197,83.834593 73.887574,99.426962 92.479692,109.08953 106.79771,102.46741 121.51258,96.782516 127.4452,76.739398 118.15318,63.981078 113.31661,56.744125 104.70946,52.300948 96.006697,52.586546 Z m 1.556641,8.435547 c 14.199882,0.03832 22.156992,19.276038 12.066412,29.31836 -8.98086,10.991357 -28.867923,5.00191 -30.322271,-9.09961 -1.96243,-10.626325 7.487295,-21.091458 18.255859,-20.21875 z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path10"
d="M 72.207869,0.02404652 C 63.248151,-0.01629286 58.176551,12.131338 64.567244,18.442015 70.238609,25.327236 82.74649,21.550554 83.623885,12.662718 84.768806,5.9983007 78.962764,-0.4440427 72.207869,0.02404652 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path12"
d="m 58.600447,13.871703 c -7.651426,0.817672 -11.135089,9.391916 -16.841801,13.523734 -4.469714,4.868696 -13.404065,10.159692 -10.361324,18.150094 3.387352,7.518431 13.179595,8.632211 19.199532,13.33622 6.801444,2.014189 2.213549,10.730802 3.540703,15.966514 -1.2091,5.123909 0.924451,12.582087 7.289062,12.351563 6.192668,0.06451 8.273944,-7.176637 7.095703,-12.210938 -0.677688,-7.939453 1.203419,-16.246064 -0.603515,-24.021484 -2.39983,-5.137361 -8.9328,-6.001094 -13.171875,-9 4.444698,-4.317378 9.280124,-12.142579 12.159607,-2.407931 2.962022,6.78727 11.595738,3.838289 17.190002,4.361056 4.363638,0.567202 12.511709,0.718046 12.484375,-5.621094 C 96.340659,31.801686 87.941264,32.47962 83.522332,32.879569 75.878856,35.324794 73.591,27.978376 70.13035,22.776167 67.838848,18.318251 64.27004,13.328243 58.600447,13.871703 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><g
id="g879"><rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:6.28336287;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect867"
width="43.551727"
height="80.28817"
x="98.634186"
y="24.196041" /></g><g
id="flowRoot871"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.33333397px;line-height:1.25;font-family:Purisa;-inkscape-font-specification:Purisa;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none"
transform="matrix(3.3033733,0,0,3.4967424,37.966582,-21.463321)"
aria-label="P"><path
id="path875"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff"
d="m 30.993815,18.54974 q 0,1.416667 -0.645833,2.53125 -0.645833,1.114583 -1.854167,1.729167 -1.197916,0.604166 -2.854167,0.604166 H 21.993815 V 28.58099 H 18.920898 V 13.903906 h 6.59375 q 2.635417,0 4.052084,1.21875 1.427083,1.208334 1.427083,3.427084 z m -3.09375,0.05208 q 0,-2.3125 -2.729167,-2.3125 h -3.177083 v 4.760417 h 3.260417 q 1.270833,0 1.958333,-0.625 0.6875,-0.635417 0.6875,-1.822917 z" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -1,203 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="437"
height="322.96289"
version="1.1"
id="svg33"
sodipodi:docname="ressort.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata39">
<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>Spring</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs37">
<defs
id="defs11">
<linearGradient
id="svg_21"
x1="0"
y1="0"
x2="1"
y2="0">
<stop
id="stop6"
stop-color="#333333"
stop-opacity="0.996094"
offset="0" />
<stop
id="stop8"
stop-color="#999999"
stop-opacity="0.996094"
offset="1" />
</linearGradient>
</defs>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview35"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.3906433"
inkscape:cx="123.65745"
inkscape:cy="224.79729"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg33" />
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
<title
id="title2">Spring</title>
<g
id="g902"
transform="translate(-97.5,-81.5)">
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_17">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="231.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,356.551)"
id="svg_18" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="231.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,357.465)"
id="svg_19" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="372.96289"
width="301.00003"
height="28.999998"
id="svg_20" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_13">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="164.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,289.551)"
id="svg_14" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="164.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,290.465)"
id="svg_15" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="305.96289"
width="301.00003"
height="28.999998"
id="svg_16" />
</g>
<g
transform="matrix(0.53002014,0,0,1,145.86354,0)"
style="fill:#000000;fill-opacity:1"
id="svg_9">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="306.00085"
y="97.051064"
width="22"
height="251.00128"
transform="rotate(-75.7685,317,222.551)"
id="svg_10" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.9989"
y="97.965126"
width="22"
height="251.00128"
transform="rotate(75.7685,317,223.465)"
id="svg_11" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="170.49997"
y="238.96484"
width="301.00003"
height="28.999998"
id="svg_12" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_8">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="33.08622"
width="22"
height="251.00128"
id="svg_5"
transform="rotate(-75.7685,316,158.586)" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="34.000278"
width="22"
height="251.00128"
transform="rotate(75.7685,316,159.5)"
id="svg_6" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="175"
width="301.00003"
height="28.999998"
id="svg_7" />
</g>
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="100"
y="84"
width="432"
height="55"
id="svg_1"
rx="21"
ry="21" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

View File

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="3.7165411mm"
height="3.4168723mm"
viewBox="0 0 3.716541 3.4168723"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="rocher.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="38.057741"
inkscape:cx="2.5750346"
inkscape:cy="7.2127245"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.253285,-20.446294)">
<path
style="color:#000000;fill:#000000;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 19.6875,22.517578 -0.273438,0.123047 0.38086,0.837891 0.107422,0.08398 0.925781,0.185547 0.0957,-0.01172 0.441406,-0.220703 h 0.002 l 0.69336,-0.349609 -0.136719,-0.267579 -0.691406,0.34961 -0.396485,0.197265 -0.798828,-0.162109 z"
id="path342" />
<path
style="color:#000000;fill:#000000;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 21.496094,20.466797 -0.16211,0.07813 -0.345703,0.664062 -0.408203,0.783203 0.265625,0.138672 0.408203,-0.783203 0.294922,-0.564453 0.632813,0.123047 -0.09961,0.707031 0.126953,0.169922 0.457032,0.06836 -0.01172,0.990235 -0.169922,0.544922 -0.679688,0.148437 -0.27539,-0.279297 -0.214844,0.210938 0.333984,0.33789 0.138672,0.04102 0.847657,-0.183594 0.111328,-0.101562 0.201172,-0.650391 0.0059,-0.04297 0.01563,-1.142578 -0.128906,-0.15039 -0.439453,-0.06641 0.09766,-0.701171 -0.119141,-0.167969 z"
id="path344" />
<path
style="color:#000000;fill:#000000;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 21.248047,20.75 -0.892578,0.117187 -0.105469,0.06641 -0.314453,0.476562 -0.388672,-0.152344 -0.205078,0.128907 -0.08203,1.115234 0.08008,0.144531 0.761718,0.398438 0.138672,-0.265625 -0.673828,-0.353516 0.06055,-0.814453 0.310547,0.121094 0.179687,-0.05664 0.345704,-0.519531 0.824218,-0.107422 z"
id="path346" />
<path
style="color:#000000;fill:#000000;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 22.021484,22.208984 -0.259765,0.15625 -0.507813,-0.154297 -0.128906,0.01953 -0.402344,0.279297 0.171875,0.246093 0.341797,-0.238281 0.501953,0.154297 0.123047,-0.01563 0.314453,-0.191406 z"
id="path1748" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.2" baseProfile="tiny" id="Layer_1" x="0px" y="0px" width="73.401px" height="102.427px" viewBox="0 0 73.401 102.427" xml:space="preserve" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docname="memorial.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata id="metadata18"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/></cc:License></rdf:RDF></metadata><defs id="defs16"><inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 51.213501 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="73.401001 : 51.213501 : 1" inkscape:persp3d-origin="36.7005 : 34.142334 : 1" id="perspective20"/></defs><sodipodi:namedview inkscape:window-height="713" inkscape:window-width="760" inkscape:pageshadow="2" inkscape:pageopacity="0.0" guidetolerance="10.0" gridtolerance="10.0" objecttolerance="10.0" borderopacity="1.0" bordercolor="#666666" pagecolor="#ffffff" id="base" showgrid="false" inkscape:zoom="4.822947" inkscape:cx="63.465426" inkscape:cy="51.213501" inkscape:window-x="0" inkscape:window-y="0" inkscape:current-layer="Layer_1"/>
<g id="g3">
<g id="g5">
<path d="M14.001,100.758l-12.4-17.274c-0.42-0.587-0.676-1.284-0.736-2l0,0L0.014,71.282c-0.132-1.611,0.718-3.151,2.158-3.89l0,0 l5.25-2.699c0.257-0.133,0.592-0.259,0.873-0.327l0,0l3.519-0.867L9.505,9.521c-0.089-2.073,1.413-3.865,3.474-4.136l0,0 l40.549-5.35c0.691-0.093,1.38-0.004,2.027,0.259l0,0l4.8,1.951c1.565,0.635,2.567,2.199,2.49,3.887l0,0L60.39,59.958l11.52,9.276 c1.032,0.831,1.583,2.111,1.479,3.432l0,0l-0.801,10.125c-0.13,1.636-1.233,3.016-2.801,3.504l0,0l-51.349,15.95 c-0.395,0.123-0.797,0.182-1.194,0.182l0,0C15.981,102.427,14.768,101.826,14.001,100.758L14.001,100.758z" id="path7"/>
</g>
</g>
<polygon fill-rule="evenodd" fill="#FFFFFF" points="56.102,65.151 19.452,74.901 17.251,11.651 58.852,5.952 " id="polygon9"/>
<path fill="#FFFFFF" d="M16.924,89.49l0.327,8.937l51.35-15.951l0.632-7.995l-51.828,14.94 C17.245,89.468,17.084,89.484,16.924,89.49z" id="path11"/>
<polygon fill="#FFFFFF" points="63.854,67.868 19.001,80.201 17.521,85.226 67.502,70.816 " id="polygon13"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1,215 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="127.85367"
height="64.79351"
version="1.1"
id="svg24"
sodipodi:docname="structure.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata30">
<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>playhouse1</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview26"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.1346831"
inkscape:cx="51.84005"
inkscape:cy="33.888395"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg24" />
<title
id="title2">playhouse1</title>
<g
id="svg_2-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_3-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_4-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_5-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_6-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_7-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_8-1"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_9-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_10-7"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_11-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_12-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_13-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_14-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_15-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_16-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="g1078"
transform="translate(-0.332261,0.04829947)">
<g
id="g22">
<title
id="title4">Layer 1</title>
<path
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 h 3.728216 v 11.554343 h -3.240893 c -1.375163,0 -2.683427,0.629461 -3.59053,1.727559 L 6.869687,56.83257 H 2.713463 c -1.314977,0 -2.381202,1.133071 -2.381202,2.530718 v 2.851198 c 0,1.397418 1.066224,2.530489 2.381202,2.530489 h 10.684769 c 0.685202,0 1.337277,-0.313576 1.789525,-0.860906 L 30.776951,45.017097 V 61.30826 c 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2" />
<g
id="svg_3" />
<g
id="svg_4" />
<g
id="svg_5" />
<g
id="svg_6" />
<g
id="svg_7" />
<g
id="svg_8" />
<g
id="svg_9" />
<g
id="svg_10" />
<g
id="svg_11" />
<g
id="svg_12" />
<g
id="svg_13" />
<g
id="svg_14" />
<g
id="svg_15" />
<g
id="svg_16" />
</g>
<g
id="g22-2"
transform="translate(51.847742,-0.52318372)">
<title
id="title4-6">Layer 1</title>
<path
sodipodi:nodetypes="ccccccsccsssssssssccccsssssssss"
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 -0.88219,15.475147 3.245598,33.298071 3.728428,38.423219 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1-1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2-8" />
<g
id="svg_3-7" />
<g
id="svg_4-9" />
<g
id="svg_5-2" />
<g
id="svg_6-0" />
<g
id="svg_7-2" />
<g
id="svg_8-3" />
<g
id="svg_9-7" />
<g
id="svg_10-5" />
<g
id="svg_11-9" />
<g
id="svg_12-2" />
<g
id="svg_13-2" />
<g
id="svg_14-8" />
<g
id="svg_15-9" />
<g
id="svg_16-7" />
</g>
<rect
y="25.614407"
x="57.701271"
height="19.830507"
width="29.608051"
id="rect1004"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.85938358;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="41.912704"
x="108.02262"
height="22.309322"
width="9.0947161"
id="rect1006"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5.46906614;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="49.073723"
x="116.61813"
height="15.148305"
width="5.7838984"
id="rect1006-3"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.59391475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="55.821606"
x="122.40203"
height="8.400424"
width="5.7838984"
id="rect1006-3-6"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.67630935;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,85 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="118.625"
height="118.624"
version="1.1"
id="svg13"
sodipodi:docname="tennis.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata19">
<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>SQUASH YELLOW</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs17" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview15"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="3.8206558"
inkscape:cx="23.516536"
inkscape:cy="72.818296"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg13" />
<title
id="title2">SQUASH YELLOW</title>
<g
id="g11"
transform="translate(-2.344,-2.918)">
<title
id="title4">Layer 1</title>
<g
id="svg_1">
<path
id="svg_3"
d="M 15.242,2.918 C 8.133001,2.918 2.344,8.707 2.344,15.816 v 92.828 c 0,7.117 5.789001,12.898 12.898,12.898 h 92.805 c 7.133,0 12.922,-5.781 12.922,-12.898 V 15.816 c 0,-7.109 -5.789,-12.898 -12.922,-12.898 z"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:0" />
<path
id="svg_4"
d="m 18.375,68.449005 c -2.031006,0 -3.688004,1.655991 -3.688004,3.687996 0,2.023003 1.656006,3.655998 3.688004,3.655998 2.022995,0 3.664001,-1.632996 3.664001,-3.655998 0,-2.032005 -1.641006,-3.687996 -3.664001,-3.687996 z"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
id="svg_5"
d="m 72.476997,35.762001 c 4.398003,0 7.984001,-3.57 7.984001,-7.984001 0,-4.422001 -3.585999,-8.007999 -7.984001,-8.007999 -4.413994,0 -8,3.585999 -8,8.007999 0,4.413002 3.584999,7.984001 8,7.984001 z"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
id="svg_6"
d="M 109.828,105.973 96.844002,90.644997 c 0,0 -4.055,-23.68 -4.055,-23.734001 0,-0.02299 -0.609001,-2.679993 -0.609001,-2.679993 0.023,0.02299 -1.640999,-7.477001 -2.905998,-13.336002 2.022995,1.172001 3.859001,2.227001 3.952995,2.272999 0.102005,0.219002 6.883002,13.132996 6.883002,13.132996 0.516,0.953003 1.367,1.664001 2.398,1.977005 1.047,0.32 2.148,0.219002 3.102,-0.289001 0.945,-0.491997 1.656,-1.343994 1.977,-2.390999 0.336,-1.030998 0.242,-2.125 -0.273,-3.077995 L 99.869003,48.332002 c 0,0 -0.289001,-0.507999 -0.68,-0.898003 C 98.650002,46.895001 97.477997,46.231 97.477997,46.231 L 83.025002,38.003999 c -1.835999,-0.921997 -3.859001,-1.241997 -5.883003,-0.805 -0.827995,0.172005 -1.609001,0.492004 -2.491997,0.977005 -0.102005,0.023 -3.289001,1.444996 -5.148003,5.788998 l -7.421997,14.938 c 0,0 -11.296997,2.203003 -11.688004,2.272995 -0.101997,0.02301 -0.195,0.047 -0.272995,0.09401 L 39.563995,53.801 c -2.375,-1.655998 -2.663994,-6.640999 -2.687996,-6.835999 -0.297005,-3.414001 -2.25,-6.640999 -5.374992,-8.858997 -2.828003,-2 -6.25,-2.859001 -9.375,-2.344002 -2.438004,0.414001 -4.516006,1.68 -5.836014,3.538998 -1.022995,1.438 -1.561996,3.172001 -1.561996,5.031002 0,0.023 0.14801,1.609001 0.14801,1.609001 0.538986,3.147999 2.468994,6.077999 5.296997,8.101997 2.858994,2.031002 6.25,2.882999 9.375,2.344002 l 0.733994,-0.141003 c 0.07001,-0.055 4.758003,-1.491997 7.055008,0.07 0,0.023 7.897995,5.594002 10,7.077995 -0.219009,0.344002 -0.609009,1.102005 -0.586006,1.883003 0,0.241997 0.023,0.484001 0.07,0.734001 0.414001,2.195 2.561996,3.655998 4.766006,3.218994 l 14.007996,-2.733994 c 0,0 1.203003,-0.367004 1.710999,-0.734001 0.664001,-0.461006 1.148003,-1.437996 1.148003,-1.437996 L 72.142,56.902 c 0,0 2.530998,11.984001 2.578003,12.210999 -0.289001,0.289001 -11.492004,12.18 -11.492004,12.18 l -0.194992,0.242004 c -1.094009,1 -1.703003,2.32 -1.703003,3.710999 V 110.441 c 0,2.688 2.195,4.859 4.882996,4.859 2.656006,0 4.852005,-2.172 4.852005,-4.859 0,0 0,-20.703001 0,-21.047003 1.030998,-1.07 9.616997,-10.125 11.913994,-12.522995 0.242004,1.421997 2.461006,14.187996 2.461006,14.187996 0.195,1.125 0.734001,2.148003 1.538994,2.977005 0,0.023 15.430001,18.241997 15.430001,18.241997 0.859,0.977 2.03101,1.586 3.32,1.703 1.297,0.102 2.539,-0.312 3.539,-1.148 1.125,-0.945 1.711,-2.344 1.711,-3.711 -0.002,-1.118 -0.37,-2.22 -1.15099,-3.149 z M 32.820007,51.043 c -0.852005,1.195 -2.172012,1.977001 -3.805008,2.273003 C 26.718002,53.707002 24.156005,53.043 22.007003,51.480001 19.834991,49.941003 18.365997,47.746 17.975997,45.449003 L 17.882003,44.308 c 0,-1.202999 0.311996,-2.272999 0.97699,-3.202999 2.117004,-2.977001 6.977005,-3.172001 10.836014,-0.438 3.835999,2.735001 5.249992,7.399002 3.125,10.375999 z"
inkscape:connector-curvature="0"
style="fill:#000000" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,46 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg8"
version="1.1"
viewBox="0 0 43.832203 43.832203"
height="43.832203mm"
width="43.832203mm">
<defs
id="defs2" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-80.448126,-115.79125)"
id="layer1">
<g
id="g823">
<circle
style="opacity:0.597;vector-effect:none;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1.66499996;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.77307697;paint-order:markers fill stroke"
id="path815"
cx="102.36423"
cy="137.70735"
r="21.916101" />
<circle
style="opacity:1;vector-effect:none;fill:#aa4400;fill-opacity:1;stroke:none;stroke-width:1.66499996;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.77307697;paint-order:markers fill stroke"
id="path819"
cx="102.36423"
cy="137.70735"
r="3.3408689" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="65" height="65" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g id="svg_1" stroke="null">
<path id="svg_2" d="m62.75653,34.58033l-8.05376,-2.01399c-0.81086,-0.19895 -1.66603,-0.00337 -2.27777,0.52673l-3.12657,2.70092l-1.71601,-1.73935l1.06051,-1.62063c0.70161,-1.07148 0.34201,-2.47333 -0.80283,-3.13006c-1.14235,-0.65815 -2.64222,-0.32117 -3.34396,0.75147l-0.34201,0.52336l-1.04251,-1.05696c-0.82554,-0.83935 -1.99281,-1.14056 -3.12076,-1.01056l-1.08211,-1.33381c1.15924,-1.60404 1.04639,-3.79482 -0.41775,-5.28208c-1.25769,-1.27393 -3.15163,-1.66185 -4.80257,-1.14276l-10.94632,-13.47518l-1.13418,-4.49289c-0.32415,-1.28378 -1.54847,-2.19078 -2.95806,-2.19078c-1.40959,0 -2.63391,0.907 -2.95806,2.19091l-14.73698,58.38389c-0.38701,1.52951 0.62462,3.06227 2.25866,3.42349c1.63044,0.35928 3.27168,-0.5857 3.65759,-2.11405l11.77878,-46.66374l11.77892,46.66387c0.33038,1.30931 1.5781,2.19195 2.9557,2.19195c0.23179,0 0.46663,-0.02553 0.70175,-0.07789c1.63418,-0.36122 2.64582,-1.89397 2.25866,-3.42349l-12.22534,-48.43459l7.56096,9.30799c-1.47259,1.62063 -1.47384,4.04159 0.10676,5.64447c1.3776,1.39615 3.51165,1.71848 5.25965,0.9604l0.73609,0.907c-0.748,0.76262 -1.03767,1.74635 -0.90335,2.71777c-0.00485,0.15462 1.49613,8.23989 1.49613,8.23989c0.20895,1.08042 1.21477,1.87077 2.39298,1.87077c0.83578,0 1.6267,-0.4036 2.07326,-1.08703l0.77901,-1.18942l2.12338,2.09863c0.46192,0.39686 1.03656,0.62692 1.62933,0.62692c0.58904,0 1.18015,-0.19999 1.64803,-0.60372l5.71797,-4.93849l6.76048,1.69075c1.30754,0.32441 2.63142,-0.3979 2.97827,-1.61169c0.34658,-1.21495 -0.42523,-2.46335 -1.72197,-2.78802z" fill="black" stroke="null"/>
<path id="svg_3" d="m54.33583,39.12234l-4.89742,4.2294c-0.98671,0.85257 -1.04833,2.292 -0.13764,3.21676c0.47965,0.48551 1.13293,0.73242 1.78829,0.73242c0.58904,0 1.18043,-0.20012 1.64844,-0.60346l4.89714,-4.2294c0.98699,-0.85257 1.04861,-2.29187 0.13791,-3.21689c-0.91083,-0.92152 -2.44753,-0.9814 -3.43674,-0.12883l0.00002,0z" stroke="null"/>
</g>
<g id="svg_4"/>
<g id="svg_5"/>
<g id="svg_6"/>
<g id="svg_7"/>
<g id="svg_8"/>
<g id="svg_9"/>
<g id="svg_10"/>
<g id="svg_11"/>
<g id="svg_12"/>
<g id="svg_13"/>
<g id="svg_14"/>
<g id="svg_15"/>
<g id="svg_16"/>
<g id="svg_17"/>
<g id="svg_18"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,3 +0,0 @@
<svg enable-background="new 0 0 580 580" height="580" viewBox="0 0 580 580" width="580" xmlns="http://www.w3.org/2000/svg">
<path d="m529.47 221.775h-466.541v40h69.628v103.399h30v-103.399h267.284v103.399h30v-103.399h69.629z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
</svg>

Before

Width:  |  Height:  |  Size: 388 B

View File

@ -1,174 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="252.24365"
height="251.86287"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="basket.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/gioppo/Disegni/basketball2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="TRUE"
version="1.1">
<defs
id="defs4">
<linearGradient
id="linearGradient2189">
<stop
style="stop-color:#ffd52a;stop-opacity:1;"
offset="0"
id="stop2191" />
<stop
style="stop-color:#ff7f2a;stop-opacity:1;"
offset="1"
id="stop2193" />
</linearGradient>
<linearGradient
id="linearGradient17099">
<stop
style="stop-color:#f09700;stop-opacity:1;"
offset="0"
id="stop17101" />
<stop
id="stop17107"
offset="1"
style="stop-color:#f6f700;stop-opacity:0.49803922;" />
<stop
style="stop-color:#f6f700;stop-opacity:0;"
offset="1"
id="stop17103" />
</linearGradient>
<linearGradient
id="linearGradient4180">
<stop
style="stop-color:#ffe92a;stop-opacity:1;"
offset="0"
id="stop4182" />
<stop
id="stop4188"
offset="0.5"
style="stop-color:#fff22a;stop-opacity:0.49803922;" />
<stop
style="stop-color:#ff7f2a;stop-opacity:0;"
offset="1"
id="stop4184" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4180"
id="radialGradient5277"
cx="378.40622"
cy="466.38931"
fx="378.40622"
fy="466.38931"
r="171.71356"
gradientTransform="matrix(1,0,0,0.9950338,0,2.3161611)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient17099"
id="radialGradient17105"
cx="129.15811"
cy="738.49414"
fx="129.15811"
fy="738.49414"
r="483.95963"
gradientTransform="matrix(1,0,0,0.9994274,0,0.4228264)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2189"
id="linearGradient3172"
x1="481.63095"
y1="537.79144"
x2="274.91696"
y2="486.54004"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.1706996"
inkscape:cx="1.7660124"
inkscape:cy="31.551992"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Livello 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-274.92648,-319.60744)">
<path
style="fill:#ee6900;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4.9243083;stroke-miterlimit:4;stroke-opacity:1"
d="m 290.0785,500.00544 c -30.11295,-61.16013 -4.83796,-135.19883 56.41738,-165.26497 61.25534,-30.06614 135.4093,-4.83043 165.52224,56.32969 30.11294,61.16013 4.83796,135.19884 -56.41738,165.26497 -61.19954,30.03875 -135.27102,4.89016 -165.44407,-56.1712"
id="path2236"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.73245698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 277.39495,430.72241 Z"
id="path9163"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 278.66319,433.19164 c 19.44633,-47.32695 235.46979,-0.82308 244.77022,24.69233"
id="path9165"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 430.85192,324.54541 c 103.99563,36.62695 55.80254,231.28477 -41.8519,243.2194"
id="path10136"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 349.6846,333.18772 c 59.18451,4.93847 98.07718,93.83084 161.06641,61.73082"
id="path12150"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.15031,510.97246 c 84.97204,12.7577 197.84535,-105.35392 205.45478,8.64232"
id="path13121"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -1,239 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="compost.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.1212866"
inkscape:cx="-56.545285"
inkscape:cy="143.88697"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#a17400;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#3c2803;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="svg_28"
d="m 215.60974,222.31038 c -16.19899,2.177 -36.46726,31.17419 -55.2344,53.50557 -0.24903,0.28469 40.04563,27.44645 40.04563,27.44645 l 47.82148,-56.13772 c 0,0 -7.99631,-28.1223 -32.63271,-24.8143 z m 82.06191,74.10822 43.59546,-51.59893 -22.29556,11.0768 c -2.04904,-6.62333 -8.45175,-25.97387 -14.34946,-30.00771 -7.14262,-4.89439 -68.80818,-3.30801 -68.80818,-3.30801 0,0 2.02759,0.24901 10.73531,10.87034 7.51255,9.1417 14.09332,41.76725 15.77933,50.63859 l -23.38438,11.66019 z m -156.78188,79.67866 c 0,0 -23.59063,27.82361 -13.26784,46.24927 6.77981,12.11536 39.33413,7.9606 65.40045,7.1994 0.34843,-0.0137 13.61649,-54.72913 13.61649,-54.72913 z m 29.98619,-39.54758 17.6004,11.16935 -16.51186,-50.45369 -60.47754,1.42983 16.7752,10.70686 c -5.52057,6.68735 -21.54895,26.62115 -23.55499,34.66741 -2.41164,9.732 17.19485,60.93977 17.19485,60.93977 0,0 -0.36278,-1.91364 6.86515,-17.24465 6.23205,-13.1968 34.4184,-43.16883 42.10879,-51.21488 z m 160.23211,-48.99532 c -0.0926,-0.29158 -54.72204,28.07252 -54.72204,28.07252 l 18.90218,55.51168 c 0,0 32.26273,-0.0137 46.64763,-22.24584 9.44042,-14.59116 -3.13026,-39.51203 -10.82777,-61.33836 z m -21.68377,85.47672 c -13.97932,4.26852 -49.48605,1.93508 -59.07613,1.18799 l 5.64152,-23.24191 -42.52128,50.98017 17.79259,50.73807 5.39249,-22.15357 c 7.73312,-0.15629 30.60513,-0.96024 38.62267,-5.11509 9.71097,-5.00819 52.0473,-59.05457 52.0473,-59.05457 0,0 -1.67889,1.70729 -17.89916,6.65891 z"
style="fill:#000000;fill-opacity:1;stroke-width:1.71356702"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,239 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="conteneur.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.5606433"
inkscape:cx="-93.026907"
inkscape:cy="97.032039"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#32a200;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#3c2803;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="svg_28"
d="m 216.50158,222.31038 c -16.19899,2.177 -36.46726,31.17419 -55.2344,53.50557 -0.24903,0.28469 40.04563,27.44645 40.04563,27.44645 l 47.82148,-56.13772 c 0,0 -7.99631,-28.1223 -32.63271,-24.8143 z m 82.06191,74.10822 43.59545,-51.59893 -22.29556,11.0768 c -2.04904,-6.62333 -8.45175,-25.97387 -14.34946,-30.00771 -7.14261,-4.89439 -68.80817,-3.30801 -68.80817,-3.30801 0,0 2.02759,0.24901 10.73531,10.87034 7.51255,9.1417 14.09332,41.76725 15.77933,50.63859 l -23.38438,11.66019 z m -156.78188,79.67866 c 0,0 -23.59063,27.82361 -13.26784,46.24927 6.77981,12.11536 39.33413,7.9606 65.40045,7.1994 0.34843,-0.0137 13.61649,-54.72913 13.61649,-54.72913 z m 29.98619,-39.54758 17.6004,11.16935 -16.51186,-50.45369 -60.47754,1.42983 16.7752,10.70686 c -5.52057,6.68735 -21.54895,26.62115 -23.55499,34.66741 -2.41164,9.732 17.19485,60.93977 17.19485,60.93977 0,0 -0.36278,-1.91364 6.86515,-17.24465 6.23205,-13.1968 34.4184,-43.16883 42.10879,-51.21488 z m 160.2321,-48.99532 c -0.0926,-0.29158 -54.72203,28.07252 -54.72203,28.07252 l 18.90218,55.51168 c 0,0 32.26272,-0.0137 46.64762,-22.24584 9.44042,-14.59116 -3.13026,-39.51203 -10.82777,-61.33836 z m -21.68377,85.47672 c -13.97931,4.26852 -49.48604,1.93508 -59.07612,1.18799 l 5.64152,-23.24191 -42.52128,50.98017 17.79259,50.73807 5.39249,-22.15357 c 7.73312,-0.15629 30.60513,-0.96024 38.62267,-5.11509 9.71097,-5.00819 52.04729,-59.05457 52.04729,-59.05457 0,0 -1.67889,1.70729 -17.89916,6.65891 z"
style="fill:#000000;fill-opacity:1;stroke-width:1.71356702"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,234 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="dechets.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.5606433"
inkscape:cx="-305.42413"
inkscape:cy="31.876073"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#c1c1c1;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 6.5 KiB

View File

@ -1,126 +0,0 @@
<?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="518.43048" height="480.05527" id="svg4779" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="defibrillator.svg">
<defs id="defs4781"/>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35" inkscape:cx="-237.2133" inkscape:cy="100.02765" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1600" inkscape:window-height="848" inkscape:window-x="1272" inkscape:window-y="116" inkscape:window-maximized="1"/>
<metadata id="metadata4784">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Calque 1" inkscape:groupmode="layer" id="layer1" transform="translate(-117.92759,-152.33457)">
<g id="g4601" transform="matrix(34.728732,0,0,34.728732,-7885.2132,-7492.0539)" style="fill:#00a654;fill-opacity:1;stroke:none">
<g display="none" id="Selected_x5F_Ver1" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4484">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective9"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="base-8"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1-9" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_9_">
<stop id="stop4490" style="stop-color:#CE5C00" offset="0"/>
<stop id="stop4492" style="stop-color:#D16200" offset="0.1753"/>
<stop id="stop4494" style="stop-color:#D97100" offset="0.3981"/>
<stop id="stop4496" style="stop-color:#E68B00" offset="0.6465"/>
<stop id="stop4498" style="stop-color:#F8AF00" offset="0.9118"/>
<stop id="stop4500" style="stop-color:#FFBD00" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_2" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4504">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4506"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4508"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_5_" style="opacity:0.45000000000000001;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_10_">
<stop id="stop4512" style="stop-color:#703C19" offset="0"/>
<stop id="stop4514" style="stop-color:#CE5C00" offset="0.589"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_5_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4518">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4520"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4522"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_1_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_1_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4527">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4529"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4531"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_8_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_8_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g display="none" id="Selected_x5F_Ver2" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_2_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4537">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4539"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4541"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_6_" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_11_">
<stop id="stop4545" style="stop-color:#67A42C" offset="0"/>
<stop id="stop4547" style="stop-color:#88CD44" offset="0.7669"/>
<stop id="stop4549" style="stop-color:#99DA4C" offset="0.8651"/>
<stop id="stop4551" style="stop-color:#B8F059" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_6_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_1_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4555">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4557"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4559"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_4_" style="opacity:0.31999996000000003;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_12_">
<stop id="stop4563" style="stop-color:#4C662B" offset="0"/>
<stop id="stop4565" style="stop-color:#4C662B" offset="1"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_4_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4569">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4571"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4573"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_7_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_7_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4578">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4580"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4582"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_3_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_3_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_3" style="fill:#00a654;fill-opacity:1;stroke:none">
<defs id="defs4587">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4589"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4591"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_2_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 3.17563,6.69521 7.464,9.904 4.45115,-3.22151 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_2_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 459.30542,208.16062 -145.58282,173.50679 58.60048,0 -77.34278,162.89651 161.05792,-180.36371 -66.972,0 z" id="path11839" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,379 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
enable-background="new 0 0 455.148 454.788"
height="359.53201"
i:pageBounds="0 792 612 0"
i:rulerOrigin="0 0"
i:viewOrigin="78 623"
overflow="visible"
space="preserve"
viewBox="0 0 389.484 359.53202"
width="389.48401"
version="1.1"
id="svg105"
sodipodi:docname="insectes.svg"
style="overflow:visible"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<defs
id="defs109">
<linearGradient
id="WhiteTransparent">
<stop
id="stop8-3"
offset="0"
style="stop-color:white;stop-opacity:1" />
<stop
id="stop10-6"
offset="1"
style="stop-color:white;stop-opacity:0" />
</linearGradient>
<linearGradient
y2="472.51999"
x2="680.06"
y1="471.38"
x1="682.03998"
gradientTransform="matrix(0.633768,2.365244,-2.365244,0.633768,761.1766,-1845.476)"
gradientUnits="userSpaceOnUse"
id="linearGradient3153"
xlink:href="#WhiteTransparent" />
<linearGradient
y2="474.35001"
x2="676.89001"
y1="471.57001"
x1="681.71997"
gradientTransform="matrix(-2.365244,-0.633768,-0.633768,2.365244,1975.966,-632.1011)"
gradientUnits="userSpaceOnUse"
id="linearGradient3156"
xlink:href="#WhiteTransparent" />
<linearGradient
y2="472.51999"
x2="680.06"
y1="471.38"
x1="682.03998"
gradientTransform="matrix(2.120622,1.224339,-1.224339,2.120622,-793.7969,-1778.614)"
gradientUnits="userSpaceOnUse"
id="linearGradient2563"
xlink:href="#WhiteTransparent"
inkscape:collect="always" />
<linearGradient
y2="474.35001"
x2="676.89001"
y1="471.57001"
x1="681.71997"
gradientTransform="matrix(-2.120622,1.224339,1.224339,2.120622,923.1751,-1779.614)"
gradientUnits="userSpaceOnUse"
id="linearGradient2566"
xlink:href="#WhiteTransparent"
inkscape:collect="always" />
<linearGradient
y2="227.73579"
y1="227.73579"
x2="455.14841"
x1="424.36719"
id="XMLID_1_"
gradientUnits="userSpaceOnUse">
<stop
id="stop6"
style="stop-color:#E5E5E5"
offset="0" />
<stop
id="stop8"
style="stop-color:#E2E2E2"
offset="0.1696" />
<stop
id="stop10"
style="stop-color:#D8D8D8"
offset="0.3059" />
<stop
id="stop12"
style="stop-color:#C7C7C7"
offset="0.4306" />
<stop
id="stop14"
style="stop-color:#B0B0B0"
offset="0.5484" />
<stop
id="stop16"
style="stop-color:#919191"
offset="0.6614" />
<stop
id="stop18"
style="stop-color:#6B6B6B"
offset="0.7707" />
<stop
id="stop20"
style="stop-color:#3E3E3E"
offset="0.8772" />
<stop
id="stop22"
style="stop-color:#0C0C0C"
offset="0.9788" />
<stop
id="stop24"
style="stop-color:#000000"
offset="1" />
<a:midPointStop
style="stop-color:#E5E5E5"
offset="0" />
<a:midPointStop
style="stop-color:#E5E5E5"
offset="0.75" />
<a:midPointStop
style="stop-color:#000000"
offset="1" />
</linearGradient>
<linearGradient
y2="227.37601"
y1="227.37601"
x2="0.0713"
x1="30.851601"
id="XMLID_2_"
gradientUnits="userSpaceOnUse">
<stop
id="stop29"
style="stop-color:#E5E5E5"
offset="0" />
<stop
id="stop31"
style="stop-color:#E2E2E2"
offset="0.2675" />
<stop
id="stop33"
style="stop-color:#D8D8D8"
offset="0.4824" />
<stop
id="stop35"
style="stop-color:#C7C7C7"
offset="0.679" />
<stop
id="stop37"
style="stop-color:#B0B0B0"
offset="0.8635" />
<stop
id="stop39"
style="stop-color:#999999"
offset="1" />
<a:midPointStop
style="stop-color:#E5E5E5"
offset="0" />
<a:midPointStop
style="stop-color:#E5E5E5"
offset="0.75" />
<a:midPointStop
style="stop-color:#999999"
offset="1" />
</linearGradient>
<linearGradient
y2="0.071800001"
y1="30.8521"
x2="227.73579"
x1="227.73579"
id="XMLID_3_"
gradientUnits="userSpaceOnUse">
<stop
id="stop44"
style="stop-color:#E5E5E5"
offset="0" />
<stop
id="stop46"
style="stop-color:#E2E2E2"
offset="0.2675" />
<stop
id="stop48"
style="stop-color:#D8D8D8"
offset="0.4824" />
<stop
id="stop50"
style="stop-color:#C7C7C7"
offset="0.679" />
<stop
id="stop52"
style="stop-color:#B0B0B0"
offset="0.8635" />
<stop
id="stop54"
style="stop-color:#999999"
offset="1" />
<a:midPointStop
style="stop-color:#E5E5E5"
offset="0" />
<a:midPointStop
style="stop-color:#E5E5E5"
offset="0.75" />
<a:midPointStop
style="stop-color:#999999"
offset="1" />
</linearGradient>
<linearGradient
y2="454.67969"
y1="423.89941"
x2="227.37601"
x1="227.37601"
id="XMLID_4_"
gradientUnits="userSpaceOnUse">
<stop
id="stop59"
style="stop-color:#E5E5E5"
offset="0" />
<stop
id="stop61"
style="stop-color:#E2E2E2"
offset="0.1696" />
<stop
id="stop63"
style="stop-color:#D8D8D8"
offset="0.3059" />
<stop
id="stop65"
style="stop-color:#C7C7C7"
offset="0.4306" />
<stop
id="stop67"
style="stop-color:#B0B0B0"
offset="0.5484" />
<stop
id="stop69"
style="stop-color:#919191"
offset="0.6614" />
<stop
id="stop71"
style="stop-color:#6B6B6B"
offset="0.7707" />
<stop
id="stop73"
style="stop-color:#3E3E3E"
offset="0.8772" />
<stop
id="stop75"
style="stop-color:#0C0C0C"
offset="0.9788" />
<stop
id="stop77"
style="stop-color:#000000"
offset="1" />
<a:midPointStop
style="stop-color:#E5E5E5"
offset="0" />
<a:midPointStop
style="stop-color:#E5E5E5"
offset="0.75" />
<a:midPointStop
style="stop-color:#000000"
offset="1" />
</linearGradient>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview107"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.0378462"
inkscape:cx="440.63193"
inkscape:cy="232.31977"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg105" />
<metadata
id="metadata2">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title></dc:title>
<dc:description />
<dc:subject>
<rdf:Bag>
<rdf:li>icon</rdf:li>
<rdf:li>symbol</rdf:li>
<rdf:li>hotel</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent
rdf:about="http://www.openclipart.org/">
<dc:title>Open Clip Art Library</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>Gerald G.</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Gerald G.</dc:title>
</cc:Agent>
</dc:rights>
<dc:date />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://web.resource.org/cc/PublicDomain" />
<dc:language>en</dc:language>
</cc:Work>
<cc:License
rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<path
d="M 194.724,0 0,60.696 V 88.2 L 194.724,27.504 Z"
i:knockout="Off"
id="path88"
inkscape:connector-curvature="0"
style="clip-rule:evenodd;fill:#000000;fill-opacity:1;fill-rule:evenodd" />
<path
d="m 12.42,78.444 h 7.956 V 359.532 H 12.42 Z"
i:knockout="Off"
id="path90"
inkscape:connector-curvature="0"
style="clip-rule:evenodd;fill:#000000;fill-opacity:1;fill-rule:evenodd" />
<path
d="m 369.793,78.444 h 7.955 v 281.088 h -7.955 z"
i:knockout="Off"
id="path94"
inkscape:connector-curvature="0"
style="clip-rule:evenodd;fill:#000000;fill-opacity:1;fill-rule:evenodd" />
<path
d="m 194.724,0 194.76,60.696 V 88.2 L 194.724,27.504 Z"
i:knockout="Off"
id="path96"
inkscape:connector-curvature="0"
style="clip-rule:evenodd;fill:#000000;fill-opacity:1;fill-rule:evenodd" />
<path
id="ant-shape"
style="fill:#222222;stroke-width:2.66355157"
d="m 71.26372,110.06687 c -2.650039,2.3097 18.67828,30.97704 19.99414,32.64623 18.22137,23.15515 36.25998,23.95092 38.48967,27.40574 2.24796,3.43543 12.99436,14.92564 32.11125,18.30285 0.0732,5.27929 0.34726,10.26747 0.85898,15.0033 -11.75159,-3.43543 -24.98355,-6.38561 -32.3854,-6.3662 -7.80394,-0.0192 -34.23129,7.82189 -38.96483,10.17039 -1.66314,0.83459 -31.8554,0.0192 -31.8554,3.51306 0,3.53249 30.06432,4.83289 31.30712,3.04724 10.91089,1.84387 41.81589,-4.15356 45.10563,-3.53248 3.2897,0.65992 28.60222,8.48182 28.78498,8.52062 1.90072,9.27761 4.66044,14.34341 7.93187,20.53493 -12.57402,-0.3882 -35.14511,12.82944 -47.7374,26.20237 -10.45399,11.10204 -27.87119,29.05552 -30.50295,33.01499 -9.8326,14.75096 -5.42803,60.88658 0.0181,60.88658 4.27663,0 -5.95803,-41.30273 3.87455,-56.05368 2.83282,-4.25063 34.50543,-27.21166 38.19724,-31.71459 3.69179,-4.50294 23.3204,-10.94676 31.5447,-17.46825 -8.27913,5.68688 -13.94474,14.57628 -13.94474,26.80404 0,45.41747 22.31523,63.72033 39.07449,63.93383 0,0 0.0181,0.0582 0.0548,0.0582 0.0365,0 0.0731,0 0.10958,0 0.0365,0 0.0731,0 0.10958,0 0.0365,0 0.0732,0 0.10959,0 16.74098,-0.23304 38.94655,-18.57456 38.94655,-63.91439 0.0181,-11.39318 -4.93458,-19.95262 -12.2816,-25.65893 8.93705,6.07509 26.46392,12.03371 29.93639,16.2649 3.71006,4.48353 35.23648,27.44456 38.08757,31.71459 9.85086,14.73154 -0.36552,56.09248 3.94765,56.09248 5.40976,0 9.8326,-46.15498 0,-60.90598 -2.65003,-3.94004 -20.04896,-21.87411 -30.50293,-32.97615 -12.61058,-13.39233 -35.14512,-26.60998 -47.73742,-26.2024 3.27143,-6.19152 6.01286,-11.39318 7.93187,-20.69017 0.16439,-0.0192 25.477,-7.72485 28.78499,-8.36534 3.30798,-0.64053 34.19474,5.37634 45.12389,3.51304 1.2245,1.80506 31.30711,0.48524 31.28884,-3.02781 0.0181,-3.51308 -30.26537,-2.75612 -31.92851,-3.5907 -4.71523,-2.36792 -31.01467,-10.18981 -38.83688,-10.18981 -7.40185,0.0192 -20.74347,2.96959 -32.49505,6.36621 0.51173,-4.69702 0.89553,-9.6852 0.96865,-14.96449 19.11685,-3.41601 29.88156,-14.88683 32.09295,-18.32225 2.248,-3.43543 20.28658,-4.23119 38.50794,-27.42516 1.29759,-1.64977 22.64418,-30.33651 19.97588,-32.62681 -3.12522,-2.69788 -22.68076,24.04797 -23.46664,26.39649 -5.3001,2.7949 -30.48467,20.61251 -33.51852,21.89351 -3.05213,1.2616 -18.40413,7.08435 -34.72475,17.46828 -2.50384,-10.151 -8.80913,-17.04125 -16.52168,-20.69017 10.65503,-0.0192 18.40413,-2.23208 18.40413,-14.69274 0,-13.62527 -2.46728,-26.183 -6.61599,-36.25634 11.34953,-6.26918 19.5738,-12.98475 22.04108,-13.93579 2.4673,-0.98989 3.41764,-4.59997 -1.26104,-13.72229 -7.71266,-14.98383 -16.06487,-27.968584 -17.87421,-27.250449 -1.80934,0.75695 6.63423,29.948349 13.87162,36.236929 -8.57152,1.61097 -14.20059,4.56115 -21.34658,9.82104 -5.62907,-9.04467 -12.86643,-14.47924 -20.85312,-14.61512 -0.0181,-0.0192 -0.0365,-0.0776 -0.0548,-0.0581 -0.0731,0 -0.16438,-0.0192 -0.23752,-0.0192 -8.00498,0.11636 -15.38855,5.62865 -20.99934,14.69274 -7.16428,-5.24048 -12.75679,-8.2683 -21.31004,-9.89866 7.23735,-6.24978 15.73579,-35.421769 13.92646,-36.139909 -1.80935,-0.718135 -10.21639,12.169579 -17.92894,27.153449 -4.69699,9.14174 -3.67352,12.82946 -1.20622,13.78051 2.48555,0.97048 10.70982,7.68605 22.05935,13.95519 -4.16699,10.05396 -6.63426,22.65051 -6.63426,36.27574 0,12.42188 7.74909,14.67334 18.38585,14.67334 -7.6943,3.66832 -13.99955,10.55857 -16.50341,20.67076 -16.32065,-10.38384 -31.74575,-16.12894 -34.77959,-17.40994 -3.05212,-1.2616 -28.21845,-19.21508 -33.51854,-22.01002 -0.76759,-2.3291 -20.28655,-29.03611 -23.43007,-26.31883 z"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

View File

@ -1,49 +0,0 @@
<?xml version="1.0" encoding="windows-1252"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<g>
<path d="M504.984,407.552c-4.486-4.37-10.547-6.739-16.809-6.578c-33.187,0.855-64.219-6.478-92.22-26.71 c-25.3-18.279-45.075-44.849-61.547-71.479c-9.209-14.888-17.894-33.443-42.745-52.21c-30.764-23.236-71.898-33.537-109.531-33.63 v-50.912l55.611,41.751c25.235,6.452,49.633,17.687,70.077,34.915c18.506,15.595,27.542,30.093,35.339,43.223l10.051-4.423 l5.98,29.697c12.223,17.828,24.964,32.867,39.287,44.615c1.685-3.255,2.321-7.08,1.541-10.952l-18.14-90.084 c-0.993-4.926-4.152-9.143-8.601-11.481c-4.449-2.336-9.714-2.544-14.333-0.566l-23.457,10.049 c-6.28-25.238-8.436-33.902-14.58-58.596l56.505-77.152c4.538-6.196,3.194-14.9-3.003-19.439 c-6.197-4.539-14.898-3.194-19.44,3.003l-57.133,78.01l-38.956,10.266l-76.747-57.619v-9.2c0-5.202-2.352-10.126-6.399-13.395 l-75.536-61.009c-5.327-4.302-12.935-4.302-18.263,0L6.399,108.655C2.353,111.925,0,116.848,0,122.05v337.033 c0,4.693,3.805,8.497,8.497,8.497h20.366c4.693,0,8.498-3.805,8.498-8.497v-90.074h107.411v90.074 c0,4.693,3.805,8.497,8.497,8.497h4.179c0.21,0,0.275,0,0.266,0h15.921c4.693,0,8.498-3.805,8.498-8.497V284.537 c18.986,2.052,43.324,7.407,65.79,20.479c18.565,10.803,33.309,25.424,43.879,43.523c23.311,39.917,44.09,65.968,67.373,84.471 c38.645,30.711,83.079,38.657,132.495,32.511c0.009-0.001,0.019-0.002,0.029-0.003C503.326,464.062,512,454.201,512,442.482v-18.3 C512,417.919,509.469,411.922,504.984,407.552z M144.772,339.822L144.772,339.822H37.361v-40.863h107.411V339.822z M144.772,269.771L144.772,269.771H37.361v-42.007h107.411V269.771z"/>
</g>
</g>
<g>
<g>
<path d="M448.619,294.203c-58.083-46.371-53.978-43.173-55.356-44.016c0.486,1.719-0.339-2.18,10.325,50.777l24.206,19.325 c7.204,5.752,17.706,4.571,23.456-2.631C457.001,310.456,455.823,299.954,448.619,294.203z"/>
</g>
</g>
<g>
<g>
<circle cx="271.262" cy="146.57" r="32.45"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 20 KiB

View File

@ -1,62 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 14 14"
height="14"
width="14"
id="svg109"
version="1.1"
sodipodi:docname="panneau.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview6"
showgrid="false"
inkscape:zoom="33.714286"
inkscape:cx="0.38126703"
inkscape:cy="4.0848826"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg109" />
<metadata
id="metadata115">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs113" />
<rect
style="opacity:1;vector-effect:none;fill:#dbdbdb;fill-opacity:1;stroke:none;stroke-width:1.12158978;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect824"
width="12"
height="9"
x="1"
y="1" />
<path
id="rect18-1"
d="m 0,0 c 0,4.6666667 0,9.3333333 0,14 h 1 v -3 h 12 v 3 h 1 C 14,9.3333333 14,4.6666667 14,0 9.3333333,0 4.6666667,0 0,0 Z m 1,1 h 12 v 9 H 1 Z m 3,2 v 1 h 6 V 3 Z M 2,5 V 6 H 12 V 5 Z M 2,7 V 8 H 12 V 7 Z"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:5.16719103;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,99 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="142.18591"
height="104.58382"
viewBox="0 0 142.18593 104.58381"
xml:space="preserve"
sodipodi:docname="parking_velos.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
id="metadata21"><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 /></cc:Work></rdf:RDF></metadata><defs
id="defs19"><inkscape:path-effect
effect="simplify"
id="path-effect865"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
</defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview17"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.6568543"
inkscape:cx="53.28101"
inkscape:cy="40.907667"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<g
id="g889"><path
inkscape:connector-curvature="0"
id="path6"
d="M 25.4149,52.348265 C 9.7645253,52.210346 -3.0169234,68.425398 0.62583776,83.596312 3.3160329,99.189947 21.900281,108.85147 36.219588,102.23108 50.942655,96.556905 56.880991,76.506558 47.586776,63.746703 42.744432,56.50052 34.125723,52.065125 25.4149,52.348265 Z m 1.560547,8.447266 c 14.215211,0.01353 22.170061,19.27854 12.083985,29.314453 C 30.067621,101.14064 10.150841,95.125996 8.7352128,80.979125 6.8432193,70.30665 16.155664,59.98214 26.975447,60.795531 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path8"
d="M 96.006697,52.586546 C 80.349854,52.440293 67.543952,68.65287 71.194197,83.834593 73.887574,99.426962 92.479692,109.08953 106.79771,102.46741 121.51258,96.782516 127.4452,76.739398 118.15318,63.981078 113.31661,56.744125 104.70946,52.300948 96.006697,52.586546 Z m 1.556641,8.435547 c 14.199882,0.03832 22.156992,19.276038 12.066412,29.31836 -8.98086,10.991357 -28.867923,5.00191 -30.322271,-9.09961 -1.96243,-10.626325 7.487295,-21.091458 18.255859,-20.21875 z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path10"
d="M 72.207869,0.02404652 C 63.248151,-0.01629286 58.176551,12.131338 64.567244,18.442015 70.238609,25.327236 82.74649,21.550554 83.623885,12.662718 84.768806,5.9983007 78.962764,-0.4440427 72.207869,0.02404652 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path12"
d="m 58.600447,13.871703 c -7.651426,0.817672 -11.135089,9.391916 -16.841801,13.523734 -4.469714,4.868696 -13.404065,10.159692 -10.361324,18.150094 3.387352,7.518431 13.179595,8.632211 19.199532,13.33622 6.801444,2.014189 2.213549,10.730802 3.540703,15.966514 -1.2091,5.123909 0.924451,12.582087 7.289062,12.351563 6.192668,0.06451 8.273944,-7.176637 7.095703,-12.210938 -0.677688,-7.939453 1.203419,-16.246064 -0.603515,-24.021484 -2.39983,-5.137361 -8.9328,-6.001094 -13.171875,-9 4.444698,-4.317378 9.280124,-12.142579 12.159607,-2.407931 2.962022,6.78727 11.595738,3.838289 17.190002,4.361056 4.363638,0.567202 12.511709,0.718046 12.484375,-5.621094 C 96.340659,31.801686 87.941264,32.47962 83.522332,32.879569 75.878856,35.324794 73.591,27.978376 70.13035,22.776167 67.838848,18.318251 64.27004,13.328243 58.600447,13.871703 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><g
id="g879"><rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:6.28336287;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect867"
width="43.551727"
height="80.28817"
x="98.634186"
y="24.196041" /></g><g
id="flowRoot871"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.33333397px;line-height:1.25;font-family:Purisa;-inkscape-font-specification:Purisa;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none"
transform="matrix(3.3033733,0,0,3.4967424,37.966582,-21.463321)"
aria-label="P"><path
id="path875"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff"
d="m 30.993815,18.54974 q 0,1.416667 -0.645833,2.53125 -0.645833,1.114583 -1.854167,1.729167 -1.197916,0.604166 -2.854167,0.604166 H 21.993815 V 28.58099 H 18.920898 V 13.903906 h 6.59375 q 2.635417,0 4.052084,1.21875 1.427083,1.208334 1.427083,3.427084 z m -3.09375,0.05208 q 0,-2.3125 -2.729167,-2.3125 h -3.177083 v 4.760417 h 3.260417 q 1.270833,0 1.958333,-0.625 0.6875,-0.635417 0.6875,-1.822917 z" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -1,254 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="500.02963"
height="350.57217"
id="svg13388"
version="1.1"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="ping-pong.svg">
<defs
id="defs13390">
<linearGradient
id="linearGradient3860">
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="0"
id="stop3862" />
<stop
id="stop3868"
offset="0.42549232"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3864" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14380">
<stop
style="stop-color:#deaa87;stop-opacity:1;"
offset="0"
id="stop14382" />
<stop
style="stop-color:#c87137;stop-opacity:1"
offset="1"
id="stop14384" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14351">
<stop
style="stop-color:#d89a71;stop-opacity:1;"
offset="0"
id="stop14353" />
<stop
style="stop-color:#e9c6af;stop-opacity:1"
offset="1"
id="stop14355" />
</linearGradient>
<linearGradient
id="linearGradient14339">
<stop
style="stop-color:#d38d5f;stop-opacity:1"
offset="0"
id="stop14341" />
<stop
id="stop14347"
offset="0.5"
style="stop-color:#f4e3d7;stop-opacity:1" />
<stop
style="stop-color:#d38d5f;stop-opacity:1"
offset="1"
id="stop14343" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14059">
<stop
id="stop14063"
offset="0"
style="stop-color:#ff2a2a;stop-opacity:1" />
<stop
id="stop14061"
offset="1"
style="stop-color:#be0d00;stop-opacity:1;" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath7292">
<path
inkscape:connector-curvature="0"
d="m 6214.53,4715.05 c 10.7,-10.72 24.24,-18.59 39.4,-22.34 6.48,-1.61 13.26,-2.45 20.23,-2.45 13.55,0 26.33,3.2 37.68,8.9 8.14,4.08 15.54,9.45 21.91,15.84 5.37,5.37 10,11.46 13.79,18.12 7.05,12.4 11.09,26.78 11.09,42.1 0,8.77 -1.33,17.22 -3.79,25.19 -4.12,13.39 -11.44,25.37 -21.09,35.02 -6.37,6.39 -13.77,11.76 -21.91,15.85 -11.35,5.7 -24.13,8.9 -37.68,8.9 -6.97,0 -13.75,-0.85 -20.23,-2.46 -15.16,-3.74 -28.7,-11.6 -39.4,-22.33 -9.65,-9.65 -16.95,-21.63 -21.05,-35.01 -2.46,-7.95 -3.79,-16.4 -3.79,-25.16 0,-15.31 4.02,-29.67 11.07,-42.07 3.77,-6.65 8.4,-12.73 13.77,-18.1"
id="path7294" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath7298">
<path
inkscape:connector-curvature="0"
d="m 6214.53,4715.05 c 10.7,-10.72 24.24,-18.59 39.4,-22.34 6.48,-1.61 13.26,-2.45 20.23,-2.45 13.55,0 26.33,3.2 37.68,8.9 8.14,4.08 15.54,9.45 21.91,15.84 5.37,5.37 10,11.46 13.79,18.12 7.05,12.4 11.09,26.78 11.09,42.1 0,8.77 -1.33,17.22 -3.79,25.19 -4.12,13.39 -11.44,25.37 -21.09,35.02 -6.37,6.39 -13.77,11.76 -21.91,15.85 -11.35,5.7 -24.13,8.9 -37.68,8.9 -6.97,0 -13.75,-0.85 -20.23,-2.46 -15.16,-3.74 -28.7,-11.6 -39.4,-22.33 -9.65,-9.65 -16.95,-21.63 -21.05,-35.01 -2.46,-7.95 -3.79,-16.4 -3.79,-25.16 0,-15.31 4.02,-29.67 11.07,-42.07 3.77,-6.65 8.4,-12.73 13.77,-18.1"
id="path7300" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6676">
<path
inkscape:connector-curvature="0"
d="m 6200.02,4962.56 c 0,0 166.86,-108.33 184.36,-119.75 0,0 112.16,-84.57 147.89,-115 l 2.36,-2.01 c 0,0 14.12,-15.21 26.03,3.14 11.23,19.12 22.45,38.24 33.68,57.36 8.06,13.72 16.13,27.46 24.18,41.19 0,0 8.98,8.23 -17.35,23.09 -1.42,0.79 -2.93,1.6 -4.53,2.44 0,0 -164.94,84.15 -190.76,110.83 0,0 -133.5,94.5 -150.29,96.3 -7.74,-13.6 -15.49,-27.2 -23.23,-40.79 -10.78,-18.94 -21.56,-37.87 -32.34,-56.8"
id="path6678" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6682">
<path
inkscape:connector-curvature="0"
d="m 6200.02,4962.56 c 0,0 166.86,-108.33 184.36,-119.75 0,0 112.16,-84.57 147.89,-115 l 2.36,-2.01 c 0,0 14.12,-15.21 26.03,3.14 11.23,19.12 22.45,38.24 33.68,57.36 8.06,13.72 16.13,27.46 24.18,41.19 0,0 8.98,8.23 -17.35,23.09 -1.42,0.79 -2.93,1.6 -4.53,2.44 0,0 -164.94,84.15 -190.76,110.83 0,0 -133.5,94.5 -150.29,96.3 -7.74,-13.6 -15.49,-27.2 -23.23,-40.79 -10.78,-18.94 -21.56,-37.87 -32.34,-56.8"
id="path6684" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6562">
<path
inkscape:connector-curvature="0"
d="m 6035.64,4829.77 c 25.32,43.88 50.65,87.77 75.98,131.67 63.42,109.88 126.84,219.77 190.26,329.65 0,0 39.06,-64.98 22.53,-210.85 0,0 -7.12,-56.3 48.46,-94.13 -8.4,-13.51 -16.82,-27.01 -25.19,-40.51 -12.09,-19.42 -24.16,-38.84 -36.23,-58.24 0,0 -63.38,51.04 -179.16,-31.37 0,0 -77.9,-35.51 -96.65,-26.22"
id="path6564" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6568">
<path
inkscape:connector-curvature="0"
d="m 6035.64,4829.77 c 25.32,43.88 50.65,87.77 75.98,131.67 63.42,109.88 126.84,219.77 190.26,329.65 0,0 39.06,-64.98 22.53,-210.85 0,0 -7.12,-56.3 48.46,-94.13 -8.4,-13.51 -16.82,-27.01 -25.19,-40.51 -12.09,-19.42 -24.16,-38.84 -36.23,-58.24 0,0 -63.38,51.04 -179.16,-31.37 0,0 -77.9,-35.51 -96.65,-26.22"
id="path6570" />
</clipPath>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient14059"
id="radialGradient14065"
cx="46.00568"
cy="310.12067"
fx="46.00568"
fy="310.12067"
r="345.23618"
gradientTransform="matrix(1,0,0,0.96960782,1793.654,-206.37142)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient14059"
id="radialGradient14327"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.96960782,1793.654,-206.37142)"
cx="46.00568"
cy="310.12067"
fx="46.00568"
fy="310.12067"
r="345.23618" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14339"
id="linearGradient14345"
x1="2427.4524"
y1="452.19705"
x2="2505.4219"
y2="330.04474"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14351"
id="linearGradient14357"
x1="2345.4033"
y1="315.42029"
x2="2308.2268"
y2="293.36719"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(1,3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14380"
id="linearGradient14386"
x1="2335.1101"
y1="122.39021"
x2="2312.1321"
y2="399.892"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.84596866"
inkscape:cx="-177.18746"
inkscape:cy="15.626062"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0">
<inkscape:grid
type="xygrid"
id="grid14237"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-7.6729684"
originy="-19.89713" />
</sodipodi:namedview>
<metadata
id="metadata13393">
<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="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-7.6729684,-681.89289)">
<path
style="fill:#7d7d7d;fill-opacity:1;stroke:#000000;stroke-width:10.25599957;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 340.875,149.46094 -79.63281,178.90234 c 0,0 35.81712,-37.21314 59.66211,-41.69922 14.98098,4.74134 7.22897,1.90873 19.92382,7.72461 l 131.55274,60.9336 c 0,0 13.89824,-18.30959 18.88086,-28.58399 4.80443,-9.90696 10.36914,-31.36133 10.36914,-31.36133 L 371.56988,239.87317 C 353.48405,232.1996 352.56558,227.0487 351.33008,224.72656 339.76628,202.19092 340.875,149.46094 340.875,149.46094 Z"
transform="translate(0,652.36218)"
id="path14324"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccscccc" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:7.75600004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 133.72402,687.04559 c -57.192498,6.27207 -106.94335,52.322 -118.149318,108.66861 -11.3444431,44.5767 1.974171,93.30364 32.170181,127.61137 28.234622,33.48963 68.112667,54.99622 108.827747,69.56641 35.02262,12.00892 78.60681,13.70722 107.74876,-12.605 12.71838,-11.61229 15.34492,-29.97694 23.45848,-44.628 18.24816,-41.3756 36.5181,-82.74155 54.75986,-124.12 -1.99514,-38.24927 -32.27887,-67.1599 -62.45443,-86.8661 -36.75339,-23.0026 -79.6275,-37.35776 -123.09259,-38.87666 -7.76727,-0.12989 -15.58751,0.23335 -23.26869,1.24937 z"
id="path6604"
inkscape:connector-curvature="0" />
<circle
r="43.960594"
cy="986.75446"
cx="227.13269"
style="fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3023" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 10 KiB

View File

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14">
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="m 1,6 1.5,8 5,0 L 9,6 z M 2.18,7 7.81,7 7.44,9 2.55,9 M 4,5 C 4,3 5,2 7,2 L 8,2 8,1 7,1 C 6,1 6,0 7,0 l 3,0 c 1,0 1,1 0,1 l -1,0 0,1 4,0 0,1.5 -6,0 C 5.91526,3.49111 5.5,3.9824765 5.5,5 z"
id="drinking-water" />
</svg>

Before

Width:  |  Height:  |  Size: 603 B

View File

@ -1,3 +0,0 @@
<svg enable-background="new 0 0 580 580" height="580" viewBox="0 0 580 580" width="580" xmlns="http://www.w3.org/2000/svg">
<path d="m520.451 332.731h-229.295l84.422-78.886h144.873c15.101 0 27.343-12.241 27.343-27.342s-12.242-27.342-27.343-27.342h-86.351l37.085-34.654c11.033-10.31 11.62-27.613 1.31-38.646-10.31-11.034-27.612-11.62-38.646-1.31l-79.845 74.61h-285.314c-15.101 0-27.343 12.241-27.343 27.342s12.242 27.342 27.343 27.342h226.792l-84.42 78.886h-142.372c-15.101 0-27.343 12.242-27.343 27.343s12.242 27.343 27.343 27.343h83.849l-38.829 36.283c-11.034 10.31-11.62 27.612-1.31 38.646 5.384 5.762 12.674 8.675 19.984 8.675 6.687 0 13.391-2.438 18.662-7.365l81.587-76.238h287.817c15.101 0 27.343-12.242 27.343-27.343s-12.241-27.344-27.342-27.344z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
</svg>

Before

Width:  |  Height:  |  Size: 917 B

View File

@ -1,40 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="10"
height="10"
viewBox="0 0 10 10"
id="svg2">
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6" />
<rect
width="10"
height="10"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="M 4,2 3,2 2,3 8,3 7,2 6,2 5,1 z M 2,4 3,9 7,9 8,4 z"
id="waste-basket"
style="fill:#000000;fill-opacity:1;stroke:none" />
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,203 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="437"
height="322.96289"
version="1.1"
id="svg33"
sodipodi:docname="ressort.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata39">
<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>Spring</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs37">
<defs
id="defs11">
<linearGradient
id="svg_21"
x1="0"
y1="0"
x2="1"
y2="0">
<stop
id="stop6"
stop-color="#333333"
stop-opacity="0.996094"
offset="0" />
<stop
id="stop8"
stop-color="#999999"
stop-opacity="0.996094"
offset="1" />
</linearGradient>
</defs>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview35"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.3906433"
inkscape:cx="123.65745"
inkscape:cy="224.79729"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg33" />
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
<title
id="title2">Spring</title>
<g
id="g902"
transform="translate(-97.5,-81.5)">
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_17">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="231.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,356.551)"
id="svg_18" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="231.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,357.465)"
id="svg_19" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="372.96289"
width="301.00003"
height="28.999998"
id="svg_20" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_13">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="164.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,289.551)"
id="svg_14" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="164.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,290.465)"
id="svg_15" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="305.96289"
width="301.00003"
height="28.999998"
id="svg_16" />
</g>
<g
transform="matrix(0.53002014,0,0,1,145.86354,0)"
style="fill:#000000;fill-opacity:1"
id="svg_9">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="306.00085"
y="97.051064"
width="22"
height="251.00128"
transform="rotate(-75.7685,317,222.551)"
id="svg_10" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.9989"
y="97.965126"
width="22"
height="251.00128"
transform="rotate(75.7685,317,223.465)"
id="svg_11" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="170.49997"
y="238.96484"
width="301.00003"
height="28.999998"
id="svg_12" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_8">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="33.08622"
width="22"
height="251.00128"
id="svg_5"
transform="rotate(-75.7685,316,158.586)" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="34.000278"
width="22"
height="251.00128"
transform="rotate(75.7685,316,159.5)"
id="svg_6" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="175"
width="301.00003"
height="28.999998"
id="svg_7" />
</g>
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="100"
y="84"
width="432"
height="55"
id="svg_1"
rx="21"
ry="21" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 653 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 495 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 66 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.2" baseProfile="tiny" id="Layer_1" x="0px" y="0px" width="73.401px" height="102.427px" viewBox="0 0 73.401 102.427" xml:space="preserve" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docname="memorial.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata id="metadata18"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/></cc:License></rdf:RDF></metadata><defs id="defs16"><inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 51.213501 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="73.401001 : 51.213501 : 1" inkscape:persp3d-origin="36.7005 : 34.142334 : 1" id="perspective20"/></defs><sodipodi:namedview inkscape:window-height="713" inkscape:window-width="760" inkscape:pageshadow="2" inkscape:pageopacity="0.0" guidetolerance="10.0" gridtolerance="10.0" objecttolerance="10.0" borderopacity="1.0" bordercolor="#666666" pagecolor="#ffffff" id="base" showgrid="false" inkscape:zoom="4.822947" inkscape:cx="63.465426" inkscape:cy="51.213501" inkscape:window-x="0" inkscape:window-y="0" inkscape:current-layer="Layer_1"/>
<g id="g3">
<g id="g5">
<path d="M14.001,100.758l-12.4-17.274c-0.42-0.587-0.676-1.284-0.736-2l0,0L0.014,71.282c-0.132-1.611,0.718-3.151,2.158-3.89l0,0 l5.25-2.699c0.257-0.133,0.592-0.259,0.873-0.327l0,0l3.519-0.867L9.505,9.521c-0.089-2.073,1.413-3.865,3.474-4.136l0,0 l40.549-5.35c0.691-0.093,1.38-0.004,2.027,0.259l0,0l4.8,1.951c1.565,0.635,2.567,2.199,2.49,3.887l0,0L60.39,59.958l11.52,9.276 c1.032,0.831,1.583,2.111,1.479,3.432l0,0l-0.801,10.125c-0.13,1.636-1.233,3.016-2.801,3.504l0,0l-51.349,15.95 c-0.395,0.123-0.797,0.182-1.194,0.182l0,0C15.981,102.427,14.768,101.826,14.001,100.758L14.001,100.758z" id="path7"/>
</g>
</g>
<polygon fill-rule="evenodd" fill="#FFFFFF" points="56.102,65.151 19.452,74.901 17.251,11.651 58.852,5.952 " id="polygon9"/>
<path fill="#FFFFFF" d="M16.924,89.49l0.327,8.937l51.35-15.951l0.632-7.995l-51.828,14.94 C17.245,89.468,17.084,89.484,16.924,89.49z" id="path11"/>
<polygon fill="#FFFFFF" points="63.854,67.868 19.001,80.201 17.521,85.226 67.502,70.816 " id="polygon13"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1,30 +0,0 @@
<?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="496.16812" height="417.34662" id="svg2" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="treeStump.svg" inkscape:export-filename="/home/katie/Desktop/treeStump.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
<defs id="defs4">
<marker inkscape:stockid="TriangleInL" orient="auto" refY="0" refX="0" id="TriangleInL" style="overflow:visible">
<path id="path4012" d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" transform="scale(-0.8,-0.8)" inkscape:connector-curvature="0"/>
</marker>
<marker inkscape:stockid="TriangleOutL" orient="auto" refY="0" refX="0" id="TriangleOutL" style="overflow:visible">
<path id="path4021" d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" transform="scale(0.8,0.8)" inkscape:connector-curvature="0"/>
</marker>
<marker inkscape:stockid="Arrow1Lstart" orient="auto" refY="0" refX="0" id="Arrow1Lstart" style="overflow:visible">
<path id="path3879" d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" transform="matrix(0.8,0,0,0.8,10,0)" inkscape:connector-curvature="0"/>
</marker>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="127.44145" inkscape:cy="177.82361" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1920" inkscape:window-height="1124" inkscape:window-x="0" inkscape:window-y="24" inkscape:window-maximized="1"/>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-71.558547,-292.83918)">
<path style="fill:#6e3e20;fill-opacity:1;fill-rule:evenodd;stroke:#3c291b;stroke-width:6.34996605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" d="m 100.28125,75.53125 0,180.65625 c -0.97667,1.04855 -1.5,2.13269 -1.5,3.21875 0,1.3546 0.80507,2.67417 2.3125,3.96875 0.0214,0.77073 0.10839,1.54782 0.1875,2.3125 -21.819942,3.42024 -80.465878,-8.33187 -82.21875,4.625 -2.002312,14.80069 82.10051,18.13578 89.0625,31.125 6.96199,12.98922 -42.899432,80.78771 -30.625,88.34375 12.274433,7.55604 49.06962,-79.05624 63.71875,-81 0.0993,-0.0132 0.21019,0.006 0.3125,0 2.57854,1.27487 5.2802,2.49136 8.0625,3.6875 19.38898,14.80793 55.02319,68.58089 63.8125,59.53125 5.73929,-5.90928 -10.25092,-27.06088 -25.03125,-47.0625 24.82736,5.85513 53.45868,9.21875 84,9.21875 23.66157,0 46.21714,-1.99907 66.71875,-5.625 -16.51922,20.93382 -34.57783,43.16141 -29.5625,50.46875 7.71832,11.24559 48.8075,-46.67845 68.90625,-60.21875 2.61949,-0.86466 5.19495,-1.76157 7.6875,-2.6875 0.0195,0.005 0.0432,-0.005 0.0625,0 14.04284,3.78405 40.95168,104.83846 53.65625,97.71875 12.70457,-7.11971 -28.84496,-88.52305 -20.75,-102.3125 8.09496,-13.78945 90.18481,-8.29181 89.75,-25.09375 -0.32184,-12.4365 -41.95931,-9.57783 -67.4375,-12.15625 1.41625,-3.59613 2.19644,-7.27546 2.28125,-11.03125 1.37803,-1.23957 2.09375,-2.5185 2.09375,-3.8125 l -0.28125,-1.375 c -0.24771,-0.62778 -0.64331,-1.23007 -1.21875,-1.84375 l 0,-180.65625 -344,0 z" transform="translate(55.706213,292.83918)" id="path3786" inkscape:connector-curvature="0"/>
<path sodipodi:type="arc" style="fill:#e0bf76;fill-opacity:1;fill-rule:evenodd;stroke:#3c291b;stroke-width:5.82696295;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path3755" sodipodi:cx="325.5" sodipodi:cy="335.36218" sodipodi:rx="173.5" sodipodi:ry="49" d="m 499,335.36218 c 0,27.06196 -77.6786,49 -173.5,49 -95.8214,0 -173.5,-21.93804 -173.5,-49 0,-27.06195 77.6786,-49 173.5,-49 92.08411,0 168.12771,20.31683 173.23313,46.28329" sodipodi:start="0" sodipodi:end="6.2277138" sodipodi:open="true" transform="matrix(1,0,0,1.4621797,3,-122.35079)"/>
<path sodipodi:type="spiral" style="fill:none;stroke:#5c501e;stroke-width:13.71316433;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.50228307;stroke-dasharray:none" id="path3851" sodipodi:cx="-400" sodipodi:cy="266.36218" sodipodi:expansion="1.79" sodipodi:revolution="4.4633689" sodipodi:radius="120.24142" sodipodi:argument="-27.282301" sodipodi:t0="0.40083104" d="m -422.11885,274.02163 c -6.9861,-13.05746 -0.28047,-29.11759 12.43878,-35.61344 16.35604,-8.3532 36.21062,0.0842 44.06362,16.04746 9.82643,19.97471 -0.5202,43.98375 -20.04967,53.29973 -23.90627,11.40383 -52.42143,-1.025 -63.30433,-24.43542 -13.08357,-28.14436 1.59667,-61.50999 29.19608,-74.06195 32.68325,-14.86406 71.23719,2.23347 85.55881,34.32395 16.74376,37.5178 -2.93392,81.59205 -39.81223,97.78244 -42.64331,18.72134 -92.56458,-3.69665 -110.7215,-45.65473 -20.79551,-48.05548 4.52047,-104.14564 51.84585,-124.36563 53.75035,-22.96508 116.32683,5.40432 138.70523,58.38048 16.82449,39.82846 8.85501,86.67754 -18.80178,119.63764" transform="matrix(1.0721376,0,0,-0.53049729,745.96864,506.22566)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.8 KiB

View File

@ -1,215 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="127.85367"
height="64.79351"
version="1.1"
id="svg24"
sodipodi:docname="structure.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata30">
<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>playhouse1</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview26"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.1346831"
inkscape:cx="51.84005"
inkscape:cy="33.888395"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg24" />
<title
id="title2">playhouse1</title>
<g
id="svg_2-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_3-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_4-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_5-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_6-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_7-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_8-1"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_9-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_10-7"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_11-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_12-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_13-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_14-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_15-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_16-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="g1078"
transform="translate(-0.332261,0.04829947)">
<g
id="g22">
<title
id="title4">Layer 1</title>
<path
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 h 3.728216 v 11.554343 h -3.240893 c -1.375163,0 -2.683427,0.629461 -3.59053,1.727559 L 6.869687,56.83257 H 2.713463 c -1.314977,0 -2.381202,1.133071 -2.381202,2.530718 v 2.851198 c 0,1.397418 1.066224,2.530489 2.381202,2.530489 h 10.684769 c 0.685202,0 1.337277,-0.313576 1.789525,-0.860906 L 30.776951,45.017097 V 61.30826 c 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2" />
<g
id="svg_3" />
<g
id="svg_4" />
<g
id="svg_5" />
<g
id="svg_6" />
<g
id="svg_7" />
<g
id="svg_8" />
<g
id="svg_9" />
<g
id="svg_10" />
<g
id="svg_11" />
<g
id="svg_12" />
<g
id="svg_13" />
<g
id="svg_14" />
<g
id="svg_15" />
<g
id="svg_16" />
</g>
<g
id="g22-2"
transform="translate(51.847742,-0.52318372)">
<title
id="title4-6">Layer 1</title>
<path
sodipodi:nodetypes="ccccccsccsssssssssccccsssssssss"
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 -0.88219,15.475147 3.245598,33.298071 3.728428,38.423219 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1-1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2-8" />
<g
id="svg_3-7" />
<g
id="svg_4-9" />
<g
id="svg_5-2" />
<g
id="svg_6-0" />
<g
id="svg_7-2" />
<g
id="svg_8-3" />
<g
id="svg_9-7" />
<g
id="svg_10-5" />
<g
id="svg_11-9" />
<g
id="svg_12-2" />
<g
id="svg_13-2" />
<g
id="svg_14-8" />
<g
id="svg_15-9" />
<g
id="svg_16-7" />
</g>
<rect
y="25.614407"
x="57.701271"
height="19.830507"
width="29.608051"
id="rect1004"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.85938358;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="41.912704"
x="108.02262"
height="22.309322"
width="9.0947161"
id="rect1006"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5.46906614;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="49.073723"
x="116.61813"
height="15.148305"
width="5.7838984"
id="rect1006-3"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.59391475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="55.821606"
x="122.40203"
height="8.400424"
width="5.7838984"
id="rect1006-3-6"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.67630935;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,3 +0,0 @@
<svg enable-background="new 0 0 580 580" height="580" viewBox="0 0 580 580" width="580" xmlns="http://www.w3.org/2000/svg">
<path d="m531.259 284.476h-116.903l-47.578-116.902h79.291v-43.474h-314.279v43.473h78.718l-47.579 116.902h-116.31v43.455h98.688l-54.624 136.3h53.458l55.215-136.3h178.571l55.215 136.3h54.051l-55.216-136.3h99.28v-43.454zm-319.568 0l47.579-116.902h48.762l47.578 116.902z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
</svg>

Before

Width:  |  Height:  |  Size: 555 B

View File

@ -1,85 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="118.625"
height="118.624"
version="1.1"
id="svg13"
sodipodi:docname="tennis.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata19">
<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>SQUASH YELLOW</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs17" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview15"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="3.8206558"
inkscape:cx="23.516536"
inkscape:cy="72.818296"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg13" />
<title
id="title2">SQUASH YELLOW</title>
<g
id="g11"
transform="translate(-2.344,-2.918)">
<title
id="title4">Layer 1</title>
<g
id="svg_1">
<path
id="svg_3"
d="M 15.242,2.918 C 8.133001,2.918 2.344,8.707 2.344,15.816 v 92.828 c 0,7.117 5.789001,12.898 12.898,12.898 h 92.805 c 7.133,0 12.922,-5.781 12.922,-12.898 V 15.816 c 0,-7.109 -5.789,-12.898 -12.922,-12.898 z"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:0" />
<path
id="svg_4"
d="m 18.375,68.449005 c -2.031006,0 -3.688004,1.655991 -3.688004,3.687996 0,2.023003 1.656006,3.655998 3.688004,3.655998 2.022995,0 3.664001,-1.632996 3.664001,-3.655998 0,-2.032005 -1.641006,-3.687996 -3.664001,-3.687996 z"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
id="svg_5"
d="m 72.476997,35.762001 c 4.398003,0 7.984001,-3.57 7.984001,-7.984001 0,-4.422001 -3.585999,-8.007999 -7.984001,-8.007999 -4.413994,0 -8,3.585999 -8,8.007999 0,4.413002 3.584999,7.984001 8,7.984001 z"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
id="svg_6"
d="M 109.828,105.973 96.844002,90.644997 c 0,0 -4.055,-23.68 -4.055,-23.734001 0,-0.02299 -0.609001,-2.679993 -0.609001,-2.679993 0.023,0.02299 -1.640999,-7.477001 -2.905998,-13.336002 2.022995,1.172001 3.859001,2.227001 3.952995,2.272999 0.102005,0.219002 6.883002,13.132996 6.883002,13.132996 0.516,0.953003 1.367,1.664001 2.398,1.977005 1.047,0.32 2.148,0.219002 3.102,-0.289001 0.945,-0.491997 1.656,-1.343994 1.977,-2.390999 0.336,-1.030998 0.242,-2.125 -0.273,-3.077995 L 99.869003,48.332002 c 0,0 -0.289001,-0.507999 -0.68,-0.898003 C 98.650002,46.895001 97.477997,46.231 97.477997,46.231 L 83.025002,38.003999 c -1.835999,-0.921997 -3.859001,-1.241997 -5.883003,-0.805 -0.827995,0.172005 -1.609001,0.492004 -2.491997,0.977005 -0.102005,0.023 -3.289001,1.444996 -5.148003,5.788998 l -7.421997,14.938 c 0,0 -11.296997,2.203003 -11.688004,2.272995 -0.101997,0.02301 -0.195,0.047 -0.272995,0.09401 L 39.563995,53.801 c -2.375,-1.655998 -2.663994,-6.640999 -2.687996,-6.835999 -0.297005,-3.414001 -2.25,-6.640999 -5.374992,-8.858997 -2.828003,-2 -6.25,-2.859001 -9.375,-2.344002 -2.438004,0.414001 -4.516006,1.68 -5.836014,3.538998 -1.022995,1.438 -1.561996,3.172001 -1.561996,5.031002 0,0.023 0.14801,1.609001 0.14801,1.609001 0.538986,3.147999 2.468994,6.077999 5.296997,8.101997 2.858994,2.031002 6.25,2.882999 9.375,2.344002 l 0.733994,-0.141003 c 0.07001,-0.055 4.758003,-1.491997 7.055008,0.07 0,0.023 7.897995,5.594002 10,7.077995 -0.219009,0.344002 -0.609009,1.102005 -0.586006,1.883003 0,0.241997 0.023,0.484001 0.07,0.734001 0.414001,2.195 2.561996,3.655998 4.766006,3.218994 l 14.007996,-2.733994 c 0,0 1.203003,-0.367004 1.710999,-0.734001 0.664001,-0.461006 1.148003,-1.437996 1.148003,-1.437996 L 72.142,56.902 c 0,0 2.530998,11.984001 2.578003,12.210999 -0.289001,0.289001 -11.492004,12.18 -11.492004,12.18 l -0.194992,0.242004 c -1.094009,1 -1.703003,2.32 -1.703003,3.710999 V 110.441 c 0,2.688 2.195,4.859 4.882996,4.859 2.656006,0 4.852005,-2.172 4.852005,-4.859 0,0 0,-20.703001 0,-21.047003 1.030998,-1.07 9.616997,-10.125 11.913994,-12.522995 0.242004,1.421997 2.461006,14.187996 2.461006,14.187996 0.195,1.125 0.734001,2.148003 1.538994,2.977005 0,0.023 15.430001,18.241997 15.430001,18.241997 0.859,0.977 2.03101,1.586 3.32,1.703 1.297,0.102 2.539,-0.312 3.539,-1.148 1.125,-0.945 1.711,-2.344 1.711,-3.711 -0.002,-1.118 -0.37,-2.22 -1.15099,-3.149 z M 32.820007,51.043 c -0.852005,1.195 -2.172012,1.977001 -3.805008,2.273003 C 26.718002,53.707002 24.156005,53.043 22.007003,51.480001 19.834991,49.941003 18.365997,47.746 17.975997,45.449003 L 17.882003,44.308 c 0,-1.202999 0.311996,-2.272999 0.97699,-3.202999 2.117004,-2.977001 6.977005,-3.172001 10.836014,-0.438 3.835999,2.735001 5.249992,7.399002 3.125,10.375999 z"
inkscape:connector-curvature="0"
style="fill:#000000" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -1,7 +0,0 @@
<svg enable-background="new 0 0 580 580" height="580" viewBox="0 0 580 580" width="580" xmlns="http://www.w3.org/2000/svg">
<path d="m140.513 136.156c10.35 0 19.129-3.601 26.338-10.804 7.209-7.202 10.813-15.758 10.813-25.668 0-10.363-3.604-19.146-10.813-26.349-7.209-7.202-15.989-10.803-26.338-10.804-9.91.001-18.469 3.602-25.678 10.804-7.209 7.203-10.814 15.985-10.814 26.349 0 9.91 3.604 18.466 10.814 25.668 7.208 7.203 15.768 10.804 25.678 10.804z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
<path d="m456.528 135.496c9.909 0 18.469-3.604 25.678-10.813 7.209-7.209 10.813-15.768 10.814-25.679-.001-10.349-3.605-19.015-10.814-25.998-7.209-6.982-15.769-10.473-25.678-10.474-9.911.001-18.467 3.492-25.669 10.474-7.202 6.983-10.804 15.649-10.803 25.998-.001 9.911 3.601 18.47 10.803 25.679 7.203 7.209 15.758 10.814 25.669 10.813z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
<path d="m538.625 157.443c-8.783-9.683-20.157-14.524-34.121-14.524h-96.611c-13.058 0-24.205 4.619-33.441 13.854-9.236 9.237-13.854 20.61-13.854 34.121v112.136c0 10.817 4.955 16.226 14.865 16.226 9.456 0 14.184-5.408 14.185-16.226v-109.435h17.565v297.256c0 13.511 6.755 20.267 20.267 20.267 13.511 0 20.267-6.756 20.267-20.267v-172.275h17.565v172.275c0 13.511 6.755 20.267 20.267 20.267 13.965 0 20.946-6.756 20.947-20.267v-297.256h16.886v109.435c-.001 11.257 4.728 16.886 14.185 16.886 9.469 0 14.204-5.629 14.205-16.886v-111.476c-.003-13.057-4.395-24.427-13.177-34.111z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
<path d="m222.919 176.71c-2.254-7.216-7.429-14.198-15.524-20.947-9.91-8.109-20.72-12.164-32.431-12.164h-72.283c-11.271 0-21.408 4.055-30.41 12.164-6.763 6.295-11.264 13.278-13.504 20.947l-31.09 103.353c-.894 2.254-1.34 4.282-1.34 6.082 0 10.364 5.175 15.545 15.525 15.545 7.216 0 11.951-4.055 14.205-12.164l28.369-94.591h15.524l-46.616 168.214h45.275v131.063c0 11.711 5.628 17.566 16.885 17.566s16.885-5.855 16.885-17.566v-131.722h16.906v132.402c0 11.257 5.628 16.886 16.885 16.886 11.256 0 16.885-5.629 16.885-16.886v-131.743h45.254l-47.275-168.214h16.205l28.369 94.591c2.254 8.109 6.982 12.164 14.185 12.164 10.363 0 15.545-5.182 15.545-15.545 0-2.254-.447-4.281-1.34-6.082z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
<path d="m282.646 61.172h35.812v451.286h-35.812z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="65" height="65" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g id="svg_1" stroke="null">
<path id="svg_2" d="m62.75653,34.58033l-8.05376,-2.01399c-0.81086,-0.19895 -1.66603,-0.00337 -2.27777,0.52673l-3.12657,2.70092l-1.71601,-1.73935l1.06051,-1.62063c0.70161,-1.07148 0.34201,-2.47333 -0.80283,-3.13006c-1.14235,-0.65815 -2.64222,-0.32117 -3.34396,0.75147l-0.34201,0.52336l-1.04251,-1.05696c-0.82554,-0.83935 -1.99281,-1.14056 -3.12076,-1.01056l-1.08211,-1.33381c1.15924,-1.60404 1.04639,-3.79482 -0.41775,-5.28208c-1.25769,-1.27393 -3.15163,-1.66185 -4.80257,-1.14276l-10.94632,-13.47518l-1.13418,-4.49289c-0.32415,-1.28378 -1.54847,-2.19078 -2.95806,-2.19078c-1.40959,0 -2.63391,0.907 -2.95806,2.19091l-14.73698,58.38389c-0.38701,1.52951 0.62462,3.06227 2.25866,3.42349c1.63044,0.35928 3.27168,-0.5857 3.65759,-2.11405l11.77878,-46.66374l11.77892,46.66387c0.33038,1.30931 1.5781,2.19195 2.9557,2.19195c0.23179,0 0.46663,-0.02553 0.70175,-0.07789c1.63418,-0.36122 2.64582,-1.89397 2.25866,-3.42349l-12.22534,-48.43459l7.56096,9.30799c-1.47259,1.62063 -1.47384,4.04159 0.10676,5.64447c1.3776,1.39615 3.51165,1.71848 5.25965,0.9604l0.73609,0.907c-0.748,0.76262 -1.03767,1.74635 -0.90335,2.71777c-0.00485,0.15462 1.49613,8.23989 1.49613,8.23989c0.20895,1.08042 1.21477,1.87077 2.39298,1.87077c0.83578,0 1.6267,-0.4036 2.07326,-1.08703l0.77901,-1.18942l2.12338,2.09863c0.46192,0.39686 1.03656,0.62692 1.62933,0.62692c0.58904,0 1.18015,-0.19999 1.64803,-0.60372l5.71797,-4.93849l6.76048,1.69075c1.30754,0.32441 2.63142,-0.3979 2.97827,-1.61169c0.34658,-1.21495 -0.42523,-2.46335 -1.72197,-2.78802z" fill="black" stroke="null"/>
<path id="svg_3" d="m54.33583,39.12234l-4.89742,4.2294c-0.98671,0.85257 -1.04833,2.292 -0.13764,3.21676c0.47965,0.48551 1.13293,0.73242 1.78829,0.73242c0.58904,0 1.18043,-0.20012 1.64844,-0.60346l4.89714,-4.2294c0.98699,-0.85257 1.04861,-2.29187 0.13791,-3.21689c-0.91083,-0.92152 -2.44753,-0.9814 -3.43674,-0.12883l0.00002,0z" stroke="null"/>
</g>
<g id="svg_4"/>
<g id="svg_5"/>
<g id="svg_6"/>
<g id="svg_7"/>
<g id="svg_8"/>
<g id="svg_9"/>
<g id="svg_10"/>
<g id="svg_11"/>
<g id="svg_12"/>
<g id="svg_13"/>
<g id="svg_14"/>
<g id="svg_15"/>
<g id="svg_16"/>
<g id="svg_17"/>
<g id="svg_18"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,84 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="375" height="207.815" xmlns="http://www.w3.org/2000/svg">
<title>bench g.aoi</title>
<g>
<title>Layer 1</title>
<g id="g5">
<line id="line7" y2="174.907" x2="138.5" y1="174.907" x1="138.5" fill="#542901"/>
<line id="line9" y2="130.907" x2="95.5" y1="130.907" x1="95.5" fill="#542901"/>
<line id="line11" y2="130.907" x2="95.5" y1="130.907" x1="95.5" fill="#542901"/>
<line id="line13" y2="130.907" x2="95.5" y1="130.907" x1="95.5" fill="#542901"/>
<line id="line15" y2="130.907" x2="95.5" y1="130.907" x1="95.5" fill="#542901"/>
<path fill="#542901" id="path17" d="m127.5,168.906998c-6.442001,-6.442001 -11.455002,-13.772995 -16.889,-21.018997c-1.375999,-1.834 -2.934998,-3.626999 -3.962997,-5.686005c-0.853004,-1.705002 -2.595001,-3.791 -3.898003,-5.54599c-1.303001,-1.755005 -1.644997,-2.785004 -2.75,-3.75c-0.794998,-0.694 -1.57,-1.02301 -3,-1.5c3.313004,0.662994 6.626999,1.324997 9.940002,1.987c1.967995,0.394989 4.569,1.884995 5.476997,3.013c3.679001,4.567001 6.857002,9.261993 9.917,14.360992c1.540001,2.567001 3.916,4.638 5.583,7.139008c1.612999,2.418991 3.571007,5.570999 5.607002,7.606995c3.75,3.75 6.257996,9.552002 11.475998,11.393005c-6.520996,-1.715012 -12.845001,-2.764008 -17.5,-7.999008"/>
<line id="line19" y2="133.407" x2="106" y1="133.407" x1="106" fill="#542901"/>
<line id="line21" y2="133.407" x2="106" y1="133.407" x1="106" fill="#542901"/>
<line id="line23" y2="133.407" x2="106" y1="133.407" x1="106" fill="#542901"/>
<path fill="#542901" id="path25" d="m60.5,193.906998c1.127998,-10.201996 2.023998,-21.119995 4.068001,-31.339996c0.528999,-2.645996 0.792,-5.319 1.235001,-7.979004c0.456001,-2.733994 1.473999,-5.291 2.144997,-7.972992c0.279999,-1.121002 0.323006,-2.294998 0.604004,-3.416c0.395996,-1.585007 0.088997,-1.876999 1.625,-1.512009c3.108002,0.740005 6.214996,1.480011 9.322998,2.220001c-1.239998,4.960999 -1.210999,9.770996 -2.055,14.834c-0.842003,5.056 -2.684998,10.246002 -3.796997,15.25c-1.163002,5.233002 0.335999,10.516998 -0.534004,15.735001c-0.511002,3.06601 1.090004,7.727005 0.386002,12.181c-4.449997,-1.270996 -13.527,-1.662994 -13,-8"/>
<line id="line27" y2="144.407" x2="79" y1="144.407" x1="79" fill="#542901"/>
<line id="line29" y2="144.407" x2="79" y1="144.407" x1="79" fill="#542901"/>
<line id="line31" y2="146.907" x2="77" y1="146.907" x1="77" fill="#542901"/>
<path fill="#542901" id="path33" d="m60.5,146.406998c-2.115002,-1.917999 -1.716999,-6.561005 0.155998,-8.655991c1.979,-2.214005 4.022003,-4.269012 6.344002,-6.344009c2.43,-2.173004 5.669998,-3.584999 8.5,-5c3.396004,-1.697998 6.771004,-3.090996 10.404999,-4.301994c3.328003,-1.109001 7.438004,-1.054001 10.927002,-1.490005c3.847,-0.479996 7.011002,0.412003 10.775002,0.950005c1.152,0.165001 3.284996,1.135994 4.392998,0.841995c1.054001,-0.278999 1.609001,-1.609001 2.25,-2.25c1.616997,-1.616997 2.580002,-6.980995 3.25,-9.25c1.719002,-5.817001 1.783997,-11.922997 2.962997,-17.814995c1.206001,-6.028 1.823006,-12.187004 2.695,-18.292c0.910004,-6.373001 3.054001,-12.529003 5.092003,-18.643002c0.460999,-1.384003 1.436005,-2.778 2.25,-4c0.242996,-0.365002 2.608994,-1.787003 3.057999,-1.744003c3.481003,0.331001 6.981003,0.907001 10.462006,1.239002c-2.425003,1.787998 -4.787003,4.558998 -5.770004,7.505001c-0.623001,1.866997 -1.380997,3.035 -1.723007,5.083996c-0.314987,1.891006 0.324005,3.624001 0.048004,5.559006c-1.013992,7.096001 -3.65799,14.287994 -3.65799,21.513c0,1.634995 -1.96701,3.341995 -2.287003,4.945999c-0.315002,1.574997 -0.306,3.352997 -0.682007,4.855995c-0.429001,1.713005 -0.317001,3.398003 -0.869995,5.057999c-0.520996,1.565002 -0.884003,3.265007 -1.208,4.883003c-0.791,3.956001 -2.032005,15.088997 -8.036003,13.295998c-10.734001,-3.204994 -23.223999,-1.459999 -32.912003,4.353996c-5.506996,3.304001 -24.715996,14.340012 -14.421997,21.202011c-3.910004,-0.931 -8.786999,-1.359009 -12,-3.501007"/>
<line id="line35" y2="216.907" x2="310" y1="216.907" x1="310" fill="#542901"/>
<line id="line37" y2="216.907" x2="310" y1="216.907" x1="310" fill="#542901"/>
<line id="line39" y2="216.907" x2="309.5" y1="216.907" x1="309.5" fill="#542901"/>
<line id="line41" y2="216.907" x2="309.5" y1="216.907" x1="309.5" fill="#542901"/>
<line id="line43" y2="183.407" x2="247" y1="183.407" x1="247" fill="#542901"/>
<line id="line45" y2="183.407" x2="247" y1="183.407" x1="247" fill="#542901"/>
<path fill="#542901" id="path47" d="m322.5,220.406998c-4.032013,-1.046005 -8.063995,-2.091003 -12.096008,-3.136002c-2.596985,-0.673996 -5.270996,-1.231995 -7.247986,-3.207993c-4.501007,-4.501007 -8.535004,-10.195007 -11.725006,-15.776001c-3.527008,-6.173004 -7.109009,-12.235001 -10.28299,-18.584c-0.710022,-1.419006 -1.463013,-2.96701 -2.14801,-4.296005c-0.502014,-0.974991 -2,-2.240997 -2,-3.25c0,-0.514999 -1.5,-0.985001 -1.5,-1.5c0,-0.83699 -2.468994,-0.574997 -3,-1.25c3.894989,0.835007 7.789001,1.669006 11.68399,2.503998c2.046021,0.438004 4.990021,1.077011 6.31601,2.496002c0.067993,0.072998 1.417999,0.641998 1.417999,0.75c0,0.649002 0.321991,-0.071991 0.5,0.25c0.287994,0.525009 0.375,1.375 0.75,1.75c1.03299,1.033997 1.710999,2.63501 2.171997,4.016006c1.001007,3.00499 2.93399,6.707993 4.828003,9.233994c1.003998,1.339005 1.537994,2.841003 2.197998,4.380005c0.608002,1.421997 1.794006,2.669998 2.569,4.026993c1.78299,3.119003 2.299011,6.150009 4.147003,9.231003c3.121002,5.201996 7.264008,10.824005 13.417999,12.362"/>
<line id="line49" y2="174.907" x2="278" y1="174.907" x1="278" fill="#542901"/>
<path fill="#542901" id="path51" d="m253.417999,240.406998c1.932007,-11.593994 1.343994,-23.309998 3.649994,-34.839996c1.113007,-5.569 3.352997,-11.171005 5.149994,-16.565002c0.154022,-0.462006 -0.60498,-3.065994 -0.761993,-3.104996c-1.330994,-0.333008 -2.661987,-0.666 -3.993988,-0.998001c-3.320999,-0.830002 -6.643005,-1.660995 -9.963013,-2.490997c-0.003998,3.052002 -1.597992,6.082993 -2.099991,9.095001c-0.600006,3.603989 -1.619995,7.00499 -2.332001,10.564987c-1.479996,7.399002 -1.824005,14.991013 -3.464996,22.372009c-1.324005,5.960999 -2.104004,13.126999 -2.104004,19.201996c0,1.794998 0.063995,2.893997 0.869995,4.507004c0.438004,0.876999 2.484009,1.145996 3.317001,1.384003c3.938004,1.125 8.020996,2.014999 11.959,3.139999c-3.899994,-2.234009 -0.682999,-9.529999 -0.225998,-12.266006z"/>
<path fill="#542901" id="path53" d="m254.417999,183.906998c0.865997,-2.598999 1.994995,-5.912994 3.925995,-7.843994c2.174011,-2.173004 4.536011,-4.190002 7.007996,-6.044998c6.089996,-4.567001 12.298004,-5.950012 19.60202,-8.03801c1.458984,-0.416 3.048981,-1.447998 4.552002,-1.636993c2.612,-0.326004 3.927002,-0.311996 6.447998,0.406998c1.585999,0.453003 8.464996,2.328995 8.464996,-0.593994c0,-0.835007 -0.276001,-2.330002 0.082001,-3.25c0.700989,-1.800003 1.48999,-3.45401 1.869995,-5.353012c0.695984,-3.479996 2.634003,-6.992996 3.494995,-10.438995c1.309998,-5.237 1.963013,-10.675995 2.855011,-16.027c0.944977,-5.673996 0.548981,-11.335999 1.261993,-17.042999c0.695007,-5.561996 3.052002,-11.487999 4.828003,-16.818001c1.561981,-4.685997 1.664001,-11.072998 6.362,-13.421997c-4.209991,-0.600998 -8.593018,-1.600998 -12.803009,-2.202003c-3.570007,-0.509995 -4.54599,3.007004 -5.869995,5.554001c-1.47699,2.843002 -2.299988,6.800003 -3.156006,9.797005c-1.037994,3.633995 -1.561005,7.321999 -2.470001,10.958c-1.819,7.278 -2.610992,14.917999 -3.846985,22.328995c-0.285004,1.712006 -0.684998,4.592995 -0.770996,5.642006c-0.087006,1.050003 -0.396027,2.185989 -0.756012,4.209c-0.359009,2.024002 -1.214996,7.100998 -1.803009,10.634995c-0.291992,1.749008 -0.656006,3.395004 -1.14798,5.166c-0.490997,1.770996 -0.908997,3.235001 -1.679016,4.772995c-1.061981,2.126007 -1.602997,4.241013 -4.130005,4.241013c-1.643005,0 -3.136993,-0.925003 -4.776978,-1.130005c-2.146027,-0.268005 -4.147003,-0.369995 -6.312012,-0.369995c-3.608002,0 -7.437988,0.908997 -10.709015,2.310989c-6.270996,2.688004 -12.704987,5.452011 -17.597992,10.346008c-4.356995,4.356995 -9.343994,8.944 -9.343994,15.578003c0,2.972 2.251007,4.21199 4.815994,4.761993c3.895004,0.835007 7.789001,1.669006 11.684006,2.503998c-3.856995,-1.343002 -1.020996,-6.18399 -0.082001,-9z"/>
</g>
<g id="g55">
<line id="line57" y2="122.407" x2="110.5" y1="122.407" x1="110.5" fill="#7f3e01"/>
<path fill="#7f3e01" id="path59" d="m147,166.406998c-1.477997,-0.960999 -4.313995,-3.203995 -6.75,-6c-2.436005,-2.796005 -4.632996,-5.959991 -6.75,-8.5c-2.438004,-2.927002 -4.526993,-6.037994 -6.739998,-9.136002c-0.943001,-1.319992 -1.702003,-2.776993 -2.604004,-4.12999c-0.734001,-1.101013 -1.687996,-2.87001 -2.655998,-3.734009c0.450996,0.056 2.643997,-0.610001 3.120003,-0.877991c0.801994,-0.450012 3.097,-2.639999 3.575996,-3.10701c0.802002,-0.780991 1.531006,-1.697998 1.882004,-2.748993c0.567993,-1.704002 1.278,-3.335007 1.843994,-5.031006c1.122009,-3.365997 2.520004,-6.383995 3.104996,-9.900002c0.616013,-3.695 1.161011,-7.43 1.973007,-11.084c1.634003,-7.351997 1.595993,-15.133995 3.417007,-22.417999c0.862,-3.448997 1.089996,-6.923996 2.082993,-10.332001c0.274994,-0.944 0.932007,-3.500999 1.25,-4.25c0.466003,-1.097 0.210999,-2.126999 1,-3.499996c1.391998,-2.422001 2.889999,-5.737 1.25,-8.25c-2.705002,-4.145 -4.735992,0.104 -6.5,2.75c-2.007996,3.011997 -2.483994,6.701 -3.606003,10.068996c-1.151001,3.455002 -1.798996,7.518005 -2.315002,11.134003c-0.492996,3.450996 -1.144989,6.878998 -1.827988,10.296997c-0.699005,3.493004 -0.69101,7.014999 -1.574005,10.546005c-0.815002,3.262001 -0.794006,6.678001 -1.624008,9.995995c-0.82299,3.295006 -1.226997,6.733002 -2.301994,9.958c-0.765999,2.297005 -1.917,5.884003 -4.25,6.25c-1.556999,0.245003 -2.959,-0.319 -4.404999,-0.801994c-1.647003,-0.549004 -3.513,-0.5 -5.232002,-0.715004c-6.816002,-0.852997 -15.612999,0.391998 -21.811996,3.491005c-5.974998,2.987 -11.813004,5.787994 -16.551003,10.524994c-1.895996,1.895996 -4.5,4.833008 -4.5,7.734009c0,2.375992 1.516998,5.92099 4.5,5.265991c1.082001,-0.237 2.354004,-1.707993 2.870003,-2.740997c0.638,-1.272995 1.535995,-2.164001 2.629997,-3.259003c-0.857002,3.431 -1.698997,6.796005 -2.552002,10.208008c-0.897995,3.591995 -1.000999,7.278 -1.799995,10.875992c-1.625,7.313004 -3.260002,17.835007 -3.776001,25.279999c-0.217003,3.126999 -0.439003,3.740005 -0.372002,6.87001c0.076004,3.508987 2.598999,6.666992 5.655998,3.608994c1.021004,-1.020996 2.344002,-1.983002 2.344002,-3.578003c0,-1.938004 0.152,-3.681 0.473,-5.599991c0.570999,-3.431 0.653999,-6.927002 1.225998,-10.355011c1.254005,-7.524002 2.018005,-15.108002 3.274002,-22.644989c0.529999,-3.181 1.656998,-6.624008 2.527,-9.666c0.437004,-1.524002 0.655998,-2.812012 1.370003,-4.241013c0.292,-0.584 0.349998,-1.172989 0.629997,-1.758987c0.307999,-0.644012 0.794998,-1.091003 1.129997,-1.759003c2.521004,-5.044998 8.594002,-7.740997 14.120003,-7.740997c2.668999,0 4.874001,0.100998 6.75,2c0.462997,0.470001 1.256004,1.597 2,2.5c0.830002,1.006989 2.030998,2.561996 2.604004,3.707993c1.280998,2.561996 3.192993,4.787003 4.692993,7.287003c1.645004,2.742004 3.810005,4.949005 5.703003,7.505005c3.521996,4.758987 6.814995,9.814987 11.000008,14c2.481995,2.481995 8.860992,8.763 12.5,6.5c2.065994,-1.285004 2.5,-4.063004 2.5,-6.25c0,-1.063004 -0.625,-2.573013 -1.5,-3.25c-0.766006,-0.59201 -1.52301,-0.03801 -3.001007,-0.999008z"/>
<path fill="#7f3e01" id="path61" d="m290.5,174.406998c0.247986,0.41301 2.725006,5.181 3.5,7c1.437012,3.372009 4.75,9.184006 5.437988,10.354004c0.688019,1.169998 1.039001,2.360992 1.875,3.615005c1.223022,1.834991 2.341003,3.674988 3.436005,5.588989c1.792999,3.139008 3.804993,6.197006 5.669006,9.304001c1.981995,3.305008 9.233002,12.048004 13.083008,9.639008c2.641998,-1.653 3.190002,-5.136002 3,-8c-0.229004,-3.439011 -3.128021,-2.628006 -5.156006,-4.656006c-9.325989,-9.326996 -15.088013,-22.332001 -20.843994,-33.843994c1.016998,0.227997 2.337006,-0.919006 3.23999,-1.37001c1.278992,-0.639999 1.998016,-1.535995 3.007996,-2.54599c0.326019,-0.326004 1.179016,-2.197998 1.404022,-2.661011c0.395996,-0.810989 0.968994,-1.720993 1.257996,-2.587997c0.589996,-1.770996 0.724976,-2.86499 1.43399,-4.600998c0.635986,-1.556 0.815002,-3.224991 1.156006,-4.733994c0.450989,-2.001007 1.061981,-3.874008 1.399994,-5.904999c0.588989,-3.529007 1.497986,-7.040009 2.100006,-10.595001c2.479004,-14.647003 4.34198,-29.370003 7.947998,-43.792007c0.713989,-2.858994 2.065002,-5.248001 2.973999,-7.973999c0.820007,-2.459999 2.438995,-7.054001 -0.662018,-8.603996c-1.564972,-0.783005 -2.222992,0.015999 -3.259979,1.369995c-1.131012,1.476006 -1.994019,2.983002 -2.578003,4.734001c-1.182007,3.546005 -2.588013,6.931 -3.505005,10.598c-3.502991,14.012001 -4.34201,28.792999 -7.166992,42.918007c-0.709015,3.543991 -1.627014,7.011993 -2.222992,10.584c-0.586029,3.520996 -1.768005,6.381989 -3.027008,9.666c-0.399994,1.043991 -0.766998,2.093994 -1.5,3c-1.046997,1.293991 -1.451019,0.848999 -3,0.5c-1.824005,-0.410004 -3.588013,-0.667999 -5.393005,-1.184006c-1.803009,-0.514999 -3.415009,0.184006 -5.257996,0.184006c-7.541016,0 -14.375,3.61499 -20.710999,7.416992c-2.703003,1.621002 -5.238007,4.117004 -7.639008,6.083008c-2.402008,1.968002 -4.48999,4.481003 -5.871002,7.240997c-0.905991,1.811996 -2.628998,3.707001 -2.628998,5.992996c0,2.057007 0.061005,5.039001 2,5.766006c1.888,0.707001 3.585999,-0.673004 4.371002,-2.240997c0.859009,-1.719009 2.049011,-3.138 3.128998,-4.759003c-0.72699,3.631989 -1.631989,7.395996 -2.802002,10.904999c-1.17099,3.513 -1.384003,7.524994 -2.110992,11.158997c-1.450012,7.253006 -2.300003,14.641998 -3.216003,21.973007c-0.462006,3.687988 -0.859009,7.391998 -1.471008,11.057999c-0.490997,2.950989 -1.673996,6.858994 -0.270996,9.664001c2.033005,4.064987 4.919006,1.36499 6.371002,-1.759003c0.687988,-1.481003 0.553009,-3.210999 0.947998,-4.792007c0.437012,-1.746002 0.588989,-3.582001 0.768005,-5.367996c1.477997,-14.768997 3.510986,-29.742996 7.108002,-44.136002c1.492004,-5.966995 2.527008,-11.511993 6.675995,-16.203995c1.311005,-1.483002 2.652008,-3.128006 5.26001,-4c2.605988,-0.872009 3.731995,-1.257004 4.505981,-1.422012c0.774017,-0.164993 1.291016,-0.203995 1.994019,-0.207993c0.701996,-0.003006 1.108978,0.035004 1.98999,0.130005c0.881012,0.095001 3.002014,1.085999 3.25,1.498993z"/>
</g>
<g id="g63">
<line id="line65" y2="45.907001" x2="86" y1="45.907001" x1="86" fill="#4f2703"/>
<line id="line67" y2="45.907001" x2="86" y1="45.907001" x1="86" fill="#4f2703"/>
<line id="line69" y2="45.907001" x2="86" y1="45.907001" x1="86" fill="#4f2703"/>
<line id="line71" y2="45.907001" x2="86" y1="45.907001" x1="86" fill="#4f2703"/>
<line id="line73" y2="45.907001" x2="86" y1="45.907001" x1="86" fill="#4f2703"/>
<polygon fill="#4f2703" id="polygon75" points="84.5,44.907 387,88.407 387.5,88.907 387.5,89.407 387,90.407 386,92.407 385.5,93.907 384.803,95.65 384.303,97.65 383.815,99.188 383.5,99.907 383.295,100.559 383.267,100.97 383.13,101.463 382.938,102.012 382.5,102.407 81,55.407 80.392,54.979 80,54.407 79.834,53.694 79.742,53.131 79.75,52.288 79.868,51.595 80.307,50.451 80.5,49.907 81,48.907 81.294,48.326 81.794,47.326 82.132,46.634 82.621,45.803 83.263,45.248 84,44.907 84.5,44.907 "/>
<polygon fill="#4f2703" id="polygon77" points="71.249,96.779 71.083,97.175 70.937,97.674 70.792,98.236 70.688,98.694 70.625,99.214 70.5,99.907 70.5,100.407 70.5,101.407 70.5,102.407 70.667,103.105 71,103.907 71.5,104.407 371,163.907 371.53,163.795 371.753,162.947 372,161.407 372.342,159.94 372.729,158.457 373,156.791 373.257,155.389 373.5,154.407 373.684,153.397 373.866,152.382 374,151.407 374.09,150.086 374,149.407 74.5,92.907 74,92.907 73.33,93.159 72.498,93.741 72,94.407 71.707,95.219 71.5,95.907 71.354,96.363 71.249,96.779 "/>
<line id="line79" y2="87.406998" x2="75.5" y1="87.406998" x1="75.5" fill="#4f2703"/>
<line id="line81" y2="87.906998" x2="75.5" y1="87.906998" x1="75.5" fill="#4f2703"/>
<line id="line83" y2="87.906998" x2="75.5" y1="87.906998" x1="75.5" fill="#4f2703"/>
<polygon fill="#4f2703" id="polygon85" points="77,76.407 76.443,76.557 75.797,76.896 75,77.407 74.555,77.853 74.278,78.593 73.987,79.579 73.809,80.37 73.68,81.243 73.5,81.907 73.5,82.907 73.5,83.907 73.5,84.407 73.5,85.407 73.5,86.407 73.697,86.963 74,87.407 74.827,88.094 75.5,88.407 375,143.407 375.5,143.407 375.672,142.819 375.727,142.113 375.821,141.025 376,139.907 376.412,137.445 376.741,135.389 377,133.407 377.5,130.907 377.619,129.302 377.5,128.407 77,76.407 "/>
<polygon fill="#4f2703" id="polygon87" points="80,60.407 381.5,107.907 381,109.907 380.5,112.907 380,115.407 379.5,117.907 379,120.407 378.5,122.907 78,71.907 77.264,71.684 76.487,71.066 76.125,70.532 76,69.907 76,68.907 76,67.907 76,66.907 76,66.407 76.188,65.268 76.347,64.391 76.5,63.907 76.746,62.876 77,61.907 77.444,61.242 77.882,60.764 78.5,60.407 79.277,60.325 80,60.407 "/>
<line id="line89" y2="170.407" x2="366.5" y1="170.407" x1="366.5" fill="#4f2703"/>
<polygon fill="#4f2703" id="polygon91" points="67.123,109.709 66.869,109.841 66.5,109.741 66.226,109.588 65.349,109.643 64.777,109.797 64.377,110.006 63.73,110.523 63.014,111.24 62.855,112.093 63.19,112.496 63.682,112.67 64.107,112.758 64.446,112.903 64.967,113.002 65.394,113.102 65.724,113.223 66.5,113.407 366,175.407 366.23,175.334 366.746,175.099 367,174.907 367.311,174.629 367.5,174.407 367.817,174.135 368,173.907 368.251,173.441 368.5,172.907 368.768,172.443 369,171.907 369.367,171.15 369.5,170.407 369.438,169.939 368.994,169.297 368.5,168.907 69.5,108.407 69,108.407 68.291,108.684 67.784,109.125 67.5,109.407 67.123,109.709 "/>
<line id="line93" y2="173.907" x2="352" y1="173.907" x1="352" fill="#4f2703"/>
<line id="line95" y2="173.907" x2="352" y1="173.907" x1="352" fill="#4f2703"/>
<polygon fill="#4f2703" id="polygon97" points="50.5,111.407 352,174.407 353.151,174.441 354.807,174.394 356.276,174.3 357.688,174.14 358.803,174.041 359.895,173.83 360,172.907 360,171.407 359.725,170.414 359.5,169.907 359,169.407 58,107.907 57.472,107.833 56.928,107.764 55.893,107.68 55.379,107.651 54.893,107.68 53.928,107.764 53.472,107.833 53,107.907 52,108.407 51.5,108.907 51,109.407 50.5,110.407 50.5,111.407 "/>
<line id="line99" y2="172.715" x2="343.40799" y1="172.715" x1="343.40799" fill="#4f2703"/>
<line id="line101" y2="172.407" x2="344" y1="172.407" x1="344" fill="#4f2703"/>
<line id="line103" y2="171.907" x2="345" y1="171.907" x1="345" fill="#4f2703"/>
<line id="line105" y2="171.69901" x2="345.26001" y1="171.69901" x1="345.26001" fill="#4f2703"/>
<polygon fill="#4f2703" id="polygon107" points="37.5,113.907 340.5,178.407 341,178.407 342.059,178.013 342.691,177.625 343.332,177.355 344.053,176.99 344.699,176.686 345.5,176.407 346.11,176.133 346.651,175.957 347.59,175.639 348.484,175.193 348.86,174.828 348.723,173.832 348.5,172.907 348,171.907 347.5,171.407 45.5,108.907 44.494,108.826 43.931,108.77 43.431,108.77 42.931,108.77 42.431,108.77 41.846,108.797 41.273,108.983 40.658,109.152 40.17,109.276 39.761,109.43 39,109.907 38.5,110.407 37.884,111.258 37.5,111.907 37.276,113.049 37.5,113.907 "/>
<polygon fill="#4f2703" id="polygon109" points="24.5,119.907 328.5,187.407 329.281,187.105 329.781,186.605 330.281,186.105 331.281,185.105 332.701,183.96 333.5,183.407 334.629,182.479 336,181.407 337,180.407 337,179.907 336.5,178.907 336,177.907 32.5,113.407 31.626,112.97 31,112.907 30.046,113.194 29.5,113.407 28.824,113.729 28.038,114.079 27.5,114.407 26.845,114.823 26,115.407 25.5,115.907 25,116.407 24.289,117.238 24,117.907 24,118.907 24.5,119.907 "/>
<line id="line111" y2="132.407" x2="14" y1="132.407" x1="14" fill="#4f2703"/>
<line id="line113" y2="131.907" x2="13.5" y1="131.907" x1="13.5" fill="#4f2703"/>
<line id="line115" y2="131.907" x2="13.5" y1="131.907" x1="13.5" fill="#4f2703"/>
<line id="line117" y2="122.407" x2="20.5" y1="122.407" x1="20.5" fill="#4f2703"/>
<line id="line119" y2="122.407" x2="20.5" y1="122.407" x1="20.5" fill="#4f2703"/>
<line id="line121" y2="122.407" x2="20.5" y1="122.407" x1="20.5" fill="#4f2703"/>
<line id="line123" y2="122.407" x2="20.5" y1="122.407" x1="20.5" fill="#4f2703"/>
<polygon fill="#4f2703" id="polygon125" points="14,132.407 319,203.907 319.257,203.586 319.316,202.588 319.316,201.588 319.557,200.56 319.727,199.978 320,199.407 320.5,197.907 321.5,196.407 322,195.407 322.747,194.243 323.57,192.998 324.57,191.998 325,191.407 325.085,190.895 325,190.407 324,189.407 19.5,121.407 19,121.407 18,121.407 17.5,121.907 16.5,122.407 16,122.907 15.5,123.407 14.5,124.407 14,124.907 13.5,125.907 13,126.907 12.5,127.907 12.5,128.407 12.5,129.407 12.5,130.407 13,131.407 13.5,131.907 14,132.407 "/>
</g>
<g id="g127">
<polygon fill="#934902" id="polygon129" points="382.172,101.987 382.5,102.407 382.938,102.012 383.13,101.463 383.267,100.97 383.295,100.559 383.5,99.907 383.815,99.188 384.303,97.65 384.803,95.65 385.5,93.907 386,92.407 387,90.407 387.5,89.407 387.5,88.907 387,88.407 386.5,88.407 386,88.407 385,88.907 384.5,89.407 384,90.407 383.612,91.568 383.27,92.356 383,93.407 382.5,94.407 382.207,95.44 382,96.407 381.693,97.737 381.5,98.907 381.5,99.907 381.624,100.753 381.761,101.404 382.172,101.987 "/>
<polygon fill="#934902" id="polygon131" points="370.67,154.496 370.547,155.05 370.393,155.589 370.254,156.112 370.177,156.574 370.039,157.684 370.039,158.184 370,158.907 370,160.407 370,161.407 370,162.407 370.27,163.473 371,163.907 371.53,163.795 371.753,162.947 372,161.407 372.342,159.94 372.729,158.457 373,156.791 373.257,155.389 373.5,154.407 373.684,153.397 373.866,152.382 374,151.407 374.09,150.086 374,149.407 373.452,149.455 373,149.907 372.5,150.407 372,151.407 371.5,152.407 371.225,153.018 371.071,153.479 370.855,153.957 370.67,154.496 "/>
<polygon fill="#934902" id="polygon133" points="375,143.407 375.5,143.407 375.672,142.819 375.727,142.113 375.821,141.025 376,139.907 376.412,137.445 376.741,135.389 377,133.407 377.5,130.907 377.619,129.302 377.5,128.407 376.895,128.689 376.346,129.238 376,129.907 375.5,130.907 375,131.907 374.5,132.907 374.221,133.928 374.016,134.961 373.844,135.887 373.639,136.841 373.467,137.807 373.467,138.801 373.5,139.907 373.5,140.907 373.844,142.021 374.344,143.021 375,143.407 "/>
<polygon fill="#934902" id="polygon135" points="378.5,122.907 379,120.407 379.5,117.907 380,115.407 380.5,112.907 381,109.907 381.5,107.907 381,107.907 380.5,107.907 380,108.407 379.5,108.907 379,109.907 378.5,110.907 378.197,111.825 377.785,112.956 377.536,113.964 377.305,114.979 377.076,115.975 377.066,116.897 377,117.907 377,118.907 377,120.407 377.168,121.25 377.5,121.907 378,122.407 378.5,122.907 "/>
<line id="line137" y2="170.407" x2="366.5" y1="170.407" x1="366.5" fill="#934902"/>
<polygon fill="#934902" id="polygon139" points="369.438,169.939 368.994,169.297 368.5,168.907 367.883,169.025 367.5,169.407 367,169.907 367,170.407 366.733,171.09 366.004,171.175 365.471,171.074 364.5,170.907 364,171.407 363.5,172.407 363,173.407 363.076,174.256 363.33,174.594 363.686,174.729 364,174.907 364.428,175.082 364.85,175.169 365.37,175.277 366,175.407 366.23,175.334 366.746,175.099 367,174.907 367.311,174.629 367.5,174.407 367.817,174.135 368,173.907 368.251,173.441 368.5,172.907 368.768,172.443 369,171.907 369.367,171.15 369.5,170.407 369.438,169.939 "/>
<polygon fill="#934902" id="polygon141" points="359.895,173.83 360,172.907 360,171.407 359.725,170.414 359.5,169.907 359,169.407 358.5,169.407 357.5,169.407 357,169.407 356.5,169.407 356,169.407 355.5,169.407 355,169.407 354.141,169.703 353.411,170.041 352.871,170.854 352.5,171.907 352.16,172.885 352,173.907 352,174.407 353.151,174.441 354.807,174.394 356.276,174.3 357.688,174.14 358.803,174.041 359.895,173.83 "/>
<polygon fill="#934902" id="polygon143" points="340.5,178.407 341,178.407 342.059,178.013 342.691,177.625 343.332,177.355 344.053,176.99 344.699,176.686 345.5,176.407 346.11,176.133 346.651,175.957 347.59,175.639 348.484,175.193 348.86,174.828 348.723,173.832 348.5,172.907 348,171.907 347.5,171.407 347,171.365 346.5,171.351 346,171.407 345.676,171.547 345.26,171.699 345,171.907 344.44,172.174 344,172.407 343.408,172.715 343,172.907 342.393,173.273 341.5,173.907 341,174.907 340.683,175.932 340.5,177.407 340.5,178.407 "/>
<polygon fill="#934902" id="polygon145" points="337,180.407 337,179.907 336.5,178.907 336,177.907 335.465,177.864 335,177.907 334,178.407 333.59,178.59 333,178.907 332.253,179.385 331.5,179.907 331,180.407 330.5,180.907 329.909,181.77 329.409,182.77 328.817,183.903 328.174,185.748 328.174,186.51 328.5,187.407 329.281,187.105 330.281,186.105 331.281,185.105 332.701,183.96 333.5,183.407 334.629,182.479 336,181.407 337,180.407 "/>
<polygon fill="#934902" id="polygon147" points="325.085,190.895 325,190.407 324,189.407 323.5,189.407 323.01,189.559 322.5,189.907 321.606,190.963 321,191.907 320.243,192.84 319.743,193.84 319,194.907 318.5,195.907 318,196.907 317.576,198.021 317.5,199.407 317.5,200.407 317.5,201.407 317.561,202.387 318,203.407 318.389,203.674 319,203.907 319.257,203.586 319.316,202.588 319.316,201.588 319.557,200.56 319.727,199.978 320,199.407 320.5,197.907 321.5,196.407 322,195.407 322.747,194.243 323.57,192.998 324.57,191.998 325,191.407 325.085,190.895 "/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1,174 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="252.24365"
height="251.86287"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="basket.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/gioppo/Disegni/basketball2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="TRUE"
version="1.1">
<defs
id="defs4">
<linearGradient
id="linearGradient2189">
<stop
style="stop-color:#ffd52a;stop-opacity:1;"
offset="0"
id="stop2191" />
<stop
style="stop-color:#ff7f2a;stop-opacity:1;"
offset="1"
id="stop2193" />
</linearGradient>
<linearGradient
id="linearGradient17099">
<stop
style="stop-color:#f09700;stop-opacity:1;"
offset="0"
id="stop17101" />
<stop
id="stop17107"
offset="1"
style="stop-color:#f6f700;stop-opacity:0.49803922;" />
<stop
style="stop-color:#f6f700;stop-opacity:0;"
offset="1"
id="stop17103" />
</linearGradient>
<linearGradient
id="linearGradient4180">
<stop
style="stop-color:#ffe92a;stop-opacity:1;"
offset="0"
id="stop4182" />
<stop
id="stop4188"
offset="0.5"
style="stop-color:#fff22a;stop-opacity:0.49803922;" />
<stop
style="stop-color:#ff7f2a;stop-opacity:0;"
offset="1"
id="stop4184" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4180"
id="radialGradient5277"
cx="378.40622"
cy="466.38931"
fx="378.40622"
fy="466.38931"
r="171.71356"
gradientTransform="matrix(1,0,0,0.9950338,0,2.3161611)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient17099"
id="radialGradient17105"
cx="129.15811"
cy="738.49414"
fx="129.15811"
fy="738.49414"
r="483.95963"
gradientTransform="matrix(1,0,0,0.9994274,0,0.4228264)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2189"
id="linearGradient3172"
x1="481.63095"
y1="537.79144"
x2="274.91696"
y2="486.54004"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.1706996"
inkscape:cx="1.7660124"
inkscape:cy="31.551992"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Livello 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-274.92648,-319.60744)">
<path
style="fill:#ee6900;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4.9243083;stroke-miterlimit:4;stroke-opacity:1"
d="m 290.0785,500.00544 c -30.11295,-61.16013 -4.83796,-135.19883 56.41738,-165.26497 61.25534,-30.06614 135.4093,-4.83043 165.52224,56.32969 30.11294,61.16013 4.83796,135.19884 -56.41738,165.26497 -61.19954,30.03875 -135.27102,4.89016 -165.44407,-56.1712"
id="path2236"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.73245698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 277.39495,430.72241 Z"
id="path9163"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 278.66319,433.19164 c 19.44633,-47.32695 235.46979,-0.82308 244.77022,24.69233"
id="path9165"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 430.85192,324.54541 c 103.99563,36.62695 55.80254,231.28477 -41.8519,243.2194"
id="path10136"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 349.6846,333.18772 c 59.18451,4.93847 98.07718,93.83084 161.06641,61.73082"
id="path12150"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.15031,510.97246 c 84.97204,12.7577 197.84535,-105.35392 205.45478,8.64232"
id="path13121"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -1,239 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="compost.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.1212866"
inkscape:cx="-56.545285"
inkscape:cy="143.88697"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#a17400;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#3c2803;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="svg_28"
d="m 215.60974,222.31038 c -16.19899,2.177 -36.46726,31.17419 -55.2344,53.50557 -0.24903,0.28469 40.04563,27.44645 40.04563,27.44645 l 47.82148,-56.13772 c 0,0 -7.99631,-28.1223 -32.63271,-24.8143 z m 82.06191,74.10822 43.59546,-51.59893 -22.29556,11.0768 c -2.04904,-6.62333 -8.45175,-25.97387 -14.34946,-30.00771 -7.14262,-4.89439 -68.80818,-3.30801 -68.80818,-3.30801 0,0 2.02759,0.24901 10.73531,10.87034 7.51255,9.1417 14.09332,41.76725 15.77933,50.63859 l -23.38438,11.66019 z m -156.78188,79.67866 c 0,0 -23.59063,27.82361 -13.26784,46.24927 6.77981,12.11536 39.33413,7.9606 65.40045,7.1994 0.34843,-0.0137 13.61649,-54.72913 13.61649,-54.72913 z m 29.98619,-39.54758 17.6004,11.16935 -16.51186,-50.45369 -60.47754,1.42983 16.7752,10.70686 c -5.52057,6.68735 -21.54895,26.62115 -23.55499,34.66741 -2.41164,9.732 17.19485,60.93977 17.19485,60.93977 0,0 -0.36278,-1.91364 6.86515,-17.24465 6.23205,-13.1968 34.4184,-43.16883 42.10879,-51.21488 z m 160.23211,-48.99532 c -0.0926,-0.29158 -54.72204,28.07252 -54.72204,28.07252 l 18.90218,55.51168 c 0,0 32.26273,-0.0137 46.64763,-22.24584 9.44042,-14.59116 -3.13026,-39.51203 -10.82777,-61.33836 z m -21.68377,85.47672 c -13.97932,4.26852 -49.48605,1.93508 -59.07613,1.18799 l 5.64152,-23.24191 -42.52128,50.98017 17.79259,50.73807 5.39249,-22.15357 c 7.73312,-0.15629 30.60513,-0.96024 38.62267,-5.11509 9.71097,-5.00819 52.0473,-59.05457 52.0473,-59.05457 0,0 -1.67889,1.70729 -17.89916,6.65891 z"
style="fill:#000000;fill-opacity:1;stroke-width:1.71356702"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,239 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="conteneur.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.5606433"
inkscape:cx="-93.026907"
inkscape:cy="97.032039"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#32a200;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#3c2803;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="svg_28"
d="m 216.50158,222.31038 c -16.19899,2.177 -36.46726,31.17419 -55.2344,53.50557 -0.24903,0.28469 40.04563,27.44645 40.04563,27.44645 l 47.82148,-56.13772 c 0,0 -7.99631,-28.1223 -32.63271,-24.8143 z m 82.06191,74.10822 43.59545,-51.59893 -22.29556,11.0768 c -2.04904,-6.62333 -8.45175,-25.97387 -14.34946,-30.00771 -7.14261,-4.89439 -68.80817,-3.30801 -68.80817,-3.30801 0,0 2.02759,0.24901 10.73531,10.87034 7.51255,9.1417 14.09332,41.76725 15.77933,50.63859 l -23.38438,11.66019 z m -156.78188,79.67866 c 0,0 -23.59063,27.82361 -13.26784,46.24927 6.77981,12.11536 39.33413,7.9606 65.40045,7.1994 0.34843,-0.0137 13.61649,-54.72913 13.61649,-54.72913 z m 29.98619,-39.54758 17.6004,11.16935 -16.51186,-50.45369 -60.47754,1.42983 16.7752,10.70686 c -5.52057,6.68735 -21.54895,26.62115 -23.55499,34.66741 -2.41164,9.732 17.19485,60.93977 17.19485,60.93977 0,0 -0.36278,-1.91364 6.86515,-17.24465 6.23205,-13.1968 34.4184,-43.16883 42.10879,-51.21488 z m 160.2321,-48.99532 c -0.0926,-0.29158 -54.72203,28.07252 -54.72203,28.07252 l 18.90218,55.51168 c 0,0 32.26272,-0.0137 46.64762,-22.24584 9.44042,-14.59116 -3.13026,-39.51203 -10.82777,-61.33836 z m -21.68377,85.47672 c -13.97931,4.26852 -49.48604,1.93508 -59.07612,1.18799 l 5.64152,-23.24191 -42.52128,50.98017 17.79259,50.73807 5.39249,-22.15357 c 7.73312,-0.15629 30.60513,-0.96024 38.62267,-5.11509 9.71097,-5.00819 52.04729,-59.05457 52.04729,-59.05457 0,0 -1.67889,1.70729 -17.89916,6.65891 z"
style="fill:#000000;fill-opacity:1;stroke-width:1.71356702"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,234 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="dechets.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.5606433"
inkscape:cx="-305.42413"
inkscape:cy="31.876073"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#c1c1c1;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 6.5 KiB

View File

@ -1,126 +0,0 @@
<?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="518.43048" height="480.05527" id="svg4779" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="defibrillator.svg">
<defs id="defs4781"/>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35" inkscape:cx="-237.2133" inkscape:cy="100.02765" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1600" inkscape:window-height="848" inkscape:window-x="1272" inkscape:window-y="116" inkscape:window-maximized="1"/>
<metadata id="metadata4784">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Calque 1" inkscape:groupmode="layer" id="layer1" transform="translate(-117.92759,-152.33457)">
<g id="g4601" transform="matrix(34.728732,0,0,34.728732,-7885.2132,-7492.0539)" style="fill:#00a654;fill-opacity:1;stroke:none">
<g display="none" id="Selected_x5F_Ver1" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4484">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective9"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="base-8"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1-9" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_9_">
<stop id="stop4490" style="stop-color:#CE5C00" offset="0"/>
<stop id="stop4492" style="stop-color:#D16200" offset="0.1753"/>
<stop id="stop4494" style="stop-color:#D97100" offset="0.3981"/>
<stop id="stop4496" style="stop-color:#E68B00" offset="0.6465"/>
<stop id="stop4498" style="stop-color:#F8AF00" offset="0.9118"/>
<stop id="stop4500" style="stop-color:#FFBD00" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_2" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4504">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4506"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4508"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_5_" style="opacity:0.45000000000000001;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_10_">
<stop id="stop4512" style="stop-color:#703C19" offset="0"/>
<stop id="stop4514" style="stop-color:#CE5C00" offset="0.589"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_5_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4518">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4520"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4522"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_1_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_1_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4527">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4529"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4531"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_8_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_8_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g display="none" id="Selected_x5F_Ver2" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_2_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4537">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4539"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4541"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_6_" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_11_">
<stop id="stop4545" style="stop-color:#67A42C" offset="0"/>
<stop id="stop4547" style="stop-color:#88CD44" offset="0.7669"/>
<stop id="stop4549" style="stop-color:#99DA4C" offset="0.8651"/>
<stop id="stop4551" style="stop-color:#B8F059" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_6_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_1_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4555">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4557"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4559"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_4_" style="opacity:0.31999996000000003;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_12_">
<stop id="stop4563" style="stop-color:#4C662B" offset="0"/>
<stop id="stop4565" style="stop-color:#4C662B" offset="1"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_4_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4569">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4571"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4573"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_7_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_7_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4578">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4580"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4582"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_3_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_3_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_3" style="fill:#00a654;fill-opacity:1;stroke:none">
<defs id="defs4587">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4589"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4591"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_2_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 3.17563,6.69521 7.464,9.904 4.45115,-3.22151 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_2_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 459.30542,208.16062 -145.58282,173.50679 58.60048,0 -77.34278,162.89651 161.05792,-180.36371 -66.972,0 z" id="path11839" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,49 +0,0 @@
<?xml version="1.0" encoding="windows-1252"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<g>
<path d="M504.984,407.552c-4.486-4.37-10.547-6.739-16.809-6.578c-33.187,0.855-64.219-6.478-92.22-26.71 c-25.3-18.279-45.075-44.849-61.547-71.479c-9.209-14.888-17.894-33.443-42.745-52.21c-30.764-23.236-71.898-33.537-109.531-33.63 v-50.912l55.611,41.751c25.235,6.452,49.633,17.687,70.077,34.915c18.506,15.595,27.542,30.093,35.339,43.223l10.051-4.423 l5.98,29.697c12.223,17.828,24.964,32.867,39.287,44.615c1.685-3.255,2.321-7.08,1.541-10.952l-18.14-90.084 c-0.993-4.926-4.152-9.143-8.601-11.481c-4.449-2.336-9.714-2.544-14.333-0.566l-23.457,10.049 c-6.28-25.238-8.436-33.902-14.58-58.596l56.505-77.152c4.538-6.196,3.194-14.9-3.003-19.439 c-6.197-4.539-14.898-3.194-19.44,3.003l-57.133,78.01l-38.956,10.266l-76.747-57.619v-9.2c0-5.202-2.352-10.126-6.399-13.395 l-75.536-61.009c-5.327-4.302-12.935-4.302-18.263,0L6.399,108.655C2.353,111.925,0,116.848,0,122.05v337.033 c0,4.693,3.805,8.497,8.497,8.497h20.366c4.693,0,8.498-3.805,8.498-8.497v-90.074h107.411v90.074 c0,4.693,3.805,8.497,8.497,8.497h4.179c0.21,0,0.275,0,0.266,0h15.921c4.693,0,8.498-3.805,8.498-8.497V284.537 c18.986,2.052,43.324,7.407,65.79,20.479c18.565,10.803,33.309,25.424,43.879,43.523c23.311,39.917,44.09,65.968,67.373,84.471 c38.645,30.711,83.079,38.657,132.495,32.511c0.009-0.001,0.019-0.002,0.029-0.003C503.326,464.062,512,454.201,512,442.482v-18.3 C512,417.919,509.469,411.922,504.984,407.552z M144.772,339.822L144.772,339.822H37.361v-40.863h107.411V339.822z M144.772,269.771L144.772,269.771H37.361v-42.007h107.411V269.771z"/>
</g>
</g>
<g>
<g>
<path d="M448.619,294.203c-58.083-46.371-53.978-43.173-55.356-44.016c0.486,1.719-0.339-2.18,10.325,50.777l24.206,19.325 c7.204,5.752,17.706,4.571,23.456-2.631C457.001,310.456,455.823,299.954,448.619,294.203z"/>
</g>
</g>
<g>
<g>
<circle cx="271.262" cy="146.57" r="32.45"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,813 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="306.87485"
height="534.74402"
version="1.1"
id="svg217"
sodipodi:docname="lampadaire.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata223">
<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>streetlight d.aoi</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs221">
<inkscape:path-effect
effect="simplify"
id="path-effect1079"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
<inkscape:path-effect
effect="simplify"
id="path-effect1075"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
<inkscape:path-effect
effect="simplify"
id="path-effect1071"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
<inkscape:path-effect
effect="simplify"
id="path-effect1067"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview219"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.83084406"
inkscape:cx="368.47373"
inkscape:cy="175.41452"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg217" />
<title
id="title2">streetlight d.aoi</title>
<linearGradient
y2="0"
x2="0.5"
y1="1"
x1="0.5"
id="rect18_1_">
<stop
stop-color="#8FB8DF"
offset="0"
id="stop4" />
<stop
stop-color="#86B1DB"
offset="0.1094"
id="stop6" />
<stop
stop-color="#6C9ECF"
offset="0.2912"
id="stop8" />
<stop
stop-color="#437FBB"
offset="0.5217"
id="stop10" />
<stop
stop-color="#3A78B7"
offset="0.5674"
id="stop12" />
<stop
stop-color="#245199"
offset="1"
id="stop14" />
</linearGradient>
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,114.9448,468.0098)"
r="90.184898"
cy="393.99271"
cx="83.555397"
id="polygon103_1_">
<stop
stop-color="#FFFFFF"
offset="0"
id="stop17" />
<stop
stop-color="#000000"
offset="0.6538"
id="stop19" />
</radialGradient>
<linearGradient
y2="253.0168"
x2="280.47318"
y1="253.0168"
x1="228.53442"
id="path355_1_"
gradientTransform="scale(0.77012568,1.2984894)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#1F1E21"
offset="0.6813"
id="stop22" />
<stop
stop-color="#28272A"
offset="0.7161"
id="stop24" />
<stop
stop-color="#414143"
offset="0.7737"
id="stop26" />
<stop
stop-color="#58595B"
offset="0.8187"
id="stop28" />
<stop
stop-color="#1F1E21"
offset="0.956"
id="stop30" />
</linearGradient>
<linearGradient
y2="900.31067"
x2="86.422379"
y1="900.31067"
x1="70.277214"
id="path390_1_"
gradientTransform="scale(2.5329334,0.39479917)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#1F1E21"
offset="0.6813"
id="stop33" />
<stop
stop-color="#28272A"
offset="0.7161"
id="stop35" />
<stop
stop-color="#414143"
offset="0.7737"
id="stop37" />
<stop
stop-color="#58595B"
offset="0.8187"
id="stop39" />
<stop
stop-color="#1F1E21"
offset="0.956"
id="stop41" />
</linearGradient>
<linearGradient
y2="400.15097"
x2="167.40916"
y1="400.15097"
x1="136.13446"
id="path312_1_"
gradientTransform="scale(1.3075933,0.7647638)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#000000"
offset="0.6813"
id="stop44" />
<stop
stop-color="#28272A"
offset="0.7161"
id="stop46" />
<stop
stop-color="#414143"
offset="0.7737"
id="stop48" />
<stop
stop-color="#58595B"
offset="0.8187"
id="stop50" />
<stop
stop-color="#000000"
offset="0.956"
id="stop52" />
</linearGradient>
<linearGradient
y2="346.47784"
x2="214.20921"
y1="346.47784"
x1="174.19151"
id="path370_1_"
gradientTransform="scale(1.0219126,0.97855724)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#000000"
offset="0.6813"
id="stop55" />
<stop
stop-color="#28272A"
offset="0.7161"
id="stop57" />
<stop
stop-color="#414143"
offset="0.7737"
id="stop59" />
<stop
stop-color="#58595B"
offset="0.8187"
id="stop61" />
<stop
stop-color="#000000"
offset="0.956"
id="stop63" />
</linearGradient>
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,114.9448,468.0098)"
fy="118.5923"
fx="101.7087"
r="26.7481"
cy="127.0464"
cx="83.054901"
id="path377_1_">
<stop
stop-color="#585858"
offset="0"
id="stop66" />
<stop
stop-color="#000000"
offset="0.3846"
id="stop68" />
</radialGradient>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g20"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g22">
<line
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="line24"
x1="155"
y1="109.517"
x2="175"
y2="256.52399" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle26"
cx="175"
cy="256.52399"
r="6.053" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle28"
cx="155.00101"
cy="109.517"
r="6.053" />
</g>
</g>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon103"
points="253,38.517 321.001,91.517 155,109.517 76,59.517 "
transform="translate(-43.065173,87.144043)" />
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon105"
points="225,229.524 261,249.524 175,256.524 136,237.524 "
transform="translate(-43.065173,87.144043)" />
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g107"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="svg_1">
<defs
id="defs83">
<polygon
id="SVGID_1_"
points="321.001,91.517 261,249.524 225,229.524 253,38.517 " />
</defs>
<clipPath
id="SVGID_2_">
<use
height="100%"
width="100%"
y="0"
x="0"
xlink:href="#SVGID_1_"
id="svg_2" />
</clipPath>
</g>
</g>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon137"
points="76,59.517 202,5.517 253,38.517 "
transform="translate(-43.065173,87.144043)" />
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g141"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path143"
d="m 171,259.524 c -1.41,2.115 -2,2.996 -2,5.5 0,2.199 1.54,4.58 2.5,6.5 0.889,1.775 2.583,3.082 3.981,4.481 1.451,1.451 2.798,2.98 4.429,4.285 1.704,1.363 2.768,2.83 4.127,4.529 1.011,1.265 3.744,3.608 4.067,5.224 0.912,4.562 1.896,8.649 1.896,13.31 0,-0.015 4,1.243 4,-1.095 0,-2.536 -0.396,-4.715 -0.896,-7.215 -0.875,-4.371 -1.777,-7.86 -4.609,-11.399 -2.866,-3.583 -6.104,-6.729 -9.347,-9.971 -2.656,-2.656 -6.708,-5.942 -6.148,-10.148 0.328,-2.458 2.599,-4.896 4,-7 -0.667,-1 -1.333,-2 -2,-3 -0.667,1 -1.333,2 -2,3 0.667,-1 1.333,-2 2,-3 -1.333,1.999 -2.666,3.999 -4,5.999 0.667,-1 1.333,-2 2,-3 -0.666,1 -1.333,2 -2,3 0.667,-1 1.333,-2 2,-3" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g145"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path147"
d="m 220,288.524 c 1.845,-1.844 4.913,-4.73 7.156,-5.954 3.202,-1.746 5.309,-3.572 8.51,-5.318 5.343,-2.914 10.952,-5.299 16.174,-8.432 2.569,-1.541 5.64,-1.832 8.16,-3.296 2.223,-1.289 4.983,-3.342 7,-5 2.487,-2.045 3.897,-3.577 0.963,-5.777 -2.927,-2.195 -5.472,-3.059 -8.963,-4.223 1.133,-2.266 1.062,-4.47 3.557,-3.223 2.304,1.152 3.733,1.794 6.123,2.749 2.013,0.805 4.609,2.139 5.32,4.474 0.375,1.23 0.401,4.838 -1.166,6.11 -3.547,2.879 -6.67,5.814 -10.834,7.89 -3.762,1.875 -7.734,3.368 -11.516,5.258 -8.72,4.36 -17.594,8.5 -25.123,14.774 -1.879,1.564 -3.106,2.961 -4.584,4.931 -1.27,1.692 -0.777,3.964 -0.777,6.037 0,2.903 -1.405,2 -4,2 -1.871,0 -1.104,-3.479 -0.784,-5.08 0.803,-4.013 1.858,-4.993 4.784,-7.92" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g149"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path151"
d="m 127.237,242.688 c 0.45,-2.162 2.399,-3.104 4.566,-3.465 2.411,-0.401 5.732,-0.089 4.696,-3.199 -0.852,-2.557 -3.495,-1.072 -5.92,-0.726 -2.285,0.326 -4.297,1.312 -6.439,2.17 -1.401,0.56 -2.225,3.704 -2.141,5.056 0.169,2.734 1.236,4.235 3.051,6.051 2.929,2.928 5.866,5.894 9.332,8.204 7.842,5.228 16.028,10.165 23.618,15.745 3.44,2.529 7.239,5.239 10.258,8.258 2.065,2.065 8.742,7.102 8.742,10.367 0,2.036 0,4.073 0,6.108 0,2.145 2.174,1.267 4,1.267 1.812,0 1.146,-3.41 1,-5 -0.129,-1.396 -0.353,-3.921 -1.069,-5.116 -4.667,-7.778 -11.021,-12.678 -18.272,-17.95 -6.589,-4.793 -13.497,-9.159 -20.276,-13.679 -3.261,-2.174 -6.085,-4.677 -9.469,-6.707 -1.872,-1.123 -6.159,-5.065 -5.677,-7.384 z" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g217"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path219"
d="m 231.544,232.467 c -0.206,-1.707 -0.099,-3.22 -1.855,-4.099 -1.472,-0.735 -2.903,-1.249 -4.465,-1.77 -0.536,-0.179 -1.91,3.302 -2.224,3.926 2.278,1.139 4.06,1.291 4,4 -0.054,2.485 -0.549,4.335 -1.886,6.341 -0.998,1.497 -1.459,3.566 -2.376,5.095 -1.252,2.088 -2.539,4.066 -3.442,6.324 -3.354,8.387 -8.6,15.95 -12.171,24.281 -1.984,4.633 -3.125,8.785 -3.125,13.874 0,1.062 -0.578,5.507 0,6.085 0.358,0.358 2.838,0 3.375,0 1.183,0 0.625,-1.741 0.625,-2.733 0,-2.035 -0.309,-4.271 0,-6.267 0.318,-2.06 1.455,-4.093 2.029,-6.102 1.414,-4.949 2.936,-8.635 5.435,-13.134 2.975,-5.353 5.416,-11.052 8.146,-16.57 1.494,-3.02 3.558,-5.53 5.077,-8.569 1.036,-2.07 3.133,-8.4 2.857,-10.682 z" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g223"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path225"
d="m 176,15.517 c -0.668,2.671 -1.302,3.547 0.213,5.819 1.198,1.797 3.048,3.146 5.044,3.944 3.833,1.533 8.968,3.236 13.133,3.236 8.932,0 18.913,1.349 27.167,-2.778 3.78,-1.891 9.541,-4.221 6.425,-9.445 -2.145,-3.592 -6.422,-5.138 -10.384,-6.128 -8.974,-2.243 -17.549,-3.412 -26.672,-1.131 -5.73,1.434 -10.172,2.918 -14.926,6.483" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g291"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path293"
d="m 225.671,114.071 c 0,18.512 -11.126,33.522 -24.854,33.522 -13.707,0 -24.833,-15.011 -24.833,-33.522 0,-18.516 11.126,-33.523 24.833,-33.523 13.728,0 24.854,15.008 24.854,33.523 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path295"
d="m 210.998,75.517 c 0,1.742 -4.479,3.157 -9.997,3.157 -5.544,0 -10.031,-1.415 -10.031,-3.157 0,-1.734 4.487,-3.151 10.031,-3.151 5.518,0 9.997,1.417 9.997,3.151 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path297"
d="m 210.998,85.511 c 0,1.742 -4.479,3.157 -9.997,3.157 -5.544,0 -10.031,-1.415 -10.031,-3.157 0,-1.734 4.487,-3.151 10.031,-3.151 5.518,0 9.997,1.417 9.997,3.151 z" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect299"
x="190.96899"
y="75.516998"
width="20.028"
height="9.9940004" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g314"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g316">
<line
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="line318"
x1="136"
y1="237.524"
x2="76"
y2="59.516998" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle320"
cx="76"
cy="59.516998"
r="6.053" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle322"
cx="136"
cy="237.524"
r="6.053" />
</g>
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g324"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g326">
<line
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="line328"
x1="225"
y1="229.524"
x2="253"
y2="38.516998" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle330"
cx="253.00101"
cy="38.516998"
r="6.053" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle332"
cx="225"
cy="229.524"
r="6.053" />
</g>
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g334"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g336">
<line
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="line338"
x1="321.00101"
y1="91.516998"
x2="261"
y2="249.524" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle340"
cx="261"
cy="249.524"
r="6.053" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle342"
cx="321.00201"
cy="91.516998"
r="6.053" />
</g>
</g>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path355"
d="m 154.74583,442.95804 c 9.421,0 17.116,1.227 17.355,2.741 l 0.834,-59.031 -35,-1 -0.604,59.983 c 0.395,-1.492 8.024,-2.693 17.415,-2.693 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path390"
d="m 162.97383,445.77204 h 12.863 v -2.933 -0.261 c -0.43,-1.762 -9.416,-3.18 -20.403,-3.18 -11.07,0 -20.061,1.418 -20.491,3.18 v 0.261 2.933 h 12.902" />
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g394"
transform="translate(-43.065173,87.144043)">
<radialGradient
id="path401_1_"
cx="90.7117"
cy="576.31488"
r="12.6218"
gradientTransform="matrix(1,0,0,-1.844,114.9448,1002.6381)"
gradientUnits="userSpaceOnUse">
<stop
id="stop123"
offset="0"
stop-color="#585858" />
<stop
id="stop125"
offset="0.3846"
stop-color="#000000" />
</radialGradient>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path401"
d="m 208.223,-44.927 c 1.496,-2.595 4.222,-8.713 3.748,-11.741 -0.705,-4.51 -2.299,-8.469 -4.339,-12.549 -1.005,-2.01 -2.215,-3.903 -3.37,-5.83 -1.636,-2.724 -3.734,2.019 -4.36,3.062 -2.283,3.804 -4.318,7.168 -5.401,11.502 -1.157,4.63 -0.041,8.376 1.427,12.778 0.952,2.859 2.052,2.259 0.387,5.035 -1.278,2.13 -2.717,4.06 -4.209,6.05 -0.938,1.249 -2.104,3.9 -2.104,5.45 0,2.428 0.869,1.688 3.155,1.688 6.23,0 12.46,0 18.69,0 0.45,0 2.813,0.334 3.154,0 0.85,-0.832 -0.782,-4.567 -1.155,-5.312 -1.729,-3.455 -3.856,-6.687 -5.623,-10.133" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g403"
transform="translate(-43.065173,87.144043)">
<radialGradient
id="path410_1_"
cx="95.499802"
cy="475.30219"
r="28.0669"
gradientTransform="matrix(1,0,0,-0.9269,114.9448,425.0285)"
gradientUnits="userSpaceOnUse">
<stop
id="stop130"
offset="0"
stop-color="#585858" />
<stop
id="stop132"
offset="0.3846"
stop-color="#000000" />
</radialGradient>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path410"
d="m 188,-28.483 c -1.429,2.858 0,2.958 0,5.688 0,0.596 -4.319,3.633 -5.051,4.363 -2.944,2.944 -5.589,6.856 -7.334,10.622 C 173.777,-3.843 174,0.515 174,4.783 c 0,4.899 1.514,8.248 5,11.734 2.066,2.066 6.562,1.126 9.336,1.189 6.618,0.15 13.236,0.301 19.854,0.451 4.945,0.112 9.89,0.225 14.834,0.337 2.947,0.067 5.521,-5.158 6.132,-7.603 1.572,-6.29 1.256,-12.846 -1.156,-18.875 -1.308,-3.269 -3.05,-5.549 -5.53,-8.031 -1.455,-1.455 -5.47,-4.498 -5.47,-6.781 0,-1.757 1.25,-3.188 0.5,-4.688 -0.775,-1.553 -2.062,-2.471 -3.381,-3.575 -1.969,-1.648 -5.928,-2.425 -8.415,-2.425 -3.251,0 -6.542,-0.291 -9.704,0.5 -3.567,0.893 -5.416,1.918 -8,4.501 l 1,-1" />
</g>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path312"
d="m 155.43483,381.20604 c -11.322,0 -20.491,1.779 -20.491,3.962 v 19.956 h 40.895 v -19.956 c -0.001,-2.183 -9.167,-3.962 -20.404,-3.962 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path357"
d="m 175.83783,405.12404 c 0,2.166 -9.166,3.941 -20.403,3.941 -11.322,0 -20.491,-1.775 -20.491,-3.941 0,-2.184 9.169,-3.962 20.491,-3.962 11.237,0.001 20.403,1.78 20.403,3.962 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path370"
d="m 155.43483,406.61204 c -11.322,0 -20.491,1.625 -20.491,3.617 v 35.543 h 40.895 v -35.543 c -0.001,-1.992 -9.167,-3.617 -20.404,-3.617 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path392"
d="m 175.83783,445.77204 c 0,1.812 -9.166,3.293 -20.403,3.293 -11.322,0 -20.491,-1.481 -20.491,-3.293 0,-1.817 9.169,-3.303 20.491,-3.303 11.237,10e-4 20.403,1.486 20.403,3.303 z" />
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g412"
transform="translate(-43.065173,87.144043)">
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.10032534,9.9675719)"
id="polygon425_1_"
x1="1790.3156"
y1="39.869671"
x2="2144.7004"
y2="39.869671">
<stop
id="stop141"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop143"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop145"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop147"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop149"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon425"
points="179.614,436.3 180.397,358.507 180.394,358.74 " />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.10032534,9.9675719)"
id="polygon440_1_"
x1="1790.3156"
y1="39.869671"
x2="2144.7004"
y2="39.869671">
<stop
id="stop153"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop155"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop157"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop159"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop161"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon440"
points="179.614,436.3 180.397,358.507 180.394,358.74 " />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.11878726,8.418411)"
id="polygon453_1_"
x1="1512.1917"
y1="47.209419"
x2="1811.3667"
y2="47.209419">
<stop
id="stop165"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop167"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop169"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop171"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop173"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon453"
points="214.071,436.3 215.165,358.707 215.167,358.556 214.07,436.3 " />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.11878726,8.418411)"
id="polygon468_1_"
x1="1512.1917"
y1="47.209419"
x2="1811.3667"
y2="47.209419">
<stop
id="stop177"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop179"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop181"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop183"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop185"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon468"
points="214.071,436.3 215.165,358.707 215.167,358.556 214.07,436.3 " />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.66463109,1.5045941)"
id="path481_1_"
x1="270.24615"
y1="263.23224"
x2="323.74008"
y2="263.23224">
<stop
id="stop189"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop191"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop193"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop195"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop197"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path481"
d="m 214.07,436.3 1.098,-77.744 c -0.239,-1.516 -7.935,-2.741 -17.355,-2.741 -9.392,0 -17.021,1.2 -17.415,2.692 l -0.783,77.793 z" />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.66463109,1.5045941)"
id="path494_1_"
x1="270.24615"
y1="263.23224"
x2="323.74008"
y2="263.23224">
<stop
id="stop201"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop203"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop205"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop207"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop209"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path494"
d="m 214.07,436.3 1.098,-77.744 c -0.239,-1.516 -7.935,-2.741 -17.355,-2.741 -9.392,0 -17.021,1.2 -17.415,2.692 l -0.783,77.793 z" />
</g>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path377"
d="m 187.90783,428.18504 c 0,10.146 -14.77,18.461 -32.973,18.461 -18.205,0 -32.975,-8.313 -32.975,-18.461 0,-10.299 14.77,-18.615 32.975,-18.615 18.204,-0.001 32.973,8.316 32.973,18.615 z" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 32.934827,146.66104 60,178.00701 125.000003,12 60.001,-158.00701 z"
id="path1081"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 20 KiB

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg height="297mm" id="svg2" inkscape:version="0.44" sodipodi:docbase="C:\Dokumente und Einstellungen\family\Desktop" sodipodi:docname="sign.svg" sodipodi:version="0.32" width="210mm" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work rdf:about="">
<dc:title>sign</dc:title>
<dc:description/>
<dc:subject>
<rdf:Bag>
<rdf:li>unsorted</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent rdf:about="http://www.openclipart.org/">
<dc:title>Open Clip Art Library</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>anonymous</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>anonymous</dc:title>
</cc:Agent>
</dc:rights>
<dc:date/>
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<cc:license rdf:resource="http://web.resource.org/cc/PublicDomain"/>
<dc:language>en</dc:language>
</cc:Work>
<cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
</cc:License>
</rdf:RDF>
</metadata>
<defs id="defs4"/>
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:current-layer="layer1" inkscape:cx="350" inkscape:cy="520" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="573" inkscape:window-width="925" inkscape:window-x="76" inkscape:window-y="56" inkscape:zoom="0.35" pagecolor="#ffffff"/>
<g id="layer1" inkscape:groupmode="layer" inkscape:label="Ebene 1">
<rect height="294.28571" id="rect1874" style="opacity:1;color:black;fill:#a05a2c;fill-opacity:1;fill-rule:evenodd;stroke:#536282;stroke-width:21.5529995;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;visibility:visible;display:inline;overflow:visible" width="28.571428" x="111.42857" y="152.36218"/>
<rect height="105.71429" id="rect1876" style="opacity:1;color:black;fill:#a05a2c;fill-opacity:1;fill-rule:evenodd;stroke:#536282;stroke-width:21.5529995;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;visibility:visible;display:inline;overflow:visible" width="234.28572" x="11.428572" y="186.6479"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 168 KiB

View File

@ -1,99 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="142.18591"
height="104.58382"
viewBox="0 0 142.18593 104.58381"
xml:space="preserve"
sodipodi:docname="parking_velos.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
id="metadata21"><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 /></cc:Work></rdf:RDF></metadata><defs
id="defs19"><inkscape:path-effect
effect="simplify"
id="path-effect865"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
</defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview17"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.6568543"
inkscape:cx="53.28101"
inkscape:cy="40.907667"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<g
id="g889"><path
inkscape:connector-curvature="0"
id="path6"
d="M 25.4149,52.348265 C 9.7645253,52.210346 -3.0169234,68.425398 0.62583776,83.596312 3.3160329,99.189947 21.900281,108.85147 36.219588,102.23108 50.942655,96.556905 56.880991,76.506558 47.586776,63.746703 42.744432,56.50052 34.125723,52.065125 25.4149,52.348265 Z m 1.560547,8.447266 c 14.215211,0.01353 22.170061,19.27854 12.083985,29.314453 C 30.067621,101.14064 10.150841,95.125996 8.7352128,80.979125 6.8432193,70.30665 16.155664,59.98214 26.975447,60.795531 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path8"
d="M 96.006697,52.586546 C 80.349854,52.440293 67.543952,68.65287 71.194197,83.834593 73.887574,99.426962 92.479692,109.08953 106.79771,102.46741 121.51258,96.782516 127.4452,76.739398 118.15318,63.981078 113.31661,56.744125 104.70946,52.300948 96.006697,52.586546 Z m 1.556641,8.435547 c 14.199882,0.03832 22.156992,19.276038 12.066412,29.31836 -8.98086,10.991357 -28.867923,5.00191 -30.322271,-9.09961 -1.96243,-10.626325 7.487295,-21.091458 18.255859,-20.21875 z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path10"
d="M 72.207869,0.02404652 C 63.248151,-0.01629286 58.176551,12.131338 64.567244,18.442015 70.238609,25.327236 82.74649,21.550554 83.623885,12.662718 84.768806,5.9983007 78.962764,-0.4440427 72.207869,0.02404652 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path12"
d="m 58.600447,13.871703 c -7.651426,0.817672 -11.135089,9.391916 -16.841801,13.523734 -4.469714,4.868696 -13.404065,10.159692 -10.361324,18.150094 3.387352,7.518431 13.179595,8.632211 19.199532,13.33622 6.801444,2.014189 2.213549,10.730802 3.540703,15.966514 -1.2091,5.123909 0.924451,12.582087 7.289062,12.351563 6.192668,0.06451 8.273944,-7.176637 7.095703,-12.210938 -0.677688,-7.939453 1.203419,-16.246064 -0.603515,-24.021484 -2.39983,-5.137361 -8.9328,-6.001094 -13.171875,-9 4.444698,-4.317378 9.280124,-12.142579 12.159607,-2.407931 2.962022,6.78727 11.595738,3.838289 17.190002,4.361056 4.363638,0.567202 12.511709,0.718046 12.484375,-5.621094 C 96.340659,31.801686 87.941264,32.47962 83.522332,32.879569 75.878856,35.324794 73.591,27.978376 70.13035,22.776167 67.838848,18.318251 64.27004,13.328243 58.600447,13.871703 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><g
id="g879"><rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:6.28336287;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect867"
width="43.551727"
height="80.28817"
x="98.634186"
y="24.196041" /></g><g
id="flowRoot871"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.33333397px;line-height:1.25;font-family:Purisa;-inkscape-font-specification:Purisa;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none"
transform="matrix(3.3033733,0,0,3.4967424,37.966582,-21.463321)"
aria-label="P"><path
id="path875"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff"
d="m 30.993815,18.54974 q 0,1.416667 -0.645833,2.53125 -0.645833,1.114583 -1.854167,1.729167 -1.197916,0.604166 -2.854167,0.604166 H 21.993815 V 28.58099 H 18.920898 V 13.903906 h 6.59375 q 2.635417,0 4.052084,1.21875 1.427083,1.208334 1.427083,3.427084 z m -3.09375,0.05208 q 0,-2.3125 -2.729167,-2.3125 h -3.177083 v 4.760417 h 3.260417 q 1.270833,0 1.958333,-0.625 0.6875,-0.635417 0.6875,-1.822917 z" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -1,26 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="520.28998" height="288.20999" xmlns="http://www.w3.org/2000/svg">
<metadata id="metadata3666">image/svg+xml</metadata>
<g>
<title>Layer 1</title>
<g externalResourcesRequired="false" id="layer1">
<g externalResourcesRequired="false" id="g4318">
<path fill="none" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m11.591372,48.658909l311.428555,104.999996l187.857178,-66.428566l-317.142868,-80.714291l-182.142865,42.142861z" id="path3685"/>
<path fill="none" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m47.30566,62.230335l0,104.714291" id="path3687"/>
<path fill="none" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m144.448517,95.444618l0,106.714287" id="path3687-7"/>
<path fill="none" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m194.448517,111.873177l0,110.714287" id="path3687-0"/>
<path fill="#000000" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m304.448517,149.016052l0,136.714264" id="path3687-4"/>
<path fill="none" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m462.305634,105.444618l0,110.714287" id="path3687-8"/>
<path fill="none" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m339.448517,147.587479l0,20.714294" id="path3687-45"/>
<path fill="none" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m283.734222,140.587479l0,12.714294" id="path3687-1"/>
<path fill="none" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m45.877094,88.658897l97.857143,32.142868" id="path4266"/>
<path fill="none" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m196.234238,141.158905l108.239639,42.482071" id="path4266-7"/>
<path fill="#005bd8" stroke="#005bd8" stroke-width="5" stroke-miterlimit="4" d="m462.305634,130.087479l-37.608307,-12.059929" id="path4290"/>
<path fill="#007f00" stroke="#ffffff" stroke-width="3" stroke-miterlimit="4" d="m17.249004,49.371159l304.370686,102.620419l183.599762,-64.923134l-309.955475,-78.88506l-178.014973,41.187776z" id="path3685-1"/>
<path fill="none" stroke="#ffffff" stroke-width="3" stroke-miterlimit="4" d="m115.056602,26.820362l310.116829,87.378193" id="path4314"/>
<path fill="#000000" fill-opacity="0.142259" stroke="#c6c6c6" stroke-width="3" stroke-miterlimit="4" d="m154.114227,67.206169l0.094696,25.738586l192.555847,-49.033016l0.210449,-25.233505l-192.860992,48.527935z" id="path4316"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

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