soylent r134 - in trunk: . data data/icons data/icons/16x16 data/icons/16x16/apps data/icons/22x22 data/icons/22x22/apps data/icons/24x24 data/icons/24x24/apps data/icons/32x32 data/icons/32x32/apps data/icons/48x48 data/icons/48x48/apps data/icons/scalable data/icons/scalable/apps



Author: treitter
Date: Wed Apr 16 05:25:39 2008
New Revision: 134
URL: http://svn.gnome.org/viewvc/soylent?rev=134&view=rev

Log:
Install icons based on Soylent logo by Hylke Bons; install a .desktop file

Added:
   trunk/data/   (props changed)
   trunk/data/Makefile.am
   trunk/data/icons/   (props changed)
   trunk/data/icons/16x16/   (props changed)
   trunk/data/icons/16x16/Makefile.am
   trunk/data/icons/16x16/apps/   (props changed)
   trunk/data/icons/16x16/apps/Makefile.am
   trunk/data/icons/16x16/apps/soylent.png   (contents, props changed)
   trunk/data/icons/16x16/apps/soylent.svg   (contents, props changed)
   trunk/data/icons/22x22/   (props changed)
   trunk/data/icons/22x22/Makefile.am
   trunk/data/icons/22x22/apps/   (props changed)
   trunk/data/icons/22x22/apps/Makefile.am
   trunk/data/icons/22x22/apps/soylent.png   (contents, props changed)
   trunk/data/icons/22x22/apps/soylent.svg   (contents, props changed)
   trunk/data/icons/24x24/   (props changed)
   trunk/data/icons/24x24/Makefile.am
   trunk/data/icons/24x24/apps/   (props changed)
   trunk/data/icons/24x24/apps/Makefile.am
   trunk/data/icons/24x24/apps/soylent.png   (contents, props changed)
   trunk/data/icons/24x24/apps/soylent.svg   (contents, props changed)
   trunk/data/icons/32x32/   (props changed)
   trunk/data/icons/32x32/Makefile.am
   trunk/data/icons/32x32/apps/   (props changed)
   trunk/data/icons/32x32/apps/Makefile.am
   trunk/data/icons/32x32/apps/soylent.png   (contents, props changed)
   trunk/data/icons/32x32/apps/soylent.svg
   trunk/data/icons/48x48/   (props changed)
   trunk/data/icons/48x48/Makefile.am
   trunk/data/icons/48x48/apps/   (props changed)
   trunk/data/icons/48x48/apps/Makefile.am
   trunk/data/icons/48x48/apps/soylent.png   (contents, props changed)
   trunk/data/icons/48x48/apps/soylent.svg   (contents, props changed)
   trunk/data/icons/Makefile.am
   trunk/data/icons/scalable/   (props changed)
   trunk/data/icons/scalable/Makefile.am
   trunk/data/icons/scalable/apps/   (props changed)
   trunk/data/icons/scalable/apps/Makefile.am
   trunk/data/icons/scalable/apps/soylent.svg
   trunk/data/soylent.desktop
Modified:
   trunk/Makefile.am
   trunk/configure.ac

Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am	(original)
+++ trunk/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -1,4 +1,4 @@
-SUBDIRS = src glade
+SUBDIRS = src data glade
 EXTRA_DIST =
 
 # Generate Changelog, copied from dbus-glib

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Wed Apr 16 05:25:39 2008
@@ -115,8 +115,22 @@
 
 AC_CONFIG_FILES(
   Makefile
-  src/Makefile
+  data/Makefile
+  data/icons/Makefile
+  data/icons/16x16/Makefile
+  data/icons/16x16/apps/Makefile
+  data/icons/22x22/Makefile
+  data/icons/22x22/apps/Makefile
+  data/icons/24x24/Makefile
+  data/icons/24x24/apps/Makefile
+  data/icons/32x32/Makefile
+  data/icons/32x32/apps/Makefile
+  data/icons/48x48/Makefile
+  data/icons/48x48/apps/Makefile
+  data/icons/scalable/Makefile
+  data/icons/scalable/apps/Makefile
   glade/Makefile
+  src/Makefile
 )
 AC_OUTPUT
 

Added: trunk/data/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,15 @@
+SUBDIRS = icons
+
+# TODO: uncomment the following lines once we handle translations
+# @INTLTOOL_DESKTOP_RULE@
+#DESKTOP_IN_FILES = soylent.desktop.in.in
+#DESKTOP_FILES = $(DESKTOP_IN_FILES:.desktop.in.in=.desktop)
+DESKTOP_FILES = soylent.desktop
+
+desktopdir = $(datadir)/applications
+desktop_DATA = $(DESKTOP_FILES)
+
+# TODO: uncomment the following line once we handle translations
+#EXTRA_DIST = $(DESKTOP_IN_FILES)
+
+DISTCLEANFILES = $(DESKTOP_FILES)

Added: trunk/data/icons/16x16/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/16x16/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+SUBDIRS = apps

Added: trunk/data/icons/16x16/apps/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/16x16/apps/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,15 @@
+themedir = $(datadir)/icons/hicolor
+size = 16x16
+context = apps
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = \
+	soylent.png
+
+noinst_DATA = \
+	soylent.svg
+
+EXTRA_DIST =		\
+	$(icons_DATA)	\
+	$(noinst_DATA)

Added: trunk/data/icons/16x16/apps/soylent.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/16x16/apps/soylent.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/16x16/apps/soylent.svg	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+link ../../32x32/apps/soylent.svg
\ No newline at end of file

Added: trunk/data/icons/22x22/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/22x22/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+SUBDIRS = apps

Added: trunk/data/icons/22x22/apps/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/22x22/apps/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,15 @@
+themedir = $(datadir)/icons/hicolor
+size = 22x22
+context = apps
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = \
+	soylent.png
+
+noinst_DATA = \
+	soylent.svg
+
+EXTRA_DIST =		\
+	$(icons_DATA)	\
+	$(noinst_DATA)

Added: trunk/data/icons/22x22/apps/soylent.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/22x22/apps/soylent.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/22x22/apps/soylent.svg	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+link ../../32x32/apps/soylent.svg
\ No newline at end of file

Added: trunk/data/icons/24x24/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/24x24/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+SUBDIRS = apps

Added: trunk/data/icons/24x24/apps/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/24x24/apps/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,15 @@
+themedir = $(datadir)/icons/hicolor
+size = 24x24
+context = apps
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = \
+	soylent.png
+
+noinst_DATA = \
+	soylent.svg
+
+EXTRA_DIST =		\
+	$(icons_DATA)	\
+	$(noinst_DATA)

Added: trunk/data/icons/24x24/apps/soylent.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/24x24/apps/soylent.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/24x24/apps/soylent.svg	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+link ../../32x32/apps/soylent.svg
\ No newline at end of file

Added: trunk/data/icons/32x32/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/32x32/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+SUBDIRS = apps

Added: trunk/data/icons/32x32/apps/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/32x32/apps/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,15 @@
+themedir = $(datadir)/icons/hicolor
+size = 32x32
+context = apps
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = \
+	soylent.png
+
+noinst_DATA = \
+	soylent.svg
+
+EXTRA_DIST =		\
+	$(icons_DATA)	\
+	$(noinst_DATA)

Added: trunk/data/icons/32x32/apps/soylent.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/32x32/apps/soylent.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/32x32/apps/soylent.svg	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,721 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/untitled folder 1"
+   sodipodi:docname="soylent.svg"
+   inkscape:export-filename="/shared/projects/soylent-svn/data/icons/48x48/apps/soylent.png"
+   inkscape:export-xdpi="94.688347"
+   inkscape:export-ydpi="94.688347"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3275">
+      <stop
+         style="stop-color:#ce5c00;stop-opacity:1;"
+         offset="0"
+         id="stop3277" />
+      <stop
+         style="stop-color:#a04900;stop-opacity:1"
+         offset="1"
+         id="stop3279" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3267">
+      <stop
+         style="stop-color:#ce5c00;stop-opacity:1;"
+         offset="0"
+         id="stop3269" />
+      <stop
+         style="stop-color:#a04800;stop-opacity:1"
+         offset="1"
+         id="stop3271" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3255">
+      <stop
+         style="stop-color:#cc6400;stop-opacity:1;"
+         offset="0"
+         id="stop3257" />
+      <stop
+         style="stop-color:#a04800;stop-opacity:1"
+         offset="1"
+         id="stop3259" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3459">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop3461" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop3463" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3435">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3437" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3439" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3241">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop3243" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop3245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3201">
+      <stop
+         style="stop-color:#cc6400;stop-opacity:1;"
+         offset="0"
+         id="stop3203" />
+      <stop
+         style="stop-color:#9c4600;stop-opacity:1"
+         offset="1"
+         id="stop3205" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       id="perspective56" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3104">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3106" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3108" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3114"
+       cx="9.9535837"
+       cy="14.472596"
+       fx="9.9535837"
+       fy="14.472596"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <filter
+       inkscape:collect="always"
+       x="-0.27879593"
+       width="1.5575919"
+       y="-0.78248727"
+       height="2.5649745"
+       id="filter3405">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.5438116"
+         id="feGaussianBlur3407" />
+    </filter>
+    <radialGradient
+       r="9.975256"
+       fy="18.005522"
+       fx="8.7359829"
+       cy="18.005522"
+       cx="8.7359829"
+       gradientTransform="matrix(-1.3308754,1.3308124,-1.4391023,-1.4390341,45.391773,16.51952)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2247"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3263">
+      <stop
+         style="stop-color:#555753;stop-opacity:1;"
+         offset="0"
+         id="stop3265" />
+      <stop
+         style="stop-color:#555753;stop-opacity:0;"
+         offset="1"
+         id="stop3267" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2216"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3263"
+       id="linearGradient3269"
+       x1="12.845698"
+       y1="16.037401"
+       x2="10.698112"
+       y2="15.449714"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       r="9.975256"
+       fy="18.005522"
+       fx="8.7359829"
+       cy="18.005522"
+       cx="8.7359829"
+       gradientTransform="matrix(-1.3308754,1.3308124,-1.4391023,-1.4390341,45.391773,16.51952)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3191"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3175"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,0,0,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientTransform="matrix(-1.3308754,1.3308124,-1.4391023,-1.4390341,45.391773,16.51952)"
+       gradientUnits="userSpaceOnUse"
+       r="9.975256"
+       fy="18.005522"
+       fx="8.7359829"
+       cy="18.005522"
+       cx="8.7359829"
+       id="radialGradient2214"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3313"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <radialGradient
+       r="2.5781252"
+       fy="11.083743"
+       fx="17.911736"
+       cy="11.083743"
+       cx="17.911736"
+       gradientTransform="matrix(-1.591138,1.574803,-1.783257,-1.76495,68.854751,-2.8442229)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2259"
+       xlink:href="#linearGradient2382"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2867">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1;"
+         offset="0"
+         id="stop2869" />
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:0;"
+         offset="1"
+         id="stop2871" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2847">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop2849" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop2851" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2382">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1;"
+         offset="0"
+         id="stop2384" />
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:0;"
+         offset="1"
+         id="stop2386" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2230"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2847"
+       id="linearGradient2853"
+       x1="12.5"
+       y1="18.202251"
+       x2="12.746171"
+       y2="20.761486"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2867"
+       id="linearGradient2873"
+       x1="12.720216"
+       y1="20.952612"
+       x2="12.720216"
+       y2="17.682426"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       gradientUnits="userSpaceOnUse"
+       r="9.975256"
+       fy="14.186539"
+       fx="8.3343515"
+       cy="14.186539"
+       cx="8.3343515"
+       id="radialGradient2303"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2349"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256" />
+    <radialGradient
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       gradientUnits="userSpaceOnUse"
+       r="9.975256"
+       fy="14.186539"
+       fx="8.3343515"
+       cy="14.186539"
+       cx="8.3343515"
+       id="radialGradient2233"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2264"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3201"
+       id="linearGradient3207"
+       x1="7.8184156"
+       y1="8.173789"
+       x2="18.192026"
+       y2="20.712566"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3241"
+       id="linearGradient3247"
+       x1="35.49905"
+       y1="0.50657952"
+       x2="35.551395"
+       y2="22.039816"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3201"
+       id="linearGradient3359"
+       gradientUnits="userSpaceOnUse"
+       x1="9.475956"
+       y1="11.422568"
+       x2="5.594718"
+       y2="19.718042"
+       gradientTransform="matrix(-0.9522321,0,0,0.9522321,23.242203,16.541612)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3361"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7630443,0.766914,0.7751473,-0.7790781,-5.0817225,28.036033)"
+       cx="9.9535837"
+       cy="14.472596"
+       fx="9.9535837"
+       fy="14.472596"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3241"
+       id="linearGradient3363"
+       gradientUnits="userSpaceOnUse"
+       x1="35.49905"
+       y1="0.50657952"
+       x2="35.551395"
+       y2="22.039816"
+       gradientTransform="matrix(-0.7047182,8.3803161e-2,8.3376379e-2,0.7083255,33.582869,2.2786359)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3435"
+       id="linearGradient3441"
+       x1="17.159252"
+       y1="6.9987593"
+       x2="21.141552"
+       y2="16.337927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,2)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3459"
+       id="linearGradient3465"
+       x1="3.1665602"
+       y1="3.8351018"
+       x2="10.428855"
+       y2="20.84375"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3255"
+       id="linearGradient3261"
+       x1="21.355902"
+       y1="13.928572"
+       x2="21.465527"
+       y2="19.107143"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3267"
+       id="linearGradient3273"
+       x1="34.375"
+       y1="36.982143"
+       x2="29.854624"
+       y2="36.982143"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3275"
+       id="linearGradient3281"
+       x1="13.714286"
+       y1="33.011333"
+       x2="10.995299"
+       y2="32.564903"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="11.2"
+     inkscape:cx="17.302666"
+     inkscape:cy="24.218715"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fce94f"
+     inkscape:window-width="1280"
+     inkscape:window-height="751"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="9"
+     gridtolerance="9">
+    <inkscape:grid
+       type="xygrid"
+       id="grid2429"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       transform="matrix(1.0534379,0,0,0.8447567,1.6769599,27.165836)"
+       style="opacity:0.64044949;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter3405)"
+       d="M 17.393564,10.457643 C 17.393564,11.764527 14.416645,12.825188 10.748654,12.825188 C 7.0806641,12.825188 4.1037445,11.764527 4.1037445,10.457643 C 4.1037445,9.1507576 7.0806641,8.0900974 10.748654,8.0900974 C 14.416645,8.0900974 17.393564,9.1507576 17.393564,10.457643 z"
+       id="path3315" />
+    <path
+       style="fill:#edd400;fill-opacity:1;stroke:url(#linearGradient3359);stroke-width:1.00248122;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 2.5012416,27 C 2.5012416,32.243315 6.7566859,36.498759 12.000001,36.498759 C 17.243315,36.498759 21.498759,32.243315 21.498759,27 C 21.498759,21.756685 17.243315,17.501241 12.000001,17.501241 C 6.7566859,17.501241 2.5012416,21.756685 2.5012416,27 z"
+       id="path3317" />
+    <path
+       style="opacity:0.79545456;fill:url(#radialGradient3361);fill-opacity:1;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 4.1136247,27.22719 C 4.1136247,31.755001 7.7696557,35.429746 12.274408,35.429746 C 16.77916,35.429746 20.43519,31.755001 20.43519,27.22719 C 20.43519,22.699379 16.77916,19.024634 12.274408,19.024634 C 7.7696557,19.024634 4.1136247,22.699379 4.1136247,27.22719 z"
+       id="path3319" />
+    <path
+       style="opacity:0.64044949;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 3.4999992,27 C 3.4999992,31.691999 7.3079996,35.499999 12,35.499999 C 16.692,35.499999 20.5,31.691999 20.5,27 C 20.5,22.308 16.692,18.5 12,18.5 C 7.3079996,18.5 3.4999992,22.308 3.4999992,27 z"
+       id="path3321" />
+    <path
+       style="opacity:1;fill:url(#linearGradient3281);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 7.9999999,30.058379 C 8.5736374,31.687311 10.970008,34 13.321188,34 C 15.672365,34 17.207377,31.687311 17.781014,30.058379 C 16.750343,31.113164 14.940174,32.229847 12.890507,32.229847 C 10.84084,32.229848 9.0306719,31.113164 7.9999999,30.058379 z"
+       id="path3327"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000011999999994;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 13.5,21.683103 C 14.343176,20.281558 15.84254,20.099108 16.846796,21.275849 C 17.143794,21.623858 17.346194,22.00317 17.5,22.5"
+       id="path3331" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:url(#linearGradient3363);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.7265389,10.5 L 14.103142,18.151899 C 13.393618,19.03732 12.425205,19.741354 10.995189,20.204864 C 9.5382218,20.677111 7.6461663,20.886344 5.5,20.948117 L 6.7265389,10.5 z"
+       id="path3337" />
+    <path
+       style="fill:#729fcf;fill-opacity:1;stroke:none;stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.0873164,8.5001211 L 4.5521909,21.521063 C 9.7609142,21.503729 13.481913,20.510303 15.11294,17.885947 L 6.0873164,8.5001211 z"
+       id="path3329"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="opacity:0.22439025;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.3755804,9.3509679 C 6.3755804,9.3509679 8.5982826,18.758371 10.785782,21.035156 C 10.785782,21.035156 6.8616791,21.024946 4.8998271,21.452223 C 4.8998271,21.452223 6.3755804,9.3509679 6.3755804,9.3509679 z"
+       id="path3339"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 9.0000018,14 C 9.0000018,14.551999 9.4480022,14.999999 10.000003,14.999999 C 10.552003,14.999999 11.000004,14.551999 11.000004,14 C 11.000004,13.448 10.552003,13 10.000003,13 C 9.4480022,13 9.0000018,13.448 9.0000018,14 z"
+       id="path3343" />
+    <path
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 9.9999992,17.5 C 9.9999992,18.328 10.671999,19 11.499999,19 C 12.328,19 13.000001,18.328 13.000001,17.5 C 13.000001,16.672 12.328,16 11.499999,16 C 10.671999,16 9.9999992,16.672 9.9999992,17.5 z"
+       id="path3345" />
+    <path
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.0000017,17 C 6.0000017,17.552 6.4480015,18 7.000001,18 C 7.5520011,18 8.0000009,17.552 8.0000009,17 C 8.0000009,16.448 7.5520011,16 7.000001,16 C 6.4480015,16 6.0000017,16.448 6.0000017,17 z"
+       id="path3347" />
+    <path
+       transform="matrix(1.4296658,0,0,1.055946,20.133016,32.457294)"
+       style="opacity:0.64044949;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter3405)"
+       d="M 17.393564,10.457643 C 17.393564,11.764527 14.416645,12.825188 10.748654,12.825188 C 7.0806641,12.825188 4.1037445,11.764527 4.1037445,10.457643 C 4.1037445,9.1507576 7.0806641,8.0900974 10.748654,8.0900974 C 14.416645,8.0900974 17.393564,9.1507576 17.393564,10.457643 z"
+       id="path3140" />
+    <path
+       transform="matrix(1.3031003,0,0,1.3031003,18.115392,17.188018)"
+       style="fill:#edd400;fill-opacity:1;stroke:url(#linearGradient3207);stroke-width:0.76930481;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 21.781414,10.983024 C 21.781414,16.489365 17.312499,20.95828 11.806158,20.95828 C 6.2998168,20.95828 1.8309021,16.489365 1.8309021,10.983024 C 1.8309021,5.4766824 6.2998168,1.0077677 11.806158,1.0077677 C 17.312499,1.0077677 21.781414,5.4766824 21.781414,10.983024 z"
+       id="path1307" />
+    <path
+       transform="matrix(1.1528526,0,0,1.1528526,19.88924,18.838192)"
+       style="opacity:0.79545456;fill:url(#radialGradient3114);fill-opacity:1;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 21.781414,10.983024 C 21.781414,16.489365 17.312499,20.95828 11.806158,20.95828 C 6.2998168,20.95828 1.8309021,16.489365 1.8309021,10.983024 C 1.8309021,5.4766824 6.2998168,1.0077677 11.806158,1.0077677 C 17.312499,1.0077677 21.781414,5.4766824 21.781414,10.983024 z"
+       id="path3102" />
+    <path
+       transform="matrix(1.2029767,0,0,1.2029766,19.297467,18.287679)"
+       style="opacity:0.64044949;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.83127129;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 21.781414,10.983024 C 21.781414,16.489365 17.312499,20.95828 11.806158,20.95828 C 6.2998168,20.95828 1.8309021,16.489365 1.8309021,10.983024 C 1.8309021,5.4766824 6.2998168,1.0077677 11.806158,1.0077677 C 17.312499,1.0077677 21.781414,5.4766824 21.781414,10.983024 z"
+       id="path2184" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 30.5,29.000002 C 30.5,30.932002 29.156002,32.500002 27.500001,32.500002 C 25.844001,32.500002 24.5,30.932002 24.5,29.000002 C 24.5,27.068002 25.844001,25.500002 27.500001,25.500002 C 29.156002,25.500002 30.5,27.068002 30.5,29.000002 z"
+       id="path3154" />
+    <path
+       transform="matrix(2.9241584,0,0,1.8028348,7.115385,11.597817)"
+       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:0.43553358;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10.732871,9.6526775 C 10.732871,10.724323 10.273252,11.594064 9.7069349,11.594064 C 9.1406182,11.594064 8.6809988,10.724323 8.6809988,9.6526775 C 8.6809988,8.5810319 9.1406182,7.7112906 9.7069349,7.7112906 C 10.273252,7.7112906 10.732871,8.5810319 10.732871,9.6526775 z"
+       id="path3152" />
+    <path
+       style="opacity:1;fill:url(#linearGradient3273);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 38.783196,34 C 37.974838,36.283765 37.303043,39.964286 33.989812,39.964286 C 30.676583,39.964286 25.808358,36.283765 25,34 C 26.4524,35.478811 29.003251,37.044402 31.891598,37.044402 C 34.779944,37.044403 37.330796,35.478811 38.783196,34 z"
+       id="path2186"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       style="fill:#ad7fa8;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 42.218715,5.2446107 L 44.381981,23.5 C 37.041959,23.475698 31.798408,22.082912 29.5,18.40356 L 42.218715,5.2446107 z"
+       id="rect3213"
+       sodipodi:nodetypes="cccc" />
+    <path
+       transform="matrix(-2.8035553,0.6989294,0.5296995,1.839284,46.227612,3.031559)"
+       style="fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:0.42536804000000000;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 7.2133909,8.4869402 C 7.4999714,7.6160335 8.2309591,7.2390614 8.84506,7.6454846 C 9.0266743,7.7656803 9.1640655,7.9196994 9.288462,8.1425499"
+       id="path2261" />
+    <path
+       transform="matrix(0.9930738,0.1174922,-0.1174922,0.9930738,3.5613433,-3.8603909)"
+       style="fill:#ad7fa8;fill-opacity:1;stroke:url(#linearGradient3247);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 38.9375,7 L 29.875,18.875 C 31.013771,19.99029 32.484958,20.810172 34.5625,21.21875 C 36.679197,21.635028 39.36144,21.613079 42.375,21.34375 L 38.9375,7 z"
+       id="path3239" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;opacity:0.22439024"
+       d="M 41.8125,6.4375 L 30.1875,18.4375 C 31.271485,19.973701 33.704151,21.615243 36.46875,22.214286 C 36.46875,22.214286 37.303571,13.714286 41.8125,6.4375 z"
+       id="path3251"
+       sodipodi:nodetypes="cccc" />
+    <path
+       transform="matrix(0.8399997,0,0,0.84,6.4625128,4.7674993)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3255" />
+    <path
+       transform="matrix(0.84,0,0,0.84,4.4625005,-1.2325007)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3257" />
+    <path
+       transform="matrix(1.1199999,0,0,1.12,-10.049996,-0.3100009)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3259" />
+    <path
+       transform="matrix(0.84,0,0,0.84,8.4625004,8.7674993)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3263" />
+    <path
+       transform="matrix(0.84,0,0,0.84,8.4625005,0.7674993)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3265" />
+    <path
+       transform="matrix(1.4757805,0,0,1.0301907,12.188751,18.0559)"
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10.732871,9.6526775 C 10.732871,10.724323 10.273252,11.594064 9.7069349,11.594064 C 9.1406182,11.594064 8.6809988,10.724323 8.6809988,9.6526775 C 8.6809988,8.5810319 9.1406182,7.7112906 9.7069349,7.7112906 C 10.273252,7.7112906 10.732871,8.5810319 10.732871,9.6526775 z"
+       id="path2172" />
+    <path
+       transform="matrix(1.4620794,0,0,1.0301907,20.30769,18.0559)"
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10.732871,9.6526775 C 10.732871,10.724323 10.273252,11.594064 9.7069349,11.594064 C 9.1406182,11.594064 8.6809988,10.724323 8.6809988,9.6526775 C 8.6809988,8.5810319 9.1406182,7.7112906 9.7069349,7.7112906 C 10.273252,7.7112906 10.732871,8.5810319 10.732871,9.6526775 z"
+       id="path3148" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.027895"
+       inkscape:original="M 6.09375 8.5 L 4.5625 21.53125 C 9.7712234 21.513916 13.493973 20.499356 15.125 17.875 L 6.09375 8.5 z "
+       style="fill:none;fill-opacity:1;stroke:url(#linearGradient3465);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       id="path3457"
+       d="M 6.875,10.8125 L 5.75,20.34375 C 7.6850387,20.259836 9.5518565,20.151375 10.875,19.71875 C 12.173341,19.294235 13.048057,18.66161 13.71875,17.90625 L 6.875,10.8125 z" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 17.5,26.058379 C 17.5,27.438379 16.380001,28.558379 15,28.558379 C 13.62,28.558379 12.499999,27.438379 12.499999,26.058379 C 12.499999,24.678379 13.62,23.558379 15,23.558379 C 16.380001,23.558379 17.5,24.678379 17.5,26.058379 z"
+       id="path3467" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12.499999,26.058379 C 12.499999,27.438379 11.380001,28.558379 9.9999999,28.558379 C 8.620001,28.558379 7.5,27.438379 7.5,26.058379 C 7.5,24.678379 8.620001,23.558379 9.9999999,23.558379 C 11.380001,23.558379 12.499999,24.678379 12.499999,26.058379 z"
+       id="path3471" />
+    <path
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 17,26.558379 C 17,27.386379 16.545703,28.058379 15.985944,28.058379 C 15.426184,28.058379 14.971887,27.386379 14.971887,26.558379 C 14.971887,25.730379 15.426184,25.058379 15.985944,25.058379 C 16.545703,25.058379 17,25.730379 17,26.558379 z"
+       id="path3473" />
+    <path
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12,26.558379 C 12,27.386379 11.545703,28.058379 10.985944,28.058379 C 10.426184,28.058379 9.9718869,27.386379 9.9718869,26.558379 C 9.9718869,25.730379 10.426184,25.058379 10.985944,25.058379 C 11.545703,25.058379 12,25.730379 12,26.558379 z"
+       id="path3475" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#3465a4;stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.0873164,8.5001211 L 4.5521909,21.521063 C 9.7609142,21.503729 13.481913,20.510303 15.11294,17.885947 L 6.0873164,8.5001211 z"
+       id="path3351"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#5c3566;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 42.218715,5.2446107 L 44.381981,23.5 C 37.979459,23.073912 31.798408,22.082912 29.5,18.40356 L 42.218715,5.2446107 z"
+       id="path3261"
+       sodipodi:nodetypes="cccc" />
+    <path
+       transform="matrix(2.8035552,0.6989294,-0.5296995,1.839284,17.772388,3.031559)"
+       style="fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:0.42536804000000000;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 7.2133909,8.4869402 C 7.4999714,7.6160335 8.2309591,7.2390614 8.84506,7.6454846 C 9.0266743,7.7656803 9.1640655,7.9196994 9.288462,8.1425499"
+       id="path2259" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#3465a4;stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.0873164,8.5001211 L 4.5521909,21.521063 C 9.7609142,21.503729 13.481913,20.510303 15.11294,17.885947 L 6.0873164,8.5001211 z"
+       id="path3264"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000011999999994;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 11.5,21.683104 C 10.446031,20.281559 8.5718262,20.099109 7.3165066,21.27585 C 6.9452582,21.623859 6.6922582,22.003171 6.500001,22.5"
+       id="path3353" />
+  </g>
+</svg>

Added: trunk/data/icons/48x48/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/48x48/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+SUBDIRS = apps

Added: trunk/data/icons/48x48/apps/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/48x48/apps/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,15 @@
+themedir = $(datadir)/icons/hicolor
+size = 48x48
+context = apps
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = \
+	soylent.png
+
+noinst_DATA = \
+	soylent.svg
+
+EXTRA_DIST =		\
+	$(icons_DATA)	\
+	$(noinst_DATA)

Added: trunk/data/icons/48x48/apps/soylent.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/48x48/apps/soylent.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/48x48/apps/soylent.svg	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+link ../../scalable/apps/soylent.svg
\ No newline at end of file

Added: trunk/data/icons/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,14 @@
+SUBDIRS = 16x16 22x22 24x24 32x32 48x48 scalable
+
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
+
+install-data-hook: update-icon-cache
+uninstall-hook: update-icon-cache
+update-icon-cache:
+	@-if test -z "$(DESTDIR)"; then \
+		echo "Updating Gtk icon cache."; \
+		$(gtk_update_icon_cache); \
+	else \
+		echo "*** Icon cache not updated.  After (un)install, run this:"; \
+		echo "***   $(gtk_update_icon_cache)"; \
+	fi

Added: trunk/data/icons/scalable/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/scalable/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1 @@
+SUBDIRS = apps

Added: trunk/data/icons/scalable/apps/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/scalable/apps/Makefile.am	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,25 @@
+themedir = $(datadir)/icons/hicolor
+size = scalable
+context = apps
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = \
+	soylent.svg
+
+noinst_DATA =
+
+EXTRA_DIST =		\
+	$(icons_DATA)	\
+	$(noinst_DATA)
+
+gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
+
+install-data-hook:
+	@-if test -z "$(DESTDIR)"; then \
+		echo "Updating Gtk icon cache."; \
+		$(gtk_update_icon_cache); \
+	else \
+		echo "*** Icon cache not updated.  After install, run this:"; \
+		echo "***   $(gtk_update_icon_cache)"; \
+	fi

Added: trunk/data/icons/scalable/apps/soylent.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/scalable/apps/soylent.svg	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,766 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/untitled folder 1"
+   sodipodi:docname="soylent.svg"
+   inkscape:export-filename="/home/hbons/Desktop/newstyle.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3275">
+      <stop
+         style="stop-color:#ce5c00;stop-opacity:1;"
+         offset="0"
+         id="stop3277" />
+      <stop
+         style="stop-color:#a04900;stop-opacity:1"
+         offset="1"
+         id="stop3279" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3267">
+      <stop
+         style="stop-color:#ce5c00;stop-opacity:1;"
+         offset="0"
+         id="stop3269" />
+      <stop
+         style="stop-color:#a04800;stop-opacity:1"
+         offset="1"
+         id="stop3271" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3255">
+      <stop
+         style="stop-color:#cc6400;stop-opacity:1;"
+         offset="0"
+         id="stop3257" />
+      <stop
+         style="stop-color:#a04800;stop-opacity:1"
+         offset="1"
+         id="stop3259" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3459">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop3461" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop3463" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3435">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3437" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3439" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3241">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop3243" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop3245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3201">
+      <stop
+         style="stop-color:#cc6400;stop-opacity:1;"
+         offset="0"
+         id="stop3203" />
+      <stop
+         style="stop-color:#9c4600;stop-opacity:1"
+         offset="1"
+         id="stop3205" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       id="perspective56" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3104">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3106" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3108" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3114"
+       cx="9.9535837"
+       cy="14.472596"
+       fx="9.9535837"
+       fy="14.472596"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <filter
+       inkscape:collect="always"
+       x="-0.27879593"
+       width="1.5575919"
+       y="-0.78248727"
+       height="2.5649745"
+       id="filter3405">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.5438116"
+         id="feGaussianBlur3407" />
+    </filter>
+    <radialGradient
+       r="9.975256"
+       fy="18.005522"
+       fx="8.7359829"
+       cy="18.005522"
+       cx="8.7359829"
+       gradientTransform="matrix(-1.3308754,1.3308124,-1.4391023,-1.4390341,45.391773,16.51952)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2247"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3263">
+      <stop
+         style="stop-color:#555753;stop-opacity:1;"
+         offset="0"
+         id="stop3265" />
+      <stop
+         style="stop-color:#555753;stop-opacity:0;"
+         offset="1"
+         id="stop3267" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2216"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3263"
+       id="linearGradient3269"
+       x1="12.845698"
+       y1="16.037401"
+       x2="10.698112"
+       y2="15.449714"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       r="9.975256"
+       fy="18.005522"
+       fx="8.7359829"
+       cy="18.005522"
+       cx="8.7359829"
+       gradientTransform="matrix(-1.3308754,1.3308124,-1.4391023,-1.4390341,45.391773,16.51952)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3191"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3175"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,0,0,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientTransform="matrix(-1.3308754,1.3308124,-1.4391023,-1.4390341,45.391773,16.51952)"
+       gradientUnits="userSpaceOnUse"
+       r="9.975256"
+       fy="18.005522"
+       fx="8.7359829"
+       cy="18.005522"
+       cx="8.7359829"
+       id="radialGradient2214"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3313"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <radialGradient
+       r="2.5781252"
+       fy="11.083743"
+       fx="17.911736"
+       cy="11.083743"
+       cx="17.911736"
+       gradientTransform="matrix(-1.591138,1.574803,-1.783257,-1.76495,68.854751,-2.8442229)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2259"
+       xlink:href="#linearGradient2382"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2867">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1;"
+         offset="0"
+         id="stop2869" />
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:0;"
+         offset="1"
+         id="stop2871" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2847">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop2849" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop2851" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2382">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1;"
+         offset="0"
+         id="stop2384" />
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:0;"
+         offset="1"
+         id="stop2386" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2230"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2847"
+       id="linearGradient2853"
+       x1="12.5"
+       y1="18.202251"
+       x2="12.746171"
+       y2="20.761486"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2867"
+       id="linearGradient2873"
+       x1="12.720216"
+       y1="20.952612"
+       x2="12.720216"
+       y2="17.682426"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       gradientUnits="userSpaceOnUse"
+       r="9.975256"
+       fy="14.186539"
+       fx="8.3343515"
+       cy="14.186539"
+       cx="8.3343515"
+       id="radialGradient2303"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2349"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256" />
+    <radialGradient
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       gradientUnits="userSpaceOnUse"
+       r="9.975256"
+       fy="14.186539"
+       fx="8.3343515"
+       cy="14.186539"
+       cx="8.3343515"
+       id="radialGradient2233"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient2264"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)"
+       cx="8.3343515"
+       cy="14.186539"
+       fx="8.3343515"
+       fy="14.186539"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3201"
+       id="linearGradient3207"
+       x1="7.8184156"
+       y1="8.173789"
+       x2="18.192026"
+       y2="20.712566"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3241"
+       id="linearGradient3247"
+       x1="35.49905"
+       y1="0.50657952"
+       x2="35.551395"
+       y2="22.039816"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3201"
+       id="linearGradient3359"
+       gradientUnits="userSpaceOnUse"
+       x1="9.475956"
+       y1="11.422568"
+       x2="5.594718"
+       y2="19.718042"
+       gradientTransform="matrix(-0.9522321,0,0,0.9522321,23.242203,16.541612)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3361"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7630443,0.766914,0.7751473,-0.7790781,-5.0817225,28.036033)"
+       cx="9.9535837"
+       cy="14.472596"
+       fx="9.9535837"
+       fy="14.472596"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3241"
+       id="linearGradient3363"
+       gradientUnits="userSpaceOnUse"
+       x1="35.49905"
+       y1="0.50657952"
+       x2="35.551395"
+       y2="22.039816"
+       gradientTransform="matrix(-0.7047182,8.3803161e-2,8.3376379e-2,0.7083255,33.582869,2.2786359)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3435"
+       id="linearGradient3441"
+       x1="17.159252"
+       y1="6.9987593"
+       x2="21.141552"
+       y2="16.337927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,2)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3459"
+       id="linearGradient3465"
+       x1="3.1665602"
+       y1="3.8351018"
+       x2="10.428855"
+       y2="20.84375"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3255"
+       id="linearGradient3261"
+       x1="21.355902"
+       y1="13.928572"
+       x2="21.465527"
+       y2="19.107143"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3267"
+       id="linearGradient3273"
+       x1="34.375"
+       y1="36.982143"
+       x2="29.854624"
+       y2="36.982143"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3275"
+       id="linearGradient3281"
+       x1="13.714286"
+       y1="33.011333"
+       x2="10.995299"
+       y2="32.564903"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="11.2"
+     inkscape:cx="17.302666"
+     inkscape:cy="27.790144"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fce94f"
+     inkscape:window-width="1280"
+     inkscape:window-height="751"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="9"
+     gridtolerance="9">
+    <inkscape:grid
+       type="xygrid"
+       id="grid2429"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       style="fill:#edde60;fill-opacity:1;stroke:url(#linearGradient3261);stroke-width:1.00248121999999995;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20,8.5 C 16.412684,8.5 13.5,11.412685 13.5,15 C 13.5,15.213555 13.511086,15.416707 13.53125,15.625 C 12.388778,13.759256 10.34652,12.5 8,12.5 C 4.412685,12.5 1.5,15.412685 1.5,19 C 1.5,22.587316 4.412685,25.5 8,25.5 C 8.886439,25.5 9.72983,25.321816 10.5,25 C 10.5,28.587316 13.412685,31.5 17,31.5 C 19.61575,31.5 21.8759,29.947986 22.90625,27.71875 C 23.827056,28.219167 24.878964,28.5 26,28.5 C 28.700876,28.500001 31.019464,26.84662 32,24.5 C 33.006441,24.5 33.961824,24.28396 34.8125,23.875 C 35.997976,25.459845 37.870032,26.5 40,26.5 C 43.587315,26.500001 46.5,23.587316 46.5,20 C 46.500002,16.412685 43.587315,13.5 40,13.5 C 38.993559,13.5 38.038176,13.71604 37.1875,14.125 C 36.002024,12.540155 34.129968,11.5 32,11.5 C 29.662777,11.5 27.613906,12.740301 26.46875,14.59375 C 26.255113,11.198993 23.448327,8.5 20,8.5 z"
+       id="path3395"
+       sodipodi:nodetypes="cscssscscsccssscscc" />
+    <path
+       style="opacity:0.65853660000000003;fill:url(#linearGradient3441);fill-opacity:1;stroke:#ffffff;stroke-width:1.00248121999999995;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20,9.5 C 16.945698,9.5 14.5,11.945699 14.5,15 C 14.5,15.179477 14.482417,15.349624 14.5,15.53125 C 14.528874,15.979547 14.250715,16.390568 13.823811,16.530416 C 13.396907,16.670264 12.92947,16.50349 12.6875,16.125 C 11.7149,14.53667 9.994227,13.5 8,13.5 C 4.945699,13.5 2.5,15.945699 2.5,19 C 2.5,22.054302 4.945699,24.5 8,24.5 C 8.754481,24.5 9.471487,24.366821 10.125,24.09375 C 10.429676,23.96227 10.780081,23.993069 11.05715,24.175683 C 11.334218,24.358296 11.50069,24.668166 11.5,25 C 11.5,28.054302 13.945699,30.5 17,30.5 C 19.226244,30.5 21.126712,29.201921 22,27.3125 C 22.110824,27.059451 22.322837,26.864585 22.584314,26.775445 C 22.84579,26.686306 23.132684,26.711089 23.375,26.84375 C 24.155165,27.267735 25.043418,27.5 26,27.5 C 28.299008,27.500001 30.262679,26.113921 31.09375,24.125 C 31.240314,23.751511 31.598805,23.504275 32,23.5 C 32.865525,23.5 33.66175,23.342893 34.375,23 C 34.79628,22.790614 35.306825,22.908433 35.59375,23.28125 C 36.605177,24.633412 38
 .190614,25.5 40,25.5 C 43.054301,25.500001 45.5,23.054302 45.5,20 C 45.500002,16.9457 43.054301,14.5 40,14.5 C 39.134475,14.5 38.33825,14.657107 37.625,15 C 37.20372,15.209386 36.693175,15.091567 36.40625,14.71875 C 35.394823,13.366588 33.809386,12.5 32,12.5 C 30.011148,12.5 28.284853,13.551235 27.3125,15.125 C 27.082976,15.483885 26.648716,15.654502 26.236281,15.547838 C 25.823846,15.441174 25.526753,15.081414 25.5,14.65625 C 25.318264,11.768402 22.934511,9.5 20,9.5 z"
+       id="path3422"
+       sodipodi:nodetypes="cssscssssssscssscsscsssscscssc" />
+    <path
+       transform="matrix(1.0534379,0,0,0.8447567,1.6769599,27.165836)"
+       style="opacity:0.64044949;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter3405)"
+       d="M 17.393564,10.457643 C 17.393564,11.764527 14.416645,12.825188 10.748654,12.825188 C 7.0806641,12.825188 4.1037445,11.764527 4.1037445,10.457643 C 4.1037445,9.1507576 7.0806641,8.0900974 10.748654,8.0900974 C 14.416645,8.0900974 17.393564,9.1507576 17.393564,10.457643 z"
+       id="path3315" />
+    <path
+       style="fill:#edd400;fill-opacity:1;stroke:url(#linearGradient3359);stroke-width:1.00248122;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 2.5012416,27 C 2.5012416,32.243315 6.7566859,36.498759 12.000001,36.498759 C 17.243315,36.498759 21.498759,32.243315 21.498759,27 C 21.498759,21.756685 17.243315,17.501241 12.000001,17.501241 C 6.7566859,17.501241 2.5012416,21.756685 2.5012416,27 z"
+       id="path3317" />
+    <path
+       style="opacity:0.79545456;fill:url(#radialGradient3361);fill-opacity:1;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 4.1136247,27.22719 C 4.1136247,31.755001 7.7696557,35.429746 12.274408,35.429746 C 16.77916,35.429746 20.43519,31.755001 20.43519,27.22719 C 20.43519,22.699379 16.77916,19.024634 12.274408,19.024634 C 7.7696557,19.024634 4.1136247,22.699379 4.1136247,27.22719 z"
+       id="path3319" />
+    <path
+       style="opacity:0.64044949;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 3.4999992,27 C 3.4999992,31.691999 7.3079996,35.499999 12,35.499999 C 16.692,35.499999 20.5,31.691999 20.5,27 C 20.5,22.308 16.692,18.5 12,18.5 C 7.3079996,18.5 3.4999992,22.308 3.4999992,27 z"
+       id="path3321" />
+    <path
+       style="opacity:1;fill:url(#linearGradient3281);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 7.9999999,30.058379 C 8.5736374,31.687311 10.970008,34 13.321188,34 C 15.672365,34 17.207377,31.687311 17.781014,30.058379 C 16.750343,31.113164 14.940174,32.229847 12.890507,32.229847 C 10.84084,32.229848 9.0306719,31.113164 7.9999999,30.058379 z"
+       id="path3327"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000011999999994;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 13.5,21.683103 C 14.343176,20.281558 15.84254,20.099108 16.846796,21.275849 C 17.143794,21.623858 17.346194,22.00317 17.5,22.5"
+       id="path3331" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:url(#linearGradient3363);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.7265389,10.5 L 14.103142,18.151899 C 13.393618,19.03732 12.425205,19.741354 10.995189,20.204864 C 9.5382218,20.677111 7.6461663,20.886344 5.5,20.948117 L 6.7265389,10.5 z"
+       id="path3337" />
+    <path
+       style="fill:#729fcf;fill-opacity:1;stroke:none;stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.0873164,8.5001211 L 4.5521909,21.521063 C 9.7609142,21.503729 13.481913,20.510303 15.11294,17.885947 L 6.0873164,8.5001211 z"
+       id="path3329"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="opacity:0.22439025;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.3755804,9.3509679 C 6.3755804,9.3509679 8.5982826,18.758371 10.785782,21.035156 C 10.785782,21.035156 6.8616791,21.024946 4.8998271,21.452223 C 4.8998271,21.452223 6.3755804,9.3509679 6.3755804,9.3509679 z"
+       id="path3339"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 9.0000018,14 C 9.0000018,14.551999 9.4480022,14.999999 10.000003,14.999999 C 10.552003,14.999999 11.000004,14.551999 11.000004,14 C 11.000004,13.448 10.552003,13 10.000003,13 C 9.4480022,13 9.0000018,13.448 9.0000018,14 z"
+       id="path3343" />
+    <path
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 9.9999992,17.5 C 9.9999992,18.328 10.671999,19 11.499999,19 C 12.328,19 13.000001,18.328 13.000001,17.5 C 13.000001,16.672 12.328,16 11.499999,16 C 10.671999,16 9.9999992,16.672 9.9999992,17.5 z"
+       id="path3345" />
+    <path
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.0000017,17 C 6.0000017,17.552 6.4480015,18 7.000001,18 C 7.5520011,18 8.0000009,17.552 8.0000009,17 C 8.0000009,16.448 7.5520011,16 7.000001,16 C 6.4480015,16 6.0000017,16.448 6.0000017,17 z"
+       id="path3347" />
+    <path
+       transform="matrix(1.4296658,0,0,1.055946,20.133016,32.457294)"
+       style="opacity:0.64044949;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter3405)"
+       d="M 17.393564,10.457643 C 17.393564,11.764527 14.416645,12.825188 10.748654,12.825188 C 7.0806641,12.825188 4.1037445,11.764527 4.1037445,10.457643 C 4.1037445,9.1507576 7.0806641,8.0900974 10.748654,8.0900974 C 14.416645,8.0900974 17.393564,9.1507576 17.393564,10.457643 z"
+       id="path3140" />
+    <path
+       transform="matrix(1.3031003,0,0,1.3031003,18.115392,17.188018)"
+       style="fill:#edd400;fill-opacity:1;stroke:url(#linearGradient3207);stroke-width:0.76930481;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 21.781414,10.983024 C 21.781414,16.489365 17.312499,20.95828 11.806158,20.95828 C 6.2998168,20.95828 1.8309021,16.489365 1.8309021,10.983024 C 1.8309021,5.4766824 6.2998168,1.0077677 11.806158,1.0077677 C 17.312499,1.0077677 21.781414,5.4766824 21.781414,10.983024 z"
+       id="path1307" />
+    <path
+       transform="matrix(1.1528526,0,0,1.1528526,19.88924,18.838192)"
+       style="opacity:0.79545456;fill:url(#radialGradient3114);fill-opacity:1;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 21.781414,10.983024 C 21.781414,16.489365 17.312499,20.95828 11.806158,20.95828 C 6.2998168,20.95828 1.8309021,16.489365 1.8309021,10.983024 C 1.8309021,5.4766824 6.2998168,1.0077677 11.806158,1.0077677 C 17.312499,1.0077677 21.781414,5.4766824 21.781414,10.983024 z"
+       id="path3102" />
+    <path
+       transform="matrix(1.2029767,0,0,1.2029766,19.297467,18.287679)"
+       style="opacity:0.64044949;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.83127129;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 21.781414,10.983024 C 21.781414,16.489365 17.312499,20.95828 11.806158,20.95828 C 6.2998168,20.95828 1.8309021,16.489365 1.8309021,10.983024 C 1.8309021,5.4766824 6.2998168,1.0077677 11.806158,1.0077677 C 17.312499,1.0077677 21.781414,5.4766824 21.781414,10.983024 z"
+       id="path2184" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 30.5,29.000002 C 30.5,30.932002 29.156002,32.500002 27.500001,32.500002 C 25.844001,32.500002 24.5,30.932002 24.5,29.000002 C 24.5,27.068002 25.844001,25.500002 27.500001,25.500002 C 29.156002,25.500002 30.5,27.068002 30.5,29.000002 z"
+       id="path3154" />
+    <path
+       transform="matrix(2.9241584,0,0,1.8028348,7.115385,11.597817)"
+       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:0.43553358;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10.732871,9.6526775 C 10.732871,10.724323 10.273252,11.594064 9.7069349,11.594064 C 9.1406182,11.594064 8.6809988,10.724323 8.6809988,9.6526775 C 8.6809988,8.5810319 9.1406182,7.7112906 9.7069349,7.7112906 C 10.273252,7.7112906 10.732871,8.5810319 10.732871,9.6526775 z"
+       id="path3152" />
+    <path
+       style="opacity:1;fill:url(#linearGradient3273);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 38.783196,34 C 37.974838,36.283765 37.303043,39.964286 33.989812,39.964286 C 30.676583,39.964286 25.808358,36.283765 25,34 C 26.4524,35.478811 29.003251,37.044402 31.891598,37.044402 C 34.779944,37.044403 37.330796,35.478811 38.783196,34 z"
+       id="path2186"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       style="fill:#ad7fa8;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 42.218715,5.2446107 L 44.381981,23.5 C 37.041959,23.475698 31.798408,22.082912 29.5,18.40356 L 42.218715,5.2446107 z"
+       id="rect3213"
+       sodipodi:nodetypes="cccc" />
+    <path
+       transform="matrix(-2.8035553,0.6989294,0.5296995,1.839284,46.227612,3.031559)"
+       style="fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:0.42536804000000000;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 7.2133909,8.4869402 C 7.4999714,7.6160335 8.2309591,7.2390614 8.84506,7.6454846 C 9.0266743,7.7656803 9.1640655,7.9196994 9.288462,8.1425499"
+       id="path2261" />
+    <path
+       style="fill:#ef2929;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 16,2 L 17.002277,0.9135296 L 19.435217,0.4345393 L 18.077427,1.9063862 L 16,2 z"
+       id="path3219"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 3,44 L 4.5433522,45.502379 L 6.9434156,46.057895 L 4.8526283,44.022615 L 3,44 z"
+       id="path3221"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#edd400;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10,42.586558 L 12.136628,41.59119 L 13.184157,40 L 10.289656,41.34843 L 10,42.586558 z"
+       id="path3225"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#729fcf;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 35.978585,3 L 37.768616,3 L 39,4 L 36.575036,4 L 35.978585,3 z"
+       id="path3227"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#ad7fa8;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 16.49386,46 L 17.79114,44.785088 L 18,43.219435 L 16.242568,44.865284 L 16.49386,46 z"
+       id="path3231"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#73d216;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 47,13 L 46.267844,11.394586 L 44.938808,10.672966 L 45.930664,12.847829 L 47,13 z"
+       id="path3233"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#edd400;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 30.136727,6.39799 L 28.557001,5.556161 L 27,5.85957 L 29.140063,7 L 30.136727,6.39799 z"
+       id="path3235"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       transform="matrix(0.9930738,0.1174922,-0.1174922,0.9930738,3.5613433,-3.8603909)"
+       style="fill:#ad7fa8;fill-opacity:1;stroke:url(#linearGradient3247);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 38.9375,7 L 29.875,18.875 C 31.013771,19.99029 32.484958,20.810172 34.5625,21.21875 C 36.679197,21.635028 39.36144,21.613079 42.375,21.34375 L 38.9375,7 z"
+       id="path3239" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;opacity:0.22439024"
+       d="M 41.8125,6.4375 L 30.1875,18.4375 C 31.271485,19.973701 33.704151,21.615243 36.46875,22.214286 C 36.46875,22.214286 37.303571,13.714286 41.8125,6.4375 z"
+       id="path3251"
+       sodipodi:nodetypes="cccc" />
+    <path
+       transform="matrix(0.8399997,0,0,0.84,6.4625128,4.7674993)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3255" />
+    <path
+       transform="matrix(0.84,0,0,0.84,4.4625005,-1.2325007)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3257" />
+    <path
+       transform="matrix(1.1199999,0,0,1.12,-10.049996,-0.3100009)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3259" />
+    <path
+       transform="matrix(0.84,0,0,0.84,8.4625004,8.7674993)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3263" />
+    <path
+       transform="matrix(0.84,0,0,0.84,8.4625005,0.7674993)"
+       style="opacity:0.56097562;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 41.116071,16.348215 C 41.116071,17.333929 40.316071,18.133929 39.330357,18.133929 C 38.344642,18.133929 37.544642,17.333929 37.544642,16.348215 C 37.544642,15.362501 38.344642,14.562501 39.330357,14.562501 C 40.316071,14.562501 41.116071,15.362501 41.116071,16.348215 z"
+       id="path3265" />
+    <path
+       transform="matrix(1.4757805,0,0,1.0301907,12.188751,18.0559)"
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10.732871,9.6526775 C 10.732871,10.724323 10.273252,11.594064 9.7069349,11.594064 C 9.1406182,11.594064 8.6809988,10.724323 8.6809988,9.6526775 C 8.6809988,8.5810319 9.1406182,7.7112906 9.7069349,7.7112906 C 10.273252,7.7112906 10.732871,8.5810319 10.732871,9.6526775 z"
+       id="path2172" />
+    <path
+       transform="matrix(1.4620794,0,0,1.0301907,20.30769,18.0559)"
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10.732871,9.6526775 C 10.732871,10.724323 10.273252,11.594064 9.7069349,11.594064 C 9.1406182,11.594064 8.6809988,10.724323 8.6809988,9.6526775 C 8.6809988,8.5810319 9.1406182,7.7112906 9.7069349,7.7112906 C 10.273252,7.7112906 10.732871,8.5810319 10.732871,9.6526775 z"
+       id="path3148" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.027895"
+       inkscape:original="M 6.09375 8.5 L 4.5625 21.53125 C 9.7712234 21.513916 13.493973 20.499356 15.125 17.875 L 6.09375 8.5 z "
+       style="fill:none;fill-opacity:1;stroke:url(#linearGradient3465);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       id="path3457"
+       d="M 6.875,10.8125 L 5.75,20.34375 C 7.6850387,20.259836 9.5518565,20.151375 10.875,19.71875 C 12.173341,19.294235 13.048057,18.66161 13.71875,17.90625 L 6.875,10.8125 z" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 17.5,26.058379 C 17.5,27.438379 16.380001,28.558379 15,28.558379 C 13.62,28.558379 12.499999,27.438379 12.499999,26.058379 C 12.499999,24.678379 13.62,23.558379 15,23.558379 C 16.380001,23.558379 17.5,24.678379 17.5,26.058379 z"
+       id="path3467" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12.499999,26.058379 C 12.499999,27.438379 11.380001,28.558379 9.9999999,28.558379 C 8.620001,28.558379 7.5,27.438379 7.5,26.058379 C 7.5,24.678379 8.620001,23.558379 9.9999999,23.558379 C 11.380001,23.558379 12.499999,24.678379 12.499999,26.058379 z"
+       id="path3471" />
+    <path
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 17,26.558379 C 17,27.386379 16.545703,28.058379 15.985944,28.058379 C 15.426184,28.058379 14.971887,27.386379 14.971887,26.558379 C 14.971887,25.730379 15.426184,25.058379 15.985944,25.058379 C 16.545703,25.058379 17,25.730379 17,26.558379 z"
+       id="path3473" />
+    <path
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12,26.558379 C 12,27.386379 11.545703,28.058379 10.985944,28.058379 C 10.426184,28.058379 9.9718869,27.386379 9.9718869,26.558379 C 9.9718869,25.730379 10.426184,25.058379 10.985944,25.058379 C 11.545703,25.058379 12,25.730379 12,26.558379 z"
+       id="path3475" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#3465a4;stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.0873164,8.5001211 L 4.5521909,21.521063 C 9.7609142,21.503729 13.481913,20.510303 15.11294,17.885947 L 6.0873164,8.5001211 z"
+       id="path3351"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#5c3566;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 42.218715,5.2446107 L 44.381981,23.5 C 37.979459,23.073912 31.798408,22.082912 29.5,18.40356 L 42.218715,5.2446107 z"
+       id="path3261"
+       sodipodi:nodetypes="cccc" />
+    <path
+       transform="matrix(2.8035552,0.6989294,-0.5296995,1.839284,17.772388,3.031559)"
+       style="fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:0.42536804000000000;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 7.2133909,8.4869402 C 7.4999714,7.6160335 8.2309591,7.2390614 8.84506,7.6454846 C 9.0266743,7.7656803 9.1640655,7.9196994 9.288462,8.1425499"
+       id="path2259" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#3465a4;stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.0873164,8.5001211 L 4.5521909,21.521063 C 9.7609142,21.503729 13.481913,20.510303 15.11294,17.885947 L 6.0873164,8.5001211 z"
+       id="path3264"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000011999999994;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 11.5,21.683104 C 10.446031,20.281559 8.5718262,20.099109 7.3165066,21.27585 C 6.9452582,21.623859 6.6922582,22.003171 6.500001,22.5"
+       id="path3353" />
+  </g>
+</svg>

Added: trunk/data/soylent.desktop
==============================================================================
--- (empty file)
+++ trunk/data/soylent.desktop	Wed Apr 16 05:25:39 2008
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=Soylent
+GenericName=People Browser
+Comment=Communicate with people
+TryExec=soylent
+Exec=soylent
+Icon=soylent
+StartupNotify=true
+Terminal=false
+Type=Application
+Categories=GNOME;GTK;ContactManagement;Email;InstantMessaging;Network;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]