Navigation indicator for FreeCAD

This commit is contained in:
triplus
2017-02-18 01:39:11 +01:00
committed by wmayer
parent 0c445bd115
commit a527ffe694
71 changed files with 2920 additions and 0 deletions

View File

@@ -231,6 +231,7 @@ OPTION(BUILD_SPREADSHEET "Build the FreeCAD spreadsheet module" ON)
OPTION(BUILD_START "Build the FreeCAD start module" ON)
OPTION(BUILD_TEST "Build the FreeCAD test module" ON)
OPTION(BUILD_TECHDRAW "Build the FreeCAD Technical Drawing module" ON)
OPTION(BUILD_TUX "Build the FreeCAD Tux module" ON)
OPTION(BUILD_WEB "Build the FreeCAD web module" ON)
OPTION(BUILD_VR "Build the FreeCAD Oculus Rift support (need Oculus SDK 4.x or higher)" OFF)

View File

@@ -139,3 +139,6 @@ if(BUILD_ADDONMGR)
add_subdirectory(AddonManager)
endif(BUILD_ADDONMGR)
if(BUILD_TUX)
add_subdirectory(Tux)
endif(BUILD_TUX)

View File

@@ -0,0 +1,31 @@
IF (BUILD_GUI)
PYSIDE_WRAP_RC(Tux_QRC_SRCS Resources/Tux.qrc)
ENDIF (BUILD_GUI)
SET(Tux_SRCS
InitGui.py
NavigationIndicatorGui.py
)
SOURCE_GROUP("" FILES ${Tux_SRCS})
ADD_CUSTOM_TARGET(Tux ALL
SOURCES ${Tux_SRCS} ${Tux_QRC_SRCS}
)
fc_copy_sources(Tux "${CMAKE_BINARY_DIR}/Mod/Tux" ${Tux_SRCS})
IF (BUILD_GUI)
fc_target_copy_resource(Tux
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}/Mod/Tux
Tux_rc.py)
ENDIF (BUILD_GUI)
INSTALL(
FILES
${Tux_SRCS}
${Tux_QRC_SRCS}
DESTINATION
Mod/Tux
)

26
src/Mod/Tux/InitGui.py Normal file
View File

@@ -0,0 +1,26 @@
# Tux module for FreeCAD
# Copyright (C) 2017 triplus @ FreeCAD
#
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Tux module for FreeCAD."""
p = FreeCAD.ParamGet("User parameter:Tux")
if p.GetGroup("NavigationIndicator").GetBool("Enabled", 1):
import NavigationIndicatorGui
else:
pass

View File

@@ -0,0 +1,439 @@
# Navigation indicator for FreeCAD
# Copyright (C) 2016, 2017 triplus @ FreeCAD
#
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Navigation indicator for FreeCAD."""
import Tux_rc
import FreeCAD as App
import FreeCADGui as Gui
from PySide import QtGui
from PySide import QtCore
timer = QtCore.QTimer()
mw = Gui.getMainWindow()
statusBar = mw.statusBar()
p = App.ParamGet("User parameter:Tux/NavigationIndicator")
pView = App.ParamGet("User parameter:BaseApp/Preferences/View")
t0 = "Navigation style not recognized."
t1 = str("""<p align='center'><b>OpenInventor</b> navigation style</p>
<table>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationOpenInventor_Select.svg'></td>
<td align='center'><img src=':/icons/NavigationOpenInventor_Zoom.svg'></td>
<td align='center'><img src=':/icons/NavigationOpenInventor_ZoomAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationOpenInventor_Rotate.svg'></td>
<td align='center'><img src=':/icons/NavigationOpenInventor_Pan.svg'></td>
</tr>
</table>""")
t2 = str("""<p align='center'><b>CAD</b> navigation style</p>
<table>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationCAD_Select.svg'></td>
<td align='center'><img src=':/icons/NavigationCAD_Zoom.svg'></td>
<td align='center'><img src=':/icons/NavigationCAD_Rotate.svg'></td>
<td align='center'><img src=':/icons/NavigationCAD_RotateAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationCAD_Pan.svg'></td>
</tr>
</table>""")
t3 = str("""<p align='center'><b>Blender</b> navigation style</p>
<table>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
<th><small>Pan</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationBlender_Select.svg'></td>
<td align='center'><img src=':/icons/NavigationBlender_Zoom.svg'></td>
<td align='center'><img src=':/icons/NavigationBlender_Rotate.svg'></td>
<td align='center'><img src=':/icons/NavigationBlender_Pan.svg'></td>
<td align='center'><img src=':/icons/NavigationBlender_PanAlt.svg'></td>
</tr>
</table>""")
t4 = str("""<p align='center'><b>MayaGesture</b> navigation style</p>
<table>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
<th><small>Tilt</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationMayaGesture_Select.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_Zoom.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_ZoomAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_Rotate.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_Pan.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_Tilt.svg'></td>
</tr>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
<th><small>Pan</small></th>
<th><small>Tilt</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationMayaGesture_SelectTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_ZoomTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_RotateTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_PanTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_PanTouchAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationMayaGesture_TiltTouch.svg'></td>
</tr>
</table>
<p><small><b>Zoom:</b> Page Up or Page Down key.<br>
<b>Rotation focus:</b> Middle mouse button or key H.</small></p>""")
t5 = str("""<p align='center'><b>Touchpad</b> navigation style</p>
<table>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationTouchpad_Select.svg'></td>
<td align='center'><img src=':/icons/NavigationTouchpad_Zoom.svg'></td>
<td align='center'><img src=':/icons/NavigationTouchpad_ZoomAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationTouchpad_Rotate.svg'></td>
<td align='center'><img src=':/icons/NavigationTouchpad_RotateAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationTouchpad_Pan.svg'></td>
</tr>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationTouchpad_SelectTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationTouchpad_ZoomTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationTouchpad_RotateTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationTouchpad_RotateTouchAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationTouchpad_PanTouch.svg'></td>
</tr>
</table>
<p><small><b>Zoom:</b> Page Up or Page Down key.</small></p>""")
t6 = str("""<p align='center'><b>Gesture</b> navigation style</p>
<table>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
<th><small>Tilt</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationGesture_Select.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_Zoom.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_Rotate.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_RotateAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_Pan.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_Tilt.svg'></td>
</tr>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
<th><small>Pan</small></th>
<th><small>Tilt</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationGesture_SelectTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_ZoomTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_RotateTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_PanTouch.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_PanTouchAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationGesture_TiltTouch.svg'></td>
</tr>
</table>
<p><small><b>Zoom:</b> Page Up or Page Down key.<br>
<b>Rotation focus:</b> Middle mouse button or key H.</small></p>""")
t7 = str("""<p align='center'><b>OpenCascade</b> navigation style</p>
<table>
<tr>
<th><small>Select</small></th>
<th><small>Zoom</small></th>
<th><small>Zoom</small></th>
<th><small>Rotate</small></th>
<th><small>Pan</small></th>
<th><small>Pan</small></th>
</tr>
<tr>
<td align='center'><img src=':/icons/NavigationOpenCascade_Select.svg'></td>
<td align='center'><img src=':/icons/NavigationOpenCascade_Zoom.svg'></td>
<td align='center'><img src=':/icons/NavigationOpenCascade_ZoomAlt.svg'></td>
<td align='center'><img src=':/icons/NavigationOpenCascade_Rotate.svg'></td>
<td align='center'><img src=':/icons/NavigationOpenCascade_Pan.svg'></td>
<td align='center'><img src=':/icons/NavigationOpenCascade_PanAlt.svg'></td>
</tr>
</table>""")
indicator = QtGui.QToolButton(statusBar)
indicator.setAutoRaise(True)
indicator.setObjectName("Std_NavigationIndicator")
indicator.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon)
indicator.setPopupMode(QtGui.QToolButton
.ToolButtonPopupMode
.InstantPopup)
menu = QtGui.QMenu(indicator)
indicator.setMenu(menu)
menuSettings = QtGui.QMenu("Settings", menu)
menuOrbit = QtGui.QMenu("Orbit style", menu)
aCompact = QtGui.QAction(menuSettings)
aCompact.setText("Compact")
aCompact.setCheckable(True)
aTooltip = QtGui.QAction(menuSettings)
aTooltip.setText("Tooltip")
aTooltip.setCheckable(True)
gOrbit = QtGui.QActionGroup(menuSettings)
aTurntable = QtGui.QAction(gOrbit)
aTurntable.setText("Turntable")
aTurntable.setCheckable(True)
aTrackball = QtGui.QAction(gOrbit)
aTrackball.setText("Trackball")
aTrackball.setCheckable(True)
menuOrbit.addAction(aTurntable)
menuOrbit.addAction(aTrackball)
menuSettings.addMenu(menuOrbit)
menuSettings.addSeparator()
menuSettings.addAction(aCompact)
menuSettings.addAction(aTooltip)
gStyle = QtGui.QActionGroup(menu)
a0 = QtGui.QAction(gStyle)
a0.setIcon(QtGui.QIcon(":/icons/NavigationUndefined.svg"))
a0.setText("Undefined")
a0.setData("Undefined")
a0.setObjectName("Indicator_NavigationUndefined")
a1 = QtGui.QAction(gStyle)
a1.setIcon(QtGui.QIcon(":/icons/NavigationOpenInventor.svg"))
a1.setText("OpenInventor")
a1.setData("Gui::InventorNavigationStyle")
a1.setObjectName("Indicator_NavigationOpenInventor")
a2 = QtGui.QAction(gStyle)
a2.setIcon(QtGui.QIcon(':/icons/NavigationCAD.svg'))
a2.setText("CAD")
a2.setData("Gui::CADNavigationStyle")
a2.setObjectName("Indicator_NavigationCAD")
a3 = QtGui.QAction(gStyle)
a3.setIcon(QtGui.QIcon(":/icons/NavigationBlender.svg"))
a3.setText("Blender")
a3.setData("Gui::BlenderNavigationStyle")
a3.setObjectName("Indicator_NavigationBlender")
a4 = QtGui.QAction(gStyle)
a4.setIcon(QtGui.QIcon(":/icons/NavigationMayaGesture.svg"))
a4.setText("MayaGesture")
a4.setData("Gui::MayaGestureNavigationStyle")
a4.setObjectName("Indicator_NavigationMayaGesture")
a5 = QtGui.QAction(gStyle)
a5.setIcon(QtGui.QIcon(":/icons/NavigationTouchpad.svg"))
a5.setText("Touchpad")
a5.setData("Gui::TouchpadNavigationStyle")
a5.setObjectName("Indicator_NavigationTouchpad")
a6 = QtGui.QAction(gStyle)
a6.setIcon(QtGui.QIcon(":/icons/NavigationGesture.svg"))
a6.setText("Gesture")
a6.setData("Gui::GestureNavigationStyle")
a6.setObjectName("Indicator_NavigationGesture")
a7 = QtGui.QAction(gStyle)
a7.setIcon(QtGui.QIcon(":/icons/NavigationOpenCascade.svg"))
a7.setText("OpenCascade")
a7.setData("Gui::OpenCascadeNavigationStyle")
a7.setObjectName("Indicator_NavigationOpenCascade")
menu.addMenu(menuSettings)
menu.addSeparator()
menu.addAction(a0)
menu.addAction(a1)
menu.addAction(a2)
menu.addAction(a3)
menu.addAction(a4)
menu.addAction(a5)
menu.addAction(a6)
menu.addAction(a7)
def onCompact():
"""Enable or disable compact mode."""
if aCompact.isChecked():
indicator.setToolButtonStyle(QtCore.Qt.ToolButtonIconOnly)
indicator.setStyleSheet("QToolButton::menu-indicator {image: none}")
p.SetBool("Compact", 1)
else:
indicator.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon)
indicator.setStyleSheet("QToolButton::menu-indicator {}")
p.SetBool("Compact", 0)
def onTooltip():
"""Enable or disable verbose tooltips."""
if aTooltip.isChecked():
a0.setToolTip(t0)
a1.setToolTip(t1)
a2.setToolTip(t2)
a3.setToolTip(t3)
a4.setToolTip(t4)
a5.setToolTip(t5)
a6.setToolTip(t6)
a7.setToolTip(t7)
p.SetBool("Tooltip", 1)
else:
for i in gStyle.actions():
i.setToolTip("")
p.SetBool("Tooltip", 0)
def onOrbit():
"""Use turntable or trackball orbit style."""
if aTurntable.isChecked():
pView.SetInt("OrbitStyle", 1)
else:
pView.SetInt("OrbitStyle", 0)
def onMenu(action):
"""Set navigation style on selection."""
s = False
if action.data() != "Undefined":
s = True
menu.setDefaultAction(action)
indicator.setDefaultAction(action)
pView.SetString("NavigationStyle", action.data())
else:
pass
if s:
a0.setVisible(False)
else:
a0.setVisible(True)
a0.setEnabled(True)
menu.setDefaultAction(a0)
indicator.setDefaultAction(a0)
def setCurrent():
"""Set navigation style on start and on interval."""
gStyle.blockSignals(True)
s = False
actions = gStyle.actions()
current = pView.GetString("NavigationStyle")
if current:
for i in actions:
if i.data() == current:
s = True
menu.setDefaultAction(i)
indicator.setDefaultAction(i)
else:
pass
else:
s = True
menu.setDefaultAction(a2)
indicator.setDefaultAction(a2)
pView.SetString("NavigationStyle", a2.data())
if s:
a0.setVisible(False)
else:
a0.setVisible(True)
a0.setEnabled(True)
menu.setDefaultAction(a0)
indicator.setDefaultAction(a0)
gStyle.blockSignals(False)
if p.GetBool("Compact"):
aCompact.setChecked(True)
if p.GetBool("Tooltip", 1):
aTooltip.setChecked(True)
if pView.GetInt("OrbitStyle", 1):
aTurntable.setChecked(True)
else:
aTrackball.setChecked(True)
onCompact()
onTooltip()
onOrbit()
statusBar.addPermanentWidget(indicator)
statusBar.addPermanentWidget(statusBar.children()[2])
setCurrent()
gStyle.triggered.connect(onMenu)
gOrbit.triggered.connect(onOrbit)
aCompact.triggered.connect(onCompact)
aTooltip.triggered.connect(onTooltip)
timer.timeout.connect(setCurrent)
timer.start(10000)

View File

@@ -0,0 +1,69 @@
<RCC>
<qresource>
<file>icons/NavigationBlender_PanAlt.svg</file>
<file>icons/NavigationBlender_Pan.svg</file>
<file>icons/NavigationBlender_Rotate.svg</file>
<file>icons/NavigationBlender_Select.svg</file>
<file>icons/NavigationBlender.svg</file>
<file>icons/NavigationBlender_Zoom.svg</file>
<file>icons/NavigationCADAlt.svg</file>
<file>icons/NavigationCAD_Pan.svg</file>
<file>icons/NavigationCAD_RotateAlt.svg</file>
<file>icons/NavigationCAD_Rotate.svg</file>
<file>icons/NavigationCAD_Select.svg</file>
<file>icons/NavigationCAD.svg</file>
<file>icons/NavigationCAD_Zoom.svg</file>
<file>icons/NavigationGesture_Pan.svg</file>
<file>icons/NavigationGesture_PanTouchAlt.svg</file>
<file>icons/NavigationGesture_PanTouch.svg</file>
<file>icons/NavigationGesture_RotateAlt.svg</file>
<file>icons/NavigationGesture_Rotate.svg</file>
<file>icons/NavigationGesture_RotateTouch.svg</file>
<file>icons/NavigationGesture_Select.svg</file>
<file>icons/NavigationGesture_SelectTouch.svg</file>
<file>icons/NavigationGesture.svg</file>
<file>icons/NavigationGesture_Tilt.svg</file>
<file>icons/NavigationGesture_TiltTouch.svg</file>
<file>icons/NavigationGesture_Zoom.svg</file>
<file>icons/NavigationGesture_ZoomTouch.svg</file>
<file>icons/NavigationMayaGesture_Pan.svg</file>
<file>icons/NavigationMayaGesture_PanTouchAlt.svg</file>
<file>icons/NavigationMayaGesture_PanTouch.svg</file>
<file>icons/NavigationMayaGesture_Rotate.svg</file>
<file>icons/NavigationMayaGesture_RotateTouch.svg</file>
<file>icons/NavigationMayaGesture_Select.svg</file>
<file>icons/NavigationMayaGesture_SelectTouch.svg</file>
<file>icons/NavigationMayaGesture.svg</file>
<file>icons/NavigationMayaGesture_Tilt.svg</file>
<file>icons/NavigationMayaGesture_TiltTouch.svg</file>
<file>icons/NavigationMayaGesture_ZoomAlt.svg</file>
<file>icons/NavigationMayaGesture_Zoom.svg</file>
<file>icons/NavigationMayaGesture_ZoomTouch.svg</file>
<file>icons/NavigationOpenCascade_PanAlt.svg</file>
<file>icons/NavigationOpenCascade_Pan.svg</file>
<file>icons/NavigationOpenCascade_Rotate.svg</file>
<file>icons/NavigationOpenCascade_Select.svg</file>
<file>icons/NavigationOpenCascade.svg</file>
<file>icons/NavigationOpenCascade_ZoomAlt.svg</file>
<file>icons/NavigationOpenCascade_Zoom.svg</file>
<file>icons/NavigationOpenInventor_Pan.svg</file>
<file>icons/NavigationOpenInventor_Rotate.svg</file>
<file>icons/NavigationOpenInventor_Select.svg</file>
<file>icons/NavigationOpenInventor.svg</file>
<file>icons/NavigationOpenInventor_ZoomAlt.svg</file>
<file>icons/NavigationOpenInventor_Zoom.svg</file>
<file>icons/NavigationTouchpad_Pan.svg</file>
<file>icons/NavigationTouchpad_PanTouch.svg</file>
<file>icons/NavigationTouchpad_RotateAlt.svg</file>
<file>icons/NavigationTouchpad_Rotate.svg</file>
<file>icons/NavigationTouchpad_RotateTouchAlt.svg</file>
<file>icons/NavigationTouchpad_RotateTouch.svg</file>
<file>icons/NavigationTouchpad_Select.svg</file>
<file>icons/NavigationTouchpad_SelectTouch.svg</file>
<file>icons/NavigationTouchpad.svg</file>
<file>icons/NavigationTouchpad_ZoomAlt.svg</file>
<file>icons/NavigationTouchpad_Zoom.svg</file>
<file>icons/NavigationTouchpad_ZoomTouch.svg</file>
<file>icons/NavigationUndefined.svg</file>
</qresource>
</RCC>

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" viewBox="0 0 63.999999 63.999999" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.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 id="layer1-7" transform="translate(0 -988.86)" stroke="#2e3436" stroke-width="6" fill="none">
<path id="path4144" d="m16 1028.4v-20c0-8 4-12 16-12s16 4 16 12v20c0 8-4 17-16 17s-16-9-16-17z"/>
<path id="path4209" d="m32 1004.4v12"/>
</g>
<g id="Ortho_0_-1" stroke-linejoin="round" transform="matrix(-1.0445 0 0 -1.0419 30.547 32.04)" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7515">
<g id="g4192" stroke-linejoin="round" transform="scale(1,-1)" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7515" fill="none">
<path id="path4194" stroke-linejoin="round" d="m13.917 7.4999c-0.454-2.6666-1.713-5.2777-3.917-7.4999 2.2038-2.2224 3.4631-4.8335 3.9168-7.5001" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7515"/>
</g>
</g>
<g id="g4153" stroke-linejoin="round" transform="matrix(1.0445 0 0 -1.0419 33.453 32.04)" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7517">
<g id="g4155" stroke-linejoin="round" transform="scale(1,-1)" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7517" fill="none">
<path id="path4157" stroke-linejoin="round" d="m13.917 7.4999c-0.454-2.6666-1.713-5.2777-3.917-7.4999 2.2038-2.2224 3.4631-4.8335 3.9168-7.5001" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7517"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
</g>
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
<g id="g4260" transform="translate(0 -1.3716)">
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
</g>
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 63.999999 63.999999">
<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 id="layer1" transform="translate(0 -988.36)" stroke="#2e3436" stroke-width="6" fill="none">
<path id="path4144" d="m16 1028.4v-20c0-8 4-12 16-12s16 4 16 12v20c0 8-4 17-16 17s-16-9-16-17z"/>
<path id="path4209" d="m32 1004.4v12"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 859 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
</g>
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
<g id="g4260" transform="translate(0 -1.3716)">
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
</g>
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8.0001 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<radialGradient id="radialGradient4373" cx="33.81" gradientUnits="userSpaceOnUse" cy="1026.8" r="11.356" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)">
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</radialGradient>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140-5" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="g4383" transform="translate(1.5573 1.0572)">
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4393" transform="translate(2.0142 2.8894)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
</g>
<g>
<circle id="path8939" cx="24" stroke="#729fcf" cy="1007.4" r="6.3" stroke-dasharray="2,2" stroke-width="2" fill="none"/>
<circle id="path5274" stroke-linejoin="bevel" cx="46" stroke-linecap="round" stroke="#2e3436" cy="1007.4" r="7.5" stroke-width="1.2" fill="#fff"/>
<path id="path4350" stroke-linejoin="round" d="m46 1001.4v6l3.8648-2.9168" stroke="#2e3436" stroke-width="1.6" fill="none"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<radialGradient id="radialGradient4373" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)" r="11.356"/>
<linearGradient id="linearGradient4365">
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140-2" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="g4676" transform="translate(1.2485 -1.2519)">
<g id="g4383" transform="translate(-5.291 3.75)">
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4393" transform="translate(-2.1827 7.9275)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
</g>
<g id="g4552" transform="translate(5.495 -8.7462)">
<path id="path4554" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4556" fill="#729fcf" transform="translate(49.333 10.148)">
<g id="g4558" transform="translate(-43.493 1.3512)">
<g id="g4560" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4562" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4564" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4566" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4568" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8.0001 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
<g id="g4259" transform="translate(-13.321 -65.064)">
<g id="g4262" transform="translate(-50.679 57.278)" fill="none">
<path id="path4170-6" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
<path id="path4145" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
</g>
<g id="g4280" transform="translate(-50.679 72.85)">
<g id="g4260" transform="translate(64 7.1285)">
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
</g>
<path id="path4220" d="m101 1032.5-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
</g>
<g id="g4271" transform="translate(-50.679 65.064)" fill="none">
<path id="path4215" d="m107.21 1026.4 6-6-6-6" stroke="#2e3436" stroke-width="4"/>
<path id="path4217" d="m108.21 1025.4 5-5-5-5" stroke="#729fcf" stroke-width="2"/>
</g>
<g id="g4276" transform="translate(-50.679 65.064)" fill="none">
<path id="path4221" d="m38 1024.4-6 6-6-6" transform="matrix(0 1 -1 0 1109.2 988.36)" stroke="#2e3436" stroke-width="4"/>
<path id="path4223" d="m83.872 1025.4-5-5 5-5" stroke="#729fcf" stroke-width="2"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
</g>
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
<path id="path5816" d="m20 1003.4h4"/>
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
<g>
<path id="path5820" d="m33 997.36h6"/>
<path id="path5822" d="m36 997.36v8"/>
<path id="path5826" d="m40 1002.4h6"/>
<path id="path5828" d="m43 999.36v6"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<radialGradient id="radialGradient4373" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)" r="11.356">
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</radialGradient>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="g4383" transform="translate(-.056787 -2.4616)">
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4393" transform="translate(.40006 -.62946)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="layer1-7" fill="#729fcf" transform="translate(-1.2837e-7 -.000018607)">
<g id="g4281" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="path3059" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4138" transform="matrix(.56104 0 0 -.55886 14.047 1590.6)" stroke="#eeeeec" stroke-width="2.8574" fill="#729fcf">
<g id="g4140" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4142" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<radialGradient id="radialGradient4373" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.17804 -.98402 -1.8068 -.32690 1875.4 1403.9)" r="11.356"/>
<linearGradient id="linearGradient4365">
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</linearGradient>
<radialGradient id="radialGradient4607" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(-.17804 .98402 1.8068 .32690 -1811.4 636.83)" r="11.356"/>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="g4197" transform="translate(0 -1.0001)">
<path id="path4317" d="m46.81 1038.7s-8.8575-0.2705-13.1-1.4051c-4.8952-1.3092-13.907-6.1404-13.907-6.1404" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4348" fill="#729fcf" transform="matrix(-.25882 -.96593 -.96593 .25882 1003.7 755.59)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4393" transform="matrix(-.12795 -.99178 -.99178 .12795 1048.2 932.48)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4375" d="m15.117 1021.8s2.3055 4.7927 3.8552 6.9364c2.0252 2.8016 7.0278 7.6265 7.0278 7.6265"/>
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
</g>
<g id="g4207" transform="translate(0 .99980)">
<path id="path4585" d="m17.189 1002s8.8575 0.2704 13.1 1.4051c4.8952 1.3091 13.907 6.1403 13.907 6.1403" stroke="url(#radialGradient4607)" stroke-width="10" fill="none"/>
<g id="g4587" fill="#729fcf" transform="matrix(.25882 .96593 .96593 -.25882 -939.73 1285.1)">
<g id="g4589" transform="translate(-43.493 1.3512)">
<g id="g4591" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4593" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4595" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4597" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4599" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4601" transform="matrix(.12795 .99178 .99178 -.12795 -984.21 1108.2)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4603" d="m15.117 1021.8s2.3055 4.7927 3.8552 6.9364c2.0252 2.8016 7.0278 7.6265 7.0278 7.6265"/>
<path id="path4605" d="m24 1029.4 2 7-7-3"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
</g>
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
<g id="g4260" transform="translate(0 -1.3716)">
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
</g>
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<linearGradient id="linearGradient5152">
<stop id="stop5154" stop-color="#8ae234" offset="0"/>
<stop id="stop5156" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</linearGradient>
<radialGradient id="radialGradient5160" xlink:href="#linearGradient5152" gradientUnits="userSpaceOnUse" cy="1030.8" cx="25.241" gradientTransform="matrix(.78044 .78045 -.66064 .66063 684.06 328.91)" r="11.036"/>
<radialGradient id="radialGradient5164" xlink:href="#linearGradient5152" gradientUnits="userSpaceOnUse" cy="1030.8" cx="25.241" gradientTransform="matrix(-.78044 -.78045 .68896 -.68895 -647.9 1739.7)" r="11.036"/>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="991.69" x="3.9727" fill="#eeeeec"/>
<path id="path5162" d="m47.5 1004.9-15 15" fill-rule="evenodd" stroke="url(#radialGradient5164)" stroke-width="10" fill="#8ae234"/>
<g id="g4340" fill="#729fcf" transform="translate(58.993 -16.851)">
<g id="layer1-7" transform="translate(-43.493 1.3512)">
<g id="g4281" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="path3059" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4138" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4140" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4142" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
<path id="path5130" d="m17.854 1034.5 15-15" fill-rule="evenodd" stroke="url(#radialGradient5160)" stroke-width="10" fill="#8ae234"/>
<g id="g4348" fill="#729fcf" transform="translate(29.318 12.824)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
<g id="g4368" transform="matrix(.70711 -.70711 .70711 .70711 -717.57 323.11)" stroke="#2e3436" fill="none">
<path id="path4364" d="m30 1042.4h20" stroke-width="2"/>
<path id="path4366" d="m44 1039.4 6 3-6 3" stroke-width="1.8"/>
</g>
<g id="g4378" transform="matrix(-.70711 .70711 .70711 .70711 -672.03 269.44)" stroke="#2e3436" fill="none">
<path id="path4380" d="m30 1042.4h20" stroke-width="2"/>
<path id="path4383" d="m44 1039.4 6 3-6 3" stroke-width="1.8"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 63.999999 63.999999">
<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 id="layer1" transform="translate(0 -988.36)" stroke="#2e3436" stroke-width="6" fill="none">
<path id="path4135" d="m16 1012.1 16 16 16-16"/>
<path id="path4144" d="m16 1028.4v-20c0-8 4-12 16-12s16 4 16 12v20c0 8-4 17-16 17s-16-9-16-17z"/>
<path id="path4209" d="m32 1004.4v12"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 910 B

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4151" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846"/>
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615"/>
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615"/>
</g>
<g stroke="#2e3436">
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
</g>
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
<path id="path5816" d="m20 1003.4h4"/>
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
<g>
<path id="path5820" d="m33 997.36h6"/>
<path id="path5822" d="m36 997.36v8"/>
<path id="path5826" d="m40 1002.4h6"/>
<path id="path5828" d="m43 999.36v6"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<radialGradient id="radialGradient4373" cx="33.81" gradientUnits="userSpaceOnUse" cy="1026.8" r="11.356" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)">
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</radialGradient>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140-5" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="g4383" transform="translate(1.5573 1.0572)">
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4393" transform="translate(2.0142 2.8894)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
</g>
<g>
<circle id="path8939" cx="24" stroke="#729fcf" cy="1007.4" r="6.3" stroke-dasharray="2,2" stroke-width="2" fill="none"/>
<circle id="path5274" stroke-linejoin="bevel" cx="46" stroke-linecap="round" stroke="#2e3436" cy="1007.4" r="7.5" stroke-width="1.2" fill="#fff"/>
<path id="path4350" stroke-linejoin="round" d="m46 1001.4v6l3.8648-2.9168" stroke="#2e3436" stroke-width="1.6" fill="none"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<radialGradient id="radialGradient4373" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)" r="11.356"/>
<linearGradient id="linearGradient4365">
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140-2" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="g4676" transform="translate(1.2485 -1.2519)">
<g id="g4383" transform="translate(-5.291 3.75)">
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4393" transform="translate(-2.1827 7.9275)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
</g>
<g id="g4552" transform="translate(5.495 -8.7462)">
<path id="path4554" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4556" fill="#729fcf" transform="translate(49.333 10.148)">
<g id="g4558" transform="translate(-43.493 1.3512)">
<g id="g4560" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4562" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4564" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4566" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4568" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
</g>
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
<path id="path5816" d="m20 1003.4h4"/>
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
<g>
<path id="path5820" d="m33 997.36h6"/>
<path id="path5822" d="m36 997.36v8"/>
<path id="path5826" d="m40 1002.4h6"/>
<path id="path5828" d="m43 999.36v6"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<radialGradient id="radialGradient4373" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)" r="11.356">
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</radialGradient>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="g4383" transform="translate(-.056787 -2.4616)">
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4393" transform="translate(.40006 -.62946)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="layer1-7" fill="#729fcf" transform="translate(-1.2837e-7 -.000018607)">
<g id="g4281" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="path3059" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4138" transform="matrix(.56104 0 0 -.55886 14.047 1590.6)" stroke="#eeeeec" stroke-width="2.8574" fill="#729fcf">
<g id="g4140" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4142" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
</g>
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
<path id="path5816" d="m20 1003.4h4"/>
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
<g>
<path id="path5820" d="m33 997.36h6"/>
<path id="path5822" d="m36 997.36v8"/>
<path id="path5826" d="m40 1002.4h6"/>
<path id="path5828" d="m43 999.36v6"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<radialGradient id="radialGradient4373" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.17804 -.98402 -1.8068 -.32690 1875.4 1403.9)" r="11.356"/>
<linearGradient id="linearGradient4365">
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</linearGradient>
<radialGradient id="radialGradient4607" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(-.17804 .98402 1.8068 .32690 -1811.4 636.83)" r="11.356"/>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="g4197" transform="translate(0 -1.0001)">
<path id="path4317" d="m46.81 1038.7s-8.8575-0.2705-13.1-1.4051c-4.8952-1.3092-13.907-6.1404-13.907-6.1404" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
<g id="g4348" fill="#729fcf" transform="matrix(-.25882 -.96593 -.96593 .25882 1003.7 755.59)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4393" transform="matrix(-.12795 -.99178 -.99178 .12795 1048.2 932.48)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4375" d="m15.117 1021.8s2.3055 4.7927 3.8552 6.9364c2.0252 2.8016 7.0278 7.6265 7.0278 7.6265"/>
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
</g>
<g id="g4207" transform="translate(0 .99980)">
<path id="path4585" d="m17.189 1002s8.8575 0.2704 13.1 1.4051c4.8952 1.3091 13.907 6.1403 13.907 6.1403" stroke="url(#radialGradient4607)" stroke-width="10" fill="none"/>
<g id="g4587" fill="#729fcf" transform="matrix(.25882 .96593 .96593 -.25882 -939.73 1285.1)">
<g id="g4589" transform="translate(-43.493 1.3512)">
<g id="g4591" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4593" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4595" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4597" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4599" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
</g>
<g id="g4601" transform="matrix(.12795 .99178 .99178 -.12795 -984.21 1108.2)" stroke="#2e3436" stroke-width="1.6" fill="none">
<path id="path4603" d="m15.117 1021.8s2.3055 4.7927 3.8552 6.9364c2.0252 2.8016 7.0278 7.6265 7.0278 7.6265"/>
<path id="path4605" d="m24 1029.4 2 7-7-3"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
</g>
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
<g id="g4260" transform="translate(0 -1.3716)">
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
</g>
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
</g>
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
<path id="path5816" d="m20 1003.4h4"/>
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
<g>
<path id="path5820" d="m33 997.36h6"/>
<path id="path5822" d="m36 997.36v8"/>
<path id="path5826" d="m40 1002.4h6"/>
<path id="path5828" d="m43 999.36v6"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs id="defs4201">
<linearGradient id="linearGradient5152">
<stop id="stop5154" stop-color="#8ae234" offset="0"/>
<stop id="stop5156" stop-color="#8ae234" stop-opacity="0" offset="1"/>
</linearGradient>
<radialGradient id="radialGradient5160" xlink:href="#linearGradient5152" gradientUnits="userSpaceOnUse" cy="1030.8" cx="25.241" gradientTransform="matrix(.78044 .78045 -.66064 .66063 684.06 328.91)" r="11.036"/>
<radialGradient id="radialGradient5164" xlink:href="#linearGradient5152" gradientUnits="userSpaceOnUse" cy="1030.8" cx="25.241" gradientTransform="matrix(-.78044 -.78045 .68896 -.68895 -647.9 1739.7)" r="11.036"/>
</defs>
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="991.69" x="3.9727" fill="#eeeeec"/>
<path id="path5162" d="m47.5 1004.9-15 15" fill-rule="evenodd" stroke="url(#radialGradient5164)" stroke-width="10" fill="#8ae234"/>
<g id="g4340" fill="#729fcf" transform="translate(58.993 -16.851)">
<g id="layer1-7" transform="translate(-43.493 1.3512)">
<g id="g4281" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="path3059" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4138" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4140" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4142" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
<path id="path5130" d="m17.854 1034.5 15-15" fill-rule="evenodd" stroke="url(#radialGradient5160)" stroke-width="10" fill="#8ae234"/>
<g id="g4348" fill="#729fcf" transform="translate(29.318 12.824)">
<g id="g4350" transform="translate(-43.493 1.3512)">
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
<ellipse id="ellipse4354" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
</g>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
</g>
<g id="g4368" transform="matrix(.70711 -.70711 .70711 .70711 -717.57 323.11)" stroke="#2e3436" fill="none">
<path id="path4364" d="m30 1042.4h20" stroke-width="2"/>
<path id="path4366" d="m44 1039.4 6 3-6 3" stroke-width="1.8"/>
</g>
<g id="g4378" transform="matrix(-.70711 .70711 .70711 .70711 -672.03 269.44)" stroke="#2e3436" fill="none">
<path id="path4380" d="m30 1042.4h20" stroke-width="2"/>
<path id="path4383" d="m44 1039.4 6 3-6 3" stroke-width="1.8"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 63.999999 63.999999">
<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 id="layer1" fill-rule="evenodd" transform="translate(0 -988.36)">
<path id="path8155" d="m38 1050.4-12-12 12-12 12 12z" fill="#2e3436"/>
<path id="path8161" d="m20 1032.4-12-12 12-12 12 12z" fill-opacity=".82353" fill="#2e3335"/>
<path id="path8163" d="m38 1014.4-12-12 12-12 12 12z" fill-opacity=".58824" fill="#2e3335"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 954 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
</g>
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
<g id="g4260" transform="translate(0 -1.3716)">
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
</g>
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" viewBox="0 0 64 64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.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 id="layer1" transform="translate(0 -988.36)">
<g id="g3341" fill-rule="evenodd" fill="#2e3436" transform="matrix(.93333 0 0 .92593 2.1334 75.583)">
<path id="path8233" d="m9.5 1006.9v27l22.5 13.5 22.5-13.5v-27l-22.5 13.5-22.5-13.5z"/>
<path id="path8251" d="m9.5 1006.9 22.5-13.54 22.5 13.54-22.5 13.5z" fill-opacity=".58824"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1009 B

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
</g>
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
<g id="g4260" transform="translate(0 -1.3716)">
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
</g>
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)" stroke="#2e3436" fill="none">
<path id="path4191" d="m32 1043.4v-15" stroke-width="6"/>
<path id="path4187" d="m8 1028.4h48" stroke-width="4"/>
<rect id="rect4185" style="color:#000000" ry="7" height="46" width="48" y="997.36" x="8" stroke-width="6"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 927 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 4.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4151-2" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4153-9" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846"/>
<path id="path4155-1" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615"/>
<path id="path4157-2" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615"/>
</g>
<g stroke="#2e3436">
<path id="path4159-7" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
<path id="path4161-0" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
<rect id="rect4163-9" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
</g>
<g id="g5846" transform="translate(-.50298 .34068)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
<path id="path5816" d="m20 1003.4h4"/>
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
<g>
<path id="path5820" d="m33 997.36h6"/>
<path id="path5822" d="m36 997.36v8"/>
<path id="path5826" d="m40 1002.4h6"/>
<path id="path5828" d="m43 999.36v6"/>
</g>
</g>
<g id="g4278" transform="matrix(.68275 0 0 .68275 -33.544 331.71)">
<g id="g4262" transform="translate(5e-6,-7.78576)" fill="none">
<path id="path4170-6" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
<path id="path4145" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
</g>
<g id="g4280" transform="translate(5e-6,7.785796)">
<g id="g4260" transform="translate(64 7.1285)">
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
</g>
<path id="path4220" d="m101 1032.5-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
</g>
<g id="g4271" fill="none">
<path id="path4215" d="m107.21 1026.4 6-6-6-6" stroke="#2e3436" stroke-width="4"/>
<path id="path4217" d="m108.21 1025.4 5-5-5-5" stroke="#729fcf" stroke-width="2"/>
</g>
<g id="g4276" fill="none">
<path id="path4221" d="m38 1024.4-6 6-6-6" transform="matrix(0 1 -1 0 1109.2 988.36)" stroke="#2e3436" stroke-width="4"/>
<path id="path4223" d="m83.872 1025.4-5-5 5-5" stroke="#729fcf" stroke-width="2"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" viewBox="0 0 64 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4151" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g id="g4311" transform="matrix(.72726 0 0 .72726 8.7275 286.29)">
<g stroke="#2e3436">
<path id="path4144" d="m11.5 1002.4v35c0 4 0 4 20 4 21 0 21 0 21-4v-35c0-3.0001 0-3.0001-21-3-20-0.00004-20-0.00004-20 3z" fill-rule="evenodd" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m12.5 1028.4c0 9-1 12 2 12h16v-12z" fill-rule="evenodd" stroke-width=".5" fill="#fff"/>
<path id="path4169" d="m31.5 1027.4v14" stroke-width="2" fill="none"/>
<path id="path4167" d="m11.5 1027.4h41" stroke-width="2" fill="none"/>
<path id="path4154" d="m51.5 1028.4c0 10 1 12-2 12h-17v-12z" fill-rule="evenodd" stroke-width=".5" fill="#fff"/>
</g>
<g id="g4356" transform="matrix(.56104 0 0 -.55886 14.047 1583.6)" stroke="#eeeeec" stroke-width="2.8574" fill="#729fcf">
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
</g>
</g>
<g id="g4262" transform="matrix(.67438 0 0 .67438 -32.74 326.31)" fill="none">
<path id="path4170-6" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
<path id="path4145" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
</g>
<g id="g4477" transform="matrix(.67438 0 0 -.67438 -32.74 1700.4)" fill="none">
<path id="path4479" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
<path id="path4481" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
</g>
<g id="g4493" transform="matrix(0 .67438 -.67438 0 721.05 948.62)" fill="none">
<path id="path4495" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
<path id="path4497" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
</g>
<g id="g4499" transform="matrix(0 .67438 .67438 0 -657.05 948.62)" fill="none">
<path id="path4501" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
<path id="path4503" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
</g>
</g>
<g id="g5846" transform="translate(-.50298 -.65930)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
<path id="path5816" d="m20 1003.4h4"/>
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
<g>
<path id="path5820" d="m33 997.36h6"/>
<path id="path5822" d="m36 997.36v8"/>
<path id="path5826" d="m40 1002.4h6"/>
<path id="path5828" d="m43 999.36v6"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g stroke="#2e3436">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
</g>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<g fill-rule="evenodd">
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<path id="path4144" d="m12 1002.4v35c0 4 0 4 20 4 21 0 21 0 21-4v-35c0-3 0-3-21-3-20-0.00004-20-0.00004-20 3z" stroke="#2e3436" stroke-width="2" fill="#fff"/>
<path id="path4195" d="m13 1028.4c0 9-1 12 2 12h16v-12z" stroke="#2e3436" stroke-width=".5" fill="#729fcf"/>
</g>
<g stroke="#2e3436">
<path id="path4169" d="m32 1027.4v14" stroke-width="2" fill="none"/>
<path id="path4167" d="m12 1027.4h41" stroke-width="2" fill="none"/>
<path id="path4154" d="m52 1028.4c0 10 1 12-2 12h-17v-12z" fill-rule="evenodd" stroke-width=".5" fill="#fff"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
<metadata id="metadata4204">
<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 id="layer1" transform="translate(0 -988.36)">
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
</g>
<g stroke="#2e3436">
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
</g>
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
<g id="g4260" transform="translate(0 -1.3716)">
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
</g>
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 63.999999 63.999999">
<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 id="layer1" transform="translate(0 -988.36)" stroke="#a40000" stroke-width="6" fill="none">
<path id="path4144" d="m16 1028.4v-20c0-8 4-12 16-12s16 4 16 12v20c0 8-4 17-16 17s-16-9-16-17z"/>
<path id="path4209" d="m32 1004.4v12"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 859 B