propagate from branch 'im.pidgin.pidgin' (head 0abe49c5b3248bdbe96b721ef390252db4afea89) soc.2008.masterpassword

Fri, 15 Aug 2008 03:41:24 +0000

author
Vivien Bernet-Rollande <scrouaf@soc.pidgin.im>
date
Fri, 15 Aug 2008 03:41:24 +0000
branch
soc.2008.masterpassword
changeset 33993
ccc13864443c
parent 33992
a4299c59c1b0 (current diff)
parent 24071
0abe49c5b324 (diff)
child 33994
df7dce5056a7

propagate from branch 'im.pidgin.pidgin' (head 0abe49c5b3248bdbe96b721ef390252db4afea89)
to branch 'im.pidgin.soc.2008.masterpassword' (head a4299c59c1b02631392abe2e834c3c277c7d23b4)

configure.ac file | annotate | diff | comparison | revisions
pidgin/pixmaps/emotes/default/24/disapointed.png file | annotate | diff | comparison | revisions
pidgin/pixmaps/emotes/default/24/disappointed.png file | annotate | diff | comparison | revisions
pidgin/pixmaps/emotes/default/24/scalable/cigarette.svg file | annotate | diff | comparison | revisions
pidgin/pixmaps/emotes/default/24/scalable/disapointed.svg file | annotate | diff | comparison | revisions
pidgin/pixmaps/emotes/default/24/scalable/disappointed.svg file | annotate | diff | comparison | revisions
pidgin/pixmaps/emotes/default/24/scalable/sigarette.svg file | annotate | diff | comparison | revisions
pidgin/pixmaps/emotes/default/24/sigarette.png file | annotate | diff | comparison | revisions
--- a/ChangeLog	Fri Aug 15 03:39:45 2008 +0000
+++ b/ChangeLog	Fri Aug 15 03:41:24 2008 +0000
@@ -9,6 +9,8 @@
 	  to specify a system-wide SSL CA certificates directory.  When set,
 	  we don't install our SSL CA certs, so it's important that the
 	  libpurple package depend on the CA certificates.
+	* Add SSL Certificates support to the NSS SSL plugin. (Thanks to Lou
+	  Cipher)
 
 	XMPP:
 	* Fix a bug that caused the UI to not refresh and caused the client
--- a/ChangeLog.API	Fri Aug 15 03:39:45 2008 +0000
+++ b/ChangeLog.API	Fri Aug 15 03:41:24 2008 +0000
@@ -21,6 +21,7 @@
 		* purple_cmds_get_handle, purple_cmds_init, purple_cmds_uninit
 		* cmd-added and cmd-removed signals
 		* purple_get_host_name
+		* purple_markup_printf_escaped
 		* purple_util_fetch_url_len (temporary function overload to add max_len param)
 		* purple_util_fetch_url_request_len
 
--- a/configure.ac	Fri Aug 15 03:39:45 2008 +0000
+++ b/configure.ac	Fri Aug 15 03:41:24 2008 +0000
@@ -2021,9 +2021,12 @@
 	TCLCONFIG=no
 	TCLCONFIGDIRS="/usr/lib \
 			/usr/lib64 \
+			/usr/lib/tcl8.5 \
 			/usr/lib/tcl8.4 \
 			/usr/lib/tcl8.3 \
 			/usr/lib/tcl8.2 \
+			/usr/lib64/tcl8.5 \
+			/usr/lib64/tcl8.4 \
 			/System/Library/Tcl/8.3 \
 			/usr/local/lib"
 	for dir in $with_tclconfig $TCLCONFIGDIRS; do
--- a/libpurple/conversation.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/libpurple/conversation.c	Fri Aug 15 03:41:24 2008 +0000
@@ -80,8 +80,6 @@
 		purple_conv_im_set_type_again(PURPLE_CONV_IM(conv), 1);
 
 		serv_send_typing(gc, name, PURPLE_TYPED);
-		purple_signal_emit(purple_conversations_get_handle(),
-						 "buddy-typed", conv->account, conv->name);
 
 		purple_debug(PURPLE_DEBUG_MISC, "conversation", "typed...\n");
 	}
--- a/libpurple/eventloop.h	Fri Aug 15 03:39:45 2008 +0000
+++ b/libpurple/eventloop.h	Fri Aug 15 03:41:24 2008 +0000
@@ -67,6 +67,10 @@
 	 *
 	 * Analogous to g_timeout_add in glib.
 	 *
+	 * Note: On Win32, this function may be called from a thread other than
+	 * the libpurple thread.  You should make sure to detect this situation
+	 * and to only call "function" from the libpurple thread.
+	 *
 	 * @param interval the interval in <em>milliseconds</em> between calls
 	 *                 to @a function.
 	 * @param data     arbitrary data to be passed to @a function at each
--- a/libpurple/plugins/ssl/ssl-nss.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/libpurple/plugins/ssl/ssl-nss.c	Fri Aug 15 03:41:24 2008 +0000
@@ -60,6 +60,7 @@
 
 static const PRIOMethods *_nss_methods = NULL;
 static PRDescIdentity _identity;
+static PurpleCertificateScheme x509_nss;
 
 /* Thank you, Evolution */
 static void
@@ -172,6 +173,7 @@
 #endif
 }
 
+#if 0
 static SECStatus
 ssl_bad_cert(void *arg, PRFileDesc *socket)
 {
@@ -211,6 +213,7 @@
 
 	return status;
 }
+#endif
 
 static gboolean
 ssl_nss_init(void)
@@ -227,6 +230,82 @@
 }
 
 static void
+ssl_nss_verified_cb(PurpleCertificateVerificationStatus st,
+		       gpointer userdata)
+{
+	PurpleSslConnection *gsc = (PurpleSslConnection *) userdata;
+
+	if (st == PURPLE_CERTIFICATE_VALID) {
+		/* Certificate valid? Good! Do the connection! */
+		gsc->connect_cb(gsc->connect_cb_data, gsc, PURPLE_INPUT_READ);
+	} else {
+		/* Otherwise, signal an error */
+		if(gsc->error_cb != NULL)
+			gsc->error_cb(gsc, PURPLE_SSL_CERTIFICATE_INVALID,
+				      gsc->connect_cb_data);
+		purple_ssl_close(gsc);
+	}
+}
+
+/** Transforms an NSS containing an X.509 certificate into a Certificate instance
+ *
+ * @param cert   Certificate to transform
+ * @return A newly allocated Certificate
+ */
+static PurpleCertificate *
+x509_import_from_nss(CERTCertificate* cert)
+{
+	/* New certificate to return */
+	PurpleCertificate * crt;
+
+	/* Allocate the certificate and load it with data */
+	crt = g_new0(PurpleCertificate, 1);
+	crt->scheme = &x509_nss;
+	crt->data = CERT_DupCertificate(cert);
+
+	return crt;
+}
+
+static GList *
+ssl_nss_get_peer_certificates(PRFileDesc *socket, PurpleSslConnection * gsc)
+{
+	CERTCertificate *curcert;
+	CERTCertificate *issuerCert;
+	PurpleCertificate * newcrt;
+
+	/* List of Certificate instances to return */
+	GList * peer_certs = NULL;
+	int count;
+	int64 now = PR_Now();
+	
+	curcert = SSL_PeerCertificate(socket);
+	if (curcert == NULL) {
+		purple_debug_error("nss", "could not DupCertificate\n");
+		return NULL;
+	}
+	
+	for (count = 0 ; count < CERT_MAX_CERT_CHAIN ; count++) {
+		purple_debug_info("nss", "subject=%s issuer=%s\n", curcert->subjectName, curcert->issuerName);
+		newcrt = x509_import_from_nss(curcert);
+		peer_certs = g_list_append(peer_certs, newcrt);
+
+		if (curcert->isRoot) {
+			break;
+		}
+		issuerCert = CERT_FindCertIssuer(curcert, now, certUsageSSLServer);
+		if (!issuerCert) {
+			purple_debug_error("nss", "partial certificate chain\n");
+			break;
+		}
+		CERT_DestroyCertificate(curcert);
+		curcert = issuerCert;
+	}
+	CERT_DestroyCertificate(curcert);
+
+	return peer_certs;
+}
+
+static void
 ssl_nss_handshake_cb(gpointer data, int fd, PurpleInputCondition cond)
 {
 	PurpleSslConnection *gsc = (PurpleSslConnection *)data;
@@ -256,7 +335,25 @@
 	purple_input_remove(nss_data->handshake_handler);
 	nss_data->handshake_handler = 0;
 
-	gsc->connect_cb(gsc->connect_cb_data, gsc, cond);
+	/* If a Verifier was given, hand control over to it */
+	if (gsc->verifier) {
+		GList *peers;
+		/* First, get the peer cert chain */
+		peers = ssl_nss_get_peer_certificates(nss_data->in, gsc);
+
+		/* Now kick off the verification process */
+		purple_certificate_verify(gsc->verifier,
+				gsc->host,
+				peers,
+				ssl_nss_verified_cb,
+				gsc);
+
+		purple_certificate_destroy_list(peers);
+	} else {
+		/* Otherwise, just call the "connection complete"
+		   callback */
+		gsc->connect_cb(gsc->connect_cb_data, gsc, cond);
+	}
 }
 
 static void
@@ -310,7 +407,10 @@
 	SSL_AuthCertificateHook(nss_data->in,
 							(SSLAuthCertificate)ssl_auth_cert,
 							(void *)CERT_GetDefaultCertDB());
+#if 0
+	/* No point in hooking BadCert, since ssl_auth_cert always succeeds */
 	SSL_BadCertHook(nss_data->in, (SSLBadCertHandler)ssl_bad_cert, NULL);
+#endif
 
 	if(gsc->host)
 		SSL_SetURL(nss_data->in, gsc->host);
@@ -566,7 +666,20 @@
 x509_signed_by(PurpleCertificate * crt,
 	       PurpleCertificate * issuer)
 {
-	return TRUE;
+	CERTCertificate *subjectCert;
+	CERTCertificate *issuerCert;
+	SECStatus st;
+	
+	issuerCert = X509_NSS_DATA(issuer);
+	g_return_val_if_fail(issuerCert, FALSE);
+
+	subjectCert = X509_NSS_DATA(crt);
+	g_return_val_if_fail(subjectCert, FALSE);
+
+	if ( PORT_Strcmp(subjectCert->issuerName, issuerCert->subjectName) != 0 )
+		return FALSE;
+	st = CERT_VerifySignedData(&subjectCert->signatureWrap, issuerCert, PR_Now(), NULL);
+	return st == SECSuccess;
 }
 
 static GByteArray *
--- a/libpurple/protocols/msn/contact.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/libpurple/protocols/msn/contact.c	Fri Aug 15 03:41:24 2008 +0000
@@ -221,7 +221,7 @@
 	
 	purple_debug_info("msn", "Creating an Address Book.\n");
 
-	body = g_markup_printf_escaped(MSN_ADD_ADDRESSBOOK_TEMPLATE,
+	body = purple_markup_printf_escaped(MSN_ADD_ADDRESSBOOK_TEMPLATE,
 		msn_nexus_get_token_str(session->nexus, MSN_AUTH_CONTACTS),
 		session->user->passport);
 
@@ -408,7 +408,7 @@
 		update_str = g_strdup_printf(MSN_GET_CONTACT_UPDATE_XML,update_time);
 	}
 
-	body = g_markup_printf_escaped(MSN_GET_CONTACT_TEMPLATE, partner_scenario_str,
+	body = purple_markup_printf_escaped(MSN_GET_CONTACT_TEMPLATE, partner_scenario_str,
 		msn_nexus_get_token_str(session->nexus, MSN_AUTH_CONTACTS),
 		update_str ? update_str : "");
 
@@ -807,7 +807,7 @@
 	else if (LastChanged != NULL)
 		update_str = g_strdup_printf(MSN_GET_ADDRESS_UPDATE_XML, LastChanged);
 
-	body = g_markup_printf_escaped(MSN_GET_ADDRESS_TEMPLATE,
+	body = purple_markup_printf_escaped(MSN_GET_ADDRESS_TEMPLATE,
 		MsnSoapPartnerScenarioText[partner_scenario],
 		msn_nexus_get_token_str(session->nexus, MSN_AUTH_CONTACTS),
 		update_str ? update_str : "");
--- a/libpurple/protocols/msn/msn.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/libpurple/protocols/msn/msn.c	Fri Aug 15 03:41:24 2008 +0000
@@ -714,7 +714,7 @@
 			char *tmp2;
 
 			if (purple_presence_is_idle(presence)) {
-				tmp2 = g_markup_printf_escaped("%s/%s", name, _("Idle"));
+				tmp2 = purple_markup_printf_escaped("%s/%s", name, _("Idle"));
 			} else {
 				tmp2 = g_markup_escape_text(name, -1);
 			}
--- a/libpurple/protocols/msn/page.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/libpurple/protocols/msn/page.c	Fri Aug 15 03:41:24 2008 +0000
@@ -53,7 +53,7 @@
 
 	g_return_val_if_fail(page != NULL, NULL);
 
-	str = g_markup_printf_escaped(
+	str = purple_markup_printf_escaped(
 			"<TEXT xml:space=\"preserve\" enc=\"utf-8\">%s</TEXT>",
 			msn_page_get_body(page));
 
--- a/libpurple/protocols/msn/switchboard.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/libpurple/protocols/msn/switchboard.c	Fri Aug 15 03:41:24 2008 +0000
@@ -114,6 +114,11 @@
 	session = swboard->session;
 	session->switches = g_list_remove(session->switches, swboard);
 
+	for (l = session->slplinks; l; l = l->next) {
+		MsnSlpLink *slplink = l->data;
+		if (slplink->swboard == swboard) slplink->swboard = NULL;
+	}
+
 #if 0
 	/* This should never happen or we are in trouble. */
 	if (swboard->servconn != NULL)
@@ -540,7 +545,7 @@
 	payload = msn_message_gen_payload(msg, &payload_len);
 
 #ifdef MSN_DEBUG_SB
-	purple_debug_info("msn", "SB length:{%d}", payload_len);
+	purple_debug_info("msn", "SB length:{%" G_GSIZE_FORMAT "}", payload_len);
 	msn_message_show_readable(msg, "SB SEND", FALSE);
 #endif
 
--- a/libpurple/util.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/libpurple/util.c	Fri Aug 15 03:41:24 2008 +0000
@@ -2499,6 +2499,29 @@
 	return g_strndup(tag+1, i-1);
 }
 
+char *
+purple_markup_printf_escaped(const char *format, ...)
+{
+	va_list args;
+	char *ret;
+
+#if GLIB_CHECK_VERSION(2,4,0)
+	va_start(args, format);
+	ret = g_markup_vprintf_escaped(format, args);
+	va_end(args);
+#else
+	char *tmp;
+
+	va_start(args, format);
+	tmp = g_strdup_vprintf(format, args);
+	va_end(args);
+	ret = g_markup_escape_text(tmp, -1);
+	g_free(tmp);
+
+#endif
+
+	return ret;
+}
 /**************************************************************************
  * Path/Filename Functions
  **************************************************************************/
--- a/libpurple/util.h	Fri Aug 15 03:39:45 2008 +0000
+++ b/libpurple/util.h	Fri Aug 15 03:41:24 2008 +0000
@@ -576,6 +576,21 @@
 char * purple_markup_get_css_property(const gchar *style, const gchar *opt);
 
 
+/**
+ *
+ * Formats arguments according to @a format, escaping all string and character
+ * arguments in the fashion of g_markup_escape_text(). This is useful when you
+ * want to insert literal strings into XML-style markup output, without having
+ * to worry that the strings might themselves contain markup.
+ *
+ * This exists for Glib backwards compatibility reasons.
+ *
+ * @param format The format
+ *
+ * @return The string
+ */
+char * purple_markup_printf_escaped(const char *format, ...);
+
 /*@}*/
 
 
--- a/pidgin/gtkconv.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/gtkconv.c	Fri Aug 15 03:41:24 2008 +0000
@@ -6604,8 +6604,11 @@
 			update_typing_icon(gtkconv);
 
 		gtk_label_set_text(GTK_LABEL(gtkconv->menu_label), title);
-		if (pidgin_conv_window_is_active_conversation(conv))
-			gtk_window_set_title(GTK_WINDOW(win->window), title);
+		if (pidgin_conv_window_is_active_conversation(conv)) {
+			const char* current_title = gtk_window_get_title(GTK_WINDOW(win->window));
+			if (current_title == NULL || strcmp(current_title, title) != 0)
+				gtk_window_set_title(GTK_WINDOW(win->window), title);
+		}
 
 		g_free(title);
 	}
--- a/pidgin/pidginstock.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/pidginstock.c	Fri Aug 15 03:41:24 2008 +0000
@@ -162,7 +162,7 @@
 	{ PIDGIN_STOCK_TOOLBAR_INSERT_IMAGE, "toolbar", "insert-image.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL  },
 	{ PIDGIN_STOCK_TOOLBAR_INSERT_LINK, "toolbar", "insert-link.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL  },
 	{ PIDGIN_STOCK_TOOLBAR_MESSAGE_NEW, "toolbar", "message-new.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL  },
-	{ PIDGIN_STOCK_TOOLBAR_PENDING, "toolbar", "message-new.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL  },
+	{ PIDGIN_STOCK_TOOLBAR_PENDING, "tray", "tray-new-im.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL  },
 	{ PIDGIN_STOCK_TOOLBAR_PLUGINS, "toolbar", "plugins.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL  },
 	{ PIDGIN_STOCK_TOOLBAR_TYPING, "toolbar", "typing.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL  },
 	{ PIDGIN_STOCK_TOOLBAR_UNBLOCK, "toolbar", "unblock.png", FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, NULL  },
--- a/pidgin/pixmaps/emotes/default/24/Makefile.am	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/pixmaps/emotes/default/24/Makefile.am	Fri Aug 15 03:41:24 2008 +0000
@@ -25,6 +25,7 @@
     car.png \
     cat.png \
     chicken.png \
+    cigarette.png \
     clap.png \
     clock.png \
     cloudy.png \
@@ -46,7 +47,7 @@
     dazed.png \
     desire.png \
     devil.png \
-    disapointed.png \
+    disappointed.png \
     disdain.png \
     doctor.png \
     dog.png \
@@ -147,7 +148,6 @@
     shut-mouth.png \
     sick.png \
     sidefrown.png \
-    sigarette.png \
     silly.png \
     sinister.png \
     skeleton.png \
Binary file pidgin/pixmaps/emotes/default/24/cigarette.png has changed
--- a/pidgin/pixmaps/emotes/default/24/default.theme.in	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/pixmaps/emotes/default/24/default.theme.in	Fri Aug 15 03:41:24 2008 +0000
@@ -131,7 +131,7 @@
 ! monkey.png        :-(|)  :(|)
 
 # Hidden MSN emotes
-sigarette.png      	(ci)    (CI)
+cigarette.png      	(ci)    (CI)
 handcuffs.png       (%)
 console.png			(xx)    (XX)
 fingers-crossed.png	(yn)    (YN)
Binary file pidgin/pixmaps/emotes/default/24/disapointed.png has changed
Binary file pidgin/pixmaps/emotes/default/24/disappointed.png has changed
Binary file pidgin/pixmaps/emotes/default/24/island.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emotes/default/24/scalable/cigarette.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -0,0 +1,242 @@
+<?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://web.resource.org/cc/"
+   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://inkscape.sourceforge.net/DTD/s odipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="24"
+   height="24"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.43"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emotes/scalable"
+   sodipodi:docname="cigarette.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emotes/cigarette.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs4">
+    <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="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-1.052544,-4.118922e-8,-1.124237e-16,-0.356295,22.06208,14.18365)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4067">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1;"
+         offset="0"
+         id="stop4069" />
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:0;"
+         offset="1"
+         id="stop4071" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4067"
+       id="radialGradient4073"
+       cx="9.2459927"
+       cy="10.350512"
+       fx="9.2459927"
+       fy="10.350512"
+       r="3.6769278"
+       gradientTransform="matrix(-3.819985,5.512476,-4.093668,-4.093668,83.19111,-3.866074)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2209">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop2211" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop2213" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2191">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1;"
+         offset="0"
+         id="stop2193" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:0;"
+         offset="1"
+         id="stop2195" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2191"
+       id="linearGradient2197"
+       x1="12.05161"
+       y1="-0.34447879"
+       x2="17.653448"
+       y2="-0.022729397"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.707107,0.707107,-0.707107,0.707107,0,0.943632)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2209"
+       id="linearGradient2215"
+       x1="14.441306"
+       y1="3.2173214"
+       x2="17.919506"
+       y2="6.6955204"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="19.500333"
+     inkscape:cx="26.481536"
+     inkscape:cy="16.826327"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fcaf3e"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <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:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 17.832398,4.4420471 L 20.501626,7.1112742 L 7.1676199,20.44528 C 7.1676199,20.44528 4.4983927,19.91891 4.4983928,17.776053 L 17.832398,4.4420471 z "
+       id="rect2189"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:url(#linearGradient2197);fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.00000203;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 17.832398,4.4420471 C 17.832399,6.6295474 20.501626,7.1112742 20.501626,7.1112742 L 7.1676199,20.44528 C 7.1676199,20.44528 4.4091063,20.365339 4.4983928,17.776053 L 17.832398,4.4420471 z "
+       id="rect1307"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="opacity:1;fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 17.84375,4.4436324 L 13.583915,8.6719004 C 13.494629,10.502258 16.240165,11.32815 16.240165,11.32815 L 20.5,7.0998824 C 20.5,7.0998824 17.352679,6.452561 17.84375,4.4436324 z "
+       id="path2199"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#f57900;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 18.202718,4.1359454 L 13.583915,8.6719004 C 13.494629,11.082614 16.240165,11.32815 16.240165,11.32815 C 16.240165,11.32815 19.891468,7.759695 20.858968,6.7921954 C 18.771043,5.8794232 18.202718,4.1359454 18.202718,4.1359454 z "
+       id="rect2184"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.99915189"
+       inkscape:original="M 18.1875 4.125 L 13.59375 8.6875 C 13.504464 11.098213 16.25 11.34375 16.25 11.34375 C 16.249999 11.34375 19.87625 7.7487496 20.84375 6.78125 C 18.755824 5.8684779 18.1875 4.125 18.1875 4.125 z "
+       xlink:href="#rect2184"
+       style="opacity:0.3;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2329"
+       inkscape:href="#rect2184"
+       d="M 17.96875,4.78125 L 14.65625,8.0625 C 14.731248,8.5847653 14.990367,8.8558789 15.375,9.0625 C 15.66124,9.2162651 15.777442,9.2100361 15.96875,9.25 C 16.399077,8.8269709 17.992454,7.2436061 19.25,6 C 18.717236,5.5978751 18.26759,5.1824261 17.96875,4.78125 z " />
+    <path
+       style="opacity:1;fill:url(#radialGradient4073);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 7.0932684,1.9436324 C -5.9293197,7.9935239 10.756321,6.845168 5.563974,14.943632 C 14.706077,4.8617065 2.1460409,8.3054991 7.0932684,1.9436324 z "
+       id="rect4055"
+       sodipodi:nodetypes="ccc" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.31475151;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2336"
+       sodipodi:cx="14.640776"
+       sodipodi:cy="-2.0251973"
+       sodipodi:rx="1.5640759"
+       sodipodi:ry="2.0256064"
+       d="M 16.204852 -2.0251973 A 1.5640759 2.0256064 0 1 1  13.0767,-2.0251973 A 1.5640759 2.0256064 0 1 1  16.204852 -2.0251973 z"
+       transform="matrix(0.437,-0.437,0.661914,0.661914,14.94248,12.68216)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#84877f;stroke-width:1.28750658;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2342"
+       sodipodi:cx="14.640776"
+       sodipodi:cy="-2.0251973"
+       sodipodi:rx="1.5640759"
+       sodipodi:ry="2.0256064"
+       d="M 14.618387,0.00020159646 A 1.5640759,2.0256064 0 1 1 14.910344,-4.0204921"
+       transform="matrix(0.45569,-0.437,0.690223,0.661915,0.817025,26.67703)"
+       sodipodi:start="1.585111"
+       sodipodi:end="4.8856036"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#84877f;stroke-width:1.26464701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2344"
+       sodipodi:cx="14.640776"
+       sodipodi:cy="-2.0251973"
+       sodipodi:rx="1.5640759"
+       sodipodi:ry="2.0256064"
+       d="M 14.618387,0.00020159646 A 1.5640759,2.0256064 0 1 1 14.910344,-4.0204921"
+       transform="matrix(0.472315,-0.436998,0.715404,0.661912,1.632258,25.677)"
+       sodipodi:start="1.585111"
+       sodipodi:end="4.8856036"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#84877f;stroke-width:1.27496397;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2346"
+       sodipodi:cx="14.640776"
+       sodipodi:cy="-2.0251973"
+       sodipodi:rx="1.5640759"
+       sodipodi:ry="2.0256064"
+       d="M 14.618387,0.00020159646 A 1.5640759,2.0256064 0 1 1 14.910344,-4.0204921"
+       transform="matrix(0.458153,-0.443245,0.693953,0.671374,2.77832,24.75896)"
+       sodipodi:start="1.585111"
+       sodipodi:end="4.8856036"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.4;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(1.655402,0,0,1.055945,-5.793347,8.457303)" />
+  </g>
+</svg>
--- a/pidgin/pixmaps/emotes/default/24/scalable/disapointed.svg	Fri Aug 15 03:39:45 2008 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,201 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
-   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="24"
-   height="24"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.45.1"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/untitled folder 1"
-   sodipodi:docname="new-style-dissapointed.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="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="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)" />
-    <filter
-       inkscape:collect="always"
-       x="-0.27879594"
-       width="1.5575919"
-       y="-0.78248726"
-       height="2.5649745"
-       id="filter3405">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="1.5438116"
-         id="feGaussianBlur3407" />
-    </filter>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="22.4"
-     inkscape:cx="22.272598"
-     inkscape:cy="9.2849769"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#fce94f"
-     inkscape:window-width="1440"
-     inkscape:window-height="845"
-     inkscape:window-x="0"
-     inkscape:window-y="0" />
-  <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
-       sodipodi:type="arc"
-       style="opacity:0.64044944;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3405)"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(1.2039291,0,0,1.055946,-0.9406174,8.4572942)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#cc6400;stroke-width:1.05276573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1307"
-       sodipodi:cx="11.806158"
-       sodipodi:cy="10.983024"
-       sodipodi:rx="9.975256"
-       sodipodi:ry="9.975256"
-       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
-       transform="matrix(0.952236,0,0,0.952236,0.757713,1.541608)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.79545455;fill:url(#radialGradient3114);fill-opacity:1.0;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3102"
-       sodipodi:cx="11.806158"
-       sodipodi:cy="10.983024"
-       sodipodi:rx="9.975256"
-       sodipodi:ry="9.975256"
-       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
-       transform="matrix(0.8019,0,0,0.801938,2.532654,3.191833)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.64044944;fill:none;fill-opacity:1.0;stroke:#ffffff;stroke-width:1.17343897;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2184"
-       sodipodi:cx="11.806158"
-       sodipodi:cy="10.983024"
-       sodipodi:rx="9.975256"
-       sodipodi:ry="9.975256"
-       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
-       transform="matrix(0.852176,0,0,0.852216,1.93909,2.639626)" />
-    <path
-       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 11.5,13 C 11.5,14.38 10.380001,15.5 9.0000003,15.5 C 7.6200002,15.5 6.5,14.38 6.5,13 C 6.5,11.62 7.6200002,10.5 9.0000003,10.5 C 10.380001,10.5 11.5,11.62 11.5,13 z "
-       id="path3154" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2172"
-       sodipodi:cx="9.7069349"
-       sodipodi:cy="9.6526775"
-       sodipodi:rx="1.0259361"
-       sodipodi:ry="1.9413869"
-       d="M 10.732871 9.6526775 A 1.0259361 1.9413869 0 1 1  8.6809988,9.6526775 A 1.0259361 1.9413869 0 1 1  10.732871 9.6526775 z"
-       transform="matrix(0.9747196,0,0,0.7726436,0.5384616,6.0419199)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:0.56451595;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3152"
-       sodipodi:cx="9.7069349"
-       sodipodi:cy="9.6526775"
-       sodipodi:rx="1.0259361"
-       sodipodi:ry="1.9413869"
-       d="M 10.732871 9.6526775 A 1.0259361 1.9413869 0 1 1  8.6809988,9.6526775 A 1.0259361 1.9413869 0 1 1  10.732871 9.6526775 z"
-       transform="matrix(2.4367992,0,0,1.2877391,-8.6538495,0.5698698)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3148"
-       sodipodi:cx="9.7069349"
-       sodipodi:cy="9.6526775"
-       sodipodi:rx="1.0259361"
-       sodipodi:ry="1.9413869"
-       d="M 10.732871 9.6526775 A 1.0259361 1.9413869 0 1 1  8.6809988,9.6526775 A 1.0259361 1.9413869 0 1 1  10.732871 9.6526775 z"
-       transform="matrix(0.9747195,0,0,0.7726435,4.5384626,6.0419212)" />
-    <path
-       style="opacity:1;fill:#ce5c00;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 14,18 C 14.077907,16.27776 12.961527,16 12,16 C 11.038473,16 9.9667349,16.411688 10,18 C 10.421499,17.260594 11.161777,16.834942 12,16.834942 C 12.838222,16.834941 13.578501,17.260594 14,18 z "
-       id="path2186"
-       sodipodi:nodetypes="cscsc" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.64044949;fill:none;fill-opacity:1;stroke:#f57900;stroke-width:0.73675901;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3413"
-       sodipodi:cx="8.3258924"
-       sodipodi:cy="9.2232141"
-       sodipodi:rx="1.2276785"
-       sodipodi:ry="1.7410715"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       transform="matrix(-1.7149028,-0.8212993,0.5791212,-0.7969085,24.713288,22.51866)"
-       sodipodi:start="3.5782199"
-       sodipodi:end="5.6135639"
-       sodipodi:open="true" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.64044949;fill:none;fill-opacity:1;stroke:#f57900;stroke-width:0.73675901;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3415"
-       sodipodi:cx="8.3258924"
-       sodipodi:cy="9.2232141"
-       sodipodi:rx="1.2276785"
-       sodipodi:ry="1.7410715"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       transform="matrix(-1.7933657,0.6318731,-0.1539989,-0.9729999,24.743229,12.199844)"
-       sodipodi:start="3.5782199"
-       sodipodi:end="5.6135639"
-       sodipodi:open="true" />
-  </g>
-</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emotes/default/24/scalable/disappointed.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -0,0 +1,201 @@
+<?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://web.resource.org/cc/"
+   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="24"
+   height="24"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.45.1"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/untitled folder 1"
+   sodipodi:docname="disappointed.svg"
+   inkscape:export-filename="/home/hbons/Desktop/disappointed.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="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="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)" />
+    <filter
+       inkscape:collect="always"
+       x="-0.27879594"
+       width="1.5575919"
+       y="-0.78248726"
+       height="2.5649745"
+       id="filter3405">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.5438116"
+         id="feGaussianBlur3407" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.4"
+     inkscape:cx="22.272598"
+     inkscape:cy="9.2849769"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fce94f"
+     inkscape:window-width="1440"
+     inkscape:window-height="845"
+     inkscape:window-x="0"
+     inkscape:window-y="0" />
+  <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
+       sodipodi:type="arc"
+       style="opacity:0.64044944;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3405)"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(1.2039291,0,0,1.055946,-0.9406174,8.4572942)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#cc6400;stroke-width:1.05276573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1307"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
+       transform="matrix(0.952236,0,0,0.952236,0.757713,1.541608)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.79545455;fill:url(#radialGradient3114);fill-opacity:1.0;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3102"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
+       transform="matrix(0.8019,0,0,0.801938,2.532654,3.191833)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.64044944;fill:none;fill-opacity:1.0;stroke:#ffffff;stroke-width:1.17343897;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2184"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
+       transform="matrix(0.852176,0,0,0.852216,1.93909,2.639626)" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 11.5,13 C 11.5,14.38 10.380001,15.5 9.0000003,15.5 C 7.6200002,15.5 6.5,14.38 6.5,13 C 6.5,11.62 7.6200002,10.5 9.0000003,10.5 C 10.380001,10.5 11.5,11.62 11.5,13 z "
+       id="path3154" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2172"
+       sodipodi:cx="9.7069349"
+       sodipodi:cy="9.6526775"
+       sodipodi:rx="1.0259361"
+       sodipodi:ry="1.9413869"
+       d="M 10.732871 9.6526775 A 1.0259361 1.9413869 0 1 1  8.6809988,9.6526775 A 1.0259361 1.9413869 0 1 1  10.732871 9.6526775 z"
+       transform="matrix(0.9747196,0,0,0.7726436,0.5384616,6.0419199)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:#fea523;stroke-width:0.56451595;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3152"
+       sodipodi:cx="9.7069349"
+       sodipodi:cy="9.6526775"
+       sodipodi:rx="1.0259361"
+       sodipodi:ry="1.9413869"
+       d="M 10.732871 9.6526775 A 1.0259361 1.9413869 0 1 1  8.6809988,9.6526775 A 1.0259361 1.9413869 0 1 1  10.732871 9.6526775 z"
+       transform="matrix(2.4367992,0,0,1.2877391,-8.6538495,0.5698698)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3148"
+       sodipodi:cx="9.7069349"
+       sodipodi:cy="9.6526775"
+       sodipodi:rx="1.0259361"
+       sodipodi:ry="1.9413869"
+       d="M 10.732871 9.6526775 A 1.0259361 1.9413869 0 1 1  8.6809988,9.6526775 A 1.0259361 1.9413869 0 1 1  10.732871 9.6526775 z"
+       transform="matrix(0.9747195,0,0,0.7726435,4.5384626,6.0419212)" />
+    <path
+       style="opacity:1;fill:#ce5c00;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 14,18 C 14.077907,16.27776 12.961527,16 12,16 C 11.038473,16 9.9667349,16.411688 10,18 C 10.421499,17.260594 11.161777,16.834942 12,16.834942 C 12.838222,16.834941 13.578501,17.260594 14,18 z "
+       id="path2186"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.64044949;fill:none;fill-opacity:1;stroke:#f57900;stroke-width:0.73675901;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3413"
+       sodipodi:cx="8.3258924"
+       sodipodi:cy="9.2232141"
+       sodipodi:rx="1.2276785"
+       sodipodi:ry="1.7410715"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       transform="matrix(-1.7149028,-0.8212993,0.5791212,-0.7969085,24.713288,22.51866)"
+       sodipodi:start="3.5782199"
+       sodipodi:end="5.6135639"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.64044949;fill:none;fill-opacity:1;stroke:#f57900;stroke-width:0.73675901;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3415"
+       sodipodi:cx="8.3258924"
+       sodipodi:cy="9.2232141"
+       sodipodi:rx="1.2276785"
+       sodipodi:ry="1.7410715"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       transform="matrix(-1.7933657,0.6318731,-0.1539989,-0.9729999,24.743229,12.199844)"
+       sodipodi:start="3.5782199"
+       sodipodi:end="5.6135639"
+       sodipodi:open="true" />
+  </g>
+</svg>
--- a/pidgin/pixmaps/emotes/default/24/scalable/sigarette.svg	Fri Aug 15 03:39:45 2008 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,242 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
-   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://inkscape.sourceforge.net/DTD/s odipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="24"
-   height="24"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.43"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emotes/scalable"
-   sodipodi:docname="sigarette.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emotes/sigarette.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90">
-  <defs
-     id="defs4">
-    <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="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-1.052544,-4.118922e-8,-1.124237e-16,-0.356295,22.06208,14.18365)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4067">
-      <stop
-         style="stop-color:#d3d7cf;stop-opacity:1;"
-         offset="0"
-         id="stop4069" />
-      <stop
-         style="stop-color:#d3d7cf;stop-opacity:0;"
-         offset="1"
-         id="stop4071" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4067"
-       id="radialGradient4073"
-       cx="9.2459927"
-       cy="10.350512"
-       fx="9.2459927"
-       fy="10.350512"
-       r="3.6769278"
-       gradientTransform="matrix(-3.819985,5.512476,-4.093668,-4.093668,83.19111,-3.866074)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2209">
-      <stop
-         style="stop-color:#888a85;stop-opacity:1;"
-         offset="0"
-         id="stop2211" />
-      <stop
-         style="stop-color:#888a85;stop-opacity:0;"
-         offset="1"
-         id="stop2213" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2191">
-      <stop
-         style="stop-color:#888a85;stop-opacity:1;"
-         offset="0"
-         id="stop2193" />
-      <stop
-         style="stop-color:#888a85;stop-opacity:0;"
-         offset="1"
-         id="stop2195" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2191"
-       id="linearGradient2197"
-       x1="12.05161"
-       y1="-0.34447879"
-       x2="17.653448"
-       y2="-0.022729397"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.707107,0.707107,-0.707107,0.707107,0,0.943632)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2209"
-       id="linearGradient2215"
-       x1="14.441306"
-       y1="3.2173214"
-       x2="17.919506"
-       y2="6.6955204"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="19.500333"
-     inkscape:cx="26.481536"
-     inkscape:cy="16.826327"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#fcaf3e"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <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:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 17.832398,4.4420471 L 20.501626,7.1112742 L 7.1676199,20.44528 C 7.1676199,20.44528 4.4983927,19.91891 4.4983928,17.776053 L 17.832398,4.4420471 z "
-       id="rect2189"
-       sodipodi:nodetypes="ccccc" />
-    <path
-       style="fill:url(#linearGradient2197);fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.00000203;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 17.832398,4.4420471 C 17.832399,6.6295474 20.501626,7.1112742 20.501626,7.1112742 L 7.1676199,20.44528 C 7.1676199,20.44528 4.4091063,20.365339 4.4983928,17.776053 L 17.832398,4.4420471 z "
-       id="rect1307"
-       sodipodi:nodetypes="ccccc" />
-    <path
-       style="opacity:1;fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 17.84375,4.4436324 L 13.583915,8.6719004 C 13.494629,10.502258 16.240165,11.32815 16.240165,11.32815 L 20.5,7.0998824 C 20.5,7.0998824 17.352679,6.452561 17.84375,4.4436324 z "
-       id="path2199"
-       sodipodi:nodetypes="ccccc" />
-    <path
-       style="fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#f57900;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 18.202718,4.1359454 L 13.583915,8.6719004 C 13.494629,11.082614 16.240165,11.32815 16.240165,11.32815 C 16.240165,11.32815 19.891468,7.759695 20.858968,6.7921954 C 18.771043,5.8794232 18.202718,4.1359454 18.202718,4.1359454 z "
-       id="rect2184"
-       sodipodi:nodetypes="ccccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.99915189"
-       inkscape:original="M 18.1875 4.125 L 13.59375 8.6875 C 13.504464 11.098213 16.25 11.34375 16.25 11.34375 C 16.249999 11.34375 19.87625 7.7487496 20.84375 6.78125 C 18.755824 5.8684779 18.1875 4.125 18.1875 4.125 z "
-       xlink:href="#rect2184"
-       style="opacity:0.3;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2329"
-       inkscape:href="#rect2184"
-       d="M 17.96875,4.78125 L 14.65625,8.0625 C 14.731248,8.5847653 14.990367,8.8558789 15.375,9.0625 C 15.66124,9.2162651 15.777442,9.2100361 15.96875,9.25 C 16.399077,8.8269709 17.992454,7.2436061 19.25,6 C 18.717236,5.5978751 18.26759,5.1824261 17.96875,4.78125 z " />
-    <path
-       style="opacity:1;fill:url(#radialGradient4073);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 7.0932684,1.9436324 C -5.9293197,7.9935239 10.756321,6.845168 5.563974,14.943632 C 14.706077,4.8617065 2.1460409,8.3054991 7.0932684,1.9436324 z "
-       id="rect4055"
-       sodipodi:nodetypes="ccc" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.31475151;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2336"
-       sodipodi:cx="14.640776"
-       sodipodi:cy="-2.0251973"
-       sodipodi:rx="1.5640759"
-       sodipodi:ry="2.0256064"
-       d="M 16.204852 -2.0251973 A 1.5640759 2.0256064 0 1 1  13.0767,-2.0251973 A 1.5640759 2.0256064 0 1 1  16.204852 -2.0251973 z"
-       transform="matrix(0.437,-0.437,0.661914,0.661914,14.94248,12.68216)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#84877f;stroke-width:1.28750658;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2342"
-       sodipodi:cx="14.640776"
-       sodipodi:cy="-2.0251973"
-       sodipodi:rx="1.5640759"
-       sodipodi:ry="2.0256064"
-       d="M 14.618387,0.00020159646 A 1.5640759,2.0256064 0 1 1 14.910344,-4.0204921"
-       transform="matrix(0.45569,-0.437,0.690223,0.661915,0.817025,26.67703)"
-       sodipodi:start="1.585111"
-       sodipodi:end="4.8856036"
-       sodipodi:open="true" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#84877f;stroke-width:1.26464701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2344"
-       sodipodi:cx="14.640776"
-       sodipodi:cy="-2.0251973"
-       sodipodi:rx="1.5640759"
-       sodipodi:ry="2.0256064"
-       d="M 14.618387,0.00020159646 A 1.5640759,2.0256064 0 1 1 14.910344,-4.0204921"
-       transform="matrix(0.472315,-0.436998,0.715404,0.661912,1.632258,25.677)"
-       sodipodi:start="1.585111"
-       sodipodi:end="4.8856036"
-       sodipodi:open="true" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#84877f;stroke-width:1.27496397;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2346"
-       sodipodi:cx="14.640776"
-       sodipodi:cy="-2.0251973"
-       sodipodi:rx="1.5640759"
-       sodipodi:ry="2.0256064"
-       d="M 14.618387,0.00020159646 A 1.5640759,2.0256064 0 1 1 14.910344,-4.0204921"
-       transform="matrix(0.458153,-0.443245,0.693953,0.671374,2.77832,24.75896)"
-       sodipodi:start="1.585111"
-       sodipodi:end="4.8856036"
-       sodipodi:open="true" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.4;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(1.655402,0,0,1.055945,-5.793347,8.457303)" />
-  </g>
-</svg>
Binary file pidgin/pixmaps/emotes/default/24/sigarette.png has changed
Binary file pidgin/pixmaps/emotes/default/24/snail.png has changed
Binary file pidgin/pixmaps/icons/hicolor/16x16/apps/pidgin.png has changed
--- a/pidgin/pixmaps/icons/hicolor/16x16/apps/scalable/pidgin.svg	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/pixmaps/icons/hicolor/16x16/apps/scalable/pidgin.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -2,7 +2,7 @@
 <!-- Created with Inkscape (http://www.inkscape.org/) -->
 <svg
    xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
+   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"
@@ -13,62 +13,106 @@
    height="16"
    id="svg4345"
    sodipodi:version="0.32"
-   inkscape:version="0.44.1"
-   sodipodi:docbase="/home/hbons/Desktop/2.0.2/pidgin/pixmaps/icons/16/scalable"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/icons/24/scalable"
    sodipodi:docname="pidgin.svg"
-   inkscape:export-filename="/home/hbons/Desktop/pidgin16.png"
+   inkscape:export-filename="/home/hbons/Bureaublad/pidgin16.png"
    inkscape:export-xdpi="90"
    inkscape:export-ydpi="90"
-   version="1.0">
+   version="1.0"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
   <defs
      id="defs4347">
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient3157">
+       id="linearGradient8780">
       <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
+         style="stop-color:#3b1941;stop-opacity:1;"
          offset="0"
-         id="stop3159" />
+         id="stop8782" />
       <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
+         style="stop-color:#3b1941;stop-opacity:0;"
          offset="1"
-         id="stop3161" />
+         id="stop8784" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient3149">
+       id="linearGradient8760">
       <stop
          style="stop-color:#3b1941;stop-opacity:1;"
          offset="0"
-         id="stop3151" />
+         id="stop8762" />
       <stop
          style="stop-color:#3b1941;stop-opacity:0;"
          offset="1"
-         id="stop3153" />
+         id="stop8764" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8989"
+       inkscape:collect="always">
+      <stop
+         id="stop8991"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         id="stop8993"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8776">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.82412058"
+         offset="0"
+         id="stop8778" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="1"
+         id="stop8780" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient3141">
+       id="linearGradient8720">
+      <stop
+         style="stop-color:#fdc26a;stop-opacity:1"
+         offset="0"
+         id="stop8722" />
+      <stop
+         style="stop-color:#f57900;stop-opacity:1"
+         offset="1"
+         id="stop8724" />
+    </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="perspective97" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3124">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
+         offset="0"
+         id="stop3126" />
+      <stop
+         style="stop-color:#3b1941;stop-opacity:0;"
+         offset="1"
+         id="stop3128" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3116">
       <stop
          style="stop-color:#82508e;stop-opacity:1;"
          offset="0"
-         id="stop3143" />
+         id="stop3118" />
       <stop
-         style="stop-color:#82508e;stop-opacity:0;"
+         style="stop-color:#82508e;stop-opacity:0"
          offset="1"
-         id="stop3145" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3128">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop3130" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop3132" />
+         id="stop3120" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
@@ -119,18 +163,6 @@
          id="stop6510" />
     </linearGradient>
     <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5280">
-      <stop
-         style="stop-color:#82508e;stop-opacity:1;"
-         offset="0"
-         id="stop5282" />
-      <stop
-         style="stop-color:#82508e;stop-opacity:0;"
-         offset="1"
-         id="stop5284" />
-    </linearGradient>
-    <linearGradient
        id="linearGradient2804">
       <stop
          style="stop-color:black;stop-opacity:0;"
@@ -201,26 +233,16 @@
          offset="1.0000000"
          id="stop3804" />
     </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5280"
-       id="radialGradient5286"
-       cx="15.004828"
-       cy="39.80859"
-       fx="15.004828"
-       fy="39.80859"
-       r="9.7225161"
-       gradientTransform="matrix(1,0,0,0.732283,0,10.65742)"
-       gradientUnits="userSpaceOnUse" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient6537"
-       id="linearGradient6543"
-       x1="30.5"
-       y1="0.033532728"
-       x2="30.5"
-       y2="23.559282"
-       gradientUnits="userSpaceOnUse" />
+       xlink:href="#linearGradient8989"
+       id="linearGradient6512"
+       x1="15.242517"
+       y1="38.888657"
+       x2="15.712908"
+       y2="42.28862"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.474981,0,0,0.4591462,-0.4294391,-3.9567446)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient6817"
@@ -229,8 +251,7 @@
        y1="38.950283"
        x2="5.7089725"
        y2="42.982571"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.63556,0,0,0.371995,11.16667,-5.489292)" />
+       gradientUnits="userSpaceOnUse" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient5438"
@@ -241,186 +262,40 @@
        y2="23.011967"
        gradientUnits="userSpaceOnUse" />
     <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3976">
-      <stop
-         style="stop-color:#3b1941;stop-opacity:1;"
-         offset="0"
-         id="stop3978" />
-      <stop
-         style="stop-color:#3b1941;stop-opacity:0;"
-         offset="1"
-         id="stop3980" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3968">
-      <stop
-         style="stop-color:#82508e;stop-opacity:1;"
-         offset="0"
-         id="stop3970" />
-      <stop
-         style="stop-color:#82508e;stop-opacity:0;"
-         offset="1"
-         id="stop3972" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3958">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop3960" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop3962" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2850">
-      <stop
-         style="stop-color:#ce5c00;stop-opacity:1;"
-         offset="0"
-         id="stop2852" />
-      <stop
-         style="stop-color:#ce5c00;stop-opacity:0;"
-         offset="1"
-         id="stop2854" />
-    </linearGradient>
+       gradientUnits="userSpaceOnUse"
+       y2="44.272076"
+       x2="5.5366187"
+       y1="39.902092"
+       x1="-1.6841649"
+       id="linearGradient6569"
+       xlink:href="#linearGradient6563"
+       inkscape:collect="always" />
     <linearGradient
-       inkscape:collect="always"
-       id="linearGradient6563">
-      <stop
-         style="stop-color:white;stop-opacity:1;"
-         offset="0"
-         id="stop6565" />
-      <stop
-         style="stop-color:white;stop-opacity:0;"
-         offset="1"
-         id="stop6567" />
-    </linearGradient>
+       gradientUnits="userSpaceOnUse"
+       y2="23.559282"
+       x2="30.5"
+       y1="0.033532728"
+       x1="30.5"
+       id="linearGradient2089"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
     <linearGradient
-       id="linearGradient2110">
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="0"
-         id="stop2112" />
-      <stop
-         id="stop2114"
-         offset="0.5"
-         style="stop-color:black;stop-opacity:1;" />
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="1"
-         id="stop2067" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient25546"
-       id="radialGradient2069"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
-       cx="7.8836637"
-       cy="1.5104795"
-       fx="7.8836637"
-       fy="1.5104795"
-       r="8.4883642" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient25546"
-       id="radialGradient2071"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
-       cx="7.8836741"
-       cy="0.14505707"
-       fx="7.8836741"
-       fy="0.14505707"
-       r="8.4883642" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient25546"
-       id="radialGradient2079"
-       cx="7.8836637"
-       cy="2.6242435"
-       fx="7.8836637"
-       fy="2.6242435"
-       r="8.4883642"
-       gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
-       gradientUnits="userSpaceOnUse" />
+       y2="50.079575"
+       x2="14.943421"
+       y1="39.743458"
+       x1="15.645709"
+       id="linearGradient2087"
+       xlink:href="#linearGradient6506"
+       inkscape:collect="always" />
     <linearGradient
        id="linearGradient2081">
       <stop
-         style="stop-color:#f4d9b1;stop-opacity:1.0000000;"
-         offset="0.0000000"
-         id="stop2104" />
-      <stop
-         style="stop-color:#df9725;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop2085" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6506"
-       id="linearGradient2101"
-       x1="15.645709"
-       y1="39.743458"
-       x2="14.943421"
-       y2="50.079575"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6537"
-       id="linearGradient2089"
-       x1="30.5"
-       y1="0.033532728"
-       x2="30.5"
-       y2="23.559282"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6563"
-       id="linearGradient6569"
-       x1="-1.6841649"
-       y1="39.902092"
-       x2="5.5366187"
-       y2="44.272076"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="23.011967"
-       x2="30.152058"
-       y1="-0.86487341"
-       x1="30.152058"
-       id="linearGradient2097"
-       xlink:href="#linearGradient5438"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="42.982571"
-       x2="5.7089725"
-       y1="38.950283"
-       x1="0.23931108"
-       id="linearGradient2095"
-       xlink:href="#linearGradient6817"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="50.726673"
-       x2="15.645709"
-       y1="40.434063"
-       x1="15.645709"
-       id="linearGradient2093"
-       xlink:href="#linearGradient6506"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient2087">
-      <stop
-         id="stop2089"
+         id="stop2083"
          offset="0.0000000"
          style="stop-color:#f4d9b1;stop-opacity:1.0000000;" />
       <stop
-         id="stop2091"
+         id="stop2085"
          offset="1.0000000"
          style="stop-color:#df9725;stop-opacity:1.0000000;" />
     </linearGradient>
@@ -432,7 +307,7 @@
        fx="7.8836637"
        cy="2.6242435"
        cx="7.8836637"
-       id="radialGradient2085"
+       id="radialGradient2079"
        xlink:href="#linearGradient25546"
        inkscape:collect="always" />
     <radialGradient
@@ -443,7 +318,7 @@
        cx="7.8836741"
        gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
        gradientUnits="userSpaceOnUse"
-       id="radialGradient2077"
+       id="radialGradient2071"
        xlink:href="#linearGradient25546"
        inkscape:collect="always" />
     <radialGradient
@@ -454,76 +329,90 @@
        cx="7.8836637"
        gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
        gradientUnits="userSpaceOnUse"
-       id="radialGradient2075"
+       id="radialGradient2069"
        xlink:href="#linearGradient25546"
        inkscape:collect="always" />
     <linearGradient
-       id="linearGradient2067">
+       id="linearGradient2061">
       <stop
-         id="stop2069"
+         id="stop2063"
          offset="0"
          style="stop-color:black;stop-opacity:0;" />
       <stop
          style="stop-color:black;stop-opacity:1;"
          offset="0.5"
-         id="stop2071" />
+         id="stop2065" />
       <stop
-         id="stop2073"
+         id="stop2067"
          offset="1"
          style="stop-color:black;stop-opacity:0;" />
     </linearGradient>
     <linearGradient
-       id="linearGradient3108"
+       id="linearGradient6563"
        inkscape:collect="always">
       <stop
-         id="stop3110"
+         id="stop6565"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6567"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2850"
+       inkscape:collect="always">
+      <stop
+         id="stop2852"
+         offset="0"
+         style="stop-color:#ce5c00;stop-opacity:1;" />
+      <stop
+         id="stop2854"
+         offset="1"
+         style="stop-color:#ce5c00;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3958"
+       inkscape:collect="always">
+      <stop
+         id="stop3960"
          offset="0"
          style="stop-color:#eeeeec;stop-opacity:1;" />
       <stop
-         id="stop3112"
+         id="stop3962"
          offset="1"
          style="stop-color:#eeeeec;stop-opacity:0;" />
     </linearGradient>
     <linearGradient
-       id="linearGradient3116"
+       id="linearGradient3968"
        inkscape:collect="always">
       <stop
-         id="stop3118"
+         id="stop3970"
          offset="0"
          style="stop-color:#82508e;stop-opacity:1;" />
       <stop
-         id="stop3120"
+         id="stop3972"
          offset="1"
          style="stop-color:#82508e;stop-opacity:0;" />
     </linearGradient>
     <linearGradient
-       id="linearGradient3124"
+       id="linearGradient3976"
        inkscape:collect="always">
       <stop
-         id="stop3126"
+         id="stop3978"
          offset="0"
          style="stop-color:#3b1941;stop-opacity:1;" />
       <stop
-         id="stop3128"
+         id="stop3980"
          offset="1"
          style="stop-color:#3b1941;stop-opacity:0;" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient2850"
-       id="linearGradient2187"
+       id="linearGradient2149"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.769231,0,0,0.714287,47.76924,-9.285729)"
-       x1="21.785719"
-       y1="28.142857"
-       x2="17.785713"
-       y2="30.07143" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2850"
-       id="linearGradient2195"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.769231,0,0,0.714287,13.76923,-8.28573)"
+       gradientTransform="matrix(0.769231,0,0,0.714287,-34.23081,-12.28573)"
        x1="21.785719"
        y1="28.142857"
        x2="17.785713"
@@ -531,9 +420,9 @@
     <radialGradient
        inkscape:collect="always"
        xlink:href="#linearGradient3958"
-       id="radialGradient2209"
+       id="radialGradient2191"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.116159,0,0,1.076653,14.60502,-22.28695)"
+       gradientTransform="matrix(1.116159,0,0,1.076653,-36.39499,-20.28695)"
        cx="9.0640488"
        cy="21.511742"
        fx="9.0640488"
@@ -542,119 +431,214 @@
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient6506"
-       id="linearGradient2211"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.660903,0,0,0.627207,18.73149,-12.3201)"
-       x1="15.645709"
-       y1="39.743458"
-       x2="15.645709"
-       y2="53.502155" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3968"
-       id="linearGradient2214"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.67692,0,0,0.646801,18.46433,-12.90841)"
-       x1="16.13257"
-       y1="40.781811"
-       x2="16.13257"
-       y2="48.068741" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3976"
-       id="linearGradient2216"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.67692,0,0,0.646801,18.46433,-12.90841)"
-       x1="12.095973"
-       y1="40.907658"
-       x2="12.095973"
-       y2="46.463146" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6537"
-       id="linearGradient2219"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.668893,0,0,0.668627,18.08624,-12.19246)"
-       x1="30.5"
-       y1="0.033532728"
-       x2="30.5"
-       y2="23.559282" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3108"
-       id="linearGradient2229"
-       gradientUnits="userSpaceOnUse"
-       x1="10.18327"
-       y1="16.618088"
-       x2="27.598003"
-       y2="36.64465"
-       gradientTransform="matrix(0.660903,0,0,0.627207,49.74106,-7.361383)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6506"
-       id="linearGradient2231"
+       id="linearGradient2193"
        gradientUnits="userSpaceOnUse"
        x1="15.645709"
        y1="39.743458"
        x2="15.645709"
        y2="53.502155"
-       gradientTransform="matrix(0.660903,0,0,0.627207,49.74106,-7.361383)" />
+       gradientTransform="matrix(0.660903,0,0,0.627207,-32.26852,-10.3201)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3968"
+       id="linearGradient2196"
+       gradientUnits="userSpaceOnUse"
+       x1="16.13257"
+       y1="40.781811"
+       x2="16.13257"
+       y2="48.068741"
+       gradientTransform="matrix(0.67692,0,0,0.646801,-32.53568,-10.90841)" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient3116"
-       id="linearGradient2234"
+       xlink:href="#linearGradient3976"
+       id="linearGradient2198"
        gradientUnits="userSpaceOnUse"
-       x1="15.722902"
-       y1="39.585075"
-       x2="15.722902"
-       y2="45.76453"
-       gradientTransform="matrix(0.67692,0,0,0.646801,49.4739,-7.949693)" />
+       x1="12.095973"
+       y1="40.907658"
+       x2="12.095973"
+       y2="46.463146"
+       gradientTransform="matrix(0.67692,0,0,0.646801,-32.53568,-10.90841)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6537"
+       id="linearGradient2201"
+       gradientUnits="userSpaceOnUse"
+       x1="30.5"
+       y1="0.033532728"
+       x2="30.5"
+       y2="23.559282"
+       gradientTransform="matrix(0.668893,0,0,0.668627,-32.91377,-10.19246)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient3124"
-       id="linearGradient2236"
+       id="linearGradient3130"
+       x1="12.027549"
+       y1="36.059811"
+       x2="12.561858"
+       y2="42.352577"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5069392,0,0,0.4907885,-1.0208175,-4.88025)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5438"
+       id="linearGradient2848"
        gradientUnits="userSpaceOnUse"
-       x1="13.150809"
-       y1="39.39394"
-       x2="13.150809"
-       y2="45.551888"
-       gradientTransform="matrix(0.67692,0,0,0.646801,49.4739,-7.949693)" />
+       x1="30.152058"
+       y1="-0.86487341"
+       x2="30.152058"
+       y2="23.011967" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8720"
+       id="linearGradient8726"
+       x1="12.806054"
+       y1="16.65247"
+       x2="13.166923"
+       y2="16.608501"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.8035512,0,0,0.6654138,-1.6328324,0.3496205)" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient3128"
-       id="linearGradient3134"
-       x1="8.0725698"
-       y1="17.765934"
-       x2="24.284664"
-       y2="37.578945"
+       xlink:href="#linearGradient3116"
+       id="linearGradient8774"
+       x1="10.386011"
+       y1="19.281519"
+       x2="10.624538"
+       y2="22.99383"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7506322,0,0,0.7602819,-0.6385933,-1.1609868)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8776"
+       id="radialGradient8782"
+       cx="11.539145"
+       cy="11.774944"
+       fx="11.539145"
+       fy="11.774944"
+       r="9.5"
+       gradientTransform="matrix(1.1492907,-3.5818508e-2,2.1662967e-2,0.7172256,-5.3193915,-6.011096e-2)"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter9040"
+       x="-0.095484518"
+       width="1.190969"
+       y="-0.32181817"
+       height="1.6436363">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.22627841"
+         id="feGaussianBlur9042" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8756"
+       x="-0.067594799"
+       width="1.1351896"
+       y="-0.12311285"
+       height="1.2462257">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.25007298"
+         id="feGaussianBlur8758" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8760"
+       id="linearGradient8766"
+       x1="9.8884134"
+       y1="24.3125"
+       x2="12.26086"
+       y2="24.3125"
        gradientUnits="userSpaceOnUse" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient3141"
-       id="linearGradient3147"
-       x1="12.353984"
-       y1="38.611191"
-       x2="12.353984"
-       y2="45.595356"
-       gradientUnits="userSpaceOnUse" />
+       xlink:href="#linearGradient8780"
+       id="linearGradient8793"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7398844,0,0,2.4505335,-1.2572255,-0.5721084)"
+       x1="7.8234863"
+       y1="2.0748255"
+       x2="2.3125"
+       y2="-0.76288843" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8780"
+       id="linearGradient8797"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7398844,0,0,2.4505335,-1.2572255,-0.5721084)"
+       x1="7.8234863"
+       y1="2.0748255"
+       x2="2.3125"
+       y2="-0.76288843" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8780"
+       id="linearGradient8800"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7398844,0,0,2.4505335,-1.2572255,-0.5721084)"
+       x1="7.8234863"
+       y1="2.0748255"
+       x2="2.3125"
+       y2="-0.76288843" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8780"
+       id="linearGradient8803"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7398844,0,0,2.4505335,-1.2572255,-0.5721084)"
+       x1="7.8234863"
+       y1="2.0748255"
+       x2="2.3125"
+       y2="-0.76288843" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient3149"
-       id="linearGradient3155"
-       x1="10.166225"
-       y1="38.766953"
-       x2="10.166225"
-       y2="45.595673"
-       gradientUnits="userSpaceOnUse" />
+       xlink:href="#linearGradient8780"
+       id="linearGradient8806"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7398844,0,0,2.4505335,-1.2572255,-0.5721084)"
+       x1="7.8234863"
+       y1="2.0748255"
+       x2="2.3125"
+       y2="-0.76288843" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8780"
+       id="linearGradient8809"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7398844,0,0,2.4505335,-1.2572255,-0.5721084)"
+       x1="7.8234863"
+       y1="2.0748255"
+       x2="2.3125"
+       y2="-0.76288843" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient3157"
-       id="linearGradient3163"
-       x1="11.982447"
-       y1="39.088425"
-       x2="11.982447"
-       y2="45.778931"
-       gradientUnits="userSpaceOnUse" />
+       xlink:href="#linearGradient8780"
+       id="linearGradient8812"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7398844,0,0,2.4505335,1.5688087,-0.5586962)"
+       x1="7.8234863"
+       y1="2.0748255"
+       x2="2.3125"
+       y2="-0.76288843" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8780"
+       id="linearGradient8816"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7398844,0,0,1.62884,-1.0384755,0.8022337)"
+       x1="5.0478606"
+       y1="0.90161163"
+       x2="2.3125"
+       y2="-0.76288843" />
+    <filter
+       inkscape:collect="always"
+       id="filter8854">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.17684659"
+         id="feGaussianBlur8856" />
+    </filter>
   </defs>
   <sodipodi:namedview
      id="base"
@@ -663,23 +647,33 @@
      borderopacity="1.0"
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
-     inkscape:zoom="30.009658"
-     inkscape:cx="15.476031"
-     inkscape:cy="9.174961"
+     inkscape:zoom="32"
+     inkscape:cx="8.3548738"
+     inkscape:cy="8.8817845"
      inkscape:current-layer="layer1"
      showgrid="true"
      inkscape:grid-bbox="true"
      inkscape:document-units="px"
-     inkscape:window-width="1434"
-     inkscape:window-height="840"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
      inkscape:window-x="0"
      inkscape:window-y="0"
      showguides="true"
      inkscape:guide-bbox="true"
      inkscape:grid-points="false"
-     width="16px"
-     height="16px"
-     inkscape:object-bbox="true" />
+     width="24px"
+     height="24px"
+     inkscape:object-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7936"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
   <metadata
      id="metadata4350">
     <rdf:RDF>
@@ -696,89 +690,79 @@
      inkscape:label="Layer 1"
      inkscape:groupmode="layer">
     <path
-       style="opacity:1;fill:#75507b;fill-opacity:1"
-       d="M 36.0625,8 C 33.978257,8 33.334928,10.523086 34.78125,12.9375 C 35.250389,13.720651 36.674297,15.15311 36.86722,15.15311 L 36.878267,14.508325 C 36.288194,13.580567 35.517363,12.502064 35.686987,12.281543 C 37.835781,12.281543 38,11.491782 38,10.027674 C 38,8.7542399 37.228501,8 36.0625,8 z "
-       id="path6521"
-       transform="matrix(1.148904,0,0,0.920169,-34.28919,-3.241212)"
-       sodipodi:nodetypes="csccccc" />
+       style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient8816);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 4.1869581,3.4999999 C 4.4758051,3.4436567 4.5270059,3.2215108 4.6086619,3.0578895 C 4.7643714,2.7356494 4.9689549,2.591483 4.8639169,2.2636146 C 3.8104529,1.2597349 1.5105298,1.1429724 0.49999997,2.5358478"
+       id="path8814"
+       sodipodi:nodetypes="cscc" />
     <path
-       style="opacity:1;fill:url(#linearGradient3147);fill-opacity:1.0;stroke:url(#linearGradient3155);stroke-width:2.30209565;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 15,13 C 8.3759979,13 3,18.600001 3,25.5 C 3,31.153143 2.9750563,38.402618 2.9750563,45.572826 C 4.1625449,45.572826 27.946366,45.600605 30.637365,45.600605 C 32.751492,45.600605 32.586331,43.541005 32.586331,43.541005 C 32.586331,40.875594 27.597902,38.639057 25.813453,36.682531 C 23.985035,34.68151 26,30.884078 26,30.884078 C 26.641306,29.354278 28.01889,26.891006 28.01889,25.115922 C 28.01889,18.215923 21.624002,13 15,13 z "
+       style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient8812);stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 6.7942423,3.5 C 7.0830893,3.4152336 7.1342901,3.0810227 7.2159461,2.8348602 C 7.3716556,2.350061 7.5762391,2.1331676 7.4712011,1.639901 C 6.4177371,0.12959869 4.117814,-0.046066419 3.1072842,2.0494664"
+       id="path8778"
+       sodipodi:nodetypes="cscc" />
+    <path
+       style="opacity:1;fill:url(#linearGradient8774);fill-opacity:1;stroke:url(#linearGradient3130);stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 6.5832705,1.5 C 3.2253041,1.5 0.49999997,4.2484155 0.49999997,7.6348558 C 0.49999997,10.409353 0.5203599,15.170761 2.0055798,16.650637 C 2.6075642,16.650637 13.14629,17.5 14.510463,17.5 C 15.582197,17.5 15.498472,16.489173 15.498472,16.489173 C 15.498472,16.003663 15.150137,15.547149 14.665783,15.115891 C 13.845097,14.385171 12.812918,13.91608 12.065033,13.123113 C 11.31715,12.330145 12.159601,10.088797 12.159601,10.088797 C 12.484704,9.3379883 12.534521,8.6063333 12.534521,7.735143 C 12.534521,4.348703 9.9412373,1.5 6.5832705,1.5 z"
        id="path5176"
-       sodipodi:nodetypes="ccccszcsc"
-       transform="matrix(0.43939,0,0,0.42944,-0.819445,-4.082726)" />
-    <rect
-       style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect6331"
-       width="2.6154532"
-       height="1.1545694"
-       x="5.513658"
-       y="6.4806929"
-       rx="0.48532724"
-       ry="0.32910046"
-       transform="matrix(1.147027,0,0,0.866113,-0.324314,2.386999)" />
+       sodipodi:nodetypes="ccccsszcsc" />
     <path
-       transform="matrix(0.399589,0,0,0.393554,-5.973603e-2,-3.038964)"
-       style="opacity:0.5;fill:url(#linearGradient3134);fill-opacity:1.0;stroke:url(#linearGradient3163);stroke-width:2.5216887;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 15,14.0625 C 8.9877035,14.0625 4.0789961,19.13808 4.0625,25.46875 C 4.0624722,25.479427 4.0617033,25.489349 4.0625,25.5 C 4.0625,32.787473 3.9033639,38.26012 3.9033639,44.499878 C 5.8399452,44.499878 24.86993,44.470084 30.695903,44.470084 C 29.746978,42.549359 26.273076,40.711023 23.972608,38.78763 C 23.362603,37.973536 23.023697,35.459892 22.969233,34.418473 C 23.611113,31.359155 25.129532,28.401757 26.527172,25.440129 C 26.527172,19.094533 21.022436,14.0625 15,14.0625 z "
+       style="opacity:0.54300000000000004;fill:url(#radialGradient8782);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 6.6952762,2.4999998 C 3.8395496,2.4999998 1.5080065,4.8304336 1.5001711,7.7371358 C 1.5001581,7.7420387 1.4997927,7.7465938 1.5001711,7.7514849 C 1.5001711,11.097502 1.4991737,14.462678 2.8618813,16.475208 C 3.7817213,16.475208 10.234965,16.461527 13.002192,16.461527 C 13.556593,16.461527 14.5,16.692971 14.5,16.020522 C 14.5,15.91871 14.405122,15.727275 14.143764,15.489634 C 13.882407,15.251993 13.491501,14.996814 13.060214,14.743522 C 11.761949,14.201252 10.86054,13.312811 10.81661,11.873858 C 10.874694,10.425059 11.718766,9.4318208 11.620458,7.8321281 C 11.620458,4.918572 9.5558183,2.4999998 6.6952762,2.4999998 z"
        id="path5241"
-       sodipodi:nodetypes="csccccccc" />
+       sodipodi:nodetypes="cscccsscccc" />
     <path
-       style="opacity:1;fill:#a46bb0;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 6,7.2175674 C 6,8.8735678 4.5070272,10 3.4999996,10 C 2.1199999,10 1,8.6559998 1,6.9999995 C 1,5.5609093 1.7677476,4 3.1477475,4 C 4.5277481,4 6,5.9092686 6,7.2175674 z "
-       id="path3137"
-       sodipodi:nodetypes="csssc" />
-    <path
-       transform="matrix(0.626764,0,0,0.689441,-3.309086,-9.833164)"
-       style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 13.257119,24.626053 C 13.257119,26.227351 11.8279,27.316574 10.863875,27.316574 C 9.5428049,27.316574 8.4706318,26.01697 8.4706318,24.415672 C 8.4706318,23.024119 9.2055946,21.514771 10.526665,21.514771 C 11.847736,21.514771 13.257119,23.360971 13.257119,24.626053 z "
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 7,7.6813065 C 7,9.0613074 5.8056217,9.9999999 4.9999997,9.9999999 C 3.896,9.9999999 3,8.8800008 3,7.4999999 C 3,6.3007578 3.6141981,4.9999999 4.718198,4.9999999 C 5.8221983,4.9999999 7,6.5910572 7,7.6813065 z"
        id="path5157"
        sodipodi:nodetypes="csssc" />
     <path
        sodipodi:type="arc"
-       style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       style="opacity:1;fill:url(#linearGradient8766);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
        id="path5162"
        sodipodi:cx="10.169642"
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(0.805757,0,0,1.158623,-4.194263,-20.66902)" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.8057553,0,0,0.7927385,-3.1942432,-11.247142)" />
     <path
-       style="opacity:1;fill:#a46bb0;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 11.387086,4.6790601 C 10.509745,3.6558267 9.0824486,3.9284339 8.5222543,4.5817815 C 7.7545814,5.4771092 7.8435868,7.0342022 8.7209273,8.0574357 C 9.4833498,8.9466415 10.737398,9.413013 11.505071,8.5176851 C 12.272744,7.6223568 12.080215,5.4874505 11.387086,4.6790601 z "
-       id="path3139"
-       sodipodi:nodetypes="csssc" />
-    <path
-       transform="matrix(0.29055,-0.412361,-0.273947,-0.388798,13.58792,20.45445)"
-       style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 13.257119,24.626053 C 13.257119,26.227351 11.8279,27.316574 10.863875,27.316574 C 9.5428049,27.316574 8.4706318,26.01697 8.4706318,24.415672 C 8.4706318,23.024119 9.2055946,21.514771 10.526665,21.514771 C 11.847736,21.514771 13.257119,23.360971 13.257119,24.626053 z "
-       id="path5169"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 11.540313,5.5410017 C 10.882307,4.725799 9.8118332,4.9429841 9.391689,5.4635022 C 8.8159353,6.1768043 8.8826912,7.4173296 9.5406975,8.2325333 C 10.112514,8.9409561 11.05305,9.3125098 11.628804,8.599209 C 12.204558,7.8859064 12.060161,6.1850412 11.540313,5.5410017 z"
+       id="path3134"
        sodipodi:nodetypes="csssc" />
     <path
        sodipodi:type="arc"
-       style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path5171"
+       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3136"
        sodipodi:cx="10.169642"
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(0.805754,0,0,1.158626,0.805772,-20.66909)" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.8057555,0,0,0.7724139,1.8057544,-10.779314)" />
     <path
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M -3.174544e-16,1.7837407 C 0.49897694,0.43045085 3.4176637,1.3941391 4.4321866,1.7478251 L 2.7448964,2 L -3.174544e-16,1.7837407 z "
-       id="path5192"
-       sodipodi:nodetypes="cccc" />
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.63276428"
+       inkscape:original="M 10.5 14 C 10.223 14 10 14.223 10 14.5 C 10 14.777 10.223 15 10.5 15 L 11.5 15 C 11.777 15 12 14.777 12 14.5 C 12 14.223 11.777 14 11.5 14 L 10.5 14 z M 13.5 14 C 13.223 14 13 14.223 13 14.5 C 13 14.777 13.223 15 13.5 15 L 14.5 15 C 14.777 15 15 14.777 15 14.5 C 15 14.223 14.777 14 14.5 14 L 13.5 14 z "
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9040)"
+       id="path8998"
+       d="M 10.5,13.375 C 9.8833937,13.375 9.375,13.883394 9.375,14.5 C 9.375,15.116606 9.8833937,15.625 10.5,15.625 L 11.5,15.625 C 11.997417,15.625 12.351557,15.26606 12.5,14.8125 C 12.648443,15.26606 13.002583,15.625 13.5,15.625 L 14.5,15.625 C 15.116606,15.625 15.625,15.116606 15.625,14.5 C 15.625,13.883394 15.116606,13.375 14.5,13.375 L 13.5,13.375 C 13.002583,13.375 12.648443,13.73394 12.5,14.1875 C 12.351557,13.73394 11.997417,13.375 11.5,13.375 L 10.5,13.375 z"
+       transform="matrix(0.7360213,0,0,0.7376927,-0.5003328,-1.1368693)" />
     <path
-       style="fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 4,8.9694498 C 6.5363255,9.6796143 7.1434322,8 7.6676187,8 C 8.1845929,8 8.1150542,9.7216455 10.752536,9.1373864 C 10.257681,9.8617678 8.7366795,11 8.0954601,11 C 7.4470215,11 4.8041406,10.039472 4,8.9694498 z "
-       id="path3987"
-       sodipodi:nodetypes="czczc" />
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.58151811"
+       inkscape:original="M 8.5 9 C 7.5744947 9 8.0888797 12.372263 4 10.3125 C 5.6494162 12.565197 8.197109 13 8.96875 13 C 9.7318012 13 11.759773 11.940619 12.03125 9.96875 C 9.8826905 12.168839 9.3373684 9 8.5 9 z "
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8756)"
+       id="path7960"
+       d="M 8.5,8.40625 C 8.2077387,8.40625 7.9340555,8.5866498 7.78125,8.75 C 7.6284445,8.9133502 7.5498385,9.0608344 7.46875,9.21875 C 7.3065731,9.5345811 7.172643,9.8595724 7,10.0625 C 6.827357,10.265428 6.671609,10.387141 6.28125,10.40625 C 5.890891,10.425359 5.2196564,10.269712 4.25,9.78125 C 4.0077291,9.6621096 3.7153231,9.7253647 3.5439557,9.9339859 C 3.3725882,10.142607 3.3673262,10.44173 3.53125,10.65625 C 4.4297328,11.883357 5.5774976,12.609102 6.59375,13.03125 C 7.6100024,13.453398 8.4737052,13.59375 8.96875,13.59375 C 9.6193922,13.59375 10.340813,13.267437 11.0625,12.6875 C 11.784187,12.107563 12.433247,11.228313 12.59375,10.0625 C 12.622923,9.8212663 12.499043,9.5873227 12.283116,9.4758765 C 12.067189,9.3644302 11.804734,9.3989754 11.625,9.5625 C 11.145204,10.053803 10.811541,10.151032 10.65625,10.15625 C 10.500959,10.161468 10.384244,10.105939 10.1875,9.90625 C 9.9907556,9.7065608 9.7866869,9.3846583 9.5625,9.09375 C 9.4504065,8.9482959 9.3464815,8.8194169 9.1875,8.6875 C 9.0285185,8.5555831 8.7880568,8.40625 8.5,8.40625 z" />
     <path
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 2.5678134,0.78213791 C 3.0667903,-0.57115198 7,-0.11652293 7,1.7459005 L 5.3127098,0.99839721 L 2.5678134,0.78213791 z "
-       id="path1991"
-       sodipodi:nodetypes="cccc" />
+       style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 7,8.9999999 C 7,8.9999999 7,9.9999999 7,9.9999999 L 7.8944098,9.9999999 C 8.0595775,9.9999999 8.1925465,9.7769993 8.1925465,9.4999994 C 8.1925465,9.2229998 8.0595775,8.9999999 7.8944098,8.9999999 L 7,8.9999999 z M 9.0869564,8.9999999 C 8.9217887,8.9999999 8.7888198,9.2229998 8.7888198,9.4999994 C 8.7888198,9.7769993 8.9217887,9.9999999 9.0869564,9.9999999 L 10,9.9999999 C 10,9.9999999 10,9.1680138 10,8.9999999 L 9.0869564,8.9999999 z"
+       id="rect3140"
+       sodipodi:nodetypes="cccscccscccc" />
+    <path
+       style="fill:url(#linearGradient8726);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 4,10.044836 C 7.9482547,12.604599 7.5624388,8.9999999 8.4879441,8.9999999 C 9.325312,8.9999999 9.8735375,12.174215 12.022097,9.9741258 C 11.75062,11.945995 9.7246757,13 8.9616245,13 C 8.1899831,13 5.6337912,12.860033 4,10.044836 z"
+       id="path3142"
+       sodipodi:nodetypes="czczc" />
   </g>
 </svg>
Binary file pidgin/pixmaps/icons/hicolor/22x22/apps/pidgin.png has changed
--- a/pidgin/pixmaps/icons/hicolor/22x22/apps/scalable/pidgin.svg	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/pixmaps/icons/hicolor/22x22/apps/scalable/pidgin.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -2,7 +2,7 @@
 <!-- Created with Inkscape (http://www.inkscape.org/) -->
 <svg
    xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
+   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"
@@ -13,16 +13,84 @@
    height="22"
    id="svg4345"
    sodipodi:version="0.32"
-   inkscape:version="0.44.1"
+   inkscape:version="0.46"
    sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/icons/24/scalable"
    sodipodi:docname="pidgin.svg"
-   inkscape:export-filename="/home/hbons/Desktop/pidgin24.png"
+   inkscape:export-filename="/home/hbons/Bureaublad/pidgin16.png"
    inkscape:export-xdpi="90"
    inkscape:export-ydpi="90"
-   version="1.0">
+   version="1.0"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
   <defs
      id="defs4347">
     <linearGradient
+       id="linearGradient8989"
+       inkscape:collect="always">
+      <stop
+         id="stop8991"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:0.81407034" />
+      <stop
+         id="stop8993"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8838">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
+         offset="0"
+         id="stop8840" />
+      <stop
+         style="stop-color:#3b1941;stop-opacity:0;"
+         offset="1"
+         id="stop8842" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8830">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
+         offset="0"
+         id="stop8832" />
+      <stop
+         style="stop-color:#3b1941;stop-opacity:0;"
+         offset="1"
+         id="stop8834" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8776">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.82412058"
+         offset="0"
+         id="stop8778" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="1"
+         id="stop8780" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8720">
+      <stop
+         style="stop-color:#fdc26a;stop-opacity:1"
+         offset="0"
+         id="stop8722" />
+      <stop
+         style="stop-color:#f57900;stop-opacity:1"
+         offset="1"
+         id="stop8724" />
+    </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="perspective97" />
+    <linearGradient
        inkscape:collect="always"
        id="linearGradient3124">
       <stop
@@ -42,24 +110,12 @@
          offset="0"
          id="stop3118" />
       <stop
-         style="stop-color:#82508e;stop-opacity:0;"
+         style="stop-color:#82508e;stop-opacity:0"
          offset="1"
          id="stop3120" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient3108">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop3110" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop3112" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
        id="linearGradient5438">
       <stop
          style="stop-color:white;stop-opacity:1;"
@@ -179,13 +235,14 @@
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient6506"
+       xlink:href="#linearGradient8989"
        id="linearGradient6512"
-       x1="15.645709"
-       y1="39.029884"
-       x2="15.645709"
-       y2="43.206608"
-       gradientUnits="userSpaceOnUse" />
+       x1="15.242517"
+       y1="38.888657"
+       x2="15.712908"
+       y2="42.28862"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.657666,0,0,0.625853,-1.1715312,-5.3010586)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient6817"
@@ -413,41 +470,14 @@
        gradientTransform="matrix(0.668893,0,0,0.668627,-32.91377,-10.19246)" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient3108"
-       id="linearGradient3114"
-       x1="10.18327"
-       y1="16.618088"
-       x2="27.598003"
-       y2="36.64465"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3116"
-       id="linearGradient3122"
-       x1="15.722902"
-       y1="38.768803"
-       x2="15.722902"
-       y2="43.249905"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#linearGradient3124"
        id="linearGradient3130"
-       x1="13.150809"
-       y1="38.849556"
-       x2="13.150809"
-       y2="43.105652"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2850"
-       id="linearGradient3146"
+       x1="12.027549"
+       y1="36.059811"
+       x2="12.561858"
+       y2="42.352577"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.769231,0,0,0.714287,-3.230767,-7.285729)"
-       x1="21.785719"
-       y1="28.142857"
-       x2="17.785713"
-       y2="30.07143" />
+       gradientTransform="matrix(0.6753496,0,0,0.6455349,-1.5092027,-5.891953)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient5438"
@@ -457,6 +487,81 @@
        y1="-0.86487341"
        x2="30.152058"
        y2="23.011967" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8720"
+       id="linearGradient8726"
+       x1="12.806054"
+       y1="16.65247"
+       x2="13.166923"
+       y2="16.608501"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-0.9999997,-1)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3116"
+       id="linearGradient8774"
+       x1="10.386011"
+       y1="19.281519"
+       x2="10.624538"
+       y2="22.99383"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-0.9999997,-1)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8776"
+       id="radialGradient8782"
+       cx="11.763939"
+       cy="12.831866"
+       fx="11.763939"
+       fy="12.831866"
+       r="9.5"
+       gradientTransform="matrix(1.5913256,-4.8823489e-2,2.9994878e-2,0.9776358,-7.9422346,1.036439e-2)"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter8810"
+       x="-0.066766478"
+       width="1.133533"
+       y="-0.10563155"
+       height="1.2112631">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.30534121"
+         id="feGaussianBlur8812" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8830"
+       id="linearGradient8836"
+       x1="6.3341951"
+       y1="3.1008458"
+       x2="0.83419508"
+       y2="3.1008458"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-0.9999997,-1)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8838"
+       id="linearGradient8844"
+       x1="9.5704832"
+       y1="3.0778286"
+       x2="3.0625"
+       y2="-0.047171354"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-0.9999997,-1)" />
+    <filter
+       inkscape:collect="always"
+       id="filter9040"
+       x="-0.095484518"
+       width="1.190969"
+       y="-0.32181817"
+       height="1.6436363">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.22627841"
+         id="feGaussianBlur9042" />
+    </filter>
   </defs>
   <sodipodi:namedview
      id="base"
@@ -465,23 +570,33 @@
      borderopacity="1.0"
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
-     inkscape:zoom="22.743067"
-     inkscape:cx="23.715241"
-     inkscape:cy="10.08258"
+     inkscape:zoom="11.313709"
+     inkscape:cx="1.4710034"
+     inkscape:cy="17.030859"
      inkscape:current-layer="layer1"
      showgrid="true"
      inkscape:grid-bbox="true"
      inkscape:document-units="px"
-     inkscape:window-width="1434"
-     inkscape:window-height="840"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
      inkscape:window-x="0"
      inkscape:window-y="0"
      showguides="true"
      inkscape:guide-bbox="true"
      inkscape:grid-points="false"
-     width="22px"
-     height="22px"
-     inkscape:object-bbox="true" />
+     width="24px"
+     height="24px"
+     inkscape:object-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7936"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
   <metadata
      id="metadata4350">
     <rdf:RDF>
@@ -498,32 +613,38 @@
      inkscape:label="Layer 1"
      inkscape:groupmode="layer">
     <path
-       style="opacity:1;fill:#75507b;fill-opacity:1"
-       d="M 36.0625,8 C 33.978257,8 33.334928,10.523086 34.78125,12.9375 C 35.250389,13.720651 36.674297,15.15311 36.86722,15.15311 L 36.878267,14.508325 C 36.288194,13.580567 35.517363,12.502064 35.686987,12.281543 C 37.835781,12.281543 38,11.491782 38,10.027674 C 38,8.7542399 37.228501,8 36.0625,8 z "
-       id="path6521"
-       transform="matrix(1.747787,0,0,1.397993,-52.41719,-5.183942)"
-       sodipodi:nodetypes="csccccc" />
+       style="fill:url(#linearGradient8844);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 4.9454833,0.97311419 C 6.2174453,-1.3471373 9.0000003,0.90935069 9.0000003,3.2806574 L 7.9545253,3.1947658 C 7.9545253,1.9993751 6.9505391,0.71712119 4.9454833,0.97311419 z"
+       id="rect5189"
+       sodipodi:nodetypes="cccc" />
     <path
-       style="opacity:1;fill:url(#linearGradient3122);fill-opacity:1;stroke:url(#linearGradient3130);stroke-width:1.51128328;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 15,13 C 8.3759979,13 3,18.600001 3,25.5 C 3,31.153143 2.9750563,38.402618 2.9750563,45.572826 C 4.1625449,45.572826 27.946366,45.600605 30.637365,45.600605 C 32.751492,45.600605 32.586331,43.541005 32.586331,43.541005 C 32.586331,40.875594 27.597902,38.639057 25.813453,36.682531 C 23.985035,34.68151 26,30.5 26,30.5 C 26.641306,28.9702 27,27.275084 27,25.5 C 27,18.600001 21.624002,13 15,13 z "
-       id="path5176"
-       sodipodi:nodetypes="ccccszcsc"
-       transform="matrix(0.67692,0,0,0.646801,-1.52611,-5.949693)" />
+       style="fill:url(#linearGradient8836);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 2.3349141,2.782206 C 2.2763398,0.13682819 5.8143473,0.69972649 7.0000003,2.7533385 L 6.0516463,3.2016918 C 5.4539518,2.1664528 3.943347,1.5579816 2.3349141,2.782206 z"
+       id="path8784"
+       sodipodi:nodetypes="cccc"
+       inkscape:transform-center-x="1.7235728"
+       inkscape:transform-center-y="-0.24306796" />
     <path
-       transform="matrix(0.660903,0,0,0.627207,-1.258953,-5.361383)"
-       style="opacity:0.5;fill:url(#linearGradient3114);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:1.55319393;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 15,14.0625 C 8.9877035,14.0625 4.0789961,19.13808 4.0625,25.46875 C 4.0624722,25.479427 4.0617033,25.489349 4.0625,25.5 C 4.0625,32.787473 3.9033639,38.26012 3.9033639,44.499878 C 5.8399452,44.499878 22.452275,44.470084 28.278248,44.470084 C 29.445455,44.470084 31.431654,44.974157 31.431654,43.509594 C 31.431654,43.287851 31.231903,42.870917 30.681654,42.353344 C 30.131405,41.835771 29.308414,41.280003 28.400404,40.728344 C 26.665321,39.858723 25.411769,39.090553 24.621247,37.290844 C 24.011242,36.47675 23.731303,35.519763 23.676839,34.478344 C 23.622375,33.436925 24.107721,32.319635 24.224561,31.259594 C 24.458241,29.139511 24.96875,30.28125 24.96875,30.28125 C 24.98374,30.216952 25.004663,30.154183 25.03125,30.09375 C 25.618731,28.692346 25.9375,27.131297 25.9375,25.5 C 25.9375,19.154404 21.022436,14.0625 15,14.0625 z "
+       style="opacity:1;fill:url(#linearGradient8774);fill-opacity:1;stroke:url(#linearGradient3130);stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 8.6210411,2.5 C 4.147524,2.5 0.51684599,6.1149956 0.51684599,10.569186 C 0.51684599,14.218486 0.54396969,20.481174 2.5225947,22.427658 C 3.3245647,22.427658 17.364363,23.544826 19.181729,23.544826 C 20.609503,23.544826 20.497963,22.215283 20.497963,22.215283 C 20.497963,21.576692 20.033908,20.976237 19.388647,20.409004 C 18.29532,19.447887 16.920241,18.83089 15.923902,17.787899 C 14.927563,16.744908 16.049886,13.796859 16.049886,13.796859 C 16.482992,12.809319 16.549357,11.846972 16.549357,10.701094 C 16.549357,6.2469039 13.094559,2.5 8.6210411,2.5 z"
+       id="path5176"
+       sodipodi:nodetypes="ccccsszcsc" />
+    <path
+       style="opacity:0.5;fill:url(#radialGradient8782);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 8.6934593,3.5 C 4.7393763,3.5 1.5110858,6.6765676 1.5002368,10.638635 C 1.5002188,10.645318 1.4997128,10.651527 1.5002368,10.658194 C 1.5002368,15.219081 1.4988558,19.806087 3.3856818,22.549325 C 4.6593063,22.549325 13.594567,22.530678 17.426112,22.530678 C 18.193745,22.530678 19.5,22.846154 19.5,21.929553 C 19.5,21.790774 19.36863,21.529834 19.00675,21.20591 C 18.64487,20.881986 18.103616,20.534156 17.50645,20.188899 C 15.708853,19.449743 14.460748,18.238726 14.399921,16.277317 C 14.480347,14.30249 15.649061,12.948626 15.512942,10.768117 C 15.512942,6.7967072 12.65421,3.5 8.6934593,3.5 z"
        id="path5241"
-       sodipodi:nodetypes="cscccssccsscssc" />
+       sodipodi:nodetypes="cscccsscccc" />
     <path
-       style="fill:#a46bb0;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 3.072604,7.0864988 C 4.607952,5.4493238 7.105721,5.8854918 8.086061,6.9308478 C 9.4294869,8.3633698 9.273726,10.85472 7.738379,12.491894 C 6.404137,13.914624 4.209552,14.660821 2.866124,13.228299 C 1.522696,11.795776 1.859625,8.3799248 3.072604,7.0864988 z "
-       id="path3138"
-       sodipodi:nodetypes="csssc" />
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.97252291"
+       inkscape:original="M 7.15625 8 C 5.7694225 8 4.9999998 9.5395554 5 10.96875 C 5 12.613363 6.1444228 13.96875 7.53125 13.96875 C 8.5432599 13.96875 10.03125 12.832113 10.03125 11.1875 C 10.03125 9.8881973 8.5430781 8 7.15625 8 z "
+       style="opacity:1;fill:#9757a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8816"
+       d="M 7.15625,7.03125 C 6.1029614,7.03125 5.2431984,7.6462575 4.75,8.40625 C 4.2568016,9.1662425 4.0312499,10.07963 4.03125,10.96875 C 4.03125,13.064524 5.5107726,14.9375 7.53125,14.9375 C 8.4013507,14.9375 9.1895212,14.517728 9.84375,13.875 C 10.497979,13.232272 11,12.303108 11,11.1875 C 11,10.166552 10.509035,9.2426793 9.84375,8.46875 C 9.1784648,7.6948207 8.2910346,7.03125 7.15625,7.03125 z"
+       transform="translate(-1.9999997,-0.9375)" />
     <path
-       transform="matrix(1.010846,0,0,1.029732,-5.552971,-15.17001)"
-       style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 13.257119,24.626053 C 13.257119,26.227351 11.8279,27.316574 10.863875,27.316574 C 9.5428049,27.316574 8.4706318,26.01697 8.4706318,24.415672 C 8.4706318,23.024119 9.2055946,21.514771 10.526665,21.514771 C 11.847736,21.514771 13.257119,23.360971 13.257119,24.626053 z "
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 8.0000003,10.217568 C 8.0000003,11.873569 6.5163587,13 5.5156252,13 C 4.1442507,13 3.0312508,11.656001 3.0312508,10 C 3.0312508,8.5609094 3.7942,7 5.1655747,7 C 6.5369499,7 8.0000003,8.9092687 8.0000003,10.217568 z"
        id="path5157"
        sodipodi:nodetypes="csssc" />
     <path
@@ -534,28 +655,19 @@
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(1.208633,0,0,1.158621,-6.791366,-17.66897)" />
-    <path
-       transform="matrix(0.670792,0,0,0.486348,-3.805943,-3.90166)"
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 11.651119,11.193815 C 13.577759,8.2509126 16.249277,11.481501 17.614226,12.804399 L 14.761306,13.747613 L 11.651119,11.193815 z "
-       id="path5192"
-       sodipodi:nodetypes="cccc" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(1.1960429,0,0,1.158621,-6.678954,-17.575223)" />
     <path
-       transform="matrix(0.851014,0,0,0.554879,-3.938174,-5.194599)"
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 11.689238,9.8218679 C 13.591296,8.0161941 17.174576,11.994261 17.519594,13.650486 L 14.543472,12.891665 L 11.689238,9.8218679 z "
-       id="rect5189"
-       sodipodi:nodetypes="cccc" />
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="1.0018603"
+       inkscape:original="M 15.375 8 C 14.972613 8.0219165 14.616322 8.2670758 14.40625 8.59375 C 13.830495 9.4890789 13.873243 11.039266 14.53125 12.0625 C 15.103067 12.951704 16.049246 13.426577 16.625 12.53125 C 17.200756 11.635921 17.051098 9.4958908 16.53125 8.6875 C 16.202247 8.1758836 15.777387 7.9780835 15.375 8 z "
+       style="fill:#9757a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8820"
+       d="M 15.3125,7 C 14.537055,7.0422356 13.927975,7.4941649 13.5625,8.0625 C 12.689986,9.4193046 12.791183,11.199932 13.6875,12.59375 C 14.065497,13.181554 14.559478,13.713455 15.28125,13.9375 C 16.003022,14.161545 17.002245,13.787939 17.46875,13.0625 C 17.974403,12.276184 18.035404,11.401604 18,10.53125 C 17.964596,9.6608958 17.828805,8.8619408 17.375,8.15625 C 16.897304,7.4134085 16.079992,6.9581976 15.3125,7 z"
+       transform="translate(-0.9999997,-1)" />
     <path
-       style="fill:#975fa3;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 16.371022,7.8148748 C 15.47069,6.586993 14.005993,6.9141191 13.43112,7.6981356 C 12.643332,8.7725276 12.734671,10.64104 13.635002,11.868921 C 14.417404,12.93597 15.704314,13.495617 16.492103,12.421225 C 17.279892,11.346833 17.082315,8.7849447 16.371022,7.8148748 z "
-       id="path3132"
-       sodipodi:nodetypes="csssc" />
-    <path
-       style="fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 16.502957,8.5432477 C 15.827476,7.7246593 14.728576,7.9427464 14.297274,8.4654263 C 13.706229,9.1816906 13.774757,10.427368 14.450238,11.245957 C 15.037241,11.957323 16.002754,12.33042 16.593798,11.614156 C 17.184843,10.897891 17.03661,9.1899614 16.502957,8.5432477 z "
+       style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 15.540313,7.6790592 C 14.882307,6.6558262 13.811834,6.9284344 13.39169,7.5817827 C 12.815935,8.4771112 12.882691,10.034204 13.540698,11.057438 C 14.112515,11.946642 15.05305,12.413012 15.628804,11.517685 C 16.204559,10.622356 16.060161,8.48745 15.540313,7.6790592 z"
        id="path3134"
        sodipodi:nodetypes="csssc" />
     <path
@@ -566,26 +678,30 @@
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(1.153827,0,0,1.158621,3.593156,-17.66895)" />
-    <rect
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.8057553,0,0,1.158621,5.8057571,-17.668973)" />
+    <path
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8810)"
+       d="M 11.59375,11.4375 C 11.222391,11.4375 10.952722,11.697732 10.8125,11.90625 C 10.672278,12.114768 10.591589,12.333559 10.5,12.5625 C 10.316822,13.020382 10.132944,13.51781 9.8750003,13.875 C 9.6170563,14.23219 9.3545053,14.452654 8.8437503,14.46875 C 8.3329957,14.484846 7.5004315,14.240041 6.2812503,13.4375 C 6.0585986,13.276718 5.7521743,13.30128 5.5579775,13.495477 C 5.3637807,13.689674 5.3392179,13.996098 5.5000003,14.21875 C 6.2056345,15.27546 7.2639194,16.5841 8.6406253,17.40625 C 9.3289783,17.817325 10.432979,18.087337 11.015625,18.34375 C 11.598271,18.600163 11.941819,18.5625 12.40625,18.5625 C 12.927105,18.5625 13.262855,18.263825 13.625,17.9375 C 13.987145,17.611175 14.366757,17.201439 14.71875,16.75 C 15.422736,15.847123 16.063583,14.803499 16.4375,14.1875 C 16.548363,13.941092 16.467317,13.65066 16.244886,13.49726 C 16.022454,13.343859 15.722179,13.37131 15.53125,13.5625 C 14.91539,14.324047 14.537809,14.447586 14.34375,14.4375 C 14.149691,14.427414 13.901069,14.263025 13.625,13.875 C 13.348931,13.486975 13.076271,12.963561 12.8125,12.5 C 12.680615,12.26822 12.545778,12.036007 12.375,11.84375 C 12.204222,11.651493 11.96049,11.4375 11.59375,11.4375 z"
+       id="path8770"
+       sodipodi:nodetypes="csssscscssssscscssssc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.63276428"
+       inkscape:original="M 10.5 14 C 10.223 14 10 14.223 10 14.5 C 10 14.777 10.223 15 10.5 15 L 11.5 15 C 11.777 15 12 14.777 12 14.5 C 12 14.223 11.777 14 11.5 14 L 10.5 14 z M 13.5 14 C 13.223 14 13 14.223 13 14.5 C 13 14.777 13.223 15 13.5 15 L 14.5 15 C 14.777 15 15 14.777 15 14.5 C 15 14.223 14.777 14 14.5 14 L 13.5 14 z "
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9040)"
+       id="path8998"
+       d="M 10.5,13.375 C 9.8833937,13.375 9.375,13.883394 9.375,14.5 C 9.375,15.116606 9.8833937,15.625 10.5,15.625 L 11.5,15.625 C 11.997417,15.625 12.351557,15.26606 12.5,14.8125 C 12.648443,15.26606 13.002583,15.625 13.5,15.625 L 14.5,15.625 C 15.116606,15.625 15.625,15.116606 15.625,14.5 C 15.625,13.883394 15.116606,13.375 14.5,13.375 L 13.5,13.375 C 13.002583,13.375 12.648443,13.73394 12.5,14.1875 C 12.351557,13.73394 11.997417,13.375 11.5,13.375 L 10.5,13.375 z"
+       transform="translate(-0.9999997,-1)" />
+    <path
        style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 9.0000003,13 C 9.0000003,13 9.0000003,14 9.0000003,14 L 10.5,14 C 10.777,14 11,13.777 11,13.5 C 11,13.223 10.777,13 10.5,13 L 9.0000003,13 z M 12.5,13 C 12.223,13 12,13.223 12,13.5 C 12,13.777 12.223,14 12.5,14 L 14.03125,14 C 14.03125,14 14.03125,13.168014 14.03125,13 L 12.5,13 z"
        id="rect3140"
-       width="4.4400907"
-       height="1"
-       x="8.5358553"
-       y="13"
-       rx="0.69182354"
-       ry="0.5" />
+       sodipodi:nodetypes="cccscccscccc" />
     <path
-       style="fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 6,13.893438 C 11.088512,17.243015 10.655188,12 11.431469,12 C 12.197069,12 11.699301,17.201991 16,13.895644 C 15.267157,15.102946 13.014668,17 12.06507,17 C 11.104781,17 7.190872,15.676807 6,13.893438 z "
+       style="fill:url(#linearGradient8726);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6.0099235,13.992875 C 11.098435,17.088335 10.605646,12 11.595061,12 C 12.606375,12 13.291899,17.201991 15.965729,13.895644 C 15.545386,15.431071 13.354137,18.011297 12.404539,18.011297 C 11.44425,18.011297 8.0625819,17.378283 6.0099235,13.992875 z"
        id="path3142"
        sodipodi:nodetypes="czczc" />
-    <path
-       style="fill:url(#linearGradient3146);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 6,13.893439 C 10.740404,18.171305 10.655188,12 11.431469,12 C 12.197069,12 11.641283,17.027939 16,13.895646 C 15.267157,15.102947 13.014668,17 12.06507,17 C 11.104781,17 7.190873,15.676809 6,13.893439 z "
-       id="path3144"
-       sodipodi:nodetypes="czczc" />
   </g>
 </svg>
Binary file pidgin/pixmaps/icons/hicolor/24x24/apps/pidgin.png has changed
--- a/pidgin/pixmaps/icons/hicolor/24x24/apps/scalable/pidgin.svg	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/pixmaps/icons/hicolor/24x24/apps/scalable/pidgin.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -2,7 +2,7 @@
 <!-- Created with Inkscape (http://www.inkscape.org/) -->
 <svg
    xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
+   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"
@@ -13,16 +13,84 @@
    height="24"
    id="svg4345"
    sodipodi:version="0.32"
-   inkscape:version="0.44.1"
+   inkscape:version="0.46"
    sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/icons/24/scalable"
    sodipodi:docname="pidgin.svg"
-   inkscape:export-filename="/home/hbons/Desktop/pidgin24.png"
+   inkscape:export-filename="/home/hbons/Bureaublad/pidgin.png"
    inkscape:export-xdpi="90"
    inkscape:export-ydpi="90"
-   version="1.0">
+   version="1.0"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
   <defs
      id="defs4347">
     <linearGradient
+       id="linearGradient8989"
+       inkscape:collect="always">
+      <stop
+         id="stop8991"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:0.81407034" />
+      <stop
+         id="stop8993"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8838">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
+         offset="0"
+         id="stop8840" />
+      <stop
+         style="stop-color:#3b1941;stop-opacity:0;"
+         offset="1"
+         id="stop8842" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8830">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
+         offset="0"
+         id="stop8832" />
+      <stop
+         style="stop-color:#3b1941;stop-opacity:0;"
+         offset="1"
+         id="stop8834" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8776">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.82412058"
+         offset="0"
+         id="stop8778" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="1"
+         id="stop8780" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8720">
+      <stop
+         style="stop-color:#fdc26a;stop-opacity:1"
+         offset="0"
+         id="stop8722" />
+      <stop
+         style="stop-color:#f57900;stop-opacity:1"
+         offset="1"
+         id="stop8724" />
+    </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="perspective97" />
+    <linearGradient
        inkscape:collect="always"
        id="linearGradient3124">
       <stop
@@ -42,24 +110,12 @@
          offset="0"
          id="stop3118" />
       <stop
-         style="stop-color:#82508e;stop-opacity:0;"
+         style="stop-color:#82508e;stop-opacity:0"
          offset="1"
          id="stop3120" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient3108">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop3110" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop3112" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
        id="linearGradient5438">
       <stop
          style="stop-color:white;stop-opacity:1;"
@@ -179,14 +235,14 @@
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient6506"
+       xlink:href="#linearGradient8989"
        id="linearGradient6512"
-       x1="15.645709"
-       y1="39.029884"
-       x2="15.645709"
-       y2="43.206608"
+       x1="15.242517"
+       y1="38.888657"
+       x2="15.712908"
+       y2="42.28862"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.660903,0,0,0.627207,-0.293224,-4.361383)" />
+       gradientTransform="matrix(0.657666,0,0,0.625853,-0.1715315,-4.3010586)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient6817"
@@ -414,44 +470,14 @@
        gradientTransform="matrix(0.668893,0,0,0.668627,-32.91377,-10.19246)" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient3108"
-       id="linearGradient3114"
-       x1="10.18327"
-       y1="16.618088"
-       x2="27.598003"
-       y2="36.64465"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.660903,0,0,0.627207,-0.293224,-4.361383)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3116"
-       id="linearGradient3122"
-       x1="15.722902"
-       y1="38.768803"
-       x2="15.722902"
-       y2="43.249905"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.67692,0,0,0.646801,-0.560381,-4.949693)" />
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#linearGradient3124"
        id="linearGradient3130"
-       x1="13.150809"
-       y1="38.849556"
-       x2="13.150809"
-       y2="43.105652"
+       x1="12.027549"
+       y1="36.059811"
+       x2="12.561858"
+       y2="42.352577"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.67692,0,0,0.646801,-0.560381,-4.949693)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2850"
-       id="linearGradient3146"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.769231,0,0,0.714287,-2.265038,-6.285729)"
-       x1="21.785719"
-       y1="28.142857"
-       x2="17.785713"
-       y2="30.07143" />
+       gradientTransform="matrix(0.6753496,0,0,0.6455349,-0.509203,-4.891953)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient5438"
@@ -461,6 +487,77 @@
        y1="-0.86487341"
        x2="30.152058"
        y2="23.011967" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8720"
+       id="linearGradient8726"
+       x1="12.806054"
+       y1="16.65247"
+       x2="13.166923"
+       y2="16.608501"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3116"
+       id="linearGradient8774"
+       x1="10.386011"
+       y1="19.281519"
+       x2="10.624538"
+       y2="22.99383"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8776"
+       id="radialGradient8782"
+       cx="11.763939"
+       cy="12.831866"
+       fx="11.763939"
+       fy="12.831866"
+       r="9.5000002"
+       gradientTransform="matrix(1.5913256,-4.8823489e-2,2.9994878e-2,0.9776358,-6.9422349,1.0103644)"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter8810"
+       x="-0.066766478"
+       width="1.133533"
+       y="-0.10563155"
+       height="1.2112631">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.30534121"
+         id="feGaussianBlur8812" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8830"
+       id="linearGradient8836"
+       x1="6.3341951"
+       y1="3.1008458"
+       x2="0.83419508"
+       y2="3.1008458"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8838"
+       id="linearGradient8844"
+       x1="9.5704832"
+       y1="3.0778286"
+       x2="3.0625"
+       y2="-0.047171354"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter9040"
+       x="-0.095484515"
+       width="1.190969"
+       y="-0.32181818"
+       height="1.6436364">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.22627841"
+         id="feGaussianBlur9042" />
+    </filter>
   </defs>
   <sodipodi:namedview
      id="base"
@@ -469,15 +566,15 @@
      borderopacity="1.0"
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
-     inkscape:zoom="32.163554"
-     inkscape:cx="16.820721"
-     inkscape:cy="19.317678"
+     inkscape:zoom="22.627417"
+     inkscape:cx="12.702237"
+     inkscape:cy="12.256271"
      inkscape:current-layer="layer1"
      showgrid="true"
      inkscape:grid-bbox="true"
      inkscape:document-units="px"
      inkscape:window-width="1440"
-     inkscape:window-height="846"
+     inkscape:window-height="847"
      inkscape:window-x="0"
      inkscape:window-y="0"
      showguides="true"
@@ -485,7 +582,17 @@
      inkscape:grid-points="false"
      width="24px"
      height="24px"
-     inkscape:object-bbox="true" />
+     inkscape:object-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7936"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
   <metadata
      id="metadata4350">
     <rdf:RDF>
@@ -502,28 +609,38 @@
      inkscape:label="Layer 1"
      inkscape:groupmode="layer">
     <path
-       style="opacity:1;fill:#75507b;fill-opacity:1"
-       d="M 11.578108,7.0000021 C 7.9352949,7.0000021 6.8108928,10.527259 9.3387556,13.902593 C 10.158711,14.997432 12.647399,17 12.984587,17 L 13.003895,16.098595 C 11.972573,14.801596 10.625325,13.293856 10.921791,12.985569 C 14.677426,12.985569 14.964445,11.881489 14.964445,9.8346762 C 14.964445,8.0544242 13.616029,7.0000021 11.578108,7.0000021 z "
-       id="path6521"
-       sodipodi:nodetypes="csccccc" />
+       style="fill:url(#linearGradient8844);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 5.945483,1.9731142 C 7.217445,-0.34713734 10,1.9093507 10,4.2806574 L 8.954525,4.1947658 C 8.954525,2.9993751 7.9505388,1.7171212 5.945483,1.9731142 z"
+       id="rect5189"
+       sodipodi:nodetypes="cccc" />
     <path
-       style="opacity:1;fill:url(#linearGradient3122);fill-opacity:1;stroke:url(#linearGradient3130);stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 9.593419,3.4587201 C 5.1094995,3.4587201 1.470379,7.0808064 1.470379,11.543733 C 1.470379,15.200191 1.4534941,19.889159 1.4534941,24.526857 C 2.2573289,24.526857 18.357073,24.544824 20.178665,24.544824 C 21.609759,24.544824 21.497959,23.212673 21.497959,23.212673 C 21.497959,21.488682 18.121191,20.042088 16.913262,18.776605 C 15.675569,17.482342 17.039539,14.777738 17.039539,14.777738 C 17.473652,13.788261 17.716459,12.691859 17.716459,11.543733 C 17.716459,7.0808064 14.077339,3.4587201 9.593419,3.4587201 z "
-       id="path5176"
-       sodipodi:nodetypes="ccccszcsc" />
+       style="fill:url(#linearGradient8836);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 3.3349138,3.782206 C 3.2763395,1.1368282 6.814347,1.6997265 8,3.7533385 L 7.051646,4.2016918 C 6.4539515,3.1664528 4.9433467,2.5579816 3.3349138,3.782206 z"
+       id="path8784"
+       sodipodi:nodetypes="cccc"
+       inkscape:transform-center-x="1.7235728"
+       inkscape:transform-center-y="-0.24306796" />
     <path
-       style="opacity:0.5;fill:url(#linearGradient3114);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 9.620321,4.4587156 C 5.6467762,4.4587156 2.4025968,7.6421549 2.3916944,11.612795 C 2.3916761,11.619492 2.3911679,11.625715 2.3916944,11.632396 C 2.3916944,16.20315 2.2865209,19.635632 2.2865209,23.549252 C 3.5664133,23.549252 14.545552,23.530565 18.395955,23.530565 C 19.167366,23.530565 20.480051,23.846723 20.480051,22.928139 C 20.480051,22.78906 20.348035,22.527556 19.984374,22.202931 C 19.620712,21.878306 19.076795,21.529724 18.476689,21.18372 C 17.329967,20.638287 16.501491,20.156486 15.979032,19.027696 C 15.575878,18.51709 15.390866,17.916861 15.35487,17.263676 C 15.318875,16.610491 15.639642,15.909718 15.716861,15.244853 C 15.871301,13.915122 16.208698,14.631229 16.208698,14.631229 C 16.218605,14.590901 16.232433,14.551532 16.250005,14.513628 C 16.638273,13.634657 16.848948,12.655557 16.848948,11.632396 C 16.848948,7.6523934 13.600567,4.4587156 9.620321,4.4587156 z "
+       style="opacity:1;fill:url(#linearGradient8774);fill-opacity:1;stroke:url(#linearGradient3130);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 9.6210408,3.5 C 5.1475237,3.5 1.5168457,7.1149956 1.5168457,11.569186 C 1.5168457,15.218486 1.5439694,21.481174 3.5225944,23.427658 C 4.3245644,23.427658 18.364363,24.544826 20.181729,24.544826 C 21.609503,24.544826 21.497963,23.215283 21.497963,23.215283 C 21.497963,22.576692 21.033908,21.976237 20.388647,21.409004 C 19.29532,20.447887 17.920241,19.83089 16.923902,18.787899 C 15.927563,17.744908 17.049886,14.796859 17.049886,14.796859 C 17.482992,13.809319 17.549357,12.846972 17.549357,11.701094 C 17.549357,7.2469039 14.094559,3.5 9.6210408,3.5 z"
+       id="path5176"
+       sodipodi:nodetypes="ccccsszcsc" />
+    <path
+       style="opacity:0.5;fill:url(#radialGradient8782);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 9.693459,4.5 C 5.739376,4.5 2.5110855,7.6765676 2.5002365,11.638635 C 2.5002185,11.645318 2.4997125,11.651527 2.5002365,11.658194 C 2.5002365,16.219081 2.4988555,20.806087 4.3856815,23.549325 C 5.659306,23.549325 14.594567,23.530678 18.426112,23.530678 C 19.193745,23.530678 20.5,23.846154 20.5,22.929553 C 20.5,22.790774 20.36863,22.529834 20.00675,22.20591 C 19.64487,21.881986 19.103616,21.534156 18.50645,21.188899 C 16.708853,20.449743 15.460748,19.238726 15.399921,17.277317 C 15.480347,15.30249 16.649061,13.948626 16.512942,11.768117 C 16.512942,7.7967072 13.65421,4.5 9.693459,4.5 z"
        id="path5241"
-       sodipodi:nodetypes="cscccssccsscssc" />
+       sodipodi:nodetypes="cscccsscccc" />
     <path
-       style="fill:#a46bb0;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 4.038333,8.0864989 C 5.573681,6.4493239 8.07145,6.8854919 9.05179,7.9308479 C 10.395216,9.3633699 10.239455,11.85472 8.704108,13.491894 C 7.369866,14.914624 5.175281,15.660821 3.831853,14.228299 C 2.488425,12.795776 2.825354,9.3799249 4.038333,8.0864989 z "
-       id="path3138"
-       sodipodi:nodetypes="csssc" />
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.97252291"
+       inkscape:original="M 7.15625 8 C 5.7694225 8 4.9999998 9.5395554 5 10.96875 C 5 12.613363 6.1444228 13.96875 7.53125 13.96875 C 8.5432599 13.96875 10.03125 12.832113 10.03125 11.1875 C 10.03125 9.8881973 8.5430781 8 7.15625 8 z "
+       style="opacity:1;fill:#9757a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8816"
+       d="M 7.15625,7.03125 C 6.1029614,7.03125 5.2431984,7.6462575 4.75,8.40625 C 4.2568016,9.1662425 4.0312499,10.07963 4.03125,10.96875 C 4.03125,13.064524 5.5107726,14.9375 7.53125,14.9375 C 8.4013507,14.9375 9.1895212,14.517728 9.84375,13.875 C 10.497979,13.232272 11,12.303108 11,11.1875 C 11,10.166552 10.509035,9.2426793 9.84375,8.46875 C 9.1784648,7.6948207 8.2910346,7.03125 7.15625,7.03125 z"
+       transform="translate(-1,6.25e-2)" />
     <path
-       style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 8.8136637,11.188225 C 8.8136637,12.837133 7.3689434,13.95874 6.3944626,13.95874 C 5.0590642,13.95874 3.9752623,12.620497 3.9752623,10.971589 C 3.9752623,9.5386622 4.7181965,7.9844383 6.0535952,7.9844383 C 7.3889945,7.9844383 8.8136637,9.8855295 8.8136637,11.188225 z "
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 9,11.217568 C 9,12.873569 7.5163584,14 6.5156249,14 C 5.1442504,14 4.0312505,12.656001 4.0312505,11 C 4.0312505,9.5609094 4.7941997,8 6.1655744,8 C 7.5369496,8 9,9.9092687 9,11.217568 z"
        id="path5157"
        sodipodi:nodetypes="csssc" />
     <path
@@ -534,26 +651,18 @@
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(1.208633,0,0,1.158621,-5.825637,-16.66897)" />
-    <path
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 4.9752634,2.5424297 C 6.2676381,1.111155 8.059671,2.6823452 8.9752679,3.325734 L 7.061552,3.7844642 L 4.9752634,2.5424297 z "
-       id="path5192"
-       sodipodi:nodetypes="cccc" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(1.1960429,0,0,1.158621,-5.6789543,-16.575223)" />
     <path
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 6.9752602,1.2553494 C 8.5939382,0.25341885 11.64336,2.4607647 11.936975,3.3797691 L 9.4042533,2.9587153 L 6.9752602,1.2553494 z "
-       id="rect5189"
-       sodipodi:nodetypes="cccc" />
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="1.0018603"
+       inkscape:original="M 15.375 8 C 14.972613 8.0219165 14.616322 8.2670758 14.40625 8.59375 C 13.830495 9.4890789 13.873243 11.039266 14.53125 12.0625 C 15.103067 12.951704 16.049246 13.426577 16.625 12.53125 C 17.200756 11.635921 17.051098 9.4958908 16.53125 8.6875 C 16.202247 8.1758836 15.777387 7.9780835 15.375 8 z "
+       style="fill:#9757a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8820"
+       d="M 15.3125,7 C 14.537055,7.0422356 13.927975,7.4941649 13.5625,8.0625 C 12.689986,9.4193046 12.791183,11.199932 13.6875,12.59375 C 14.065497,13.181554 14.559478,13.713455 15.28125,13.9375 C 16.003022,14.161545 17.002245,13.787939 17.46875,13.0625 C 17.974403,12.276184 18.035404,11.401604 18,10.53125 C 17.964596,9.6608958 17.828805,8.8619408 17.375,8.15625 C 16.897304,7.4134085 16.079992,6.9581976 15.3125,7 z" />
     <path
-       style="fill:#975fa3;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 17.336751,8.8148749 C 16.436419,7.5869931 14.971722,7.9141192 14.396849,8.6981357 C 13.609061,9.7725277 13.7004,11.64104 14.600731,12.868921 C 15.383133,13.93597 16.670043,14.495617 17.457832,13.421225 C 18.245621,12.346833 18.048044,9.7849448 17.336751,8.8148749 z "
-       id="path3132"
-       sodipodi:nodetypes="csssc" />
-    <path
-       style="fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 17.468686,9.5432478 C 16.793205,8.7246594 15.694305,8.9427465 15.263003,9.4654264 C 14.671958,10.181691 14.740486,11.427368 15.415967,12.245957 C 16.00297,12.957323 16.968483,13.33042 17.559527,12.614156 C 18.150572,11.897891 18.002339,10.189962 17.468686,9.5432478 z "
+       style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 16.540313,8.6790592 C 15.882307,7.6558262 14.811834,7.9284344 14.39169,8.5817827 C 13.815935,9.4771112 13.882691,11.034204 14.540698,12.057438 C 15.112515,12.946642 16.05305,13.413012 16.628804,12.517685 C 17.204559,11.622356 17.060161,9.48745 16.540313,8.6790592 z"
        id="path3134"
        sodipodi:nodetypes="csssc" />
     <path
@@ -564,26 +673,29 @@
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(1.153827,0,0,1.158621,4.558885,-16.66895)" />
-    <rect
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.8057553,0,0,1.158621,6.8057568,-16.668973)" />
+    <path
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8810)"
+       d="M 12.59375,12.4375 C 12.222391,12.4375 11.952722,12.697732 11.8125,12.90625 C 11.672278,13.114768 11.591589,13.333559 11.5,13.5625 C 11.316822,14.020382 11.132944,14.51781 10.875,14.875 C 10.617056,15.23219 10.354505,15.452654 9.84375,15.46875 C 9.3329954,15.484846 8.5004312,15.240041 7.28125,14.4375 C 7.0585983,14.276718 6.752174,14.30128 6.5579772,14.495477 C 6.3637804,14.689674 6.3392176,14.996098 6.5,15.21875 C 7.2056342,16.27546 8.2639191,17.5841 9.640625,18.40625 C 10.328978,18.817325 11.432979,19.087337 12.015625,19.34375 C 12.598271,19.600163 12.941819,19.5625 13.40625,19.5625 C 13.927105,19.5625 14.262855,19.263825 14.625,18.9375 C 14.987145,18.611175 15.366757,18.201439 15.71875,17.75 C 16.422736,16.847123 17.063583,15.803499 17.4375,15.1875 C 17.548363,14.941092 17.467317,14.65066 17.244886,14.49726 C 17.022454,14.343859 16.722179,14.37131 16.53125,14.5625 C 15.91539,15.324047 15.537809,15.447586 15.34375,15.4375 C 15.149691,15.427414 14.901069,15.263025 14.625,14.875 C 14.348931,14.486975 14.076271,13.963561 13.8125,13.5 C 13.680615,13.26822 13.545778,13.036007 13.375,12.84375 C 13.204222,12.651493 12.96049,12.4375 12.59375,12.4375 z"
+       id="path8770"
+       sodipodi:nodetypes="csssscscssssscscssssc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.63276428"
+       inkscape:original="M 10.5 14 C 10.223 14 10 14.223 10 14.5 C 10 14.777 10.223 15 10.5 15 L 11.5 15 C 11.777 15 12 14.777 12 14.5 C 12 14.223 11.777 14 11.5 14 L 10.5 14 z M 13.5 14 C 13.223 14 13 14.223 13 14.5 C 13 14.777 13.223 15 13.5 15 L 14.5 15 C 14.777 15 15 14.777 15 14.5 C 15 14.223 14.777 14 14.5 14 L 13.5 14 z "
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9040)"
+       id="path8998"
+       d="M 10.5,13.375 C 9.8833937,13.375 9.375,13.883394 9.375,14.5 C 9.375,15.116606 9.8833937,15.625 10.5,15.625 L 11.5,15.625 C 11.997417,15.625 12.351557,15.26606 12.5,14.8125 C 12.648443,15.26606 13.002583,15.625 13.5,15.625 L 14.5,15.625 C 15.116606,15.625 15.625,15.116606 15.625,14.5 C 15.625,13.883394 15.116606,13.375 14.5,13.375 L 13.5,13.375 C 13.002583,13.375 12.648443,13.73394 12.5,14.1875 C 12.351557,13.73394 11.997417,13.375 11.5,13.375 L 10.5,13.375 z" />
+    <path
        style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 10,14 C 10,14 10,15 10,15 L 11.5,15 C 11.777,15 12,14.777 12,14.5 C 12,14.223 11.777,14 11.5,14 L 10,14 z M 13.5,14 C 13.223,14 13,14.223 13,14.5 C 13,14.777 13.223,15 13.5,15 L 15.03125,15 C 15.03125,15 15.03125,14.168014 15.03125,14 L 13.5,14 z"
        id="rect3140"
-       width="4.4400907"
-       height="1"
-       x="9.501585"
-       y="14"
-       rx="0.69182354"
-       ry="0.5" />
+       sodipodi:nodetypes="cccscccscccc" />
     <path
-       style="fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 6.965729,14.893438 C 12.054241,18.243015 11.620917,13 12.397198,13 C 13.162798,13 12.66503,18.201991 16.965729,14.895644 C 16.232886,16.102946 13.980397,18 13.030799,18 C 12.07051,18 8.156601,16.676807 6.965729,14.893438 z "
+       style="fill:url(#linearGradient8726);fill-opacity:1;stroke:none;stroke-width:1.02830470000000007;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 7.0099232,14.992875 C 12.098435,18.088335 11.605646,13 12.595061,13 C 13.606375,13 14.291899,18.201991 16.965729,14.895644 C 16.545386,16.431071 14.354137,19.011297 13.404539,19.011297 C 12.44425,19.011297 9.0625816,18.378283 7.0099232,14.992875 z"
        id="path3142"
        sodipodi:nodetypes="czczc" />
-    <path
-       style="fill:url(#linearGradient3146);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 6.965729,14.893439 C 11.706133,19.171305 11.620917,13 12.397198,13 C 13.162798,13 12.607012,18.027939 16.965729,14.895646 C 16.232886,16.102947 13.980397,18 13.030799,18 C 12.07051,18 8.156602,16.676809 6.965729,14.893439 z "
-       id="path3144"
-       sodipodi:nodetypes="czczc" />
   </g>
 </svg>
Binary file pidgin/pixmaps/icons/hicolor/32x32/apps/pidgin.png has changed
--- a/pidgin/pixmaps/icons/hicolor/32x32/apps/scalable/pidgin.svg	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/pixmaps/icons/hicolor/32x32/apps/scalable/pidgin.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -2,7 +2,7 @@
 <!-- Created with Inkscape (http://www.inkscape.org/) -->
 <svg
    xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
+   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"
@@ -13,51 +13,23 @@
    height="32"
    id="svg4345"
    sodipodi:version="0.32"
-   inkscape:version="0.44.1"
+   inkscape:version="0.46"
    sodipodi:docbase="/home/hbons/Desktop/2.0.2/pidgin/pixmaps/icons/32/scalable"
    sodipodi:docname="pidgin.svg"
-   inkscape:export-filename="/home/hbons/Desktop/pidgin32.png"
+   inkscape:export-filename="/home/hbons/Bureaublad/pidgin-32.png"
    inkscape:export-xdpi="90"
    inkscape:export-ydpi="90"
-   version="1.0">
+   version="1.0"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
   <defs
      id="defs4347">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3976">
-      <stop
-         style="stop-color:#3b1941;stop-opacity:1;"
-         offset="0"
-         id="stop3978" />
-      <stop
-         style="stop-color:#3b1941;stop-opacity:0;"
-         offset="1"
-         id="stop3980" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3968">
-      <stop
-         style="stop-color:#82508e;stop-opacity:1;"
-         offset="0"
-         id="stop3970" />
-      <stop
-         style="stop-color:#82508e;stop-opacity:0;"
-         offset="1"
-         id="stop3972" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3958">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop3960" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop3962" />
-    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 16 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="32 : 16 : 1"
+       inkscape:persp3d-origin="16 : 10.666667 : 1"
+       id="perspective79" />
     <linearGradient
        inkscape:collect="always"
        id="linearGradient2850">
@@ -92,17 +64,6 @@
          offset="1"
          id="stop2820" />
     </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2816"
-       id="radialGradient2824"
-       cx="9.4288578"
-       cy="19.283415"
-       fx="9.4288578"
-       fy="19.283415"
-       r="16.390338"
-       gradientTransform="matrix(1.556432,0,0,1.618148,-52.04294,-30.39321)"
-       gradientUnits="userSpaceOnUse" />
     <linearGradient
        inkscape:collect="always"
        id="linearGradient2826">
@@ -117,16 +78,6 @@
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2826"
-       id="linearGradient2832"
-       x1="13.191773"
-       y1="41.606163"
-       x2="13.191773"
-       y2="47.843258"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.988192,-46.55265,-16.48621)" />
-    <linearGradient
-       inkscape:collect="always"
        id="linearGradient2834">
       <stop
          style="stop-color:#82508e;stop-opacity:1;"
@@ -139,16 +90,6 @@
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2834"
-       id="linearGradient2840"
-       x1="11.373499"
-       y1="41.566242"
-       x2="11.373499"
-       y2="47.746658"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.988192,-46.55265,-16.48621)" />
-    <linearGradient
-       inkscape:collect="always"
        id="linearGradient6563">
       <stop
          style="stop-color:white;stop-opacity:1;"
@@ -256,24 +197,6 @@
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient6506"
-       id="linearGradient6512"
-       x1="15.645709"
-       y1="39.743458"
-       x2="14.943421"
-       y2="50.079575"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6537"
-       id="linearGradient6543"
-       x1="30.5"
-       y1="0.033532728"
-       x2="30.5"
-       y2="23.559282"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#linearGradient6563"
        id="linearGradient6569"
        x1="-1.6841649"
@@ -300,45 +223,534 @@
        x2="15.645709"
        y2="53.502155"
        gradientTransform="translate(-47,-15)" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="28.364647"
+       x2="18.497854"
+       y1="60.525894"
+       x1="14.193055"
+       id="linearGradient8758"
+       xlink:href="#linearGradient8752"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="44.348099"
+       x2="17.997768"
+       y1="36.416954"
+       x1="17.997768"
+       id="linearGradient8834"
+       xlink:href="#linearGradient8828"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="30.188351"
+       x2="18.143806"
+       y1="29.72571"
+       x1="18.097515"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8818"
+       xlink:href="#linearGradient8808"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="30.431053"
+       x2="18.031723"
+       y1="29.72571"
+       x1="18.097515"
+       id="linearGradient8814"
+       xlink:href="#linearGradient8820"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)"
+       gradientUnits="userSpaceOnUse"
+       y2="47.757988"
+       x2="11.373499"
+       y1="43.444576"
+       x1="11.373499"
+       id="linearGradient8173"
+       xlink:href="#linearGradient2834"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)"
+       gradientUnits="userSpaceOnUse"
+       y2="49.067719"
+       x2="13.191773"
+       y1="41.606163"
+       x1="13.191773"
+       id="linearGradient8171"
+       xlink:href="#linearGradient2826"
+       inkscape:collect="always" />
     <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3958"
-       id="radialGradient3966"
-       cx="9.0640488"
-       cy="21.511742"
-       fx="9.0640488"
-       fy="21.511742"
-       r="16.663956"
-       gradientTransform="matrix(1.68884,0,0,1.716583,-6.243689,-15.89085)"
-       gradientUnits="userSpaceOnUse" />
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.3364897,0,0,1.3894845,-0.759152,-10.711989)"
+       r="16.390338"
+       fy="25.801632"
+       fx="14.930223"
+       cy="25.801632"
+       cx="14.930223"
+       id="radialGradient8169"
+       xlink:href="#linearGradient2816"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="44.272076"
+       x2="5.5366187"
+       y1="38.950283"
+       x1="12.01321"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6573"
+       xlink:href="#linearGradient6563"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="22.781603"
+       x2="30.5"
+       y1="1.0232024"
+       x1="30.5"
+       id="linearGradient8166"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(1,0,0,0.988192,1.5624997,-2.39645)"
+       gradientUnits="userSpaceOnUse"
+       y2="47.022106"
+       x2="15.645709"
+       y1="40.668503"
+       x1="15.645709"
+       id="linearGradient8164"
+       xlink:href="#linearGradient6506"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="43.5"
+       x2="5.6917014"
+       y1="43.5"
+       x1="3.3105288"
+       id="linearGradient6499"
+       xlink:href="#linearGradient6493"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.732283,0,10.65742)"
+       r="9.7225161"
+       fy="39.80859"
+       fx="15.004828"
+       cy="39.80859"
+       cx="15.004828"
+       id="radialGradient5286"
+       xlink:href="#linearGradient5280"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8156">
+      <stop
+         id="stop8158"
+         offset="0.0000000"
+         style="stop-color:#f4d9b1;stop-opacity:1.0000000;" />
+      <stop
+         id="stop8160"
+         offset="1.0000000"
+         style="stop-color:#df9725;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
+       r="8.4883642"
+       fy="2.6242435"
+       fx="7.8836637"
+       cy="2.6242435"
+       cx="7.8836637"
+       id="radialGradient8154"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.4883642"
+       fy="0.14505707"
+       fx="7.8836741"
+       cy="0.14505707"
+       cx="7.8836741"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient8146"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.4883642"
+       fy="1.5104795"
+       fx="7.8836637"
+       cy="1.5104795"
+       cx="7.8836637"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient8144"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8136">
+      <stop
+         id="stop8138"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop8140" />
+      <stop
+         id="stop8142"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5280"
+       inkscape:collect="always">
+      <stop
+         id="stop5282"
+         offset="0"
+         style="stop-color:#82508e;stop-opacity:1;" />
+      <stop
+         id="stop5284"
+         offset="1"
+         style="stop-color:#82508e;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6493"
+       inkscape:collect="always">
+      <stop
+         id="stop6495"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop6497"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective75"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 24 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient8686"
+       inkscape:collect="always">
+      <stop
+         id="stop8688"
+         offset="0"
+         style="stop-color:#fdb751;stop-opacity:1" />
+      <stop
+         id="stop8690"
+         offset="1"
+         style="stop-color:#ce5c00;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8808"
+       inkscape:collect="always">
+      <stop
+         id="stop8810"
+         offset="0"
+         style="stop-color:#6e3100;stop-opacity:1;" />
+      <stop
+         id="stop8812"
+         offset="1"
+         style="stop-color:#6e3100;stop-opacity:0;" />
+    </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient3968"
-       id="linearGradient3974"
-       x1="16.13257"
-       y1="40.781811"
-       x2="16.13257"
-       y2="48.068741"
-       gradientUnits="userSpaceOnUse" />
+       id="linearGradient8820">
+      <stop
+         style="stop-color:#522400;stop-opacity:1"
+         offset="0"
+         id="stop8822" />
+      <stop
+         style="stop-color:#6e3100;stop-opacity:0;"
+         offset="1"
+         id="stop8824" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8828"
+       inkscape:collect="always">
+      <stop
+         id="stop8830"
+         offset="0"
+         style="stop-color:#dc50cd;stop-opacity:1;" />
+      <stop
+         id="stop8832"
+         offset="1"
+         style="stop-color:#dc50cd;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8848"
+       inkscape:collect="always">
+      <stop
+         id="stop8850"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1;" />
+      <stop
+         id="stop8852"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8860"
+       inkscape:collect="always">
+      <stop
+         id="stop8862"
+         offset="0"
+         style="stop-color:#3b1941;stop-opacity:1;" />
+      <stop
+         id="stop8864"
+         offset="1"
+         style="stop-color:#a949b9;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8868"
+       inkscape:collect="always">
+      <stop
+         id="stop8870"
+         offset="0"
+         style="stop-color:#3b1941;stop-opacity:1;" />
+      <stop
+         id="stop8872"
+         offset="1"
+         style="stop-color:#a646b7;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8876"
+       inkscape:collect="always">
+      <stop
+         id="stop8878"
+         offset="0"
+         style="stop-color:#9a5ba8;stop-opacity:1;" />
+      <stop
+         id="stop8880"
+         offset="1"
+         style="stop-color:#744380;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8884"
+       inkscape:collect="always">
+      <stop
+         id="stop8886"
+         offset="0"
+         style="stop-color:#9a5ba8;stop-opacity:1;" />
+      <stop
+         id="stop8888"
+         offset="1"
+         style="stop-color:#6b3e75;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8904"
+       inkscape:collect="always">
+      <stop
+         id="stop8906"
+         offset="0"
+         style="stop-color:#729fcf;stop-opacity:1;" />
+      <stop
+         id="stop8908"
+         offset="1"
+         style="stop-color:#25486d;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8732"
+       inkscape:collect="always">
+      <stop
+         id="stop8734"
+         offset="0"
+         style="stop-color:#6b3678;stop-opacity:1;" />
+      <stop
+         id="stop8736"
+         offset="1"
+         style="stop-color:#6b3678;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8744">
+      <stop
+         style="stop-color:#7a1d90;stop-opacity:1"
+         offset="0"
+         id="stop8746" />
+      <stop
+         style="stop-color:#6b3678;stop-opacity:0;"
+         offset="1"
+         id="stop8748" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8752"
+       inkscape:collect="always">
+      <stop
+         id="stop8754"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop8756"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8732"
+       id="linearGradient8239"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6883673,0,0,0.6819755,24.954518,-0.5239125)"
+       x1="4.0852318"
+       y1="40.416641"
+       x2="4.0852318"
+       y2="43.352409" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient3976"
-       id="linearGradient3982"
-       x1="12.095973"
-       y1="40.907658"
-       x2="12.095973"
-       y2="46.463146"
-       gradientUnits="userSpaceOnUse" />
+       xlink:href="#linearGradient8744"
+       id="linearGradient8242"
+       gradientUnits="userSpaceOnUse"
+       x1="4.0852318"
+       y1="39.097038"
+       x2="4.0852318"
+       y2="44.321774"
+       gradientTransform="matrix(0.6883673,0,0,0.6819755,-0.5307196,-0.5239125)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8686"
+       id="linearGradient8248"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7692307,0,0,0.8858131,-1.2307696,-7.0311428)"
+       x1="18.5"
+       y1="29.911009"
+       x2="19.985121"
+       y2="29.853554" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2816"
+       id="radialGradient8261"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7193306,0,0,0.7337558,-19.889272,-7.8067639)"
+       cx="46.861629"
+       cy="38.01083"
+       fx="46.861629"
+       fy="38.01083"
+       r="16.390338" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6506"
+       id="linearGradient8263"
+       gradientUnits="userSpaceOnUse"
+       x1="15.645709"
+       y1="40.956318"
+       x2="15.645709"
+       y2="44.694569"
+       gradientTransform="matrix(0.6894969,0,0,0.6764991,-0.2876444,-0.2797398)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2834"
+       id="linearGradient8266"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7068603,0,0,0.6774341,-33.464679,-11.987365)"
+       x1="58.611423"
+       y1="56.489136"
+       x2="58.611423"
+       y2="61.328545" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2826"
+       id="linearGradient8268"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7068603,0,0,0.6774341,-33.464679,-11.987365)"
+       x1="60.8349"
+       y1="56.601696"
+       x2="60.8349"
+       y2="61.321751" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8868"
+       id="linearGradient8271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9347751,0,0,0.4640431,-5.8911763,1.552034)"
+       x1="12.409452"
+       y1="10.602999"
+       x2="16.140554"
+       y2="13.895189" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2850"
-       id="linearGradient3991"
+       xlink:href="#linearGradient8860"
+       id="linearGradient8274"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0342512,0,0,0.6819755,-6.0896085,-1.7917997)"
+       x1="13.061977"
+       y1="10.027351"
+       x2="16.545418"
+       y2="12.891665" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6537"
+       id="linearGradient8277"
+       gradientUnits="userSpaceOnUse"
+       x1="30.5"
+       y1="1.7319652"
+       x2="30.5"
+       y2="22.781603"
+       gradientTransform="matrix(0.6666666,0,0,0.6587574,0.1666662,-0.1468935)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8904"
+       id="linearGradient8280"
+       gradientUnits="userSpaceOnUse"
+       x1="29.466667"
+       y1="6.8962817"
+       x2="42.829762"
+       y2="37.801281"
+       gradientTransform="matrix(0.6875001,0,0,0.6767003,-0.4687499,-0.5159997)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8876"
+       id="linearGradient8284"
+       gradientUnits="userSpaceOnUse"
+       x1="10.46875"
+       y1="25.3125"
+       x2="9.53125"
+       y2="19.6875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8848"
+       id="linearGradient8286"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.769231,0,0,0.714287,-1.230773,-2.285726)"
-       x1="21.785719"
-       y1="28.142857"
-       x2="17.785713"
-       y2="30.07143" />
+       x1="10.48653"
+       y1="25.21174"
+       x2="9.7512932"
+       y2="23.675837" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8884"
+       id="linearGradient8288"
+       gradientUnits="userSpaceOnUse"
+       x1="23.881994"
+       y1="24.343237"
+       x2="24.973602"
+       y2="19.216713" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8848"
+       id="linearGradient8290"
+       gradientUnits="userSpaceOnUse"
+       x1="10.498732"
+       y1="24.936121"
+       x2="9.6415968"
+       y2="23.675837" />
+    <filter
+       inkscape:collect="always"
+       id="filter9078">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.29164334"
+         id="feGaussianBlur9080" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter9122"
+       x="-0.06288049"
+       width="1.125761"
+       y="-0.22385455"
+       height="1.4477091">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.14573864"
+         id="feGaussianBlur9124" />
+    </filter>
   </defs>
   <sodipodi:namedview
      id="base"
@@ -348,13 +760,13 @@
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
      inkscape:zoom="17.236022"
-     inkscape:cx="21.944662"
-     inkscape:cy="16.287609"
+     inkscape:cx="25.766946"
+     inkscape:cy="17.060038"
      inkscape:current-layer="layer1"
      showgrid="true"
      inkscape:grid-bbox="true"
      inkscape:document-units="px"
-     inkscape:window-width="1434"
+     inkscape:window-width="1432"
      inkscape:window-height="840"
      inkscape:window-x="0"
      inkscape:window-y="0"
@@ -363,7 +775,17 @@
      inkscape:grid-points="false"
      width="32px"
      height="32px"
-     inkscape:object-bbox="true" />
+     inkscape:object-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid8236"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
   <metadata
      id="metadata4350">
     <rdf:RDF>
@@ -380,110 +802,167 @@
      inkscape:label="Layer 1"
      inkscape:groupmode="layer">
     <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0057179"
-       inkscape:original="M 20.53125 1.5 C 17.192693 1.5 14.5 4.611235 14.5 8.46875 L 14.5 20.53125 C 14.5 24.388765 17.192693 27.5 20.53125 27.5 L 34.53125 27.5 L 34.53125 31.09375 L 39.34375 27.5 L 41.5 27.5 C 45.512737 27.5 46.5 24.38319 46.5 20.53125 L 46.5 8.46875 C 46.5 4.6112353 43.807307 1.5 40.46875 1.5 L 20.53125 1.5 z "
-       style="fill:none;fill-opacity:1;stroke:white;stroke-width:1.47727883;stroke-miterlimit:4;stroke-opacity:1"
-       id="path6504"
-       d="M 20.53125,2.5 C 17.817519,2.5 15.5,5.0792547 15.5,8.46875 L 15.5,20.53125 C 15.5,23.920745 17.817519,26.5 20.53125,26.5 L 34.53125,26.5 C 35.082213,26.503178 35.528072,26.949037 35.53125,27.5 L 35.53125,29.09375 L 38.75,26.6875 C 38.923102,26.563771 39.130983,26.498125 39.34375,26.5 L 41.5,26.5 C 43.245978,26.5 44.034662,25.931926 44.625,24.9375 C 45.215338,23.943074 45.5,22.371297 45.5,20.53125 L 45.5,8.46875 C 45.5,5.079255 43.182481,2.5 40.46875,2.5 L 20.53125,2.5 z "
-       transform="matrix(0.67692,0,0,0.67692,0.161535,-0.515354)" />
+       style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8280);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 13.646486,0.49905075 C 11.351227,0.49905075 9.5000004,2.6044244 9.5000004,5.2148058 L 9.5000004,13.377503 C 9.5000004,15.987885 11.351227,18.470375 13.646486,18.470375 L 23.588406,18.470375 C 23.588406,18.470375 23.18568,20.245193 22.16985,21.5 C 25.739035,21.5 26.597376,19.058605 26.597376,18.460569 L 28.062501,18.470375 C 30.821257,18.470375 31.500001,15.984112 31.500001,13.377503 L 31.500001,5.2148058 C 31.500001,2.6044246 29.648775,0.49905075 27.353517,0.49905075 L 13.646486,0.49905075 z"
+       id="path8201"
+       sodipodi:nodetypes="cccccccccccc" />
     <path
-       style="fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:1.46586692;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 20.53125,1.5 C 17.192693,1.5 14.5,4.611235 14.5,8.46875 L 14.5,20.53125 C 14.5,24.388765 17.428915,28.139948 20.767472,28.139948 L 33.409288,28.041495 L 33.415412,31.845969 L 38.723454,28.076231 L 42.130099,28.139948 C 46.142836,28.139948 46.5,24.580097 46.5,20.728157 L 46.5,8.46875 C 46.5,4.6112353 43.807307,1.5 40.46875,1.5 L 20.53125,1.5 z "
-       id="rect5498"
-       sodipodi:nodetypes="cccccccccccc"
-       transform="matrix(0.687501,0,0,0.67692,-0.468758,-0.515381)" />
+       style="fill:url(#linearGradient8277);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 13.854166,1.5 C 12.0438,1.5 10.5,3.1982064 10.5,5.4319585 L 10.5,13.37822 C 10.5,15.611972 12.0438,17.310178 13.854166,17.310178 L 23.854707,17.310178 C 24.222455,17.311225 24.520314,17.605549 24.521373,17.968936 C 24.521373,17.968936 24.644478,19.146784 24.232611,19.890811 C 25.286204,19.513694 25.854166,17.433696 25.854166,17.433696 C 25.969506,17.352067 26.108135,17.30881 26.249999,17.310178 L 27.833332,17.310178 C 28.997823,17.310178 29.543634,16.936466 29.9375,16.280871 C 30.331365,15.625274 30.5,14.590529 30.5,13.37822 L 30.5,5.4319585 C 30.5,3.1982066 28.956198,1.5 27.145833,1.5 L 13.854166,1.5 z"
+       id="path8203"
+       sodipodi:nodetypes="ccccccccccscccc" />
+    <rect
+       style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect8734"
+       width="4.8185711"
+       height="1.2686747"
+       x="10.237393"
+       y="17.486546"
+       rx="0.5602473"
+       ry="0.63433737" />
+    <path
+       style="fill:url(#linearGradient8274);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 6,4.9064736 C 7.9672058,3.6750483 11.311019,5.8704952 11.667854,7 L 8.951995,7 C 8.9089721,5.4016199 6,4.9064736 6,4.9064736 z"
+       id="path8205"
+       sodipodi:nodetypes="cccc" />
     <path
-       transform="matrix(0.668893,0,0,0.668627,8.626692e-2,-0.192463)"
-       style="fill:url(#linearGradient6543);fill-opacity:1;stroke:white;stroke-width:1.49530375;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 20.53125,2.53125 C 17.841732,2.53125 15.53125,5.0973912 15.53125,8.46875 L 15.53125,20.53125 C 15.53125,23.902609 17.841732,26.46875 20.53125,26.46875 L 33.967629,26.46875 C 34.534122,26.476048 34.991581,26.933507 34.998879,27.5 L 34.998879,29 L 38.71875,26.65625 C 38.901723,26.528628 39.120742,26.462922 39.34375,26.46875 L 42.415884,26.46875 C 45.139435,26.46875 45.46875,24.282574 45.46875,20.53125 L 45.46875,8.46875 C 45.46875,5.0973915 43.158268,2.53125 40.46875,2.53125 L 20.53125,2.53125 z "
-       id="path6535"
-       sodipodi:nodetypes="cccccccccccccc" />
+       style="fill:url(#linearGradient8271);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 5,6.7464464 C 6.2268113,5.1783371 10,6.3940033 10,7.5343215 L 7.134176,8 C 8.0531299,6.6379921 5,6.7464464 5,6.7464464 z"
+       id="path8207"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:url(#linearGradient8266);fill-opacity:1;stroke:url(#linearGradient8268);stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 11.067522,6.4999996 C 6.385278,6.4999996 2.2201068,10.234965 2.6293774,14.884611 C 3.5249724,25.059298 0.81309749,23.680419 0.50183135,28.323515 C 0.50183135,29.735371 1.1983857,30.406973 2.6874788,30.406973 C 3.5268674,30.406973 21.218061,30.505972 23.120221,30.505972 C 24.614613,30.505972 24.497868,29.110729 24.497868,29.110729 C 24.497868,27.305087 19.972479,25.789981 18.711123,24.464564 C 17.418686,23.109004 18.842985,18.271782 18.842985,18.271782 C 19.296299,17.235443 19.549846,16.087114 19.549846,14.884611 C 19.549846,10.210316 15.749766,6.4999996 11.067522,6.4999996 z"
+       id="path8209"
+       sodipodi:nodetypes="cscccszcsc" />
     <path
-       style="opacity:1;fill:url(#linearGradient3974);fill-opacity:1.0;stroke:url(#linearGradient3982);stroke-width:1.51128328;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 15,13 C 8.3759979,13 3,18.600001 3,25.5 C 4.8460021,40.483064 0.49299658,38.484005 0.052646307,45.33795 C 0.052646307,47.422072 1.0380664,48.413461 3.1446965,48.413461 C 4.3321851,48.413461 29.360035,48.5596 32.051034,48.5596 C 34.165161,48.5596 34,46.5 34,46.5 C 34,43.834589 27.597902,41.598052 25.813453,39.641526 C 23.985035,37.640505 26,30.5 26,30.5 C 26.641306,28.9702 27,27.275084 27,25.5 C 27,18.600001 21.624002,13 15,13 z "
-       id="path5176"
-       sodipodi:nodetypes="cccccszcsc"
-       transform="matrix(0.67692,0,0,0.646801,0.464358,-0.908413)" />
+       style="opacity:0.55;fill:url(#radialGradient8261);fill-opacity:1;stroke:url(#linearGradient8263);stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10.916681,7.4999998 C 6.7712212,7.4999998 3.1789143,10.957612 3.5045886,15.167484 C 3.8937578,20.198131 3.7235067,21.924032 2.4866618,25.116843 C 0.50096208,28.326958 1.8660136,29.846841 3.4810518,29.846841 C 4.8163187,29.846841 17.103621,29.826924 21.120612,29.826924 C 21.925398,29.826924 23.294875,30.163902 23.294875,29.184825 C 23.294875,29.036588 23.157148,28.757863 22.777754,28.411859 C 22.398357,28.065856 21.830907,27.694319 21.204838,27.325529 C 20.578767,26.956739 19.909935,26.583672 19.308721,26.218308 C 18.707508,25.852945 18.174778,25.511888 17.800447,25.027522 C 17.379851,24.483292 17.186833,23.843536 17.14928,23.147336 C 17.111728,22.451136 17.206769,21.704215 17.28733,20.995566 C 17.448452,19.578267 17.800447,18.342413 17.800447,18.342413 C 17.810782,18.299429 17.825209,18.257467 17.84354,18.217067 C 18.248606,17.280213 18.468397,16.236634 18.468397,15.146094 C 18.468397,10.903994 15.069132,7.4999998 10.916681,7.4999998 z"
+       id="path8211"
+       sodipodi:nodetypes="cscccssssssscssc" />
     <path
-       style="opacity:0.5;fill:url(#radialGradient3966);fill-opacity:1.0;stroke:url(#linearGradient6512);stroke-width:1.55319357;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 15,14.0625 C 8.9877035,14.0625 4.0789961,19.13808 4.0625,25.46875 C 4.0624722,25.479427 4.0625,25.489316 4.0625,25.5 C 4.9744187,33.020507 4.3062656,37.469969 2.59375,40.59375 C -0.19778709,46.24536 1.5610206,47.490284 3.9033639,47.490284 C 5.8399452,47.490284 23.958121,47.46049 29.784094,47.46049 C 30.951301,47.46049 32.9375,47.964563 32.9375,46.5 C 32.9375,46.278257 32.737749,45.861323 32.1875,45.34375 C 31.637251,44.826177 30.81426,44.270409 29.90625,43.71875 C 28.99824,43.167091 28.02821,42.609033 27.15625,42.0625 C 26.28429,41.515967 25.511654,41.005793 24.96875,40.28125 C 24.358745,39.467156 24.078806,38.510169 24.024342,37.46875 C 23.969878,36.427331 24.107721,35.310041 24.224561,34.25 C 24.458241,32.129917 24.96875,30.28125 24.96875,30.28125 C 24.98374,30.216952 25.004663,30.154183 25.03125,30.09375 C 25.618731,28.692346 25.9375,27.131297 25.9375,25.5 C 25.9375,19.154404 21.022436,14.0625 15,14.0625 z "
-       id="path5241"
-       sodipodi:nodetypes="csscccssssssscssc"
-       transform="matrix(0.660903,0,0,0.627207,0.731515,-0.320103)" />
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="1.0174263"
+       inkscape:original="M 9.96875 19 C 8.022221 19 6.9374998 21.081214 6.9375 23 C 6.9375 25.208 8.5222219 27 10.46875 27 C 11.889191 27 14 25.489251 14 23.28125 C 14 21.536852 11.915281 19 9.96875 19 z "
+       style="fill:url(#linearGradient8284);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8838"
+       d="M 9.96875,17.96875 C 8.6328774,17.96875 7.5286409,18.753017 6.875,19.71875 C 6.2213591,20.684483 5.9062499,21.848884 5.90625,23 C 5.90625,25.694817 7.8977844,28.03125 10.46875,28.03125 C 11.539674,28.03125 12.596335,27.527372 13.46875,26.71875 C 14.341165,25.910128 15.03125,24.709464 15.03125,23.28125 C 15.03125,22.003744 14.362496,20.808851 13.46875,19.8125 C 12.575004,18.816149 11.384009,17.96875 9.96875,17.96875 z"
+       transform="matrix(0.8767124,0,0,0.795031,-1.1780825,-4.2857136)" />
     <path
-       style="opacity:1;fill:#a46bb0;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 5.0726004,12.086499 C 6.6079483,10.449324 9.1057173,10.885492 10.086057,11.930848 C 11.429483,13.36337 11.273722,15.85472 9.7383746,17.491894 C 8.4041332,18.914624 6.2095475,19.660821 4.8661202,18.228299 C 3.5226923,16.795776 3.8596213,13.379925 5.0726004,12.086499 z "
-       id="path5160"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 11,14.217567 C 11,15.873567 9.2097808,17 8.0022573,17 C 6.3475044,17 5.0045159,15.655999 5.0045159,14 C 5.0045159,12.56091 5.9251197,11 7.5798726,11 C 9.2346277,11 11,12.909268 11,14.217567 z"
+       id="path8214"
        sodipodi:nodetypes="csssc" />
     <path
-       style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 13.257119,24.626053 C 13.257119,26.227351 11.8279,27.316574 10.863875,27.316574 C 9.5428049,27.316574 8.4706318,26.01697 8.4706318,24.415672 C 8.4706318,23.024119 9.2055946,21.514771 10.526665,21.514771 C 11.847736,21.514771 13.257119,23.360971 13.257119,24.626053 z "
-       id="path5157"
-       sodipodi:nodetypes="csssc"
-       transform="matrix(1.010846,0,0,1.029732,-3.562503,-10.12874)" />
+       sodipodi:type="arc"
+       style="fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path8216"
+       sodipodi:cx="10.169642"
+       sodipodi:cy="24.3125"
+       sodipodi:rx="1.2410715"
+       sodipodi:ry="1.2946428"
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(1.2086331,0,0,1.1586209,-4.7913664,-13.66897)" />
     <path
        sodipodi:type="arc"
-       style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path5162"
+       style="fill:url(#linearGradient8286);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path5164"
        sodipodi:cx="10.169642"
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(1.208633,0,0,1.158621,-4.791365,-12.66897)" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.4028777,0,0,0.3862069,3.4028779,5.1103446)" />
     <path
-       transform="matrix(0.596326,-0.813274,-0.562251,-0.766804,24.4163,42.47989)"
-       style="opacity:1;fill:#975fa3;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 13.257119,24.626053 C 13.257119,26.227351 11.8279,27.316574 10.863875,27.316574 C 9.5428049,27.316574 8.4706318,26.01697 8.4706318,24.415672 C 8.4706318,23.024119 9.2055946,21.514771 10.526665,21.514771 C 11.847736,21.514771 13.257119,23.360971 13.257119,24.626053 z "
-       id="path5167"
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="1.0250763"
+       inkscape:original="M 24.71875 19 C 23.921039 19.030682 23.197708 19.355158 22.78125 19.8125 C 21.639847 21.065961 21.758036 23.254972 23.0625 24.6875 C 24.196099 25.932389 26.077347 26.565958 27.21875 25.3125 C 28.360153 24.05904 28.061824 21.069247 27.03125 19.9375 C 26.379019 19.221236 25.516461 18.969318 24.71875 19 z "
+       style="fill:url(#linearGradient8288);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8846"
+       d="M 24.6875,17.96875 C 23.636213,18.009185 22.683031,18.409233 22.03125,19.125 C 20.466122,20.843786 20.678782,23.580894 22.3125,25.375 C 23.011072,26.142154 23.917332,26.724837 24.9375,26.9375 C 25.957668,27.150163 27.151401,26.89759 27.96875,26 C 28.842555,25.04041 29.039766,23.753975 28.96875,22.53125 C 28.897734,21.308525 28.565932,20.111716 27.78125,19.25 C 26.906665,18.289553 25.728905,17.928695 24.6875,17.96875 z"
+       transform="matrix(0.7484239,0,0,0.7741119,-1.6908405,-3.9075188)" />
+    <path
+       style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 18.387083,11.67906 C 17.509743,10.655828 16.082447,10.928433 15.522253,11.58178 C 14.754581,12.477109 14.843587,14.034201 15.720929,15.057435 C 16.483351,15.94664 17.737401,16.413013 18.505073,15.517687 C 19.272745,14.622358 19.080214,12.487451 18.387083,11.67906 z"
+       id="path8220"
        sodipodi:nodetypes="csssc" />
     <path
-       style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 13.257119,24.626053 C 13.257119,26.227351 11.8279,27.316574 10.863875,27.316574 C 9.5428049,27.316574 8.4706318,26.01697 8.4706318,24.415672 C 8.4706318,23.024119 9.2055946,21.514771 10.526665,21.514771 C 11.847736,21.514771 13.257119,23.360971 13.257119,24.626053 z "
-       id="path5169"
-       sodipodi:nodetypes="csssc"
-       transform="matrix(0.447398,-0.542185,-0.421833,-0.511203,23.06465,33.31996)" />
-    <path
        sodipodi:type="arc"
-       style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path5171"
+       style="fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path8222"
        sodipodi:cx="10.169642"
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(1.208633,0,0,1.158621,5.208632,-12.66896)" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.8057552,0,0,1.1586207,7.8057579,-13.668966)" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.45127434"
+       inkscape:original="M 13.4375 16 C 12.661218 16 12.51015 20.901969 8 18.0625 C 9.44341 21.526853 12.98614 22.15225 14.4375 23 C 15.186206 22.224914 17.79624 20.07567 18 17.6875 C 14.33672 20.56768 14.203099 16 13.4375 16 z "
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter9078)"
+       id="path8294"
+       d="M 13.4375,15.5625 C 13.102994,15.5625 12.900231,15.762242 12.78125,15.9375 C 12.662269,16.112758 12.598408,16.320422 12.5,16.53125 C 12.303184,16.952907 12.081096,17.438832 11.78125,17.8125 C 11.481404,18.186168 11.117515,18.452218 10.59375,18.5 C 10.069985,18.547782 9.3270345,18.365572 8.25,17.6875 C 8.0823108,17.580065 7.8640254,17.595242 7.7128173,17.724849 C 7.5616092,17.854456 7.5132259,18.067852 7.59375,18.25 C 9.1305666,21.93854 12.960094,22.63981 14.21875,23.375 C 14.390432,23.472658 14.605671,23.447336 14.75,23.3125 C 15.08711,22.963512 15.981008,22.217382 16.78125,21.25 C 17.581492,20.282618 18.32272,19.06403 18.4375,17.71875 C 18.441912,17.546498 18.34786,17.386764 18.195094,17.30706 C 18.042327,17.227356 17.857509,17.241591 17.71875,17.34375 C 16.849538,18.02715 16.256503,18.203898 15.875,18.1875 C 15.493497,18.171102 15.246785,17.984965 15,17.65625 C 14.753215,17.327535 14.557786,16.863539 14.375,16.46875 C 14.283607,16.271356 14.181058,16.105684 14.0625,15.9375 C 13.943942,15.769316 13.757564,15.5625 13.4375,15.5625 z" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.28790623"
+       inkscape:original="M 11.5 17 C 11.223 17 11 17.223 11 17.5 C 11 17.777 11.223 18 11.5 18 L 15.5 18 C 15.777 18 16 17.777 16 17.5 C 16 17.223 15.777 17 15.5 17 L 11.5 17 z "
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9122)"
+       id="path9084"
+       d="M 11.5,16.71875 C 11.06848,16.71875 10.71875,17.06848 10.71875,17.5 C 10.71875,17.93152 11.06848,18.28125 11.5,18.28125 L 15.5,18.28125 C 15.93152,18.28125 16.28125,17.93152 16.28125,17.5 C 16.28125,17.06848 15.93152,16.71875 15.5,16.71875 L 11.5,16.71875 z" />
     <rect
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect5215"
-       width="4.4400907"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect8226"
+       width="5"
        height="1"
-       x="10.535856"
-       y="18"
-       rx="0.69182354"
+       x="11"
+       y="17"
+       rx="0.5"
        ry="0.5" />
     <path
-       transform="matrix(0.670792,0,0,0.486348,-1.815475,1.13962)"
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 11.651119,11.193815 C 13.577759,8.2509126 16.249277,11.481501 17.614226,12.804399 L 14.761306,13.747613 L 11.651119,11.193815 z "
-       id="path5192"
+       style="fill:url(#linearGradient8248);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 8,18.051818 C 12.51015,20.891288 12.65519,16 13.431472,16 C 14.197071,16 14.33672,20.582306 18,17.702126 C 17.79624,20.090296 15.178764,22.224914 14.430058,23 C 12.978698,22.15225 9.44341,21.516171 8,18.051818 z"
+       id="rect5187"
+       sodipodi:nodetypes="czccc" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.61111108999999997;fill:url(#linearGradient8814);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path8806"
+       sodipodi:cx="18.097515"
+       sodipodi:cy="29.72571"
+       sodipodi:rx="0.28726214"
+       sodipodi:ry="0.6408155"
+       d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z"
+       transform="matrix(-1.0945739,0.462613,0.6067759,0.7520251,16.272223,-11.226626)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.61111108999999997;fill:url(#linearGradient8818);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path8816"
+       sodipodi:cx="18.097515"
+       sodipodi:cy="29.72571"
+       sodipodi:rx="0.28726214"
+       sodipodi:ry="0.6408155"
+       d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z"
+       transform="matrix(1.0945739,0.462613,-0.606776,0.7520251,10.727779,-11.226626)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:url(#linearGradient8290);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path8856"
+       sodipodi:cx="10.169642"
+       sodipodi:cy="24.3125"
+       sodipodi:rx="1.2410715"
+       sodipodi:ry="1.2946428"
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.4028777,0,0,0.3862069,11.402878,5.110345)" />
+    <path
+       style="opacity:0.61111109;fill:url(#linearGradient8242);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 1.79252,30.122362 C 0.67392318,29.866621 0.24369361,27.479706 2.3518185,23.856712 C 3.1851311,27.272027 7.0413207,29.73875 7.0413207,29.73875 L 1.79252,30.122362 z"
+       id="rect7959"
        sodipodi:nodetypes="cccc" />
     <path
-       transform="matrix(0.851014,0,0,0.554879,-1.947706,-0.153319)"
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 11.689238,9.8218679 C 13.591296,8.0161941 17.174576,11.994261 17.519594,13.650486 L 14.543472,12.891665 L 11.689238,9.8218679 z "
-       id="rect5189"
+       style="opacity:0.61111109;fill:url(#linearGradient8239);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 22.631278,30.122362 C 23.749876,29.866621 24.782427,28.50267 19.275488,25.774768 C 19.517749,28.593354 17.382477,29.73875 17.382477,29.73875 L 22.631278,30.122362 z"
+       id="path8740"
        sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 8,18.893438 C 13.088512,22.243015 12.655188,17 13.431469,17 C 14.197069,17 13.699301,22.201991 18,18.895644 C 17.267157,20.102946 15.014668,22 14.06507,22 C 13.104781,22 9.1908718,20.676807 8,18.893438 z "
-       id="path3987"
-       sodipodi:nodetypes="czczc" />
-    <path
-       style="fill:url(#linearGradient3991);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 8,18.893439 C 12.740404,23.171305 12.655188,17 13.431469,17 C 14.197069,17 13.641283,22.027939 18,18.895646 C 17.267157,20.102947 15.014668,22 14.06507,22 C 13.104781,22 9.1908731,20.676809 8,18.893439 z "
-       id="path3989"
-       sodipodi:nodetypes="czczc" />
   </g>
 </svg>
Binary file pidgin/pixmaps/icons/hicolor/48x48/apps/pidgin.png has changed
--- a/pidgin/pixmaps/icons/hicolor/48x48/apps/scalable/pidgin.svg	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/pixmaps/icons/hicolor/48x48/apps/scalable/pidgin.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -2,7 +2,7 @@
 <!-- Created with Inkscape (http://www.inkscape.org/) -->
 <svg
    xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
+   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"
@@ -13,31 +13,183 @@
    height="48px"
    id="svg4345"
    sodipodi:version="0.32"
-   inkscape:version="0.44.1"
+   inkscape:version="0.46"
    sodipodi:docbase="/home/hbons/Desktop/2.0.2/pidgin/pixmaps/icons/48/scalable"
    sodipodi:docname="pidgin.svg"
    inkscape:export-filename="/home/hbons/Desktop/pidgin48.png"
    inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90">
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
   <defs
      id="defs4347">
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient2850">
+       id="linearGradient8752">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8754" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8756" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8744"
+       inkscape:collect="always">
+      <stop
+         id="stop8746"
+         offset="0"
+         style="stop-color:#7a1d90;stop-opacity:1" />
+      <stop
+         id="stop8748"
+         offset="1"
+         style="stop-color:#6b3678;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8732">
+      <stop
+         style="stop-color:#6b3678;stop-opacity:1;"
+         offset="0"
+         id="stop8734" />
+      <stop
+         style="stop-color:#6b3678;stop-opacity:0;"
+         offset="1"
+         id="stop8736" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8904">
       <stop
-         style="stop-color:#ce5c00;stop-opacity:1;"
+         style="stop-color:#729fcf;stop-opacity:1;"
+         offset="0"
+         id="stop8906" />
+      <stop
+         style="stop-color:#25486d;stop-opacity:1"
+         offset="1"
+         id="stop8908" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8884">
+      <stop
+         style="stop-color:#9a5ba8;stop-opacity:1;"
+         offset="0"
+         id="stop8886" />
+      <stop
+         style="stop-color:#6b3e75;stop-opacity:1"
+         offset="1"
+         id="stop8888" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8876">
+      <stop
+         style="stop-color:#9a5ba8;stop-opacity:1;"
+         offset="0"
+         id="stop8878" />
+      <stop
+         style="stop-color:#744380;stop-opacity:1"
+         offset="1"
+         id="stop8880" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8868">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
          offset="0"
-         id="stop2852" />
+         id="stop8870" />
+      <stop
+         style="stop-color:#a646b7;stop-opacity:1"
+         offset="1"
+         id="stop8872" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8860">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
+         offset="0"
+         id="stop8862" />
+      <stop
+         style="stop-color:#a949b9;stop-opacity:1"
+         offset="1"
+         id="stop8864" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8848">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop8850" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop8852" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8828">
+      <stop
+         style="stop-color:#dc50cd;stop-opacity:1;"
+         offset="0"
+         id="stop8830" />
       <stop
-         style="stop-color:#ce5c00;stop-opacity:0;"
+         style="stop-color:#dc50cd;stop-opacity:0;"
+         offset="1"
+         id="stop8832" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8820"
+       inkscape:collect="always">
+      <stop
+         id="stop8822"
+         offset="0"
+         style="stop-color:#522400;stop-opacity:1" />
+      <stop
+         id="stop8824"
          offset="1"
-         id="stop2854" />
+         style="stop-color:#6e3100;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8808">
+      <stop
+         style="stop-color:#6e3100;stop-opacity:1;"
+         offset="0"
+         id="stop8810" />
+      <stop
+         style="stop-color:#6e3100;stop-opacity:0;"
+         offset="1"
+         id="stop8812" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
+       id="linearGradient8686">
+      <stop
+         style="stop-color:#fdb751;stop-opacity:1"
+         offset="0"
+         id="stop8688" />
+      <stop
+         style="stop-color:#ce5c00;stop-opacity:1"
+         offset="1"
+         id="stop8690" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       id="perspective75" />
+    <linearGradient
+       inkscape:collect="always"
        id="linearGradient2834">
       <stop
-         style="stop-color:#82508e;stop-opacity:1;"
+         style="stop-color:#7e408d;stop-opacity:1"
          offset="0"
          id="stop2836" />
       <stop
@@ -61,7 +213,7 @@
        inkscape:collect="always"
        id="linearGradient2816">
       <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
+         style="stop-color:#ffffff;stop-opacity:1"
          offset="0"
          id="stop2818" />
       <stop
@@ -89,7 +241,7 @@
          offset="0"
          id="stop6539" />
       <stop
-         style="stop-color:white;stop-opacity:0;"
+         style="stop-color:#d3e1f1;stop-opacity:1"
          offset="1"
          id="stop6541" />
     </linearGradient>
@@ -97,7 +249,7 @@
        inkscape:collect="always"
        id="linearGradient6506">
       <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
+         style="stop-color:#ffffff;stop-opacity:0.95477384"
          offset="0"
          id="stop6508" />
       <stop
@@ -225,19 +377,19 @@
        xlink:href="#linearGradient6506"
        id="linearGradient6512"
        x1="15.645709"
-       y1="41.751736"
+       y1="40.668503"
        x2="15.645709"
-       y2="47.370037"
+       y2="47.022106"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.988192,0.5625,-1.39645)" />
+       gradientTransform="matrix(1,0,0,0.988192,1.5624997,-2.39645)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient6537"
        id="linearGradient6543"
        x1="30.5"
-       y1="5.7732024"
+       y1="1.0232024"
        x2="30.5"
-       y2="19.518673"
+       y2="22.781603"
        gradientUnits="userSpaceOnUse" />
     <linearGradient
        inkscape:collect="always"
@@ -252,12 +404,12 @@
        inkscape:collect="always"
        xlink:href="#linearGradient2816"
        id="radialGradient2824"
-       cx="9.4288578"
-       cy="19.283415"
-       fx="9.4288578"
-       fy="19.283415"
+       cx="14.930223"
+       cy="25.801632"
+       fx="14.930223"
+       fy="25.801632"
        r="16.390338"
-       gradientTransform="matrix(1.556432,0,0,1.618148,-5.04294,-15.39321)"
+       gradientTransform="matrix(1.3364897,0,0,1.3894845,-0.759152,-10.711989)"
        gradientUnits="userSpaceOnUse" />
     <linearGradient
        inkscape:collect="always"
@@ -266,27 +418,187 @@
        x1="13.191773"
        y1="41.606163"
        x2="13.191773"
-       y2="47.843258"
-       gradientUnits="userSpaceOnUse" />
+       y2="49.067719"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient2834"
        id="linearGradient2840"
        x1="11.373499"
-       y1="41.566242"
+       y1="43.444576"
        x2="11.373499"
-       y2="47.746658"
+       y2="47.757988"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8686"
+       id="linearGradient8692"
+       x1="18.5"
+       y1="29.911009"
+       x2="19.985121"
+       y2="29.853554"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)" />
+    <filter
+       inkscape:collect="always"
+       id="filter8730">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.27197245"
+         id="feGaussianBlur8732" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8792"
+       x="-0.095301818"
+       width="1.1906036"
+       y="-0.27704017"
+       height="1.5540803">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.31022727"
+         id="feGaussianBlur8794" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8820"
+       id="linearGradient8814"
+       x1="18.339697"
+       y1="29.338558"
+       x2="18.031723"
+       y2="30.431053"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8808"
+       id="linearGradient8818"
+       gradientUnits="userSpaceOnUse"
+       x1="17.969458"
+       y1="29.494703"
+       x2="18.143806"
+       y2="30.188351" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8828"
+       id="linearGradient8834"
+       x1="17.997768"
+       y1="36.416954"
+       x2="17.997768"
+       y2="44.348099"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8848"
+       id="linearGradient8854"
+       x1="10.48653"
+       y1="25.21174"
+       x2="9.7512932"
+       y2="23.675837"
        gradientUnits="userSpaceOnUse" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2850"
-       id="linearGradient2856"
-       x1="21.785719"
-       y1="28.142857"
-       x2="17.785713"
-       y2="30.07143"
+       xlink:href="#linearGradient8848"
+       id="linearGradient8858"
+       gradientUnits="userSpaceOnUse"
+       x1="10.498732"
+       y1="24.936121"
+       x2="9.6415968"
+       y2="23.675837" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8860"
+       id="linearGradient8866"
+       x1="13.061977"
+       y1="10.027351"
+       x2="16.545418"
+       y2="12.891665"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.50247,0,0,1,-6.5946403,-2.139701)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8868"
+       id="linearGradient8874"
+       x1="12.409452"
+       y1="10.602999"
+       x2="16.140554"
+       y2="13.895189"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(0,-0.999982)" />
+       gradientTransform="matrix(1.236264,0,0,0.549587,-5.4828863,3.775206)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8876"
+       id="linearGradient8882"
+       x1="10.46875"
+       y1="25.3125"
+       x2="9.53125"
+       y2="19.6875"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8884"
+       id="linearGradient8890"
+       x1="23.881994"
+       y1="24.343237"
+       x2="24.973602"
+       y2="19.216713"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8904"
+       id="linearGradient8910"
+       x1="26.125"
+       y1="1.8037834"
+       x2="41.875"
+       y2="33.678783"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6537"
+       id="linearGradient8913"
+       gradientUnits="userSpaceOnUse"
+       x1="30.5"
+       y1="4.8871226"
+       x2="30.5"
+       y2="22.781603" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8744"
+       id="linearGradient8738"
+       x1="4.0852318"
+       y1="39.097038"
+       x2="4.0852318"
+       y2="44.321774"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8732"
+       id="linearGradient8742"
+       gradientUnits="userSpaceOnUse"
+       x1="4.0852318"
+       y1="40.416641"
+       x2="4.0852318"
+       y2="43.352409"
+       gradientTransform="matrix(-1,0,0,1,37.022732,0)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8752"
+       id="linearGradient8758"
+       x1="14.193055"
+       y1="60.525894"
+       x2="18.497854"
+       y2="28.364647"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6537"
+       id="linearGradient7977"
+       gradientUnits="userSpaceOnUse"
+       x1="30.5"
+       y1="4.8871226"
+       x2="30.5"
+       y2="22.781603" />
   </defs>
   <sodipodi:namedview
      id="base"
@@ -295,20 +607,30 @@
      borderopacity="1.0"
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
-     inkscape:zoom="14"
-     inkscape:cx="34.459692"
-     inkscape:cy="22.220728"
+     inkscape:zoom="2.828427"
+     inkscape:cx="63.722923"
+     inkscape:cy="33.120105"
      inkscape:current-layer="layer1"
      showgrid="true"
      inkscape:grid-bbox="true"
      inkscape:document-units="px"
      inkscape:window-width="1434"
      inkscape:window-height="840"
-     inkscape:window-x="0"
+     inkscape:window-x="-2"
      inkscape:window-y="0"
      showguides="true"
      inkscape:guide-bbox="true"
-     inkscape:grid-points="true" />
+     inkscape:grid-points="true"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7914"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
   <metadata
      id="metadata4350">
     <rdf:RDF>
@@ -324,137 +646,168 @@
      id="layer1"
      inkscape:label="Layer 1"
      inkscape:groupmode="layer">
-    <rect
-       style="opacity:0.23144106;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect6514"
-       width="36.000004"
-       height="2.9999979"
-       x="-4.4446878"
-       y="57.424854"
-       rx="2.0412357"
-       ry="1.4999989" />
     <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0057179"
-       inkscape:original="M 20.53125 1.5 C 17.192693 1.5 14.5 4.611235 14.5 8.46875 L 14.5 20.53125 C 14.5 24.388765 17.192693 27.5 20.53125 27.5 L 34.53125 27.5 L 34.53125 31.09375 L 39.34375 27.5 L 41.5 27.5 C 45.512737 27.5 46.5 24.38319 46.5 20.53125 L 46.5 8.46875 C 46.5 4.6112353 43.807307 1.5 40.46875 1.5 L 20.53125 1.5 z "
-       style="fill:none;fill-opacity:1;stroke:white;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       id="path6504"
-       d="M 20.53125,2.5 C 17.817519,2.5 15.5,5.0792547 15.5,8.46875 L 15.5,20.53125 C 15.5,23.920745 17.817519,26.5 20.53125,26.5 L 34.53125,26.5 C 35.082213,26.503178 35.528072,26.949037 35.53125,27.5 L 35.53125,29.09375 L 38.75,26.6875 C 38.923102,26.563771 39.130983,26.498125 39.34375,26.5 L 41.5,26.5 C 43.245978,26.5 44.034662,25.931926 44.625,24.9375 C 45.215338,23.943074 45.5,22.371297 45.5,20.53125 L 45.5,8.46875 C 45.5,5.079255 43.182481,2.5 40.46875,2.5 L 20.53125,2.5 z " />
-    <path
-       style="fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 20.53125,1.5 C 17.192693,1.5 14.5,4.611235 14.5,8.46875 L 14.5,20.53125 C 14.5,24.388765 17.192693,27.5 20.53125,27.5 L 34.530203,27.5 L 34.530203,31.107567 L 39.353553,27.485509 L 41.5,27.5 C 45.512737,27.5 46.5,24.38319 46.5,20.53125 L 46.5,8.46875 C 46.5,4.6112353 43.807307,1.5 40.46875,1.5 L 20.53125,1.5 z "
+       style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8910);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20.53125,1.5 C 17.192693,1.5 14.5,4.611235 14.5,8.46875 L 14.5,20.53125 C 14.5,24.388765 17.192693,27.5 20.53125,27.5 L 34.530203,27.5 C 34.530203,27.5 34.406442,30.680041 32.92887,32.534344 C 38.120414,32.534344 39.353553,27.485509 39.353553,27.485509 L 41.5,27.5 C 45.512737,27.5 46.5,24.38319 46.5,20.53125 L 46.5,8.46875 C 46.5,4.6112353 43.807307,1.5 40.46875,1.5 L 20.53125,1.5 z"
        id="rect5498"
        sodipodi:nodetypes="cccccccccccc" />
     <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.044691"
-       inkscape:original="M 20.53125 1.5 C 17.192693 1.5 14.5 4.611235 14.5 8.46875 L 14.5 20.53125 C 14.5 24.388765 17.192693 27.5 20.53125 27.5 L 34.53125 27.5 L 34.53125 31.09375 L 39.34375 27.5 L 41.5 27.5 C 45.512737 27.5 46.5 24.38319 46.5 20.53125 L 46.5 8.46875 C 46.5 4.6112353 43.807307 1.5 40.46875 1.5 L 20.53125 1.5 z "
-       style="fill:url(#linearGradient6543);fill-opacity:1.0;stroke:white;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       style="fill:url(#linearGradient7977);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20.53125,2.5 C 17.815701,2.5 15.5,5.0778932 15.5,8.46875 L 15.5,20.53125 C 15.5,23.922107 17.815701,26.5 20.53125,26.5 L 34.53125,26.5 C 35.082875,26.501589 35.529661,26.948375 35.53125,27.5 C 35.53125,27.5 35.367799,30.212738 34.75,31.34218 C 36.852551,31.34218 38.53125,26.6875 38.53125,26.6875 C 38.704261,26.563588 38.912203,26.497922 39.125,26.5 L 41.5,26.5 C 43.246736,26.5 44.065452,25.932701 44.65625,24.9375 C 45.247048,23.942299 45.5,22.371547 45.5,20.53125 L 45.5,8.46875 C 45.5,5.0778935 43.184299,2.5 40.46875,2.5 L 20.53125,2.5 z"
        id="path6535"
-       d="M 20.53125,2.53125 C 17.841732,2.53125 15.53125,5.0973912 15.53125,8.46875 L 15.53125,20.53125 C 15.53125,23.902609 17.841732,26.46875 20.53125,26.46875 L 34.53125,26.46875 C 35.097743,26.476048 35.555202,26.933507 35.5625,27.5 L 35.5625,29 L 38.71875,26.65625 C 38.901723,26.528628 39.120742,26.462922 39.34375,26.46875 L 41.5,26.46875 C 43.235888,26.46875 44.009537,25.921608 44.59375,24.9375 C 45.177963,23.953392 45.46875,22.367968 45.46875,20.53125 L 45.46875,8.46875 C 45.46875,5.0973915 43.158268,2.53125 40.46875,2.53125 L 20.53125,2.53125 z " />
+       sodipodi:nodetypes="ccccccccccscccc" />
+    <rect
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect8734"
+       width="7"
+       height="1.8602936"
+       x="15.642976"
+       y="26.409245"
+       rx="0.81387848"
+       ry="0.93014681" />
     <path
-       style="opacity:1;fill:url(#linearGradient2840);fill-opacity:1.0;stroke:url(#linearGradient2832);stroke-width:1.00595677;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 15,13 C 8.3759979,13 3,18.600001 3,25.5 C 4.8460021,40.483064 0.49299658,38.484005 0.052646307,45.33795 C 0.052646307,47.422072 1.0380664,48.413461 3.1446965,48.413461 C 4.3321851,48.413461 29.360035,48.5596 32.051034,48.5596 C 34.165161,48.5596 34,46.5 34,46.5 C 34,43.834589 27.597902,41.598052 25.813453,39.641526 C 23.985035,37.640505 26,30.5 26,30.5 C 26.641306,28.9702 27,27.275084 27,25.5 C 27,18.600001 21.624002,13 15,13 z "
-       id="path5176"
-       sodipodi:nodetypes="cccccszcsc"
-       transform="matrix(1,0,0,0.988192,0.447354,-1.486208)" />
+       style="fill:url(#linearGradient8866);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10.968089,7.6821669 C 13.825874,5.8764931 18.683474,9.095739 19.201853,10.751964 L 15.25649,10.751964 C 15.19399,8.408214 10.968089,7.6821669 10.968089,7.6821669 z"
+       id="rect5189"
+       sodipodi:nodetypes="cccc" />
     <path
-       style="opacity:0.5;fill:url(#radialGradient2824);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 15.5625,12.5 C 9.550204,12.5 4.641496,17.515648 4.625,23.771565 C 4.624972,23.782116 4.625,23.791888 4.625,23.802446 C 5.536919,31.234151 4.868766,35.631074 3.15625,38.717969 C 0.36471303,44.302845 2.123521,45.533069 4.465864,45.533069 C 6.402445,45.533069 24.520621,45.503627 30.346594,45.503627 C 31.513801,45.503627 33.5,46.001748 33.5,44.554478 C 33.5,44.335354 33.300249,43.923343 32.75,43.411881 C 32.199751,42.90042 31.37676,42.351214 30.46875,41.806069 C 29.56074,41.260924 28.59071,40.709456 27.71875,40.169376 C 26.84679,39.629297 26.074154,39.125147 25.53125,38.409159 C 24.921245,37.604678 24.641306,36.658991 24.586842,35.629869 C 24.532378,34.600747 24.670221,33.49665 24.787061,32.449126 C 25.020741,30.354077 25.53125,28.527239 25.53125,28.527239 C 25.54624,28.4637 25.567163,28.401673 25.59375,28.341953 C 26.181231,26.957097 26.5,25.414481 26.5,23.802446 C 26.5,17.531779 21.584936,12.5 15.5625,12.5 z "
-       id="path5241"
-       sodipodi:nodetypes="csscccssssssscssc" />
+       style="fill:url(#linearGradient8874);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 8.9209727,9.9271812 C 10.543462,8.0699992 15.5336,9.5097671 15.5336,10.860297 L 11.743475,11.411821 C 12.958815,9.7987339 8.9209727,9.9271812 8.9209727,9.9271812 z"
+       id="path5192"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="opacity:1;fill:url(#linearGradient2840);fill-opacity:1;stroke:url(#linearGradient2832);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 16.447354,10.481822 C 9.8233516,10.481822 3.9308558,15.93012 4.5098537,22.712688 C 5.7768579,37.554787 1.9403503,35.543378 1.5,42.316391 C 1.5,44.375904 2.4854201,45.355587 4.5920502,45.355587 C 5.7795388,45.355587 30.807389,45.5 33.498388,45.5 C 35.612515,45.5 35.447354,43.46472 35.447354,43.46472 C 35.447354,40.830782 29.045256,38.620654 27.260807,36.687231 C 25.432389,34.709838 27.447354,27.653648 27.447354,27.653648 C 28.08866,26.141912 28.447354,24.466812 28.447354,22.712688 C 28.447354,15.894164 23.071356,10.481822 16.447354,10.481822 z"
+       id="path5176"
+       sodipodi:nodetypes="cscccszcsc" />
     <path
-       style="opacity:1;fill:#a46bb0;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 7.269301,19.503118 C 9.2717505,17.238166 12.529418,17.841584 13.808008,19.287784 C 15.560146,21.269611 15.356996,24.71627 13.354547,26.981222 C 11.614386,28.949501 8.7521391,29.981828 7,28 C 5.2478601,26.018172 5.6872953,21.292511 7.269301,19.503118 z "
-       id="path5160"
-       sodipodi:nodetypes="csssc" />
+       style="opacity:0.55000000000000004;fill:url(#radialGradient2824);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 16.25,11.5 C 10.237704,11.5 5.0276636,16.611038 5.4999997,22.834065 C 6.0644244,30.27036 5.8175038,32.821583 4.0236672,37.541192 C 1.1437418,42.286379 3.1235207,44.533069 5.4658637,44.533069 C 7.4024447,44.533069 25.520621,44.503627 31.346594,44.503627 C 32.513801,44.503627 34.5,45.001748 34.5,43.554478 C 34.5,43.335354 34.300249,42.923343 33.75,42.411881 C 33.199751,41.90042 32.37676,41.351214 31.46875,40.806069 C 30.56074,40.260924 29.59071,39.709456 28.71875,39.169376 C 27.84679,38.629297 27.074154,38.125147 26.53125,37.409159 C 25.921245,36.604678 25.641306,35.658991 25.586842,34.629869 C 25.532378,33.600747 25.670221,32.49665 25.787061,31.449126 C 26.020741,29.354077 26.53125,27.527239 26.53125,27.527239 C 26.54624,27.4637 26.567163,27.401673 26.59375,27.341953 C 27.181231,25.957097 27.5,24.414481 27.5,22.802446 C 27.5,16.531779 22.272436,11.5 16.25,11.5 z"
+       id="path5241"
+       sodipodi:nodetypes="cscccssssssscssc" />
     <path
-       transform="matrix(1.46245,0,0,1.378883,-5.440518,-10.80605)"
-       style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 13.257119,24.626053 C 13.257119,26.227351 11.8279,27.316574 10.863875,27.316574 C 9.5428049,27.316574 8.4706318,26.01697 8.4706318,24.415672 C 8.4706318,23.024119 9.2055946,21.514771 10.526665,21.514771 C 11.847736,21.514771 13.257119,23.360971 13.257119,24.626053 z "
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="1.0174263"
+       inkscape:original="M 9.96875 19 C 8.022221 19 6.9374998 21.081214 6.9375 23 C 6.9375 25.208 8.5222219 27 10.46875 27 C 11.889191 27 14 25.489251 14 23.28125 C 14 21.536852 11.915281 19 9.96875 19 z "
+       style="opacity:1;fill:url(#linearGradient8882);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8838"
+       d="M 9.96875,17.96875 C 8.6328774,17.96875 7.5286409,18.753017 6.875,19.71875 C 6.2213591,20.684483 5.9062499,21.848884 5.90625,23 C 5.90625,25.694817 7.8977844,28.03125 10.46875,28.03125 C 11.539674,28.03125 12.596335,27.527372 13.46875,26.71875 C 14.341165,25.910128 15.03125,24.709464 15.03125,23.28125 C 15.03125,22.003744 14.362496,20.808851 13.46875,19.8125 C 12.575004,18.816149 11.384009,17.96875 9.96875,17.96875 z"
+       transform="translate(1.09375,-0.96875)" />
+    <path
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 15.09375,22.321339 C 15.09375,24.52934 12.987869,26.03125 11.567428,26.03125 C 9.6208995,26.03125 8.0411075,24.239249 8.0411075,22.031249 C 8.0411075,20.112462 9.1240375,18.03125 11.070566,18.03125 C 13.017097,18.03125 15.09375,20.576941 15.09375,22.321339 z"
        id="path5157"
        sodipodi:nodetypes="csssc" />
     <path
        sodipodi:type="arc"
-       style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
        id="path5162"
        sodipodi:cx="10.169642"
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(1.208632,0,0,1.544828,-1.738701,-14.41893)" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(1.237779,0,0,1.544828,-1.0301916,-15.38768)" />
     <path
        sodipodi:type="arc"
-       style="opacity:1;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       style="opacity:1;fill:url(#linearGradient8854);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
        id="path5164"
        sodipodi:cx="10.169642"
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(0.402878,0,0,0.514947,6.455534,10.62004)" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.4028775,0,0,0.772414,7.4966298,3.2519345)" />
     <path
-       style="opacity:1;fill:#975fa3;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 27.88281,19.946791 C 26.359012,18.309616 23.880032,18.745786 22.907068,19.791141 C 21.573747,21.223665 21.728337,23.715015 23.252136,25.35219 C 24.576341,26.77492 26.754418,27.521117 28.087739,26.088593 C 29.42106,24.656068 29.086665,21.240217 27.88281,19.946791 z "
-       id="path5167"
-       sodipodi:nodetypes="csssc" />
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="1.0250763"
+       inkscape:original="M 24.71875 19 C 23.921039 19.030682 23.197708 19.355158 22.78125 19.8125 C 21.639847 21.065961 21.758036 23.254972 23.0625 24.6875 C 24.196099 25.932389 26.077347 26.565958 27.21875 25.3125 C 28.360153 24.05904 28.061824 21.069247 27.03125 19.9375 C 26.379019 19.221236 25.516461 18.969318 24.71875 19 z "
+       style="opacity:1;fill:url(#linearGradient8890);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8846"
+       d="M 24.6875,17.96875 C 23.636213,18.009185 22.683031,18.409233 22.03125,19.125 C 20.466122,20.843786 20.678782,23.580894 22.3125,25.375 C 23.011072,26.142154 23.917332,26.724837 24.9375,26.9375 C 25.957668,27.150163 27.151401,26.89759 27.96875,26 C 28.842555,25.04041 29.039766,23.753975 28.96875,22.53125 C 28.897734,21.308525 28.565932,20.111716 27.78125,19.25 C 26.906665,18.289553 25.728905,17.928695 24.6875,17.96875 z"
+       transform="translate(1.0348213,-0.9657729)" />
     <path
-       transform="matrix(0.726374,-0.813272,-0.684868,-0.766801,34.41717,50.34012)"
-       style="opacity:1;fill:white;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 13.257119,24.626053 C 13.257119,26.227351 11.8279,27.316574 10.863875,27.316574 C 9.5428049,27.316574 8.4706318,26.01697 8.4706318,24.415672 C 8.4706318,23.024119 9.2055946,21.514771 10.526665,21.514771 C 11.847736,21.514771 13.257119,23.360971 13.257119,24.626053 z "
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 28.07086,18.984912 C 26.766398,17.552385 24.644242,17.934034 23.811326,18.848719 C 22.669923,20.102179 22.802261,22.282108 24.106725,23.714636 C 25.240323,24.959524 27.104889,25.612445 28.246292,24.358987 C 29.387696,23.105527 29.101434,20.116659 28.07086,18.984912 z"
        id="path5169"
        sodipodi:nodetypes="csssc" />
     <path
        sodipodi:type="arc"
-       style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
        id="path5171"
        sodipodi:cx="10.169642"
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(1.208632,0,0,1.598777,13.20865,-15.80042)" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(1.208632,0,0,1.598777,13.243467,-16.766194)" />
+    <path
+       transform="matrix(0.9902622,0,0,1.0468412,0.6803699,-1.6322179)"
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8730)"
+       d="M 19.0625,25.21875 C 18.601377,25.21875 18.273569,25.504007 18.09375,25.71875 C 17.913931,25.933493 17.816385,26.151947 17.6875,26.375 C 17.42973,26.821106 17.161718,27.281061 16.8125,27.625 C 16.463282,27.968939 15.753081,28.431077 15.090677,28.457564 C 13.768981,28.152971 12.567412,27.574567 11.44337,27.388802 C 11.190855,27.626888 11.124903,28.002654 11.28125,28.3125 C 12.447615,30.480389 13.704893,31.652553 16.158709,32.98462 C 17.36658,33.640319 19.551532,34.28873 20.662703,34.736506 C 22.03071,33.835346 25.543472,30.338576 25.75,28.125 C 25.844084,27.808258 25.729503,27.466527 25.463497,27.270522 C 24.478872,27.816677 23.360045,28.165794 22.250307,28.426314 C 21.786763,28.408951 21.509989,27.99255 21.21875,27.65625 C 20.927511,27.31995 20.680079,26.828945 20.4375,26.375 C 20.31621,26.148027 20.208768,25.937142 20.03125,25.71875 C 19.853732,25.500358 19.525474,25.21875 19.0625,25.21875 z"
+       id="path8696"
+       sodipodi:nodetypes="cssscccsccccsssc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.36336106"
+       inkscape:original="M 15.8125 27 C 15.361611 27 15 27.422198 15 27.9375 C 15 28.452801 15.361612 28.874999 15.8125 28.875 L 21.1875 28.875 C 21.638389 28.875 22 28.452801 22 27.9375 C 22 27.422199 21.638389 27 21.1875 27 L 15.8125 27 z "
+       style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8792)"
+       id="path8738"
+       d="M 15.8125,26.625 C 15.134785,26.625 14.625,27.252207 14.625,27.9375 C 14.625,28.622793 15.134785,29.249998 15.8125,29.25 L 21.1875,29.25 C 21.865216,29.25 22.375,28.622793 22.375,27.9375 C 22.375,27.252207 21.865216,26.625 21.1875,26.625 L 15.8125,26.625 z"
+       transform="translate(1.0492259,-0.5907729)" />
+    <rect
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5215"
+       width="7"
+       height="1.8602936"
+       x="16.017977"
+       y="26.173933"
+       rx="0.81387848"
+       ry="0.93014681" />
+    <path
+       style="fill:url(#linearGradient8692);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12.017976,27.284466 C 18.332186,30.947891 18.535242,25.034227 19.622035,25.034227 C 20.693875,25.034227 20.889384,30.946219 26.017976,27.230273 C 25.73271,30.311439 22.068246,33.065477 21.020058,34.065477 C 18.988153,32.971727 14.03875,31.7541 12.017976,27.284466 z"
+       id="rect5187"
+       sodipodi:nodetypes="czccc" />
     <path
        sodipodi:type="arc"
-       style="opacity:1;fill:black;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path5173"
+       style="opacity:0.61111109;fill:url(#linearGradient8814);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path8806"
+       sodipodi:cx="18.097515"
+       sodipodi:cy="29.72571"
+       sodipodi:rx="0.28726214"
+       sodipodi:ry="0.6408155"
+       d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z"
+       transform="matrix(-1.0945752,0.9356227,0.6067766,1.5209514,23.290203,-33.120817)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.61111109;fill:url(#linearGradient8818);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path8816"
+       sodipodi:cx="18.097515"
+       sodipodi:cy="29.72571"
+       sodipodi:rx="0.28726214"
+       sodipodi:ry="0.6408155"
+       d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z"
+       transform="matrix(1.0945741,0.9356227,-0.606776,1.5209514,16.745752,-33.098342)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#linearGradient8858);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path8856"
        sodipodi:cx="10.169642"
        sodipodi:cy="24.3125"
        sodipodi:rx="1.2410715"
        sodipodi:ry="1.2946428"
-       d="M 11.410714 24.3125 A 1.2410715 1.2946428 0 1 1  8.928571,24.3125 A 1.2410715 1.2946428 0 1 1  11.410714 24.3125 z"
-       transform="matrix(0.402878,0,0,0.53293,21.40289,10.11299)" />
-    <rect
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect5215"
-       width="7"
-       height="1.8602936"
-       x="15"
-       y="27.000017"
-       rx="0.81387848"
-       ry="0.93014681" />
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.4028775,0,0,0.772414,21.437701,3.254912)" />
     <path
-       style="fill:#fcaf3e;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 12.000005,28.650812 C 17.33287,31.553263 18.051747,26 19.060912,26 C 20.056192,26 20.46502,31.577054 25,28.653901 C 24.047304,30.344123 21.119071,32.999996 19.884593,32.999996 C 18.636217,32.999996 13.548138,31.147528 12.000005,28.650812 z "
-       id="rect5187"
-       sodipodi:nodetypes="czczc" />
-    <path
-       transform="matrix(1.236264,0,0,0.549587,-6.482886,4.775206)"
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 11.651119,11.193815 C 12.963532,7.814583 16.999999,10.43431 16.999999,12.891665 L 13.737594,13.834879 L 11.651119,11.193815 z "
-       id="path5192"
+       style="opacity:0.61111108999999997;fill:url(#linearGradient8738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 3.375,44.9375 C 1.75,44.5625 1.125,41.0625 4.1875,35.75 C 5.3980639,40.757973 11,44.375 11,44.375 L 3.375,44.9375 z"
+       id="rect7959"
        sodipodi:nodetypes="cccc" />
     <path
-       transform="matrix(1.50247,0,0,1,-7.59464,-1.139701)"
-       style="fill:#3b1941;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 11.689238,9.8218679 C 13.591296,8.0161941 17.219555,11.23544 17.564573,12.891665 L 14.543472,12.891665 L 11.689238,9.8218679 z "
-       id="rect5189"
+       style="opacity:0.61111108999999997;fill:url(#linearGradient8742);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 33.647731,44.9375 C 35.272732,44.5625 36.772732,42.5625 28.772731,38.5625 C 29.124668,42.695473 26.022731,44.375 26.022731,44.375 L 33.647731,44.9375 z"
+       id="path8740"
        sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:url(#linearGradient2856);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 12.000005,28.650834 C 17.332871,31.553285 18.051747,26.000022 19.060912,26.000022 C 20.056192,26.000022 20.46502,31.577076 25,28.653923 C 24.047304,30.344145 21.119071,33.000018 19.884593,33.000018 C 18.636217,33.000018 13.548139,31.14755 12.000005,28.650834 z "
-       id="path6561"
-       sodipodi:nodetypes="czczc" />
   </g>
 </svg>
Binary file pidgin/pixmaps/logo.png has changed
Binary file pidgin/pixmaps/status/16/invisible.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/status/16/scalable/invisible.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -0,0 +1,1448 @@
+<?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="16"
+   height="16"
+   id="svg7943"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docname="invisible.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/Pidgin objecten voor 2.5.0/invisible.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs7945">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9042">
+      <stop
+         style="stop-color:#8cb1d9;stop-opacity:1;"
+         offset="0"
+         id="stop9044" />
+      <stop
+         style="stop-color:#437fc2;stop-opacity:1"
+         offset="1"
+         id="stop9046" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8907">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1"
+         offset="0"
+         id="stop8909" />
+      <stop
+         style="stop-color:#2f5379;stop-opacity:1"
+         offset="1"
+         id="stop8911" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient29418">
+      <stop
+         id="stop29420"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop29422"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient29418"
+       id="linearGradient8799"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024686)"
+       x1="35.003674"
+       y1="10.957423"
+       x2="27.2733"
+       y2="24.143761" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8710">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8712" />
+      <stop
+         style="stop-color:#c7d9ed;stop-opacity:1"
+         offset="1"
+         id="stop8714" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient8716"
+       x1="9.9977369"
+       y1="2.5581124"
+       x2="9.9977369"
+       y2="15.90989"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient2851">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2853" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2855" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3149">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3151" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3153" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       id="perspective7951" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="28.364647"
+       x2="18.497854"
+       y1="60.525894"
+       x1="14.193055"
+       id="linearGradient8758"
+       xlink:href="#linearGradient8752"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="22.781603"
+       x2="30.5"
+       y1="4.8871226"
+       x1="30.5"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8913"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="44.348099"
+       x2="17.997768"
+       y1="36.416954"
+       x1="17.997768"
+       id="linearGradient8834"
+       xlink:href="#linearGradient8828"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)"
+       gradientUnits="userSpaceOnUse"
+       y2="29.853554"
+       x2="19.985121"
+       y1="29.911009"
+       x1="18.5"
+       id="linearGradient8692"
+       xlink:href="#linearGradient8686"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="44.272076"
+       x2="5.5366187"
+       y1="38.950283"
+       x1="12.01321"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6573"
+       xlink:href="#linearGradient6563"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="22.781603"
+       x2="30.5"
+       y1="1.0232024"
+       x1="30.5"
+       id="linearGradient6543"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="43.5"
+       x2="5.6917014"
+       y1="43.5"
+       x1="3.3105288"
+       id="linearGradient6499"
+       xlink:href="#linearGradient6493"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.732283,0,10.65742)"
+       r="9.7225161"
+       fy="39.80859"
+       fx="15.004828"
+       cy="39.80859"
+       cx="15.004828"
+       id="radialGradient5286"
+       xlink:href="#linearGradient5280"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3800">
+      <stop
+         id="stop3802"
+         offset="0.0000000"
+         style="stop-color:#f4d9b1;stop-opacity:1.0000000;" />
+      <stop
+         id="stop3804"
+         offset="1.0000000"
+         style="stop-color:#df9725;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
+       r="8.4883642"
+       fy="2.6242435"
+       fx="7.8836637"
+       cy="2.6242435"
+       cx="7.8836637"
+       id="radialGradient25554"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient25546"
+       inkscape:collect="always">
+      <stop
+         id="stop25548"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop25550"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="8.4883642"
+       fy="0.14505707"
+       fx="7.8836741"
+       cy="0.14505707"
+       cx="7.8836741"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25568"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.4883642"
+       fy="1.5104795"
+       fx="7.8836637"
+       cy="1.5104795"
+       cx="7.8836637"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25572"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2804">
+      <stop
+         id="stop2806"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop2812" />
+      <stop
+         id="stop2808"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5280"
+       inkscape:collect="always">
+      <stop
+         id="stop5282"
+         offset="0"
+         style="stop-color:#82508e;stop-opacity:1;" />
+      <stop
+         id="stop5284"
+         offset="1"
+         style="stop-color:#82508e;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6493"
+       inkscape:collect="always">
+      <stop
+         id="stop6495"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop6497"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6537"
+       inkscape:collect="always">
+      <stop
+         id="stop6539"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6541"
+         offset="1"
+         style="stop-color:#d3e1f1;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6563"
+       inkscape:collect="always">
+      <stop
+         id="stop6565"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6567"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective75"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 24 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient8686"
+       inkscape:collect="always">
+      <stop
+         id="stop8688"
+         offset="0"
+         style="stop-color:#fdb751;stop-opacity:1" />
+      <stop
+         id="stop8690"
+         offset="1"
+         style="stop-color:#ce5c00;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8828"
+       inkscape:collect="always">
+      <stop
+         id="stop8830"
+         offset="0"
+         style="stop-color:#dc50cd;stop-opacity:1;" />
+      <stop
+         id="stop8832"
+         offset="1"
+         style="stop-color:#dc50cd;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8752"
+       inkscape:collect="always">
+      <stop
+         id="stop8754"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop8756"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8907"
+       id="linearGradient8914"
+       x1="11.531433"
+       y1="2.0188477"
+       x2="7.6475248"
+       y2="16.513792"
+       gradientUnits="userSpaceOnUse" />
+    <inkscape:perspective
+       id="perspective8012"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 8 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       y2="24.143761"
+       x2="27.2733"
+       y1="10.957423"
+       x1="35.003674"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024683)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8986"
+       xlink:href="#linearGradient29418"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8980">
+      <stop
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8982" />
+      <stop
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop8984" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="15.010952"
+       x2="16.499542"
+       y1="2.5071414"
+       x1="6.924273"
+       id="linearGradient8978"
+       xlink:href="#linearGradient8710"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)"
+       r="8.96875"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient3210"
+       xlink:href="#linearGradient3204"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="18.288521"
+       x2="12.015625"
+       y1="10.420408"
+       x1="12.015625"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3200"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="13.251127"
+       x2="12.750399"
+       y1="19.780256"
+       x1="12.726427"
+       id="linearGradient3197"
+       xlink:href="#linearGradient3191"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="19.148933"
+       x2="15.742911"
+       y1="8.850009"
+       x1="13.038205"
+       id="linearGradient3189"
+       xlink:href="#linearGradient3183"
+       inkscape:collect="always" />
+    <radialGradient
+       r="6.6449099"
+       fy="10.457643"
+       fx="10.748654"
+       cy="10.457643"
+       cx="10.748654"
+       gradientTransform="matrix(-0.842757,0,0,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1364"
+       xlink:href="#linearGradient3150"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)"
+       r="8.96875"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient4152"
+       xlink:href="#linearGradient4146"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="17.151861"
+       x2="12.015625"
+       y1="12.513933"
+       x1="12.015625"
+       id="linearGradient4144"
+       xlink:href="#linearGradient4138"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="20.157516"
+       x2="12.015625"
+       y1="12.904307"
+       x1="12.015625"
+       id="linearGradient4136"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3150"
+       inkscape:collect="always">
+      <stop
+         id="stop3152"
+         offset="0"
+         style="stop-color:#2e3436;stop-opacity:1;" />
+      <stop
+         id="stop3154"
+         offset="1"
+         style="stop-color:#2e3436;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4130"
+       inkscape:collect="always">
+      <stop
+         id="stop4132"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4134"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4138"
+       inkscape:collect="always">
+      <stop
+         id="stop4140"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4142"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4146"
+       inkscape:collect="always">
+      <stop
+         id="stop4148"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop4150"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective30"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3183"
+       inkscape:collect="always">
+      <stop
+         id="stop3185"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3187"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3191"
+       inkscape:collect="always">
+      <stop
+         id="stop3193"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop3195"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3204"
+       inkscape:collect="always">
+      <stop
+         id="stop3206"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3208"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3142"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3144"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3146">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3148" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3150" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3164"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,0,0,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3166"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient3168"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="11.024895"
+       x2="10.623409"
+       y1="2.7991772"
+       x1="4.5264969"
+       id="linearGradient3170"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       id="linearGradient3172"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3174">
+      <stop
+         id="stop3176"
+         offset="0"
+         style="stop-color:#73d216;stop-opacity:1;" />
+      <stop
+         id="stop3178"
+         offset="1"
+         style="stop-color:#5ca911;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       y2="40.032413"
+       x2="17.890068"
+       y1="8.0617304"
+       x1="17.890068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3180"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3194"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient3196"
+       gradientUnits="userSpaceOnUse"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3198"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       y2="48.674999"
+       x2="15.535398"
+       y1="1.8014067"
+       x1="15.535398"
+       gradientTransform="matrix(0.37378,0,0,0.375227,5.518529,18.82427)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3084"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3082"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient3022"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3030"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2186"
+       id="linearGradient2194"
+       x1="6.2538223"
+       y1="3.7276814"
+       x2="14.441897"
+       y2="19.159578"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2239"
+       id="linearGradient3045"
+       x1="8.7505674"
+       y1="4.5934086"
+       x2="31.18539"
+       y2="39.834526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3047"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3049">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3051" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3053" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3067"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,0,0,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3069"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient2006"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient2014"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2186"
+       id="linearGradient2022"
+       x1="9.2594385"
+       y1="-1.5641226"
+       x2="11.226587"
+       y2="17.697369"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2239"
+       id="linearGradient2030"
+       x1="8.7505674"
+       y1="4.5934086"
+       x2="31.18539"
+       y2="39.834526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2032"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient2034">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2036" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2038" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient2053"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,0,0,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2055"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2898">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop2900" />
+      <stop
+         style="stop-color:white;stop-opacity:0;"
+         offset="1"
+         id="stop2902" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3044"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3046">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3048" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3050" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3064"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,0,0,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3066"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient2904"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient2818"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="11.024895"
+       x2="10.623409"
+       y1="2.7991772"
+       x1="4.5264969"
+       id="linearGradient2810"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       id="linearGradient2963"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2951">
+      <stop
+         id="stop2953"
+         offset="0"
+         style="stop-color:#73d216;stop-opacity:1;" />
+      <stop
+         id="stop2955"
+         offset="1"
+         style="stop-color:#5ca911;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       y2="40.032413"
+       x2="17.890068"
+       y1="8.0617304"
+       x1="17.890068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2949"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3005"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient3007"
+       gradientUnits="userSpaceOnUse"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="10.018044"
+       x2="10.043059"
+       y1="1.3319674"
+       x1="1.5769236"
+       id="linearGradient2995"
+       xlink:href="#linearGradient2989"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2084"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2046"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient2048">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2050" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2052" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2060"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient2062"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient2064"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2812">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop2814" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop2816" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2269"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient8152">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop8154" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop8156" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2857"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       y2="14.895812"
+       x2="11.802028"
+       y1="1.9986149"
+       x1="11.802028"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6606"
+       xlink:href="#linearGradient2225"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48.674999"
+       x2="15.535398"
+       y1="1.8014067"
+       x1="15.535398"
+       gradientTransform="matrix(0.37378,0,0,0.375227,17.64779,15.86312)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2339"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="17.697369"
+       x2="11.226587"
+       y1="-5.4832759"
+       x1="11.226587"
+       gradientTransform="matrix(0.529942,0,0,0.53199,17.26643,15.48536)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2337"
+       xlink:href="#linearGradient2186"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="33.483475"
+       x2="15.522223"
+       y1="1.5657365"
+       x1="15.602553"
+       gradientTransform="matrix(0.371983,0,0,0.372254,2.539836,8.539528)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1357"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2239">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2241" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2243" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.626667,0,6.566431)"
+       r="6.3436799"
+       fy="17.588654"
+       fx="11.756953"
+       cy="17.588654"
+       cx="11.756953"
+       id="radialGradient2266"
+       xlink:href="#linearGradient2260"
+       inkscape:collect="always" />
+    <radialGradient
+       r="7.003407"
+       fy="8.963316"
+       fx="9.9988937"
+       cy="8.963316"
+       cx="9.9988937"
+       gradientTransform="matrix(-2.522332,0,0,2.521765,40.1904,-21.80154)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2225"
+       xlink:href="#linearGradient2200"
+       inkscape:collect="always" />
+    <radialGradient
+       r="7.003407"
+       fy="8.963316"
+       fx="9.9988937"
+       cy="8.963316"
+       cx="9.9988937"
+       gradientTransform="matrix(-2.522332,0,0,2.521765,40.1904,-21.83521)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2216"
+       xlink:href="#linearGradient2200"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2200"
+       inkscape:collect="always">
+      <stop
+         id="stop2202"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1;" />
+      <stop
+         id="stop2204"
+         offset="1"
+         style="stop-color:#d3d7cf;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient3822"
+       xlink:href="#linearGradient3816"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3816"
+       inkscape:collect="always">
+      <stop
+         id="stop3818"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1;" />
+      <stop
+         id="stop3820"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2260"
+       inkscape:collect="always">
+      <stop
+         id="stop2262"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop2264"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2186"
+       inkscape:collect="always">
+      <stop
+         id="stop2188"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop2190"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="5"
+       fy="44"
+       fx="1"
+       cy="44"
+       cx="1"
+       gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2827"
+       xlink:href="#linearGradient2781"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2781"
+       inkscape:collect="always">
+      <stop
+         id="stop2783"
+         offset="0"
+         style="stop-color:black;stop-opacity:1;" />
+      <stop
+         id="stop2785"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="5"
+       fy="44"
+       fx="1"
+       cy="44"
+       cx="1"
+       gradientTransform="matrix(2,0,0,0.8,36,8.8)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2829"
+       xlink:href="#linearGradient2781"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="40"
+       x2="21.875"
+       y1="48.000977"
+       x1="21.875"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2831"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8108">
+      <stop
+         id="stop8110"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop8112" />
+      <stop
+         id="stop8114"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       y2="24.143761"
+       x2="27.2733"
+       y1="10.957423"
+       x1="35.003674"
+       gradientTransform="matrix(-0.977228,0,0,0.995878,50.60272,9.115637)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient29443"
+       xlink:href="#linearGradient29418"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8101">
+      <stop
+         id="stop8103"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop8105"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2225"
+       inkscape:collect="always">
+      <stop
+         id="stop2227"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop2229"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2989"
+       inkscape:collect="always">
+      <stop
+         id="stop2991"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop2993"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective8092"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8270"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4665246,0,0,0.4665245,-0.3461549,-0.1980139)"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9042"
+       id="linearGradient9048"
+       x1="15.562512"
+       y1="16.125008"
+       x2="17.500002"
+       y2="20.375008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.1538472,0,0,1.1538472,-9.3077161,-9.307716)" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="16"
+     inkscape:cx="8.5353963"
+     inkscape:cy="7.3061685"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1232"
+     inkscape:window-height="718"
+     inkscape:window-x="200"
+     inkscape:window-y="90"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7872"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7948">
+    <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
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <g
+       id="g2057"
+       inkscape:label="Layer 1"
+       transform="matrix(1.1538472,0,0,1.1538472,39.303014,-3.4950557)" />
+    <path
+       style="opacity:0.8;fill:#c0d4ea;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9048);stroke-width:0.99999934;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 15.5,7.9999989 C 15.5,12.14 12.139999,15.5 7.9999992,15.5 C 3.8599988,15.5 0.49999967,12.14 0.49999967,7.9999989 C 0.49999967,3.8599986 3.8599988,0.49999967 7.9999992,0.49999967 C 12.139999,0.49999967 15.5,3.8599986 15.5,7.9999989 z"
+       id="path8239" />
+    <path
+       style="opacity:0.47999998;fill:url(#linearGradient8270);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999869;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 14.500001,7.9999996 C 14.500001,11.588001 11.588002,14.5 8.0000012,14.5 C 4.4119997,14.5 1.4999994,11.588001 1.4999994,7.9999996 C 1.4999994,4.4119983 4.4119997,1.4999994 8.0000012,1.4999994 C 11.588002,1.4999994 14.500001,4.4119983 14.500001,7.9999996 z"
+       id="path8241" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/tray/22/scalable/tray-away.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -0,0 +1,381 @@
+<?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="24"
+   height="24"
+   id="svg8004"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docname="tray-away.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/Pidgin objecten voor 2.5.0/Pidgin Polish/tray/tray-away.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs8006">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8907">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1"
+         offset="0"
+         id="stop8909" />
+      <stop
+         style="stop-color:#2f5379;stop-opacity:1"
+         offset="1"
+         id="stop8911" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8907"
+       id="linearGradient8914"
+       x1="11.531433"
+       y1="2.0188477"
+       x2="7.6475248"
+       y2="16.513792"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3284">
+      <stop
+         style="stop-color:#173867;stop-opacity:1;"
+         offset="0"
+         id="stop3286" />
+      <stop
+         style="stop-color:#173867;stop-opacity:0;"
+         offset="1"
+         id="stop3288" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3284"
+       id="linearGradient8867"
+       gradientUnits="userSpaceOnUse"
+       x1="23.221344"
+       y1="24.700239"
+       x2="8.2601509"
+       y2="0.92288947" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2804">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop2806" />
+      <stop
+         style="stop-color:white;stop-opacity:0;"
+         offset="1"
+         id="stop2808" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient8865"
+       gradientUnits="userSpaceOnUse"
+       x1="4.5264969"
+       y1="2.6807978"
+       x2="9.7444448"
+       y2="9.9594812" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3276">
+      <stop
+         style="stop-color:#2863b7;stop-opacity:1"
+         offset="0"
+         id="stop3278" />
+      <stop
+         style="stop-color:#14325c;stop-opacity:1"
+         offset="1"
+         id="stop3280" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3276"
+       id="linearGradient8863"
+       gradientUnits="userSpaceOnUse"
+       x1="15.377563"
+       y1="12.744186"
+       x2="22.868998"
+       y2="29.821121" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8710">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8712" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8714" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient8716"
+       x1="6.924273"
+       y1="2.5071414"
+       x2="16.499542"
+       y2="15.010952"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient29418">
+      <stop
+         id="stop29420"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop29422"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient29418"
+       id="linearGradient8799"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024683)"
+       x1="35.003674"
+       y1="10.957423"
+       x2="27.273300"
+       y2="24.143761" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       id="perspective8012" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient29418"
+       id="linearGradient9143"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,29.382532,-2.0350722)"
+       x1="35.003674"
+       y1="10.957423"
+       x2="27.273300"
+       y2="24.143761" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8907"
+       id="linearGradient9145"
+       gradientUnits="userSpaceOnUse"
+       x1="11.531433"
+       y1="2.0188477"
+       x2="7.6475248"
+       y2="16.513792"
+       gradientTransform="translate(-1.2198017,-0.5326039)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient9147"
+       gradientUnits="userSpaceOnUse"
+       x1="6.924273"
+       y1="2.5071414"
+       x2="16.499542"
+       y2="15.010952" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient29418"
+       id="linearGradient9151"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.502468)"
+       x1="35.003674"
+       y1="10.957423"
+       x2="27.273300"
+       y2="24.143761" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8907"
+       id="linearGradient9153"
+       gradientUnits="userSpaceOnUse"
+       x1="11.531433"
+       y1="2.0188477"
+       x2="7.6475248"
+       y2="16.513792" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient9155"
+       gradientUnits="userSpaceOnUse"
+       x1="6.924273"
+       y1="2.5071414"
+       x2="16.499542"
+       y2="15.010952" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.197802"
+     inkscape:cx="19.080813"
+     inkscape:cy="11.944037"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7879"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata8009">
+    <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
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       id="path9137"
+       d="M 17.120074,2.4999997 C 17.911234,2.4999997 18.5,3.0785204 18.5,4.0031287 L 18.5,13.290965 C 18.5,13.958536 17.974302,14.487782 17.311203,14.487782 L 8.5609012,14.487782 C 8.0308789,15.189395 7.1533459,17.327271 4.6806889,18.274119 C 5.781573,16.971634 5.5012167,14.487782 5.5012167,14.487782 L 4.0268296,14.487782 C 3.3637331,14.487782 2.5000011,13.703698 2.4999997,13.036127 L 2.4999997,3.9394191 C 2.4999997,3.2718468 3.3000235,2.4999997 3.96312,2.4999997 L 17.120074,2.4999997 z"
+       style="fill:url(#linearGradient9151);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9153);stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       sodipodi:nodetypes="cccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.99184585"
+       inkscape:original="M 3.71875 3.5 C 3.0556535 3.5 2.5000001 4.0511776 2.5 4.71875 L 2.5 14.28125 C 2.5000014 14.948821 3.0556534 15.5 3.71875 15.5 L 5.5 15.5 C 5.5 15.5 5.788384 17.978766 4.6875 19.28125 C 7.160157 18.334402 8.0324781 16.201613 8.5625 15.5 L 17.3125 15.5 C 17.975599 15.5 18.5 14.948821 18.5 14.28125 L 18.5 4.71875 C 18.5 4.0511777 17.975599 3.5000001 17.3125 3.5 L 3.71875 3.5 z "
+       style="fill:url(#linearGradient9155);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       id="path9139"
+       d="M 3.71875,4.5 C 3.6052801,4.5 3.5,4.6015523 3.5,4.71875 L 3.5,14.28125 C 3.5000002,14.398448 3.6052813,14.5 3.71875,14.5 L 5.5,14.5 C 6.0083008,14.492334 6.440125,14.87018 6.5,15.375 C 6.5,15.375 6.5264519,16.055972 6.5,16.75 C 6.5214715,16.72401 6.5728376,16.713552 6.59375,16.6875 C 7.1128586,16.040814 7.3826252,15.433927 7.78125,14.90625 C 7.9639971,14.656332 8.2529544,14.506075 8.5625,14.5 L 17.3125,14.5 C 17.425973,14.5 17.5,14.429401 17.5,14.28125 L 17.5,4.71875 C 17.5,4.570597 17.425975,4.5 17.3125,4.5 L 3.71875,4.5 z"
+       transform="translate(1.0197678e-7,-0.9999999)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8863);stroke-width:2.20694971;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path1339"
+       sodipodi:cx="15.590227"
+       sodipodi:cy="16.57217"
+       sodipodi:rx="14.345175"
+       sodipodi:ry="14.345175"
+       d="M 29.935402,16.57217 A 14.345175,14.345175 0 1 1 1.2450523,16.57217 A 14.345175,14.345175 0 1 1 29.935402,16.57217 z"
+       transform="matrix(0.453114,0,0,0.4531141,7.9358503,7.4909151)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.76704544;fill:none;fill-opacity:1;stroke:url(#linearGradient8865);stroke-width:0.95346284;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2802"
+       sodipodi:cx="7.5"
+       sodipodi:cy="7"
+       sodipodi:rx="5.5"
+       sodipodi:ry="5"
+       d="M 13,7 A 5.5,5 0 1 1 2,7 A 5.5,5 0 1 1 13,7 z"
+       transform="matrix(1,0,0,1.1,7.500001,7.2999999)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#8ab0d7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2788"
+       sodipodi:cx="-3.8088531"
+       sodipodi:cy="3.303823"
+       sodipodi:rx="3.1932809"
+       sodipodi:ry="3.3471739"
+       d="M -0.61557221,3.303823 A 3.1932809,3.3471739 0 1 1 -7.0021341,3.303823 A 3.1932809,3.3471739 0 1 1 -0.61557221,3.303823 z"
+       transform="matrix(1.5657877,0,0,1.4933941,20.963856,10.06744)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.40340911;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8867);stroke-width:3.18781281px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path1341"
+       sodipodi:cx="15.590227"
+       sodipodi:cy="16.57217"
+       sodipodi:rx="14.345175"
+       sodipodi:ry="14.345175"
+       d="M 29.935402,16.57217 A 14.345175,14.345175 0 1 1 1.2450523,16.57217 A 14.345175,14.345175 0 1 1 29.935402,16.57217 z"
+       transform="matrix(0.3136944,0,0,0.3136944,10.109434,9.8014033)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2796"
+       sodipodi:cx="6.0403023"
+       sodipodi:cy="7.5551186"
+       sodipodi:rx="1.615877"
+       sodipodi:ry="1.3273276"
+       d="M 7.6561793,7.5551186 A 1.615877,1.3273276 0 1 1 4.4244252,7.5551186 A 1.615877,1.3273276 0 1 1 7.6561793,7.5551186 z"
+       transform="matrix(2.4754359,0,0,3.013574,4.7619625e-2,-7.7679095)" />
+    <rect
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2832"
+       width="1"
+       height="1"
+       x="14"
+       y="-16"
+       transform="matrix(0,1,-1,0,0,0)" />
+    <rect
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2838"
+       width="2"
+       height="2"
+       x="14"
+       y="-16"
+       rx="1"
+       ry="1"
+       transform="matrix(0,1,-1,0,0,0)" />
+    <rect
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2840"
+       width="1"
+       height="1"
+       x="13"
+       y="-16.999998"
+       transform="matrix(0,1,-1,0,0,0)" />
+    <rect
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2848"
+       width="1"
+       height="1"
+       x="-16"
+       y="-16"
+       transform="matrix(0,-1,-1,0,0,0)" />
+    <rect
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2850"
+       width="1"
+       height="1"
+       x="-17"
+       y="-16.999998"
+       transform="matrix(0,-1,-1,0,0,0)" />
+    <rect
+       style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect8869"
+       width="1"
+       height="1"
+       x="12"
+       y="-18"
+       transform="matrix(0,1,-1,0,0,0)" />
+    <rect
+       style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect8871"
+       width="1"
+       height="1"
+       x="17"
+       y="-18"
+       transform="matrix(0,1,-1,0,0,0)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/tray/22/scalable/tray-busy.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -0,0 +1,292 @@
+<?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="24"
+   height="24"
+   id="svg8999"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docname="tray-busy.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/Pidgin objecten voor 2.5.0/Pidgin Polish/tray/tray-busy.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs9001">
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient9155"
+       gradientUnits="userSpaceOnUse"
+       x1="6.924273"
+       y1="2.5071414"
+       x2="16.499542"
+       y2="15.010952" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8907">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1"
+         offset="0"
+         id="stop8909" />
+      <stop
+         style="stop-color:#2f5379;stop-opacity:1"
+         offset="1"
+         id="stop8911" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8907"
+       id="linearGradient9153"
+       gradientUnits="userSpaceOnUse"
+       x1="11.531433"
+       y1="2.0188477"
+       x2="7.6475248"
+       y2="16.513792" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient29418"
+       id="linearGradient9151"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.502468)"
+       x1="35.003674"
+       y1="10.957423"
+       x2="27.273300"
+       y2="24.143761" />
+    <filter
+       height="1.2203122"
+       y="-0.11015608"
+       width="1.2623479"
+       x="-0.13117394"
+       id="filter3416"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur3418"
+         stdDeviation="0.19309804"
+         inkscape:collect="always" />
+    </filter>
+    <linearGradient
+       id="linearGradient2239"
+       inkscape:collect="always">
+      <stop
+         id="stop2241"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop2243"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2239"
+       id="linearGradient8993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4077791,0,0,0.4061995,8.3985887,9.5673376)"
+       x1="-1.5418521"
+       y1="-6.2826729"
+       x2="63.127094"
+       y2="59.183727" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8968">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8970" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8972" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8968"
+       id="linearGradient8991"
+       gradientUnits="userSpaceOnUse"
+       x1="1.000047"
+       y1="-4.5287623"
+       x2="10.253004"
+       y2="11.790199"
+       gradientTransform="matrix(0.8444696,0,0,0.8412122,8.1707406,9.3403614)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8192">
+      <stop
+         style="stop-color:#a40000;stop-opacity:1"
+         offset="0"
+         id="stop8194" />
+      <stop
+         style="stop-color:#810000;stop-opacity:1"
+         offset="1"
+         id="stop8196" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8192"
+       id="linearGradient8997"
+       gradientUnits="userSpaceOnUse"
+       x1="4.3481388"
+       y1="10.84792"
+       x2="26.936407"
+       y2="24.065733" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8710">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8712" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8714" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient8716"
+       x1="6.924273"
+       y1="2.5071414"
+       x2="16.499542"
+       y2="15.010952"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient29418">
+      <stop
+         id="stop29420"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop29422"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient29418"
+       id="linearGradient8799"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024669)"
+       x1="35.003674"
+       y1="10.957423"
+       x2="27.273300"
+       y2="24.143761" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       id="perspective9007" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="15.696216"
+     inkscape:cx="7.1937074"
+     inkscape:cy="14.21622"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="650"
+     inkscape:window-height="669"
+     inkscape:window-x="0"
+     inkscape:window-y="22"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7874"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata9004">
+    <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
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       id="path9137"
+       d="M 17.120074,2.4999997 C 17.911234,2.4999997 18.5,3.0785204 18.5,4.0031287 L 18.5,13.290965 C 18.5,13.958536 17.974302,14.487782 17.311203,14.487782 L 8.5609012,14.487782 C 8.0308789,15.189395 7.1533459,17.327271 4.6806889,18.274119 C 5.781573,16.971634 5.5012167,14.487782 5.5012167,14.487782 L 4.0268296,14.487782 C 3.3637331,14.487782 2.5000011,13.703698 2.4999997,13.036127 L 2.4999997,3.9394191 C 2.4999997,3.2718468 3.3000235,2.4999997 3.96312,2.4999997 L 17.120074,2.4999997 z"
+       style="fill:url(#linearGradient9151);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9153);stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       sodipodi:nodetypes="cccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.99184585"
+       inkscape:original="M 3.71875 3.5 C 3.0556535 3.5 2.5000001 4.0511776 2.5 4.71875 L 2.5 14.28125 C 2.5000014 14.948821 3.0556534 15.5 3.71875 15.5 L 5.5 15.5 C 5.5 15.5 5.788384 17.978766 4.6875 19.28125 C 7.160157 18.334402 8.0324781 16.201613 8.5625 15.5 L 17.3125 15.5 C 17.975599 15.5 18.5 14.948821 18.5 14.28125 L 18.5 4.71875 C 18.5 4.0511777 17.975599 3.5000001 17.3125 3.5 L 3.71875 3.5 z "
+       style="fill:url(#linearGradient9155);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       id="path9139"
+       d="M 3.71875,4.5 C 3.6052801,4.5 3.5,4.6015523 3.5,4.71875 L 3.5,14.28125 C 3.5000002,14.398448 3.6052813,14.5 3.71875,14.5 L 5.5,14.5 C 6.0083008,14.492334 6.440125,14.87018 6.5,15.375 C 6.5,15.375 6.5264519,16.055972 6.5,16.75 C 6.5214715,16.72401 6.5728376,16.713552 6.59375,16.6875 C 7.1128586,16.040814 7.3826252,15.433927 7.78125,14.90625 C 7.9639971,14.656332 8.2529544,14.506075 8.5625,14.5 L 17.3125,14.5 C 17.425973,14.5 17.5,14.429401 17.5,14.28125 L 17.5,4.71875 C 17.5,4.570597 17.425975,4.5 17.3125,4.5 L 3.71875,4.5 z"
+       transform="translate(1.0197678e-7,-0.9999999)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.36561811px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path1311"
+       sodipodi:cx="15.590227"
+       sodipodi:cy="16.57217"
+       sodipodi:rx="14.345175"
+       sodipodi:ry="14.345175"
+       d="M 29.935402,16.57217 A 14.345175,14.345175 0 1 1 1.2450523,16.57217 A 14.345175,14.345175 0 1 1 29.935402,16.57217 z"
+       transform="matrix(0.4103372,0,0,0.4103372,8.5779752,9.2975807)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#f13d3d;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8997);stroke-width:2.19154143px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path1339"
+       sodipodi:cx="15.590227"
+       sodipodi:cy="16.57217"
+       sodipodi:rx="14.345175"
+       sodipodi:ry="14.345175"
+       d="M 29.935402,16.57217 A 14.345175,14.345175 0 1 1 1.2450523,16.57217 A 14.345175,14.345175 0 1 1 29.935402,16.57217 z"
+       transform="matrix(0.457354,0,0,0.455248,7.8089242,8.4861647)" />
+    <path
+       style="opacity:0.75;fill:url(#linearGradient8991);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8993);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       d="M 20.437485,16.061225 C 20.437485,19.097224 17.973484,21.561226 14.937484,21.561226 C 11.901484,21.561226 9.4374847,19.097224 9.4374847,16.061225 C 9.4374847,13.025226 11.901484,10.561226 14.937484,10.561226 C 17.973484,10.561226 20.437485,13.025226 20.437485,16.061225 L 20.437485,16.061225 z"
+       id="path2220" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.19499996;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3416)"
+       id="path3302"
+       sodipodi:cx="11.484269"
+       sodipodi:cy="4.7465701"
+       sodipodi:rx="1.8659533"
+       sodipodi:ry="1.9428998"
+       d="M 13.350222,4.7465701 A 1.8659533,1.9428998 0 1 1 9.6183158,4.7465701 A 1.8659533,1.9428998 0 1 1 13.350222,4.7465701 z"
+       transform="matrix(1.9262296,-1.1216182,0.826622,1.4439935,-12.37164,20.356286)" />
+    <rect
+       style="fill:#eeeeec;fill-opacity:1;stroke:#a40000;stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect3207"
+       width="9"
+       height="2.9999998"
+       x="10.437485"
+       y="14.561226"
+       rx="0.91377938"
+       ry="0.91377938" />
+  </g>
+</svg>
--- a/pidgin/pixmaps/tray/22/scalable/tray-invisible.svg	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/pixmaps/tray/22/scalable/tray-invisible.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -2,7 +2,7 @@
 <!-- Created with Inkscape (http://www.inkscape.org/) -->
 <svg
    xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://web.resource.org/cc/"
+   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"
@@ -11,315 +11,668 @@
    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
    width="24"
    height="24"
-   id="svg2"
+   id="svg7943"
    sodipodi:version="0.32"
-   inkscape:version="0.44.1"
+   inkscape:version="0.46"
    version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop"
    sodipodi:docname="tray-invisible.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/notification-area/tray-busy.png"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/Pidgin objecten voor 2.5.0/Pidgin Polish/tray/tray-available.png"
    inkscape:export-xdpi="90"
    inkscape:export-ydpi="90">
   <defs
-     id="defs4">
+     id="defs7945">
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient2989">
+       id="linearGradient9042">
       <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
+         style="stop-color:#8cb1d9;stop-opacity:1;"
          offset="0"
-         id="stop2991" />
+         id="stop9044" />
       <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
+         style="stop-color:#437fc2;stop-opacity:1"
          offset="1"
-         id="stop2993" />
+         id="stop9046" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient2225">
+       id="linearGradient8907">
       <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
+         style="stop-color:#729fcf;stop-opacity:1"
          offset="0"
-         id="stop2227" />
+         id="stop8909" />
       <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
+         style="stop-color:#2f5379;stop-opacity:1"
          offset="1"
-         id="stop2229" />
+         id="stop8911" />
     </linearGradient>
     <linearGradient
        id="linearGradient29418">
       <stop
-         style="stop-color:#f5f5f5;stop-opacity:1.0000000;"
+         id="stop29420"
          offset="0.0000000"
-         id="stop29420" />
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
       <stop
-         style="stop-color:#e9e9e9;stop-opacity:1.0000000;"
+         id="stop29422"
          offset="1.0000000"
-         id="stop29422" />
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient29418"
-       id="linearGradient29443"
+       id="linearGradient8799"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.977228,0,0,0.995878,50.60272,9.115637)"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024686)"
        x1="35.003674"
        y1="10.957423"
        x2="27.273300"
        y2="24.143761" />
     <linearGradient
-       id="linearGradient2804">
+       inkscape:collect="always"
+       id="linearGradient8710">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8712" />
       <stop
-         style="stop-color:black;stop-opacity:0;"
+         style="stop-color:#c7d9ed;stop-opacity:1"
+         offset="1"
+         id="stop8714" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient8716"
+       x1="9.9977369"
+       y1="2.5581124"
+       x2="9.9977369"
+       y2="15.90989"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3286"
+       inkscape:collect="always">
+      <stop
+         id="stop2476"
          offset="0"
-         id="stop2806" />
+         style="stop-color:#459000;stop-opacity:1" />
       <stop
-         id="stop2812"
-         offset="0.5"
-         style="stop-color:black;stop-opacity:1;" />
+         id="stop3290"
+         offset="1"
+         style="stop-color:#204300;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3286"
+       id="linearGradient7920"
+       gradientUnits="userSpaceOnUse"
+       x1="15.893391"
+       y1="15.213944"
+       x2="26.533659"
+       y2="28.579245"
+       gradientTransform="matrix(0.4668572,0,0,0.4668571,6.6478951,6.7961412)" />
+    <linearGradient
+       id="linearGradient2851">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2853" />
       <stop
-         style="stop-color:black;stop-opacity:0;"
+         style="stop-color:#5ca911;stop-opacity:1;"
          offset="1"
-         id="stop2808" />
+         id="stop2855" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient7918"
+       gradientUnits="userSpaceOnUse"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientTransform="matrix(0.4668572,0,0,0.4668571,6.6478951,6.7961412)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3149">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3151" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3153" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2804"
-       id="linearGradient2831"
+       xlink:href="#linearGradient3149"
+       id="linearGradient7915"
+       gradientUnits="userSpaceOnUse"
+       x1="11.127699"
+       y1="10.823074"
+       x2="30.341434"
+       y2="31.325201"
+       gradientTransform="matrix(0.3953421,0,0,0.3953421,7.9273006,8.0528386)" />
+    <filter
+       height="1.2203122"
+       y="-0.11015608"
+       width="1.2623479"
+       x="-0.13117394"
+       id="filter3374"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur3376"
+         stdDeviation="0.19309804"
+         inkscape:collect="always" />
+    </filter>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       id="perspective7951" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="28.364647"
+       x2="18.497854"
+       y1="60.525894"
+       x1="14.193055"
+       id="linearGradient8758"
+       xlink:href="#linearGradient8752"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="22.781603"
+       x2="30.5"
+       y1="4.8871226"
+       x1="30.5"
        gradientUnits="userSpaceOnUse"
-       x1="21.875"
-       y1="48.000977"
-       x2="21.875"
-       y2="40" />
+       id="linearGradient8913"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="44.348099"
+       x2="17.997768"
+       y1="36.416954"
+       x1="17.997768"
+       id="linearGradient8834"
+       xlink:href="#linearGradient8828"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)"
+       gradientUnits="userSpaceOnUse"
+       y2="29.853554"
+       x2="19.985121"
+       y1="29.911009"
+       x1="18.5"
+       id="linearGradient8692"
+       xlink:href="#linearGradient8686"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="44.272076"
+       x2="5.5366187"
+       y1="38.950283"
+       x1="12.01321"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6573"
+       xlink:href="#linearGradient6563"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="22.781603"
+       x2="30.5"
+       y1="1.0232024"
+       x1="30.5"
+       id="linearGradient6543"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="43.5"
+       x2="5.6917014"
+       y1="43.5"
+       x1="3.3105288"
+       id="linearGradient6499"
+       xlink:href="#linearGradient6493"
+       inkscape:collect="always" />
     <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2781"
-       id="radialGradient2829"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.732283,0,10.65742)"
+       r="9.7225161"
+       fy="39.80859"
+       fx="15.004828"
+       cy="39.80859"
+       cx="15.004828"
+       id="radialGradient5286"
+       xlink:href="#linearGradient5280"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3800">
+      <stop
+         id="stop3802"
+         offset="0.0000000"
+         style="stop-color:#f4d9b1;stop-opacity:1.0000000;" />
+      <stop
+         id="stop3804"
+         offset="1.0000000"
+         style="stop-color:#df9725;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <radialGradient
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2,0,0,0.8,36,8.8)"
-       cx="1"
-       cy="44"
-       fx="1"
-       fy="44"
-       r="5" />
+       gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
+       r="8.4883642"
+       fy="2.6242435"
+       fx="7.8836637"
+       cy="2.6242435"
+       cx="7.8836637"
+       id="radialGradient25554"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
     <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2781">
+       id="linearGradient25546"
+       inkscape:collect="always">
+      <stop
+         id="stop25548"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop25550"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="8.4883642"
+       fy="0.14505707"
+       fx="7.8836741"
+       cy="0.14505707"
+       cx="7.8836741"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25568"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.4883642"
+       fy="1.5104795"
+       fx="7.8836637"
+       cy="1.5104795"
+       cx="7.8836637"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25572"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2804">
+      <stop
+         id="stop2806"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
       <stop
          style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop2812" />
+      <stop
+         id="stop2808"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5280"
+       inkscape:collect="always">
+      <stop
+         id="stop5282"
          offset="0"
-         id="stop2783" />
+         style="stop-color:#82508e;stop-opacity:1;" />
       <stop
-         style="stop-color:black;stop-opacity:0;"
+         id="stop5284"
+         offset="1"
+         style="stop-color:#82508e;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6493"
+       inkscape:collect="always">
+      <stop
+         id="stop6495"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop6497"
          offset="1"
-         id="stop2785" />
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6537"
+       inkscape:collect="always">
+      <stop
+         id="stop6539"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6541"
+         offset="1"
+         style="stop-color:#d3e1f1;stop-opacity:1" />
     </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2781"
-       id="radialGradient2827"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
-       cx="1"
-       cy="44"
-       fx="1"
-       fy="44"
-       r="5" />
+    <linearGradient
+       id="linearGradient6563"
+       inkscape:collect="always">
+      <stop
+         id="stop6565"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6567"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective75"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 24 : 1"
+       sodipodi:type="inkscape:persp3d" />
     <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2186">
+       id="linearGradient8686"
+       inkscape:collect="always">
+      <stop
+         id="stop8688"
+         offset="0"
+         style="stop-color:#fdb751;stop-opacity:1" />
       <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
+         id="stop8690"
+         offset="1"
+         style="stop-color:#ce5c00;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8828"
+       inkscape:collect="always">
+      <stop
+         id="stop8830"
          offset="0"
-         id="stop2188" />
+         style="stop-color:#dc50cd;stop-opacity:1;" />
       <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
+         id="stop8832"
          offset="1"
-         id="stop2190" />
+         style="stop-color:#dc50cd;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8752"
+       inkscape:collect="always">
+      <stop
+         id="stop8754"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop8756"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient2260">
+       xlink:href="#linearGradient8907"
+       id="linearGradient8914"
+       x1="11.531433"
+       y1="2.0188477"
+       x2="7.6475248"
+       y2="16.513792"
+       gradientUnits="userSpaceOnUse" />
+    <inkscape:perspective
+       id="perspective8012"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 8 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       y2="24.143761"
+       x2="27.273300"
+       y1="10.957423"
+       x1="35.003674"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024683)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8986"
+       xlink:href="#linearGradient29418"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8980">
+      <stop
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8982" />
       <stop
-         style="stop-color:#555753;stop-opacity:1;"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop8984" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="15.010952"
+       x2="16.499542"
+       y1="2.5071414"
+       x1="6.924273"
+       id="linearGradient8978"
+       xlink:href="#linearGradient8710"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient3210"
+       xlink:href="#linearGradient3204"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="18.288521"
+       x2="12.015625"
+       y1="10.420408"
+       x1="12.015625"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3200"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="13.251127"
+       x2="12.750399"
+       y1="19.780256"
+       x1="12.726427"
+       id="linearGradient3197"
+       xlink:href="#linearGradient3191"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="19.148933"
+       x2="15.742911"
+       y1="8.850009"
+       x1="13.038205"
+       id="linearGradient3189"
+       xlink:href="#linearGradient3183"
+       inkscape:collect="always" />
+    <radialGradient
+       r="6.6449099"
+       fy="10.457643"
+       fx="10.748654"
+       cy="10.457643"
+       cx="10.748654"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1364"
+       xlink:href="#linearGradient3150"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient4152"
+       xlink:href="#linearGradient4146"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="17.151861"
+       x2="12.015625"
+       y1="12.513933"
+       x1="12.015625"
+       id="linearGradient4144"
+       xlink:href="#linearGradient4138"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="20.157516"
+       x2="12.015625"
+       y1="12.904307"
+       x1="12.015625"
+       id="linearGradient4136"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3150"
+       inkscape:collect="always">
+      <stop
+         id="stop3152"
          offset="0"
-         id="stop2262" />
+         style="stop-color:#2e3436;stop-opacity:1;" />
+      <stop
+         id="stop3154"
+         offset="1"
+         style="stop-color:#2e3436;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4130"
+       inkscape:collect="always">
+      <stop
+         id="stop4132"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4134"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4138"
+       inkscape:collect="always">
+      <stop
+         id="stop4140"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4142"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4146"
+       inkscape:collect="always">
+      <stop
+         id="stop4148"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
       <stop
-         style="stop-color:#555753;stop-opacity:0;"
+         id="stop4150"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective30"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3183"
+       inkscape:collect="always">
+      <stop
+         id="stop3185"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3187"
          offset="1"
-         id="stop2264" />
+         style="stop-color:#555753;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3191"
+       inkscape:collect="always">
+      <stop
+         id="stop3193"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop3195"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3204"
+       inkscape:collect="always">
+      <stop
+         id="stop3206"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3208"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:0;" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       id="linearGradient3816">
+       xlink:href="#linearGradient3149"
+       id="linearGradient3142"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3144"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3146">
       <stop
-         style="stop-color:#000000;stop-opacity:1;"
+         style="stop-color:#73d216;stop-opacity:1;"
          offset="0"
-         id="stop3818" />
+         id="stop3148" />
       <stop
-         style="stop-color:#000000;stop-opacity:0;"
+         style="stop-color:#5ca911;stop-opacity:1;"
          offset="1"
-         id="stop3820" />
+         id="stop3150" />
     </linearGradient>
     <radialGradient
        inkscape:collect="always"
        xlink:href="#linearGradient3816"
-       id="radialGradient3822"
+       id="radialGradient3164"
        cx="31.112698"
        cy="19.008621"
        fx="31.112698"
        fy="19.008621"
        r="8.6620579"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2200">
-      <stop
-         style="stop-color:#d3d7cf;stop-opacity:1;"
-         offset="0"
-         id="stop2202" />
-      <stop
-         style="stop-color:#d3d7cf;stop-opacity:0;"
-         offset="1"
-         id="stop2204" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2200"
-       id="radialGradient2216"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-2.522332,-1.518129e-16,-1.517788e-16,2.521765,40.1904,-21.83521)"
-       cx="9.9988937"
-       cy="8.963316"
-       fx="9.9988937"
-       fy="8.963316"
-       r="7.0034069" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2200"
-       id="radialGradient2225"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-2.522332,-1.518129e-16,-1.517788e-16,2.521765,40.1904,-21.80154)"
-       cx="9.9988937"
-       cy="8.963316"
-       fx="9.9988937"
-       fy="8.963316"
-       r="7.0034069" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2260"
-       id="radialGradient2266"
-       cx="11.756953"
-       cy="17.588654"
-       fx="11.756953"
-       fy="17.588654"
-       r="6.3436799"
-       gradientTransform="matrix(1,0,0,0.626667,0,6.566431)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       id="linearGradient2239"
-       inkscape:collect="always">
-      <stop
-         id="stop2241"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1;" />
-      <stop
-         id="stop2243"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2239"
-       id="linearGradient1357"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.371983,0,0,0.372254,2.539836,8.539528)"
-       x1="15.602553"
-       y1="1.5657365"
-       x2="15.522223"
-       y2="33.483475" />
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2186"
-       id="linearGradient2337"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.529942,0,0,0.53199,17.26643,15.48536)"
-       x1="11.226587"
-       y1="-5.4832759"
-       x2="11.226587"
-       y2="17.697369" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2239"
-       id="linearGradient2339"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.37378,0,0,0.375227,17.64779,15.86312)"
-       x1="15.535398"
-       y1="1.8014067"
-       x2="15.535398"
-       y2="48.674999" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2225"
-       id="linearGradient6606"
-       gradientUnits="userSpaceOnUse"
-       x1="11.802028"
-       y1="1.9986149"
-       x2="11.802028"
-       y2="14.895812" />
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="27.77807"
-       x2="12.233074"
-       y1="11.789385"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3166"
        x1="6.878005"
-       id="linearGradient2857"
-       xlink:href="#linearGradient2851"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient3149"
-       inkscape:collect="always">
-      <stop
-         id="stop3151"
-         offset="0"
-         style="stop-color:#eeeeec;stop-opacity:1;" />
-      <stop
-         id="stop3153"
-         offset="1"
-         style="stop-color:#eeeeec;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient2851">
-      <stop
-         id="stop2853"
-         offset="0"
-         style="stop-color:#73d216;stop-opacity:1;" />
-      <stop
-         id="stop2855"
-         offset="1"
-         style="stop-color:#5ca911;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       y2="40.032413"
-       x2="17.890068"
-       y1="8.0617304"
-       x1="17.890068"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient2269"
-       xlink:href="#linearGradient3149"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient2812"
-       inkscape:collect="always">
-      <stop
-         id="stop2814"
-         offset="0"
-         style="stop-color:#2e3436;stop-opacity:1;" />
-      <stop
-         id="stop2816"
-         offset="1"
-         style="stop-color:#2e3436;stop-opacity:0;" />
-    </linearGradient>
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
     <radialGradient
        gradientUnits="userSpaceOnUse"
        r="8.6620579"
@@ -327,7 +680,7 @@
        fx="31.112698"
        cy="19.008621"
        cx="31.112698"
-       id="radialGradient2064"
+       id="radialGradient3168"
        xlink:href="#linearGradient2812"
        inkscape:collect="always" />
     <linearGradient
@@ -336,7 +689,7 @@
        x2="10.623409"
        y1="2.7991772"
        x1="4.5264969"
-       id="linearGradient2062"
+       id="linearGradient3170"
        xlink:href="#linearGradient2804"
        inkscape:collect="always" />
     <linearGradient
@@ -345,17 +698,17 @@
        x2="12.233074"
        y1="11.789385"
        x1="6.878005"
-       id="linearGradient2060"
+       id="linearGradient3172"
        xlink:href="#linearGradient2851"
        inkscape:collect="always" />
     <linearGradient
-       id="linearGradient2048">
+       id="linearGradient3174">
       <stop
-         id="stop2050"
+         id="stop3176"
          offset="0"
          style="stop-color:#73d216;stop-opacity:1;" />
       <stop
-         id="stop2052"
+         id="stop3178"
          offset="1"
          style="stop-color:#5ca911;stop-opacity:1;" />
     </linearGradient>
@@ -365,13 +718,13 @@
        y1="8.0617304"
        x1="17.890068"
        gradientUnits="userSpaceOnUse"
-       id="linearGradient2046"
+       id="linearGradient3180"
        xlink:href="#linearGradient3149"
        inkscape:collect="always" />
     <radialGradient
        inkscape:collect="always"
        xlink:href="#linearGradient2812"
-       id="radialGradient2084"
+       id="radialGradient3194"
        gradientUnits="userSpaceOnUse"
        cx="31.112698"
        cy="19.008621"
@@ -380,31 +733,32 @@
        r="8.6620579" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2989"
-       id="linearGradient2995"
-       x1="1.5769236"
-       y1="1.3319674"
-       x2="10.043059"
-       y2="10.018044"
-       gradientUnits="userSpaceOnUse" />
+       xlink:href="#linearGradient2804"
+       id="linearGradient3196"
+       gradientUnits="userSpaceOnUse"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895" />
     <radialGradient
-       r="8.6620579"
-       fy="19.008621"
-       fx="31.112698"
-       cy="19.008621"
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3198"
+       gradientUnits="userSpaceOnUse"
        cx="31.112698"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient3025"
-       xlink:href="#linearGradient2812"
-       inkscape:collect="always" />
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
     <linearGradient
-       y2="11.024895"
-       x2="10.623409"
-       y1="2.7991772"
-       x1="4.5264969"
+       y2="48.674999"
+       x2="15.535398"
+       y1="1.8014067"
+       x1="15.535398"
+       gradientTransform="matrix(0.37378,0,0,0.375227,5.518529,18.82427)"
        gradientUnits="userSpaceOnUse"
-       id="linearGradient3007"
-       xlink:href="#linearGradient2804"
+       id="linearGradient3084"
+       xlink:href="#linearGradient2239"
        inkscape:collect="always" />
     <radialGradient
        r="8.6620579"
@@ -413,33 +767,166 @@
        cy="19.008621"
        cx="31.112698"
        gradientUnits="userSpaceOnUse"
-       id="radialGradient3005"
+       id="radialGradient3082"
        xlink:href="#linearGradient2812"
        inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient3022"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3030"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2186"
+       id="linearGradient2194"
+       x1="6.2538223"
+       y1="3.7276814"
+       x2="14.441897"
+       y2="19.159578"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2239"
+       id="linearGradient3045"
+       x1="8.7505674"
+       y1="4.5934086"
+       x2="31.18539"
+       y2="39.834526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient3149"
-       id="linearGradient2949"
+       id="linearGradient3047"
        gradientUnits="userSpaceOnUse"
        x1="17.890068"
        y1="8.0617304"
        x2="17.890068"
        y2="40.032413" />
     <linearGradient
-       id="linearGradient2951">
+       id="linearGradient3049">
       <stop
          style="stop-color:#73d216;stop-opacity:1;"
          offset="0"
-         id="stop2953" />
+         id="stop3051" />
       <stop
          style="stop-color:#5ca911;stop-opacity:1;"
          offset="1"
-         id="stop2955" />
+         id="stop3053" />
     </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3067"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient2851"
-       id="linearGradient2963"
+       id="linearGradient3069"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient2006"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient2014"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2186"
+       id="linearGradient2022"
+       x1="9.2594385"
+       y1="-1.5641226"
+       x2="11.226587"
+       y2="17.697369"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2239"
+       id="linearGradient2030"
+       x1="8.7505674"
+       y1="4.5934086"
+       x2="31.18539"
+       y2="39.834526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2032"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient2034">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2036" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2038" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient2053"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2055"
        x1="6.878005"
        y1="11.789385"
        x2="12.233074"
@@ -447,33 +934,85 @@
        gradientUnits="userSpaceOnUse" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2804"
-       id="linearGradient2810"
-       x1="4.5264969"
-       y1="2.7991772"
-       x2="10.623409"
-       y2="11.024895"
-       gradientUnits="userSpaceOnUse" />
+       id="linearGradient2898">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop2900" />
+      <stop
+         style="stop-color:white;stop-opacity:0;"
+         offset="1"
+         id="stop2902" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3044"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3046">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3048" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3050" />
+    </linearGradient>
     <radialGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2812"
-       id="radialGradient2818"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3064"
        cx="31.112698"
        cy="19.008621"
        fx="31.112698"
        fy="19.008621"
        r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3066"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient2904"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
        gradientUnits="userSpaceOnUse" />
     <radialGradient
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
-       r="0.8078171"
-       fy="6.9473476"
-       fx="4.8470273"
-       cy="6.9473476"
-       cx="4.8470273"
-       id="radialGradient2904"
-       xlink:href="#linearGradient2898"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient2818"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="11.024895"
+       x2="10.623409"
+       y1="2.7991772"
+       x1="4.5264969"
+       id="linearGradient2810"
+       xlink:href="#linearGradient2804"
        inkscape:collect="always" />
     <linearGradient
        gradientUnits="userSpaceOnUse"
@@ -481,89 +1020,17 @@
        x2="12.233074"
        y1="11.789385"
        x1="6.878005"
-       id="linearGradient3066"
+       id="linearGradient2963"
        xlink:href="#linearGradient2851"
        inkscape:collect="always" />
-    <radialGradient
-       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)"
-       gradientUnits="userSpaceOnUse"
-       r="8.6620579"
-       fy="19.008621"
-       fx="31.112698"
-       cy="19.008621"
-       cx="31.112698"
-       id="radialGradient3064"
-       xlink:href="#linearGradient3816"
-       inkscape:collect="always" />
     <linearGradient
-       id="linearGradient3046">
+       id="linearGradient2951">
       <stop
-         id="stop3048"
+         id="stop2953"
          offset="0"
          style="stop-color:#73d216;stop-opacity:1;" />
       <stop
-         id="stop3050"
-         offset="1"
-         style="stop-color:#5ca911;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       y2="40.032413"
-       x2="17.890068"
-       y1="8.0617304"
-       x1="17.890068"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient3044"
-       xlink:href="#linearGradient3149"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="36.603138"
-       x2="24.240097"
-       y1="9.4211226"
-       x1="15.498499"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient4740"
-       xlink:href="#linearGradient3149"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient2898"
-       inkscape:collect="always">
-      <stop
-         id="stop2900"
-         offset="0"
-         style="stop-color:white;stop-opacity:1;" />
-      <stop
-         id="stop2902"
-         offset="1"
-         style="stop-color:white;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="27.77807"
-       x2="12.233074"
-       y1="11.789385"
-       x1="6.878005"
-       id="linearGradient2055"
-       xlink:href="#linearGradient2851"
-       inkscape:collect="always" />
-    <radialGradient
-       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)"
-       gradientUnits="userSpaceOnUse"
-       r="8.6620579"
-       fy="19.008621"
-       fx="31.112698"
-       cy="19.008621"
-       cx="31.112698"
-       id="radialGradient2053"
-       xlink:href="#linearGradient3816"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient2034">
-      <stop
-         id="stop2036"
-         offset="0"
-         style="stop-color:#73d216;stop-opacity:1;" />
-      <stop
-         id="stop2038"
+         id="stop2955"
          offset="1"
          style="stop-color:#5ca911;stop-opacity:1;" />
     </linearGradient>
@@ -573,135 +1040,13 @@
        y1="8.0617304"
        x1="17.890068"
        gradientUnits="userSpaceOnUse"
-       id="linearGradient2032"
+       id="linearGradient2949"
        xlink:href="#linearGradient3149"
        inkscape:collect="always" />
-    <linearGradient
-       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)"
-       gradientUnits="userSpaceOnUse"
-       y2="39.834526"
-       x2="31.18539"
-       y1="4.5934086"
-       x1="8.7505674"
-       id="linearGradient2030"
-       xlink:href="#linearGradient2239"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)"
-       gradientUnits="userSpaceOnUse"
-       y2="17.697369"
-       x2="11.226587"
-       y1="-1.5641226"
-       x1="9.2594385"
-       id="linearGradient2022"
-       xlink:href="#linearGradient2186"
-       inkscape:collect="always" />
-    <radialGradient
-       r="8.6620579"
-       fy="19.008621"
-       fx="31.112698"
-       cy="19.008621"
-       cx="31.112698"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient2014"
-       xlink:href="#linearGradient2812"
-       inkscape:collect="always" />
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
-       r="0.8078171"
-       fy="6.9473476"
-       fx="4.8470273"
-       cy="6.9473476"
-       cx="4.8470273"
-       id="radialGradient2006"
-       xlink:href="#linearGradient2898"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="27.77807"
-       x2="12.233074"
-       y1="11.789385"
-       x1="6.878005"
-       id="linearGradient3069"
-       xlink:href="#linearGradient2851"
-       inkscape:collect="always" />
-    <radialGradient
-       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)"
-       gradientUnits="userSpaceOnUse"
-       r="8.6620579"
-       fy="19.008621"
-       fx="31.112698"
-       cy="19.008621"
-       cx="31.112698"
-       id="radialGradient3067"
-       xlink:href="#linearGradient3816"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient3049">
-      <stop
-         id="stop3051"
-         offset="0"
-         style="stop-color:#73d216;stop-opacity:1;" />
-      <stop
-         id="stop3053"
-         offset="1"
-         style="stop-color:#5ca911;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       y2="40.032413"
-       x2="17.890068"
-       y1="8.0617304"
-       x1="17.890068"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient3047"
-       xlink:href="#linearGradient3149"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)"
-       gradientUnits="userSpaceOnUse"
-       y2="39.834526"
-       x2="31.18539"
-       y1="4.5934086"
-       x1="8.7505674"
-       id="linearGradient3045"
-       xlink:href="#linearGradient2239"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)"
-       gradientUnits="userSpaceOnUse"
-       y2="19.159578"
-       x2="14.441897"
-       y1="3.7276814"
-       x1="6.2538223"
-       id="linearGradient2194"
-       xlink:href="#linearGradient2186"
-       inkscape:collect="always" />
-    <radialGradient
-       r="8.6620579"
-       fy="19.008621"
-       fx="31.112698"
-       cy="19.008621"
-       cx="31.112698"
-       gradientUnits="userSpaceOnUse"
-       id="radialGradient3030"
-       xlink:href="#linearGradient2812"
-       inkscape:collect="always" />
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
-       r="0.8078171"
-       fy="6.9473476"
-       fx="4.8470273"
-       cy="6.9473476"
-       cx="4.8470273"
-       id="radialGradient3022"
-       xlink:href="#linearGradient2898"
-       inkscape:collect="always" />
     <radialGradient
        inkscape:collect="always"
        xlink:href="#linearGradient2812"
-       id="radialGradient3082"
+       id="radialGradient3005"
        gradientUnits="userSpaceOnUse"
        cx="31.112698"
        cy="19.008621"
@@ -710,32 +1055,21 @@
        r="8.6620579" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient2239"
-       id="linearGradient3084"
+       xlink:href="#linearGradient2804"
+       id="linearGradient3007"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.37378,0,0,0.375227,5.518529,18.82427)"
-       x1="15.535398"
-       y1="1.8014067"
-       x2="15.535398"
-       y2="48.674999" />
-    <radialGradient
-       r="8.6620579"
-       fy="19.008621"
-       fx="31.112698"
-       cy="19.008621"
-       cx="31.112698"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895" />
+    <linearGradient
        gradientUnits="userSpaceOnUse"
-       id="radialGradient3198"
-       xlink:href="#linearGradient2812"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="11.024895"
-       x2="10.623409"
-       y1="2.7991772"
-       x1="4.5264969"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient3196"
-       xlink:href="#linearGradient2804"
+       y2="10.018044"
+       x2="10.043059"
+       y1="1.3319674"
+       x1="1.5769236"
+       id="linearGradient2995"
+       xlink:href="#linearGradient2989"
        inkscape:collect="always" />
     <radialGradient
        r="8.6620579"
@@ -744,33 +1078,33 @@
        cy="19.008621"
        cx="31.112698"
        gradientUnits="userSpaceOnUse"
-       id="radialGradient3194"
+       id="radialGradient2084"
        xlink:href="#linearGradient2812"
        inkscape:collect="always" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient3149"
-       id="linearGradient3180"
+       id="linearGradient2046"
        gradientUnits="userSpaceOnUse"
        x1="17.890068"
        y1="8.0617304"
        x2="17.890068"
        y2="40.032413" />
     <linearGradient
-       id="linearGradient3174">
+       id="linearGradient2048">
       <stop
          style="stop-color:#73d216;stop-opacity:1;"
          offset="0"
-         id="stop3176" />
+         id="stop2050" />
       <stop
          style="stop-color:#5ca911;stop-opacity:1;"
          offset="1"
-         id="stop3178" />
+         id="stop2052" />
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient2851"
-       id="linearGradient3172"
+       id="linearGradient2060"
        x1="6.878005"
        y1="11.789385"
        x2="12.233074"
@@ -779,7 +1113,7 @@
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient2804"
-       id="linearGradient3170"
+       id="linearGradient2062"
        x1="4.5264969"
        y1="2.7991772"
        x2="10.623409"
@@ -788,7 +1122,7 @@
     <radialGradient
        inkscape:collect="always"
        xlink:href="#linearGradient2812"
-       id="radialGradient3168"
+       id="radialGradient2064"
        cx="31.112698"
        cy="19.008621"
        fx="31.112698"
@@ -796,54 +1130,365 @@
        r="8.6620579"
        gradientUnits="userSpaceOnUse" />
     <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2812">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop2814" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop2816" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2269"
        gradientUnits="userSpaceOnUse"
-       y2="27.77807"
-       x2="12.233074"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient8152">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop8154" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop8156" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2857"
+       x1="6.878005"
        y1="11.789385"
-       x1="6.878005"
-       id="linearGradient3166"
-       xlink:href="#linearGradient2851"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       y2="14.895812"
+       x2="11.802028"
+       y1="1.9986149"
+       x1="11.802028"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6606"
+       xlink:href="#linearGradient2225"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48.674999"
+       x2="15.535398"
+       y1="1.8014067"
+       x1="15.535398"
+       gradientTransform="matrix(0.37378,0,0,0.375227,17.64779,15.86312)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2339"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="17.697369"
+       x2="11.226587"
+       y1="-5.4832759"
+       x1="11.226587"
+       gradientTransform="matrix(0.529942,0,0,0.53199,17.26643,15.48536)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2337"
+       xlink:href="#linearGradient2186"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="33.483475"
+       x2="15.522223"
+       y1="1.5657365"
+       x1="15.602553"
+       gradientTransform="matrix(0.371983,0,0,0.372254,2.539836,8.539528)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1357"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2239">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2241" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2243" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.626667,0,6.566431)"
+       r="6.3436799"
+       fy="17.588654"
+       fx="11.756953"
+       cy="17.588654"
+       cx="11.756953"
+       id="radialGradient2266"
+       xlink:href="#linearGradient2260"
        inkscape:collect="always" />
     <radialGradient
-       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)"
+       r="7.0034069"
+       fy="8.963316"
+       fx="9.9988937"
+       cy="8.963316"
+       cx="9.9988937"
+       gradientTransform="matrix(-2.522332,-1.518129e-16,-1.517788e-16,2.521765,40.1904,-21.80154)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2225"
+       xlink:href="#linearGradient2200"
+       inkscape:collect="always" />
+    <radialGradient
+       r="7.0034069"
+       fy="8.963316"
+       fx="9.9988937"
+       cy="8.963316"
+       cx="9.9988937"
+       gradientTransform="matrix(-2.522332,-1.518129e-16,-1.517788e-16,2.521765,40.1904,-21.83521)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2216"
+       xlink:href="#linearGradient2200"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2200"
+       inkscape:collect="always">
+      <stop
+         id="stop2202"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1;" />
+      <stop
+         id="stop2204"
+         offset="1"
+         style="stop-color:#d3d7cf;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
        gradientUnits="userSpaceOnUse"
        r="8.6620579"
        fy="19.008621"
        fx="31.112698"
        cy="19.008621"
        cx="31.112698"
-       id="radialGradient3164"
+       id="radialGradient3822"
        xlink:href="#linearGradient3816"
        inkscape:collect="always" />
     <linearGradient
-       id="linearGradient3146">
+       id="linearGradient3816"
+       inkscape:collect="always">
+      <stop
+         id="stop3818"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1;" />
       <stop
-         id="stop3148"
+         id="stop3820"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2260"
+       inkscape:collect="always">
+      <stop
+         id="stop2262"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop2264"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2186"
+       inkscape:collect="always">
+      <stop
+         id="stop2188"
          offset="0"
-         style="stop-color:#73d216;stop-opacity:1;" />
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop2190"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="5"
+       fy="44"
+       fx="1"
+       cy="44"
+       cx="1"
+       gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2827"
+       xlink:href="#linearGradient2781"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2781"
+       inkscape:collect="always">
+      <stop
+         id="stop2783"
+         offset="0"
+         style="stop-color:black;stop-opacity:1;" />
       <stop
-         id="stop3150"
+         id="stop2785"
          offset="1"
-         style="stop-color:#5ca911;stop-opacity:1;" />
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="5"
+       fy="44"
+       fx="1"
+       cy="44"
+       cx="1"
+       gradientTransform="matrix(2,0,0,0.8,36,8.8)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2829"
+       xlink:href="#linearGradient2781"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="40"
+       x2="21.875"
+       y1="48.000977"
+       x1="21.875"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2831"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8108">
+      <stop
+         id="stop8110"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop8112" />
+      <stop
+         id="stop8114"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
     </linearGradient>
     <linearGradient
-       y2="40.032413"
-       x2="17.890068"
-       y1="8.0617304"
-       x1="17.890068"
+       y2="24.143761"
+       x2="27.273300"
+       y1="10.957423"
+       x1="35.003674"
+       gradientTransform="matrix(-0.977228,0,0,0.995878,50.60272,9.115637)"
        gradientUnits="userSpaceOnUse"
-       id="linearGradient3144"
-       xlink:href="#linearGradient3149"
+       id="linearGradient29443"
+       xlink:href="#linearGradient29418"
        inkscape:collect="always" />
     <linearGradient
-       y2="36.603138"
-       x2="24.240097"
-       y1="9.4211226"
+       id="linearGradient8101">
+      <stop
+         id="stop8103"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop8105"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2225"
+       inkscape:collect="always">
+      <stop
+         id="stop2227"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop2229"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2989"
+       inkscape:collect="always">
+      <stop
+         id="stop2991"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop2993"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective8092"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient8251"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8253"
+       gradientUnits="userSpaceOnUse"
        x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient8259"
        gradientUnits="userSpaceOnUse"
-       id="linearGradient3142"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8261"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
        xlink:href="#linearGradient3149"
-       inkscape:collect="always" />
+       id="linearGradient8264"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138"
+       gradientTransform="matrix(0.4043208,0,0,0.4043216,7.7666799,7.8950675)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8270"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3947516,0,0,0.3947515,7.9378683,8.0632187)"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9042"
+       id="linearGradient9048"
+       x1="15.562512"
+       y1="16.125008"
+       x2="17.500002"
+       y2="20.375008"
+       gradientUnits="userSpaceOnUse" />
   </defs>
   <sodipodi:namedview
      id="base"
@@ -852,19 +1497,29 @@
      borderopacity="1.0"
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
-     inkscape:zoom="20.899939"
-     inkscape:cx="26.526463"
-     inkscape:cy="11.289944"
-     inkscape:document-units="px"
+     inkscape:zoom="1"
+     inkscape:cx="255.24383"
+     inkscape:cy="72.8062"
      inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#d3d7cf"
-     inkscape:window-width="1440"
-     inkscape:window-height="849"
-     inkscape:window-x="0"
-     inkscape:window-y="0" />
+     showgrid="false"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1232"
+     inkscape:window-height="718"
+     inkscape:window-x="200"
+     inkscape:window-y="90"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7872"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
   <metadata
-     id="metadata7">
+     id="metadata7948">
     <rdf:RDF>
       <cc:Work
          rdf:about="">
@@ -875,55 +1530,33 @@
     </rdf:RDF>
   </metadata>
   <g
+     id="layer1"
      inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
+     inkscape:groupmode="layer">
     <path
-       style="opacity:1;fill:#efefef;fill-opacity:1;fill-rule:evenodd;stroke:#787878;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 14.877402,1.4999995 C 15.782108,1.4999995 16.499998,2.2063381 16.499998,3.1046506 L 16.499998,12.174417 C 16.499998,13.07273 15.78211,13.491987 14.877402,13.491987 L 8.2067299,13.491987 L 4.5191254,16.212917 L 4.5191254,13.491987 L 3.1225959,13.491987 C 2.2178895,13.491987 1.4999988,13.07273 1.5,12.174417 L 1.5,3.1046506 C 1.5,2.2063381 2.2178895,1.4999995 3.1225959,1.4999995 L 14.877402,1.4999995 z "
-       id="path2221"
+       id="path29441"
+       d="M 17.120074,2.4999994 C 17.911234,2.4999994 18.5,3.0785201 18.5,4.0031284 L 18.5,13.290965 C 18.5,13.958536 17.974302,14.487782 17.311203,14.487782 L 8.5609011,14.487782 C 8.0308788,15.189395 7.1533458,17.327271 4.6806888,18.274119 C 5.7815729,16.971634 5.5012166,14.487782 5.5012166,14.487782 L 4.0268295,14.487782 C 3.363733,14.487782 2.500001,13.703698 2.4999996,13.036127 L 2.4999996,3.9394188 C 2.4999996,3.2718465 3.3000234,2.4999994 3.9631199,2.4999994 L 17.120074,2.4999994 z"
+       style="fill:url(#linearGradient8799);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8914);stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
        sodipodi:nodetypes="cccccccccccc" />
     <path
        sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0047876"
-       inkscape:original="M 3.125 1.5 C 2.2202936 1.5 1.5 2.1954376 1.5 3.09375 L 1.5 12.1875 C 1.4999988 13.085813 2.2202937 13.5 3.125 13.5 L 4.53125 13.5 L 4.53125 16.21875 L 8.21875 13.5 L 14.875 13.5 C 15.779708 13.5 16.5 13.085813 16.5 12.1875 L 16.5 3.09375 C 16.5 2.1954375 15.779706 1.5 14.875 1.5 L 3.125 1.5 z "
-       xlink:href="#path2221"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path5807"
-       inkscape:href="#path2221"
-       d="M 2.90625,2.5 C 2.6627552,2.5 2.5,2.6506524 2.5,2.9375 L 2.5,11.0625 C 2.4999996,11.349346 2.6627555,11.5 2.90625,11.5 L 4.53125,11.5 C 5.0824231,11.502675 5.5285754,11.948827 5.53125,12.5 L 5.53125,12.75 L 6.65625,11.75 C 6.8378154,11.590455 7.0708028,11.501698 7.3125,11.5 L 13.09375,11.5 C 13.337246,11.5 13.5,11.349348 13.5,11.0625 L 13.5,2.9375 C 13.5,2.6506524 13.337245,2.5 13.09375,2.5 L 2.90625,2.5 z " />
+       inkscape:radius="-0.99184585"
+       inkscape:original="M 3.71875 3.5 C 3.0556535 3.5 2.5000001 4.0511776 2.5 4.71875 L 2.5 14.28125 C 2.5000014 14.948821 3.0556534 15.5 3.71875 15.5 L 5.5 15.5 C 5.5 15.5 5.788384 17.978766 4.6875 19.28125 C 7.160157 18.334402 8.0324781 16.201613 8.5625 15.5 L 17.3125 15.5 C 17.975599 15.5 18.5 14.948821 18.5 14.28125 L 18.5 4.71875 C 18.5 4.0511777 17.975599 3.5000001 17.3125 3.5 L 3.71875 3.5 z "
+       style="fill:url(#linearGradient8716);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       id="path8805"
+       d="M 3.71875,4.5 C 3.6052801,4.5 3.5,4.6015523 3.5,4.71875 L 3.5,14.28125 C 3.5000002,14.398448 3.6052813,14.5 3.71875,14.5 L 5.5,14.5 C 6.0083008,14.492334 6.440125,14.87018 6.5,15.375 C 6.5,15.375 6.5264519,16.055972 6.5,16.75 C 6.5214715,16.72401 6.5728376,16.713552 6.59375,16.6875 C 7.1128586,16.040814 7.3826252,15.433927 7.78125,14.90625 C 7.9639971,14.656332 8.2529544,14.506075 8.5625,14.5 L 17.3125,14.5 C 17.425973,14.5 17.5,14.429401 17.5,14.28125 L 17.5,4.71875 C 17.5,4.570597 17.425975,4.5 17.3125,4.5 L 3.71875,4.5 z"
+       transform="translate(0,-1.0000002)" />
     <g
        id="g2057"
        inkscape:label="Layer 1"
-       transform="translate(19.12926,4.037634)" />
-    <g
-       id="g3200"
-       inkscape:label="Layer 1"
-       transform="translate(6.999999,7.000001)">
-      <g
-         style="opacity:0.8"
-         id="g1918">
-        <path
-           d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1  22.45064,19.008621 A 8.6620579 8.6620579 0 1 1  39.774755 19.008621 z"
-           sodipodi:ry="8.6620579"
-           sodipodi:rx="8.6620579"
-           sodipodi:cy="19.008621"
-           sodipodi:cx="31.112698"
-           id="path3203"
-           style="color:black;fill:url(#radialGradient3025);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
-           sodipodi:type="arc"
-           transform="matrix(0.923568,0,0,0.173169,-20.73469,11.2083)" />
-        <path
-           transform="matrix(0.538297,0,0,0.538297,-1.630177,-1.459246)"
-           style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.85770929;stroke-miterlimit:4;stroke-opacity:1"
-           d="M 31.822886,17.572527 C 31.822886,25.263442 25.580983,31.505344 17.890068,31.505344 C 10.199153,31.505344 3.9572506,25.263442 3.9572506,17.572527 C 3.9572506,9.8816117 10.199153,3.6397095 17.890068,3.6397095 C 25.580983,3.6397095 31.822886,9.8816117 31.822886,17.572527 z "
-           id="path4331" />
-        <path
-           transform="matrix(0.466524,0,0,0.466525,-0.346154,-0.198015)"
-           style="opacity:0.6;fill:url(#linearGradient4740);fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:2.14350748;stroke-miterlimit:4;stroke-opacity:1"
-           d="M 31.822886,17.572527 C 31.822886,25.263442 25.580983,31.505344 17.890068,31.505344 C 10.199153,31.505344 3.9572506,25.263442 3.9572506,17.572527 C 3.9572506,9.8816117 10.199153,3.6397095 17.890068,3.6397095 C 25.580983,3.6397095 31.822886,9.8816117 31.822886,17.572527 z "
-           id="path4333" />
-      </g>
-    </g>
+       transform="translate(42.12926,5.0376345)" />
+    <path
+       style="opacity:0.80000000000000004;fill:#c0d4ea;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9048);stroke-width:0.99999934000000001;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 21.500001,15.000006 C 21.500001,18.588004 18.588003,21.500001 15.000006,21.500001 C 11.412009,21.500001 8.5000125,18.588004 8.5000125,15.000006 C 8.5000125,11.412009 11.412009,8.5000126 15.000006,8.5000126 C 18.588003,8.5000126 21.500001,11.412009 21.500001,15.000006 z"
+       id="path8239" />
+    <path
+       style="opacity:0.47999998;fill:url(#linearGradient8270);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999875;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20.5,14.999999 C 20.5,18.036 18.036,20.5 15,20.5 C 11.963999,20.5 9.4999988,18.036 9.4999988,14.999999 C 9.4999988,11.963998 11.963999,9.4999991 15,9.4999991 C 18.036,9.4999991 20.5,11.963998 20.5,14.999999 z"
+       id="path8241" />
   </g>
 </svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/tray/22/scalable/tray-message-new.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -0,0 +1,1393 @@
+<?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="24"
+   height="24"
+   id="svg7943"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docname="tray-message-new.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/Pidgin objecten voor 2.5.0/Pidgin Polish/tray/tray-available.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs7945">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9676">
+      <stop
+         style="stop-color:#da8200;stop-opacity:1"
+         offset="0"
+         id="stop9678" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop9680" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9670">
+      <stop
+         style="stop-color:#d27c00;stop-opacity:1"
+         offset="0"
+         id="stop9672" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop9674" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8907">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1"
+         offset="0"
+         id="stop8909" />
+      <stop
+         style="stop-color:#2f5379;stop-opacity:1"
+         offset="1"
+         id="stop8911" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient29418">
+      <stop
+         id="stop29420"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop29422"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient29418"
+       id="linearGradient8799"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024686)"
+       x1="35.003674"
+       y1="10.957423"
+       x2="27.273300"
+       y2="24.143761" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8710">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8712" />
+      <stop
+         style="stop-color:#c7d9ed;stop-opacity:1"
+         offset="1"
+         id="stop8714" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient8716"
+       x1="9.9977369"
+       y1="2.5581124"
+       x2="9.9977369"
+       y2="15.90989"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3286"
+       inkscape:collect="always">
+      <stop
+         id="stop2476"
+         offset="0"
+         style="stop-color:#459000;stop-opacity:1" />
+      <stop
+         id="stop3290"
+         offset="1"
+         style="stop-color:#204300;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3286"
+       id="linearGradient7920"
+       gradientUnits="userSpaceOnUse"
+       x1="15.893391"
+       y1="15.213944"
+       x2="26.533659"
+       y2="28.579245"
+       gradientTransform="matrix(0.4668572,0,0,0.4668571,6.6478951,6.7961412)" />
+    <linearGradient
+       id="linearGradient2851">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2853" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2855" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient7918"
+       gradientUnits="userSpaceOnUse"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientTransform="matrix(0.4668572,0,0,0.4668571,6.6478951,6.7961412)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3149">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3151" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3153" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient7915"
+       gradientUnits="userSpaceOnUse"
+       x1="11.127699"
+       y1="10.823074"
+       x2="30.341434"
+       y2="31.325201"
+       gradientTransform="matrix(0.3953421,0,0,0.3953421,7.9273006,8.0528386)" />
+    <filter
+       height="1.2203122"
+       y="-0.11015608"
+       width="1.2623479"
+       x="-0.13117394"
+       id="filter3374"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur3376"
+         stdDeviation="0.19309804"
+         inkscape:collect="always" />
+    </filter>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       id="perspective7951" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="28.364647"
+       x2="18.497854"
+       y1="60.525894"
+       x1="14.193055"
+       id="linearGradient8758"
+       xlink:href="#linearGradient8752"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="22.781603"
+       x2="30.5"
+       y1="4.8871226"
+       x1="30.5"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8913"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="44.348099"
+       x2="17.997768"
+       y1="36.416954"
+       x1="17.997768"
+       id="linearGradient8834"
+       xlink:href="#linearGradient8828"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)"
+       gradientUnits="userSpaceOnUse"
+       y2="29.853554"
+       x2="19.985121"
+       y1="29.911009"
+       x1="18.5"
+       id="linearGradient8692"
+       xlink:href="#linearGradient8686"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="44.272076"
+       x2="5.5366187"
+       y1="38.950283"
+       x1="12.01321"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6573"
+       xlink:href="#linearGradient6563"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="22.781603"
+       x2="30.5"
+       y1="1.0232024"
+       x1="30.5"
+       id="linearGradient6543"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="43.5"
+       x2="5.6917014"
+       y1="43.5"
+       x1="3.3105288"
+       id="linearGradient6499"
+       xlink:href="#linearGradient6493"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.732283,0,10.65742)"
+       r="9.7225161"
+       fy="39.80859"
+       fx="15.004828"
+       cy="39.80859"
+       cx="15.004828"
+       id="radialGradient5286"
+       xlink:href="#linearGradient5280"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3800">
+      <stop
+         id="stop3802"
+         offset="0.0000000"
+         style="stop-color:#f4d9b1;stop-opacity:1.0000000;" />
+      <stop
+         id="stop3804"
+         offset="1.0000000"
+         style="stop-color:#df9725;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
+       r="8.4883642"
+       fy="2.6242435"
+       fx="7.8836637"
+       cy="2.6242435"
+       cx="7.8836637"
+       id="radialGradient25554"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient25546"
+       inkscape:collect="always">
+      <stop
+         id="stop25548"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop25550"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="8.4883642"
+       fy="0.14505707"
+       fx="7.8836741"
+       cy="0.14505707"
+       cx="7.8836741"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25568"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.4883642"
+       fy="1.5104795"
+       fx="7.8836637"
+       cy="1.5104795"
+       cx="7.8836637"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25572"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2804">
+      <stop
+         id="stop2806"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop2812" />
+      <stop
+         id="stop2808"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5280"
+       inkscape:collect="always">
+      <stop
+         id="stop5282"
+         offset="0"
+         style="stop-color:#82508e;stop-opacity:1;" />
+      <stop
+         id="stop5284"
+         offset="1"
+         style="stop-color:#82508e;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6493"
+       inkscape:collect="always">
+      <stop
+         id="stop6495"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop6497"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6537"
+       inkscape:collect="always">
+      <stop
+         id="stop6539"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6541"
+         offset="1"
+         style="stop-color:#d3e1f1;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6563"
+       inkscape:collect="always">
+      <stop
+         id="stop6565"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6567"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective75"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 24 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient8686"
+       inkscape:collect="always">
+      <stop
+         id="stop8688"
+         offset="0"
+         style="stop-color:#fdb751;stop-opacity:1" />
+      <stop
+         id="stop8690"
+         offset="1"
+         style="stop-color:#ce5c00;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8828"
+       inkscape:collect="always">
+      <stop
+         id="stop8830"
+         offset="0"
+         style="stop-color:#dc50cd;stop-opacity:1;" />
+      <stop
+         id="stop8832"
+         offset="1"
+         style="stop-color:#dc50cd;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8752"
+       inkscape:collect="always">
+      <stop
+         id="stop8754"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop8756"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8907"
+       id="linearGradient8914"
+       x1="11.531433"
+       y1="2.0188477"
+       x2="7.6475248"
+       y2="16.513792"
+       gradientUnits="userSpaceOnUse" />
+    <inkscape:perspective
+       id="perspective8012"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 8 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       y2="24.143761"
+       x2="27.273300"
+       y1="10.957423"
+       x1="35.003674"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024683)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8986"
+       xlink:href="#linearGradient29418"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8980">
+      <stop
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8982" />
+      <stop
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop8984" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="15.010952"
+       x2="16.499542"
+       y1="2.5071414"
+       x1="6.924273"
+       id="linearGradient8978"
+       xlink:href="#linearGradient8710"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient3210"
+       xlink:href="#linearGradient3204"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="18.288521"
+       x2="12.015625"
+       y1="10.420408"
+       x1="12.015625"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3200"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="13.251127"
+       x2="12.750399"
+       y1="19.780256"
+       x1="12.726427"
+       id="linearGradient3197"
+       xlink:href="#linearGradient3191"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="19.148933"
+       x2="15.742911"
+       y1="8.850009"
+       x1="13.038205"
+       id="linearGradient3189"
+       xlink:href="#linearGradient3183"
+       inkscape:collect="always" />
+    <radialGradient
+       r="6.6449099"
+       fy="10.457643"
+       fx="10.748654"
+       cy="10.457643"
+       cx="10.748654"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1364"
+       xlink:href="#linearGradient3150"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient4152"
+       xlink:href="#linearGradient4146"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="17.151861"
+       x2="12.015625"
+       y1="12.513933"
+       x1="12.015625"
+       id="linearGradient4144"
+       xlink:href="#linearGradient4138"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="20.157516"
+       x2="12.015625"
+       y1="12.904307"
+       x1="12.015625"
+       id="linearGradient4136"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3150"
+       inkscape:collect="always">
+      <stop
+         id="stop3152"
+         offset="0"
+         style="stop-color:#2e3436;stop-opacity:1;" />
+      <stop
+         id="stop3154"
+         offset="1"
+         style="stop-color:#2e3436;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4130"
+       inkscape:collect="always">
+      <stop
+         id="stop4132"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4134"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4138"
+       inkscape:collect="always">
+      <stop
+         id="stop4140"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4142"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4146"
+       inkscape:collect="always">
+      <stop
+         id="stop4148"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop4150"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective30"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3183"
+       inkscape:collect="always">
+      <stop
+         id="stop3185"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3187"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3191"
+       inkscape:collect="always">
+      <stop
+         id="stop3193"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop3195"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3204"
+       inkscape:collect="always">
+      <stop
+         id="stop3206"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3208"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3183"
+       id="linearGradient9461"
+       gradientUnits="userSpaceOnUse"
+       x1="13.038205"
+       y1="8.850009"
+       x2="15.742911"
+       y2="19.148933" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3204"
+       id="radialGradient9463"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)"
+       cx="12"
+       cy="12"
+       fx="12"
+       fy="12"
+       r="8.9687502" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4146"
+       id="radialGradient9465"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)"
+       cx="12"
+       cy="12"
+       fx="12"
+       fy="12"
+       r="8.9687502" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3191"
+       id="linearGradient9467"
+       gradientUnits="userSpaceOnUse"
+       x1="12.726427"
+       y1="19.780256"
+       x2="12.750399"
+       y2="13.251127" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4138"
+       id="linearGradient9469"
+       gradientUnits="userSpaceOnUse"
+       x1="12.015625"
+       y1="12.513933"
+       x2="12.015625"
+       y2="17.151861" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4130"
+       id="linearGradient9471"
+       gradientUnits="userSpaceOnUse"
+       x1="12.015625"
+       y1="10.420408"
+       x2="12.015625"
+       y2="18.288521" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4130"
+       id="linearGradient9474"
+       gradientUnits="userSpaceOnUse"
+       x1="12.015625"
+       y1="10.420408"
+       x2="12.015625"
+       y2="18.288521"
+       gradientTransform="matrix(0.6353791,0,0,-0.6665194,7.3754508,22.684738)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3191"
+       id="linearGradient9479"
+       gradientUnits="userSpaceOnUse"
+       x1="12.726427"
+       y1="19.780256"
+       x2="12.750399"
+       y2="13.251127"
+       gradientTransform="matrix(0.6875,0,0,0.7638888,6.78125,5.6041678)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4138"
+       id="linearGradient9481"
+       gradientUnits="userSpaceOnUse"
+       x1="12.015625"
+       y1="12.513933"
+       x2="12.015625"
+       y2="17.151861" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3183"
+       id="linearGradient9486"
+       gradientUnits="userSpaceOnUse"
+       x1="13.038205"
+       y1="8.850009"
+       x2="15.742911"
+       y2="19.148933"
+       gradientTransform="matrix(0.6842106,0,0,0.7335576,6.789476,6.1989666)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3204"
+       id="radialGradient9488"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)"
+       cx="12"
+       cy="12"
+       fx="12"
+       fy="12"
+       r="8.9687502" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4146"
+       id="radialGradient9490"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)"
+       cx="12"
+       cy="12"
+       fx="12"
+       fy="12"
+       r="8.9687502" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="10.073978"
+       x2="9.4590645"
+       y1="9.1751938"
+       x1="9.9935493"
+       id="linearGradient3404"
+       xlink:href="#linearGradient3398"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="6.9919"
+       x2="5.9832082"
+       y1="6.0080996"
+       x1="5.0167913"
+       id="linearGradient3396"
+       xlink:href="#linearGradient3390"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.6444693,0,0,1.4596828,-7.5849142,-16.236248)"
+       r="9.8412299"
+       fy="25.560368"
+       fx="11.76924"
+       cy="25.560368"
+       cx="11.76924"
+       id="radialGradient3384"
+       xlink:href="#linearGradient3378"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="19.751348"
+       x2="13.745301"
+       y1="12.357164"
+       x1="12.549859"
+       id="linearGradient3363"
+       xlink:href="#linearGradient3357"
+       inkscape:collect="always" />
+    <radialGradient
+       r="9.975256"
+       fy="16.737026"
+       fx="5.7434092"
+       cy="16.737026"
+       cx="5.7434092"
+       gradientTransform="matrix(-1.30241,1.304442,-1.325199,-1.323009,41.46631,16.11711)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3344"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <radialGradient
+       r="9.975256"
+       fy="16.737026"
+       fx="5.7434092"
+       cy="16.737026"
+       cx="5.7434092"
+       gradientTransform="matrix(-1.30241,1.304442,-1.325199,-1.323009,41.46631,16.11711)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3331"
+       xlink:href="#linearGradient3104"
+       inkscape:collect="always" />
+    <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="perspective3265" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3274"
+       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="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" />
+    <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="radialGradient3292"
+       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" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       id="perspective3186" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5269">
+      <stop
+         style="stop-color:#fcaf3e;stop-opacity:1;"
+         offset="0"
+         id="stop5271" />
+      <stop
+         style="stop-color:#fcaf3e;stop-opacity:0;"
+         offset="1"
+         id="stop5273" />
+    </linearGradient>
+    <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="5.7434092"
+       cy="16.737026"
+       fx="5.7434092"
+       fy="16.737026"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.30241,1.304442,-1.325199,-1.323009,41.46631,16.11711)" />
+    <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" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5269"
+       id="linearGradient5275"
+       x1="26.243328"
+       y1="13.001364"
+       x2="26.243328"
+       y2="10.507664"
+       gradientUnits="userSpaceOnUse" />
+    <inkscape:perspective
+       id="perspective9"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3357"
+       inkscape:collect="always">
+      <stop
+         id="stop3359"
+         offset="0"
+         style="stop-color:#dd6c00;stop-opacity:1" />
+      <stop
+         id="stop3361"
+         offset="1"
+         style="stop-color:#7c3c00;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3378"
+       inkscape:collect="always">
+      <stop
+         id="stop3380"
+         offset="0"
+         style="stop-color:#a64a00;stop-opacity:1;" />
+      <stop
+         id="stop3382"
+         offset="1"
+         style="stop-color:#a64a00;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3390"
+       inkscape:collect="always">
+      <stop
+         id="stop3392"
+         offset="0"
+         style="stop-color:#fe9906;stop-opacity:1" />
+      <stop
+         id="stop3394"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3398"
+       inkscape:collect="always">
+      <stop
+         id="stop3400"
+         offset="0"
+         style="stop-color:#fe9906;stop-opacity:1;" />
+      <stop
+         id="stop3402"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9676"
+       id="linearGradient9655"
+       gradientUnits="userSpaceOnUse"
+       x1="5.0167913"
+       y1="6.0080996"
+       x2="5.9832082"
+       y2="6.9919"
+       gradientTransform="matrix(0.9659258,0.258819,-0.258819,0.9659258,8.8697318,5.7979771)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient9660"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.30241,1.304442,-1.325199,-1.323009,41.46631,16.11711)"
+       cx="5.7434092"
+       cy="16.737026"
+       fx="5.7434092"
+       fy="16.737026"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3357"
+       id="linearGradient9662"
+       gradientUnits="userSpaceOnUse"
+       x1="12.549859"
+       y1="12.357164"
+       x2="13.745301"
+       y2="19.751348" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3378"
+       id="radialGradient9664"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.6444693,0,0,1.4596828,-7.5849142,-16.236248)"
+       cx="11.76924"
+       cy="25.560368"
+       fx="11.76924"
+       fy="25.560368"
+       r="9.8412299" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9670"
+       id="linearGradient9666"
+       gradientUnits="userSpaceOnUse"
+       x1="9.9935493"
+       y1="9.1751938"
+       x2="9.4590645"
+       y2="10.073978" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="11.098901"
+     inkscape:cx="19.791507"
+     inkscape:cy="12.903216"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1232"
+     inkscape:window-height="718"
+     inkscape:window-x="200"
+     inkscape:window-y="90"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7872"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7948">
+    <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
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       id="path29441"
+       d="M 17.120074,2.4999994 C 17.911234,2.4999994 18.5,3.0785201 18.5,4.0031284 L 18.5,13.290965 C 18.5,13.958536 17.974302,14.487782 17.311203,14.487782 L 8.5609011,14.487782 C 8.0308788,15.189395 7.1533458,17.327271 4.6806888,18.274119 C 5.7815729,16.971634 5.5012166,14.487782 5.5012166,14.487782 L 4.0268295,14.487782 C 3.363733,14.487782 2.500001,13.703698 2.4999996,13.036127 L 2.4999996,3.9394188 C 2.4999996,3.2718465 3.3000234,2.4999994 3.9631199,2.4999994 L 17.120074,2.4999994 z"
+       style="fill:url(#linearGradient8799);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8914);stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       sodipodi:nodetypes="cccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.99184585"
+       inkscape:original="M 3.71875 3.5 C 3.0556535 3.5 2.5000001 4.0511776 2.5 4.71875 L 2.5 14.28125 C 2.5000014 14.948821 3.0556534 15.5 3.71875 15.5 L 5.5 15.5 C 5.5 15.5 5.788384 17.978766 4.6875 19.28125 C 7.160157 18.334402 8.0324781 16.201613 8.5625 15.5 L 17.3125 15.5 C 17.975599 15.5 18.5 14.948821 18.5 14.28125 L 18.5 4.71875 C 18.5 4.0511777 17.975599 3.5000001 17.3125 3.5 L 3.71875 3.5 z "
+       style="fill:url(#linearGradient8716);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       id="path8805"
+       d="M 3.71875,4.5 C 3.6052801,4.5 3.5,4.6015523 3.5,4.71875 L 3.5,14.28125 C 3.5000002,14.398448 3.6052813,14.5 3.71875,14.5 L 5.5,14.5 C 6.0083008,14.492334 6.440125,14.87018 6.5,15.375 C 6.5,15.375 6.5264519,16.055972 6.5,16.75 C 6.5214715,16.72401 6.5728376,16.713552 6.59375,16.6875 C 7.1128586,16.040814 7.3826252,15.433927 7.78125,14.90625 C 7.9639971,14.656332 8.2529544,14.506075 8.5625,14.5 L 17.3125,14.5 C 17.425973,14.5 17.5,14.429401 17.5,14.28125 L 17.5,4.71875 C 17.5,4.570597 17.425975,4.5 17.3125,4.5 L 3.71875,4.5 z"
+       transform="translate(0,-1.0000002)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#edd400;fill-opacity:1;stroke:url(#linearGradient9662);stroke-width:1.42882562;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3317"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       transform="matrix(0.701612,0,0,0.701612,6.2166577,6.7941787)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.64044949;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.6625427;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3321"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       transform="matrix(0.6014884,0,0,0.6014884,7.3987337,7.8938395)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.79545456;fill:url(#radialGradient9660);fill-opacity:1;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3319"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       transform="matrix(0.6516124,0,0,0.6516124,6.8069615,7.3433261)" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:url(#linearGradient9655);stroke-width:0.99999988;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 14.431852,14.017638 C 14.146115,15.08402 13.048744,15.717588 11.982362,15.431852 C 10.91598,15.146115 10.282412,14.048744 10.568148,12.982362 C 10.853885,11.91598 11.951256,11.282412 13.017638,11.568148 C 14.08402,11.853885 14.717588,12.951256 14.431852,14.017638 z"
+       id="path3154" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2172"
+       sodipodi:cx="9.7069349"
+       sodipodi:cy="9.6526775"
+       sodipodi:rx="1.0259361"
+       sodipodi:ry="1.9413869"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       transform="matrix(0.9747194,0,0,0.5150957,3.5384624,9.0279469)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#eeeeec;fill-opacity:1;stroke:url(#linearGradient9666);stroke-width:0.70564497;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3152"
+       sodipodi:cx="9.7069349"
+       sodipodi:cy="9.6526775"
+       sodipodi:rx="1.0259361"
+       sodipodi:ry="1.9413869"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       transform="matrix(1.9494389,0,0,1.0301914,-2.4230764,3.5558945)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.75;fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:0.85073602;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2259"
+       sodipodi:cx="8.3258924"
+       sodipodi:cy="9.2232141"
+       sodipodi:rx="1.2276785"
+       sodipodi:ry="1.7410715"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       transform="matrix(1.4017776,0.3494647,-0.2648498,0.9196421,7.6361947,-0.2342213)"
+       sodipodi:start="3.5782199"
+       sodipodi:end="5.6135639"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.75;fill:none;fill-opacity:1;stroke:#ce5c00;stroke-width:0.8507362;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2261"
+       sodipodi:cx="8.3258924"
+       sodipodi:cy="9.2232141"
+       sodipodi:rx="1.2276785"
+       sodipodi:ry="1.7410715"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       transform="matrix(-1.4017777,0.3494645,0.2648498,0.9196416,21.85044,-0.2342154)"
+       sodipodi:start="3.5782199"
+       sodipodi:end="5.6135639"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3346"
+       sodipodi:cx="9.7069349"
+       sodipodi:cy="9.6526775"
+       sodipodi:rx="1.0259361"
+       sodipodi:ry="1.9413869"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       transform="matrix(0.9747195,0,0,0.5150957,6.5384613,9.0279471)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:none;fill-opacity:1;stroke:url(#radialGradient9664);stroke-width:2.38744545;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3367"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 20.502108,15.870372 A 9.975256,9.975256 0 0 1 3.0363724,15.736611"
+       transform="matrix(0.4580397,0,0,0.3830275,9.1092209,10.472445)"
+       sodipodi:start="0.51202919"
+       sodipodi:end="2.6448802"
+       sodipodi:open="true" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/tray/22/scalable/tray-offline.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -0,0 +1,1978 @@
+<?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="24"
+   height="24"
+   id="svg7943"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docname="tray-offline.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/Pidgin objecten voor 2.5.0/Pidgin Polish/tray/tray-invisible.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs7945">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9042">
+      <stop
+         style="stop-color:#8cb1d9;stop-opacity:1;"
+         offset="0"
+         id="stop9044" />
+      <stop
+         style="stop-color:#437fc2;stop-opacity:1"
+         offset="1"
+         id="stop9046" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8907">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1"
+         offset="0"
+         id="stop8909" />
+      <stop
+         style="stop-color:#2f5379;stop-opacity:1"
+         offset="1"
+         id="stop8911" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient29418">
+      <stop
+         id="stop29420"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop29422"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient29418"
+       id="linearGradient8799"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024686)"
+       x1="35.003674"
+       y1="10.957423"
+       x2="27.273300"
+       y2="24.143761" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8710">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8712" />
+      <stop
+         style="stop-color:#c7d9ed;stop-opacity:1"
+         offset="1"
+         id="stop8714" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient8716"
+       x1="9.9977369"
+       y1="2.5581124"
+       x2="9.9977369"
+       y2="15.90989"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3286"
+       inkscape:collect="always">
+      <stop
+         id="stop2476"
+         offset="0"
+         style="stop-color:#459000;stop-opacity:1" />
+      <stop
+         id="stop3290"
+         offset="1"
+         style="stop-color:#204300;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3286"
+       id="linearGradient7920"
+       gradientUnits="userSpaceOnUse"
+       x1="15.893391"
+       y1="15.213944"
+       x2="26.533659"
+       y2="28.579245"
+       gradientTransform="matrix(0.4668572,0,0,0.4668571,6.6478951,6.7961412)" />
+    <linearGradient
+       id="linearGradient2851">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2853" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2855" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient7918"
+       gradientUnits="userSpaceOnUse"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientTransform="matrix(0.4668572,0,0,0.4668571,6.6478951,6.7961412)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3149">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3151" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3153" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient7915"
+       gradientUnits="userSpaceOnUse"
+       x1="11.127699"
+       y1="10.823074"
+       x2="30.341434"
+       y2="31.325201"
+       gradientTransform="matrix(0.3953421,0,0,0.3953421,7.9273006,8.0528386)" />
+    <filter
+       height="1.2203122"
+       y="-0.11015608"
+       width="1.2623479"
+       x="-0.13117394"
+       id="filter3374"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur3376"
+         stdDeviation="0.19309804"
+         inkscape:collect="always" />
+    </filter>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       id="perspective7951" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="28.364647"
+       x2="18.497854"
+       y1="60.525894"
+       x1="14.193055"
+       id="linearGradient8758"
+       xlink:href="#linearGradient8752"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="22.781603"
+       x2="30.5"
+       y1="4.8871226"
+       x1="30.5"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8913"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="44.348099"
+       x2="17.997768"
+       y1="36.416954"
+       x1="17.997768"
+       id="linearGradient8834"
+       xlink:href="#linearGradient8828"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)"
+       gradientUnits="userSpaceOnUse"
+       y2="29.853554"
+       x2="19.985121"
+       y1="29.911009"
+       x1="18.5"
+       id="linearGradient8692"
+       xlink:href="#linearGradient8686"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="44.272076"
+       x2="5.5366187"
+       y1="38.950283"
+       x1="12.01321"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6573"
+       xlink:href="#linearGradient6563"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="22.781603"
+       x2="30.5"
+       y1="1.0232024"
+       x1="30.5"
+       id="linearGradient6543"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="43.5"
+       x2="5.6917014"
+       y1="43.5"
+       x1="3.3105288"
+       id="linearGradient6499"
+       xlink:href="#linearGradient6493"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.732283,0,10.65742)"
+       r="9.7225161"
+       fy="39.80859"
+       fx="15.004828"
+       cy="39.80859"
+       cx="15.004828"
+       id="radialGradient5286"
+       xlink:href="#linearGradient5280"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3800">
+      <stop
+         id="stop3802"
+         offset="0.0000000"
+         style="stop-color:#f4d9b1;stop-opacity:1.0000000;" />
+      <stop
+         id="stop3804"
+         offset="1.0000000"
+         style="stop-color:#df9725;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
+       r="8.4883642"
+       fy="2.6242435"
+       fx="7.8836637"
+       cy="2.6242435"
+       cx="7.8836637"
+       id="radialGradient25554"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient25546"
+       inkscape:collect="always">
+      <stop
+         id="stop25548"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop25550"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="8.4883642"
+       fy="0.14505707"
+       fx="7.8836741"
+       cy="0.14505707"
+       cx="7.8836741"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25568"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.4883642"
+       fy="1.5104795"
+       fx="7.8836637"
+       cy="1.5104795"
+       cx="7.8836637"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25572"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2804">
+      <stop
+         id="stop2806"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop2812" />
+      <stop
+         id="stop2808"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5280"
+       inkscape:collect="always">
+      <stop
+         id="stop5282"
+         offset="0"
+         style="stop-color:#82508e;stop-opacity:1;" />
+      <stop
+         id="stop5284"
+         offset="1"
+         style="stop-color:#82508e;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6493"
+       inkscape:collect="always">
+      <stop
+         id="stop6495"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop6497"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6537"
+       inkscape:collect="always">
+      <stop
+         id="stop6539"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6541"
+         offset="1"
+         style="stop-color:#d3e1f1;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6563"
+       inkscape:collect="always">
+      <stop
+         id="stop6565"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6567"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective75"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 24 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient8686"
+       inkscape:collect="always">
+      <stop
+         id="stop8688"
+         offset="0"
+         style="stop-color:#fdb751;stop-opacity:1" />
+      <stop
+         id="stop8690"
+         offset="1"
+         style="stop-color:#ce5c00;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8828"
+       inkscape:collect="always">
+      <stop
+         id="stop8830"
+         offset="0"
+         style="stop-color:#dc50cd;stop-opacity:1;" />
+      <stop
+         id="stop8832"
+         offset="1"
+         style="stop-color:#dc50cd;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8752"
+       inkscape:collect="always">
+      <stop
+         id="stop8754"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop8756"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8907"
+       id="linearGradient8914"
+       x1="11.531433"
+       y1="2.0188477"
+       x2="7.6475248"
+       y2="16.513792"
+       gradientUnits="userSpaceOnUse" />
+    <inkscape:perspective
+       id="perspective8012"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 8 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       y2="24.143761"
+       x2="27.273300"
+       y1="10.957423"
+       x1="35.003674"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024683)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8986"
+       xlink:href="#linearGradient29418"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8980">
+      <stop
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8982" />
+      <stop
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop8984" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="15.010952"
+       x2="16.499542"
+       y1="2.5071414"
+       x1="6.924273"
+       id="linearGradient8978"
+       xlink:href="#linearGradient8710"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient3210"
+       xlink:href="#linearGradient3204"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="18.288521"
+       x2="12.015625"
+       y1="10.420408"
+       x1="12.015625"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3200"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="13.251127"
+       x2="12.750399"
+       y1="19.780256"
+       x1="12.726427"
+       id="linearGradient3197"
+       xlink:href="#linearGradient3191"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="19.148933"
+       x2="15.742911"
+       y1="8.850009"
+       x1="13.038205"
+       id="linearGradient3189"
+       xlink:href="#linearGradient3183"
+       inkscape:collect="always" />
+    <radialGradient
+       r="6.6449099"
+       fy="10.457643"
+       fx="10.748654"
+       cy="10.457643"
+       cx="10.748654"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1364"
+       xlink:href="#linearGradient3150"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient4152"
+       xlink:href="#linearGradient4146"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="17.151861"
+       x2="12.015625"
+       y1="12.513933"
+       x1="12.015625"
+       id="linearGradient4144"
+       xlink:href="#linearGradient4138"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="20.157516"
+       x2="12.015625"
+       y1="12.904307"
+       x1="12.015625"
+       id="linearGradient4136"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3150"
+       inkscape:collect="always">
+      <stop
+         id="stop3152"
+         offset="0"
+         style="stop-color:#2e3436;stop-opacity:1;" />
+      <stop
+         id="stop3154"
+         offset="1"
+         style="stop-color:#2e3436;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4130"
+       inkscape:collect="always">
+      <stop
+         id="stop4132"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4134"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4138"
+       inkscape:collect="always">
+      <stop
+         id="stop4140"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4142"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4146"
+       inkscape:collect="always">
+      <stop
+         id="stop4148"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop4150"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective30"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3183"
+       inkscape:collect="always">
+      <stop
+         id="stop3185"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3187"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3191"
+       inkscape:collect="always">
+      <stop
+         id="stop3193"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop3195"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3204"
+       inkscape:collect="always">
+      <stop
+         id="stop3206"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3208"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3142"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3144"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3146">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3148" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3150" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3164"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3166"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient3168"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="11.024895"
+       x2="10.623409"
+       y1="2.7991772"
+       x1="4.5264969"
+       id="linearGradient3170"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       id="linearGradient3172"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3174">
+      <stop
+         id="stop3176"
+         offset="0"
+         style="stop-color:#73d216;stop-opacity:1;" />
+      <stop
+         id="stop3178"
+         offset="1"
+         style="stop-color:#5ca911;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       y2="40.032413"
+       x2="17.890068"
+       y1="8.0617304"
+       x1="17.890068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3180"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3194"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient3196"
+       gradientUnits="userSpaceOnUse"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3198"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       y2="48.674999"
+       x2="15.535398"
+       y1="1.8014067"
+       x1="15.535398"
+       gradientTransform="matrix(0.37378,0,0,0.375227,5.518529,18.82427)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3084"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3082"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient3022"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3030"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2186"
+       id="linearGradient2194"
+       x1="6.2538223"
+       y1="3.7276814"
+       x2="14.441897"
+       y2="19.159578"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2239"
+       id="linearGradient3045"
+       x1="8.7505674"
+       y1="4.5934086"
+       x2="31.18539"
+       y2="39.834526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3047"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3049">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3051" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3053" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3067"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3069"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient2006"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient2014"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2186"
+       id="linearGradient2022"
+       x1="9.2594385"
+       y1="-1.5641226"
+       x2="11.226587"
+       y2="17.697369"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2239"
+       id="linearGradient2030"
+       x1="8.7505674"
+       y1="4.5934086"
+       x2="31.18539"
+       y2="39.834526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2032"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient2034">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2036" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2038" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient2053"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2055"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2898">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop2900" />
+      <stop
+         style="stop-color:white;stop-opacity:0;"
+         offset="1"
+         id="stop2902" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3044"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3046">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3048" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3050" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3064"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3066"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient2904"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient2818"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="11.024895"
+       x2="10.623409"
+       y1="2.7991772"
+       x1="4.5264969"
+       id="linearGradient2810"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       id="linearGradient2963"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2951">
+      <stop
+         id="stop2953"
+         offset="0"
+         style="stop-color:#73d216;stop-opacity:1;" />
+      <stop
+         id="stop2955"
+         offset="1"
+         style="stop-color:#5ca911;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       y2="40.032413"
+       x2="17.890068"
+       y1="8.0617304"
+       x1="17.890068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2949"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3005"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient3007"
+       gradientUnits="userSpaceOnUse"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="10.018044"
+       x2="10.043059"
+       y1="1.3319674"
+       x1="1.5769236"
+       id="linearGradient2995"
+       xlink:href="#linearGradient2989"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2084"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2046"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient2048">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2050" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2052" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2060"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient2062"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient2064"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2812">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop2814" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop2816" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2269"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient8152">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop8154" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop8156" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2857"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       y2="14.895812"
+       x2="11.802028"
+       y1="1.9986149"
+       x1="11.802028"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6606"
+       xlink:href="#linearGradient2225"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48.674999"
+       x2="15.535398"
+       y1="1.8014067"
+       x1="15.535398"
+       gradientTransform="matrix(0.37378,0,0,0.375227,17.64779,15.86312)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2339"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="17.697369"
+       x2="11.226587"
+       y1="-5.4832759"
+       x1="11.226587"
+       gradientTransform="matrix(0.529942,0,0,0.53199,17.26643,15.48536)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2337"
+       xlink:href="#linearGradient2186"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="33.483475"
+       x2="15.522223"
+       y1="1.5657365"
+       x1="15.602553"
+       gradientTransform="matrix(0.371983,0,0,0.372254,2.539836,8.539528)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1357"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2239">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2241" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2243" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.626667,0,6.566431)"
+       r="6.3436799"
+       fy="17.588654"
+       fx="11.756953"
+       cy="17.588654"
+       cx="11.756953"
+       id="radialGradient2266"
+       xlink:href="#linearGradient2260"
+       inkscape:collect="always" />
+    <radialGradient
+       r="7.0034069"
+       fy="8.963316"
+       fx="9.9988937"
+       cy="8.963316"
+       cx="9.9988937"
+       gradientTransform="matrix(-2.522332,-1.518129e-16,-1.517788e-16,2.521765,40.1904,-21.80154)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2225"
+       xlink:href="#linearGradient2200"
+       inkscape:collect="always" />
+    <radialGradient
+       r="7.0034069"
+       fy="8.963316"
+       fx="9.9988937"
+       cy="8.963316"
+       cx="9.9988937"
+       gradientTransform="matrix(-2.522332,-1.518129e-16,-1.517788e-16,2.521765,40.1904,-21.83521)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2216"
+       xlink:href="#linearGradient2200"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2200"
+       inkscape:collect="always">
+      <stop
+         id="stop2202"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1;" />
+      <stop
+         id="stop2204"
+         offset="1"
+         style="stop-color:#d3d7cf;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient3822"
+       xlink:href="#linearGradient3816"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3816"
+       inkscape:collect="always">
+      <stop
+         id="stop3818"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1;" />
+      <stop
+         id="stop3820"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2260"
+       inkscape:collect="always">
+      <stop
+         id="stop2262"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop2264"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2186"
+       inkscape:collect="always">
+      <stop
+         id="stop2188"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop2190"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="5"
+       fy="44"
+       fx="1"
+       cy="44"
+       cx="1"
+       gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2827"
+       xlink:href="#linearGradient2781"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2781"
+       inkscape:collect="always">
+      <stop
+         id="stop2783"
+         offset="0"
+         style="stop-color:black;stop-opacity:1;" />
+      <stop
+         id="stop2785"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="5"
+       fy="44"
+       fx="1"
+       cy="44"
+       cx="1"
+       gradientTransform="matrix(2,0,0,0.8,36,8.8)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2829"
+       xlink:href="#linearGradient2781"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="40"
+       x2="21.875"
+       y1="48.000977"
+       x1="21.875"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2831"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8108">
+      <stop
+         id="stop8110"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop8112" />
+      <stop
+         id="stop8114"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       y2="24.143761"
+       x2="27.273300"
+       y1="10.957423"
+       x1="35.003674"
+       gradientTransform="matrix(-0.977228,0,0,0.995878,50.60272,9.115637)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient29443"
+       xlink:href="#linearGradient29418"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8101">
+      <stop
+         id="stop8103"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop8105"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2225"
+       inkscape:collect="always">
+      <stop
+         id="stop2227"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop2229"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2989"
+       inkscape:collect="always">
+      <stop
+         id="stop2991"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop2993"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective8092"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient8251"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8253"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient8259"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8261"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8264"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138"
+       gradientTransform="matrix(0.4043208,0,0,0.4043216,7.7666799,7.8950675)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8270"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3947516,0,0,0.3947515,7.9378683,8.0632187)"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9042"
+       id="linearGradient9048"
+       x1="15.562512"
+       y1="16.125008"
+       x2="17.500002"
+       y2="20.375008"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="28.579245"
+       x2="26.533659"
+       y1="15.213944"
+       x1="15.893391"
+       id="linearGradient3292"
+       xlink:href="#linearGradient3286"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3025"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="11.024895"
+       x2="10.623409"
+       y1="2.7991772"
+       x1="4.5264969"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8205"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient8203"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8189"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient8183">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop8185" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop8187" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient8181"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient8179"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient8177"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       r="0.8078171"
+       fy="6.9473476"
+       fx="4.8470273"
+       cy="6.9473476"
+       cx="4.8470273"
+       id="radialGradient8175"
+       xlink:href="#linearGradient2898"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       id="linearGradient8173"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)"
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient8171"
+       xlink:href="#linearGradient3816"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8153">
+      <stop
+         id="stop8155"
+         offset="0"
+         style="stop-color:#73d216;stop-opacity:1;" />
+      <stop
+         id="stop8157"
+         offset="1"
+         style="stop-color:#5ca911;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       y2="40.032413"
+       x2="17.890068"
+       y1="8.0617304"
+       x1="17.890068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8151"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="31.325201"
+       x2="30.341434"
+       y1="10.823074"
+       x1="11.127699"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4740"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4738"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective43"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 8 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient8224"
+       gradientUnits="userSpaceOnUse"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3286"
+       id="linearGradient8226"
+       gradientUnits="userSpaceOnUse"
+       x1="15.893391"
+       y1="15.213944"
+       x2="26.533659"
+       y2="28.579245" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8228"
+       gradientUnits="userSpaceOnUse"
+       x1="11.127699"
+       y1="10.823074"
+       x2="30.341434"
+       y2="31.325201" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8232"
+       gradientUnits="userSpaceOnUse"
+       x1="11.127699"
+       y1="10.823074"
+       x2="30.341434"
+       y2="31.325201"
+       gradientTransform="matrix(0.3947515,0,0,0.3947515,7.9378683,8.0632187)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient8235"
+       gradientUnits="userSpaceOnUse"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientTransform="matrix(0.466769,0,0,0.466769,6.6483659,6.7965842)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3286"
+       id="linearGradient8237"
+       gradientUnits="userSpaceOnUse"
+       x1="15.893391"
+       y1="15.213944"
+       x2="26.533659"
+       y2="28.579245"
+       gradientTransform="matrix(0.466769,0,0,0.466769,6.6483659,6.7965842)" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="-4.1349444"
+       x2="-3.3852992"
+       y1="8.6799088"
+       x1="6.8490844"
+       id="linearGradient3309"
+       xlink:href="#linearGradient3303"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="13.821809"
+       x2="12.060304"
+       y1="3.565635"
+       x1="4.8374491"
+       id="linearGradient3301"
+       xlink:href="#linearGradient3295"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="4.3450422"
+       x2="6.8097677"
+       y1="14.69435"
+       x1="14.345539"
+       id="linearGradient3281"
+       xlink:href="#linearGradient3275"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       id="linearGradient8204"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)"
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient8202"
+       xlink:href="#linearGradient3816"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8184">
+      <stop
+         id="stop8186"
+         offset="0"
+         style="stop-color:#73d216;stop-opacity:1;" />
+      <stop
+         id="stop8188"
+         offset="1"
+         style="stop-color:#5ca911;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       y2="40.032413"
+       x2="17.890068"
+       y1="8.0617304"
+       x1="17.890068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8182"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)"
+       gradientUnits="userSpaceOnUse"
+       y2="33.483475"
+       x2="15.522223"
+       y1="1.5657365"
+       x1="15.602553"
+       id="linearGradient2245"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)"
+       gradientUnits="userSpaceOnUse"
+       y2="17.697369"
+       x2="11.226587"
+       y1="-5.4832759"
+       x1="11.226587"
+       id="linearGradient8172"
+       xlink:href="#linearGradient2186"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective34"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 8 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3275"
+       inkscape:collect="always">
+      <stop
+         id="stop3277"
+         offset="0"
+         style="stop-color:#2e3436;stop-opacity:1;" />
+      <stop
+         id="stop3279"
+         offset="1"
+         style="stop-color:#61635f;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3295"
+       inkscape:collect="always">
+      <stop
+         id="stop3297"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1" />
+      <stop
+         id="stop3299"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3303"
+       inkscape:collect="always">
+      <stop
+         id="stop3305"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop3307"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3295"
+       id="linearGradient8220"
+       gradientUnits="userSpaceOnUse"
+       x1="4.8374491"
+       y1="3.565635"
+       x2="12.060304"
+       y2="13.821809" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3275"
+       id="linearGradient8222"
+       gradientUnits="userSpaceOnUse"
+       x1="14.345539"
+       y1="14.69435"
+       x2="6.8097677"
+       y2="4.3450422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3303"
+       id="linearGradient8225"
+       gradientUnits="userSpaceOnUse"
+       x1="6.8490844"
+       y1="8.6799088"
+       x2="-3.3852992"
+       y2="-4.1349444" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3295"
+       id="linearGradient8231"
+       gradientUnits="userSpaceOnUse"
+       x1="4.8374491"
+       y1="3.565635"
+       x2="12.060304"
+       y2="13.821809"
+       gradientTransform="matrix(0.8705935,0,0,0.8662612,8.0664838,8.0686285)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3275"
+       id="linearGradient8233"
+       gradientUnits="userSpaceOnUse"
+       x1="14.345539"
+       y1="14.69435"
+       x2="6.8097677"
+       y2="4.3450422"
+       gradientTransform="matrix(0.8705935,0,0,0.8662612,8.0664838,8.0686285)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3303"
+       id="linearGradient8236"
+       gradientUnits="userSpaceOnUse"
+       x1="6.8490844"
+       y1="8.6799088"
+       x2="-3.3852992"
+       y2="-4.1349444" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.627417"
+     inkscape:cx="15.739764"
+     inkscape:cy="11.526219"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7872"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7948">
+    <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
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       id="path29441"
+       d="M 17.120074,2.4999994 C 17.911234,2.4999994 18.5,3.0785201 18.5,4.0031284 L 18.5,13.290965 C 18.5,13.958536 17.974302,14.487782 17.311203,14.487782 L 8.5609011,14.487782 C 8.0308788,15.189395 7.1533458,17.327271 4.6806888,18.274119 C 5.7815729,16.971634 5.5012166,14.487782 5.5012166,14.487782 L 4.0268295,14.487782 C 3.363733,14.487782 2.500001,13.703698 2.4999996,13.036127 L 2.4999996,3.9394188 C 2.4999996,3.2718465 3.3000234,2.4999994 3.9631199,2.4999994 L 17.120074,2.4999994 z"
+       style="fill:url(#linearGradient8799);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8914);stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       sodipodi:nodetypes="cccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.99184585"
+       inkscape:original="M 3.71875 3.5 C 3.0556535 3.5 2.5000001 4.0511776 2.5 4.71875 L 2.5 14.28125 C 2.5000014 14.948821 3.0556534 15.5 3.71875 15.5 L 5.5 15.5 C 5.5 15.5 5.788384 17.978766 4.6875 19.28125 C 7.160157 18.334402 8.0324781 16.201613 8.5625 15.5 L 17.3125 15.5 C 17.975599 15.5 18.5 14.948821 18.5 14.28125 L 18.5 4.71875 C 18.5 4.0511777 17.975599 3.5000001 17.3125 3.5 L 3.71875 3.5 z "
+       style="fill:url(#linearGradient8716);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       id="path8805"
+       d="M 3.71875,4.5 C 3.6052801,4.5 3.5,4.6015523 3.5,4.71875 L 3.5,14.28125 C 3.5000002,14.398448 3.6052813,14.5 3.71875,14.5 L 5.5,14.5 C 6.0083008,14.492334 6.440125,14.87018 6.5,15.375 C 6.5,15.375 6.5264519,16.055972 6.5,16.75 C 6.5214715,16.72401 6.5728376,16.713552 6.59375,16.6875 C 7.1128586,16.040814 7.3826252,15.433927 7.78125,14.90625 C 7.9639971,14.656332 8.2529544,14.506075 8.5625,14.5 L 17.3125,14.5 C 17.425973,14.5 17.5,14.429401 17.5,14.28125 L 17.5,4.71875 C 17.5,4.570597 17.425975,4.5 17.3125,4.5 L 3.71875,4.5 z"
+       transform="translate(0,-1.0000002)" />
+    <g
+       id="g2057"
+       inkscape:label="Layer 1"
+       transform="translate(42.12926,5.0376345)" />
+    <path
+       style="fill:url(#linearGradient8231);fill-opacity:1;stroke:url(#linearGradient8233);stroke-width:0.99999833;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 19.651536,19.596035 C 17.100596,22.134283 12.96037,22.134712 10.409961,19.596995 C 7.8595522,17.059275 7.8599841,12.939651 10.410925,10.401404 C 12.961866,7.8631562 17.102091,7.8627263 19.6525,10.400445 C 22.202909,12.938163 22.202478,17.057788 19.651536,19.596035 z"
+       id="path2187" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0137641"
+       inkscape:original="M 15.03125 8.5 C 13.358525 8.5001736 11.681721 9.1371259 10.40625 10.40625 C 7.8553091 12.944497 7.8558415 17.056031 10.40625 19.59375 C 12.956659 22.131467 17.105309 22.131998 19.65625 19.59375 C 22.207192 17.055503 22.206659 12.943968 19.65625 10.40625 C 18.381045 9.1373906 16.703975 8.4998264 15.03125 8.5 z "
+       xlink:href="#path2187"
+       style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#linearGradient8236);stroke-width:1.00200045;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2215"
+       inkscape:href="#path2187"
+       d="M 15.03125,9.5 C 13.615807,9.5001469 12.205781,10.049597 11.125,11.125 C 8.9621217,13.277115 8.9626347,16.723393 11.125,18.875 C 13.285811,21.025058 16.776176,21.02557 18.9375,18.875 C 21.100379,16.722885 21.099866,13.276605 18.9375,11.125 C 17.85696,10.049837 16.446305,9.4998531 15.03125,9.5 z"
+       transform="matrix(-0.9948961,0,0,-1.0011165,29.954532,30.010608)" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#555753;stroke-width:1.00000036;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 18.389146,11.620482 C 17.839918,11.072738 17.23793,10.863672 16.688702,11.411416 L 15.036388,13.059262 L 13.384074,11.411416 C 12.834845,10.863672 12.197152,11.142764 11.647923,11.690508 C 11.098694,12.238251 10.852068,12.841088 11.401297,13.388831 L 13.053611,15.036678 L 11.401297,16.684524 C 10.852068,17.232268 11.096483,17.934576 11.645712,18.482321 C 12.194941,19.030063 12.834845,19.209683 13.384074,18.66194 L 15.036388,17.014093 L 16.688702,18.66194 C 17.23793,19.209683 17.910224,19.0331 18.459452,18.485357 C 19.008681,17.937612 19.220707,17.232268 18.671478,16.684524 L 17.019165,15.036678 L 18.671478,13.388832 C 19.220707,12.841088 18.938375,12.168226 18.389146,11.620482 z"
+       id="rect2920"
+       sodipodi:nodetypes="ccccscccscccscccc" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/tray/22/scalable/tray-online.svg	Fri Aug 15 03:41:24 2008 +0000
@@ -0,0 +1,1791 @@
+<?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="24"
+   height="24"
+   id="svg7943"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docname="tray-available.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/Pidgin objecten voor 2.5.0/Pidgin Polish/tray/tray-invisible.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs7945">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9042">
+      <stop
+         style="stop-color:#8cb1d9;stop-opacity:1;"
+         offset="0"
+         id="stop9044" />
+      <stop
+         style="stop-color:#437fc2;stop-opacity:1"
+         offset="1"
+         id="stop9046" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8907">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1"
+         offset="0"
+         id="stop8909" />
+      <stop
+         style="stop-color:#2f5379;stop-opacity:1"
+         offset="1"
+         id="stop8911" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient29418">
+      <stop
+         id="stop29420"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop29422"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient29418"
+       id="linearGradient8799"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024686)"
+       x1="35.003674"
+       y1="10.957423"
+       x2="27.273300"
+       y2="24.143761" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8710">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8712" />
+      <stop
+         style="stop-color:#c7d9ed;stop-opacity:1"
+         offset="1"
+         id="stop8714" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8710"
+       id="linearGradient8716"
+       x1="9.9977369"
+       y1="2.5581124"
+       x2="9.9977369"
+       y2="15.90989"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3286"
+       inkscape:collect="always">
+      <stop
+         id="stop2476"
+         offset="0"
+         style="stop-color:#459000;stop-opacity:1" />
+      <stop
+         id="stop3290"
+         offset="1"
+         style="stop-color:#204300;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3286"
+       id="linearGradient7920"
+       gradientUnits="userSpaceOnUse"
+       x1="15.893391"
+       y1="15.213944"
+       x2="26.533659"
+       y2="28.579245"
+       gradientTransform="matrix(0.4668572,0,0,0.4668571,6.6478951,6.7961412)" />
+    <linearGradient
+       id="linearGradient2851">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2853" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2855" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient7918"
+       gradientUnits="userSpaceOnUse"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientTransform="matrix(0.4668572,0,0,0.4668571,6.6478951,6.7961412)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3149">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3151" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3153" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient7915"
+       gradientUnits="userSpaceOnUse"
+       x1="11.127699"
+       y1="10.823074"
+       x2="30.341434"
+       y2="31.325201"
+       gradientTransform="matrix(0.3953421,0,0,0.3953421,7.9273006,8.0528386)" />
+    <filter
+       height="1.2203122"
+       y="-0.11015608"
+       width="1.2623479"
+       x="-0.13117394"
+       id="filter3374"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur3376"
+         stdDeviation="0.19309804"
+         inkscape:collect="always" />
+    </filter>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       id="perspective7951" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="28.364647"
+       x2="18.497854"
+       y1="60.525894"
+       x1="14.193055"
+       id="linearGradient8758"
+       xlink:href="#linearGradient8752"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="22.781603"
+       x2="30.5"
+       y1="4.8871226"
+       x1="30.5"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8913"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="44.348099"
+       x2="17.997768"
+       y1="36.416954"
+       x1="17.997768"
+       id="linearGradient8834"
+       xlink:href="#linearGradient8828"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)"
+       gradientUnits="userSpaceOnUse"
+       y2="29.853554"
+       x2="19.985121"
+       y1="29.911009"
+       x1="18.5"
+       id="linearGradient8692"
+       xlink:href="#linearGradient8686"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="44.272076"
+       x2="5.5366187"
+       y1="38.950283"
+       x1="12.01321"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6573"
+       xlink:href="#linearGradient6563"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="22.781603"
+       x2="30.5"
+       y1="1.0232024"
+       x1="30.5"
+       id="linearGradient6543"
+       xlink:href="#linearGradient6537"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="43.5"
+       x2="5.6917014"
+       y1="43.5"
+       x1="3.3105288"
+       id="linearGradient6499"
+       xlink:href="#linearGradient6493"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.732283,0,10.65742)"
+       r="9.7225161"
+       fy="39.80859"
+       fx="15.004828"
+       cy="39.80859"
+       cx="15.004828"
+       id="radialGradient5286"
+       xlink:href="#linearGradient5280"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3800">
+      <stop
+         id="stop3802"
+         offset="0.0000000"
+         style="stop-color:#f4d9b1;stop-opacity:1.0000000;" />
+      <stop
+         id="stop3804"
+         offset="1.0000000"
+         style="stop-color:#df9725;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.131317,0,0,1.125313,-1.035262,-0.301139)"
+       r="8.4883642"
+       fy="2.6242435"
+       fx="7.8836637"
+       cy="2.6242435"
+       cx="7.8836637"
+       id="radialGradient25554"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient25546"
+       inkscape:collect="always">
+      <stop
+         id="stop25548"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop25550"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="8.4883642"
+       fy="0.14505707"
+       fx="7.8836741"
+       cy="0.14505707"
+       cx="7.8836741"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25568"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.4883642"
+       fy="1.5104795"
+       fx="7.8836637"
+       cy="1.5104795"
+       cx="7.8836637"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient25572"
+       xlink:href="#linearGradient25546"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2804">
+      <stop
+         id="stop2806"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop2812" />
+      <stop
+         id="stop2808"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5280"
+       inkscape:collect="always">
+      <stop
+         id="stop5282"
+         offset="0"
+         style="stop-color:#82508e;stop-opacity:1;" />
+      <stop
+         id="stop5284"
+         offset="1"
+         style="stop-color:#82508e;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6493"
+       inkscape:collect="always">
+      <stop
+         id="stop6495"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop6497"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6537"
+       inkscape:collect="always">
+      <stop
+         id="stop6539"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6541"
+         offset="1"
+         style="stop-color:#d3e1f1;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6563"
+       inkscape:collect="always">
+      <stop
+         id="stop6565"
+         offset="0"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         id="stop6567"
+         offset="1"
+         style="stop-color:white;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective75"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 24 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient8686"
+       inkscape:collect="always">
+      <stop
+         id="stop8688"
+         offset="0"
+         style="stop-color:#fdb751;stop-opacity:1" />
+      <stop
+         id="stop8690"
+         offset="1"
+         style="stop-color:#ce5c00;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8828"
+       inkscape:collect="always">
+      <stop
+         id="stop8830"
+         offset="0"
+         style="stop-color:#dc50cd;stop-opacity:1;" />
+      <stop
+         id="stop8832"
+         offset="1"
+         style="stop-color:#dc50cd;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8752"
+       inkscape:collect="always">
+      <stop
+         id="stop8754"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop8756"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8907"
+       id="linearGradient8914"
+       x1="11.531433"
+       y1="2.0188477"
+       x2="7.6475248"
+       y2="16.513792"
+       gradientUnits="userSpaceOnUse" />
+    <inkscape:perspective
+       id="perspective8012"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 8 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       y2="24.143761"
+       x2="27.273300"
+       y1="10.957423"
+       x1="35.003674"
+       gradientTransform="matrix(-0.6236299,0,0,0.6278379,30.602334,-1.5024683)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8986"
+       xlink:href="#linearGradient29418"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8980">
+      <stop
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8982" />
+      <stop
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop8984" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="15.010952"
+       x2="16.499542"
+       y1="2.5071414"
+       x1="6.924273"
+       id="linearGradient8978"
+       xlink:href="#linearGradient8710"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient3210"
+       xlink:href="#linearGradient3204"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="18.288521"
+       x2="12.015625"
+       y1="10.420408"
+       x1="12.015625"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3200"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="13.251127"
+       x2="12.750399"
+       y1="19.780256"
+       x1="12.726427"
+       id="linearGradient3197"
+       xlink:href="#linearGradient3191"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="19.148933"
+       x2="15.742911"
+       y1="8.850009"
+       x1="13.038205"
+       id="linearGradient3189"
+       xlink:href="#linearGradient3183"
+       inkscape:collect="always" />
+    <radialGradient
+       r="6.6449099"
+       fy="10.457643"
+       fx="10.748654"
+       cy="10.457643"
+       cx="10.748654"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient1364"
+       xlink:href="#linearGradient3150"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient4152"
+       xlink:href="#linearGradient4146"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="17.151861"
+       x2="12.015625"
+       y1="12.513933"
+       x1="12.015625"
+       id="linearGradient4144"
+       xlink:href="#linearGradient4138"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="20.157516"
+       x2="12.015625"
+       y1="12.904307"
+       x1="12.015625"
+       id="linearGradient4136"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3150"
+       inkscape:collect="always">
+      <stop
+         id="stop3152"
+         offset="0"
+         style="stop-color:#2e3436;stop-opacity:1;" />
+      <stop
+         id="stop3154"
+         offset="1"
+         style="stop-color:#2e3436;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4130"
+       inkscape:collect="always">
+      <stop
+         id="stop4132"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4134"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4138"
+       inkscape:collect="always">
+      <stop
+         id="stop4140"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4142"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4146"
+       inkscape:collect="always">
+      <stop
+         id="stop4148"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop4150"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective30"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       id="linearGradient3183"
+       inkscape:collect="always">
+      <stop
+         id="stop3185"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3187"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3191"
+       inkscape:collect="always">
+      <stop
+         id="stop3193"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop3195"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3204"
+       inkscape:collect="always">
+      <stop
+         id="stop3206"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3208"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3142"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3144"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3146">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3148" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3150" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3164"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3166"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient3168"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="11.024895"
+       x2="10.623409"
+       y1="2.7991772"
+       x1="4.5264969"
+       id="linearGradient3170"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       id="linearGradient3172"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3174">
+      <stop
+         id="stop3176"
+         offset="0"
+         style="stop-color:#73d216;stop-opacity:1;" />
+      <stop
+         id="stop3178"
+         offset="1"
+         style="stop-color:#5ca911;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       y2="40.032413"
+       x2="17.890068"
+       y1="8.0617304"
+       x1="17.890068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3180"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3194"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient3196"
+       gradientUnits="userSpaceOnUse"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3198"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       y2="48.674999"
+       x2="15.535398"
+       y1="1.8014067"
+       x1="15.535398"
+       gradientTransform="matrix(0.37378,0,0,0.375227,5.518529,18.82427)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3084"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3082"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient3022"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3030"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2186"
+       id="linearGradient2194"
+       x1="6.2538223"
+       y1="3.7276814"
+       x2="14.441897"
+       y2="19.159578"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2239"
+       id="linearGradient3045"
+       x1="8.7505674"
+       y1="4.5934086"
+       x2="31.18539"
+       y2="39.834526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3047"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3049">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3051" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3053" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3067"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3069"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient2006"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient2014"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2186"
+       id="linearGradient2022"
+       x1="9.2594385"
+       y1="-1.5641226"
+       x2="11.226587"
+       y2="17.697369"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.684526,0,0,0.687171,-0.20455,-0.253325)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2239"
+       id="linearGradient2030"
+       x1="8.7505674"
+       y1="4.5934086"
+       x2="31.18539"
+       y2="39.834526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.482882,0,0,0.482874,0.269812,0.26982)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2032"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient2034">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2036" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2038" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient2053"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2055"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2898">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop2900" />
+      <stop
+         style="stop-color:white;stop-opacity:0;"
+         offset="1"
+         id="stop2902" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient3044"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient3046">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop3048" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop3050" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient3064"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient3066"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2898"
+       id="radialGradient2904"
+       cx="4.8470273"
+       cy="6.9473476"
+       fx="4.8470273"
+       fy="6.9473476"
+       r="0.8078171"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient2818"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="11.024895"
+       x2="10.623409"
+       y1="2.7991772"
+       x1="4.5264969"
+       id="linearGradient2810"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       id="linearGradient2963"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2951">
+      <stop
+         id="stop2953"
+         offset="0"
+         style="stop-color:#73d216;stop-opacity:1;" />
+      <stop
+         id="stop2955"
+         offset="1"
+         style="stop-color:#5ca911;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       y2="40.032413"
+       x2="17.890068"
+       y1="8.0617304"
+       x1="17.890068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2949"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient3005"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient3007"
+       gradientUnits="userSpaceOnUse"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="10.018044"
+       x2="10.043059"
+       y1="1.3319674"
+       x1="1.5769236"
+       id="linearGradient2995"
+       xlink:href="#linearGradient2989"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2084"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2046"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient2048">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop2050" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop2052" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2060"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient2062"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient2064"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2812">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop2814" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop2816" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient2269"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient8152">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop8154" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop8156" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient2857"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       y2="14.895812"
+       x2="11.802028"
+       y1="1.9986149"
+       x1="11.802028"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient6606"
+       xlink:href="#linearGradient2225"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="48.674999"
+       x2="15.535398"
+       y1="1.8014067"
+       x1="15.535398"
+       gradientTransform="matrix(0.37378,0,0,0.375227,17.64779,15.86312)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2339"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="17.697369"
+       x2="11.226587"
+       y1="-5.4832759"
+       x1="11.226587"
+       gradientTransform="matrix(0.529942,0,0,0.53199,17.26643,15.48536)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2337"
+       xlink:href="#linearGradient2186"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="33.483475"
+       x2="15.522223"
+       y1="1.5657365"
+       x1="15.602553"
+       gradientTransform="matrix(0.371983,0,0,0.372254,2.539836,8.539528)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient1357"
+       xlink:href="#linearGradient2239"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2239">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2241" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2243" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.626667,0,6.566431)"
+       r="6.3436799"
+       fy="17.588654"
+       fx="11.756953"
+       cy="17.588654"
+       cx="11.756953"
+       id="radialGradient2266"
+       xlink:href="#linearGradient2260"
+       inkscape:collect="always" />
+    <radialGradient
+       r="7.0034069"
+       fy="8.963316"
+       fx="9.9988937"
+       cy="8.963316"
+       cx="9.9988937"
+       gradientTransform="matrix(-2.522332,-1.518129e-16,-1.517788e-16,2.521765,40.1904,-21.80154)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2225"
+       xlink:href="#linearGradient2200"
+       inkscape:collect="always" />
+    <radialGradient
+       r="7.0034069"
+       fy="8.963316"
+       fx="9.9988937"
+       cy="8.963316"
+       cx="9.9988937"
+       gradientTransform="matrix(-2.522332,-1.518129e-16,-1.517788e-16,2.521765,40.1904,-21.83521)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2216"
+       xlink:href="#linearGradient2200"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2200"
+       inkscape:collect="always">
+      <stop
+         id="stop2202"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1;" />
+      <stop
+         id="stop2204"
+         offset="1"
+         style="stop-color:#d3d7cf;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient3822"
+       xlink:href="#linearGradient3816"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient3816"
+       inkscape:collect="always">
+      <stop
+         id="stop3818"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1;" />
+      <stop
+         id="stop3820"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2260"
+       inkscape:collect="always">
+      <stop
+         id="stop2262"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop2264"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2186"
+       inkscape:collect="always">
+      <stop
+         id="stop2188"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop2190"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="5"
+       fy="44"
+       fx="1"
+       cy="44"
+       cx="1"
+       gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2827"
+       xlink:href="#linearGradient2781"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient2781"
+       inkscape:collect="always">
+      <stop
+         id="stop2783"
+         offset="0"
+         style="stop-color:black;stop-opacity:1;" />
+      <stop
+         id="stop2785"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <radialGradient
+       r="5"
+       fy="44"
+       fx="1"
+       cy="44"
+       cx="1"
+       gradientTransform="matrix(2,0,0,0.8,36,8.8)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient2829"
+       xlink:href="#linearGradient2781"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="40"
+       x2="21.875"
+       y1="48.000977"
+       x1="21.875"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient2831"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8108">
+      <stop
+         id="stop8110"
+         offset="0"
+         style="stop-color:black;stop-opacity:0;" />
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0.5"
+         id="stop8112" />
+      <stop
+         id="stop8114"
+         offset="1"
+         style="stop-color:black;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       y2="24.143761"
+       x2="27.273300"
+       y1="10.957423"
+       x1="35.003674"
+       gradientTransform="matrix(-0.977228,0,0,0.995878,50.60272,9.115637)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient29443"
+       xlink:href="#linearGradient29418"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8101">
+      <stop
+         id="stop8103"
+         offset="0.0000000"
+         style="stop-color:#f5f5f5;stop-opacity:1.0000000;" />
+      <stop
+         id="stop8105"
+         offset="1.0000000"
+         style="stop-color:#e9e9e9;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2225"
+       inkscape:collect="always">
+      <stop
+         id="stop2227"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop2229"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2989"
+       inkscape:collect="always">
+      <stop
+         id="stop2991"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop2993"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective8092"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient8251"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8253"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient8259"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8261"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8264"
+       gradientUnits="userSpaceOnUse"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138"
+       gradientTransform="matrix(0.4043208,0,0,0.4043216,7.7666799,7.8950675)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8270"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3947516,0,0,0.3947515,7.9378683,8.0632187)"
+       x1="15.498499"
+       y1="9.4211226"
+       x2="24.240097"
+       y2="36.603138" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9042"
+       id="linearGradient9048"
+       x1="15.562512"
+       y1="16.125008"
+       x2="17.500002"
+       y2="20.375008"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="28.579245"
+       x2="26.533659"
+       y1="15.213944"
+       x1="15.893391"
+       id="linearGradient3292"
+       xlink:href="#linearGradient3286"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient3025"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="11.024895"
+       x2="10.623409"
+       y1="2.7991772"
+       x1="4.5264969"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8205"
+       xlink:href="#linearGradient2804"
+       inkscape:collect="always" />
+    <radialGradient
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient8203"
+       xlink:href="#linearGradient2812"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8189"
+       gradientUnits="userSpaceOnUse"
+       x1="17.890068"
+       y1="8.0617304"
+       x2="17.890068"
+       y2="40.032413" />
+    <linearGradient
+       id="linearGradient8183">
+      <stop
+         style="stop-color:#73d216;stop-opacity:1;"
+         offset="0"
+         id="stop8185" />
+      <stop
+         style="stop-color:#5ca911;stop-opacity:1;"
+         offset="1"
+         id="stop8187" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient8181"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient8179"
+       x1="4.5264969"
+       y1="2.7991772"
+       x2="10.623409"
+       y2="11.024895"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2812"
+       id="radialGradient8177"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.018423,0.664359,-1.388844,4.257661,-0.134567,-26.02469)"
+       r="0.8078171"
+       fy="6.9473476"
+       fx="4.8470273"
+       cy="6.9473476"
+       cx="4.8470273"
+       id="radialGradient8175"
+       xlink:href="#linearGradient2898"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       id="linearGradient8173"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientTransform="matrix(0.914124,-3.896132e-15,-2.475021e-18,1.631747,2.671799,-12.00863)"
+       gradientUnits="userSpaceOnUse"
+       r="8.6620579"
+       fy="19.008621"
+       fx="31.112698"
+       cy="19.008621"
+       cx="31.112698"
+       id="radialGradient8171"
+       xlink:href="#linearGradient3816"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8153">
+      <stop
+         id="stop8155"
+         offset="0"
+         style="stop-color:#73d216;stop-opacity:1;" />
+      <stop
+         id="stop8157"
+         offset="1"
+         style="stop-color:#5ca911;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       y2="40.032413"
+       x2="17.890068"
+       y1="8.0617304"
+       x1="17.890068"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient8151"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="31.325201"
+       x2="30.341434"
+       y1="10.823074"
+       x1="11.127699"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4740"
+       xlink:href="#linearGradient3149"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="27.77807"
+       x2="12.233074"
+       y1="11.789385"
+       x1="6.878005"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4738"
+       xlink:href="#linearGradient2851"
+       inkscape:collect="always" />
+    <inkscape:perspective
+       id="perspective43"
+       inkscape:persp3d-origin="8 : 5.3333333 : 1"
+       inkscape:vp_z="16 : 8 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 8 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient8224"
+       gradientUnits="userSpaceOnUse"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3286"
+       id="linearGradient8226"
+       gradientUnits="userSpaceOnUse"
+       x1="15.893391"
+       y1="15.213944"
+       x2="26.533659"
+       y2="28.579245" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8228"
+       gradientUnits="userSpaceOnUse"
+       x1="11.127699"
+       y1="10.823074"
+       x2="30.341434"
+       y2="31.325201" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3149"
+       id="linearGradient8232"
+       gradientUnits="userSpaceOnUse"
+       x1="11.127699"
+       y1="10.823074"
+       x2="30.341434"
+       y2="31.325201"
+       gradientTransform="matrix(0.3947515,0,0,0.3947515,7.9378683,8.0632187)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2851"
+       id="linearGradient8235"
+       gradientUnits="userSpaceOnUse"
+       x1="6.878005"
+       y1="11.789385"
+       x2="12.233074"
+       y2="27.77807"
+       gradientTransform="matrix(0.466769,0,0,0.466769,6.6483659,6.7965842)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3286"
+       id="linearGradient8237"
+       gradientUnits="userSpaceOnUse"
+       x1="15.893391"
+       y1="15.213944"
+       x2="26.533659"
+       y2="28.579245"
+       gradientTransform="matrix(0.466769,0,0,0.466769,6.6483659,6.7965842)" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="143.4694"
+     inkscape:cy="46.795144"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1232"
+     inkscape:window-height="718"
+     inkscape:window-x="200"
+     inkscape:window-y="90"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7872"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7948">
+    <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
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       id="path29441"
+       d="M 17.120074,2.4999994 C 17.911234,2.4999994 18.5,3.0785201 18.5,4.0031284 L 18.5,13.290965 C 18.5,13.958536 17.974302,14.487782 17.311203,14.487782 L 8.5609011,14.487782 C 8.0308788,15.189395 7.1533458,17.327271 4.6806888,18.274119 C 5.7815729,16.971634 5.5012166,14.487782 5.5012166,14.487782 L 4.0268295,14.487782 C 3.363733,14.487782 2.500001,13.703698 2.4999996,13.036127 L 2.4999996,3.9394188 C 2.4999996,3.2718465 3.3000234,2.4999994 3.9631199,2.4999994 L 17.120074,2.4999994 z"
+       style="fill:url(#linearGradient8799);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8914);stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       sodipodi:nodetypes="cccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.99184585"
+       inkscape:original="M 3.71875 3.5 C 3.0556535 3.5 2.5000001 4.0511776 2.5 4.71875 L 2.5 14.28125 C 2.5000014 14.948821 3.0556534 15.5 3.71875 15.5 L 5.5 15.5 C 5.5 15.5 5.788384 17.978766 4.6875 19.28125 C 7.160157 18.334402 8.0324781 16.201613 8.5625 15.5 L 17.3125 15.5 C 17.975599 15.5 18.5 14.948821 18.5 14.28125 L 18.5 4.71875 C 18.5 4.0511777 17.975599 3.5000001 17.3125 3.5 L 3.71875 3.5 z "
+       style="fill:url(#linearGradient8716);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999939999999998;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
+       id="path8805"
+       d="M 3.71875,4.5 C 3.6052801,4.5 3.5,4.6015523 3.5,4.71875 L 3.5,14.28125 C 3.5000002,14.398448 3.6052813,14.5 3.71875,14.5 L 5.5,14.5 C 6.0083008,14.492334 6.440125,14.87018 6.5,15.375 C 6.5,15.375 6.5264519,16.055972 6.5,16.75 C 6.5214715,16.72401 6.5728376,16.713552 6.59375,16.6875 C 7.1128586,16.040814 7.3826252,15.433927 7.78125,14.90625 C 7.9639971,14.656332 8.2529544,14.506075 8.5625,14.5 L 17.3125,14.5 C 17.425973,14.5 17.5,14.429401 17.5,14.28125 L 17.5,4.71875 C 17.5,4.570597 17.425975,4.5 17.3125,4.5 L 3.71875,4.5 z"
+       transform="translate(0,-1.0000002)" />
+    <g
+       id="g2057"
+       inkscape:label="Layer 1"
+       transform="translate(42.12926,5.0376345)" />
+    <path
+       style="fill:url(#linearGradient8235);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8237);stroke-width:0.99999946;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 21.502303,14.998895 C 21.502303,18.588776 18.588776,21.502302 14.998895,21.502302 C 11.409014,21.502302 8.4954878,18.588776 8.4954878,14.998895 C 8.4954878,11.409014 11.409014,8.4954878 14.998895,8.4954878 C 18.588776,8.4954878 21.502303,11.409014 21.502303,14.998895 z"
+       id="path4331" />
+    <path
+       style="opacity:0.6;fill:url(#linearGradient8232);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999869;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20.5,15 C 20.5,18.036001 18.036,20.5 15,20.5 C 11.963999,20.5 9.4999989,18.036001 9.4999989,15 C 9.4999989,11.964 11.963999,9.4999996 15,9.4999996 C 18.036,9.4999996 20.5,11.964 20.5,15 z"
+       id="path4333" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.19499996;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3374)"
+       id="path3302"
+       sodipodi:cx="11.484269"
+       sodipodi:cy="4.7465701"
+       sodipodi:rx="1.8659533"
+       sodipodi:ry="1.9428998"
+       d="M 13.350222,4.7465701 A 1.8659533,1.9428998 0 1 1 9.6183158,4.7465701 A 1.8659533,1.9428998 0 1 1 13.350222,4.7465701 z"
+       transform="matrix(1.9089437,-1.1115528,0.8192039,1.4310351,-12.113013,19.23752)" />
+  </g>
+</svg>
Binary file pidgin/pixmaps/tray/22/tray-away.png has changed
Binary file pidgin/pixmaps/tray/22/tray-busy.png has changed
Binary file pidgin/pixmaps/tray/22/tray-invisible.png has changed
Binary file pidgin/pixmaps/tray/22/tray-new-im.png has changed
Binary file pidgin/pixmaps/tray/22/tray-offline.png has changed
Binary file pidgin/pixmaps/tray/22/tray-online.png has changed
--- a/pidgin/win32/gtkwin32dep.c	Fri Aug 15 03:39:45 2008 +0000
+++ b/pidgin/win32/gtkwin32dep.c	Fri Aug 15 03:41:24 2008 +0000
@@ -319,8 +319,10 @@
 
 	winpidgin_window_flash(window, FALSE);
 
-	if ((handler_id = g_object_get_data(G_OBJECT(window), "flash_stop_handler_id")))
+	if ((handler_id = g_object_get_data(G_OBJECT(window), "flash_stop_handler_id"))) {
 		g_signal_handler_disconnect(G_OBJECT(window), (gulong) GPOINTER_TO_UINT(handler_id));
+		g_object_steal_data(G_OBJECT(window), "flash_stop_handler_id");
+	}
 
 	return FALSE;
 }
@@ -346,7 +348,10 @@
 		info.cbSize = sizeof(FLASHWINFO);
 		info.hwnd = GDK_WINDOW_HWND(gdkwin);
 		if (flash) {
+			DWORD flashCount;
 			info.uCount = 3;
+			if (SystemParametersInfo(SPI_GETFOREGROUNDFLASHCOUNT, 0, &flashCount, 0))
+				info.uCount = flashCount;
 			info.dwFlags = FLASHW_ALL | FLASHW_TIMER;
 		} else
 			info.dwFlags = FLASHW_STOP;
--- a/po/hu.po	Fri Aug 15 03:39:45 2008 +0000
+++ b/po/hu.po	Fri Aug 15 03:41:24 2008 +0000
@@ -7,10 +7,10 @@
 # Gabor Kelemen <kelemeng@gnome.hu>, 2005, 2006, 2007, 2008.
 msgid ""
 msgstr ""
-"Project-Id-Version: pidgin 2.3\n"
+"Project-Id-Version: pidgin 2.5\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-05-13 13:15+0200\n"
-"PO-Revision-Date: 2008-05-13 13:12+0200\n"
+"POT-Creation-Date: 2008-08-14 11:31+0200\n"
+"PO-Revision-Date: 2008-08-14 11:29+0200\n"
 "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
 "Language-Team: Hungarian <gnome@fsf.hu>\n"
 "MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@
 "  -v, --version       display the current version and exit\n"
 msgstr ""
 "%s\n"
-"HasznĆ”lat: %s [KAPCSOLƓ]...\n"
+"HasznĆ”lat: %s [KAPCSOLƓ]…\n"
 "\n"
 "  -c, --config=KƖNYVTƁR A KƖNYVTƁR hasznĆ”lata a beĆ”llĆ­tófĆ”jlokhoz\n"
 "  -d, --debug         hibakereső üzenetek kiĆ­rĆ”sa a szabvĆ”nyos kimenetre\n"
@@ -97,6 +97,10 @@
 msgid "Alias:"
 msgstr "ƁlnƩv:"
 
+#. Register checkbox
+msgid "Create this account on the server"
+msgstr "Ezen fiók létrehozÔsa a kiszolgÔlón"
+
 #. Cancel button
 #. Cancel
 msgid "Cancel"
@@ -262,7 +266,7 @@
 msgstr "InformÔciók"
 
 msgid "Retrieving..."
-msgstr "LekƩrƩs..."
+msgstr "LekĆ©rĆ©s…"
 
 msgid "Get Info"
 msgstr "InformÔció lekérése"
@@ -333,10 +337,10 @@
 msgstr "Mobilon"
 
 msgid "New..."
-msgstr "Új..."
+msgstr "Új…"
 
 msgid "Saved..."
-msgstr "Mentett..."
+msgstr "Mentett…"
 
 msgid "Plugins"
 msgstr "BővĆ­tmĆ©nyek"
@@ -394,16 +398,19 @@
 msgstr "BeƔllƭtƔsok"
 
 msgid "Send IM..."
-msgstr "Üzenet küldése..."
+msgstr "Üzenet küldĆ©se…"
 
 msgid "Block/Unblock..."
-msgstr "TiltƔs/TiltƔs feloldƔsa..."
+msgstr "TiltĆ”s/TiltĆ”s feloldĆ”sa…"
 
 msgid "Join Chat..."
-msgstr "CsatlakozƔs csevegƩshez..."
+msgstr "CsatlakozĆ”s csevegĆ©shez…"
 
 msgid "View Log..."
-msgstr "Napló megtekintése..."
+msgstr "Napló megtekintĆ©se…"
+
+msgid "View All Logs"
+msgstr "Minden napló megtekintése"
 
 msgid "Show"
 msgstr "MegjelenƭtƩs"
@@ -585,7 +592,7 @@
 "%s is typing..."
 msgstr ""
 "\n"
-"%s gƩpel..."
+"%s gĆ©pel…"
 
 msgid "You have left this chat."
 msgstr "Elhagyta ezt a csevegƩst."
@@ -602,6 +609,19 @@
 msgid "Send To"
 msgstr "Küldés ennek"
 
+msgid "Invite message"
+msgstr "Meghívóüzenet"
+
+msgid "Invite"
+msgstr "MeghƭvƔs"
+
+msgid ""
+"Please enter the name of the user you wish to invite,\n"
+"along with an optional invite message."
+msgstr ""
+"Adja meg a meghívandó partner nevét,\n"
+"egy elhagyható meghívóüzenettel együtt."
+
 msgid "Conversation"
 msgstr "TƔrsalgƔs"
 
@@ -612,7 +632,10 @@
 msgstr "IdőbĆ©lyegek"
 
 msgid "Add Buddy Pounce..."
-msgstr "PartnerfigyelmeztetƩs felvƩtele..."
+msgstr "PartnerfigyelmeztetĆ©s felvĆ©tele…"
+
+msgid "Invite..."
+msgstr "MeghĆ­vĆ”s…"
 
 msgid "Enable Logging"
 msgstr "NaplózÔs engedélyezése"
@@ -623,9 +646,11 @@
 msgid "<AUTO-REPLY> "
 msgstr "<AUTOMATIKUS VƁLASZ> "
 
-#. Print the list of users in the room
-msgid "List of users:\n"
-msgstr "FelhasznÔlólista:\n"
+#, c-format
+msgid "List of %d user:\n"
+msgid_plural "List of %d users:\n"
+msgstr[0] "%d felhasznÔló listÔja:\n"
+msgstr[1] "%d felhasznÔló listÔja:\n"
 
 msgid "Supported debug options are:  version"
 msgstr "A tƔmogatott hibakeresƩsi parancsok:  version"
@@ -641,6 +666,19 @@
 "megtekintƩsƩhez.\n"
 "Ebben a kontextusban a kƶvetkező parancsok Ć”llnak rendelkezĆ©sre:\n"
 
+#, c-format
+msgid ""
+"%s is not a valid message class. See '/help msgcolor' for valid message "
+"classes."
+msgstr ""
+"%s nem Ć©rvĆ©nyes üzenetosztĆ”ly. Az Ć©rvĆ©nyes üzenetosztĆ”lyokĆ©rt lĆ”sd a ā€žhelp "
+"msgcolorā€ kimenetĆ©t."
+
+#, c-format
+msgid "%s is not a valid color. See '/help msgcolor' for valid colors."
+msgstr ""
+"%s nem Ć©rvĆ©nyes szĆ­n. Az Ć©rvĆ©nyes szĆ­nekĆ©rt lĆ”sd a ā€žhelp msgcolorā€ kimenetĆ©t."
+
 msgid ""
 "say &lt;message&gt;:  Send a message normally as if you weren't using a "
 "command."
@@ -685,6 +723,19 @@
 msgid "statuses: Show the savedstatuses window."
 msgstr "statuses: A mentett Ɣllapotok ablak megjelenƭtƩse."
 
+msgid ""
+"msgcolor &lt;class&gt; &lt;foreground&gt; &lt;background&gt;: Set the color "
+"for different classes of messages in the conversation window.<br>    &lt;"
+"class&gt;: receive, send, highlight, action, timestamp<br>    &lt;foreground/"
+"background&gt;: black, red, green, blue, white, gray, darkgray, magenta, "
+"cyan, default<br><br>EXAMPLE:<br>    msgcolor send cyan default"
+msgstr ""
+"msgcolor &lt;osztĆ”ly&gt; &lt;előtĆ©r&gt; &lt;hĆ”ttĆ©r&gt;: Külƶnbƶző "
+"üzenetosztÔlyok színeinek beÔllítÔsa a tÔrsalgÔsablakban.<br>    &lt;"
+"osztĆ”ly&gt;: receive, send, highlight, action, timestamp<br>    &lt;előtĆ©r/"
+"hƔttƩr&gt;: black, red, green, blue, white, gray, darkgray, magenta, cyan, "
+"default<br> <br> PƉLDA:<br>    msgcolor send cyan default"
+
 msgid "Unable to open file."
 msgstr "Nem lehet megnyitni a fƔjlt."
 
@@ -705,8 +756,10 @@
 msgstr "Szünet"
 
 #, c-format
-msgid "File Transfers - %d%% of %d files"
-msgstr "FĆ”jlĆ”tvitelek – %2$d fĆ”jl %1$d szĆ”zalĆ©ka"
+msgid "File Transfers - %d%% of %d file"
+msgid_plural "File Transfers - %d%% of %d files"
+msgstr[0] "FĆ”jlĆ”tvitelek – %2$d fĆ”jl %1$d szĆ”zalĆ©ka"
+msgstr[1] "FĆ”jlĆ”tvitelek – %2$d fĆ”jl %1$d szĆ”zalĆ©ka"
 
 #. Create the window.
 msgid "File Transfers"
@@ -821,11 +874,14 @@
 msgid "Conversations with %s"
 msgstr "TĆ”rsalgĆ”sok a kƶvetkezővel: %s"
 
+msgid "All Conversations"
+msgstr "Minden tƔrsalgƔs"
+
 msgid "System Log"
 msgstr "Rendszernapló"
 
 msgid "Emails"
-msgstr "Emailek"
+msgstr "E-mailek"
 
 msgid "You have mail!"
 msgstr "Levele Ʃrkezett!"
@@ -843,7 +899,7 @@
 msgstr[1] "%s (%s) %d új üzenetet kapott."
 
 msgid "New Mail"
-msgstr "Új email"
+msgstr "Új e-mail"
 
 #, c-format
 msgid "Info for %s"
@@ -858,9 +914,6 @@
 msgid "IM"
 msgstr "Azonnali üzenet"
 
-msgid "Invite"
-msgstr "MeghƭvƔs"
-
 msgid "(none)"
 msgstr "(nincs)"
 
@@ -917,7 +970,7 @@
 msgstr "A kƶvetkező lista bővĆ­tmĆ©nyeit tƶltheti be vagy tĆ”volĆ­thatja el."
 
 msgid "Install Plugin..."
-msgstr "BővĆ­tmĆ©ny telepĆ­tĆ©se..."
+msgstr "BővĆ­tmĆ©ny telepĆ­tĆ©se…"
 
 msgid "Configure Plugin"
 msgstr "BővĆ­tmĆ©ny beĆ”llĆ­tĆ”sa"
@@ -951,7 +1004,7 @@
 
 #. Create the "Pounce When Buddy..." frame.
 msgid "Pounce When Buddy..."
-msgstr "FigyelmeztetƩs, ha a partner..."
+msgstr "FigyelmeztetĆ©s, ha a partner…"
 
 msgid "Signs on"
 msgstr "Bejelentkezik"
@@ -1127,13 +1180,13 @@
 msgstr "Még nincs megvalósítva."
 
 msgid "Save File..."
-msgstr "FƔjl mentƩse..."
+msgstr "FĆ”jl mentĆ©se…"
 
 msgid "Open File..."
-msgstr "FƔjl megnyitƔsa..."
+msgstr "FĆ”jl megnyitĆ”sa…"
 
 msgid "Choose Location..."
-msgstr "VƔlasszon helyet..."
+msgstr "VĆ”lasszon helyet…"
 
 msgid "Hit 'Enter' to find more rooms of this category."
 msgstr "Az Enter megnyomÔsÔval több szobÔt talÔlhat ebben a kategóriÔban."
@@ -1185,7 +1238,7 @@
 msgstr "(alapƩrtelmezett)"
 
 msgid "Select Sound File ..."
-msgstr "VƔlasszon hangfƔjlt..."
+msgstr "VĆ”lasszon hangfĆ”jlt…"
 
 msgid "Sound Preferences"
 msgstr "HangbeƔllƭtƔsok"
@@ -1255,7 +1308,7 @@
 msgstr "VisszaƔllƭtƔs"
 
 msgid "Choose..."
-msgstr "KivƔlasztƔs..."
+msgstr "KivĆ”lasztĆ”s…"
 
 #, c-format
 msgid "Are you sure you want to delete \"%s\""
@@ -1301,7 +1354,7 @@
 msgstr "Adjon meg mƔsik cƭmet az Ɣllapothoz."
 
 msgid "Substatus"
-msgstr "AlƔllapot"
+msgstr "RƩszƔllapot"
 
 msgid "Status:"
 msgstr "Ɓllapot:"
@@ -1578,7 +1631,7 @@
 msgstr "VisszautasƭtƔs"
 
 msgid "_View Certificate..."
-msgstr "_TanúsítvÔny megjelenítése..."
+msgstr "_TanĆŗsĆ­tvĆ”ny megjelenĆ­tĆ©se…"
 
 #. Prompt the user to authenticate the certificate
 #. vrq will be completed by user_auth
@@ -2087,8 +2140,11 @@
 msgid "ABI version mismatch %d.%d.x (need %d.%d.x)"
 msgstr "Az ABI verziója nem egyezik: %d.%d.x (szükséges: %d.%d.x)"
 
-msgid "Plugin does not implement all required functions"
-msgstr "A bővĆ­tmĆ©ny nem valósĆ­tja meg az ƶsszes kĆ­vĆ”nt függvĆ©nyt"
+msgid ""
+"Plugin does not implement all required functions (list_icon, login and close)"
+msgstr ""
+"A bővĆ­tmĆ©ny nem valósĆ­tja meg az ƶsszes kĆ­vĆ”nt függvĆ©nyt (list_icon, login "
+"Ʃs close)"
 
 #, c-format
 msgid ""
@@ -2149,7 +2205,7 @@
 msgstr "Automatikus visszautasƭtƔs"
 
 msgid "Autoaccept File Transfers..."
-msgstr "FƔjlƔtvitelek automatikus elfogadƔsa..."
+msgstr "FĆ”jlĆ”tvitelek automatikus elfogadĆ”sa…"
 
 #. XXX: Is there a better way than this? There really should be.
 msgid ""
@@ -2171,14 +2227,17 @@
 "befejeződĆ©sekor\n"
 "(csak ha nem tĆ”rsalog a küldővel)"
 
+msgid "Create a new directory for each user"
+msgstr "Új könyvtÔr létrehozÔsa minden felhasznÔlóhoz"
+
 msgid "Notes"
 msgstr "MegjegyzƩsek"
 
 msgid "Enter your notes below..."
-msgstr "ƍrja be alĆ”bb a jegyzetet..."
+msgstr "ƍrja be alĆ”bb a jegyzetet…"
 
 msgid "Edit Notes..."
-msgstr "Jegyzetek szerkesztƩse..."
+msgstr "Jegyzetek szerkesztĆ©se…"
 
 #. *< major version
 #. *< minor version
@@ -2586,7 +2645,7 @@
 "működik."
 
 msgid "You feel a disturbance in the force..."
-msgstr "Zavart Ć©rez az erőben..."
+msgstr "Zavart Ć©rez az erőben…"
 
 msgid "Only enable for users on the buddy list"
 msgstr "Csak a partnerlistĆ”n szereplő felhasznĆ”lók szĆ”mĆ”ra"
@@ -2750,13 +2809,11 @@
 "akkor telepĆ­tse az ActiveTCL-t a http://www.activestate.com cĆ­mről\n"
 
 msgid ""
-"The Apple Bonjour For Windows toolkit wasn't found, see the FAQ at: http://"
-"developer.pidgin.im/wiki/Using%20Pidgin#CanIusePidginforBonjourLink-"
-"LocalMessaging for more information."
+"The Apple Bonjour For Windows toolkit wasn't found, see the FAQ at: http://d."
+"pidgin.im/BonjourWindows for more information."
 msgstr ""
 "Az Apple Bonjour For Windows eszközkészlet nem talÔlható, tovÔbbi "
-"informÔciókat a http://developer.pidgin.im/wiki/Using%"
-"20Pidgin#CanIusePidginforBonjourLink-LocalMessaging oldalon talƔlhat."
+"informÔciókat a http://d.pidgin.im/BonjourWindows oldalon talÔlhat."
 
 msgid "Unable to listen for incoming IM connections\n"
 msgstr "Nem lehetsĆ©ges a bejƶvő azonnali üzenő kapcsolatokat figyelni\n"
@@ -2774,7 +2831,7 @@
 msgstr "VezetƩknƩv"
 
 msgid "Email"
-msgstr "Email"
+msgstr "E-mail"
 
 msgid "AIM Account"
 msgstr "AIM fiók"
@@ -2811,9 +2868,6 @@
 msgid "Cannot open socket"
 msgstr "Nem nyitható meg a foglalat"
 
-msgid "Error setting socket options"
-msgstr "Hiba a foglalat tulajdonsƔgainak beƔllƭtƔsakor"
-
 msgid "Could not bind socket to port"
 msgstr "Nem kƶthető a foglalat a porthoz"
 
@@ -2840,7 +2894,7 @@
 msgstr "Nem tƶlthető le a jelsor.\n"
 
 msgid "Save Buddylist..."
-msgstr "Partnerlista mentƩse..."
+msgstr "Partnerlista mentĆ©se…"
 
 msgid "Your buddylist is empty, nothing was written to the file."
 msgstr "A partnerlistÔja üres, semmi nem került a fÔjlba."
@@ -2856,13 +2910,16 @@
 msgstr "Nem tƶlthető be a partnerlista"
 
 msgid "Load Buddylist..."
-msgstr "Partnerlista betƶltƩse..."
+msgstr "Partnerlista betƶltĆ©se…"
 
 msgid "Buddylist loaded successfully!"
 msgstr "A partnerlista betƶltƩse sikeres!"
 
 msgid "Save buddylist..."
-msgstr "Partnerlista mentƩse..."
+msgstr "Partnerlista mentĆ©se…"
+
+msgid "Load buddylist from file..."
+msgstr "Partnerlista betƶltĆ©se fĆ”jlból…"
 
 msgid "Fill in the registration fields."
 msgstr "Tƶltse ki a regisztrĆ”ciós mezőket."
@@ -2953,7 +3010,7 @@
 msgstr "VĆ”lasszon egy csevegĆ©st a kƶvetkező partnerhez: %s"
 
 msgid "Add to chat..."
-msgstr "FelvƩtel csevegƩshez..."
+msgstr "FelvĆ©tel csevegĆ©shez…"
 
 msgid "Available"
 msgstr "ElĆ©rhető"
@@ -3023,10 +3080,10 @@
 msgstr "Nincs kapcsolat a kiszolgÔlóval."
 
 msgid "Find buddies..."
-msgstr "Partnerek keresƩse..."
+msgstr "Partnerek keresĆ©se…"
 
 msgid "Change password..."
-msgstr "Jelszó módosítÔsa..."
+msgstr "Jelszó módosĆ­tĆ”sa…"
 
 msgid "Upload buddylist to Server"
 msgstr "Partnerlista feltöltése a kiszolgÔlóra"
@@ -3038,10 +3095,7 @@
 msgstr "Partnerlista törlése a kiszolgÔlóról"
 
 msgid "Save buddylist to file..."
-msgstr "Partnerlista mentƩse fƔjlba..."
-
-msgid "Load buddylist from file..."
-msgstr "Partnerlista betöltése fÔjlból..."
+msgstr "Partnerlista mentĆ©se fĆ”jlba…"
 
 #. magic
 #. major_version
@@ -3158,6 +3212,9 @@
 msgid "Encodings"
 msgstr "KódolÔsok"
 
+msgid "Auto-detect incoming UTF-8"
+msgstr "Bejƶvő UTF-8 automatikus felismerĆ©se"
+
 msgid "Real name"
 msgstr "Valódi név"
 
@@ -3172,8 +3229,8 @@
 msgstr "Rossz üzemmód"
 
 #, c-format
-msgid "Ban on %s by %s, set %ld seconds ago"
-msgstr "%1$s %3$ld mƔsodperce kitiltva %2$s Ɣltal"
+msgid "Ban on %s by %s, set %s ago"
+msgstr "%1$s %3$s mƔsodperce kitiltva %2$s Ɣltal"
 
 #, c-format
 msgid "Ban on %s"
@@ -3343,6 +3400,9 @@
 "away [üzenet]:  BeÔllít egy tÔvollét-üzenetet, vagy üzenet nélkül hasznÔlva "
 "visszatĆ©r a tĆ”vollĆ©tből."
 
+msgid "ctcp <nick> <msg>: sends ctcp msg to nick."
+msgstr "ctcp <becenév> <üzenet>: ctcp üzenet küldése a becenévnek."
+
 msgid "chanserv: Send a command to chanserv"
 msgstr "chanserv: parancs küldése a chanserv kiszolgÔlónak"
 
@@ -3350,7 +3410,7 @@
 "deop &lt;nick1&gt; [nick2] ...:  Remove channel operator status from "
 "someone. You must be a channel operator to do this."
 msgstr ""
-"deop &lt;becenƩv1&gt; [becenƩv2] ...:  A csatorna-operƔtor Ɣllapot elvƩtele "
+"deop &lt;becenĆ©v1&gt; [becenĆ©v2] …:  A csatorna-operĆ”tor Ć”llapot elvĆ©tele "
 "valakitől. CsatornaoperĆ”tornak kell lennie, hogy ezt megtehesse."
 
 msgid ""
@@ -3358,7 +3418,7 @@
 "someone, preventing them from speaking if the channel is moderated (+m). You "
 "must be a channel operator to do this."
 msgstr ""
-"devoice &lt;becenƩv1&gt; [becenƩv2] ...:  A csatorna hang Ɣllapot elvƩtele "
+"devoice &lt;becenĆ©v1&gt; [becenĆ©v2] …:  A csatorna hang Ć”llapot elvĆ©tele "
 "valakitől, Ć­gy nem beszĆ©lhet, ha a csatorna moderĆ”lt (+m). "
 "CsatornaoperƔtornak kell lennie, hogy ezt megtehesse."
 
@@ -3373,16 +3433,15 @@
 "j &lt;room1&gt;[,room2][,...] [key1[,key2][,...]]:  Enter one or more "
 "channels, optionally providing a channel key for each if needed."
 msgstr ""
-"j &lt;szoba1&gt;[,szoba2][,...] [kulcs1[,kulcs2][,...]]:  BelƩpƩs egy vagy "
-"több csatornÔra, opcionÔlisan kulcs megadÔsÔval mindegyikhez, ha szükséges."
+"j &lt;szoba1&gt;[,szoba2][,…] [kulcs1[,kulcs2][,…]]:  BelĆ©pĆ©s egy vagy tƶbb "
+"csatornÔra, opcionÔlisan kulcs megadÔsÔval mindegyikhez, ha szükséges."
 
 msgid ""
 "join &lt;room1&gt;[,room2][,...] [key1[,key2][,...]]:  Enter one or more "
 "channels, optionally providing a channel key for each if needed."
 msgstr ""
-"join &lt;szoba1&gt;[,szoba2][,...] [kulcs1[,kulcs2][,...]]:  BelƩpƩs egy "
-"vagy tƶbb csatornƔra, opcionƔlisan kulcs megadƔsƔval mindegyikhez, ha "
-"szükséges."
+"join &lt;szoba1&gt;[,szoba2][,…] [kulcs1[,kulcs2][,…]]:  BelĆ©pĆ©s egy vagy "
+"több csatornÔra, opcionÔlisan kulcs megadÔsÔval mindegyikhez, ha szükséges."
 
 msgid ""
 "kick &lt;nick&gt; [message]:  Remove someone from a channel. You must be a "
@@ -3436,8 +3495,8 @@
 "op &lt;nick1&gt; [nick2] ...:  Grant channel operator status to someone. You "
 "must be a channel operator to do this."
 msgstr ""
-"op &lt;becenƩv1&gt; [becenƩv2] ...:  CsatornaoperƔtori jogok adƔsa "
-"valakinek. CsatornaoperƔtornak kell lennie, hogy ezt megtehesse."
+"op &lt;becenĆ©v1&gt; [becenĆ©v2] …:  CsatornaoperĆ”tori jogok adĆ”sa valakinek. "
+"CsatornaoperƔtornak kell lennie, hogy ezt megtehesse."
 
 msgid ""
 "operwall &lt;message&gt;:  If you don't know what this is, you probably "
@@ -3476,7 +3535,7 @@
 "üzenettel."
 
 msgid "quote [...]:  Send a raw command to the server."
-msgstr "quote [...]:  Nyers parancs küldése a kiszolgÔlónak."
+msgstr "quote […]:  Nyers parancs küldĆ©se a kiszolgĆ”lónak."
 
 msgid ""
 "remove &lt;nick&gt; [message]:  Remove someone from a room. You must be a "
@@ -3503,7 +3562,7 @@
 "voice &lt;nick1&gt; [nick2] ...:  Grant channel voice status to someone. You "
 "must be a channel operator to do this."
 msgstr ""
-"voice &lt;becenƩv1&gt; [becenƩv2] ...:  Csatorna hang Ɣllapot megadƔsa "
+"voice &lt;becenĆ©v1&gt; [becenĆ©v2] …:  Csatorna hang Ć”llapot megadĆ”sa "
 "valakinek. CsatornaoperƔtornak kell lennie, hogy ezt megtehesse."
 
 msgid ""
@@ -3609,6 +3668,8 @@
 msgid "Country"
 msgstr "OrszƔg"
 
+#. lots of clients (including purple) do this, but it's
+#. * out of spec
 msgid "Telephone"
 msgstr "TelefonszƔm"
 
@@ -3799,12 +3860,12 @@
 msgid "Capabilities"
 msgstr "KƩpessƩgek"
 
+msgid "Priority"
+msgstr "PrioritƔs"
+
 msgid "Resource"
 msgstr "ErőforrĆ”s"
 
-msgid "Priority"
-msgstr "PrioritƔs"
-
 msgid "Middle Name"
 msgstr "KƶzĆ©pső nĆ©v"
 
@@ -3889,7 +3950,7 @@
 "Tƶltsƶn ki legalĆ”bb egy mezőt a megfelelő XMPP felhasznĆ”lók keresĆ©sĆ©hez."
 
 msgid "Email Address"
-msgstr "Email cĆ­m"
+msgstr "E-mail cĆ­m"
 
 msgid "Search for XMPP users"
 msgstr "XMPP felhasznÔlók keresése"
@@ -4168,15 +4229,15 @@
 msgstr "Adja meg az új jelszavÔt"
 
 msgid "Set User Info..."
-msgstr "FelhasznÔlói informÔciók beÔllítÔsa..."
+msgstr "FelhasznĆ”lói informĆ”ciók beĆ”llĆ­tĆ”sa…"
 
 #. if (js->protocol_options & CHANGE_PASSWORD) {
 msgid "Change Password..."
-msgstr "Jelszó módosítÔsa..."
+msgstr "Jelszó módosĆ­tĆ”sa…"
 
 #. }
 msgid "Search for Users..."
-msgstr "FelhasznÔlók keresése..."
+msgstr "FelhasznĆ”lók keresĆ©se…"
 
 msgid "Bad Request"
 msgstr "HibƔs kƩrƩs"
@@ -4376,7 +4437,7 @@
 
 #, c-format
 msgid "Buzzing %s..."
-msgstr "%s csƶrgetƩse..."
+msgstr "%s csƶrgetĆ©se…"
 
 msgid "config:  Configure a chat room."
 msgstr "config:   Csevegőszoba beĆ”llĆ­tĆ”sa."
@@ -4493,8 +4554,8 @@
 msgstr "XMPP üzenethiba"
 
 #, c-format
-msgid " (Code %s)"
-msgstr " (%s kód)"
+msgid "(Code %s)"
+msgstr "(%s kód)"
 
 msgid "XML Parse error"
 msgstr "XML elemzƩsi hiba"
@@ -4519,14 +4580,14 @@
 msgstr "AlapƩrtel_mezƩsek elfogadƔsa"
 
 #, c-format
+msgid "Error joining chat %s"
+msgstr "Hiba a(z) %s csevegƩshez csatlakozƔs kƶzben"
+
+#, c-format
 msgid "Error in chat %s"
 msgstr "Hiba a(z) %s csevegƩsben"
 
 #, c-format
-msgid "Error joining chat %s"
-msgstr "Hiba a(z) %s csevegƩshez csatlakozƔs kƶzben"
-
-#, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
 "Nem lehet fĆ”jlt küldeni a kƶvetkezőnek: %s, mert a felhasznĆ”ló nem tĆ”mogatja "
@@ -4566,7 +4627,7 @@
 msgstr "BeƔllƭtƔs"
 
 msgid "Set Mood..."
-msgstr "Hangulat beƔllƭtƔsa..."
+msgstr "Hangulat beĆ”llĆ­tĆ”sa…"
 
 msgid "Set User Nickname"
 msgstr "FelhasznÔlói becenév beÔllítÔsa"
@@ -4582,7 +4643,7 @@
 "vĆ”lasszon ennek megfelelően."
 
 msgid "Set Nickname..."
-msgstr "BecenƩv beƔllƭtƔsa..."
+msgstr "BecenĆ©v beĆ”llĆ­tĆ”sa…"
 
 msgid "Actions"
 msgstr "Műveletek"
@@ -4623,7 +4684,7 @@
 
 #, c-format
 msgid "Invalid email address"
-msgstr "ƉrvĆ©nytelen email cĆ­m"
+msgstr "ƉrvĆ©nytelen e-mail cĆ­m"
 
 #, c-format
 msgid "User does not exist"
@@ -4842,7 +4903,10 @@
 
 #, c-format
 msgid "Nudging %s..."
-msgstr "%s bƶkƩse..."
+msgstr "%s bƶkĆ©se…"
+
+msgid "Email Address..."
+msgstr "E-mail cĆ­m…"
 
 msgid "Your new MSN friendly name is too long."
 msgstr "Az Ćŗj MSN beceneve tĆŗl hosszĆŗ."
@@ -4878,8 +4942,22 @@
 msgid "Disallow"
 msgstr "TiltƔs"
 
-msgid "This Hotmail account may not be active."
-msgstr "Lehetséges, hogy ez a Hotmail fiók nem aktív."
+#, c-format
+msgid "Blocked Text for %s"
+msgstr "%s tiltott szƶvege"
+
+msgid "No text is blocked for this account."
+msgstr "Nincs tiltott szöveg ehhez a fiókhoz."
+
+#, c-format
+msgid ""
+"MSN servers are currently blocking the following regular expressions:<br/>%s"
+msgstr ""
+"Az MSN kiszolgĆ”lók jelenleg a kƶvetkező regulĆ”ris kifejezĆ©seket tiltjĆ”k:<br/>"
+"%s"
+
+msgid "This account does not have email enabled."
+msgstr "Ehhez a fiókhoz nincs engedélyezve az e-mail."
 
 msgid "Send a mobile message."
 msgstr "Mobilüzenet küldése."
@@ -4921,22 +4999,25 @@
 msgstr "Album"
 
 msgid "Set Friendly Name..."
-msgstr "BecenƩv beƔllƭtƔsa..."
+msgstr "BecenĆ©v beĆ”llĆ­tĆ”sa…"
 
 msgid "Set Home Phone Number..."
-msgstr "Otthoni telefonszƔm beƔllƭtƔsa..."
+msgstr "Otthoni telefonszĆ”m beĆ”llĆ­tĆ”sa…"
 
 msgid "Set Work Phone Number..."
-msgstr "Munkahelyi telefonszƔm beƔllƭtƔsa..."
+msgstr "Munkahelyi telefonszĆ”m beĆ”llĆ­tĆ”sa…"
 
 msgid "Set Mobile Phone Number..."
-msgstr "MobiltelefonszƔm beƔllƭtƔsa..."
+msgstr "MobiltelefonszĆ”m beĆ”llĆ­tĆ”sa…"
 
 msgid "Enable/Disable Mobile Devices..."
-msgstr "Mobileszkƶzƶk engedƩlyezƩse/tiltƔsa..."
+msgstr "Mobileszkƶzƶk engedĆ©lyezĆ©se/tiltĆ”sa…"
 
 msgid "Allow/Disallow Mobile Pages..."
-msgstr "Mobiloldalak engedƩlyezƩse/tiltƔsa..."
+msgstr "Mobiloldalak engedĆ©lyezĆ©se/tiltĆ”sa…"
+
+msgid "View Blocked Text..."
+msgstr "Tiltott szƶveg megjelenĆ­tĆ©se…"
 
 msgid "Open Hotmail Inbox"
 msgstr "Hotmail bejƶvő levelek megnyitĆ”sa"
@@ -5031,7 +5112,7 @@
 msgstr "Otthoni fax"
 
 msgid "Personal Email"
-msgstr "SajƔt email"
+msgstr "SajƔt e-mail"
 
 msgid "Personal IM"
 msgstr "SajĆ”t azonnali üzenő"
@@ -5074,7 +5155,7 @@
 msgstr "Munkahelyi fax"
 
 msgid "Work Email"
-msgstr "Munkahelyi email"
+msgstr "Munkahelyi e-mail"
 
 msgid "Work IM"
 msgstr "Munkahelyi azonnali üzenő"
@@ -5141,16 +5222,8 @@
 msgid "Windows Live ID authentication:Unable to connect"
 msgstr "Windows Live azonosító hitelesítése: nem lehet kapcsolódni"
 
-#. we must have failed!
-msgid ""
-"Windows Live ID authentication: cannot find authenticate token in server "
-"response"
-msgstr ""
-"Windows Live azonosító hitelesítése: nem talÔlható hitelesítési jelsor a "
-"kiszolgÔló vÔlaszÔban"
-
-msgid "Windows Live ID authentication Failed"
-msgstr "Windows Live azonosító hitelesítése meghiúsult"
+msgid "Windows Live ID authentication:Invalid response"
+msgstr "Windows Live azonosító hitelesítése: érvénytelen vÔlasz"
 
 #, c-format
 msgid "%s is not a valid group."
@@ -5197,6 +5270,9 @@
 msgid "Service Temporarily Unavailable."
 msgstr "A szolgĆ”ltatĆ”s Ć”tmenetileg nem Ć©rhető el."
 
+msgid "Mobile message was not sent because it was too long."
+msgstr "A mobilüzenet nem küldhető el, mert tĆŗl hosszĆŗ."
+
 msgid "Unable to rename group"
 msgstr "Nem lehet Ɣtnevezni a csoportot"
 
@@ -5231,6 +5307,22 @@
 "\n"
 "A karbantartĆ”s befejeződĆ©se utĆ”n sikeresen be tud majd jelentkezni."
 
+msgid ""
+"Message was not sent because the system is unavailable. This normally "
+"happens when the user is blocked or does not exist."
+msgstr ""
+"Az üzenet nem küldhető el, mivel a rendszer nem Ć©rhető el. Ez normĆ”lis "
+"esetben akkor történik, ha a felhasznÔló le van tiltva vagy nem létezik."
+
+msgid "Message was not sent because messages are being sent too quickly."
+msgstr "Az üzenet nem küldhető el, mivel tĆŗl gyorsan küldi az üzeneteket."
+
+msgid "Message was not sent because an unknown encoding error occurred."
+msgstr "Az üzenet nem küldhető el, mivel ismeretlen kódolĆ”si hiba tƶrtĆ©nt."
+
+msgid "Message was not sent because an unknown error occurred."
+msgstr "Az üzenet nem küldhető el, mivel ismeretlen hiba tƶrtĆ©nt."
+
 msgid "Unable to connect"
 msgstr "Nem lehet kapcsolódni"
 
@@ -5351,6 +5443,9 @@
 msgid "The username specified is invalid."
 msgstr "A megadott felhasznÔlónév érvénytelen."
 
+msgid "This Hotmail account may not be active."
+msgstr "Lehetséges, hogy ez a Hotmail fiók nem aktív."
+
 msgid "Has you"
 msgstr "Szerepel-e a listƔjƔn"
 
@@ -5390,8 +5485,12 @@
 msgstr "BejelentkezƩs"
 
 #, c-format
-msgid "Connection to server lost (no data received within %d seconds)"
-msgstr ""
+msgid "Connection to server lost (no data received within %d second)"
+msgid_plural "Connection to server lost (no data received within %d seconds)"
+msgstr[0] ""
+"A kapcsolat elveszett a kiszolgÔlóhoz (nem érkezett adat %d mÔsodpercen "
+"belül)"
+msgstr[1] ""
 "A kapcsolat elveszett a kiszolgÔlóhoz (nem érkezett adat %d mÔsodpercen "
 "belül)"
 
@@ -5490,9 +5589,15 @@
 
 #, c-format
 msgid ""
+"%d buddy was added or updated from the server (including buddies already on "
+"the server-side list)"
+msgid_plural ""
 "%d buddies were added or updated from the server (including buddies already "
 "on the server-side list)"
-msgstr ""
+msgstr[0] ""
+"%d partner került felvételre vagy frissítésre a kiszolgÔlóról (beleértve a "
+"kiszolgĆ”lóoldali listĆ”n mĆ”r jelen lĆ©vő partnereket)"
+msgstr[1] ""
 "%d partner került felvételre vagy frissítésre a kiszolgÔlóról (beleértve a "
 "kiszolgĆ”lóoldali listĆ”n mĆ”r jelen lĆ©vő partnereket)"
 
@@ -5507,10 +5612,10 @@
 
 #. TODO: find out how
 msgid "Find people..."
-msgstr "Emberek keresƩse..."
+msgstr "Emberek keresĆ©se…"
 
 msgid "Change IM name..."
-msgstr "IM név módosítÔsa..."
+msgstr "IM nĆ©v módosĆ­tĆ”sa…"
 
 msgid "myim URL handler"
 msgstr "myim URL kezelő"
@@ -5596,7 +5701,7 @@
 
 #, c-format
 msgid "Zapping %s..."
-msgstr "%s megütése..."
+msgstr "%s megütĆ©se…"
 
 # fixme: valami ilyesmi...
 #. Whack means "to hit or strike someone with a sharp blow"
@@ -5609,7 +5714,7 @@
 
 #, c-format
 msgid "Whacking %s..."
-msgstr "%s lecsapƔsa..."
+msgstr "%s lecsapĆ”sa…"
 
 #. Torch means "to set on fire."  Don't worry, this doesn't
 #. * make a whole lot of sense in English, either.  Feel free
@@ -5623,7 +5728,7 @@
 
 #, c-format
 msgid "Torching %s..."
-msgstr "%s ƩgetƩse..."
+msgstr "%s Ć©getĆ©se…"
 
 #. Smooch means "to kiss someone, often enthusiastically"
 msgid "Smooch"
@@ -5635,7 +5740,7 @@
 
 #, c-format
 msgid "Smooching %s..."
-msgstr "%s megcsókolÔsa..."
+msgstr "%s megcsókolĆ”sa…"
 
 #. A hug is a display of affection; wrapping your arms around someone
 msgid "Hug"
@@ -5647,7 +5752,7 @@
 
 #, c-format
 msgid "Hugging %s..."
-msgstr "%s ƶlelƩse..."
+msgstr "%s ƶlelĆ©se…"
 
 #. Slap means "to hit someone with an open/flat hand"
 msgid "Slap"
@@ -5659,7 +5764,7 @@
 
 #, c-format
 msgid "Slapping %s..."
-msgstr "%s pofozƔsa..."
+msgstr "%s pofozĆ”sa…"
 
 # fixme: hƔt ez ezt jelenti ;)
 #. Goose means "to pinch someone on their butt"
@@ -5672,7 +5777,7 @@
 
 #, c-format
 msgid "Goosing %s..."
-msgstr "%s seggberúgÔsa..."
+msgstr "%s seggberĆŗgĆ”sa…"
 
 #. A high-five is when two people's hands slap each other
 #. * in the air above their heads.  It is done to celebrate
@@ -5686,7 +5791,7 @@
 
 #, c-format
 msgid "High-fiving %s..."
-msgstr "%s ƶtƶst kap..."
+msgstr "%s ƶtƶst kap…"
 
 #. We're not entirely sure what the MySpace people mean by
 #. * this... but we think it's the equivalent of "prank."  Or, for
@@ -5700,7 +5805,7 @@
 
 #, c-format
 msgid "Punking %s..."
-msgstr "%s megtrƩfƔlƔsa..."
+msgstr "%s megtrĆ©fĆ”lĆ”sa…"
 
 # fixme: elvileg ezt jelenti...
 #. Raspberry is a slang term for the vibrating sound made
@@ -5719,7 +5824,7 @@
 
 #, c-format
 msgid "Raspberrying %s..."
-msgstr "NyelvƶltƩs erre: %s..."
+msgstr "NyelvƶltĆ©s erre: %s…"
 
 msgid "Required parameters not passed in"
 msgstr "A szükséges paraméterek ÔtadÔsa sikertelen"
@@ -5925,13 +6030,13 @@
 msgstr "GroupWise konferencia %d"
 
 msgid "Authenticating..."
-msgstr "HitelesƭtƩs..."
+msgstr "HitelesĆ­tĆ©s…"
 
 msgid "Unable to connect to server."
 msgstr "Nem lehet a kiszolgÔlóhoz kapcsolódni."
 
 msgid "Waiting for response..."
-msgstr "VƔrakozƔs vƔlaszra..."
+msgstr "VĆ”rakozĆ”s vĆ”laszra…"
 
 #, c-format
 msgid "%s has been invited to this conversation."
@@ -6123,11 +6228,11 @@
 msgid "In local permit/deny"
 msgstr "A helyi engedƩlyezƩs/letiltƔs listƔban"
 
-msgid "Too evil (sender)"
-msgstr "TĆŗl rosszindulatĆŗ (küldő)"
-
-msgid "Too evil (receiver)"
-msgstr "Túl rosszindulatú (fogadó)"
+msgid "Warning level too high (sender)"
+msgstr "A figyelmeztetĆ©si szint tĆŗl magas (küldő)"
+
+msgid "Warning level too high (receiver)"
+msgstr "A figyelmeztetési szint túl magas (fogadó)"
 
 msgid "User temporarily unavailable"
 msgstr "A felhasznĆ”ló Ć”tmenetileg nem Ć©rhető el"
@@ -6230,6 +6335,9 @@
 msgid "Camera"
 msgstr "FĆ©nykĆ©pezőgĆ©p"
 
+msgid "Screen Sharing"
+msgstr "KĆ©pernyőmegosztĆ”s"
+
 #, c-format
 msgid "Free For Chat"
 msgstr "RƔƩrek csevegni"
@@ -6292,7 +6400,7 @@
 "only letters, numbers and spaces, or contain only numbers."
 msgstr ""
 "Nem lehet belépni: Sikertelen a belépés %s néven, mert a felhasznÔlónév "
-"érvénytelen. A felhasznÔlóneveknek érvényes email címnek kell lennie, vagy "
+"érvénytelen. A felhasznÔlóneveknek érvényes e-mail címnek kell lennie, vagy "
 "betűvel kell kezdődniük Ć©s betűket, szĆ”mokat, szókƶzƶket, vagy csak szĆ”mokat "
 "tartalmazhatnak."
 
@@ -6320,7 +6428,6 @@
 "Ɩn tĆŗl gyakran jelentkezik ki/be. VĆ”rjon tĆ­z percet Ć©s próbĆ”lja meg Ćŗjra. Ha "
 "tovƔbb folytatja, mƩg tƶbbet kell majd vƔrnia."
 
-#. client too old
 #, c-format
 msgid "The client version you are using is too old. Please upgrade at %s"
 msgstr ""
@@ -6368,6 +6475,7 @@
 msgid "Unable to get a valid login hash."
 msgstr "Nem kĆ©rhető le Ć©rvĆ©nyes belĆ©pő hash."
 
+#. allow multple logins?
 msgid "Password sent"
 msgstr "Jelszó elküldve"
 
@@ -6439,7 +6547,7 @@
 "Message is:\n"
 "%s"
 msgstr ""
-"ICQ email Ć©rkezett a kƶvetkezőtől: %s [%s]\n"
+"ICQ e-mail Ć©rkezett a kƶvetkezőtől: %s [%s]\n"
 "\n"
 "Az üzenet:\n"
 "%s"
@@ -6489,24 +6597,27 @@
 "gyakorisƔgƔnak a korlƔtjƔt."
 
 #, c-format
-msgid "You missed %hu message from %s because he/she was too evil."
-msgid_plural "You missed %hu messages from %s because he/she was too evil."
+msgid ""
+"You missed %hu message from %s because his/her warning level is too high."
+msgid_plural ""
+"You missed %hu messages from %s because his/her warning level is too high."
 msgstr[0] ""
-"Nem kapott meg %hu üzenetet a kƶvetkezőtől: %s, mert a feladó tĆŗl "
-"rosszindulatĆŗ volt."
+"Nem kapott meg %hu üzenetet a kƶvetkezőtől: %s, mert a feladó "
+"figyelmeztetési szintje túl magas volt."
 msgstr[1] ""
-"Nem kapott meg %hu üzenetet a kƶvetkezőtől: %s, mert a feladó tĆŗl "
-"rosszindulatĆŗ volt."
-
-#, c-format
-msgid "You missed %hu message from %s because you are too evil."
-msgid_plural "You missed %hu messages from %s because you are too evil."
+"Nem kapott meg %hu üzenetet a kƶvetkezőtől: %s, mert a feladó "
+"figyelmeztetési szintje túl magas volt."
+
+#, c-format
+msgid "You missed %hu message from %s because your warning level is too high."
+msgid_plural ""
+"You missed %hu messages from %s because your warning level is too high."
 msgstr[0] ""
-"Nem kapott meg %hu üzenetet a kƶvetkezőtől: %s, mert Ɩn tĆŗl rosszindulatĆŗ "
-"volt."
+"Nem kapott meg %hu üzenetet a kƶvetkezőtől: %s, mert az Ɩn figyelmeztetĆ©si "
+"szintje tĆŗl magas."
 msgstr[1] ""
-"Nem kapott meg %hu üzenetet a kƶvetkezőtől: %s, mert Ɩn tĆŗl rosszindulatĆŗ "
-"volt."
+"Nem kapott meg %hu üzenetet a kƶvetkezőtől: %s, mert az Ɩn figyelmeztetĆ©si "
+"szintje tĆŗl magas."
 
 #, c-format
 msgid "You missed %hu message from %s for an unknown reason."
@@ -6536,9 +6647,6 @@
 msgid "Member Since"
 msgstr "TagsƔg kezdete"
 
-msgid "Available Message"
-msgstr "ElĆ©rhetősĆ©gi üzenet"
-
 msgid "Your AIM connection may be lost."
 msgstr "Az AIM kapcsolata megszakadhatott."
 
@@ -6567,12 +6675,17 @@
 msgid "Personal Web Page"
 msgstr "SajƔt weboldal"
 
+#. aim_userinfo_t
+#. strip_html_tags
 msgid "Additional Information"
 msgstr "TovÔbbi informÔció"
 
 msgid "Zip Code"
 msgstr "IrÔnyítószÔm"
 
+msgid "Work Information"
+msgstr "Munkahelyi adatok"
+
 msgid "Division"
 msgstr "RƩszleg"
 
@@ -6582,9 +6695,6 @@
 msgid "Web Page"
 msgstr "Weboldal"
 
-msgid "Work Information"
-msgstr "Munkahelyi adatok"
-
 msgid "Pop-Up Message"
 msgstr "Felbukkanó üzenet"
 
@@ -6596,7 +6706,7 @@
 
 #, c-format
 msgid "No results found for email address %s"
-msgstr "Nem talÔlható eredmény a(z) %s email címre"
+msgstr "Nem talÔlható eredmény a(z) %s e-mail címre"
 
 #, c-format
 msgid "You should receive an email asking to confirm %s."
@@ -6632,7 +6742,7 @@
 "Error 0x%04x: Unable to change email address because there is already a "
 "request pending for this username."
 msgstr ""
-"Hiba 0x%04x: Nem sikerült megvÔltoztatni az email címet, mert egy kérés mÔr "
+"Hiba 0x%04x: Nem sikerült megvÔltoztatni az e-mail címet, mert egy kérés mÔr "
 "függőben van erre a felhasznĆ”lónĆ©vre."
 
 #, c-format
@@ -6640,7 +6750,7 @@
 "Error 0x%04x: Unable to change email address because the given address has "
 "too many usernames associated with it."
 msgstr ""
-"Hiba 0x%04x: Nem sikerült megvÔltoztatni az email címet, mert a megadott "
+"Hiba 0x%04x: Nem sikerült megvÔltoztatni az e-mail címet, mert a megadott "
 "cím túl sok felhasznÔlónévhez van tÔrsítva."
 
 #, c-format
@@ -6648,7 +6758,7 @@
 "Error 0x%04x: Unable to change email address because the given address is "
 "invalid."
 msgstr ""
-"Hiba 0x%04x: Nem sikerült megvÔltoztatni az email címet, mert a megadott "
+"Hiba 0x%04x: Nem sikerült megvÔltoztatni az e-mail címet, mert a megadott "
 "cƭm ƩrvƩnytelen."
 
 #, c-format
@@ -6660,7 +6770,7 @@
 
 #, c-format
 msgid "The email address for %s is %s"
-msgstr "%s email cĆ­me a kƶvetkező: %s"
+msgstr "%s e-mail cĆ­me a kƶvetkező: %s"
 
 msgid "Account Info"
 msgstr "FiókinformÔciók"
@@ -6722,7 +6832,7 @@
 "numbers and spaces, or contain only numbers."
 msgstr ""
 "Nem sikerült %s partner hozzÔadÔsa, mert a felhasznÔlónév érvénytelen. A "
-"felhasznÔlóneveknek érvényes email címnek kell lenniük, vagy betűvel kell "
+"felhasznÔlóneveknek érvényes e-mail címnek kell lenniük, vagy betűvel kell "
 "kezdődniük, Ć©s betűket, szĆ”mokat Ć©s szókƶzƶket, vagy csak szĆ”mokból "
 "Ɣllhatnak."
 
@@ -6798,12 +6908,6 @@
 msgstr ""
 "Az Ɩn IM kĆ©pe nem lett elküldve. Nem küldhet IM kĆ©peket AIM csevegĆ©sekbe."
 
-msgid "Away Message"
-msgstr "TÔvol üzenet"
-
-msgid "<i>(retrieving)</i>"
-msgstr "<i>(lekƩrƩs)</i>"
-
 msgid "iTunes Music Store Link"
 msgstr "iTunes zenebolt hivatkozƔs"
 
@@ -6877,19 +6981,19 @@
 "kattintva a nevükƶn, Ć©s az ā€žEngedĆ©lyezĆ©s Ćŗjra kĆ©rĆ©seā€ vĆ”lasztĆ”sĆ”val"
 
 msgid "Find Buddy by Email"
-msgstr "Partnerek keresƩse email cƭm szerint"
+msgstr "Partnerek keresƩse e-mail cƭm szerint"
 
 msgid "Search for a buddy by email address"
-msgstr "Partner keresƩse email cƭm alapjƔn"
+msgstr "Partner keresƩse e-mail cƭm alapjƔn"
 
 msgid "Type the email address of the buddy you are searching for."
-msgstr "Adja meg annak a partnernek az email cƭmƩt, akit keres."
+msgstr "Adja meg annak a partnernek az e-mail cƭmƩt, akit keres."
 
 msgid "_Search"
 msgstr "_KeresƩs"
 
 msgid "Set User Info (web)..."
-msgstr "FelhasznÔlói informÔciók beÔllítÔsa (web)..."
+msgstr "FelhasznĆ”lói informĆ”ciók beĆ”llĆ­tĆ”sa (web)…"
 
 msgid "Change Password (web)"
 msgstr "Jelszó módosítÔsa (web)"
@@ -6899,23 +7003,23 @@
 
 #. ICQ actions
 msgid "Set Privacy Options..."
-msgstr "MagƔnszfƩra-beƔllƭtƔsok..."
+msgstr "MagĆ”nszfĆ©ra-beĆ”llĆ­tĆ”sok…"
 
 #. AIM actions
 msgid "Confirm Account"
 msgstr "Fiók jóvÔhagyÔsa"
 
 msgid "Display Currently Registered Email Address"
-msgstr "A jelenleg regisztrƔlt email cƭm megjelenƭtƩse"
+msgstr "A jelenleg regisztrƔlt e-mail cƭm megjelenƭtƩse"
 
 msgid "Change Currently Registered Email Address..."
-msgstr "A jelenleg regisztrÔlt email cím módosítÔsa..."
+msgstr "A jelenleg regisztrĆ”lt e-mail cĆ­m módosĆ­tĆ”sa…"
 
 msgid "Show Buddies Awaiting Authorization"
 msgstr "Engedélyezésre vÔró partnerek megjelenítése"
 
 msgid "Search for Buddy by Email Address..."
-msgstr "Partner keresƩse email cƭm szerint..."
+msgstr "Partner keresĆ©se e-mail cĆ­m szerint…"
 
 msgid "Search for Buddy by Information"
 msgstr "Partner keresése informÔció alapjÔn"
@@ -6929,6 +7033,9 @@
 "hasznƔlata fƔjlƔtvitelhez (lassabb,\n"
 "de nem jelenĆ­ti meg az IP cĆ­met)"
 
+msgid "Allow multiple simultaneous logins"
+msgstr "Tƶbb pƔrhuzamos bejelentkezƩs engedƩlyezƩse"
+
 #, c-format
 msgid "Asking %s to connect to us at %s:%hu for Direct IM."
 msgstr ""
@@ -7098,7 +7205,7 @@
 
 #. title
 msgid "Sorry, you are not my type..."
-msgstr "Bocs, nem vagy az esetem..."
+msgstr "Bocs, nem vagy az esetem…"
 
 msgid "Add buddy with auth request failed"
 msgstr "A partner felvétele felhatalmazÔsi kéréssel meghiúsult"
@@ -7235,13 +7342,6 @@
 "Ne feledje, ha Ɩn hozta lĆ©tre,\n"
 "akkor ez a művelet törli a Qun-t."
 
-#, c-format
-msgid "Code [0x%02X]: %s"
-msgstr "Kód: [0x%02X]: %s"
-
-msgid "Group Operation Error"
-msgstr "Csoportművelet-hiba"
-
 #. we want to see window
 msgid "Do you want to approve the request?"
 msgstr "JóvÔ kívÔnja hagyni a kérést?"
@@ -7270,35 +7370,40 @@
 msgid "Failed to send IM."
 msgstr "Az azonnali üzenet küldése meghiúsult."
 
-msgid "Keep alive error"
-msgstr "Kapcsolat-fenntartƔsi hiba"
-
-msgid "Error requesting login token"
-msgstr "Hiba a bejelentkezƩsi jelsor lekƩrƩsekor"
-
-msgid "Unable to login. Check debug log."
-msgstr "Nem lehet bejelentkezni. Nézze meg a hibakeresési naplót."
-
-msgid "Unable to login"
-msgstr "Nem lehet bejelentkezni"
-
-#. we didn't successfully connect. tdt->toc_fd is valid here
-msgid "Unable to connect."
-msgstr "Nem lehet kapcsolódni."
-
 #, c-format
 msgid "Unknown-%d"
 msgstr "Ismeretlen-%d"
 
-msgid "TCP Address"
-msgstr "TCP cĆ­m"
-
-msgid "UDP Address"
-msgstr "UDP cĆ­m"
-
 msgid "Level"
 msgstr "Szint"
 
+msgid "Member"
+msgstr "Tag"
+
+msgid " VIP"
+msgstr " VIP"
+
+msgid " TCP"
+msgstr " TCP"
+
+msgid " FromMobile"
+msgstr " Mobilról"
+
+msgid " BindMobile"
+msgstr " Mobilkapcsolat"
+
+msgid " Video"
+msgstr " Videó"
+
+msgid " Space"
+msgstr " Hely"
+
+msgid "Flag"
+msgstr "Jelző"
+
+msgid "Ver"
+msgstr "Ver"
+
 msgid "Invalid name"
 msgstr "ƉrvĆ©nytelen nĆ©v"
 
@@ -7311,12 +7416,16 @@
 msgstr "<b>Utolsó frissítés</b>: %s<br>\n"
 
 #, c-format
+msgid "<b>Server</b>: %s: %d<br>\n"
+msgstr "<b>KiszolgÔló</b>: %s: %d<br>\n"
+
+#, c-format
 msgid "<b>Connection Mode</b>: %s<br>\n"
 msgstr "<b>Kapcsolat módja</b>: %s<br>\n"
 
 #, c-format
-msgid "<b>Server IP</b>: %s: %d<br>\n"
-msgstr "<b>KiszolgÔló IP</b>: %s: %d<br>\n"
+msgid "<b>Real hostname</b>: %s: %d<br>\n"
+msgstr "<b>Valódi gépnév</b>: %s: %d<br>\n"
 
 #, c-format
 msgid "<b>My Public IP</b>: %s<br>\n"
@@ -7368,12 +7477,94 @@
 msgid "Connect using TCP"
 msgstr "KapcsolódÔs TCP segítségével"
 
+msgid "resend interval(s)"
+msgstr "ĆŗjraküldĆ©si időkƶz"
+
+msgid "Keep alive interval(s)"
+msgstr "Kapcsolat-fenntartĆ”si időkƶz"
+
+msgid "Update interval(s)"
+msgstr "FrissĆ­tĆ©si időkƶz"
+
+#, c-format
+msgid "Invalid token len, %d"
+msgstr "ƉrvĆ©nytelen jelsorhossz: %d"
+
+msgid "Keep alive error"
+msgstr "Kapcsolat-fenntartƔsi hiba"
+
+msgid "Failed to connect server"
+msgstr "Nem sikerült a kiszolgÔlóhoz kapcsolódni"
+
 msgid "Socket error"
 msgstr "Foglalathiba"
 
+#, c-format
+msgid ""
+"Lost connection with server:\n"
+"%d, %s"
+msgstr ""
+"Elveszett a kapcsolat a kiszolgÔlóhoz:\n"
+"%d, %s"
+
 msgid "Unable to read from socket"
 msgstr "A foglalatból nem lehet olvasni"
 
+msgid "Write Error"
+msgstr "ƍrĆ”si hiba"
+
+msgid "Connection lost"
+msgstr "A kapcsolat elveszett"
+
+msgid "Couldn't resolve host"
+msgstr "Nem sikerült a kiszolgÔló feloldÔsa"
+
+msgid "hostname is NULL or port is 0"
+msgstr "a gépnév üres vagy a port 0"
+
+#, c-format
+msgid "Connecting server %s, retries %d"
+msgstr "KapcsolódÔsi a(z) %s kiszolgÔlóhoz, újrapróbÔlkozÔs: %d"
+
+#. we didn't successfully connect. tdt->toc_fd is valid here
+msgid "Unable to connect."
+msgstr "Nem lehet kapcsolódni."
+
+msgid "Could not resolve hostname"
+msgstr "A gépnév nem oldható fel"
+
+msgid "Unable to login. Check debug log."
+msgstr "Nem lehet bejelentkezni. Nézze meg a hibakeresési naplót."
+
+msgid "Unable to login"
+msgstr "Nem lehet bejelentkezni"
+
+#, c-format
+msgid ""
+"Reply %s(0x%02X )\n"
+"Sent %s(0x%02X )\n"
+"Room id %d, reply [0x%02X]: \n"
+"%s"
+msgstr ""
+"VƔlasz: %s(0x%02X )\n"
+"Elküldve: %s(0x%02X )\n"
+"Szobaazonosító: %d, vÔlasz: [0x%02X]: \n"
+"%s"
+
+msgid "Failed room reply"
+msgstr "A szobavƔlasz sikertelen"
+
+#, c-format
+msgid "You are not a member of group \"%s\"\n"
+msgstr "Ɩn nem tagja a kƶvetkező csoportnak: ā€ž%sā€\n"
+
+msgid "Can not decrypt login reply"
+msgstr "Nem fejthető vissza a bejelentkezĆ©si vĆ”lasz"
+
+#, c-format
+msgid "Invalid token reply code, 0x%02X"
+msgstr "ƉrvĆ©nytelen jelsorvĆ”laszkód, 0x%02X"
+
 #, c-format
 msgid "%d has declined the file %s"
 msgstr "%d visszautasĆ­totta a kƶvetkező fĆ”jlt: %s"
@@ -7385,12 +7576,6 @@
 msgid "%d canceled the transfer of %s"
 msgstr "%d megszakƭtotta a(z) %s ƔtvitelƩt"
 
-msgid "Connection lost"
-msgstr "A kapcsolat elveszett"
-
-msgid "Login failed, no reply"
-msgstr "A bejelentkezés meghiúsult, nincs vÔlasz"
-
 msgid "Do you want to add this buddy?"
 msgstr "Fel kƭvƔnja venni ezt a partnert?"
 
@@ -7427,6 +7612,14 @@
 msgid "%s is not in your buddy list"
 msgstr "%s nincs a partnerlistƔjƔn"
 
+#, c-format
+msgid "Notice from: %s"
+msgstr "ƉrtesĆ­tĆ©s a kƶvetkezőtől: %s"
+
+#, c-format
+msgid "%s"
+msgstr "%s"
+
 msgid "Connection closed (writing)"
 msgstr "Kapcsolat lezƔrva (ƭrƔs)"
 
@@ -7446,7 +7639,7 @@
 msgstr "Notes címjegyzék-informÔciók"
 
 msgid "Invite Group to Conference..."
-msgstr "Csoport meghƭvƔsa konferenciƔra..."
+msgstr "Csoport meghĆ­vĆ”sa konferenciĆ”ra…"
 
 msgid "Get Notes Address Book Info"
 msgstr "Notes címjegyzék-informÔciók lekérése"
@@ -7545,7 +7738,7 @@
 msgstr "ElĆ©rhető konferenciĆ”k"
 
 msgid "Create New Conference..."
-msgstr "Új konferencia létrehozÔsa..."
+msgstr "Új konferencia lĆ©trehozĆ”sa…"
 
 msgid "Invite user to a conference"
 msgstr "FelhasznÔló meghívÔsa konferenciÔra"
@@ -7564,7 +7757,7 @@
 msgstr "MeghƭvƔs konferenciƔra"
 
 msgid "Invite to Conference..."
-msgstr "MeghƭvƔs konferenciƔra..."
+msgstr "MeghĆ­vĆ”s konferenciĆ”ra…"
 
 msgid "Send TEST Announcement"
 msgstr "TESZT bejelentés küldése"
@@ -7757,16 +7950,16 @@
 msgstr "FelhasznÔló keresése"
 
 msgid "Import Sametime List..."
-msgstr "Sametime lista importƔlƔsa..."
+msgstr "Sametime lista importĆ”lĆ”sa…"
 
 msgid "Export Sametime List..."
-msgstr "Sametime lista exportƔlƔsa..."
+msgstr "Sametime lista exportĆ”lĆ”sa…"
 
 msgid "Add Notes Address Book Group..."
-msgstr "Notes cƭmjegyzƩkcsoport hozzƔadƔsa..."
+msgstr "Notes cĆ­mjegyzĆ©kcsoport hozzĆ”adĆ”sa…"
 
 msgid "User Search..."
-msgstr "FelhasznÔló keresése..."
+msgstr "FelhasznĆ”ló keresĆ©se…"
 
 msgid "Force login (ignore server redirects)"
 msgstr "BejelentkezĆ©s kĆ©nyszerĆ­tĆ©se (kiszolgĆ”ló Ć”tirĆ”nyĆ­tĆ”sok mellőzĆ©se)"
@@ -7868,7 +8061,7 @@
 
 #. Open file selector to select the public key.
 msgid "Open..."
-msgstr "MegnyitƔs..."
+msgstr "MegnyitĆ”s…"
 
 #, c-format
 msgid "The %s buddy is not present in the network"
@@ -7882,7 +8075,7 @@
 "az ImportƔlƔsra."
 
 msgid "_Import..."
-msgstr "_ImportƔlƔs..."
+msgstr "_ImportĆ”lĆ”s…"
 
 msgid "Select correct user"
 msgstr "Megfelelő felhasznĆ”ló kivĆ”lasztĆ”sa"
@@ -7977,7 +8170,7 @@
 msgstr "Azonnali üzenet jelszóval"
 
 msgid "Get Public Key..."
-msgstr "NyilvƔnos kulcs letƶltƩse..."
+msgstr "NyilvĆ”nos kulcs letƶltĆ©se…"
 
 msgid "Kill User"
 msgstr "FelhasznÔló kidobÔsa"
@@ -8040,7 +8233,7 @@
 
 #. Add new public key
 msgid "Open Public Key..."
-msgstr "NyilvƔnos kulcs megnyitƔsa..."
+msgstr "NyilvĆ”nos kulcs megnyitĆ”sa…"
 
 msgid "Channel Passphrase"
 msgstr "Csatorna jelmondata"
@@ -8269,7 +8462,7 @@
 msgstr "NyilvÔnos kulcs blablakódja"
 
 msgid "_More..."
-msgstr "_Tƶbb..."
+msgstr "_Tƶbb…"
 
 msgid "Detach From Server"
 msgstr "LevÔlÔs a kiszolgÔlóról"
@@ -8400,7 +8593,7 @@
 msgstr "NyilvĆ”nos kulcs ellenőrzĆ©se"
 
 msgid "_View..."
-msgstr "_NƩzet..."
+msgstr "_NĆ©zet…"
 
 msgid "Unsupported public key type"
 msgstr "Nem tÔmogatott típusú nyilvÔnos kulcs"
@@ -8445,6 +8638,10 @@
 msgid "Error loading SILC key pair"
 msgstr "Hiba a SILC kulcspƔr betƶltƩsekor"
 
+#, c-format
+msgid "Download %s: %s"
+msgstr "%s letƶltƩse: %s"
+
 msgid "Your Current Mood"
 msgstr "Az Ɩn jelenlegi hangulata"
 
@@ -8541,7 +8738,7 @@
 msgstr "A nap üzenetének megtekintése"
 
 msgid "Create SILC Key Pair..."
-msgstr "SILC kulcspƔr lƩtrehozƔsa..."
+msgstr "SILC kulcspĆ”r lĆ©trehozĆ”sa…"
 
 #, c-format
 msgid "User <I>%s</I> is not present in the network"
@@ -8742,7 +8939,7 @@
 msgstr "Minden üzenet digitĆ”lis alƔƭrĆ”sa Ć©s ellenőrzĆ©se"
 
 msgid "Creating SILC key pair..."
-msgstr "SILC kulcspƔr lƩtrehozƔsa..."
+msgstr "SILC kulcspĆ”r lĆ©trehozĆ”sa…"
 
 msgid "Cannot create SILC key pair\n"
 msgstr "Nem hozható létre SILC kulcspÔr\n"
@@ -8760,7 +8957,7 @@
 
 #, c-format
 msgid "Email: \t\t%s\n"
-msgstr "Email: \t\t%s\n"
+msgstr "E-mail: \t\t%s\n"
 
 #, c-format
 msgid "Host Name: \t%s\n"
@@ -8903,12 +9100,6 @@
 msgid "Could not create listen socket"
 msgstr "Nem sikerült lĆ©trehozni a figyelő foglalatot"
 
-msgid "Couldn't resolve host"
-msgstr "Nem sikerült a kiszolgÔló feloldÔsa"
-
-msgid "Could not resolve hostname"
-msgstr "A gépnév nem oldható fel"
-
 msgid "SIP usernames may not contain whitespaces or @ symbols"
 msgstr ""
 "A SIP felhasznÔlónevek nem tartalmazhatnak üreshely-karaktert vagy @ "
@@ -9020,7 +9211,7 @@
 
 #, c-format
 msgid "Email lookup restricted."
-msgstr "Email keresƩs korlƔtozva."
+msgstr "E-mail keresƩs korlƔtozva."
 
 #, c-format
 msgid "Keyword ignored."
@@ -9077,7 +9268,7 @@
 msgstr "Kapcsolat lezƔrva"
 
 msgid "Waiting for reply..."
-msgstr "VƔrakozƔs vƔlaszra..."
+msgstr "VĆ”rakozĆ”s vĆ”laszra…"
 
 msgid "TOC has come back from its pause. You may now send messages again."
 msgstr "A TOC ismĆ©t műkƶdőkĆ©pes. Mostantól Ćŗjra küldhet üzeneteket."
@@ -9108,7 +9299,7 @@
 msgstr "A fÔjl fejlécét nem sikerült kiírni. A fÔjl nem lesz elküldve."
 
 msgid "Save As..."
-msgstr "MentƩs mƔskƩnt..."
+msgstr "MentĆ©s mĆ”skĆ©nt…"
 
 #, c-format
 msgid "%s requests %s to accept %d file: %s (%.2f %s)%s%s"
@@ -9285,10 +9476,10 @@
 msgstr "Kihez csatlakozik a csevegƩsben?"
 
 msgid "Activate ID..."
-msgstr "Azonosító aktivÔlÔsa..."
+msgstr "AzonosĆ­tó aktivĆ”lĆ”sa…"
 
 msgid "Join User in Chat..."
-msgstr "FelhasznÔló csatlakoztatÔsa csevegéshez..."
+msgstr "FelhasznĆ”ló csatlakoztatĆ”sa csevegĆ©shez…"
 
 msgid "Open Inbox"
 msgstr "Bejƶvő levelek megnyitĆ”sa"
@@ -9364,9 +9555,6 @@
 msgid "%s is trying to send you a group of %d files.\n"
 msgstr "%s felajÔnlja egy %d fÔjlból Ôlló csoport elküldését.\n"
 
-msgid "Write Error"
-msgstr "ƍrĆ”si hiba"
-
 msgid "Yahoo! Japan Profile"
 msgstr "Yahoo! JapƔn profil"
 
@@ -9666,6 +9854,14 @@
 msgid "Could not resolve host name"
 msgstr "A gépnév nem oldható fel"
 
+#, c-format
+msgid "Requesting %s's attention..."
+msgstr "%s figyelmĆ©nek kĆ©rĆ©se…"
+
+#, c-format
+msgid "%s has requested your attention!"
+msgstr "%s a figyelmƩt kƩri!"
+
 #. *
 #. * A wrapper for purple_request_action() that uses @c Yes and @c No buttons.
 #.
@@ -9695,14 +9891,6 @@
 msgstr "%s ezentúl %s néven szerepel.\n"
 
 #, c-format
-msgid "Requesting %s's attention..."
-msgstr "%s figyelmƩnek kƩrƩse..."
-
-#, c-format
-msgid "%s has requested your attention!"
-msgstr "%s a figyelmƩt kƩri!"
-
-#, c-format
 msgid ""
 "%s has invited %s to the chat room %s:\n"
 "%s"
@@ -9717,6 +9905,20 @@
 msgid "Accept chat invitation?"
 msgstr "Elfogadja a meghƭvƔst a csevegƩsre?"
 
+#. Shortcut
+msgid "Shortcut"
+msgstr "Billentyűparancs"
+
+msgid "The text-shortcut for the smiley"
+msgstr "A hangulatjel szöveges billentyűparancsa"
+
+#. Stored Image
+msgid "Stored Image"
+msgstr "TƔrolt kƩp"
+
+msgid "Stored Image. (that'll have to do for now)"
+msgstr "TƔrolt kƩp"
+
 msgid "SSL Connection Failed"
 msgstr "Az SSL kapcsolat meghiĆŗsult"
 
@@ -9772,6 +9974,12 @@
 msgid "+++ %s became unidle"
 msgstr "+++ %s mƔr nem inaktƭv"
 
+#.
+#. * This string determines how some dates are displayed.  The default
+#. * string "%x %X" shows the date then the time.  Translators can
+#. * change this to "%X %x" if they want the time to be shown first,
+#. * followed by the date.
+#.
 #, c-format
 msgid "%x %X"
 msgstr "%x %X"
@@ -9789,7 +9997,7 @@
 "rƩgi fƔjl %s~ nƩven lett elmentve."
 
 msgid "Calculating..."
-msgstr "SzƔmƭtƔs..."
+msgstr "SzĆ”mĆ­tĆ”s…"
 
 msgid "Unknown."
 msgstr "Ismeretlen."
@@ -9886,6 +10094,11 @@
 msgid "Connection refused."
 msgstr "Kapcsolat visszautasĆ­tva."
 
+#. 10048
+#, c-format
+msgid "Address already in use."
+msgstr "A cƭm mƔr hasznƔlatban van."
+
 msgid "Internet Messenger"
 msgstr "Azonnali üzenetküldés"
 
@@ -9993,8 +10206,8 @@
 msgid "_Basic"
 msgstr "_Alap"
 
-msgid "Create this new account on the server"
-msgstr "Ezen új fiók létrehozÔsa a kiszolgÔlón"
+msgid "Create _this new account on the server"
+msgstr "Ezen új fió_k létrehozÔsa a kiszolgÔlón"
 
 msgid "_Advanced"
 msgstr "_Haladó"
@@ -10077,10 +10290,10 @@
 msgstr "Ü_zenet"
 
 msgid "_Send File..."
-msgstr "_FÔjl küldése..."
+msgstr "_FĆ”jl küldĆ©se…"
 
 msgid "Add Buddy _Pounce..."
-msgstr "_PartnerfigyelmeztetƩs felvƩtele..."
+msgstr "_PartnerfigyelmeztetĆ©s felvĆ©tele…"
 
 msgid "View _Log"
 msgstr "Nap_ló megtekintése"
@@ -10092,16 +10305,22 @@
 msgstr "MegjelenĆ­tĆ©s, ha elĆ©rhető"
 
 msgid "_Alias..."
-msgstr "Ɓl_nƩv..."
+msgstr "Ɓl_nĆ©v…"
 
 msgid "_Remove"
 msgstr "_EltƔvolƭtƔs"
 
+msgid "Set Custom Icon"
+msgstr "EgyƩni ikon beƔllƭtƔsa"
+
+msgid "Remove Custom Icon"
+msgstr "EgyƩni ikon eltƔvolƭtƔsa"
+
 msgid "Add _Buddy..."
-msgstr "P_artner felvƩtele..."
+msgstr "P_artner felvĆ©tele…"
 
 msgid "Add C_hat..."
-msgstr "Cse_vegƩs felvƩtele..."
+msgstr "Cse_vegĆ©s felvĆ©tele…"
 
 msgid "_Delete Group"
 msgstr "_Csoport tƶrlƩse"
@@ -10120,7 +10339,7 @@
 msgstr "Állandó"
 
 msgid "_Edit Settings..."
-msgstr "B_eƔllƭtƔsok szerkesztƩse..."
+msgstr "B_eĆ”llĆ­tĆ”sok szerkesztĆ©se…"
 
 msgid "_Collapse"
 msgstr "Ɩsszecs_ukĆ”s"
@@ -10148,16 +10367,16 @@
 msgstr "/_Partnerek"
 
 msgid "/Buddies/New Instant _Message..."
-msgstr "/Partnerek/Új azonnal_i üzenet..."
+msgstr "/Partnerek/Új azonnal_i üzenet…"
 
 msgid "/Buddies/Join a _Chat..."
-msgstr "/Partnerek/_CsatlakozƔs csevegƩshez..."
+msgstr "/Partnerek/_CsatlakozĆ”s csevegĆ©shez…"
 
 msgid "/Buddies/Get User _Info..."
-msgstr "/Partnerek/_FelhasznÔló adatainak lekérése..."
+msgstr "/Partnerek/_FelhasznĆ”ló adatainak lekĆ©rĆ©se…"
 
 msgid "/Buddies/View User _Log..."
-msgstr "/Partnerek/FelhasznÔló _naplójÔnak lekérése..."
+msgstr "/Partnerek/FelhasznĆ”ló _naplójĆ”nak lekĆ©rĆ©se…"
 
 msgid "/Buddies/Sh_ow"
 msgstr "/Partnerek/Me_gjelenƭtƩs"
@@ -10181,13 +10400,13 @@
 msgstr "/Partnerek/Part_nerek rendezƩse"
 
 msgid "/Buddies/_Add Buddy..."
-msgstr "/Partnerek/_Partner felvƩtele..."
+msgstr "/Partnerek/_Partner felvĆ©tele…"
 
 msgid "/Buddies/Add C_hat..."
-msgstr "/Partnerek/Cse_vegƩs felvƩtele..."
+msgstr "/Partnerek/Cse_vegĆ©s felvĆ©tele…"
 
 msgid "/Buddies/Add _Group..."
-msgstr "/Partnerek/C_soport felvƩtele..."
+msgstr "/Partnerek/C_soport felvĆ©tele…"
 
 msgid "/Buddies/_Quit"
 msgstr "/Partnerek/_KilƩpƩs"
@@ -10196,8 +10415,8 @@
 msgid "/_Accounts"
 msgstr "/_Fiókok"
 
-msgid "/Accounts/Manage"
-msgstr "/Fiókok/Kezelés"
+msgid "/Accounts/Manage Accounts"
+msgstr "/Fiókok/Fiókok kezelése"
 
 #. Tools
 msgid "/_Tools"
@@ -10218,6 +10437,9 @@
 msgid "/Tools/Pr_ivacy"
 msgstr "/Eszkƶzƶk/Ma_gƔnszfƩra"
 
+msgid "/Tools/Smile_y"
+msgstr "/Eszkƶzƶk/Mosol_y"
+
 msgid "/Tools/_File Transfers"
 msgstr "/Eszkƶzƶk/_FƔjlƔtvitelek"
 
@@ -10253,7 +10475,7 @@
 "<b>Occupants:</b> %d"
 msgstr ""
 "\n"
-"<b>Tulajdonosok:</b> %d"
+"<b>JelenlĆ©vők:</b> %d"
 
 #, c-format
 msgid ""
@@ -10300,22 +10522,22 @@
 msgstr "InaktĆ­v (%d p)"
 
 msgid "/Buddies/New Instant Message..."
-msgstr "/Partnerek/Új azonnali üzenet..."
+msgstr "/Partnerek/Új azonnali üzenet…"
 
 msgid "/Buddies/Join a Chat..."
-msgstr "/Partnerek/CsatlakozƔs csevegƩshez..."
+msgstr "/Partnerek/CsatlakozĆ”s csevegĆ©shez…"
 
 msgid "/Buddies/Get User Info..."
-msgstr "/Partnerek/FelhasznÔló adatainak lekérése..."
+msgstr "/Partnerek/FelhasznĆ”ló adatainak lekĆ©rĆ©se…"
 
 msgid "/Buddies/Add Buddy..."
-msgstr "/Partnerek/Partner felvƩtele..."
+msgstr "/Partnerek/Partner felvĆ©tele…"
 
 msgid "/Buddies/Add Chat..."
-msgstr "/Partnerek/CsevegƩs felvƩtele..."
+msgstr "/Partnerek/CsevegĆ©s felvĆ©tele…"
 
 msgid "/Buddies/Add Group..."
-msgstr "/Partnerek/Csoport felvƩtele..."
+msgstr "/Partnerek/Csoport felvĆ©tele…"
 
 msgid "/Tools/Privacy"
 msgstr "/Eszkƶzƶk/MagƔnszfƩra"
@@ -10380,15 +10602,15 @@
 "<span weight='bold' size='larger'>Welcome to %s!</span>\n"
 "\n"
 "You have no accounts enabled. Enable your IM accounts from the <b>Accounts</"
-"b> window at <b>Accounts->Manage</b>. Once you enable accounts, you'll be "
-"able to sign on, set your status, and talk to your friends."
+"b> window at <b>Accounts->Manage Accounts</b>. Once you enable accounts, "
+"you'll be able to sign on, set your status, and talk to your friends."
 msgstr ""
 "<span weight='bold' size='larger'>Üdvözli a %s!</span>\n"
 "\n"
-"Nincsenek engedélyezve fiókjai. A <b>Fiókok</b> ablak <b>Fiókok -> Kezelés</"
-"b> menüpontja segĆ­tsĆ©gĆ©vel engedĆ©lyezze azonnali üzenő fiókjait. A fiókok "
-"engedƩlyezƩse utƔn bejelentkezhet, beƔllƭthatja ƔllapotƔt Ʃs cseveghet "
-"barƔtaival."
+"Nincsenek engedélyezve fiókjai. A <b>Fiókok</b> ablak <b>Fiókok -> Fiókok "
+"kezelĆ©se</b> menüpontja segĆ­tsĆ©gĆ©vel engedĆ©lyezze azonnali üzenő fiókjait. A "
+"fiókok engedélyezése utÔn bejelentkezhet, beÔllíthatja ÔllapotÔt és "
+"cseveghet barƔtaival."
 
 #. set the Show Offline Buddies option. must be done
 #. * after the treeview or faceprint gets mad. -Robot101
@@ -10449,6 +10671,12 @@
 msgid "Please enter the name of the group to be added."
 msgstr "Adja meg a felvenni kƭvƔnt csoport nevƩt."
 
+msgid "Enable Account"
+msgstr "Fiók engedélyezése"
+
+msgid "<PurpleMain>/Accounts/Enable Account"
+msgstr "<PurpleMain>/Fiókok/Fiók engedélyezése"
+
 msgid "<PurpleMain>/Accounts/"
 msgstr "<PurpleMain>/Fiókok/"
 
@@ -10461,12 +10689,6 @@
 msgid "_Disable"
 msgstr "_TiltƔs"
 
-msgid "Enable Account"
-msgstr "Fiók engedélyezése"
-
-msgid "<PurpleMain>/Accounts/Enable Account"
-msgstr "<PurpleMain>/Fiókok/Fiók engedélyezése"
-
 msgid "/Tools"
 msgstr "/Eszkƶzƶk"
 
@@ -10544,17 +10766,14 @@
 msgstr "Ikon elrejtƩse"
 
 msgid "Save Icon As..."
-msgstr "Ikon mentƩse mƔskƩnt..."
+msgstr "Ikon mentĆ©se mĆ”skĆ©nt…"
 
 msgid "Set Custom Icon..."
-msgstr "EgyƩni ikon beƔllƭtƔsa..."
+msgstr "EgyĆ©ni ikon beĆ”llĆ­tĆ”sa…"
 
 msgid "Change Size"
 msgstr "Méret módosítÔsa"
 
-msgid "Remove Custom Icon"
-msgstr "EgyƩni ikon eltƔvolƭtƔsa"
-
 msgid "Show All"
 msgstr "Ɩsszes megjelenĆ­tĆ©se"
 
@@ -10563,55 +10782,55 @@
 msgstr "/_TƔrsalgƔs"
 
 msgid "/Conversation/New Instant _Message..."
-msgstr "/TÔrsalgÔs/Új azonnali ü_zenet..."
+msgstr "/TĆ”rsalgĆ”s/Új azonnali ü_zenet…"
 
 msgid "/Conversation/_Find..."
-msgstr "/TƔrsalgƔs/Ker_esƩs..."
+msgstr "/TĆ”rsalgĆ”s/Ker_esĆ©s…"
 
 msgid "/Conversation/View _Log"
 msgstr "/TÔrsalgÔs/Nap_ló megtekintése"
 
 msgid "/Conversation/_Save As..."
-msgstr "/TƔrsalgƔs/_MentƩs mƔskƩnt..."
+msgstr "/TĆ”rsalgĆ”s/_MentĆ©s mĆ”skĆ©nt…"
 
 msgid "/Conversation/Clea_r Scrollback"
 msgstr "/TĆ”rsalgĆ”s/Elő_zmĆ©nyek tƶrlĆ©se"
 
 msgid "/Conversation/Se_nd File..."
-msgstr "/TÔrsalgÔs/FÔjl kül_dése..."
+msgstr "/TĆ”rsalgĆ”s/FĆ”jl kül_dĆ©se…"
 
 msgid "/Conversation/Add Buddy _Pounce..."
-msgstr "/TƔrsalgƔs/_PartnerfigyelmeztetƩs felvƩtele..."
+msgstr "/TĆ”rsalgĆ”s/_PartnerfigyelmeztetĆ©s felvĆ©tele…"
 
 msgid "/Conversation/_Get Info"
 msgstr "/TÔrsalgÔs/_InformÔció lekérése"
 
 msgid "/Conversation/In_vite..."
-msgstr "/TƔrsalgƔs/Me_ghƭvƔs..."
+msgstr "/TĆ”rsalgĆ”s/Me_ghĆ­vĆ”s…"
 
 msgid "/Conversation/M_ore"
 msgstr "/TƔrsalgƔs/_Tƶbb"
 
 msgid "/Conversation/Al_ias..."
-msgstr "/TƔrsalgƔs/Ɓl_nƩv..."
+msgstr "/TĆ”rsalgĆ”s/Ɓl_nĆ©v…"
 
 msgid "/Conversation/_Block..."
-msgstr "/TƔrsalgƔs/_TiltƔs..."
+msgstr "/TĆ”rsalgĆ”s/_TiltĆ”s…"
 
 msgid "/Conversation/_Unblock..."
-msgstr "/TƔrsalgƔs/_TiltƔs feloldƔsa..."
+msgstr "/TĆ”rsalgĆ”s/_TiltĆ”s feloldĆ”sa…"
 
 msgid "/Conversation/_Add..."
-msgstr "/TƔrsalgƔs/_HozzƔadƔs..."
+msgstr "/TĆ”rsalgĆ”s/_HozzĆ”adĆ”s…"
 
 msgid "/Conversation/_Remove..."
-msgstr "/TƔrsalgƔs/_EltƔvolƭtƔs..."
+msgstr "/TĆ”rsalgĆ”s/_EltĆ”volĆ­tĆ”s…"
 
 msgid "/Conversation/Insert Lin_k..."
-msgstr "/TÔrsalgÔs/_HivatkozÔs beszúrÔsa..."
+msgstr "/TĆ”rsalgĆ”s/_HivatkozĆ”s beszĆŗrĆ”sa…"
 
 msgid "/Conversation/Insert Imag_e..."
-msgstr "/TÔrsalgÔs/Ké_p beszúrÔsa..."
+msgstr "/TĆ”rsalgĆ”s/KĆ©_p beszĆŗrĆ”sa…"
 
 msgid "/Conversation/_Close"
 msgstr "/TƔrsalgƔs/_BezƔrƔs"
@@ -10650,37 +10869,37 @@
 msgstr "/TÔrsalgÔs/Napló megtekintése"
 
 msgid "/Conversation/Send File..."
-msgstr "/TÔrsalgÔs/FÔjl küldése..."
+msgstr "/TĆ”rsalgĆ”s/FĆ”jl küldĆ©se…"
 
 msgid "/Conversation/Add Buddy Pounce..."
-msgstr "/TƔrsalgƔs/PartnerfigyelmeztetƩs felvƩtele..."
+msgstr "/TĆ”rsalgĆ”s/PartnerfigyelmeztetĆ©s felvĆ©tele…"
 
 msgid "/Conversation/Get Info"
 msgstr "/TÔrsalgÔs/InformÔció lekérése"
 
 msgid "/Conversation/Invite..."
-msgstr "/TƔrsalgƔs/MeghƭvƔs..."
+msgstr "/TĆ”rsalgĆ”s/MeghĆ­vĆ”s…"
 
 msgid "/Conversation/Alias..."
-msgstr "/TƔrsalgƔs/ƁlnƩv..."
+msgstr "/TĆ”rsalgĆ”s/ƁlnĆ©v…"
 
 msgid "/Conversation/Block..."
-msgstr "/TƔrsalgƔs/TiltƔs..."
+msgstr "/TĆ”rsalgĆ”s/TiltĆ”s…"
 
 msgid "/Conversation/Unblock..."
-msgstr "/TƔrsalgƔs/TiltƔs feloldƔsa..."
+msgstr "/TĆ”rsalgĆ”s/TiltĆ”s feloldĆ”sa…"
 
 msgid "/Conversation/Add..."
-msgstr "/TƔrsalgƔs/HozzƔadƔs..."
+msgstr "/TĆ”rsalgĆ”s/HozzĆ”adĆ”s…"
 
 msgid "/Conversation/Remove..."
-msgstr "/TƔrsalgƔs/EltƔvolƭtƔs..."
+msgstr "/TĆ”rsalgĆ”s/EltĆ”volĆ­tĆ”s…"
 
 msgid "/Conversation/Insert Link..."
-msgstr "/TÔrsalgÔs/HivatkozÔs beszúrÔsa..."
+msgstr "/TĆ”rsalgĆ”s/HivatkozĆ”s beszĆŗrĆ”sa…"
 
 msgid "/Conversation/Insert Image..."
-msgstr "/TÔrsalgÔs/Kép beszúrÔsa..."
+msgstr "/TĆ”rsalgĆ”s/KĆ©p beszĆŗrĆ”sa…"
 
 msgid "/Options/Enable Logging"
 msgstr "/BeÔllítÔsok/NaplózÔs engedélyezése"
@@ -10695,7 +10914,7 @@
 msgstr "/BeĆ”llĆ­tĆ”sok/IdőbĆ©lyegek mutatĆ”sa"
 
 msgid "User is typing..."
-msgstr "A felhasznÔló gépel..."
+msgstr "A felhasznĆ”ló gĆ©pel…"
 
 #, c-format
 msgid ""
@@ -10821,12 +11040,13 @@
 msgid "Fatal Error"
 msgstr "VƩgzetes hiba"
 
-msgid "lead developer"
-msgstr "vezető fejlesztő"
-
 msgid "developer"
 msgstr "fejlesztő"
 
+#. feel free to not translate this
+msgid "Ka-Hing Cheung"
+msgstr "Ka-Hing Cheung"
+
 msgid "support"
 msgstr "tÔmogató"
 
@@ -10858,6 +11078,9 @@
 msgid "original author"
 msgstr "eredeti szerző"
 
+msgid "lead developer"
+msgstr "vezető fejlesztő"
+
 msgid "Afrikaans"
 msgstr "afrikaans"
 
@@ -10993,6 +11216,9 @@
 msgid "Norwegian Nynorsk"
 msgstr "NorvƩg Nynorsk"
 
+msgid "Occitan"
+msgstr "OkcitƔn"
+
 msgid "Punjabi"
 msgstr "PandzsƔbi"
 
@@ -11231,25 +11457,37 @@
 msgstr "_CsevegƩs eltƔvolƭtƔsa"
 
 msgid "Right-click for more unread messages...\n"
-msgstr "TovÔbbi olvasatlan üzenetekért kattintson a jobb egérgombbal...\n"
-
-msgid "Change Status"
-msgstr "Állapot módosítÔsa"
-
-msgid "Show Buddy List"
-msgstr "Partnerlista mutatƔsa"
-
-msgid "New Message..."
-msgstr "Új üzenet..."
-
-msgid "Mute Sounds"
-msgstr "Hangok nƩmƭtƔsa"
-
-msgid "Blink on New Message"
-msgstr "Villogjon új üzenetkor"
-
-msgid "Quit"
-msgstr "KilƩpƩs"
+msgstr "TovĆ”bbi olvasatlan üzenetekĆ©rt kattintson a jobb egĆ©rgombbal…\n"
+
+msgid "_Change Status"
+msgstr "Álla_pot módosítÔsa"
+
+msgid "Show Buddy _List"
+msgstr "Partnerlista m_utatƔsa"
+
+msgid "_Unread Messages"
+msgstr "_Olvasatlan üzenetek"
+
+msgid "New _Message..."
+msgstr "Új ü_zenet…"
+
+msgid "_Accounts"
+msgstr "_Fiókok"
+
+msgid "Plu_gins"
+msgstr "BővĆ­t_mĆ©nyek"
+
+msgid "Pr_eferences"
+msgstr "_BeƔllƭtƔsok"
+
+msgid "Mute _Sounds"
+msgstr "_Hangok nƩmƭtƔsa"
+
+msgid "_Blink on New Message"
+msgstr "_Villogjon új üzenetkor"
+
+msgid "_Quit"
+msgstr "_KilƩpƩs"
 
 msgid "Not started"
 msgstr "Nem indult el"
@@ -11363,6 +11601,12 @@
 msgid "Color to draw the name of an action message."
 msgstr "Műveletüzenet nevének rajzszíne."
 
+msgid "Action Message Name Color for Whispered Message"
+msgstr "Műveletüzenet névszíne suttogott üzenethez"
+
+msgid "Whisper Message Name Color"
+msgstr "Suttogott üzenet névszíne"
+
 msgid "Typing notification color"
 msgstr "GƩpelƩsƩrtesƭtƩs szƭne"
 
@@ -11379,7 +11623,7 @@
 msgstr "GƩpelƩsƩrtesƭtƩs engedƩlyezƩse"
 
 msgid "_Copy Email Address"
-msgstr "Email cƭm _mƔsolƔsa"
+msgstr "E-mail cƭm _mƔsolƔsa"
 
 msgid "_Open Link in Browser"
 msgstr "Hivatk_ozĆ”s megnyitĆ”sa bƶngĆ©szőben"
@@ -11430,7 +11674,11 @@
 
 #, c-format
 msgid "_Save Image..."
-msgstr "KƩp mentƩ_se..."
+msgstr "KĆ©p mentĆ©_se…"
+
+#, c-format
+msgid "_Add Custom Smiley..."
+msgstr "_EgyĆ©ni hangulatjel hozzĆ”adĆ”sa…"
 
 msgid "Select Font"
 msgstr "Betűkészlet kivÔlasztÔsa"
@@ -11469,9 +11717,21 @@
 msgid "Insert Image"
 msgstr "Kép beszúrÔsa"
 
+#, c-format
+msgid ""
+"This smiley is disabled because a custom smiley exists for this shortcut:\n"
+" %s"
+msgstr ""
+"Ez a hangulatjel letiltva, mivel mƔr lƩtezik egyƩni hangulatjel ehhez a "
+"billentyűparancshoz:\n"
+" %s"
+
 msgid "Smile!"
 msgstr "Mosolyt!"
 
+msgid "_Manage custom smileys"
+msgstr "EgyƩni hangulatjelek _kezelƩse"
+
 msgid "This theme has no available smileys."
 msgstr "Ehhez a tƩmƔhoz nem Ɣllnak rendelkezƩsre hangulatjelek."
 
@@ -11598,7 +11858,7 @@
 msgstr "Törli a naplót?"
 
 msgid "Delete Log..."
-msgstr "Napló törlése..."
+msgstr "Napló tƶrlĆ©se…"
 
 #, c-format
 msgid "<span size='larger' weight='bold'>Conversation in %s on %s</span>"
@@ -11634,7 +11894,7 @@
 "  -v, --version       display the current version and exit\n"
 msgstr ""
 "%s %s\n"
-"HasznĆ”lat: %s [KAPCSOLƓ]...\n"
+"HasznĆ”lat: %s [KAPCSOLƓ]…\n"
 "\n"
 "  -c, --config=KƖNYVTƁR A KƖNYVTƁR hasznĆ”lata a beĆ”llĆ­tófĆ”jlokhoz\n"
 "  -d, --debug         hibakereső üzenetek kiĆ­rĆ”sa a szabvĆ”nyos kimenetre\n"
@@ -11662,7 +11922,7 @@
 "  -v, --version       display the current version and exit\n"
 msgstr ""
 "%s %s\n"
-"HasznĆ”lat: %s [KAPCSOLƓ]...\n"
+"HasznĆ”lat: %s [KAPCSOLƓ]…\n"
 "\n"
 "  -c, --config=KƖNYVTƁR A KƖNYVTƁR hasznĆ”lata a beĆ”llĆ­tófĆ”jlokhoz\n"
 "  -d, --debug         hibakereső üzenetek kiĆ­rĆ”sa a szabvĆ”nyos kimenetre\n"
@@ -11732,8 +11992,8 @@
 #, c-format
 msgid "<b>%d new email.</b>"
 msgid_plural "<b>%d new emails.</b>"
-msgstr[0] "<b>%d Ćŗj email.</b>"
-msgstr[1] "<b>%d Ćŗj email.</b>"
+msgstr[0] "<b>%d Ćŗj e-mail.</b>"
+msgstr[1] "<b>%d Ćŗj e-mail.</b>"
 
 #, c-format
 msgid "The browser command \"%s\" is invalid."
@@ -11851,10 +12111,10 @@
 msgstr "Hang _lejƔtszƔsa"
 
 msgid "Brows_e..."
-msgstr "_TallózÔs..."
+msgstr "_TallózĆ”s…"
 
 msgid "Br_owse..."
-msgstr "_TallózÔs..."
+msgstr "_TallózĆ”s…"
 
 msgid "Pre_view"
 msgstr "_ElőnĆ©zet"
@@ -12188,6 +12448,12 @@
 msgid "Play"
 msgstr "LejƔtszƔs"
 
+msgid "_Browse..."
+msgstr "_TallózĆ”s…"
+
+msgid "_Reset"
+msgstr "_VisszaƔllƭtƔs"
+
 msgid "_Report idle time:"
 msgstr "_InaktivitƔs idejƩnek jelentƩse:"
 
@@ -12318,7 +12584,7 @@
 msgstr "Új név vÔlasztÔsa"
 
 msgid "Select Folder..."
-msgstr "VƔlasszon mappƔt..."
+msgstr "VĆ”lasszon mappĆ”t…"
 
 #. list button
 msgid "_Get List"
@@ -12359,14 +12625,55 @@
 msgid "Status for %s"
 msgstr "%s Ɣllapota"
 
+msgid "Custom Smiley"
+msgstr "EgyƩni hangulatjel"
+
+msgid "Duplicate Shortcut"
+msgstr "Kettőzƶtt billentyűparancs"
+
+msgid ""
+"A custom smiley for the selected shortcut already exists. Please specify a "
+"different shortcut."
+msgstr ""
+"MÔr létezik egyéni hangulatjel a kivÔlasztott billentyűparancshoz. Adjon meg "
+"mÔsik billentyűparancsot."
+
+msgid "More Data needed"
+msgstr "TovÔbbi adatok szükségesek"
+
+msgid "Please provide a shortcut to associate with the smiley."
+msgstr "Adja meg a hangulatjelhez tÔrsítandó billentyűparancsot."
+
+msgid "Please select an image for the smiley."
+msgstr "VƔlassza ki a kƩpet a hangulatjelhez."
+
+msgid "Edit Smiley"
+msgstr "Hangulatjel szerkesztƩse"
+
+msgid "Add Smiley"
+msgstr "Hangulatjel hozzƔadƔsa"
+
+msgid "Smiley _Image"
+msgstr "Hangulatjel _kƩp"
+
+#. Smiley shortcut
+msgid "Smiley S_hortcut"
+msgstr "_Hangulatjel billentyűparancsa"
+
+msgid "Smiley"
+msgstr "Hangulatjel"
+
+msgid "Custom Smiley Manager"
+msgstr "EgyĆ©nihangulatjel-kezelő"
+
 msgid "Waiting for network connection"
 msgstr "VÔrakozÔs a hÔlózati kapcsolatra"
 
 msgid "New status..."
-msgstr "Új Ôllapot..."
+msgstr "Új Ć”llapot…"
 
 msgid "Saved statuses..."
-msgstr "Mentett Ɣllapotok..."
+msgstr "Mentett Ć”llapotok…"
 
 msgid "Status Selector"
 msgstr "ÁllapotvÔlasztó"
@@ -12571,7 +12878,7 @@
 msgstr "A partner offline"
 
 msgid "Point values to use when..."
-msgstr "PontƩrtƩkek hasznƔlata, ha..."
+msgstr "PontĆ©rtĆ©kek hasznĆ”lata, ha…"
 
 msgid ""
 "The buddy with the <i>largest score</i> is the buddy who will have priority "
@@ -12584,7 +12891,7 @@
 msgstr "Az utolsó partner hasznÔlata, ha a pontszÔmok azonosak"
 
 msgid "Point values to use for account..."
-msgstr "Fiókhoz hasznÔlandó pontértékek..."
+msgstr "Fiókhoz hasznĆ”landó pontĆ©rtĆ©kek…"
 
 #. *< type
 #. *< ui_requirement
@@ -12769,7 +13076,7 @@
 msgstr "_Partner ƶsszerendelƩse"
 
 msgid "Unable to send email"
-msgstr "Nem küldhető email"
+msgstr "Nem küldhető e-mail"
 
 msgid "The evolution executable was not found in the PATH."
 msgstr ""
@@ -12777,13 +13084,13 @@
 "Ćŗtvonalon."
 
 msgid "An email address was not found for this buddy."
-msgstr "Nem talÔlható email cím ehhez a partnerhez."
+msgstr "Nem talÔlható e-mail cím ehhez a partnerhez."
 
 msgid "Add to Address Book"
 msgstr "HozzƔadƔs a cƭmjegyzƩkhez"
 
 msgid "Send Email"
-msgstr "Email küldése"
+msgstr "E-mail küldése"
 
 #. Configuration frame
 msgid "Evolution Integration Configuration"
@@ -12831,7 +13138,7 @@
 msgstr "VezetƩknƩv:"
 
 msgid "Email:"
-msgstr "Email:"
+msgstr "E-mail:"
 
 #. *< type
 #. *< ui_requirement
@@ -13322,7 +13629,7 @@
 msgstr "24 órĆ”s i_dőformĆ”tum kĆ©nyszerĆ­tĆ©se"
 
 msgid "Show dates in..."
-msgstr "DƔtumok megjelenƭtƩse..."
+msgstr "DĆ”tumok megjelenĆ­tĆ©se…"
 
 msgid "Co_nversations:"
 msgstr "_TƔrsalgƔsok:"
--- a/po/nl.po	Fri Aug 15 03:39:45 2008 +0000
+++ b/po/nl.po	Fri Aug 15 03:41:24 2008 +0000
@@ -59,7 +59,7 @@
 #: ../pidgin/gtkmain.c:736
 #, c-format
 msgid "%s encountered errors migrating your settings from %s to %s. Please investigate and complete the migration by hand. Please report this error at http://developer.pidgin.im"
-msgstr "%s zorgde voor fouten tijdens het verplaatsen van je instellingen van %s naar %s. Verplaats het alstublieft handmatig. Rapporteer deze fout alstublieft op http://developer.pidgin.im"
+msgstr "%s zorgde voor fouten tijdens het verplaatsen van je instellingen van %s naar %s. Verplaats het handmatig. Rapporteer deze fout alstublieft op http://developer.pidgin.im"
 
 #: ../finch/gntaccount.c:126
 #: ../finch/gntaccount.c:505
@@ -407,7 +407,7 @@
 "Online: %d\n"
 "Total: %d"
 msgstr ""
-"On-line: %d\n"
+"Online: %d\n"
 "Totaal: %d"
 
 #: ../finch/gntblist.c:274
@@ -571,7 +571,7 @@
 #: ../finch/gntblist.c:742
 #: ../finch/gntblist.c:1150
 msgid "Auto-join"
-msgstr "Auto-deelnemen"
+msgstr "Automatisch deelnemen"
 
 #: ../finch/gntblist.c:745
 #: ../finch/gntblist.c:1185
@@ -590,7 +590,7 @@
 
 #: ../finch/gntblist.c:760
 msgid "You must give a name for the group to add."
-msgstr "Geef alsjeblieft de naam van de toe te voegen groep."
+msgstr "Geef de naam van de toe te voegen groep."
 
 #: ../finch/gntblist.c:773
 msgid "A group with the name already exists."
@@ -645,7 +645,7 @@
 
 #: ../finch/gntblist.c:1253
 msgid "Add Buddy Pounce"
-msgstr "Contact-alarm toevoegen"
+msgstr "Contactalarm toevoegen"
 
 #. if (q_bud && is_online(q_bud->status)) {
 #: ../finch/gntblist.c:1260
@@ -827,7 +827,7 @@
 
 #: ../finch/gntblist.c:2657
 msgid "Please enter the username or alias of the person you would like to Block/Unblock."
-msgstr "Geef alsjeblieft de gebruikersnaam of bijnaam van de persoon wie je wilt Blokkeren/Deblokkeren."
+msgstr "Geef de gebruikersnaam of bijnaam van de persoon wie je wilt Blokkeren/Deblokkeren."
 
 #. Not multiline
 #. Not masked?
@@ -888,12 +888,12 @@
 #: ../finch/gntblist.c:2706
 #: ../pidgin/gtkdialogs.c:766
 msgid "New Instant Message"
-msgstr "Nieuw express-bericht"
+msgstr "Nieuw bericht"
 
 #: ../finch/gntblist.c:2708
 #: ../pidgin/gtkdialogs.c:768
 msgid "Please enter the username or alias of the person you would like to IM."
-msgstr "Geef alsjeblieft de gebruikersnaam van de persoon aan wie je een bericht zou willen sturen."
+msgstr "Geef de gebruikersnaam van de persoon aan wie je een bericht zou willen sturen."
 
 #: ../finch/gntblist.c:2769
 msgid "Channel"
@@ -916,7 +916,7 @@
 #: ../finch/gntblist.c:2844
 #: ../pidgin/gtkdialogs.c:999
 msgid "Please enter the username or alias of the person whose log you would like to view."
-msgstr "Geef alsjeblieft de gebruikersnaam of bijnaam van de persoon waarvan je het logboek wilt opvragen."
+msgstr "Geef de gebruikersnaam of bijnaam van de persoon waarvan je het logboek wilt opvragen."
 
 #. Create the "Options" frame.
 #: ../finch/gntblist.c:2898
@@ -1247,7 +1247,7 @@
 "Please enter the name of the user you wish to invite,\n"
 "along with an optional invite message."
 msgstr ""
-"Geef alstublieft de bijnaam van de persoon die u wilt uitnodigen,\n"
+"Geef de bijnaam van de persoon die u wilt uitnodigen,\n"
 "eventueel met een uitnodigende tekst."
 
 #: ../finch/gntconv.c:610
@@ -1265,7 +1265,7 @@
 
 #: ../finch/gntconv.c:638
 msgid "Add Buddy Pounce..."
-msgstr "Contact-alarm toevoegen..."
+msgstr "Contactalarm toevoegen..."
 
 #: ../finch/gntconv.c:652
 msgid "Invite..."
@@ -1760,12 +1760,12 @@
 #: ../finch/gntpounce.c:338
 #: ../pidgin/gtkpounce.c:538
 msgid "New Buddy Pounce"
-msgstr "Nieuw contact-alarm"
+msgstr "Nieuw contactalarm"
 
 #: ../finch/gntpounce.c:338
 #: ../pidgin/gtkpounce.c:538
 msgid "Edit Buddy Pounce"
-msgstr "Contact-alarm bewerken"
+msgstr "Contactalarm bewerken"
 
 #: ../finch/gntpounce.c:343
 msgid "Pounce Who"
@@ -1785,47 +1785,47 @@
 #: ../finch/gntpounce.c:386
 #: ../pidgin/gtkpounce.c:606
 msgid "Pounce When Buddy..."
-msgstr "Allarmeren als..."
+msgstr "Alarmeren als contactpersoon..."
 
 #: ../finch/gntpounce.c:388
 msgid "Signs on"
-msgstr "Aanmeldt"
+msgstr "...zich aanmeldt"
 
 #: ../finch/gntpounce.c:389
 msgid "Signs off"
-msgstr "Afmeldt"
+msgstr "...zich afmeldt"
 
 #: ../finch/gntpounce.c:390
 msgid "Goes away"
-msgstr "Weggaat"
+msgstr "...weggaat"
 
 #: ../finch/gntpounce.c:391
 msgid "Returns from away"
-msgstr "Van afwezigheid terugkeert "
+msgstr "...van afwezigheid terugkeert "
 
 #: ../finch/gntpounce.c:392
 msgid "Becomes idle"
-msgstr "Inactief wordt"
+msgstr "...inactief wordt"
 
 #: ../finch/gntpounce.c:393
 msgid "Is no longer idle"
-msgstr "Weer actief wordt"
+msgstr "...weer actief wordt"
 
 #: ../finch/gntpounce.c:394
 msgid "Starts typing"
-msgstr "Start met typen"
+msgstr "...start met typen"
 
 #: ../finch/gntpounce.c:395
 msgid "Pauses while typing"
-msgstr "Pauzeert tijdens het typen"
+msgstr "...pauzeert tijdens het typen"
 
 #: ../finch/gntpounce.c:396
 msgid "Stops typing"
-msgstr "Stopt met typen"
+msgstr "...stopt met typen"
 
 #: ../finch/gntpounce.c:397
 msgid "Sends a message"
-msgstr "Een bericht verstuurt"
+msgstr "...een bericht verstuurt"
 
 #. Create the "Action" frame.
 #: ../finch/gntpounce.c:426
@@ -1878,13 +1878,13 @@
 #: ../pidgin/gtkpounce.c:1132
 #, c-format
 msgid "Are you sure you want to delete the pounce on %s for %s?"
-msgstr "Wilt u het contact-alarm van %s op %s echt verwijderen?"
+msgstr "Wilt u het contactalarm van %s op %s echt verwijderen?"
 
 #: ../finch/gntpounce.c:708
 #: ../finch/gntui.c:96
 #: ../pidgin/gtkpounce.c:1361
 msgid "Buddy Pounces"
-msgstr "Contact-alarmen"
+msgstr "Contactalarmen"
 
 #: ../finch/gntpounce.c:817
 #: ../pidgin/gtkpounce.c:1460
@@ -1949,7 +1949,7 @@
 #: ../finch/gntpounce.c:845
 #: ../pidgin/gtkpounce.c:1479
 msgid "Unknown pounce event. Please report this!"
-msgstr "Onbekend contact-alarm. Rapporteer dit alstublieft!"
+msgstr "Onbekend contactalarm. Rapporteer dit alstublieft!"
 
 #: ../finch/gntprefs.c:92
 msgid "Based on keyboard use"
@@ -2367,7 +2367,7 @@
 #  Different status message expander
 #: ../finch/gntstatus.c:311
 msgid "Please enter a different title for the status."
-msgstr "Geef alstublieft een andere titel aan de status."
+msgstr "Geef een andere titel aan de status."
 
 #: ../finch/gntstatus.c:452
 msgid "Substatus"
@@ -3849,7 +3849,7 @@
 "\n"
 "WARNING: This plugin is still alpha code and may crash frequently.  Use it at your own risk!"
 msgstr ""
-"Bij het weergeven van logboeken zal deze plugin ook de logboeken van andere clients voor expresberichten tonen. Op dit moment kunnen we dit doen voor Adium, MSN Messenger en Trillian.\n"
+"Bij het weergeven van logboeken zal deze plugin ook de logboeken van andere clients voor berichten tonen. Op dit moment kunnen we dit doen voor Adium, MSN Messenger en Trillian.\n"
 "\n"
 "WAARSCHUWING: Deze plugin is testcode en kan (regelmatig) crashen. Op eigen risico dus!"
 
@@ -4460,7 +4460,7 @@
 
 #: ../libpurple/protocols/gg/gg.c:662
 msgid "Only online"
-msgstr "Alleen on-line"
+msgstr "Alleen online"
 
 #: ../libpurple/protocols/gg/gg.c:666
 #: ../libpurple/protocols/gg/gg.c:667
@@ -4689,7 +4689,7 @@
 #. summary
 #: ../libpurple/protocols/gg/gg.c:2194
 msgid "Polish popular IM"
-msgstr "Populaire Poolse client voor Expresberichten"
+msgstr "Populaire Poolse client voor berichten"
 
 #: ../libpurple/protocols/gg/gg.c:2248
 msgid "Gadu-Gadu User"
@@ -4965,7 +4965,7 @@
 
 #: ../libpurple/protocols/irc/msgs.c:389
 msgid "Online since"
-msgstr "On-line sinds"
+msgstr "Online sinds"
 
 #: ../libpurple/protocols/irc/msgs.c:393
 msgid "<b>Defining adjective:</b>"
@@ -6112,11 +6112,11 @@
 
 #: ../libpurple/protocols/jabber/jabber.c:1079
 msgid "Please fill out the information below to change your account registration."
-msgstr "Vul alstublieft onderstaand formulier in om je account te veranderen."
+msgstr "Vul onderstaand formulier in om je account te veranderen."
 
 #: ../libpurple/protocols/jabber/jabber.c:1082
 msgid "Please fill out the information below to register your new account."
-msgstr "Vul alstublieft onderstaand formulier in om uw nieuwe account te registreren."
+msgstr "Vul onderstaand formulier in om uw nieuwe account te registreren."
 
 #: ../libpurple/protocols/jabber/jabber.c:1090
 #: ../libpurple/protocols/jabber/jabber.c:1091
@@ -6806,7 +6806,7 @@
 #: ../libpurple/protocols/jabber/si.c:1092
 #, c-format
 msgid "Please select the resource of %s to which you would like to send a file"
-msgstr "Geef alstublieft de bron van %s naar degene wie je een bestand wil sturen"
+msgstr "Geef de bron van %s naar degene wie je een bestand wil sturen"
 
 #: ../libpurple/protocols/jabber/si.c:1108
 msgid "Select a Resource"
@@ -8793,7 +8793,7 @@
 
 #: ../libpurple/protocols/novell/novell.c:2185
 msgid "Unable to connect to server. Please enter the address of the server you wish to connect to."
-msgstr "Kan geen verbinding makenmet server. Geef alstublieft de naam op van de server waarmee u contact wilt maken."
+msgstr "Kan geen verbinding makenmet server. Geef de naam op van de server waarmee u contact wilt maken."
 
 #: ../libpurple/protocols/novell/novell.c:2214
 msgid "Error. SSL support is not installed."
@@ -9059,7 +9059,7 @@
 #: ../pidgin/gtkutils.c:2485
 #: ../pidgin/plugins/gevolution/new_person_dialog.c:336
 msgid "Buddy Icon"
-msgstr "Contactplaatje"
+msgstr "pictogram"
 
 #: ../libpurple/protocols/oscar/oscar.c:645
 msgid "Voice"
@@ -9323,7 +9323,7 @@
 
 #: ../libpurple/protocols/oscar/oscar.c:2451
 msgid "Please authorize me so I can add you to my buddy list."
-msgstr "Geef mij alstublieft toestemming zodat ik u kan toevoegen aan mijn contactenlijst."
+msgstr "Geef mij toestemming zodat ik u kan toevoegen aan mijn contactenlijst."
 
 #: ../libpurple/protocols/oscar/oscar.c:2480
 msgid "Authorization Request Message:"
@@ -9331,7 +9331,7 @@
 
 #: ../libpurple/protocols/oscar/oscar.c:2481
 msgid "Please authorize me!"
-msgstr "Geef mij alstublieft toestemming"
+msgstr "Geef mij toestemming, alstublieft!"
 
 #: ../libpurple/protocols/oscar/oscar.c:2521
 #: ../libpurple/protocols/oscar/oscar.c:2529
@@ -9489,7 +9489,7 @@
 
 #: ../libpurple/protocols/oscar/oscar.c:3151
 msgid "Online Since"
-msgstr "On-line sinds"
+msgstr "Online sinds"
 
 #: ../libpurple/protocols/oscar/oscar.c:3156
 #: ../libpurple/protocols/yahoo/yahoo_profile.c:1188
@@ -9507,7 +9507,7 @@
 
 #: ../libpurple/protocols/oscar/oscar.c:3602
 msgid "The last action you attempted could not be performed because you are over the rate limit. Please wait 10 seconds and try again."
-msgstr "Uw laatste actie is niet gebeurd omdat uw snelheid te hoog ligt. Wacht alstublieft 10 seconden en probeer het dan nogmaals."
+msgstr "Uw laatste actie is niet gebeurd omdat uw snelheid te hoog ligt. Wacht 10 seconden en probeer het dan nogmaals."
 
 #: ../libpurple/protocols/oscar/oscar.c:3687
 #: ../libpurple/protocols/toc/toc.c:977
@@ -10405,7 +10405,7 @@
 #: ../libpurple/protocols/qq/qq.c:515
 #, c-format
 msgid "<b>Current Online</b>: %d<br>\n"
-msgstr "<b>Nu on-line</b>: %d<br>\n"
+msgstr "<b>Nu online</b>: %d<br>\n"
 
 #: ../libpurple/protocols/qq/qq.c:516
 #, c-format
@@ -10768,7 +10768,7 @@
 #: ../libpurple/protocols/sametime/sametime.c:3433
 #, c-format
 msgid "Please enter a topic for the new conference, and an invitation message to be sent to %s"
-msgstr "Geef alstublieft een onderwerp voor deze bijeenkomst, en een uitnodiging om naar %s te sturen"
+msgstr "Geef een onderwerp voor deze bijeenkomst, en een uitnodiging om naar %s te sturen"
 
 #: ../libpurple/protocols/sametime/sametime.c:3437
 msgid "New Conference"
@@ -10819,7 +10819,7 @@
 #: ../libpurple/protocols/sametime/sametime.c:3691
 #, c-format
 msgid "No host or IP address has been configured for the Meanwhile account %s. Please enter one below to continue logging in."
-msgstr "Er is geen computernaam of IP-adres inegsteld in Meanwhile-account %s. Vul hieronder alstublieft een in om dor te gaan met de aanmelding."
+msgstr "Er is geen computernaam of IP-adres inegsteld in Meanwhile-account %s. Vul hieronder ƩƩn in om door te gaan met de aanmelding."
 
 #: ../libpurple/protocols/sametime/sametime.c:3696
 msgid "Meanwhile Connection Setup"
@@ -11609,7 +11609,7 @@
 #: ../libpurple/protocols/silc10/chat.c:596
 #, c-format
 msgid "Please enter the %s channel private group name and passphrase."
-msgstr "Geef alstublieft de %s privƩ groepsnaam en het wachtwoord."
+msgstr "Geef de %s privƩ groepsnaam en het wachtwoord."
 
 #: ../libpurple/protocols/silc/chat.c:617
 #: ../libpurple/protocols/silc10/chat.c:598
@@ -12284,7 +12284,7 @@
 #: ../libpurple/protocols/silc/silc.c:1025
 #: ../libpurple/protocols/silc10/silc.c:726
 msgid "Online Services"
-msgstr "On-line diensten"
+msgstr "Online diensten"
 
 #: ../libpurple/protocols/silc/silc.c:1028
 #: ../libpurple/protocols/silc10/silc.c:729
@@ -12310,12 +12310,12 @@
 #: ../libpurple/protocols/silc10/silc.c:754
 #: ../libpurple/protocols/silc10/silc.c:755
 msgid "User Online Status Attributes"
-msgstr "On-line gebruikersgegevens"
+msgstr "Online gebruikersgegevens"
 
 #: ../libpurple/protocols/silc/silc.c:1053
 #: ../libpurple/protocols/silc10/silc.c:756
 msgid "You can let other users see your online status information and your personal information. Please fill the information you would like other users to see about yourself."
-msgstr "U kunt andere gebruikers uw on-line gegevens lateninzien. Geef de informatie waarvan u vind dat anderen die mogen zien."
+msgstr "U kunt andere gebruikers uw online gegevens laten inzien. Geef de informatie waarvan u vind dat anderen die mogen zien."
 
 #: ../libpurple/protocols/silc/silc.c:1094
 #: ../libpurple/protocols/silc/silc.c:1100
@@ -12387,7 +12387,7 @@
 #: ../libpurple/protocols/silc/silc.c:1308
 #: ../libpurple/protocols/silc10/silc.c:1009
 msgid "Online Status"
-msgstr "On-line status"
+msgstr "Online status"
 
 #: ../libpurple/protocols/silc/silc.c:1316
 #: ../libpurple/protocols/silc10/silc.c:1017
@@ -13275,7 +13275,7 @@
 #: ../libpurple/protocols/yahoo/yahoo.c:3297
 #: ../libpurple/protocols/yahoo/yahoo.c:3355
 msgid "Appear Online"
-msgstr "On-line weergeven"
+msgstr "Online weergeven"
 
 #: ../libpurple/protocols/yahoo/yahoo.c:3300
 #: ../libpurple/protocols/yahoo/yahoo.c:3376
@@ -14041,11 +14041,11 @@
 
 #: ../pidgin.desktop.in.h:2
 msgid "Pidgin Internet Messenger"
-msgstr "Pidgin Expresberichten"
+msgstr "Pidgin Internet Messenger"
 
 #: ../pidgin.desktop.in.h:3
 msgid "Send instant messages over multiple protocols"
-msgstr "Multi-protocol programma voor expresberichten"
+msgstr "Stuur chatberichten over verschillende diensten."
 
 #: ../pidgin/eggtrayicon.c:128
 msgid "Orientation"
@@ -14235,7 +14235,7 @@
 
 #: ../pidgin/gtkblist.c:1060
 msgid "Please enter the appropriate information about the chat you would like to join.\n"
-msgstr "Geef alstublieft de benodigde informatie van de chat die u wilt openen.\n"
+msgstr "Geef de benodigde informatie van de chat die u wilt openen.\n"
 
 #: ../pidgin/gtkblist.c:1072
 #: ../pidgin/gtkblist.c:6939
@@ -14273,7 +14273,7 @@
 
 #: ../pidgin/gtkblist.c:1450
 msgid "Add Buddy _Pounce..."
-msgstr "_Contact-alarm toevoegen"
+msgstr "_Contactalarm toevoegen"
 
 #: ../pidgin/gtkblist.c:1455
 #: ../pidgin/gtkblist.c:1459
@@ -14341,15 +14341,15 @@
 
 #: ../pidgin/gtkblist.c:1618
 msgid "Auto-Join"
-msgstr "Auto-deelnemen"
+msgstr "Automatisch deelnemen"
 
 #: ../pidgin/gtkblist.c:1620
 msgid "Persistent"
-msgstr "Blijvend"
+msgstr "Blijvend deelnemen"
 
 #: ../pidgin/gtkblist.c:1630
 msgid "_Edit Settings..."
-msgstr "Instellingen _Bewerken..."
+msgstr "Instellingen _bewerken..."
 
 #: ../pidgin/gtkblist.c:1664
 #: ../pidgin/gtkblist.c:1689
@@ -14423,11 +14423,11 @@
 
 #: ../pidgin/gtkblist.c:3252
 msgid "/Buddies/Show/_Protocol Icons"
-msgstr "/Contacten/Weergave/_Protocol plaatjes"
+msgstr "/Contacten/Weergave/_Protocol pictogrammen"
 
 #: ../pidgin/gtkblist.c:3253
 msgid "/Buddies/_Sort Buddies"
-msgstr "/Contacten/Contacten _Sorteren"
+msgstr "/Contacten/Contacten _sorteren"
 
 #: ../pidgin/gtkblist.c:3255
 msgid "/Buddies/_Add Buddy..."
@@ -14462,7 +14462,7 @@
 
 #: ../pidgin/gtkblist.c:3267
 msgid "/Tools/Buddy _Pounces"
-msgstr "/Extra/_Contact-alarm"
+msgstr "/Extra/_Contactalarm"
 
 #: ../pidgin/gtkblist.c:3268
 msgid "/Tools/_Certificates"
@@ -14507,7 +14507,7 @@
 
 #: ../pidgin/gtkblist.c:3281
 msgid "/Help/Online _Help"
-msgstr "/Hulp/On-line _hulp"
+msgstr "/Hulp/Online _hulp"
 
 #: ../pidgin/gtkblist.c:3282
 msgid "/Help/_Debug Window"
@@ -14571,7 +14571,7 @@
 
 #: ../pidgin/gtkblist.c:3552
 msgid "Total Buddies"
-msgstr "Totaa aantal contacten"
+msgstr "Aantal contacten"
 
 #: ../pidgin/gtkblist.c:3914
 #, c-format
@@ -14722,7 +14722,7 @@
 
 #: ../pidgin/gtkblist.c:5599
 msgid "/Buddies/Show/Protocol Icons"
-msgstr "/Contacten/Weergave/Protocol plaatjes"
+msgstr "/Contacten/Weergave/Protocol pictogrammen"
 
 #: ../pidgin/gtkblist.c:6565
 msgid "Add a buddy.\n"
@@ -14750,7 +14750,7 @@
 
 #: ../pidgin/gtkblist.c:6929
 msgid "Please enter an alias, and the appropriate information about the chat you would like to add to your buddy list.\n"
-msgstr "Geef alstublieft de bijnaam en andere informatie van de chat die u wilt toevoegen aan de contactlijst.\n"
+msgstr "Geef de bijnaam en andere informatie van de chat die u wilt toevoegen aan de contactlijst.\n"
 
 #: ../pidgin/gtkblist.c:6952
 msgid "A_lias:"
@@ -14766,7 +14766,7 @@
 
 #: ../pidgin/gtkblist.c:6986
 msgid "Please enter the name of the group to be added."
-msgstr "Geef alstublieft de naam van de toe te voegen groep."
+msgstr "Geef de naam van de toe te voegen groep."
 
 #: ../pidgin/gtkblist.c:7645
 msgid "Enable Account"
@@ -14813,7 +14813,7 @@
 #: ../pidgin/gtkconv.c:770
 #: ../pidgin/gtkconv.c:797
 msgid "That buddy is not on the same protocol as this chat."
-msgstr "Die gebruiker is niet on-line met hetzelfde protocol als het chatgesprek"
+msgstr "Die gebruiker is niet online met hetzelfde protocol als het chatgesprek"
 
 #: ../pidgin/gtkconv.c:791
 msgid "You are not currently signed on with an account that can invite that buddy."
@@ -14826,7 +14826,7 @@
 #. Put our happy label in it.
 #: ../pidgin/gtkconv.c:875
 msgid "Please enter the name of the user you wish to invite, along with an optional invite message."
-msgstr "Geef alstublieft de bijnaam van de persoon die u wilt uitnodigen, eventueel met een uitnodigende tekst"
+msgstr "Geef de bijnaam van de persoon die u wilt uitnodigen, eventueel met een uitnodigende tekst"
 
 #: ../pidgin/gtkconv.c:896
 msgid "_Buddy:"
@@ -14876,7 +14876,7 @@
 
 #: ../pidgin/gtkconv.c:2730
 msgid "Unable to save icon file to disk."
-msgstr "Kan contactplaatje niet opslaan op schijf."
+msgstr "Kan pictogram niet opslaan op schijf."
 
 #: ../pidgin/gtkconv.c:2829
 msgid "Save Icon"
@@ -14937,7 +14937,7 @@
 
 #: ../pidgin/gtkconv.c:3077
 msgid "/Conversation/Add Buddy _Pounce..."
-msgstr "/Gesprek/_Contact-alarm toevoegen..."
+msgstr "/Gesprek/_Contactalarm toevoegen..."
 
 #: ../pidgin/gtkconv.c:3079
 msgid "/Conversation/_Get Info"
@@ -15032,7 +15032,7 @@
 
 #: ../pidgin/gtkconv.c:3394
 msgid "/Conversation/Add Buddy Pounce..."
-msgstr "/Gesprek/Contact-alarm toevoegen..."
+msgstr "/Gesprek/Contactalarm toevoegen..."
 
 #: ../pidgin/gtkconv.c:3400
 msgid "/Conversation/Get Info"
@@ -15513,7 +15513,7 @@
 
 #: ../pidgin/gtkdialogs.c:183
 msgid "Ubuntu Georgian Translators"
-msgstr "Ubuntu Georgische Vertaleers"
+msgstr "Ubuntu Georgische Vertalers"
 
 #: ../pidgin/gtkdialogs.c:184
 msgid "Kannada"
@@ -15702,7 +15702,7 @@
 #: ../pidgin/gtkdialogs.c:401
 #, c-format
 msgid "%s is a graphical modular messaging client based on libpurple which is capable of connecting to AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, MySpaceIM, Gadu-Gadu, and QQ all at once.  It is written using GTK+.<BR><BR>You may modify and redistribute the program under the terms of the GPL (version 2 or later).  A copy of the GPL is contained in the 'COPYING' file distributed with %s.  %s is copyrighted by its contributors.  See the 'COPYRIGHT' file for the complete list of contributors.  We provide no warranty for this program.<BR><BR>"
-msgstr "%s is een modulair programma voor expresberichten en kan gebruik maken van de netwerken van AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, MySpaceIM, Gadu-Gadu, and QQ en nog allemaal tegelijk ook. Het is geschreven met behulp van GTK+. <BR><BR>U mag het programma aanpassen en verspreiden als u zich houdt aan de GPL (versie 2 of nieuwer). Er is een kopie van deze licentie meegeleverd in het bestandje 'COPYING' geleverd met %s. Het copyright van %s ligt bij de mensen die  hiereen hebben meegewerkt. Zie voor een volledige lijst van de bijdragers het bestand 'COPYRIGHT'. Dit programma wordt geleverd zonder enige garantie.<BR><BR>"
+msgstr "%s is een grafisch modulair programma voor chatberichten en kan tegelijkertijd gebruik maken van de netwerken: AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, MySpaceIM, Gadu-Gadu, en QQ. Pidgin is geschreven met behulp van GTK+. <BR><BR>U mag het programma aanpassen en verspreiden als u zich houdt aan de GPL (versie 2 of nieuwer). Er is een kopie van deze licentie meegeleverd in het bestand 'COPYING' geleverd met %s. Het copyright van %s ligt bij de mensen die hier aan hebben meegewerkt. Zie voor een volledige lijst van de bijdragers het bestand 'COPYRIGHT'. Dit programma wordt geleverd zonder enige garantie.<BR><BR>"
 
 #: ../pidgin/gtkdialogs.c:419
 msgid "<FONT SIZE=\"4\">IRC:</FONT> #pidgin on irc.freenode.net<BR><BR>"
@@ -15718,7 +15718,7 @@
 
 #: ../pidgin/gtkdialogs.c:454
 msgid "Retired Developers"
-msgstr "Ex-ontwikkelaars"
+msgstr "Gestopte ontwikkelaars"
 
 #: ../pidgin/gtkdialogs.c:469
 msgid "Retired Crazy Patch Writers"
@@ -15734,7 +15734,7 @@
 
 #: ../pidgin/gtkdialogs.c:519
 msgid "Past Translators"
-msgstr "Ex-vertalers"
+msgstr "Gestopte vertalers"
 
 #: ../pidgin/gtkdialogs.c:537
 msgid "Debugging Information"
@@ -15758,7 +15758,7 @@
 
 #: ../pidgin/gtkdialogs.c:907
 msgid "Please enter the username or alias of the person whose info you would like to view."
-msgstr "Geef alsjeblieft de gebruikersnaam of bijnaamvan de persoon waarvan u de informatie wilt opvragen."
+msgstr "Geef de gebruikersnaam of bijnaamvan de persoon waarvan u de informatie wilt opvragen."
 
 #: ../pidgin/gtkdialogs.c:997
 msgid "View User Log"
@@ -15890,11 +15890,11 @@
 
 #: ../pidgin/gtkdocklet.c:727
 msgid "Mute _Sounds"
-msgstr "Geluiden _dempen"
+msgstr "Geluiden _dempen..."
 
 #: ../pidgin/gtkdocklet.c:734
 msgid "_Blink on New Message"
-msgstr "Bij nieuw bericht _knipperen..."
+msgstr "_Knipperen bij nieuw bericht..."
 
 #: ../pidgin/gtkdocklet.c:744
 msgid "_Quit"
@@ -16210,7 +16210,7 @@
 
 #: ../pidgin/gtkimhtmltoolbar.c:830
 msgid "_Manage custom smileys"
-msgstr "Eigen smiley's _beheren"
+msgstr "Eigen smileys _beheren"
 
 #: ../pidgin/gtkimhtmltoolbar.c:867
 msgid "This theme has no available smileys."
@@ -16274,7 +16274,7 @@
 
 #: ../pidgin/gtkimhtmltoolbar.c:1233
 msgid "Insert IM Image"
-msgstr "Chat-afbeelding invoegen"
+msgstr "Afbeelding invoegen"
 
 #: ../pidgin/gtkimhtmltoolbar.c:1234
 msgid "Insert Smiley"
@@ -16286,7 +16286,7 @@
 
 #: ../pidgin/gtkimhtmltoolbar.c:1311
 msgid "<i>_Italic</i>"
-msgstr " <i>(Schuin)</i>"
+msgstr " <i>_Cursief</i>"
 
 #: ../pidgin/gtkimhtmltoolbar.c:1312
 msgid "<u>_Underline</u>"
@@ -16341,7 +16341,7 @@
 
 #: ../pidgin/gtklog.c:245
 msgid "Log Deletion Failed"
-msgstr "Verwijderen Logboek Mislukt"
+msgstr "Logboek verwijderen mislukt"
 
 #: ../pidgin/gtklog.c:246
 msgid "Check permissions and try again."
@@ -16350,17 +16350,17 @@
 #: ../pidgin/gtklog.c:292
 #, c-format
 msgid "Are you sure you want to permanently delete the log of the conversation with %s which started at %s?"
-msgstr "Weet je zeker dat je het logboek van het gesprek in met %s  dat starte op %s permanent wilt verwijderen?"
+msgstr "Weet je zeker dat je het logboek van het gesprek in met %s  dat startte op %s permanent wilt verwijderen?"
 
 #: ../pidgin/gtklog.c:303
 #, c-format
 msgid "Are you sure you want to permanently delete the log of the conversation in %s which started at %s?"
-msgstr "Weet je zeker dat je het logboek van het gesprek in %s  dat starte op %s permanent wilt verwijderen?"
+msgstr "Weet je zeker dat je het logboek van het gesprek in %s  dat startte op %s permanent wilt verwijderen?"
 
 #: ../pidgin/gtklog.c:308
 #, c-format
 msgid "Are you sure you want to permanently delete the system log which started at %s?"
-msgstr "Weet je zeker dat je het systeem-logboek dat starte op %s permanent wilt verwijderen?"
+msgstr "Weet je zeker dat je het systeem-logboek dat startte op %s permanent wilt verwijderen?"
 
 #: ../pidgin/gtklog.c:323
 msgid "Delete Log?"
@@ -16518,7 +16518,7 @@
 #: ../pidgin/gtknotify.c:1033
 #, c-format
 msgid "The browser command \"%s\" is invalid."
-msgstr "De webbrowseropdracht \"%s\" is ongeldig."
+msgstr "De webbrowser-opdracht \"%s\" is ongeldig."
 
 #: ../pidgin/gtknotify.c:1035
 #: ../pidgin/gtknotify.c:1047
@@ -16597,7 +16597,7 @@
 #. Create the "Pounce on Whom" frame.
 #: ../pidgin/gtkpounce.c:553
 msgid "Pounce on Whom"
-msgstr "Wie Alarmeren"
+msgstr "Wie alarmeren"
 
 #: ../pidgin/gtkpounce.c:580
 msgid "_Buddy name:"
@@ -16694,7 +16694,7 @@
 
 #: ../pidgin/gtkprefs.c:593
 msgid "Install Theme"
-msgstr "Installeer Thema"
+msgstr "Installeer thema"
 
 #: ../pidgin/gtkprefs.c:646
 msgid "Select a smiley theme that you would like to use from the list below. New themes can be installed by dragging and dropping them onto the theme list."
@@ -16726,7 +16726,7 @@
 
 #: ../pidgin/gtkprefs.c:950
 msgid "Conversation Window Hiding"
-msgstr "Gesprek-venster Verbergen"
+msgstr "Gespreksvenster verbergen"
 
 #: ../pidgin/gtkprefs.c:951
 msgid "_Hide new IM conversations:"
@@ -16772,11 +16772,11 @@
 
 #: ../pidgin/gtkprefs.c:988
 msgid "Left Vertical"
-msgstr "Links vertikaal"
+msgstr "Links verticaal"
 
 #: ../pidgin/gtkprefs.c:989
 msgid "Right Vertical"
-msgstr "rechts vertikaal"
+msgstr "rechts verticaal"
 
 #: ../pidgin/gtkprefs.c:996
 msgid "N_ew conversations:"
@@ -16796,11 +16796,11 @@
 
 #: ../pidgin/gtkprefs.c:1052
 msgid "Enable buddy ic_on animation"
-msgstr "Bewegende _contactplaatjes weergeven"
+msgstr "Bewegende _pictogrammen weergeven"
 
 #: ../pidgin/gtkprefs.c:1059
 msgid "_Notify buddies that you are typing to them"
-msgstr "Laat anderen weten dat je aan het _typen bent"
+msgstr "Laat anderen weten dat je naar ze aan het _typen bent"
 
 #: ../pidgin/gtkprefs.c:1062
 msgid "Highlight _misspelled words"
@@ -16816,7 +16816,7 @@
 
 #: ../pidgin/gtkprefs.c:1071
 msgid "Minimi_ze new conversation windows"
-msgstr "Venster Minimaliseren "
+msgstr "Minimalizeer nieuwe gespreksvensters "
 
 #: ../pidgin/gtkprefs.c:1075
 msgid "Minimum input area height in lines:"
@@ -16907,7 +16907,7 @@
 "Proxy & Browser preferences are configured\n"
 "in GNOME Preferences"
 msgstr ""
-"Proxy & browser voorkeuren zijn ingesteld\n"
+"Proxy- en browser-voorkeuren zijn ingesteld\n"
 "in GNOME-instellingen"
 
 #: ../pidgin/gtkprefs.c:1317
@@ -16968,7 +16968,7 @@
 
 #: ../pidgin/gtkprefs.c:1486
 msgid "Firebird"
-msgstr "Firefox"
+msgstr "Firebird"
 
 #: ../pidgin/gtkprefs.c:1487
 msgid "Epiphany"
@@ -16980,7 +16980,7 @@
 
 #: ../pidgin/gtkprefs.c:1557
 msgid "Browser Selection"
-msgstr "Browserselectie"
+msgstr "Browser-selectie"
 
 #: ../pidgin/gtkprefs.c:1561
 msgid "_Browser:"
@@ -16992,7 +16992,7 @@
 
 #: ../pidgin/gtkprefs.c:1571
 msgid "Browser default"
-msgstr "Standaardbrowser"
+msgstr "Standaard-browser"
 
 #: ../pidgin/gtkprefs.c:1572
 msgid "Existing window"
@@ -17086,7 +17086,7 @@
 
 #: ../pidgin/gtkprefs.c:1911
 msgid "Volume:"
-msgstr "Geluid:"
+msgstr "Volume:"
 
 #: ../pidgin/gtkprefs.c:1978
 msgid "Play"
@@ -17110,7 +17110,7 @@
 
 #: ../pidgin/gtkprefs.c:2069
 msgid "_Auto-reply:"
-msgstr "_Auto-antwoord:"
+msgstr "_Automatisch antwoord:"
 
 #: ../pidgin/gtkprefs.c:2073
 msgid "When both away and idle"
@@ -17119,15 +17119,15 @@
 #. Auto-away stuff
 #: ../pidgin/gtkprefs.c:2079
 msgid "Auto-away"
-msgstr "Auto-afwezig"
+msgstr "Automatisch afwezig"
 
 #: ../pidgin/gtkprefs.c:2081
 msgid "Change status when _idle"
-msgstr "Status op afwezig zetten _wanneer ik niets doe"
+msgstr "Status op afwezig zetten _wanneer ik inactief ben"
 
 #: ../pidgin/gtkprefs.c:2085
 msgid "_Minutes before becoming idle:"
-msgstr "_Minuten voor afwezig worden:"
+msgstr "_Minuten voor inactief worden:"
 
 #: ../pidgin/gtkprefs.c:2092
 msgid "Change _status to:"
@@ -17160,7 +17160,7 @@
 
 #: ../pidgin/gtkprefs.c:2156
 msgid "Status / Idle"
-msgstr "Status /Inactief"
+msgstr "Status / inactief"
 
 #: ../pidgin/gtkprivacy.c:81
 msgid "Allow all users to contact me"
@@ -17168,11 +17168,11 @@
 
 #: ../pidgin/gtkprivacy.c:82
 msgid "Allow only the users on my buddy list"
-msgstr "Alleen gebruikers uit mijn contactenlijst toestaan"
+msgstr "Alleen gebruikers uit mijn contactenlijst mogen contact met mij leggen"
 
 #: ../pidgin/gtkprivacy.c:83
 msgid "Allow only the users below"
-msgstr "Alleen onderstaande gebruikers toestaan"
+msgstr "Alleen onderstaande gebruikers mogen contact met mij leggen"
 
 #: ../pidgin/gtkprivacy.c:84
 msgid "Block all users"
@@ -17197,7 +17197,7 @@
 #. Remove All button
 #: ../pidgin/gtkprivacy.c:417
 msgid "Remove Al_l"
-msgstr "Verwijderen Al_les"
+msgstr "Alles _verwijderen"
 
 #: ../pidgin/gtkprivacy.c:503
 #: ../pidgin/gtkprivacy.c:520
@@ -17210,7 +17210,7 @@
 
 #: ../pidgin/gtkprivacy.c:505
 msgid "Please enter the name of the user you wish to be able to contact you."
-msgstr "Geef alstublieft de naam van de gebruiker die contact met u mag leggen."
+msgstr "Geef de naam van de gebruiker die contact met u mag leggen."
 
 #: ../pidgin/gtkprivacy.c:508
 #: ../pidgin/gtkprivacy.c:524
@@ -17238,7 +17238,7 @@
 
 #: ../pidgin/gtkprivacy.c:547
 msgid "Please enter the name of the user you wish to block."
-msgstr "Geef alstublieft de naam van de gebruiker die u wilt blokkeren."
+msgstr "Geef de naam van de gebruiker die u wilt blokkeren."
 
 #: ../pidgin/gtkprivacy.c:555
 #, c-format
@@ -17348,11 +17348,11 @@
 
 #: ../pidgin/gtksmiley.c:256
 msgid "Please provide a shortcut to associate with the smiley."
-msgstr "Geef alsjeblieft een snelkoppeling om te associƫren met de smiley."
+msgstr "Geef een snelkoppeling om te associƫren met de smiley."
 
 #: ../pidgin/gtksmiley.c:257
 msgid "Please select an image for the smiley."
-msgstr "Selecteer alsjeblieft een afbeelding uit de lijst voor de smiley"
+msgstr "Selecteer een afbeelding uit de lijst voor de smiley"
 
 #: ../pidgin/gtksmiley.c:346
 msgid "Edit Smiley"
@@ -17364,7 +17364,7 @@
 
 #: ../pidgin/gtksmiley.c:367
 msgid "Smiley _Image"
-msgstr "_Smiley-aafbeelding"
+msgstr "_Smiley-afbeelding"
 
 #. Smiley shortcut
 #: ../pidgin/gtksmiley.c:398
@@ -17373,11 +17373,11 @@
 
 #: ../pidgin/gtksmiley.c:494
 msgid "Smiley"
-msgstr "Smiley"
+msgstr "Eigen smileys"
 
 #: ../pidgin/gtksmiley.c:691
 msgid "Custom Smiley Manager"
-msgstr "Beheer eigen smileys"
+msgstr "Eigen smileys beheren"
 
 #: ../pidgin/gtkstatusbox.c:689
 msgid "Waiting for network connection"
@@ -17393,7 +17393,7 @@
 
 #: ../pidgin/gtkstatusbox.c:1782
 msgid "Status Selector"
-msgstr "Status-selectieveld"
+msgstr "Statusselectie"
 
 #: ../pidgin/gtkutils.c:685
 msgid "Google Talk"
@@ -17428,12 +17428,12 @@
 
 #: ../pidgin/gtkutils.c:1596
 msgid "You can send this image as a file transfer, embed it into this message, or use it as the buddy icon for this user."
-msgstr "U kunt deze afbeelding overzenden, in dit gesprek invoegen, of als contactplaatje gebruiken voor deze gebruiker."
+msgstr "U kunt deze afbeelding overzenden, in dit gesprek invoegen, of als pictogram gebruiken voor deze gebruiker."
 
 #: ../pidgin/gtkutils.c:1602
 #: ../pidgin/gtkutils.c:1622
 msgid "Set as buddy icon"
-msgstr "Instellen als contactplaatje"
+msgstr "Instellen als pictogram"
 
 #: ../pidgin/gtkutils.c:1603
 #: ../pidgin/gtkutils.c:1623
@@ -17447,15 +17447,15 @@
 
 #: ../pidgin/gtkutils.c:1608
 msgid "Would you like to set it as the buddy icon for this user?"
-msgstr "Wilt u het instellen als het contactplaatje van deze gebruiker?"
+msgstr "Wilt u het instellen als het pictogram van deze gebruiker?"
 
 #: ../pidgin/gtkutils.c:1615
 msgid "You can send this image as a file transfer, or use it as the buddy icon for this user."
-msgstr "U kunt deze afbeelding verzenden via bestandsoverdracht, in dit gesprek invoegen, of als contactplaatje gebruiken voor deze gebruiker."
+msgstr "U kunt deze afbeelding verzenden via bestandsoverdracht, in dit gesprek invoegen, of als pictogram gebruiken voor deze gebruiker."
 
 #: ../pidgin/gtkutils.c:1616
 msgid "You can insert this image into this message, or use it as the buddy icon for this user"
-msgstr "U kunt deze afbeelding in dit gesprek invoegen, of als contactplaatje gebruiken voor deze gebruiker."
+msgstr "U kunt deze afbeelding in dit gesprek invoegen, of als pictogram gebruiken voor deze gebruiker."
 
 #. I don't know if we really want to do anything here.  Most of the desktop item types are crap like
 #. * "MIME Type" (I have no clue how that would be a desktop item) and "Comment"... nothing we can really
@@ -18032,7 +18032,7 @@
 
 #: ../pidgin/plugins/musicmessaging/musicmessaging.c:430
 msgid "Music Messaging"
-msgstr "Expresberichten met muziek"
+msgstr "Berichten met muziek"
 
 #: ../pidgin/plugins/musicmessaging/musicmessaging.c:431
 msgid "There was a conflict in running the command:"
@@ -18049,7 +18049,7 @@
 #. Configuration frame
 #: ../pidgin/plugins/musicmessaging/musicmessaging.c:639
 msgid "Music Messaging Configuration"
-msgstr "Instellingen voor expresberichten met muziek"
+msgstr "Instellingen voor berichten met muziek"
 
 #: ../pidgin/plugins/musicmessaging/musicmessaging.c:643
 msgid "Score Editor Path"
@@ -18210,7 +18210,7 @@
 "Dit is een erg gave plugin die een hoop dingen doet:\n"
 "- Het vertelt je wie het programma geschreven heeft bij aanmelden\n"
 "- Het keert alle binnenkomende tekst om\n"
-"- Het stuurt direct een bericht naar mensen wanneer ze on-line komen"
+"- Het stuurt direct een bericht naar mensen wanneer ze online komen"
 
 #: ../pidgin/plugins/pidginrc.c:49
 msgid "Cursor Color"
@@ -18897,7 +18897,7 @@
 
 #, fuzzy
 #~ msgid "Add Buddy _Pounce"
-#~ msgstr "Contact-alarm toevoegen"
+#~ msgstr "Contactalarm toevoegen"
 #~ msgid "Add a C_hat"
 #~ msgstr "_Chat toevoegen"
 #~ msgid "/Accounts/Add\\/Edit"
@@ -18996,11 +18996,11 @@
 #~ "\n"
 #~ "<b>Status:</b>: Rockin'"
 #~ msgid "/Tools/Buddy Pounces"
-#~ msgstr "/Extra/Contact-alarm"
+#~ msgstr "/Extra/Contactalarm"
 #~ msgid "/Options/Show Buddy _Icon"
 #~ msgstr "/Opties/Contact_plaatjes weergeven"
 #~ msgid "/Options/Show Buddy Icon"
-#~ msgstr "/Opties/Contactplaatjes weergeven"
+#~ msgstr "/Opties/pictograms weergeven"
 #~ msgid "Timestamps"
 #~ msgstr "Tijd in gesprek"
 #~ msgid "Jabber developer"
@@ -19036,7 +19036,7 @@
 #~ "or use it as the buddy icon for this user."
 #~ msgstr ""
 #~ "U kunt deze afbeelding overzenden, in dit gesprek invoegen, of als "
-#~ "contactplaatje gebruiken voor deze gebruiker."
+#~ "pictogram gebruiken voor deze gebruiker."
 #~ msgid "Error initializing libdbi."
 #~ msgstr "Fout bij initialiseren van libdbi."
 #~ msgid "Contact Availability Prediction Configuration"
@@ -19355,7 +19355,7 @@
 #~ msgid "Block invites"
 #~ msgstr "Uitnodigingen blokkeren"
 #~ msgid "Reject online status attribute requests"
-#~ msgstr "Opvragen van uw on-line status weigeren"
+#~ msgstr "Opvragen van uw online status weigeren"
 #~ msgid "Wrong Password"
 #~ msgstr "Wachtwoord onjuist"
 #~ msgid "TOC has sent a PAUSE command."
@@ -19684,7 +19684,7 @@
 #~ msgid "/Buddies/_Log Out"
 #~ msgstr "/Contacten/_Afsluiten"
 #~ msgid "/Tools/Buddy _Pounce"
-#~ msgstr "/Extra/_Contact-alarm"
+#~ msgstr "/Extra/_Contactalarm"
 #~ msgid "/Tools/Account Ac_tions"
 #~ msgstr "/Extra/Account-acties"
 #~ msgid "/Tools/Pl_ugin Actions"
@@ -19762,7 +19762,7 @@
 #~ msgid "Alphabetical"
 #~ msgstr "Alfabetisch"
 #~ msgid "/Tools/Buddy Pounce"
-#~ msgstr "/Extra/Contact-alarm"
+#~ msgstr "/Extra/Contactalarm"
 #~ msgid "/Tools/Account Actions"
 #~ msgstr "/Extra/Account acties"
 #~ msgid "/Tools/Plugin Actions"
@@ -19916,7 +19916,7 @@
 #~ msgid "Error launching <b>%s</b>: %s"
 #~ msgstr "Fout bij starten van \"%s\": %s"
 #~ msgid "Pounce When"
-#~ msgstr "Wanneer Alarmeren"
+#~ msgstr "Wanneer alarmeren"
 
 #, fuzzy
 #~ msgid "Si_gn on"
@@ -19948,7 +19948,7 @@
 #~ msgid "Sav_e this pounce after activation"
 #~ msgstr "Dit alarm _opslaan na activatie"
 #~ msgid "Remove Buddy Pounce"
-#~ msgstr "Contact-alarm verwijderen"
+#~ msgstr "Contactalarm verwijderen"
 #~ msgid "Display"
 #~ msgstr "Weergave"
 #~ msgid "_Highlight misspelled words"
@@ -20488,7 +20488,7 @@
 #~ msgid "DBus"
 #~ msgstr "DBus"
 #~ msgid "Buddy icon:"
-#~ msgstr "Contactplaatje:"
+#~ msgstr "pictogram:"
 #~ msgid "IM the user"
 #~ msgstr "Gebruiker IM sturen"
 #~ msgid "Ignore the user"
@@ -20757,7 +20757,7 @@
 #~ msgid "Roomlist Error"
 #~ msgstr "Fout in lijst avn ruimtes"
 #~ msgid "Update Buddy Icon"
-#~ msgstr "Contactplaatje bijwerken"
+#~ msgstr "pictogram bijwerken"
 #~ msgid "Syncing with server"
 #~ msgstr "Synchronisatie met server"
 #~ msgid "MSN error for account %s"

mercurial