summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2006-06-18 02:08:01 -0400
committerKristian Høgsberg <krh@redhat.com>2006-06-18 02:08:01 -0400
commitbdd48abdb6dee06124f0208931b8622ccec436b1 (patch)
treeb2069405519ef97c12acdcf18430420a3af1ec4f
parentcac6a6fd8551f74af2c15ca0a7f71c9a9b4143ec (diff)
Feature rush: drag and drop launchers, store dock configuration in gconf.
-rw-r--r--Makefile32
-rw-r--r--dock.c564
-rw-r--r--kiba.schemas34
-rw-r--r--populate-dock.sh20
-rw-r--r--svg/applications-office.svg614
-rw-r--r--svg/camera-video.svg1176
-rw-r--r--svg/email.svg458
-rw-r--r--svg/firefox-logo.svg1718
-rw-r--r--svg/gnome-dev-disc-dvdrom.svg720
-rw-r--r--svg/gnome-terminal.svg429
-rw-r--r--svg/help-browser.svg213
-rw-r--r--svg/internet-group-chat.svg198
12 files changed, 480 insertions, 5696 deletions
diff --git a/Makefile b/Makefile
index c5e52eb..5980e19 100644
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,33 @@
CFLAGS = -Wall -g
-CPPFLAGS = $(shell pkg-config --cflags gtk+-2.0 cairo librsvg-2.0)
-LDLIBS = $(shell pkg-config --libs gtk+-2.0 cairo librsvg-2.0)
+CPPFLAGS = $(shell pkg-config --cflags gtk+-2.0 cairo gconf-2.0)
+LDLIBS = $(shell pkg-config --libs gtk+-2.0 cairo gconf-2.0)
LDFLAGS = -g
+GCONFTOOL = gconftool-2
-target = akamaru
-objs = akamaru.o main.o
+targets = akamaru dock
+schemas = kiba.schemas
+akamaru_objs = main.o akamaru.o
+dock_objs = dock.o akamaru.o
+objs = $(akamaru_objs) $(dock_objs)
-all : akamaru dock
+all : $(targets)
-$(target) : $(objs)
+akamaru : $(akamaru_objs)
-dock : dock.o akamaru.o
+dock : $(dock_objs)
-$(objs) dock.o : akamaru.h
+$(objs) : akamaru.h
+install-schemas :
+ GCONF_CONFIG_SOURCE=$(GCONF_CONFIG_SOURCE) \
+ $(GCONFTOOL) --makefile-install-rule $(schemas)
+
+uninstall-schemas : gconf-clean
+ GCONF_CONFIG_SOURCE=$(GCONF_CONFIG_SOURCE) \
+ $(GCONFTOOL) --makefile-uninstall-rule $(schemas)
+
+gconf-clean :
+ $(GCONFTOOL) --recursive-unset /apps/kiba
clean :
- rm $(target) $(objs)
+ rm -f $(targets) $(objs)
diff --git a/dock.c b/dock.c
index ecf663a..786085f 100644
--- a/dock.c
+++ b/dock.c
@@ -1,4 +1,6 @@
/* -*- mode: c; c-basic-offset: 2 -*-
+ *
+ * This is kiba, a useless but fun GNOME dock.
*/
#include <gtk/gtk.h>
@@ -9,69 +11,72 @@
#include <string.h>
#include <sys/time.h>
#include <math.h>
-#include <librsvg/rsvg.h>
-#include <librsvg/rsvg-cairo.h>
+#include <gconf/gconf-client.h>
+#include <gdk-pixbuf/gdk-pixbuf.h>
#include "akamaru.h"
-typedef struct Closure Closure;
-struct Closure {
+#define KIBA_GCONF_PATH "/apps/kiba"
+#define PIXMAP_PATH "/usr/share/pixmaps"
+
+typedef struct Dock Dock;
+typedef struct Launcher Launcher;
+
+struct Dock {
+ GtkWidget *window;
Model model;
- int num_icons;
- GdkWindow **windows;
- int drag_offset_x, drag_offset_y;
+ int width, height;
int spacing;
- int height;
+ int num_launchers;
+ GList *launchers;
+ int drag_offset_x, drag_offset_y;
+
+ GConfClient *gconf_client;
+};
+
+struct Launcher {
+ GdkWindow *window;
+ GdkPixbuf *pixbuf;
+ Dock *dock;
+ Object *object;
+ char *name;
+ char *exec;
+ char *comment;
+ char *icon;
};
+GQuark kiba_error_quark (void)
+{
+ static GQuark q = 0;
+
+ if (q == 0)
+ q = g_quark_from_static_string ("kiba-quark");
+
+ return q;
+}
+
+#define KIBA_ERROR kiba_error_quark ()
+
static gint
timeout_callback (gpointer data)
{
- Closure *closure = data;
+ Dock *dock = data;
+ GList *l;
int i;
- for (i = 0; i < closure->num_icons; i++) {
- gdk_window_move (closure->windows[i],
- closure->model.objects[i + 1].position.x + 0.5,
- closure->model.objects[i + 1].position.y + 0.5);
+ for (l = dock->launchers; l != NULL; l = l->next) {
+ Launcher *launcher = l->data;
+ gdk_window_move (launcher->window,
+ launcher->object->position.x + 0.5,
+ launcher->object->position.y + 0.5);
}
for (i = 0; i < 6; i++)
- model_step (&closure->model, 0.01);
+ model_step (&dock->model, 0.01);
return TRUE;
}
-static GdkWindow *
-create_window (GdkScreen *screen, int x, int y, int width, int height)
-{
- GdkWindowAttr attributes;
- gint attributes_mask;
-
- attributes.wclass = GDK_INPUT_OUTPUT;
- attributes.visual = gdk_screen_get_rgba_visual (screen);
- attributes.colormap = gdk_screen_get_rgba_colormap (screen);
- attributes.window_type = GDK_WINDOW_TEMP;
-
- attributes.x = x;
- attributes.y = y;
- attributes.width = width;
- attributes.height = height;
- attributes.event_mask =
- GDK_EXPOSURE_MASK |
- GDK_BUTTON_PRESS_MASK |
- GDK_BUTTON_RELEASE_MASK |
- GDK_ENTER_NOTIFY_MASK |
- GDK_LEAVE_NOTIFY_MASK |
- GDK_POINTER_MOTION_MASK |
- GDK_POINTER_MOTION_HINT_MASK;
-
- attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
-
- return gdk_window_new (gdk_screen_get_root_window (screen),
- &attributes, attributes_mask);
-}
-
static void
model_init_dock (Model *model, int num_items,
int width, int height, int spacing)
@@ -102,10 +107,16 @@ model_init_dock (Model *model, int num_items,
model->k = 0.8;
model->constrain_iterations = 1;
- model->polygons = g_new (Polygon, 1);
- model->num_polygons = 1;
+ model->polygons = g_new (Polygon, 3);
+ model->num_polygons = 3;
+ left_edge = (width - (num_items - 1) * spacing) / 2;
polygon_init_enclosing_rectangle (&model->polygons[0],
0, 0, width - 50, height - 50);
+ polygon_init_rectangle (&model->polygons[1],
+ 0, height - 70, left_edge, height);
+ polygon_init_rectangle (&model->polygons[2],
+ width - left_edge + 2, height - 70,
+ width, height);
model->anchors[0].x = width / 2;
model->anchors[0].y = height - 50;
@@ -121,8 +132,8 @@ model_init_dock (Model *model, int num_items,
for (i = 1; i < num_objects; i++, object++) {
object_init (&model->objects[i],
- left_edge + (i - 1) * spread, height - 100, 10);
- spring_init (spring++, &model->objects[0], object, spacing);
+ left_edge + (i - 1) * spread, height - 100, 12);
+ spring_init (spring++, &model->objects[0], object, 0);
for (j = 1; j < num_objects - i; j++) {
spacer_init (spacer++, object, object + j, spacing);
}
@@ -132,36 +143,34 @@ model_init_dock (Model *model, int num_items,
static GdkFilterReturn
window_event (GdkXEvent *xevent, GdkEvent *event, gpointer data)
{
- Closure *closure = data;
+ Dock *dock = data;
+ GList *l;
GdkModifierType state;
XEvent *ev = (XEvent *) xevent;
- int x, y, i;
- Object *object;
+ int x, y;
switch (ev->type) {
case ButtonPress:
- closure->drag_offset_x = ev->xbutton.x;
- closure->drag_offset_y = ev->xbutton.y;
- for (i = 0; i < closure->num_icons; i++) {
- if (closure->windows[i] == event->any.window) {
- object = &closure->model.objects[i + 1];
- closure->model.mouse_anchor.x = object->position.x;
- closure->model.mouse_anchor.y = object->position.y;
- closure->model.mouse_anchor.object = object;
+ dock->drag_offset_x = ev->xbutton.x;
+ dock->drag_offset_y = ev->xbutton.y;
+ for (l = dock->launchers; l != NULL; l = l->next) {
+ Launcher *launcher = l->data;
+ if (launcher->window == event->any.window) {
+ dock->model.mouse_anchor.x = launcher->object->position.x;
+ dock->model.mouse_anchor.y = launcher->object->position.y;
+ dock->model.mouse_anchor.object = launcher->object;
}
}
break;
case ButtonRelease:
- closure->model.mouse_anchor.object = NULL;
+ dock->model.mouse_anchor.object = NULL;
break;
case MotionNotify:
gdk_window_get_pointer (gdk_get_default_root_window(), &x, &y, &state);
- closure->model.mouse_anchor.x = x - closure->drag_offset_x;
- closure->model.mouse_anchor.y = y - closure->drag_offset_y;
- if (closure->model.mouse_anchor.y > closure->height)
- closure->model.mouse_anchor.y = closure->height;
+ dock->model.mouse_anchor.x = x - dock->drag_offset_x;
+ dock->model.mouse_anchor.y = y - dock->drag_offset_y;
break;
default:
@@ -171,126 +180,359 @@ window_event (GdkXEvent *xevent, GdkEvent *event, gpointer data)
return GDK_FILTER_CONTINUE;
}
-static const char *icons[] = {
- "svg/applications-office.svg",
- "svg/camera-video.svg",
- "svg/email.svg",
- "svg/firefox-logo.svg",
- "svg/gnome-dev-disc-dvdrom.svg",
- "svg/gnome-terminal.svg",
- "svg/help-browser.svg",
- "svg/internet-group-chat.svg"
-};
+static gboolean
+dock_paint (GtkWidget *widget, GdkEventExpose *event, gpointer user_data)
+{
+ Dock *dock = user_data;
+ cairo_t *cr;
+ cairo_pattern_t *gradient;
+ const int hmargin = 5, vmargin = 40, radius = 5;
+
+ cr = gdk_cairo_create (widget->window);
+ cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR);
+ cairo_paint (cr);
+
+ cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
+ cairo_move_to (cr, hmargin, dock->height);
+ cairo_line_to (cr, hmargin, vmargin + radius);
+ cairo_arc (cr, hmargin + radius, vmargin + radius,
+ radius, M_PI, 3 * M_PI / 2);
+ cairo_line_to (cr, dock->width - hmargin - radius, vmargin);
+ cairo_arc (cr, dock->width - hmargin - radius, vmargin + radius,
+ radius, 3 * M_PI / 2, 2 * M_PI);
+ cairo_line_to (cr, dock->width - hmargin, dock->height);
+
+ gradient = cairo_pattern_create_linear (dock->width / 2 - 1, vmargin,
+ dock->width / 2 + 1, dock->height);
+ cairo_pattern_add_color_stop_rgba (gradient, 0, 1, 1, 1, 0.4);
+ cairo_pattern_add_color_stop_rgba (gradient, 1, 1, 1, 1, 0.6);
+ cairo_set_source (cr, gradient);
+ cairo_fill_preserve (cr);
+
+ cairo_set_source_rgba (cr, 1, 1, 1, 1);
+ cairo_set_line_width (cr, 1);
+ cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND);
+ cairo_stroke (cr);
+
+ cairo_destroy (cr);
+
+ return TRUE;
+}
static void
-create_dock (GdkScreen *screen, int num_icons, int spacing)
+parse_desktop_file (Launcher *launcher, const char *uri, GError **error)
{
- const int padding = 20;
- GdkWindow *dock;
- int dock_width, dock_height;
- int screen_width, screen_height;
- cairo_t *cr;
- cairo_pattern_t *gradient;
- const int hmargin = 5, vmargin = 40, radius = 5;
-
- screen_width = gdk_screen_get_width (screen);
- screen_height = gdk_screen_get_height (screen);
-
- dock_width = num_icons * spacing + 2 * padding;
- dock_height = spacing + padding;
- dock = create_window (screen,
- (screen_width - dock_width + spacing) / 2,
- screen_height - dock_height,
- dock_width, dock_height);
-
- gdk_window_show (dock);
-
- cr = gdk_cairo_create (dock);
- cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR);
- cairo_paint (cr);
-
- cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
- cairo_move_to (cr, hmargin, dock_height);
- cairo_line_to (cr, hmargin, vmargin + radius);
- cairo_arc (cr, hmargin + radius, vmargin + radius,
- radius, M_PI, 3 * M_PI / 2);
- cairo_line_to (cr, dock_width - hmargin - radius, vmargin);
- cairo_arc (cr, dock_width - hmargin - radius, vmargin + radius,
- radius, 3 * M_PI / 2, 2 * M_PI);
- cairo_line_to (cr, dock_width - hmargin, dock_height);
-
- gradient = cairo_pattern_create_linear (dock_width / 2 - 1, vmargin,
- dock_width / 2 + 1, dock_height);
- cairo_pattern_add_color_stop_rgba (gradient, 0, 1, 1, 1, 0.4);
- cairo_pattern_add_color_stop_rgba (gradient, 1, 1, 1, 1, 0.6);
- cairo_set_source (cr, gradient);
- cairo_fill_preserve (cr);
-
- cairo_set_source_rgba (cr, 1, 1, 1, 1);
- cairo_set_line_width (cr, 1);
- cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND);
- cairo_stroke (cr);
-
- cairo_destroy (cr);
+ static const char file_uri_prefix[] = "file://";
+ static const char desktop_file_suffix[] = ".desktop";
+ static const char desktop_entry_group[] = "Desktop Entry";
+ static const struct { const char *name; size_t offset; } fields[] = {
+ { "Icon", G_STRUCT_OFFSET (Launcher, icon) },
+ { "Exec", G_STRUCT_OFFSET (Launcher, exec) },
+ { "Name", G_STRUCT_OFFSET (Launcher, name) },
+ { "Comment", G_STRUCT_OFFSET (Launcher, comment) },
+ };
+
+ GKeyFile *file;
+ const char *filename ;
+ char *s;
+ int i;
+
+ if (!g_str_has_suffix (uri, desktop_file_suffix)) {
+ g_set_error (error, KIBA_ERROR, 0,
+ "%s is not a .desktop file", uri);
+ return;
+ }
+ if (g_str_has_prefix (uri, file_uri_prefix))
+ filename = uri + strlen (file_uri_prefix);
+ else
+ filename = uri;
+
+ file = g_key_file_new ();
+ if (!g_key_file_load_from_file (file, filename, 0, error))
+ return;
+
+ for (i = 0; i < G_N_ELEMENTS (fields); i++) {
+ s = g_key_file_get_value (file, desktop_entry_group,
+ fields[i].name, error);
+ if (s == NULL)
+ return;
+
+ G_STRUCT_MEMBER (char *, launcher, fields[i].offset) = s;
+ }
}
-int main (int argc, char *argv[])
+static gboolean
+load_icon (Launcher *launcher, GError **error)
{
- Closure closure;
- GdkScreen *screen;
- const int num_icons = G_N_ELEMENTS (icons);
- int x, y, width, height, i;
- RsvgHandle *handle;
- RsvgDimensionData dimension;
- cairo_t *cr;
- const int spacing = 50;
+ char *path;
+ char *suffix;
- gtk_init (&argc, &argv);
+ path = g_strdup_printf (PIXMAP_PATH "/%s", launcher->icon);
+ launcher->pixbuf = gdk_pixbuf_new_from_file (path, error);
+ g_free (path);
+
+ if (launcher->pixbuf != NULL)
+ return TRUE;
+
+ g_clear_error (error);
+ launcher->pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default(),
+ launcher->icon, 48, 0, error);
+ if (launcher->pixbuf != NULL)
+ return TRUE;
+
+ suffix = strstr (launcher->icon, ".png");
+ if (suffix == NULL)
+ return FALSE;
+
+ *suffix = '\0';
+ g_clear_error (error);
+ launcher->pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default(),
+ launcher->icon, 48, 0, error);
+
+ return launcher->pixbuf != NULL;
+}
+
+static void
+launcher_create_window (Launcher *launcher, GError **error)
+{
+ GdkWindowAttr attributes;
+ gint attributes_mask;
+ GdkScreen *screen;
+ screen = gdk_screen_get_default ();
+ cairo_t *cr;
- rsvg_init ();
+ if (!load_icon (launcher, error))
+ return;
- screen = gdk_screen_get_default ();
- width = gdk_screen_get_width (screen);
- height = gdk_screen_get_height (screen);
+ attributes.wclass = GDK_INPUT_OUTPUT;
+ attributes.visual = gdk_screen_get_rgba_visual (screen);
+ attributes.colormap = gdk_screen_get_rgba_colormap (screen);
+ attributes.window_type = GDK_WINDOW_TEMP;
- closure.spacing = spacing;
- closure.height = height - 50;
- closure.num_icons = num_icons;
- closure.windows = g_new (GdkWindow *, num_icons);
+ attributes.x = launcher->object->position.x;
+ attributes.y = launcher->object->position.y;
+ attributes.width = gdk_pixbuf_get_width (launcher->pixbuf);
+ attributes.height = gdk_pixbuf_get_height (launcher->pixbuf);
+ attributes.event_mask =
+ GDK_EXPOSURE_MASK |
+ GDK_BUTTON_PRESS_MASK |
+ GDK_BUTTON_RELEASE_MASK |
+ GDK_ENTER_NOTIFY_MASK |
+ GDK_LEAVE_NOTIFY_MASK |
+ GDK_POINTER_MOTION_MASK |
+ GDK_POINTER_MOTION_HINT_MASK;
- model_init_dock (&closure.model, num_icons, width, height, spacing);
+ attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
- create_dock (screen, num_icons, spacing);
+ launcher->window = gdk_window_new (gdk_screen_get_root_window (screen),
+ &attributes, attributes_mask);
+ gdk_window_show (launcher->window);
- for (i = 0; i < num_icons; i++) {
+ cr = gdk_cairo_create (launcher->window);
+ cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR);
+ cairo_paint (cr);
+ cairo_destroy (cr);
- handle = rsvg_handle_new_from_file (icons[i], NULL);
- rsvg_handle_get_dimensions (handle, &dimension);
+ gdk_pixbuf_render_to_drawable_alpha
+ (launcher->pixbuf,
+ launcher->window,
+ 0, 0, 0, 0,
+ gdk_pixbuf_get_width (launcher->pixbuf),
+ gdk_pixbuf_get_height (launcher->pixbuf),
+ GDK_PIXBUF_ALPHA_FULL, 0,
+ GDK_RGB_DITHER_NONE, 0, 0);
- x = closure.model.objects[i + 1].position.x;
- y = closure.model.objects[i + 1].position.y;
- closure.windows[i] =
- create_window (screen, x, y, dimension.width, dimension.height);
+ gdk_window_add_filter (launcher->window, window_event, launcher->dock);
+}
+
+static Launcher *
+launcher_new (Dock *dock, Object *object, const char *gconf_path)
+{
+ Launcher *launcher;
+ GError *error = NULL;
+ char *desktop_file;
+ char *key;
+
+ launcher = g_new (Launcher, 1);
+
+ key = g_strdup_printf ("%s/file", gconf_path);
+ desktop_file = gconf_client_get_string (dock->gconf_client, key, &error);
+ g_free (key);
+ if (error != NULL) {
+ printf ("error getting desktop file path for launcher: %s\n",
+ error->message);
+ g_error_free (error);
+ g_free (launcher);
+ return NULL;
+ }
- gdk_window_show (closure.windows[i]);
+ parse_desktop_file (launcher, desktop_file, &error);
+ free (desktop_file);
+ if (error != NULL) {
+ printf ("error parsing desktop file: %s\n", error->message);
+ g_error_free (error);
+ g_free (launcher);
+ return NULL;
+ }
+
+ launcher->object = object;
+ launcher->dock = dock;
+
+ launcher_create_window (launcher, &error);
+ if (error != NULL) {
+ printf ("error creating launcher window: %s\n", error->message);
+ g_error_free (error);
+ g_free (launcher);
+ return NULL;
+ }
+
+ return launcher;
+}
- cr = gdk_cairo_create (closure.windows[i]);
- cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR);
- cairo_paint (cr);
- cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
- rsvg_handle_render_cairo (handle, cr);
- rsvg_handle_free (handle);
- cairo_destroy (cr);
+static void
+dock_drag_data_received(GtkWidget *widget, GdkDragContext *drag_context,
+ gint x, gint y, GtkSelectionData *selection_data,
+ guint info, guint time, gpointer data)
+{
+ Dock *dock = data;
+ GError *error = NULL;
+ char *key;
+
+ gtk_drag_finish (drag_context, TRUE, FALSE, time);
+ g_strstrip ((char *) selection_data->data);
+ printf ("got desktop file: %s\n", selection_data->data);
+
+ key = g_strdup_printf (KIBA_GCONF_PATH "/launchers/%x/file", time);
+ gconf_client_set_string (dock->gconf_client,
+ key, (char *) selection_data->data, &error);
+ if (error != NULL) {
+ printf ("failed to set gconf key %s: %s\n", key, error->message);
+ g_error_free (error);
+ }
- gdk_window_add_filter (closure.windows[i], window_event, &closure);
+ if (error == NULL) {
+ gconf_engine_associate_schema (dock->gconf_client->engine,
+ key,
+ "/schemas" KIBA_GCONF_PATH "/launchers/file",
+ &error);
+ if (error != NULL) {
+ printf ("failed to set schema for %s: %s\n", key, error->message);
+ g_error_free (error);
}
+ }
- g_timeout_add (20, timeout_callback, &closure);
+ g_free (key);
+}
- gtk_main ();
+static GtkWidget *
+create_dock_window (Dock *dock)
+{
+ const int padding = 20;
+ GtkWidget *window;
+ GdkScreen *screen;
+ GdkColormap *colormap;
+ int screen_width, screen_height;
+ static const GtkTargetEntry targets[] = {
+ { "text/plain", 0, 0 }
+ };
+
+ screen = gdk_screen_get_default ();
+
+ screen_width = gdk_screen_get_width (screen);
+ screen_height = gdk_screen_get_height (screen);
+
+ dock->width = dock->num_launchers * dock->spacing + 2 * padding;
+ dock->height = dock->spacing + padding;
+
+ window = gtk_window_new (GTK_WINDOW_POPUP);
+ colormap = gdk_screen_get_rgba_colormap (screen);
+ gtk_widget_set_colormap(GTK_WIDGET (window), colormap);
+
+ gtk_drag_dest_set(window,
+ GTK_DEST_DEFAULT_ALL,
+ targets, G_N_ELEMENTS (targets),
+ GDK_ACTION_MOVE | GDK_ACTION_COPY);
+ gtk_drag_dest_add_uri_targets (window);
+
+ gtk_window_set_default_size (GTK_WINDOW (window),
+ dock->width, dock->height);
+ gtk_window_move (GTK_WINDOW (window),
+ (screen_width - dock->width + dock->spacing) / 2,
+ screen_height - dock->height);
+
+ g_signal_connect (window, "expose-event",
+ G_CALLBACK (dock_paint), dock);
+ g_signal_connect (window, "drag-data-received",
+ G_CALLBACK (dock_drag_data_received), dock);
+ gtk_widget_set_app_paintable (window, TRUE);
+ gtk_widget_realize (window);
+ gdk_window_set_back_pixmap (window->window, NULL, FALSE);
+ gtk_widget_show (window);
+
+ return window;
+}
+
+static Dock *
+dock_new (void)
+{
+ Dock *dock;
+ GSList *launchers, *l;
+ int num_launchers;
+ GError *error = NULL;
+ GdkScreen *screen;
+ int width, height, i;
+ Launcher *launcher;
+
+ dock = g_new0 (Dock, 1);
+
+ dock->gconf_client = gconf_client_get_default ();
+
+ gconf_client_add_dir (dock->gconf_client, KIBA_GCONF_PATH,
+ GCONF_CLIENT_PRELOAD_NONE, NULL);
+
+ launchers = gconf_client_all_dirs (dock->gconf_client,
+ KIBA_GCONF_PATH "/launchers",
+ &error);
+ if (error != NULL) {
+ printf ("error getting launchers: %s\n", error->message);
+ g_free (error->message);
+ }
+
+ num_launchers = g_slist_length (launchers);
+
+ screen = gdk_screen_get_default ();
+ width = gdk_screen_get_width (screen);
+ height = gdk_screen_get_height (screen);
+
+ dock->spacing = 50;
+ dock->num_launchers = num_launchers;
+ dock->window = create_dock_window (dock);
- rsvg_term ();
+ model_init_dock (&dock->model, num_launchers, width, height, dock->spacing);
+
+ for (l = launchers, i = 0; l != NULL; l = l->next, i++) {
+ char *path = l->data;
+ launcher = launcher_new (dock, &dock->model.objects[i + 1], path);
+ if (launcher == NULL)
+ continue;
+ dock->launchers = g_list_prepend (dock->launchers, launcher);
+ }
+
+ g_timeout_add (20, timeout_callback, dock);
+
+ return dock;
+}
+
+int main (int argc, char *argv[])
+{
+ Dock *dock;
+
+ gtk_init (&argc, &argv);
+
+ dock = dock_new ();
+
+ gtk_main ();
return 0;
}
diff --git a/kiba.schemas b/kiba.schemas
new file mode 100644
index 0000000..e8ac109
--- /dev/null
+++ b/kiba.schemas
@@ -0,0 +1,34 @@
+<gconfschemafile>
+ <schemalist>
+
+ <schema>
+ <key>/schemas/apps/kiba/launchers/file</key>
+ <owner>kiba</owner>
+ <type>string</type>
+ <default>path-to-desktop-file</default>
+
+ <locale name="C">
+ <short>Launcher desktop file</short>
+ <long>
+ Full path to the desktop file that determines the
+ application to launch.
+ </long>
+ </locale>
+ </schema>
+
+ <schema>
+ <key>/schemas/apps/kiba/launchers/position</key>
+ <owner>kiba</owner>
+ <type>int</type>
+ <default>0</default>
+
+ <locale name="C">
+ <short>Position of the launcher in the panel</short>
+ <long>
+ The index of the launcer in the list of launchers in the panel.
+ </long>
+ </locale>
+ </schema>
+
+ </schemalist>
+</gconfschemafile>
diff --git a/populate-dock.sh b/populate-dock.sh
new file mode 100644
index 0000000..6a2307b
--- /dev/null
+++ b/populate-dock.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+# Simple shell script to populate the dock by setting up some random
+# standard applications.
+
+make install-schemas
+
+while read n file; do
+ key=/apps/kiba/launchers/$n/file
+ gconftool-2 --set $key --type string $file
+ gconftool-2 --apply-schema /schemas/apps/kiba/launchers/file $key
+done <<EOF
+ 0 /usr/share/applications/gnome-terminal.desktop
+ 1 /usr/share/applications/gimp-2.2.desktop
+ 2 /usr/share/applications/epiphany.desktop
+ 3 /usr/share/applications/gaim.desktop
+ 4 /usr/share/applications/gnome-cd.desktop
+ 5 /usr/share/applications/background.desktop
+ 6 /usr/share/applications/gnome-file-roller.desktop
+EOF
diff --git a/svg/applications-office.svg b/svg/applications-office.svg
deleted file mode 100644
index a58268d..0000000
--- a/svg/applications-office.svg
+++ /dev/null
@@ -1,614 +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/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:export-ydpi="90.000000"
- inkscape:export-xdpi="90.000000"
- inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
- width="48"
- height="48"
- id="svg11300"
- sodipodi:version="0.32"
- inkscape:version="0.43+devel"
- sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/categories"
- sodipodi:docname="applications-office.svg"
- version="1.0"
- inkscape:r_cx="true"
- inkscape:r_cy="true">
- <defs
- id="defs3">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient9952">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop9954" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop9956" />
- </linearGradient>
- <linearGradient
- id="linearGradient9920">
- <stop
- id="stop9922"
- offset="0"
- style="stop-color:#5b90c8;stop-opacity:1;" />
- <stop
- style="stop-color:#8fb0d1;stop-opacity:1;"
- offset="0.31578946"
- id="stop9924" />
- <stop
- id="stop9926"
- offset="1"
- style="stop-color:#34679d;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient9910">
- <stop
- style="stop-color:#729fcf;stop-opacity:1;"
- offset="0"
- id="stop9912" />
- <stop
- id="stop9918"
- offset="0.31578946"
- style="stop-color:#a5bfda;stop-opacity:1;" />
- <stop
- style="stop-color:#376ca4;stop-opacity:1;"
- offset="1"
- id="stop9914" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient6395">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop6397" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop6399" />
- </linearGradient>
- <linearGradient
- id="linearGradient2994">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop2996" />
- <stop
- style="stop-color:#c9c9c9;stop-opacity:1;"
- offset="1"
- id="stop2998" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient2984">
- <stop
- style="stop-color:#e7e2b8;stop-opacity:1;"
- offset="0"
- id="stop2986" />
- <stop
- style="stop-color:#e7e2b8;stop-opacity:0;"
- offset="1"
- id="stop2988" />
- </linearGradient>
- <linearGradient
- id="linearGradient2974">
- <stop
- style="stop-color:#c1c1c1;stop-opacity:1;"
- offset="0"
- id="stop2976" />
- <stop
- style="stop-color:#acacac;stop-opacity:1;"
- offset="1"
- id="stop2978" />
- </linearGradient>
- <linearGradient
- id="linearGradient2966">
- <stop
- style="stop-color:#ffd1d1;stop-opacity:1;"
- offset="0"
- id="stop2968" />
- <stop
- id="stop3006"
- offset="0.5"
- style="stop-color:#ff1d1d;stop-opacity:1;" />
- <stop
- style="stop-color:#6f0000;stop-opacity:1;"
- offset="1"
- id="stop2970" />
- </linearGradient>
- <linearGradient
- id="linearGradient5068">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop5070" />
- <stop
- id="stop5078"
- offset="0.32894737"
- style="stop-color:#ffffff;stop-opacity:0.69;" />
- <stop
- id="stop5076"
- offset="0.65789473"
- style="stop-color:#c2c2c2;stop-opacity:0.34;" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop5072" />
- </linearGradient>
- <linearGradient
- id="linearGradient5058">
- <stop
- style="stop-color:#959791;stop-opacity:1;"
- offset="0"
- id="stop5060" />
- <stop
- id="stop5066"
- offset="0.5"
- style="stop-color:#f8f8f8;stop-opacity:1;" />
- <stop
- style="stop-color:#8c8c8c;stop-opacity:1;"
- offset="1"
- id="stop5062" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient5048">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop5050" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop5052" />
- </linearGradient>
- <linearGradient
- id="linearGradient5036">
- <stop
- style="stop-color:#f5f5f5;stop-opacity:0.09;"
- offset="0"
- id="stop5038" />
- <stop
- id="stop5044"
- offset="0.2631579"
- style="stop-color:#ffffff;stop-opacity:0.89999998;" />
- <stop
- style="stop-color:#c7c7c7;stop-opacity:0.46000001;"
- offset="0.74792242"
- id="stop5088" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.78039217;"
- offset="1"
- id="stop5040" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5036"
- id="linearGradient5042"
- x1="15.375"
- y1="26.0846"
- x2="34.250416"
- y2="26.0846"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0,5.625)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5048"
- id="radialGradient5054"
- cx="23.25"
- cy="37.75"
- fx="23.25"
- fy="37.75"
- r="14.875"
- gradientTransform="matrix(1,0,0,0.420168,0,21.88866)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5058"
- id="linearGradient5064"
- x1="30.875"
- y1="19.4596"
- x2="15.625"
- y2="19.0846"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0,5.625)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5068"
- id="linearGradient5074"
- x1="11.75"
- y1="14.1875"
- x2="37.625"
- y2="14.1875"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2966"
- id="linearGradient6343"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.9955,-2.496241)"
- x1="48.90625"
- y1="17.376184"
- x2="50.988335"
- y2="22.250591" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2974"
- id="linearGradient6345"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.99552,-2.496241)"
- x1="46"
- y1="19.8125"
- x2="47.6875"
- y2="22.625" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2984"
- id="radialGradient6347"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.53767e-2,2.923527,2.029691,-1.067544e-2,20.39098,-69.72665)"
- cx="29.053354"
- cy="27.640751"
- fx="29.053354"
- fy="27.640751"
- r="3.2408545" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2994"
- id="linearGradient6349"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,48.6929,-14.14491)"
- x1="25.71875"
- y1="31.046875"
- x2="25.514589"
- y2="30.703125" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5048"
- id="radialGradient6353"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,0.420168,8.187895e-16,21.88866)"
- cx="23.25"
- cy="37.75"
- fx="23.25"
- fy="37.75"
- r="14.875" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6395"
- id="linearGradient6401"
- x1="20.064156"
- y1="27.140348"
- x2="20.682873"
- y2="44.110912"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient9952"
- id="linearGradient9961"
- gradientUnits="userSpaceOnUse"
- x1="55.876038"
- y1="62.401989"
- x2="38.061356"
- y2="62.827091"
- gradientTransform="matrix(-0.493304,-0.716654,0.716654,-0.493304,-9.26781,79.4192)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient9910"
- id="linearGradient9965"
- gradientUnits="userSpaceOnUse"
- x1="28.244684"
- y1="60.445503"
- x2="28.244684"
- y2="68.224884"
- gradientTransform="matrix(-0.493304,-0.716654,0.716654,-0.493304,-9.26781,79.4192)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient9920"
- id="linearGradient9968"
- gradientUnits="userSpaceOnUse"
- x1="28.244684"
- y1="60.445503"
- x2="28.244684"
- y2="68.224884"
- gradientTransform="matrix(-0.493304,-0.716654,0.716654,-0.493304,-9.26781,79.4192)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient9910"
- id="linearGradient9972"
- gradientUnits="userSpaceOnUse"
- x1="28.244684"
- y1="60.445503"
- x2="28.244684"
- y2="68.224884"
- gradientTransform="matrix(-0.493304,-0.716654,0.716654,-0.493304,-9.26781,79.4192)" />
- </defs>
- <sodipodi:namedview
- stroke="#ef2929"
- fill="#eeeeec"
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="0.25490196"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="2.8284271"
- inkscape:cx="84.339618"
- inkscape:cy="48.984988"
- inkscape:current-layer="layer1"
- showgrid="false"
- inkscape:grid-bbox="true"
- inkscape:document-units="px"
- inkscape:showpageshadow="false"
- inkscape:window-width="1136"
- inkscape:window-height="1061"
- inkscape:window-x="2359"
- inkscape:window-y="0"
- width="48px"
- height="48px"
- objecttolerance="1"
- inkscape:object-nodes="false"
- inkscape:has_abs_tolerance="false" />
- <metadata
- id="metadata4">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:creator>
- <cc:Agent>
- <dc:title>Jakub Steiner</dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:source>http://jimmac.musichall.cz</dc:source>
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
- <dc:title>Office Applications</dc:title>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>office</rdf:li>
- <rdf:li>applications</rdf:li>
- <rdf:li>category</rdf:li>
- </rdf:Bag>
- </dc:subject>
- </cc:Work>
- <cc:License
- rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Reproduction" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Distribution" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Notice" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Attribution" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/ShareAlike" />
- </cc:License>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- inkscape:r_cx="true"
- inkscape:r_cy="true">
- <path
- sodipodi:type="arc"
- style="opacity:0.31868131;color:#000000;fill:url(#radialGradient5054);fill-opacity:1;fill-rule:evenodd;stroke:none;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"
- id="path5046"
- sodipodi:cx="23.25"
- sodipodi:cy="37.75"
- sodipodi:rx="14.375"
- sodipodi:ry="5.75"
- d="M 37.625 37.75 A 14.375 5.75 0 1 1 8.875,37.75 A 14.375 5.75 0 1 1 37.625 37.75 z"
- inkscape:r_cx="true"
- inkscape:r_cy="true"
- transform="translate(1,4)" />
- <path
- sodipodi:type="arc"
- style="opacity:0.6978022;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;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"
- id="path5056"
- sodipodi:cx="24.9375"
- sodipodi:cy="36.8125"
- sodipodi:rx="8.5625"
- sodipodi:ry="2.9375"
- d="M 33.5 36.8125 A 8.5625 2.9375 0 1 1 16.375,36.8125 A 8.5625 2.9375 0 1 1 33.5 36.8125 z"
- inkscape:r_cx="true"
- inkscape:r_cy="true"
- transform="translate(-0.125,4.75)" />
- <path
- transform="matrix(0.573913,0,0,0.573913,10.90652,19.58478)"
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- d="M 37.625 37.75 A 14.375 5.75 0 1 1 8.875,37.75 A 14.375 5.75 0 1 1 37.625 37.75 z"
- sodipodi:ry="5.75"
- sodipodi:rx="14.375"
- sodipodi:cy="37.75"
- sodipodi:cx="23.25"
- id="path6351"
- style="opacity:0.78571424;color:#000000;fill:url(#radialGradient6353);fill-opacity:1;fill-rule:evenodd;stroke:none;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"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="opacity:1;color:#000000;fill:url(#linearGradient5074);fill-opacity:1;fill-rule:evenodd;stroke:#8c8c8c;stroke-width:0.99749684;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="path5030"
- sodipodi:cx="24.6875"
- sodipodi:cy="14.1875"
- sodipodi:rx="12.4375"
- sodipodi:ry="5.6875"
- d="M 37.125 14.1875 A 12.4375 5.6875 0 1 1 12.25,14.1875 A 12.4375 5.6875 0 1 1 37.125 14.1875 z"
- inkscape:r_cx="true"
- inkscape:r_cy="true"
- transform="matrix(1.005025,0,0,1,-0.186558,5.625)" />
- <g
- id="g6334"
- transform="translate(-40.25,-7.5)"
- inkscape:r_cx="true"
- inkscape:r_cy="true">
- <path
- sodipodi:nodetypes="cccccc"
- id="path2960"
- d="M 81.189325,8.8512115 L 75.593983,14.505723 L 60.324794,46.150492 C 59.091904,49.407024 63.727034,51.320174 65.336892,48.436664 L 80.231414,16.856367 L 81.189325,8.8512115 z "
- style="color:#000000;fill:#cb9022;fill-opacity:1;fill-rule:evenodd;stroke:#5c410c;stroke-width:1.00000083;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"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- style="color:#000000;fill:url(#linearGradient6343);fill-opacity:1;fill-rule:evenodd;stroke:none;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 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 64.794871,48.421105 C 64.794871,48.421105 63.921152,49.877754 61.954609,49.092304 C 60.014929,48.317582 60.784239,46.41092 60.784239,46.41092 L 63.226659,41.398 z "
- id="path2964"
- sodipodi:nodetypes="czcczcc"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- sodipodi:nodetypes="czcczcc"
- id="path2962"
- d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 66.247658,45.38217 C 66.247658,45.38217 64.933158,46.216127 63.561344,45.615052 C 62.151825,44.997456 62.237191,43.403234 62.237191,43.403234 L 63.226659,41.398 z "
- style="color:#000000;fill:url(#linearGradient6345);fill-opacity:1;fill-rule:evenodd;stroke:none;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"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- sodipodi:nodetypes="cccc"
- id="path2982"
- d="M 80.47809,10.282021 L 76.001816,14.805631 C 76.822195,16.301338 78.170037,17.07551 79.730379,16.661047 L 80.47809,10.282021 z "
- style="color:#000000;fill:url(#radialGradient6347);fill-opacity:1;fill-rule:evenodd;stroke:none;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"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- sodipodi:nodetypes="cccc"
- id="path2992"
- d="M 79.078925,11.63315 L 80.664108,9.9997888 L 80.363939,12.345152 C 79.646349,12.567679 79.300467,12.163243 79.078925,11.63315 z "
- style="color:#000000;fill:url(#linearGradient6349);fill-opacity:1;fill-rule:evenodd;stroke:none;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"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3002"
- d="M 75.970567,14.805795 L 77.228768,16.3617 L 64.439998,43.316362 C 63.581628,42.876439 63.348884,42.080316 63.26774,41.419121 L 75.970567,14.805795 z "
- style="color:#000000;fill:#ffffff;fill-opacity:0.36363639;fill-rule:evenodd;stroke:none;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"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- sodipodi:nodetypes="ccccc"
- id="path3004"
- d="M 79.792879,16.660719 L 79.043875,16.852161 L 66.494476,43.620552 C 66.494476,43.620552 67.107516,43.507166 67.242681,43.400734 L 79.792879,16.660719 z "
- style="color:#000000;fill:#000000;fill-opacity:0.36363639;fill-rule:evenodd;stroke:none;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"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- </g>
- <path
- sodipodi:nodetypes="ccccc"
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- id="path6403"
- d="M 35.590974,22.336294 L 33.477152,40.669163 C 32.634089,45.449016 16.730857,45.501261 15.772831,40.669163 L 13.570621,22.398108 C 15.678392,27.628519 34.583355,26.853544 35.590974,22.336294 z "
- style="opacity:0.53846154;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;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" />
- <path
- style="color:#000000;fill:#e7e7e7;fill-opacity:1;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.99999958;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:inline;overflow:visible"
- d="M 23.876644,29.502754 C 24.759055,28.895352 27.257458,31.087465 29.508623,34.357876 C 31.759788,37.628287 32.227456,41.218243 32.03304,41.352068 C 31.816362,41.501217 28.652226,39.767357 26.40106,36.496946 C 24.149895,33.226535 22.994232,30.110156 23.876644,29.502754 z "
- id="path9903"
- sodipodi:nodetypes="cszsc"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <g
- id="g9975"
- transform="matrix(0.796014,8.258057e-2,-8.258057e-2,0.796014,1.530712,-0.729968)"
- inkscape:r_cx="true"
- inkscape:r_cy="true">
- <path
- transform="matrix(-0.56251,-0.817194,0.825069,-0.567931,-15.22056,83.88674)"
- sodipodi:open="true"
- sodipodi:end="6.067175"
- sodipodi:start="4.0433671"
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- d="M 32.085889,57.685642 A 13.0625,5.5 0 0 1 52.946432,60.821161"
- sodipodi:ry="5.5"
- sodipodi:rx="13.0625"
- sodipodi:cy="62"
- sodipodi:cx="40.1875"
- id="path9905"
- style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.25350261;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"
- sodipodi:type="arc" />
- <path
- transform="matrix(-0.56251,-0.817194,0.825069,-0.567931,-14.28556,81.45324)"
- sodipodi:end="9.0633414"
- sodipodi:start="5.9815064"
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- d="M 36.364517,54.473244 A 3,1.5625 0 0 1 30.693831,55.490029 L 33.5,54.9375 z"
- sodipodi:ry="1.5625"
- sodipodi:rx="3"
- sodipodi:cy="54.9375"
- sodipodi:cx="33.5"
- id="path9907"
- style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.25350261;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"
- sodipodi:type="arc" />
- </g>
- <path
- style="color:#000000;fill:url(#linearGradient9972);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.9999997;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 18.309496,27.045877 C 21.251305,31.200587 24.142325,34.798884 26.528053,37.384546 L 30.395567,34.722368 C 28.634238,31.171969 25.891142,26.577557 22.565009,21.745473 C 16.561094,13.023205 10.607438,6.3782909 8.2525006,5.5900119 C 8.1802296,5.5671084 8.0833128,5.5369591 8.0181135,5.5255274 C 7.9722757,5.5185456 7.9043654,5.5209196 7.8622441,5.5199063 C 7.7960537,5.5202124 7.7111891,5.5338786 7.6548077,5.5497821 C 7.6410248,5.5542514 7.5988177,5.5542796 7.5856625,5.5597406 C 7.5728231,5.5656972 7.5463,5.5882804 7.5340957,5.5952363 C 7.5281538,5.598964 7.5140946,5.6090039 7.5083126,5.6129839 C 7.5025306,5.6169639 7.488133,5.6265121 7.4825295,5.6307315 C 7.4716748,5.6396481 7.4411107,5.6563605 7.4309627,5.6662272 C 7.4211649,5.6765657 7.4060698,5.7159812 7.3969742,5.7272601 C 7.3619901,5.7742473 7.3189255,5.8486404 7.2950089,5.9103589 C 7.2809165,5.9500664 7.2544536,6.0126537 7.2446102,6.0579632 C 7.2320109,6.122947 7.225572,6.2242406 7.2211638,6.2999257 C 7.1167301,8.7810968 11.19814,16.714759 17.202055,25.437027 C 17.575632,25.979746 17.93728,26.520196 18.309496,27.045877 z "
- id="path9898"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- style="color:#000000;fill:url(#linearGradient9968);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.9999997;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 13.743778,20.854607 C 14.490825,21.902176 15.264732,22.908717 15.999685,23.855883 L 21.414206,20.128834 C 20.528967,18.671321 19.545881,17.138574 18.484475,15.596602 C 13.418672,8.2371884 8.1915815,2.7719285 5.9415208,2.2879093 C 5.9217547,2.284001 5.8740908,2.2754466 5.8547972,2.2723305 C 5.8357406,2.2696111 5.7866513,2.2586727 5.7680735,2.2567517 C 5.7222289,2.2529485 5.654997,2.249885 5.6122042,2.2511306 C 5.5953336,2.2520365 5.5594304,2.259366 5.543059,2.2610891 C 5.4946952,2.2674897 5.4227683,2.2848985 5.3789847,2.298754 C 5.3646479,2.3037905 5.3236556,2.3028367 5.3098395,2.3087125 C 5.2895077,2.3181575 5.2516346,2.3506057 5.2324896,2.3619558 C 5.2262404,2.3659521 5.212821,2.3754945 5.2067058,2.3797039 C 5.2005906,2.3839132 5.1868861,2.3930414 5.1809227,2.3974515 C 5.1634848,2.4112831 5.1196543,2.435075 5.1035721,2.4506952 C 5.093151,2.461503 5.0794067,2.5001343 5.0695837,2.5117282 C 5.0410096,2.5476796 4.9990687,2.6086509 4.975823,2.6515421 C 4.9683686,2.6662195 4.9487039,2.6971398 4.9418346,2.7125751 C 4.9253931,2.752103 4.9042515,2.8159978 4.8914366,2.8601789 C 4.8865983,2.8782182 4.8792899,2.9279775 4.8750265,2.9467491 C 4.871049,2.9658837 4.8620226,3.0134605 4.8586165,3.0333193 C 4.5074188,5.3078973 7.7463172,12.141716 12.812121,19.50113 C 13.127326,19.959048 13.428214,20.412099 13.743778,20.854607 z "
- id="path9893"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- style="color:#000000;fill:url(#linearGradient9965);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.9999997;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 6.2003444,8.0188112 L 10.016292,5.3921292 C 7.9914232,3.1273553 6.1637351,1.7285397 5.1772693,1.7848891 C 5.1709747,1.7853731 5.1469802,1.7864435 5.1407557,1.7870493 C 5.1346027,1.7877759 5.1103261,1.7883613 5.1042428,1.7892089 C 5.0982308,1.7901786 5.0736694,1.7902766 5.0677287,1.7913684 C 5.0325207,1.7986523 4.9757109,1.8194528 4.9431348,1.8311831 C 4.93778,1.8332626 4.922632,1.8467262 4.9173517,1.8489307 C 4.9121466,1.8512599 4.8859682,1.8486359 4.8808393,1.8510911 C 4.8757854,1.8536722 4.8600332,1.8661321 4.8550555,1.8688392 C 4.850154,1.8716723 4.8340961,1.8836267 4.8292725,1.8865868 C 4.8245243,1.8896735 4.8081584,1.9011205 4.8034887,1.9043349 C 4.798819,1.9075493 4.7822833,1.9187498 4.7777056,1.9220825 C 4.7732177,1.9255319 4.7563182,1.9362636 4.7519218,1.9398306 C 4.747616,1.9435138 4.7303534,1.9537793 4.7261388,1.9575782 C 4.7220135,1.961493 4.7151184,1.986883 4.7110844,1.9909135 C 4.7071399,1.9950587 4.6891555,2.0044016 4.6853013,2.0086611 C 4.6627137,2.0349023 4.6230017,2.080542 4.6036271,2.1108296 C 4.6004871,2.1159885 4.5916266,2.1388962 4.5885744,2.1441658 C 4.5856107,2.1495456 4.5763966,2.1720133 4.5735205,2.1775019 C 4.5707331,2.1830994 4.5611667,2.2051304 4.5584673,2.2108374 C 4.1536425,3.1121735 4.807748,5.3188169 6.2003444,8.0188112 z "
- id="path9888"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- style="opacity:0.35714285;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9961);stroke-width:1;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"
- d="M 15.417724,21.244088 C 15.60655,21.511403 15.795857,21.760461 15.983434,22.02224 L 19.733027,19.438212 C 19.219874,18.65987 18.496328,17.390277 17.956782,16.581053 C 11.744978,7.2644337 5.6568524,2.6091151 5.4030398,2.7829476 C 5.1238436,2.9741649 7.567532,10.260041 13.900362,19.06121 C 14.272182,19.577953 15.059948,20.737597 15.417724,21.244088 z "
- id="path9930"
- sodipodi:nodetypes="cccszsc" />
- <path
- style="opacity:1;color:#000000;fill:url(#linearGradient5042);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5064);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 37.125,20 L 34.25,41.375 C 33.333333,46.572159 16.041667,46.628965 15,41.375 L 12.036612,20.007583 C 13.877231,26.876868 36.029411,27.218151 37.125,20 z "
- id="path5034"
- inkscape:r_cx="true"
- inkscape:r_cy="true"
- sodipodi:nodetypes="ccccc" />
- <path
- style="opacity:0.72527473;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;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 40.481863,2.524195 L 35.708893,7.3855542 L 27.400388,24.665476 L 36.10664,7.8716901 L 40.481863,2.524195 z "
- id="path6355"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- style="opacity:0.41758242;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;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 40.349281,2.524195 L 39.465397,9.2417095 L 32.703689,23.64901 L 39.244426,9.1975153 L 38.714096,9.2859036 L 40.349281,2.524195 z "
- id="path6357"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- <path
- style="opacity:1;color:#000000;fill:url(#linearGradient6401);fill-opacity:1.0;fill-rule:evenodd;stroke:none;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 18.473165,25.284195 L 19.445437,44.199301 L 22.715805,44.729631 L 22.892582,25.814525 L 18.473165,25.284195 z "
- id="path6393"
- inkscape:r_cx="true"
- inkscape:r_cy="true" />
- </g>
-</svg>
diff --git a/svg/camera-video.svg b/svg/camera-video.svg
deleted file mode 100644
index 7eb6100..0000000
--- a/svg/camera-video.svg
+++ /dev/null
@@ -1,1176 +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/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- sodipodi:docname="camera-video.svg"
- sodipodi:docbase="/home/tigert/cvs/freedesktop.org/tango-icon-theme/scalable/devices"
- inkscape:version="0.43+devel"
- sodipodi:version="0.32"
- id="svg1260"
- height="48px"
- width="48px"
- inkscape:output_extension="org.inkscape.output.svg.inkscape">
- <defs
- id="defs3">
- <linearGradient
- id="linearGradient2244"
- inkscape:collect="always">
- <stop
- id="stop2246"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop2248"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient2230">
- <stop
- id="stop2232"
- offset="0"
- style="stop-color:#eeeeee;stop-opacity:1;" />
- <stop
- id="stop2234"
- offset="1.0000000"
- style="stop-color:#a2a2a2;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3301">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3303" />
- <stop
- style="stop-color:#cbcbcb;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3305" />
- </linearGradient>
- <linearGradient
- id="linearGradient3287"
- inkscape:collect="always">
- <stop
- id="stop3289"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop3291"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3279">
- <stop
- id="stop3281"
- offset="0.0000000"
- style="stop-color:#bebebe;stop-opacity:0.0000000;" />
- <stop
- id="stop3283"
- offset="1.0000000"
- style="stop-color:#717171;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3265"
- inkscape:collect="always">
- <stop
- id="stop3267"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop3269"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3250">
- <stop
- id="stop3252"
- offset="0"
- style="stop-color:#174992;stop-opacity:1;" />
- <stop
- id="stop3254"
- offset="1.0000000"
- style="stop-color:#233247;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3238">
- <stop
- id="stop3240"
- offset="0.0000000"
- style="stop-color:#000000;stop-opacity:0.27835050;" />
- <stop
- id="stop3242"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3208"
- inkscape:collect="always">
- <stop
- id="stop3210"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop3212"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3180">
- <stop
- id="stop3182"
- offset="0.0000000"
- style="stop-color:#c8c8c8;stop-opacity:1.0000000;" />
- <stop
- id="stop3184"
- offset="1.0000000"
- style="stop-color:#545454;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3170">
- <stop
- style="stop-color:#919191;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3172" />
- <stop
- style="stop-color:#545454;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3174" />
- </linearGradient>
- <linearGradient
- id="linearGradient3116"
- inkscape:collect="always">
- <stop
- id="stop3118"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop3120"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- id="linearGradient3016">
- <stop
- id="stop3018"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop3020"
- offset="1.0000000"
- style="stop-color:#747474;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient2854">
- <stop
- id="stop2856"
- offset="0.0000000"
- style="stop-color:#dddddd;stop-opacity:1.0000000;" />
- <stop
- id="stop2858"
- offset="1.0000000"
- style="stop-color:#a0a0a0;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient2801">
- <stop
- style="stop-color:#d7d7d7;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop2803" />
- <stop
- style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2805" />
- </linearGradient>
- <linearGradient
- id="linearGradient2659">
- <stop
- id="stop2661"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
- <stop
- id="stop2663"
- offset="1.0000000"
- style="stop-color:#b6b6b6;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient2591">
- <stop
- id="stop2593"
- offset="0.0000000"
- style="stop-color:#d3d3d3;stop-opacity:1.0000000;" />
- <stop
- id="stop2595"
- offset="1.0000000"
- style="stop-color:#000000;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient2261">
- <stop
- id="stop2263"
- offset="0.0000000"
- style="stop-color:#b6b6b6;stop-opacity:1.0000000;" />
- <stop
- id="stop2265"
- offset="1.0000000"
- style="stop-color:#a0a0a0;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(1.192333,0.000000,0.000000,1.000000,-11.96891,-0.625000)"
- y2="26.625000"
- x2="39.532253"
- y1="3.2500000"
- x1="39.814648"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3186"
- xlink:href="#linearGradient3180"
- inkscape:collect="always" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.000000,0.000000,0.000000,0.218750,0.000000,28.52306)"
- r="22.627417"
- fy="36.509514"
- fx="24.748737"
- cy="36.509514"
- cx="24.748737"
- id="radialGradient3214"
- xlink:href="#linearGradient3208"
- inkscape:collect="always" />
- <radialGradient
- r="22.627417"
- fy="36.509514"
- fx="24.748737"
- cy="36.509514"
- cx="24.748737"
- gradientTransform="matrix(1.000000,0.000000,0.000000,0.218750,1.248741e-14,28.52306)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3275"
- xlink:href="#linearGradient3208"
- inkscape:collect="always" />
- <linearGradient
- y2="35.537243"
- x2="31.554640"
- y1="23.074486"
- x1="31.289474"
- gradientTransform="matrix(0.920341,0.000000,0.000000,1.000000,5.113065,-0.618717)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1605"
- xlink:href="#linearGradient2261"
- inkscape:collect="always" />
- <linearGradient
- y2="36.686241"
- x2="34.443943"
- y1="24.311874"
- x1="32.372795"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1607"
- xlink:href="#linearGradient3250"
- inkscape:collect="always" />
- <linearGradient
- y2="23.500000"
- x2="21.375000"
- y1="33.218750"
- x1="40.593750"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1609"
- xlink:href="#linearGradient3116"
- inkscape:collect="always" />
- <linearGradient
- y2="35.071529"
- x2="33.984650"
- y1="20.222286"
- x1="28.798098"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1611"
- xlink:href="#linearGradient3265"
- inkscape:collect="always" />
- <linearGradient
- y2="28.125509"
- x2="13.114621"
- y1="26.012749"
- x1="16.489622"
- gradientTransform="matrix(1.030948,0.000000,0.000000,1.030948,-0.405869,-2.837538)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1618"
- xlink:href="#linearGradient3238"
- inkscape:collect="always" />
- <linearGradient
- y2="27.727798"
- x2="16.638567"
- y1="23.396770"
- x1="30.661369"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1629"
- xlink:href="#linearGradient2244"
- inkscape:collect="always" />
- <linearGradient
- y2="27.409931"
- x2="7.1562500"
- y1="32.006123"
- x1="8.6845827"
- gradientTransform="matrix(0.633663,0.000000,0.000000,1.297297,10.46536,-8.810810)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1633"
- xlink:href="#linearGradient3016"
- inkscape:collect="always" />
- <linearGradient
- y2="27.891649"
- x2="26.604893"
- y1="15.296312"
- x1="26.980543"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1676"
- xlink:href="#linearGradient3279"
- inkscape:collect="always" />
- <linearGradient
- y2="32.090096"
- x2="23.864855"
- y1="24.665476"
- x1="18.694136"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1679"
- xlink:href="#linearGradient2801"
- inkscape:collect="always" />
- <linearGradient
- y2="30.191154"
- x2="6.5595827"
- y1="29.373810"
- x1="6.5595827"
- gradientTransform="matrix(1.120873,0.000000,0.000000,2.563637,-0.106115,-48.35474)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1682"
- xlink:href="#linearGradient3301"
- inkscape:collect="always" />
- <linearGradient
- y2="24.700985"
- x2="7.9151335"
- y1="30.816841"
- x1="7.9151335"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1684"
- xlink:href="#linearGradient2230"
- inkscape:collect="always" />
- <linearGradient
- y2="35.138027"
- x2="11.343681"
- y1="16.013027"
- x1="9.5126343"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1687"
- xlink:href="#linearGradient3287"
- inkscape:collect="always" />
- <linearGradient
- y2="36.841251"
- x2="12.523165"
- y1="29.706160"
- x1="12.586802"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1690"
- xlink:href="#linearGradient2854"
- inkscape:collect="always" />
- <linearGradient
- y2="36.841251"
- x2="12.523165"
- y1="24.643660"
- x1="12.649302"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1693"
- xlink:href="#linearGradient2854"
- inkscape:collect="always" />
- <linearGradient
- y2="36.841251"
- x2="12.523165"
- y1="24.643660"
- x1="12.649302"
- gradientTransform="translate(-1.125000,-0.125000)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1696"
- xlink:href="#linearGradient3170"
- inkscape:collect="always" />
- <radialGradient
- r="4.6250000"
- fy="23.672499"
- fx="16.875000"
- cy="23.672499"
- cx="16.875000"
- gradientTransform="matrix(1.000000,0.000000,0.000000,1.013514,0.000000,-0.304899)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient1699"
- xlink:href="#linearGradient2591"
- inkscape:collect="always" />
- <linearGradient
- y2="30.812494"
- x2="12.257777"
- y1="42.484329"
- x1="12.187341"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1701"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="30.812517"
- x2="7.7578020"
- y1="42.484352"
- x1="7.6873660"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1703"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="30.812494"
- x2="3.2578177"
- y1="42.484329"
- x1="3.1873815"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1705"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="30.812494"
- x2="-1.2421666"
- y1="42.484329"
- x1="-1.3126028"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1707"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="28.562525"
- x2="1.0078188"
- y1="40.234360"
- x1="0.93738264"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1709"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="28.562502"
- x2="5.5078030"
- y1="40.234337"
- x1="5.4373670"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1711"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="28.562502"
- x2="10.007788"
- y1="40.234337"
- x1="9.9373512"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1713"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="26.312532"
- x2="12.257786"
- y1="37.984367"
- x1="12.187350"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1715"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="26.312510"
- x2="7.7578020"
- y1="37.984344"
- x1="7.6873660"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1717"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="26.312510"
- x2="3.2578177"
- y1="37.984344"
- x1="3.1873815"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1719"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="26.312510"
- x2="-1.2421666"
- y1="37.984344"
- x1="-1.3126028"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1721"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="24.062519"
- x2="1.0078188"
- y1="35.734352"
- x1="0.93738264"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1723"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="21.812548"
- x2="-1.2421666"
- y1="33.484383"
- x1="-1.3126028"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1725"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="21.812548"
- x2="3.2578108"
- y1="33.484383"
- x1="3.1873748"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1727"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="24.062519"
- x2="5.5078030"
- y1="35.734352"
- x1="5.4373670"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1729"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="21.812548"
- x2="7.7578020"
- y1="33.484383"
- x1="7.6873660"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1731"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- <linearGradient
- y2="24.062519"
- x2="10.007794"
- y1="35.734352"
- x1="9.9373579"
- gradientUnits="userSpaceOnUse"
- id="linearGradient1733"
- xlink:href="#linearGradient2659"
- inkscape:collect="always" />
- </defs>
- <sodipodi:namedview
- inkscape:window-y="324"
- inkscape:window-x="429"
- inkscape:window-height="778"
- inkscape:window-width="977"
- inkscape:document-units="px"
- inkscape:grid-bbox="true"
- showgrid="false"
- inkscape:current-layer="layer2"
- inkscape:cy="-8.6637154"
- inkscape:cx="35.339653"
- inkscape:zoom="8"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0.0"
- borderopacity="0.26666667"
- bordercolor="#666666"
- pagecolor="#ffffff"
- id="base"
- inkscape:showpageshadow="false" />
- <metadata
- id="metadata4">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title>Camera / Video</dc:title>
- <dc:creator>
- <cc:Agent>
- <dc:title>Jakub Steiner</dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:source>http://jimmac.musichall.cz/</dc:source>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>camera</rdf:li>
- <rdf:li>camcorder</rdf:li>
- <rdf:li>video</rdf:li>
- <rdf:li>cam</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
- </cc:Work>
- <cc:License
- rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Reproduction" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Distribution" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Notice" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Attribution" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/ShareAlike" />
- </cc:License>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- id="layer1">
- <path
- sodipodi:nodetypes="czssssccc"
- id="path3178"
- d="M 30.806057,10.750000 C 30.806057,10.750000 30.973729,9.5937500 32.370995,9.6250000 C 32.370995,9.6250000 40.568288,9.6250000 40.568288,9.6250000 C 42.095965,9.6250000 42.636240,10.578125 42.580350,11.687500 C 42.580350,11.687500 42.580350,16.812500 42.580350,16.812500 C 42.561720,17.843750 41.741991,18.484375 40.717329,18.562500 C 40.717329,18.562500 31.178661,18.625000 31.178661,18.625000 L 30.731536,16.000000 L 30.806057,10.750000 z "
- style="color:#000000;fill:url(#linearGradient3186);fill-opacity:1.0000000;fill-rule:nonzero;stroke:#6c6c6c;stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
- <path
- transform="translate(-1.767767,0.441942)"
- d="M 47.376154 36.509514 A 22.627417 4.9497476 0 1 1 2.1213207,36.509514 A 22.627417 4.9497476 0 1 1 47.376154 36.509514 z"
- sodipodi:ry="4.9497476"
- sodipodi:rx="22.627417"
- sodipodi:cy="36.509514"
- sodipodi:cx="24.748737"
- id="path3206"
- style="color:#000000;fill:url(#radialGradient3214);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="opacity:0.34972677;color:#000000;fill:url(#radialGradient3275);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path3273"
- sodipodi:cx="24.748737"
- sodipodi:cy="36.509514"
- sodipodi:rx="22.627417"
- sodipodi:ry="4.9497476"
- d="M 47.376154 36.509514 A 22.627417 4.9497476 0 1 1 2.1213207,36.509514 A 22.627417 4.9497476 0 1 1 47.376154 36.509514 z"
- transform="matrix(0.625000,0.000000,0.000000,0.541733,18.47316,20.75276)" />
- </g>
- <g
- inkscape:label="vectors"
- id="layer2"
- inkscape:groupmode="layer">
- <path
- sodipodi:nodetypes="ccccc"
- id="path3188"
- d="M 39.875000,12.375000 L 31.687500,14.875000 L 26.062500,14.625000 L 34.187500,12.375000 L 39.875000,12.375000 z "
- style="color:#000000;fill:#c6c6c6;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#c4c4c4;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
- <path
- id="path3168"
- d="M 39.875000,12.437500 L 31.500000,14.875000 L 31.500000,19.375000 L 39.875000,16.500000 L 39.875000,12.437500 z "
- style="color:#000000;fill:url(#linearGradient1696);fill-opacity:1.0000000;fill-rule:nonzero;stroke:#7a7a7a;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
- <path
- style="opacity:1.0000000;color:#000000;fill:url(#linearGradient1693);fill-opacity:1.0000000;fill-rule:nonzero;stroke:#6c6c6c;stroke-width:2.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- d="M 30.946541,13.125000 L 16.187500,13.045653 C 10.985425,13.045653 8.6250000,16.568903 8.6250000,19.639403 C 8.6250000,22.527377 10.778028,24.585851 12.250000,25.108153 L 12.250000,32.250000 C 12.250000,35.720857 14.502357,38.705357 17.687500,38.562500 L 32.531250,38.718750 C 34.430679,38.718750 37.437500,36.805677 37.437500,34.906250 L 37.437500,18.712849 C 37.437500,15.232909 35.210688,13.125000 30.946541,13.125000 z "
- id="path3024"
- sodipodi:nodetypes="cccccccccc" />
- <path
- sodipodi:nodetypes="cccccccss"
- id="rect2100"
- d="M 7.0590545,14.475766 C 7.0590545,14.475766 22.648340,14.118623 22.648340,14.118623 C 24.547769,14.118623 26.076912,15.647766 26.076912,17.547195 L 26.076912,34.404338 C 26.076912,36.303766 24.547769,39.113239 22.648340,39.113239 L 7.8090545,38.970382 C 4.6239115,39.113239 2.3804825,35.732338 2.3804825,32.261481 C 2.3804825,32.261481 2.3804825,20.029338 2.3804825,20.029338 C 2.2224267,17.549131 3.3232635,14.778342 7.0590545,14.475766 z "
- style="fill:url(#linearGradient1690);fill-opacity:1.0000000;stroke:#6c6c6c;stroke-width:1.0000000;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
- <path
- style="fill:none;fill-opacity:1.0000000;stroke:url(#linearGradient1687);stroke-width:0.93053865;stroke-miterlimit:4.0000000;stroke-opacity:0.75141245"
- d="M 7.5565619,15.382160 C 7.5565619,15.382160 22.460743,15.100358 22.460743,15.100358 C 24.228235,15.100358 25.253413,14.479091 25.253413,16.246583 L 25.253413,33.793883 C 25.253413,35.561375 23.830487,38.175698 22.062995,38.175698 L 8.2544659,38.042764 C 5.2905672,38.175698 3.2913581,35.029639 3.2913581,31.799872 C 3.2913581,31.799872 3.2913581,20.417390 3.2913581,20.417390 C 3.2768635,18.551404 3.3731571,15.752106 7.5565619,15.382160 z "
- id="path3026"
- sodipodi:nodetypes="cccccccss" />
- <rect
- style="color:#000000;fill:url(#linearGradient1682);fill-opacity:1.0000000;fill-rule:nonzero;stroke:url(#linearGradient1684);stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="rect3297"
- width="7.0755110"
- height="5.9284096"
- x="4.3773780"
- y="24.388432"
- rx="1.5035444"
- ry="1.5035446" />
- <path
- sodipodi:nodetypes="cccccssccc"
- id="path2295"
- d="M 30.183978,13.125000 L 16.187500,13.023129 C 11.329175,13.054379 8.6250000,16.546379 8.6250000,19.616879 C 8.6250000,22.504853 10.778028,24.563327 12.250000,25.085629 L 12.250000,32.250000 C 12.250000,35.720857 11.688952,38.429890 17.687500,38.562500 C 17.687500,38.562500 32.531250,38.718750 32.531250,38.718750 C 34.532654,38.780384 37.437500,36.805677 37.437500,34.906250 L 37.437500,19.066403 C 37.437500,15.101007 35.022034,13.020526 30.183978,13.125000 z "
- style="fill:url(#linearGradient1679);fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
- <path
- sodipodi:nodetypes="cscsccss"
- id="path3277"
- d="M 17.633475,37.570175 C 18.163805,37.487311 18.858379,37.179533 18.854339,36.475415 L 18.782524,23.958369 C 20.123514,22.351295 21.088204,20.192061 20.167708,17.633240 C 20.167708,17.633240 36.327611,17.594408 36.327611,17.594408 L 36.106640,33.946253 C 36.106640,33.946253 34.950120,37.671777 32.394329,37.702757 C 32.394329,37.702757 17.633475,37.570175 17.633475,37.570175 z "
- style="opacity:0.65573770;color:#000000;fill:url(#linearGradient1676);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
- <path
- transform="translate(-1.375000,-2.890164)"
- d="M 19.875000 22.562500 A 4.1250000 4.1875000 0 1 1 11.625000,22.562500 A 4.1250000 4.1875000 0 1 1 19.875000 22.562500 z"
- sodipodi:ry="4.1875000"
- sodipodi:rx="4.1250000"
- sodipodi:cy="22.562500"
- sodipodi:cx="15.750000"
- id="path2589"
- style="color:#000000;fill:url(#radialGradient1699);fill-opacity:1.0000000;fill-rule:nonzero;stroke:#6c6c6c;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- transform="translate(0.562500,-2.515164)"
- d="M 16.500000 22.687500 A 1.7500000 1.8125000 0 1 1 13.000000,22.687500 A 1.7500000 1.8125000 0 1 1 16.500000 22.687500 z"
- sodipodi:ry="1.8125000"
- sodipodi:rx="1.7500000"
- sodipodi:cy="22.687500"
- sodipodi:cx="14.750000"
- id="path2599"
- style="color:#000000;fill:#ffffff;fill-opacity:0.45762709;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:#ffffff;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2601"
- sodipodi:cx="14.750000"
- sodipodi:cy="22.687500"
- sodipodi:rx="1.7500000"
- sodipodi:ry="1.8125000"
- d="M 16.500000 22.687500 A 1.7500000 1.8125000 0 1 1 13.000000,22.687500 A 1.7500000 1.8125000 0 1 1 16.500000 22.687500 z"
- transform="matrix(0.840316,0.000000,0.000000,0.840316,0.855340,-0.480722)" />
- <g
- transform="translate(1.000003,7.000000e-6)"
- id="g3032">
- <g
- id="g2874"
- transform="translate(0.176777,0.176777)"
- style="fill:#ffffff;fill-opacity:1.0000000">
- <path
- sodipodi:type="arc"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2876"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,2.833330,18.05551)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,4.833326,18.05550)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2878"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2880"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,6.833326,18.05551)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,8.833326,18.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2882"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2884"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,7.833329,19.05550)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,5.833329,19.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2886"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2888"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,3.833329,19.05551)" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2890"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,2.833326,20.05550)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,4.833326,20.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2892"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2894"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,6.833326,20.05551)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,8.833326,20.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2896"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2898"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,7.833329,21.05551)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,8.833326,22.05550)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2900"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2902"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,6.833329,22.05550)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,5.833329,21.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2904"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2906"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,4.833326,22.05550)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,3.833326,21.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2908"
- style="color:#000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- </g>
- <g
- id="g2995">
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,2.833330,18.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2603"
- style="color:#000000;fill:url(#linearGradient1701);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:url(#linearGradient1703);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2605"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,4.833326,18.05550)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,6.833326,18.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2607"
- style="color:#000000;fill:url(#linearGradient1705);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:url(#linearGradient1707);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2609"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,8.833326,18.05551)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,7.833329,19.05550)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2611"
- style="color:#000000;fill:url(#linearGradient1709);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:url(#linearGradient1711);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2613"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,5.833329,19.05551)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,3.833329,19.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2615"
- style="color:#000000;fill:url(#linearGradient1713);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,2.833326,20.05550)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2619"
- style="color:#000000;fill:url(#linearGradient1715);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:url(#linearGradient1717);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2621"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,4.833326,20.05551)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,6.833326,20.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2623"
- style="color:#000000;fill:url(#linearGradient1719);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:url(#linearGradient1721);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2625"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,8.833326,20.05551)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,7.833329,21.05551)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2627"
- style="color:#000000;fill:url(#linearGradient1723);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:url(#linearGradient1725);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2629"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,8.833326,22.05550)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,6.833329,22.05550)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2631"
- style="color:#000000;fill:url(#linearGradient1727);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:url(#linearGradient1729);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2633"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,5.833329,21.05551)" />
- <path
- transform="matrix(0.444446,0.000000,0.000000,0.444446,4.833326,22.05550)"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- sodipodi:ry="1.1250000"
- sodipodi:rx="1.1250000"
- sodipodi:cy="32.500000"
- sodipodi:cx="3.7500000"
- id="path2635"
- style="color:#000000;fill:url(#linearGradient1731);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- <path
- sodipodi:type="arc"
- style="color:#000000;fill:url(#linearGradient1733);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="path2637"
- sodipodi:cx="3.7500000"
- sodipodi:cy="32.500000"
- sodipodi:rx="1.1250000"
- sodipodi:ry="1.1250000"
- d="M 4.8750000 32.500000 A 1.1250000 1.1250000 0 1 1 2.6250000,32.500000 A 1.1250000 1.1250000 0 1 1 4.8750000 32.500000 z"
- transform="matrix(0.444446,0.000000,0.000000,0.444446,3.833326,21.05551)" />
- </g>
- </g>
- <rect
- ry="0.50354433"
- rx="0.50354433"
- y="28.000000"
- x="13.000000"
- height="3.0000000"
- width="4.0000000"
- id="rect3014"
- style="color:#000000;fill:url(#linearGradient1633);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:2.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
- <path
- style="fill:#000000;fill-opacity:0.10734458;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 19.234835,37.206242 C 19.234835,37.206242 19.234835,24.346407 19.234835,24.346407 C 20.002531,23.540621 20.421274,22.863407 20.827064,21.623261 C 20.827064,21.623261 34.327665,21.623261 34.327665,21.623261 C 34.327665,21.623261 21.452665,22.337524 21.452665,22.337524 C 21.114277,23.122324 20.552237,24.008019 20.003141,24.622296 C 20.003141,24.622296 19.234835,37.206242 19.234835,37.206242 z "
- id="path1466"
- sodipodi:nodetypes="csscssc" />
- <path
- style="opacity:0.63387978;fill:none;fill-opacity:1.0000000;stroke:url(#linearGradient1629);stroke-width:1.0000000;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 30.852943,13.627626 L 16.564140,13.509265 C 11.973189,13.538795 9.4178354,17.059587 9.4178354,19.961104 C 9.4178354,22.690141 11.452373,24.635329 12.843337,25.128887 L 12.843337,31.898973 C 12.843337,35.178814 12.313166,37.915535 17.981589,38.040847 C 17.981589,38.040847 32.008426,38.188498 32.008426,38.188498 C 34.253237,38.202546 36.954024,36.778456 36.909830,34.409038 L 36.909830,18.857858 C 36.909830,15.791277 34.919019,13.627626 30.852943,13.627626 z "
- id="path2240"
- sodipodi:nodetypes="cccccssccc" />
- <g
- transform="matrix(1.000000,0.000000,-6.156892e-2,1.000000,1.776540,0.000000)"
- id="g3216">
- <rect
- style="color:#000000;fill:#e0e0e0;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#6c6c6c;stroke-width:0.88373333;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="rect2108"
- width="5.0357141"
- height="7.0985928"
- x="20.828430"
- y="25.444061"
- rx="0.28571433"
- ry="0.28517434" />
- <rect
- style="color:#000000;fill:url(#linearGradient1605);fill-opacity:1.0000000;fill-rule:nonzero;stroke:#6c6c6c;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="rect2096"
- width="21.545832"
- height="16.267857"
- x="23.799280"
- y="20.720566"
- rx="1.2857143"
- ry="1.2832843" />
- <rect
- style="fill:url(#linearGradient1607);fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- id="rect2098"
- width="16.053572"
- height="12.053572"
- x="25.938265"
- y="22.881281"
- rx="0.27234393"
- ry="0.27182922" />
- <rect
- style="color:#000000;fill:none;fill-opacity:1.0000000;fill-rule:nonzero;stroke:url(#linearGradient1609);stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- id="rect3030"
- width="18.296387"
- height="14.230534"
- x="24.837126"
- y="21.748661"
- rx="0.0071788891"
- ry="0.0071653211" />
- <g
- id="g3201"
- transform="translate(-0.707105,0.000000)" />
- <path
- id="rect3258"
- transform="matrix(1.000000,0.000000,6.156892e-2,1.000000,-1.776540,0.000000)"
- d="M 27.375000,23.500000 C 27.224121,23.500000 27.071771,23.630656 27.062500,23.781250 L 26.500000,33.031250 C 33.815243,31.681306 33.857480,27.120605 41.343750,26.000000 L 41.468750,23.781250 C 41.478022,23.630657 41.369630,23.500000 41.218750,23.500000 L 27.375000,23.500000 z "
- style="opacity:0.15300544;fill:url(#linearGradient1611);fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
- </g>
- <path
- sodipodi:nodetypes="ccccccccc"
- id="path3234"
- d="M 20.948038,32.973981 L 22.936776,35.183690 L 23.113552,32.929787 L 20.948038,32.973981 z M 24.571961,37.481787 L 25.102290,38.630835 C 25.102290,38.630835 32.438523,38.719223 32.438523,38.719223 C 34.252705,38.802710 35.818267,37.481787 35.818267,37.481787 L 24.571961,37.481787 z "
- style="fill:#000000;fill-opacity:0.25988701;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
- <path
- sodipodi:nodetypes="cccc"
- id="path3236"
- d="M 13.114621,25.495849 C 16.303953,25.586974 18.149209,24.983280 19.003494,23.593641 C 17.773323,26.190668 13.114621,26.532383 13.114621,26.532383 L 13.114621,25.495849 z "
- style="fill:url(#linearGradient1618);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
- <path
- sodipodi:nodetypes="cc"
- id="path3246"
- d="M 21.214039,15.323636 L 32.784719,15.323636"
- style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.0000005px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.62711865" />
- <path
- transform="matrix(1.321444,0.000000,0.000000,1.321444,-6.515399,-9.039650)"
- d="M 20.064156 18.345709 A 0.83968931 0.83968931 0 1 1 18.384777,18.345709 A 0.83968931 0.83968931 0 1 1 20.064156 18.345709 z"
- sodipodi:ry="0.83968931"
- sodipodi:rx="0.83968931"
- sodipodi:cy="18.345709"
- sodipodi:cx="19.224466"
- id="path3248"
- style="color:#000000;fill:#ffffff;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:0.62711865;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
- sodipodi:type="arc" />
- </g>
-</svg>
diff --git a/svg/email.svg b/svg/email.svg
deleted file mode 100644
index cfaed48..0000000
--- a/svg/email.svg
+++ /dev/null
@@ -1,458 +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/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- sodipodi:docname="internet-mail.svg"
- sodipodi:docbase="/home/jimmac/gfx/ximian/tango-desktop-theme/scalable/apps"
- inkscape:version="0.41+cvs"
- sodipodi:version="0.32"
- id="svg5816"
- height="48px"
- width="48px">
- <defs
- id="defs3"><linearGradient
- id="linearGradient28260">
- <stop
- style="stop-color:#9aa29a;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop28262" />
-
-
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop28264" />
-
-
-</linearGradient>
-<linearGradient
- id="linearGradient28254">
- <stop
- id="stop28256"
- offset="0.0000000"
- style="stop-color:#9aa29a;stop-opacity:1.0000000;" />
-
-
- <stop
- id="stop28258"
- offset="1.0000000"
- style="stop-color:none" />
-
-
-</linearGradient>
-<linearGradient
- id="linearGradient2274">
- <stop
- style="stop-color:#000000;stop-opacity:0.12871288;"
- offset="0.0000000"
- id="stop2276" />
-
-
- <stop
- style="stop-color:#000000;stop-opacity:0.0000000;"
- offset="1.0000000"
- id="stop2278" />
-
-
-</linearGradient>
-<linearGradient
- id="linearGradient9749">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop9751" />
-
-
- <stop
- style="stop-color:#ededed;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop9753" />
-
-
-</linearGradient>
-<linearGradient
- id="linearGradient2152">
- <stop
- style="stop-color:#9aa29a;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop2154" />
-
-
- <stop
- style="stop-color:#b5beb5;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2156" />
-
-
-</linearGradient>
-<linearGradient
- id="linearGradient2166">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop2168" />
-
-
- <stop
- style="stop-color:#dcdcdc;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2170" />
-
-
-</linearGradient>
-<linearGradient
- id="linearGradient18913">
- <stop
- style="stop-color:#ededed;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop18915" />
-
-
- <stop
- style="stop-color:#c8c8c8;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop18917" />
-
-
-</linearGradient>
-<linearGradient
- id="linearGradient2136">
- <stop
- style="stop-color:#989690;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop2138" />
-
-
- <stop
- style="stop-color:#656460;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2140" />
-
-
-</linearGradient>
-<linearGradient
- id="linearGradient15107">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop15109" />
-
-
- <stop
- style="stop-color:#e2e2e2;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop15111" />
-
-
-</linearGradient>
-<linearGradient
- id="linearGradient10691"
- inkscape:collect="always">
- <stop
- id="stop10693"
- offset="0"
- style="stop-color:#000000;stop-opacity:1;" />
-
-
- <stop
- id="stop10695"
- offset="1"
- style="stop-color:#000000;stop-opacity:0;" />
-
-
-</linearGradient>
-<radialGradient
- r="7.2284161"
- fy="73.615714"
- fx="6.7027131"
- cy="73.615714"
- cx="6.7027131"
- gradientTransform="scale(1.902215,0.525703)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient11382"
- xlink:href="#linearGradient10691"
- inkscape:collect="always" />
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<linearGradient
- y2="32.203162"
- x2="9.7619219"
- y1="37.784682"
- x1="8.7803760"
- gradientTransform="matrix(2.394900,0.000000,0.000000,0.781058,2.879512,0.343005)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient27463"
- xlink:href="#linearGradient2274"
- inkscape:collect="always" />
-<linearGradient
- y2="24.132717"
- x2="21.111549"
- y1="13.686079"
- x1="11.233107"
- gradientTransform="matrix(1.370928,0.000000,0.000000,1.443758,2.431133,-0.140786)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient27468"
- xlink:href="#linearGradient9749"
- inkscape:collect="always" />
-<linearGradient
- y2="52.090678"
- x2="9.8855033"
- y1="37.197018"
- x1="8.9156475"
- gradientTransform="matrix(2.454781,0.000000,0.000000,0.762004,2.879512,0.343005)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient27471"
- xlink:href="#linearGradient2152"
- inkscape:collect="always" />
-<linearGradient
- y2="52.090678"
- x2="9.8855033"
- y1="37.197018"
- x1="8.9156475"
- gradientTransform="matrix(2.454781,0.000000,0.000000,0.762004,2.879512,0.343005)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient27474"
- xlink:href="#linearGradient2152"
- inkscape:collect="always" />
-<linearGradient
- y2="29.568739"
- x2="15.310744"
- y1="15.148383"
- x1="10.184240"
- gradientTransform="matrix(1.819266,0.000000,0.000000,1.028193,2.879512,0.343005)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient27477"
- xlink:href="#linearGradient2166"
- inkscape:collect="always" />
-<linearGradient
- y2="17.876846"
- x2="13.467486"
- y1="7.2310905"
- x1="5.8266134"
- gradientTransform="matrix(1.570607,0.000000,0.000000,1.190976,2.879512,0.343005)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient27483"
- xlink:href="#linearGradient18913"
- inkscape:collect="always" />
-<linearGradient
- y2="26.022910"
- x2="18.475286"
- y1="4.7461626"
- x1="11.572842"
- gradientTransform="matrix(1.343475,0.000000,0.000000,1.417854,2.879511,0.314599)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient27486"
- xlink:href="#linearGradient15107"
- inkscape:collect="always" />
-<linearGradient
- y2="15.257116"
- x2="30.599684"
- y1="15.257116"
- x1="2.0618774"
- gradientTransform="matrix(1.343475,0.000000,0.000000,1.417854,2.879511,0.314599)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient27488"
- xlink:href="#linearGradient2136"
- inkscape:collect="always" />
-</defs>
- <sodipodi:namedview
- inkscape:window-y="202"
- inkscape:window-x="331"
- inkscape:window-height="743"
- inkscape:window-width="849"
- inkscape:document-units="px"
- inkscape:grid-bbox="true"
- showgrid="false"
- inkscape:current-layer="layer1"
- inkscape:cy="18.816166"
- inkscape:cx="28.384904"
- inkscape:zoom="9.8994949"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0.0"
- borderopacity="1.0"
- bordercolor="#666666"
- pagecolor="#ffffff"
- id="base" />
- <metadata
- id="metadata4">
- <rdf:RDF
- id="RDF5">
- <cc:Work
- id="Work6"
- rdf:about="">
- <dc:format
- id="format7">image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage"
- id="type9" />
- <dc:title
- id="title29050">Mail</dc:title>
- <dc:creator
- id="creator29052">
- <cc:Agent
- id="Agent29054">
- <dc:title
- id="title29056">Jakub Steiner</dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:contributor
- id="contributor29058">
- <cc:Agent
- id="Agent29060">
- <dc:title
- id="title29062">Andreas Nilsson</dc:title>
- </cc:Agent>
- </dc:contributor>
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/"
- id="license29064" />
- <dc:subject
- id="subject29080">
- <rdf:Bag
- id="Bag29082">
- <rdf:li
- id="li29148">mail</rdf:li>
- <rdf:li
- id="li29150">e-mail</rdf:li>
- <rdf:li
- id="li29152">MUA</rdf:li>
- </rdf:Bag>
- </dc:subject>
- </cc:Work>
- <cc:License
- id="License29066"
- rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
- <cc:permits
- id="permits29068"
- rdf:resource="http://web.resource.org/cc/Reproduction" />
- <cc:permits
- id="permits29070"
- rdf:resource="http://web.resource.org/cc/Distribution" />
- <cc:requires
- id="requires29072"
- rdf:resource="http://web.resource.org/cc/Notice" />
- <cc:requires
- id="requires29074"
- rdf:resource="http://web.resource.org/cc/Attribution" />
- <cc:permits
- id="permits29076"
- rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- <cc:requires
- id="requires29078"
- rdf:resource="http://web.resource.org/cc/ShareAlike" />
- </cc:License>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- id="layer1">
- <path
- sodipodi:type="arc"
- style="opacity:0.45569620;color:#000000;fill:url(#radialGradient11382);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
- id="path10699"
- sodipodi:cx="12.750000"
- sodipodi:cy="38.700001"
- sodipodi:rx="13.750000"
- sodipodi:ry="3.8000000"
- d="M 26.500000 38.700001 A 13.750000 3.8000000 0 1 1 -1.0000000,38.700001 A 13.750000 3.8000000 0 1 1 26.500000 38.700001 z"
- transform="matrix(1.800603,0.000000,0.000000,1.974782,1.083944,-38.01261)" />
- <path
- style="fill:url(#linearGradient27486);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient27488);stroke-width:0.85660440;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 6.3334395,16.972251 L 6.3334395,41.481799 L 43.305555,41.481799 L 43.244499,17.089859 C 43.241050,15.712272 31.395999,2.4121110 29.210877,2.4121110 L 20.659391,2.4121110 C 18.362072,2.4121110 6.3334395,15.673953 6.3334395,16.972251 z "
- id="path12723"
- sodipodi:nodetypes="ccczzzz" />
- <path
- style="fill:url(#linearGradient27483);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.25000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 6.9230610,16.787103 C 6.5250222,16.356975 18.809966,3.0935378 20.667210,3.0935378 L 29.042965,3.0935378 C 30.790449,3.0935378 43.079567,16.221603 42.470079,16.978956 L 31.608858,30.475150 L 19.295373,30.156846 L 6.9230610,16.787103 z "
- id="path18153"
- sodipodi:nodetypes="czzzccz" />
- <path
- style="fill:#000000;fill-opacity:0.14619882;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 19.077530,30.017590 L 11.744526,21.271586 L 36.562951,14.335513 L 39.592221,20.551966 L 32.175956,29.992298"
- id="path2164"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:0.14619882;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 18.291767,29.836259 L 10.809167,21.026146 L 35.456637,14.132812 L 38.630714,20.403811 L 31.390193,29.810968"
- id="path2162"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:#000000;fill-opacity:0.14619882;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 18.775313,29.957146 L 11.100386,21.296624 L 36.068405,14.232329 L 39.354114,20.824726 L 31.873739,29.931855"
- id="path2160"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#linearGradient27477);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 18.593984,30.440693 L 11.260975,21.694689 L 35.972554,14.801355 L 39.083369,21.188770 L 31.963198,30.174701"
- id="path15105"
- sodipodi:nodetypes="ccccc" />
- <path
- style="fill:url(#linearGradient27474);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 20.488434,29.064331 L 7.0924698,40.036319 L 21.001312,30.432013 L 30.019470,30.432013 L 42.438517,39.914206 L 30.575092,29.064331 L 20.488434,29.064331 z "
- id="path14245"
- sodipodi:nodetypes="ccccccc" />
- <path
- style="color:#000000;fill:url(#linearGradient27471);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
- d="M 6.9634751,16.885144 L 18.479648,31.201334 L 19.548151,30.346532 L 6.9634751,16.885144 z "
- id="path14339"
- sodipodi:nodetypes="cccc" />
- <path
- style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient27468);stroke-width:0.85660428;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 7.3077115,17.131415 L 7.3388644,40.342421 L 42.283659,40.342421 L 42.221353,17.257512 C 42.219329,16.508413 31.005032,3.4591863 28.837233,3.4591863 L 20.941579,3.4591863 C 18.689313,3.4591863 7.3066655,16.351067 7.3077115,17.131415 z "
- id="path15103"
- sodipodi:nodetypes="ccczzzz" />
- <path
- style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
- d="M 20.957271,30.452732 L 9.0157722,38.723588 L 11.235205,38.729695 L 21.233330,31.860755 L 30.055238,30.437917 L 20.957271,30.452732 z "
- id="path17393"
- sodipodi:nodetypes="cccccc" />
- <path
- style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 11.427536,21.670296 L 12.752479,23.080719 L 35.543311,16.196529 L 38.458445,21.878896 L 39.072496,21.166981 L 36.003081,14.789145 L 11.427536,21.670296 z "
- id="path2174"
- sodipodi:nodetypes="ccccccc" />
- <path
- style="fill:url(#linearGradient27463);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
- d="M 13.308098,23.636340 L 19.334450,30.090093 L 20.531174,29.064331 L 30.617831,29.107071 L 31.429893,29.833651 L 35.404721,25.089502 C 34.250740,23.679081 13.308098,23.636340 13.308098,23.636340 z "
- id="path2272"
- sodipodi:nodetypes="ccccccc" />
- <path
- sodipodi:nodetypes="cccc"
- id="path27492"
- d="M 41.812936,17.847945 L 31.861315,30.479232 L 30.792812,29.624431 L 41.812936,17.847945 z "
- style="color:#000000;fill:#b1b1b1;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible" />
- </g>
-</svg>
diff --git a/svg/firefox-logo.svg b/svg/firefox-logo.svg
deleted file mode 100644
index 051f0ac..0000000
--- a/svg/firefox-logo.svg
+++ /dev/null
@@ -1,1718 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<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/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="48"
- height="48"
- viewBox="0 0 132.72 127.219"
- overflow="visible"
- enable-background="new 0 0 132.72 127.219"
- xml:space="preserve"
- id="svg2"
- sodipodi:version="0.32"
- inkscape:version="0.43"
- sodipodi:docname="firefox-logo.svg"
- sodipodi:docbase="/home/mirco/src/cairo-dock"
- version="1.0"><metadata
- id="metadata635"><rdf:RDF><cc:Work
- rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
- id="defs633" /><sodipodi:namedview
- inkscape:window-height="586"
- inkscape:window-width="872"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0.0"
- borderopacity="1.0"
- bordercolor="#666666"
- pagecolor="#ffffff"
- id="base"
- inkscape:zoom="7.8321403"
- inkscape:cx="29.428939"
- inkscape:cy="23.962847"
- inkscape:window-x="0"
- inkscape:window-y="0"
- inkscape:current-layer="svg2" />
-
- <title
- id="title4">Firefox Logo</title>
- <desc
- id="desc6">Firefox logo in SVG, authored by Jon Hicks, made in Adobe Illustrator (file format cleaned up and slightly modified by Doug Schepers)</desc>
-
- <g
- id="Firefox"
- transform="matrix(1.077592,0,0,1.086366,-2.407977,-2.666046)">
- <g
- id="Globe">
- <ellipse
- cx="63.755001"
- cy="59.375"
- rx="59.335999"
- ry="59.375"
- id="ellipse10"
- sodipodi:cx="63.755001"
- sodipodi:cy="59.375"
- sodipodi:rx="59.335999"
- sodipodi:ry="59.375"
- style="fill:#110070" />
- <radialGradient
- id="XMLID_61_"
- cx="64.568802"
- cy="7.2266002"
- r="104.221"
- fx="64.568802"
- fy="7.2266002"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#67C5D5"
- id="stop13" />
- <stop
- offset="0.1604"
- style="stop-color:#66C2D3"
- id="stop15" />
- <stop
- offset="0.2795"
- style="stop-color:#62B9CE"
- id="stop17" />
- <stop
- offset="0.3852"
- style="stop-color:#5CA8C6"
- id="stop19" />
- <stop
- offset="0.4832"
- style="stop-color:#5392BA"
- id="stop21" />
- <stop
- offset="0.5759"
- style="stop-color:#4874AA"
- id="stop23" />
- <stop
- offset="0.6646"
- style="stop-color:#3A5097"
- id="stop25" />
- <stop
- offset="0.7485"
- style="stop-color:#2A2781"
- id="stop27" />
- <stop
- offset="0.8146"
- style="stop-color:#1B006D"
- id="stop29" />
- <stop
- offset="1"
- style="stop-color:#596AAD"
- id="stop31" />
- </radialGradient>
- <ellipse
- cx="63.755001"
- cy="59.375"
- rx="58.215"
- ry="58.254002"
- id="ellipse33"
- style="fill:url(#XMLID_61_)"
- sodipodi:cx="63.755001"
- sodipodi:cy="59.375"
- sodipodi:rx="58.215"
- sodipodi:ry="58.254002" />
- <radialGradient
- id="XMLID_62_"
- cx="64.551804"
- cy="14.1748"
- r="52.231701"
- fx="64.551804"
- fy="14.1748"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#0F80BC"
- id="stop36" />
- <stop
- offset="0.3376"
- style="stop-color:#0A5F9E"
- id="stop38" />
- <stop
- offset="1"
- style="stop-color:#00145A"
- id="stop40" />
- </radialGradient>
- <path
- d="M 55.405,89.446 C 55.333,89.13 54.548,88.213 53.947,88.008 C 53.348,87.803 52.759,88.892 52.373,87.084 C 51.107,87.81 50.561,86.884 50.561,86.884 C 50.561,86.884 49.196,86.964 48.932,88.635 C 48.282,89.404 46.616,92.201 47.501,89.292 C 48.392,86.365 46.561,89.062 46.391,90.532 C 46.073,91.185 45.536,91.251 45.874,88.314 C 44.701,87.909 44.102,85.187 44.745,85.135 C 43.998,84.094 44.585,82.502 45.207,82.587 C 45.829,82.667 46.897,81.227 46.864,80.893 C 46.831,80.56 47.346,80.798 47.314,78.557 C 47.281,76.31 48.161,75.754 48.233,77.633 C 48.309,79.505 49.427,77.02 49.312,76.067 C 49.196,75.118 49.424,72.973 50.105,74.241 C 49.312,71.104 49.938,70.98 50.414,73.068 C 51.607,73.162 51.648,73.798 51.648,73.798 C 52.969,73.473 53.602,74.468 53.704,75.026 C 54.928,73.581 56.164,75.139 56.164,75.139 C 56.164,75.139 57.017,74.856 56.609,76.339 C 56.199,77.817 58.381,77.017 57.86,75.955 C 58.933,75.412 60.526,77.057 61.028,78.179 C 61.53,79.306 60.168,80.902 61.23,81.288 C 62.298,81.672 61.83,83.53 61.83,83.53 C 61.83,83.53 64.062,84.768 62.513,85.831 L 61.985,87.096 C 61.985,87.096 62.995,88.223 63.339,87.552 C 63.683,86.88 63.805,88.235 63.805,88.235 C 63.676,87.995 64.053,89.631 65.445,89.975 C 66.843,90.316 67.728,92.525 66.176,92.553 C 64.63,92.578 64.51,92.536 64.091,93.439 C 63.674,94.338 61.7,94.37 60.678,93.206 C 59.591,93.574 57.657,93.1 58.226,92.23 C 57.288,92.777 56.402,91.308 57.135,90.653 C 57.868,90 56.723,89.154 56.338,90.09 C 55.957,91.025 53.934,91.486 54.075,89.895 C 54.117,89.423 55.195,89.147 55.209,89.541 C 55.406,89.996 55.486,89.505 55.405,89.446 z "
- id="path42"
- style="fill:url(#XMLID_62_)" />
- <g
- id="g44">
- <radialGradient
- id="XMLID_63_"
- cx="64.553703"
- cy="14.1758"
- r="52.228901"
- fx="64.553703"
- fy="14.1758"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#0F80BC"
- id="stop47" />
- <stop
- offset="0.3376"
- style="stop-color:#0A5F9E"
- id="stop49" />
- <stop
- offset="1"
- style="stop-color:#00145A"
- id="stop51" />
- </radialGradient>
- <path
- d="M 103.541,43.916 C 103.85,44.222 104.458,44.154 104.795,44.06 C 105.134,43.963 105.086,43.723 105.378,43.629 C 105.665,43.532 106.775,44.06 106.485,45.213 C 105.812,45.307 105.568,46.125 105.568,46.125 C 105.568,46.125 104.895,46.412 104.555,46.269 C 104.217,46.125 104.217,46.172 103.734,46.219 C 103.251,46.269 102.091,45.597 103.347,45.597 C 104.604,45.597 103.204,45.02 102.672,45.02 C 102.142,45.02 102.575,44.492 103.204,44.636 C 102.768,43.916 103.009,43.385 103.541,43.916 z "
- id="path53"
- style="fill:url(#XMLID_63_)" />
- <radialGradient
- id="XMLID_64_"
- cx="64.548798"
- cy="14.1724"
- r="52.237301"
- fx="64.548798"
- fy="14.1724"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#0F80BC"
- id="stop56" />
- <stop
- offset="0.3376"
- style="stop-color:#0A5F9E"
- id="stop58" />
- <stop
- offset="1"
- style="stop-color:#00145A"
- id="stop60" />
- </radialGradient>
- <path
- d="M 99.188,46.524 C 98.851,46.858 99.237,47.868 99.671,47.818 C 100.104,47.771 100.781,47.58 100.781,47.58 C 100.781,47.58 101.118,48.252 100.781,48.446 C 100.444,48.636 99.462,48.552 100.734,49.021 C 102.038,49.5 102.374,49.355 102.471,49.115 C 102.568,48.877 103.001,48.061 103.244,48.109 C 103.437,47.678 102.568,47.294 103.052,47.004 C 103.531,46.716 103.148,45.661 103.148,45.661 C 103.148,45.661 102.471,45.708 102.182,46.189 C 101.892,46.669 101.508,46.142 101.218,46.142 C 101.169,46.429 100.975,46.669 100.975,46.669 L 100.782,46.235 C 100.781,46.234 99.428,46.188 99.188,46.524 z "
- id="path62"
- style="fill:url(#XMLID_64_)" />
- </g>
- <radialGradient
- id="XMLID_65_"
- cx="65.405296"
- cy="19.1201"
- r="57.382702"
- fx="65.405296"
- fy="19.1201"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#0F80BC"
- id="stop65" />
- <stop
- offset="0.2643"
- style="stop-color:#0B629B"
- id="stop67" />
- <stop
- offset="0.8439"
- style="stop-color:#031747"
- id="stop69" />
- <stop
- offset="1"
- style="stop-color:#00022F"
- id="stop71" />
- </radialGradient>
- <path
- d="M 90.165,47.314 C 90.123,47.191 90.549,46.694 90.435,47.338 C 90.173,47.796 91.493,48.208 91.863,47.698 C 93.104,45.998 90.693,45.176 89.647,45.966 C 88.591,46.763 88.009,45.054 89.222,44.811 C 90.431,44.566 90.533,42.381 89.201,42.373 C 90.377,41.793 88.748,40.055 87.402,39.758 C 87.185,37.888 85.213,36.699 84.176,37.378 C 83.129,38.059 83.039,37.939 81.505,37.008 C 79.977,36.081 79.241,38.936 80.365,40.183 C 81.496,41.439 80.676,43.464 80.723,43.118 C 80.723,43.118 80.297,43.884 80.325,44.171 C 79.031,44.61 78.653,42.788 77.85,42.385 C 77.265,43.148 76.32,43.555 76.32,43.555 L 76.391,42.002 C 76.391,42.002 72.374,39.814 71.14,40.427 C 69.619,40.897 69.259,44.418 70.64,44.933 C 72.023,45.454 68.905,46.751 72.033,50.049 C 75.246,53.435 76.488,53.532 77.144,52.981 C 77.306,52.842 77.586,52.634 77.928,52.403 C 77.959,52.533 78.011,52.658 78.091,52.776 C 78.895,53.985 76.222,54.938 75.849,56.67 C 75.47,58.421 75.819,61.677 77.405,61.788 C 77.707,60.053 80.675,60.666 79.06,62.238 C 77.416,63.841 78.569,64.124 78.569,64.124 C 78.569,64.124 78.647,67.127 81.161,66.167 C 81.088,66.339 81.029,66.559 80.994,66.799 C 80.291,66.657 78.573,66.442 78.153,67.64 C 77.623,69.152 75.379,67.128 73.809,67.807 C 72.246,68.481 69.965,70.694 70.733,72.25 C 72.209,71.55 73.339,74.706 71.277,74.058 C 69.208,73.408 69.61,74.641 69.61,74.641 C 69.61,74.641 67.456,76.34 69.473,78.149 C 68.698,78.267 67.321,79.13 67.785,81.023 C 67.785,81.023 66.9,81.055 66.781,82.749 C 63.894,83.331 64.07,84.227 68.414,83.245 C 66.661,84.155 69.64,84.583 70.96,84.462 C 72.282,84.342 75.752,86.053 73.145,86.07 C 70.533,86.086 71.311,87.364 74.439,87.425 C 77.562,87.489 77.234,88.213 77.698,88.181 C 78.162,88.149 80.182,89.742 80.072,90.625 C 79.959,91.509 82.188,92.426 83.638,91.413 C 83.712,92.332 87.524,91.615 88.088,89.958 C 92.216,90.589 92.121,89.819 91.202,89.329 C 89.135,89.013 85.342,86.266 89.456,87.679 C 93.549,89.09 89.606,86.569 88.527,85.6 C 86.177,85.143 86.057,83.184 86.057,83.184 C 86.057,83.184 87.355,82.445 86.331,80.598 C 88.87,80.127 87.337,79.234 87.622,78.383 C 87.907,77.529 89.196,76.441 89.638,76.353 C 89.722,76.238 90.413,76.376 89.772,76.636 C 89.218,76.642 89.611,78.202 90.274,78.282 C 92.516,78.555 91.86,75.628 90.543,75.039 C 89.223,74.445 90.408,72.835 91.335,73.919 C 92.262,75.001 94.328,73.786 93.553,72.415 C 94.785,73.269 95.449,70.506 94.925,68.92 C 96.573,67.491 96.52,64.642 95.245,64.005 C 94.618,63.692 94.315,63.489 94.163,63.1 C 94.92,62.742 95.924,62.478 96.318,62.831 C 96.959,63.41 98.743,61.813 98.63,59.946 C 99.381,60.358 100.577,56.551 99.561,55.219 C 101.887,51.967 101.26,51.672 100.482,52.217 C 99.312,53.839 95.469,55.78 98.448,52.905 C 101.34,50.114 97.679,52.23 96.454,52.683 C 95.013,54.488 93.484,53.621 93.484,53.621 C 93.484,53.621 93.549,52.142 91.688,52.112 C 92.548,49.739 91.162,50.596 90.677,49.948 C 90.191,49.301 90.016,47.719 90.165,47.314 z "
- id="path73"
- style="fill:url(#XMLID_65_)" />
- <radialGradient
- id="XMLID_66_"
- cx="64.550797"
- cy="14.1733"
- r="52.233299"
- fx="64.550797"
- fy="14.1733"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#0F80BC"
- id="stop76" />
- <stop
- offset="0.3376"
- style="stop-color:#0A5F9E"
- id="stop78" />
- <stop
- offset="1"
- style="stop-color:#00145A"
- id="stop80" />
- </radialGradient>
- <path
- d="M 60.007,23.541 C 59.646,24.482 61.185,26.011 61.958,25.519 C 62.733,25.024 63.843,24.037 63.843,24.037 C 63.843,24.037 65.02,24.982 64.544,25.656 C 64.065,26.328 62.158,27.084 64.918,26.778 C 67.749,26.465 68.265,25.881 68.251,25.341 C 68.236,24.803 68.392,22.872 68.882,22.738 C 68.897,21.748 66.957,21.84 67.629,20.849 C 68.301,19.863 66.724,18.243 66.724,18.243 C 66.724,18.243 65.496,18.962 65.342,20.131 C 65.187,21.298 64.038,20.669 63.494,20.937 C 63.635,21.521 63.468,22.149 63.468,22.149 L 62.757,21.52 C 62.758,21.519 60.186,22.688 60.007,23.541 z "
- id="path82"
- style="fill:url(#XMLID_66_)" />
- <radialGradient
- id="XMLID_67_"
- cx="64.551804"
- cy="14.1646"
- r="52.241501"
- fx="64.551804"
- fy="14.1646"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#0F80BC"
- id="stop85" />
- <stop
- offset="0.3376"
- style="stop-color:#0A5F9E"
- id="stop87" />
- <stop
- offset="1"
- style="stop-color:#00145A"
- id="stop89" />
- </radialGradient>
- <path
- d="M 64.61,72.966 C 64.273,73.3 64.66,74.309 65.093,74.262 C 65.527,74.213 66.203,74.022 66.203,74.022 C 66.203,74.022 66.54,74.694 66.203,74.887 C 65.864,75.077 64.884,74.995 66.154,75.462 C 67.457,75.942 67.796,75.798 67.893,75.558 C 67.988,75.318 68.422,74.502 68.664,74.549 C 68.859,74.118 67.988,73.735 68.471,73.447 C 68.954,73.156 68.57,72.101 68.57,72.101 C 68.57,72.101 67.894,72.149 67.604,72.63 C 67.314,73.109 66.928,72.581 66.638,72.581 C 66.589,72.869 66.398,73.109 66.398,73.109 L 66.205,72.678 C 66.204,72.678 64.851,72.63 64.61,72.966 z "
- id="path91"
- style="fill:url(#XMLID_67_)" />
- <g
- id="g93">
- <defs
- id="defs95">
- <ellipse
- id="XMLID_8_"
- cx="63.755001"
- cy="59.375"
- rx="58.215"
- ry="58.254002"
- sodipodi:cx="63.755001"
- sodipodi:cy="59.375"
- sodipodi:rx="58.215"
- sodipodi:ry="58.254002" />
- </defs>
- <clipPath
- id="XMLID_68_">
- <use
- xlink:href="#XMLID_8_"
- id="use99"
- x="0"
- y="0"
- width="132.72"
- height="127.219" />
- </clipPath>
- <linearGradient
- id="XMLID_69_"
- gradientUnits="userSpaceOnUse"
- x1="76.371597"
- y1="16.591801"
- x2="93.231796"
- y2="18.029301">
- <stop
- offset="0"
- style="stop-color:#0F80BC"
- id="stop102" />
- <stop
- offset="0.3376"
- style="stop-color:#0A5F9E"
- id="stop104" />
- <stop
- offset="1"
- style="stop-color:#00145A"
- id="stop106" />
- </linearGradient>
- <path
- clip-path="url(#XMLID_68_)"
- d="M 65.061,1.002 C 64.149,1.205 65.674,4.505 65.674,4.505 C 65.674,4.505 65.619,6.721 65.995,6.834 C 66.369,6.947 68.847,7.567 70.142,9.179 C 71.443,10.793 70.767,11.642 69.684,11.176 C 68.6,10.711 68.887,12.135 68.887,12.135 C 68.887,12.135 72.157,13.198 69.687,13.13 C 67.212,13.064 71.353,14.871 71.08,15.06 C 70.807,15.251 70.651,16.291 70.651,16.291 C 70.651,16.291 68.468,16.473 70.318,17.25 C 76.578,19.887 69.649,19.175 69.649,19.175 L 68.765,20.262 L 70.514,22.456 L 71.859,23.418 C 71.859,23.418 74.692,22.473 75.575,22.325 C 76.459,22.179 78.689,20.51 78.689,20.51 C 78.689,20.51 79.358,20.988 78.858,20.013 C 78.357,19.037 80.699,19.473 81.283,20.199 L 85.417,22.066 C 85.471,22.21 85.563,22.34 85.709,22.441 C 86.515,23.006 84.98,23.976 85.136,25.003 C 85.292,26.019 86.229,27.707 87.257,27.529 C 87.077,26.56 89.108,26.443 88.401,27.523 C 87.695,28.6 88.478,28.579 88.478,28.579 C 88.478,28.579 89.131,30.1 90.512,29.255 C 90.456,29.719 90.739,30.652 91.925,30.714 C 91.925,30.714 91.799,31.22 92.773,31.579 C 92.641,33.316 93.197,33.371 93.334,30.733 C 93.579,31.89 94.326,30.262 94.475,29.483 C 94.625,28.699 96.231,26.978 95.797,28.499 C 95.366,30.007 100.532,30.559 101.105,28.758 C 101.683,26.943 103.742,25.995 103.804,25.72 C 103.866,25.439 99.221,25.008 99.734,25.227 C 100.248,25.446 101.204,24.279 100.849,23.241 C 101.425,23.357 101.679,20.94 100.766,20.314 C 101.909,17.909 101.417,17.834 100.948,18.313 C 100.378,19.518 98.026,21.336 99.621,19.096 C 101.23,16.833 98.968,18.812 98.183,19.304 C 97.494,20.645 96.284,20.384 96.284,20.384 C 96.284,20.384 96.062,19.473 94.768,19.777 C 94.919,18.165 94.115,18.939 93.648,18.623 C 93.363,18.43 93.09,17.996 92.922,17.624 C 94.037,18.076 95.534,18.557 95.276,17.728 C 95.109,17.186 97.388,18.371 97.468,18.124 L 100.316,17.728 L 103.085,15.978 C 85.388,0.164 65.061,1.002 65.061,1.002 z "
- id="path108"
- style="fill:url(#XMLID_69_)" />
- <linearGradient
- id="XMLID_70_"
- gradientUnits="userSpaceOnUse"
- x1="38.491699"
- y1="19.146999"
- x2="29.173901"
- y2="32.832401">
- <stop
- offset="0"
- style="stop-color:#0F80BC"
- id="stop111" />
- <stop
- offset="0.3376"
- style="stop-color:#0A5F9E"
- id="stop113" />
- <stop
- offset="1"
- style="stop-color:#00145A"
- id="stop115" />
- </linearGradient>
- <path
- clip-path="url(#XMLID_68_)"
- d="M 38.752,6.095 C 28.179,10.842 20.201,20.626 20.201,20.626 C 20.201,20.626 21.139,22.771 21.466,22.613 C 21.796,22.457 19.105,28.241 21.08,28.567 C 23.065,28.892 28.776,24.989 27.717,25.347 C 26.661,25.703 28.312,23.235 28.312,23.235 C 28.312,23.235 31.284,21.917 29.526,23.437 C 27.783,24.948 31.844,23.624 31.781,23.933 C 31.717,24.244 32.306,25.08 32.306,25.08 C 32.306,25.08 30.913,26.574 32.712,25.972 C 38.884,23.897 33.524,27.751 33.524,27.751 L 33.63,29.063 L 36.3,29.527 L 37.878,29.377 C 37.878,29.377 39.259,26.941 39.792,26.279 C 40.327,25.616 40.82,22.995 40.82,22.995 C 40.82,22.995 41.623,22.911 40.607,22.527 C 39.591,22.142 41.579,20.944 42.493,21.093 L 46.796,19.757 C 46.934,19.825 47.088,19.86 47.266,19.839 C 48.251,19.725 47.755,21.442 48.56,22.089 C 49.356,22.733 51.187,23.353 51.843,22.558 C 51.059,21.964 52.517,20.547 52.703,21.807 C 52.89,23.056 53.47,22.53 53.47,22.53 C 53.47,22.53 55.013,19.876 55.506,18.353 C 55.776,18.73 58.294,15.044 57.531,13.286 C 56.76,11.506 58.01,9.83 57.871,9.571 C 57.728,9.315 56.975,10.099 57.531,9.911 C 58.092,9.719 55.942,10.683 55.657,7.85 C 55.369,4.96 54.95,8.093 54.672,9.019 C 55.049,10.527 58.962,2.926 58.962,2.926 L 64.006,0.869 C 64.006,0.873 52.525,-0.088 38.752,6.095 z "
- id="path117"
- style="fill:url(#XMLID_70_)" />
- </g>
- <linearGradient
- id="XMLID_71_"
- gradientUnits="userSpaceOnUse"
- x1="62.651901"
- y1="34.546398"
- x2="62.651901"
- y2="11.8951">
- <stop
- offset="0.0137"
- style="stop-color:#000000"
- stop-opacity="0"
- id="stop120" />
- <stop
- offset="0.65"
- style="stop-color:#C4E0E3"
- stop-opacity="0.2"
- id="stop122" />
- <stop
- offset="0.8224"
- style="stop-color:#C4E0E3"
- id="stop124" />
- <stop
- offset="0.8498"
- style="stop-color:#CDE5E8"
- id="stop126" />
- <stop
- offset="0.9443"
- style="stop-color:#E8F4F7"
- id="stop128" />
- <stop
- offset="1"
- style="stop-color:#F2FAFC"
- id="stop130" />
- </linearGradient>
- <ellipse
- cx="62.652"
- cy="23.271"
- rx="30.825001"
- ry="19.971001"
- id="ellipse132"
- style="opacity:0.5;fill:url(#XMLID_71_)"
- sodipodi:cx="62.652"
- sodipodi:cy="23.271"
- sodipodi:rx="30.825001"
- sodipodi:ry="19.971001" />
- </g>
-
-
- <filter
- id="blurshadow"
- x="-25%"
- y="-25%"
- width="150%"
- height="150%">
- <feGaussianBlur
- in="SourceAlpha"
- stdDeviation="1.5"
- result="blur"
- id="feGaussianBlur135" />
- <feOffset
- dx="1"
- dy="1"
- in="blur"
- result="shift"
- id="feOffset137" />
- <feMerge
- id="feMerge139">
- <feMergeNode
- in="shift"
- id="feMergeNode141" />
- <feMergeNode
- in="SourceGraphic"
- id="feMergeNode143" />
- </feMerge>
- </filter>
- <g
- id="Fox"
- filter="url(#blurshadow)">
- <g
- id="g146">
- <linearGradient
- id="XMLID_74_"
- gradientUnits="userSpaceOnUse"
- x1="64.477501"
- y1="56.3008"
- x2="78.466103"
- y2="48.0854">
- <stop
- offset="0"
- style="stop-color:#DF731B"
- id="stop149" />
- <stop
- offset="0.5449"
- style="stop-color:#DF731B"
- id="stop151" />
- <stop
- offset="0.7014"
- style="stop-color:#EC8811"
- id="stop153" />
- <stop
- offset="0.8593"
- style="stop-color:#F4950B"
- id="stop155" />
- <stop
- offset="1"
- style="stop-color:#F79A09"
- id="stop157" />
- </linearGradient>
- <path
- d="M 125.321,43.084 L 123.895,52.234 C 123.895,52.234 121.856,35.294 119.357,28.961 C 115.527,19.257 113.823,19.335 113.812,19.349 C 116.377,25.868 115.912,29.37 115.912,29.37 C 115.912,29.37 111.367,16.983 99.35,13.042 C 85.118,8.377 77.868,10.063 77.922,10.128 C 77.976,10.194 92.631,12.69 95.23,16.261 C 95.23,16.261 89.005,16.261 82.81,18.046 C 82.53,18.126 105.603,20.928 110.32,43.984 C 110.32,43.984 107.791,38.707 104.663,37.811 C 106.72,44.069 106.192,55.944 104.233,61.846 C 103.981,62.605 103.723,58.565 99.864,56.825 C 101.1,65.682 99.79,79.73 93.645,83.6 C 93.166,83.901 97.497,69.732 94.516,75.21 C 76.719,102.497 55.56,86.25 46.978,80.459 C 53.866,82.147 61.183,80.931 65.419,78.036 C 69.694,75.114 72.223,72.978 74.494,73.483 C 76.764,73.99 78.275,71.712 76.512,69.691 C 74.747,67.666 70.461,64.883 64.663,66.4 C 60.574,67.471 55.507,71.995 47.772,67.414 C 41.173,63.504 41.218,60.329 41.218,58.306 C 41.218,56.282 43.018,53.206 46.294,53.711 C 49.228,54.164 47.682,52.441 50.839,53.711 C 51.699,54.057 50.753,49.582 49.529,46.715 C 51.886,41.796 59.533,40.334 60.104,39.903 C 61.138,39.121 60.569,38.731 60.922,37.553 C 61.252,36.456 61.463,33.491 52.905,34.31 C 48.967,34.687 46.462,29.584 45.641,28.345 C 45.907,26.768 46.334,25.327 46.912,24.007 C 47.499,22.804 48.14,21.702 48.78,20.868 C 48.98,20.607 49.154,20.378 49.312,20.165 C 50.588,18.677 52.154,17.405 54.034,16.347 C 55.015,15.793 43.065,16.312 37.688,23.321 C 36.245,23.509 34.265,23.093 32.052,23.093 C 29.278,23.093 27.099,23.396 25.082,23.903 C 24.759,23.984 24.238,23.94 23.601,23.788 C 21.826,21.949 16.804,17.529 16.574,11.534 C 16.574,11.534 9.272,17.146 10.365,32.446 C 10.269,40.907 7.771,38.488 6.486,43.08 C 5.888,45.256 7.385,46.895 7.385,46.959 C 7.383,46.992 9.181,45.013 9.181,45.013 C 9.181,45.013 -2.142,64.63 12.481,89.673 C 25.085,111.262 46.236,120.803 68.184,118.945 C 72.023,118.695 75.89,118.123 79.748,117.191 C 130.881,104.828 125.321,43.084 125.321,43.084 z "
- id="path159"
- style="fill:url(#XMLID_74_)" />
- </g>
- <linearGradient
- id="XMLID_75_"
- gradientUnits="userSpaceOnUse"
- x1="41.838902"
- y1="36.961899"
- x2="52.696899"
- y2="37.8922">
- <stop
- offset="0.0112"
- style="stop-color:#941403"
- id="stop162" />
- <stop
- offset="0.8972"
- style="stop-color:#E85C0A"
- id="stop164" />
- </linearGradient>
- <path
- d="M 45.469,27.61 C 45.469,27.61 47.679,33.649 52.636,33.629 C 62.093,33.591 62.282,33.722 62.343,34.872 C 62.531,38.372 60.803,39.519 60.142,40.017 C 59.479,40.514 50.474,45.735 50.143,47.228 C 49.812,48.72 39.752,33.03 39.752,33.03 L 45.469,27.61 z "
- id="path166"
- style="fill:url(#XMLID_75_)" />
- <linearGradient
- id="XMLID_76_"
- gradientUnits="userSpaceOnUse"
- x1="24.450199"
- y1="33.952599"
- x2="63.643002"
- y2="38.8517">
- <stop
- offset="0.0112"
- style="stop-color:#941403"
- id="stop169" />
- <stop
- offset="0.1357"
- style="stop-color:#A32104"
- id="stop171" />
- <stop
- offset="0.4978"
- style="stop-color:#C84107"
- id="stop173" />
- <stop
- offset="0.7893"
- style="stop-color:#DF5509"
- id="stop175" />
- <stop
- offset="0.972"
- style="stop-color:#E85C0A"
- id="stop177" />
- </linearGradient>
- <path
- d="M 50.504,34.12 C 50.504,34.12 53.576,38.042 51.253,39.611 C 48.415,41.527 55.265,41.946 57.747,40.553 C 60.229,39.16 61.753,37.113 61.84,36.808 C 61.927,36.503 62.742,33.754 57.561,34.712 C 54.285,35.318 53.085,35.458 50.504,34.12 z "
- id="path179"
- style="fill:url(#XMLID_76_)" />
- <linearGradient
- id="XMLID_77_"
- gradientUnits="userSpaceOnUse"
- x1="48.730999"
- y1="44.320301"
- x2="51.856499"
- y2="42.945099">
- <stop
- offset="0"
- style="stop-color:#F2C8A9"
- id="stop182" />
- <stop
- offset="1"
- style="stop-color:#FFFFCC"
- id="stop184" />
- </linearGradient>
- <path
- d="M 60.143,40.017 C 60.645,39.639 61.759,38.88 62.185,37.006 C 61.874,37.132 61.845,36.776 61.478,36.93 C 54.523,44.185 54.257,39.133 50.461,40.15 C 47.001,41.097 46.224,42.396 46.078,42.497 C 46.129,42.57 46.182,42.645 46.233,42.718 C 47.23,43.224 48.186,44.84 48.904,46.282 C 49.606,47.118 50.077,47.53 50.145,47.227 C 50.475,45.734 59.48,40.513 60.143,40.017 z "
- id="path186"
- style="fill:url(#XMLID_77_)" />
- <linearGradient
- id="XMLID_78_"
- gradientUnits="userSpaceOnUse"
- x1="38.767601"
- y1="82.582497"
- x2="91.339104"
- y2="84.7472">
- <stop
- offset="0"
- style="stop-color:#B30000"
- id="stop189" />
- <stop
- offset="1"
- style="stop-color:#DF731B"
- id="stop191" />
- </linearGradient>
- <path
- d="M 8.18,45.782 C 6.76,48.761 -2.352,64.159 12.519,89.787 C 27.071,114.871 52.256,123.063 77.969,117.497 C 85.309,115.909 93.772,110.166 99.165,105.952 C 95.7,97.212 97.751,97.54 95.894,98.69 C 75.18,111.513 58.714,98.864 45.97,97.247 C -0.913,91.305 8.345,45.689 8.345,45.689 L 8.18,45.782 z "
- id="path193"
- style="fill:url(#XMLID_78_)" />
- <linearGradient
- id="XMLID_79_"
- gradientUnits="userSpaceOnUse"
- x1="51.277802"
- y1="74.424301"
- x2="78.689102"
- y2="84.211601">
- <stop
- offset="0"
- style="stop-color:#941403"
- id="stop196" />
- <stop
- offset="1"
- style="stop-color:#DF731B"
- id="stop198" />
- </linearGradient>
- <path
- d="M 47.219,80.933 C 51.638,82.258 61.279,81.116 65.42,78.036 C 68.21,75.962 70.318,74.398 72.091,73.744 C 68.957,71.615 68.907,74.633 62.317,76.159 C 48.589,79.344 41.924,72.464 41.924,72.464 C 42.896,77.908 46.296,80.559 47.826,81.5 C 47.42,81.14 47.207,80.929 47.219,80.933 z "
- id="path200"
- style="fill:url(#XMLID_79_)" />
- <linearGradient
- id="XMLID_80_"
- gradientUnits="userSpaceOnUse"
- x1="6.1064"
- y1="87.056602"
- x2="32.828098"
- y2="87.056602"
- gradientTransform="matrix(0.9988,4.9e-2,-4.9e-2,0.9988,4.7153,-1.2399)">
- <stop
- offset="0.0562"
- style="stop-color:#B30000"
- id="stop203" />
- <stop
- offset="1"
- style="stop-color:#DE5C01"
- id="stop205" />
- </linearGradient>
- <path
- d="M 32.332,105.794 C 32.332,105.794 20.904,92.898 17.714,78.456 C 13.01,74.013 9.672,70.256 7.455,67.539 C 8.735,77.816 13.975,93.771 32.332,105.794 z "
- id="path207"
- style="fill:url(#XMLID_80_)" />
- <linearGradient
- id="XMLID_81_"
- gradientUnits="userSpaceOnUse"
- x1="209.7227"
- y1="-130.65919"
- x2="224.26109"
- y2="-85.618599"
- gradientTransform="matrix(0.9929,0.1186,-0.1186,0.9929,-207.2682,181.2932)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop210" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop212" />
- </linearGradient>
- <path
- d="M 22.799,94.082 C 22.799,94.082 14.912,82.854 17.869,73.32 C 20.529,64.749 17.304,69.848 15.428,71.68 C 13.533,73.531 12.559,66.216 12.607,65.373 C 12.61,65.355 12.608,65.347 12.606,65.346 C 12.487,65.321 8.852,82.872 22.799,94.082 z "
- id="path214"
- style="fill:url(#XMLID_81_)" />
- <linearGradient
- id="XMLID_82_"
- gradientUnits="userSpaceOnUse"
- x1="12.4712"
- y1="61.107399"
- x2="12.4712"
- y2="111.4548"
- gradientTransform="matrix(0.999,4.48e-2,-4.48e-2,0.999,3.2321,-0.6968)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop217" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop219" />
- </linearGradient>
- <path
- d="M 11.115,84.294 C 11.115,84.294 9.317,61.506 15,58.285 C 24.025,53.17 15.753,54.366 13.136,55.786 C 10.491,57.219 10.736,47.786 11.11,46.89 C 11.477,46.007 1.795,55.808 11.115,84.294 z "
- id="path221"
- style="fill:url(#XMLID_82_)" />
- <path
- d="M 50.601,17.239 C 50.601,17.239 43.456,24.496 43.509,24.521 C 43.563,24.547 43.714,33.836 43.947,36.469 C 44.803,37.48 47.471,44.057 45.429,42.597 C 43.343,41.107 44.847,41.075 45.029,41.832 C 45.034,41.857 45.034,41.869 45.029,41.869 C 44.891,41.933 39.844,30.946 50.601,17.239 z "
- id="path223"
- style="fill:#a40000" />
- <linearGradient
- id="XMLID_83_"
- gradientUnits="userSpaceOnUse"
- x1="18.3477"
- y1="30.846201"
- x2="12.8857"
- y2="16.8496">
- <stop
- offset="0.0112"
- style="stop-color:#941403"
- id="stop226" />
- <stop
- offset="0.4719"
- style="stop-color:#E85C0A"
- id="stop228" />
- <stop
- offset="1"
- style="stop-color:#F9BD5F"
- id="stop230" />
- </linearGradient>
- <path
- d="M 16.613,11.647 C 16.613,11.647 9.019,17.472 10.47,33.452 C 16.348,28.175 24.66,24.23 24.66,24.23 C 23.265,23.352 16.866,18.233 16.613,11.647 z "
- id="path232"
- style="fill:url(#XMLID_83_)" />
- <linearGradient
- id="XMLID_84_"
- gradientUnits="userSpaceOnUse"
- x1="41.703602"
- y1="34.057598"
- x2="54.7924"
- y2="16.8533">
- <stop
- offset="0.1966"
- style="stop-color:#DE7210"
- id="stop235" />
- <stop
- offset="0.8427"
- style="stop-color:#F9BD5F"
- id="stop237" />
- <stop
- offset="1"
- style="stop-color:#FFFCCF"
- id="stop239" />
- </linearGradient>
- <path
- d="M 35.328,29.122 L 46.734,43.307 C 43.443,29.377 45.973,21.019 54.074,16.46 C 55.273,15.784 37.149,16.703 35.328,29.122 z "
- id="path241"
- style="fill:url(#XMLID_84_)" />
- <linearGradient
- id="XMLID_85_"
- gradientUnits="userSpaceOnUse"
- x1="34.783699"
- y1="57.5415"
- x2="48.052399"
- y2="84.078903">
- <stop
- offset="0.0169"
- style="stop-color:#941403"
- id="stop244" />
- <stop
- offset="0.5"
- style="stop-color:#E35100"
- id="stop246" />
- <stop
- offset="1"
- style="stop-color:#DF731B"
- id="stop248" />
- </linearGradient>
- <path
- d="M 27.292,64.164 C 29.237,51.908 46.294,53.71 46.294,53.71 C 45.533,54.275 42.611,54.613 41.774,56.951 C 39.012,64.67 41.646,81.532 58.852,88.604 C 60.667,89.352 24.418,82.276 27.292,64.164 z "
- id="path250"
- style="fill:url(#XMLID_85_)" />
- <linearGradient
- id="XMLID_86_"
- gradientUnits="userSpaceOnUse"
- x1="54.825199"
- y1="41.267101"
- x2="58.138699"
- y2="44.27">
- <stop
- offset="0"
- style="stop-color:#EEA272"
- id="stop253" />
- <stop
- offset="0.1865"
- style="stop-color:#EFA777"
- id="stop255" />
- <stop
- offset="0.4064"
- style="stop-color:#F2B585"
- id="stop257" />
- <stop
- offset="0.643"
- style="stop-color:#F6CD9C"
- id="stop259" />
- <stop
- offset="0.8898"
- style="stop-color:#FCEEBB"
- id="stop261" />
- <stop
- offset="1"
- style="stop-color:#FFFFCC"
- id="stop263" />
- </linearGradient>
- <path
- d="M 62.087,37.338 C 62.003,37.323 61.929,37.325 61.892,37.375 C 61.682,37.656 60.871,38.614 58.942,40.185 C 55.359,43.1 53.849,42.362 51.18,42.959 C 49.965,43.23 48.81,44.046 48.032,44.7 C 48.347,45.209 48.641,45.757 48.903,46.282 C 49.605,47.118 50.076,47.53 50.144,47.227 C 50.475,45.734 59.48,40.513 60.143,40.016 C 60.613,39.663 61.611,38.962 62.087,37.338 z "
- id="path265"
- style="fill:url(#XMLID_86_)" />
- <linearGradient
- id="XMLID_87_"
- gradientUnits="userSpaceOnUse"
- x1="35.5"
- y1="48.361301"
- x2="50.721401"
- y2="63.893299">
- <stop
- offset="0.1966"
- style="stop-color:#DF731B"
- id="stop268" />
- <stop
- offset="0.8427"
- style="stop-color:#F9BD5F"
- id="stop270" />
- <stop
- offset="1"
- style="stop-color:#FFFCCF"
- id="stop272" />
- </linearGradient>
- <path
- d="M 51.09,55.865 C 51.19,53.275 51.009,46.984 48.316,44.254 C 46.259,42.169 45.776,39.78 45.5,37.053 C 23.137,45.406 19.944,56.325 22.18,55.97 C 40.066,53.135 45.094,52.788 51.09,55.865 z "
- id="path274"
- style="fill:url(#XMLID_87_)" />
- <linearGradient
- id="XMLID_88_"
- gradientUnits="userSpaceOnUse"
- x1="847.4707"
- y1="-1065.021"
- x2="847.4707"
- y2="-1007.9581"
- gradientTransform="matrix(0.9673,0.2537,-0.2537,0.9673,-1076.666,855.2322)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop277" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop279" />
- </linearGradient>
- <path
- d="M 3.411,71.171 C 3.411,71.171 4.965,50.979 15.072,43.589 C 23.007,37.784 16.845,39.893 13.781,40.133 C 10.55,40.389 8.827,42.354 9.45,41.631 C 9.477,41.601 9.486,41.584 9.481,41.576 C 9.375,41.451 1.897,47.726 3.411,71.171 z "
- id="path281"
- style="fill:url(#XMLID_88_)" />
- <linearGradient
- id="XMLID_89_"
- gradientUnits="userSpaceOnUse"
- x1="15.8564"
- y1="36.413101"
- x2="-3.4365001"
- y2="67.833"
- gradientTransform="matrix(0.9897,-8.01e-2,9.49e-2,1.1727,-3.8203,-4.9468)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop284" />
- <stop
- offset="1"
- style="stop-color:#F2C06E"
- id="stop286" />
- </linearGradient>
- <path
- d="M 2.347,55.658 C 2.347,55.658 7.763,38.466 18.709,38.611 C 25.968,38.708 20.21,32.477 18.014,31.53 C 15.723,30.549 15.175,30.587 14.64,31.061 C 13.838,31.771 6.636,31.497 2.347,55.658 z "
- id="path288"
- style="fill:url(#XMLID_89_)" />
- <linearGradient
- id="XMLID_90_"
- gradientUnits="userSpaceOnUse"
- x1="80.929199"
- y1="67.844704"
- x2="60.433201"
- y2="71.759697">
- <stop
- offset="0.0047"
- style="stop-color:#FFFAEE"
- id="stop291" />
- <stop
- offset="0.2757"
- style="stop-color:#F5F89B"
- id="stop293" />
- <stop
- offset="0.3102"
- style="stop-color:#F3ED91"
- id="stop295" />
- <stop
- offset="0.4668"
- style="stop-color:#ECC267"
- id="stop297" />
- <stop
- offset="0.6182"
- style="stop-color:#E6A046"
- id="stop299" />
- <stop
- offset="0.7611"
- style="stop-color:#E2872E"
- id="stop301" />
- <stop
- offset="0.8921"
- style="stop-color:#E07820"
- id="stop303" />
- <stop
- offset="1"
- style="stop-color:#DF731B"
- id="stop305" />
- </linearGradient>
- <path
- d="M 76.185,72.486 C 77.008,71.679 76.434,68.583 71.261,66.706 C 66.567,65.001 59.24,69.336 57.066,70.192 C 57.066,70.192 65.365,68.637 68.477,69.155 C 72.695,69.857 74.177,74.456 76.185,72.486 z "
- id="path307"
- style="fill:url(#XMLID_90_)" />
- <linearGradient
- id="XMLID_91_"
- gradientUnits="userSpaceOnUse"
- x1="-411.27289"
- y1="427.6279"
- x2="-411.27289"
- y2="475.31949"
- gradientTransform="matrix(0.992,0.1261,-0.1261,0.992,477.0624,-332.3914)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop310" />
- <stop
- offset="1"
- style="stop-color:#F2C06E"
- id="stop312" />
- </linearGradient>
- <path
- d="M 10.342,66.822 C 10.342,66.822 9.443,49.92 17.018,42.701 C 22.965,37.031 18.087,39.446 15.574,39.977 C 12.924,40.539 11.709,42.354 12.148,41.687 C 12.167,41.659 12.171,41.644 12.167,41.638 C 12.064,41.547 6.548,47.557 10.342,66.822 z "
- id="path314"
- style="fill:url(#XMLID_91_)" />
- <linearGradient
- id="XMLID_92_"
- gradientUnits="userSpaceOnUse"
- x1="-414.43649"
- y1="422.68359"
- x2="-414.43649"
- y2="470.3703"
- gradientTransform="matrix(0.9324,0.3616,-0.3616,0.9324,554.92,-207.713)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop317" />
- <stop
- offset="1"
- style="stop-color:#F2C06E"
- id="stop319" />
- </linearGradient>
- <path
- d="M 4.508,61.453 C 4.508,61.453 7.709,44.832 16.801,39.652 C 23.939,35.583 18.624,36.751 16.056,36.661 C 13.348,36.568 11.732,38.036 12.318,37.495 C 12.343,37.473 12.351,37.458 12.348,37.453 C 12.272,37.338 5.47,41.842 4.508,61.453 z "
- id="path321"
- style="fill:url(#XMLID_92_)" />
- <linearGradient
- id="XMLID_93_"
- gradientUnits="userSpaceOnUse"
- x1="13.8481"
- y1="55.797401"
- x2="0.56919998"
- y2="75.715698"
- gradientTransform="matrix(0.8104,-0.5859,0.5859,0.8104,-28.537,20.3312)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop324" />
- <stop
- offset="1"
- style="stop-color:#F2C072"
- id="stop326" />
- </linearGradient>
- <path
- d="M 15.303,68.275 C 15.303,68.275 13.553,58.201 17.324,53.242 C 20.334,49.285 17.691,51.221 16.294,51.791 C 14.836,52.387 14.283,53.562 14.482,53.131 C 14.675,52.71 7.994,57.887 15.303,68.275 z "
- id="path328"
- style="fill:url(#XMLID_93_)" />
- <linearGradient
- id="XMLID_94_"
- gradientUnits="userSpaceOnUse"
- x1="21.0347"
- y1="49.271"
- x2="7.7561002"
- y2="69.188797"
- gradientTransform="matrix(0.8104,-0.5859,0.5859,0.8104,-28.537,20.3312)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop331" />
- <stop
- offset="1"
- style="stop-color:#F2C072"
- id="stop333" />
- </linearGradient>
- <path
- d="M 17.303,58.775 C 17.303,58.775 15.553,48.701 19.324,43.742 C 22.334,39.785 19.691,41.721 18.294,42.291 C 16.836,42.887 16.283,44.062 16.482,43.631 C 16.675,43.21 9.994,48.387 17.303,58.775 z "
- id="path335"
- style="fill:url(#XMLID_94_)" />
- <linearGradient
- id="XMLID_95_"
- gradientUnits="userSpaceOnUse"
- x1="12.3135"
- y1="37.8647"
- x2="6.5040002"
- y2="48.708801">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop338" />
- <stop
- offset="1"
- style="stop-color:#EED8A5"
- id="stop340" />
- </linearGradient>
- <path
- d="M 6.725,45.003 C 6.725,45.003 10.812,36.628 16.245,34.979 C 20.581,33.664 17.595,33.683 16.259,33.357 C 14.863,33.019 13.828,33.591 14.205,33.379 C 14.573,33.172 6.875,33.428 6.725,45.003 z "
- id="path342"
- style="fill:url(#XMLID_95_)" />
- <linearGradient
- id="XMLID_96_"
- gradientUnits="userSpaceOnUse"
- x1="11.7305"
- y1="44.491699"
- x2="5.9211001"
- y2="55.3354">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop345" />
- <stop
- offset="1"
- style="stop-color:#EED8A5"
- id="stop347" />
- </linearGradient>
- <path
- d="M 6.142,51.631 C 6.142,51.631 10.229,43.256 15.662,41.607 C 19.998,40.292 17.012,40.311 15.676,39.985 C 14.28,39.647 13.245,40.219 13.622,40.007 C 13.989,39.799 6.291,40.056 6.142,51.631 z "
- id="path349"
- style="fill:url(#XMLID_96_)" />
- <linearGradient
- id="XMLID_97_"
- gradientUnits="userSpaceOnUse"
- x1="18.313"
- y1="39.891102"
- x2="12.6977"
- y2="53.833">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop352" />
- <stop
- offset="1"
- style="stop-color:#F2C072"
- id="stop354" />
- </linearGradient>
- <path
- d="M 9.109,49.803 C 9.109,49.803 16.318,35.029 25.903,32.119 C 33.553,29.799 28.285,29.832 25.927,29.259 C 23.465,28.662 21.639,29.673 22.303,29.298 C 22.953,28.931 9.373,29.383 9.109,49.803 z "
- id="path356"
- style="fill:url(#XMLID_97_)" />
- <linearGradient
- id="XMLID_98_"
- gradientUnits="userSpaceOnUse"
- x1="20.4468"
- y1="33.1045"
- x2="7.1675"
- y2="53.023399">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop359" />
- <stop
- offset="1"
- style="stop-color:#F2C072"
- id="stop361" />
- </linearGradient>
- <path
- d="M 14.037,41.846 C 14.037,41.846 18.521,32.657 24.482,30.847 C 29.24,29.404 25.963,29.425 24.497,29.068 C 22.965,28.697 21.83,29.325 22.243,29.092 C 22.647,28.864 14.201,29.145 14.037,41.846 z "
- id="path363"
- style="fill:url(#XMLID_98_)" />
- <linearGradient
- id="XMLID_99_"
- gradientUnits="userSpaceOnUse"
- x1="21.340799"
- y1="37.1255"
- x2="9.2384996"
- y2="55.278999">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop366" />
- <stop
- offset="1"
- style="stop-color:#F2C072"
- id="stop368" />
- </linearGradient>
- <path
- d="M 15.499,45.092 C 15.499,45.092 19.586,36.717 25.019,35.068 C 29.355,33.753 26.369,33.772 25.033,33.446 C 23.637,33.108 22.602,33.68 22.979,33.468 C 23.346,33.26 15.648,33.517 15.499,45.092 z "
- id="path370"
- style="fill:url(#XMLID_99_)" />
- <linearGradient
- id="XMLID_100_"
- gradientUnits="userSpaceOnUse"
- x1="60.286098"
- y1="34.297401"
- x2="61.244999"
- y2="36.0061">
- <stop
- offset="0"
- style="stop-color:#8B8B89"
- id="stop373" />
- <stop
- offset="1"
- style="stop-color:#120500"
- id="stop375" />
- </linearGradient>
- <path
- d="M 62.344,34.872 C 62.297,33.999 62.168,33.714 57.988,33.643 C 58.467,33.86 59.293,34.295 60.202,35.041 C 61.403,36.025 61.598,37.122 61.722,38.258 C 62.129,37.484 62.427,36.417 62.344,34.872 z "
- id="path377"
- style="fill:url(#XMLID_100_)" />
- <linearGradient
- id="XMLID_101_"
- gradientUnits="userSpaceOnUse"
- x1="22.559601"
- y1="28.492201"
- x2="22.559601"
- y2="23.245199">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop380" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop382" />
- </linearGradient>
- <path
- d="M 37.802,23.206 L 34.177,29.039 C 34.177,29.039 19.681,26.766 7.392,38.655 C 6.376,39.637 15.43,17.632 37.802,23.206 z "
- id="path384"
- style="fill:url(#XMLID_101_)" />
- <linearGradient
- id="XMLID_102_"
- gradientUnits="userSpaceOnUse"
- x1="23.0117"
- y1="34.750999"
- x2="33.993099"
- y2="21.917999"
- gradientTransform="matrix(0.9992,3.98e-2,-3.98e-2,0.9992,0.9958,-1.3319)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop387" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop389" />
- </linearGradient>
- <path
- d="M 24.784,33.646 C 24.784,33.646 28.647,26.474 33.656,24.307 C 31.067,24.389 25.253,26.413 24.784,33.646 z "
- id="path391"
- style="fill:url(#XMLID_102_)" />
- <linearGradient
- id="XMLID_103_"
- gradientUnits="userSpaceOnUse"
- x1="15.5088"
- y1="33.507801"
- x2="9.6995001"
- y2="44.351501">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop394" />
- <stop
- offset="1"
- style="stop-color:#EED8A5"
- id="stop396" />
- </linearGradient>
- <path
- d="M 9.92,40.646 C 9.92,40.646 14.007,32.271 19.44,30.622 C 23.776,29.307 20.79,29.326 19.454,29 C 18.058,28.662 17.023,29.234 17.4,29.022 C 17.768,28.815 10.069,29.071 9.92,40.646 z "
- id="path398"
- style="fill:url(#XMLID_103_)" />
- <linearGradient
- id="XMLID_104_"
- gradientUnits="userSpaceOnUse"
- x1="16.3398"
- y1="35.804699"
- x2="27.0674"
- y2="23.268299"
- gradientTransform="matrix(0.9946,0.1039,-0.1039,0.9946,3.786,-2.0567)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop401" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop403" />
- </linearGradient>
- <path
- d="M 18.482,34.745 C 18.482,34.745 22.699,27.994 27.717,26.197 C 25.19,26.114 19.394,27.723 18.482,34.745 z "
- id="path405"
- style="fill:url(#XMLID_104_)" />
- <linearGradient
- id="XMLID_105_"
- gradientUnits="userSpaceOnUse"
- x1="13.3721"
- y1="22.875999"
- x2="26.2598"
- y2="24.641001"
- gradientTransform="matrix(0.9959,9.03e-2,-9.03e-2,0.9959,2.3457,-2.346)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop408" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop410" />
- </linearGradient>
- <path
- d="M 25.712,23.214 C 25.712,23.214 22.532,24.603 16.925,22.272 L 21.924,24.785 L 25.712,23.214 z "
- id="path412"
- style="fill:url(#XMLID_105_)" />
- <linearGradient
- id="XMLID_106_"
- gradientUnits="userSpaceOnUse"
- x1="6.9833999"
- y1="23.1094"
- x2="25.178301"
- y2="25.6012">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop415" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop417" />
- </linearGradient>
- <path
- d="M 24.175,24.105 C 24.175,24.105 19.937,25.747 11.781,23.303 L 18.758,26.079 C 19.621,25.281 24.175,24.105 24.175,24.105 z "
- id="path419"
- style="fill:url(#XMLID_106_)" />
- <linearGradient
- id="XMLID_107_"
- gradientUnits="userSpaceOnUse"
- x1="15.8809"
- y1="22.228001"
- x2="27.7244"
- y2="23.85"
- gradientTransform="matrix(0.9959,9.03e-2,-9.03e-2,0.9959,2.3457,-2.346)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop422" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop424" />
- </linearGradient>
- <path
- d="M 27.268,22.759 C 27.268,22.759 24.455,23.615 19.259,21.605 L 24.258,24.118 C 24.786,23.651 27.268,22.759 27.268,22.759 z "
- id="path426"
- style="fill:url(#XMLID_107_)" />
- <linearGradient
- id="XMLID_108_"
- gradientUnits="userSpaceOnUse"
- x1="15.2012"
- y1="26.939899"
- x2="4.5215001"
- y2="25.8437">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop429" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop431" />
- </linearGradient>
- <path
- d="M 18.496,25.993 C 18.496,25.993 16.406,27.728 11.053,27.799 L 15.683,27.95 L 18.496,25.993 z "
- id="path433"
- style="fill:url(#XMLID_108_)" />
- <linearGradient
- id="XMLID_109_"
- gradientUnits="userSpaceOnUse"
- x1="10.9453"
- y1="37.099602"
- x2="25.7187"
- y2="19.835199"
- gradientTransform="matrix(0.9946,0.1039,-0.1039,0.9946,3.786,-2.0567)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop436" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop438" />
- </linearGradient>
- <path
- d="M 13.411,34.871 C 13.411,34.871 20.564,25.553 26.455,23.443 C 23.487,23.346 14.48,26.629 13.411,34.871 z "
- id="path440"
- style="fill:url(#XMLID_109_)" />
- </g>
- <g
- id="Fire">
- <linearGradient
- id="XMLID_110_"
- gradientUnits="userSpaceOnUse"
- x1="88.330597"
- y1="117.3682"
- x2="117.2648"
- y2="72.7407">
- <stop
- offset="0"
- style="stop-color:#DE5C01"
- id="stop444" />
- <stop
- offset="0.736"
- style="stop-color:#FEFD00"
- id="stop446" />
- <stop
- offset="0.7783"
- style="stop-color:#FEFE26"
- id="stop448" />
- <stop
- offset="0.8369"
- style="stop-color:#FFFE54"
- id="stop450" />
- <stop
- offset="0.889"
- style="stop-color:#FFFF76"
- id="stop452" />
- <stop
- offset="0.932"
- style="stop-color:#FFFF8B"
- id="stop454" />
- <stop
- offset="0.9607"
- style="stop-color:#FFFF92"
- id="stop456" />
- </linearGradient>
- <path
- d="M 124.199,50.76 C 124.199,50.76 124.97,68.048 100.955,92.064 C 98.286,94.732 83.795,108.308 84.305,112.381 C 84.484,113.82 122.326,106.576 124.199,50.76 z "
- id="path458"
- style="fill:url(#XMLID_110_)" />
- <linearGradient
- id="XMLID_111_"
- gradientUnits="userSpaceOnUse"
- x1="105.1567"
- y1="22.737801"
- x2="86.211197"
- y2="14.4171">
- <stop
- offset="0"
- style="stop-color:#F79A09"
- id="stop461" />
- <stop
- offset="0.736"
- style="stop-color:#FEFD00"
- id="stop463" />
- <stop
- offset="0.7783"
- style="stop-color:#FEFE26"
- id="stop465" />
- <stop
- offset="0.8369"
- style="stop-color:#FFFE54"
- id="stop467" />
- <stop
- offset="0.889"
- style="stop-color:#FFFF76"
- id="stop469" />
- <stop
- offset="0.932"
- style="stop-color:#FFFF8B"
- id="stop471" />
- <stop
- offset="0.9607"
- style="stop-color:#FFFF92"
- id="stop473" />
- </linearGradient>
- <path
- d="M 77.64,10.096 C 106.566,12.318 112.168,33.117 112.17,31.844 C 112.243,11.624 84.726,10.089 77.64,10.096 z "
- id="path475"
- style="fill:url(#XMLID_111_)" />
- <linearGradient
- id="XMLID_112_"
- gradientUnits="userSpaceOnUse"
- x1="117.8823"
- y1="41.729"
- x2="91.359299"
- y2="17.106001">
- <stop
- offset="0"
- style="stop-color:#DE5C01"
- id="stop478" />
- <stop
- offset="0.736"
- style="stop-color:#FEFD00"
- id="stop480" />
- <stop
- offset="0.7783"
- style="stop-color:#FEFE26"
- id="stop482" />
- <stop
- offset="0.8369"
- style="stop-color:#FFFE54"
- id="stop484" />
- <stop
- offset="0.889"
- style="stop-color:#FFFF76"
- id="stop486" />
- <stop
- offset="0.932"
- style="stop-color:#FFFF8B"
- id="stop488" />
- <stop
- offset="0.9607"
- style="stop-color:#FFFF92"
- id="stop490" />
- </linearGradient>
- <path
- d="M 86.449,18.003 C 86.449,18.003 106.502,22.102 112.158,43.357 C 112.908,46.172 109.742,26.09 110.719,27.996 C 111.694,29.912 102.648,18.638 86.449,18.003 z "
- id="path492"
- style="fill:url(#XMLID_112_)" />
- <linearGradient
- id="XMLID_113_"
- gradientUnits="userSpaceOnUse"
- x1="1.1396"
- y1="145.4453"
- x2="-9.9659004"
- y2="133.9595"
- gradientTransform="matrix(0.9996,-2.82e-2,2.82e-2,0.9996,104.7769,-104.6242)">
- <stop
- offset="0"
- style="stop-color:#F79A09"
- id="stop495" />
- <stop
- offset="0.736"
- style="stop-color:#FEFD00"
- id="stop497" />
- <stop
- offset="0.7783"
- style="stop-color:#FEFE26"
- id="stop499" />
- <stop
- offset="0.8369"
- style="stop-color:#FFFE54"
- id="stop501" />
- <stop
- offset="0.889"
- style="stop-color:#FFFF76"
- id="stop503" />
- <stop
- offset="0.932"
- style="stop-color:#FFFF8B"
- id="stop505" />
- <stop
- offset="0.9607"
- style="stop-color:#FFFF92"
- id="stop507" />
- </linearGradient>
- <path
- d="M 94.464,17.483 C 94.464,17.483 112.574,21.258 112.754,49.992 C 112.881,70.33 115.895,57.627 118.885,53.056 C 121.463,49.108 119.701,44.296 119.639,44.308 C 119.629,44.311 118.334,40.565 119.207,42.152 C 119.246,42.222 117.991,41.118 118,41.117 C 118.201,41.087 117.303,20.465 94.464,17.483 z "
- id="path509"
- style="fill:url(#XMLID_113_)" />
- <linearGradient
- id="XMLID_114_"
- gradientUnits="userSpaceOnUse"
- x1="113.4365"
- y1="55.834"
- x2="119.687"
- y2="34.332298">
- <stop
- offset="0"
- style="stop-color:#F79A09"
- id="stop512" />
- <stop
- offset="0.736"
- style="stop-color:#FEFD00"
- id="stop514" />
- <stop
- offset="0.7783"
- style="stop-color:#FEFE26"
- id="stop516" />
- <stop
- offset="0.8369"
- style="stop-color:#FFFE54"
- id="stop518" />
- <stop
- offset="0.889"
- style="stop-color:#FFFF76"
- id="stop520" />
- <stop
- offset="0.932"
- style="stop-color:#FFFF8B"
- id="stop522" />
- <stop
- offset="0.9607"
- style="stop-color:#FFFF92"
- id="stop524" />
- </linearGradient>
- <path
- d="M 114.857,21.376 C 114.857,21.376 121.362,38.321 114.468,46.747 C 112.218,49.497 111.966,63.586 114.715,62.292 C 117.471,60.996 116.872,69.773 116.511,70.772 C 116.503,70.791 116.501,70.8 116.505,70.803 C 116.685,70.914 130.097,49.143 114.857,21.376 z "
- id="path526"
- style="fill:url(#XMLID_114_)" />
- <linearGradient
- id="XMLID_115_"
- gradientUnits="userSpaceOnUse"
- x1="-51.966301"
- y1="212.7881"
- x2="-52.194302"
- y2="196.4341"
- gradientTransform="matrix(0.9992,-4.12e-2,4.12e-2,0.9992,151.8961,-153.906)">
- <stop
- offset="0"
- style="stop-color:#F79A09"
- id="stop529" />
- <stop
- offset="0.736"
- style="stop-color:#FEFD00"
- id="stop531" />
- <stop
- offset="0.7783"
- style="stop-color:#FEFE26"
- id="stop533" />
- <stop
- offset="0.8369"
- style="stop-color:#FFFE54"
- id="stop535" />
- <stop
- offset="0.889"
- style="stop-color:#FFFF76"
- id="stop537" />
- <stop
- offset="0.932"
- style="stop-color:#FFFF8B"
- id="stop539" />
- <stop
- offset="0.9607"
- style="stop-color:#FFFF92"
- id="stop541" />
- </linearGradient>
- <path
- d="M 105.814,39.215 C 105.814,39.215 109.909,51.204 105.621,59.775 L 108.865,67.02 C 111.244,61.176 114.273,48.817 105.814,39.215 z "
- id="path543"
- style="fill:url(#XMLID_115_)" />
- <linearGradient
- id="XMLID_116_"
- gradientUnits="userSpaceOnUse"
- x1="-172.72121"
- y1="332.082"
- x2="-161.4561"
- y2="309.89331"
- gradientTransform="matrix(0.9975,-7.07e-2,7.07e-2,0.9975,254.6004,-268.4704)">
- <stop
- offset="0"
- style="stop-color:#F79A09"
- id="stop546" />
- <stop
- offset="0.736"
- style="stop-color:#FEFD00"
- id="stop548" />
- <stop
- offset="0.7783"
- style="stop-color:#FEFE26"
- id="stop550" />
- <stop
- offset="0.8369"
- style="stop-color:#FFFE54"
- id="stop552" />
- <stop
- offset="0.889"
- style="stop-color:#FFFF76"
- id="stop554" />
- <stop
- offset="0.932"
- style="stop-color:#FFFF8B"
- id="stop556" />
- <stop
- offset="0.9607"
- style="stop-color:#FFFF92"
- id="stop558" />
- </linearGradient>
- <path
- d="M 113.016,37.789 C 113.016,37.789 115.848,56.819 105.629,73.997 C 105.787,77.97 105.09,81.566 104.133,84.529 C 104.578,85.115 105.174,85.516 105.96,85.586 C 105.613,85.906 105.268,86.206 104.934,86.49 C 104.32,86.761 103.691,87.048 103.082,87.343 C 102.952,87.646 102.821,87.94 102.693,88.222 C 103.373,87.745 104.131,87.166 104.933,86.491 C 107.02,85.569 108.898,84.853 108.894,84.849 C 108.894,84.849 108.511,84.992 107.591,85.327 C 106.972,85.552 106.431,85.628 105.959,85.586 C 113.851,78.394 124.665,62.311 113.016,37.789 z M 101.109,88.379 C 100.207,88.908 99.551,89.404 99.411,89.787 C 99.308,90.066 99.923,89.905 100.986,89.308 C 101.041,88.989 101.086,88.676 101.109,88.379 z "
- id="path560"
- style="fill:url(#XMLID_116_)" />
- <linearGradient
- id="XMLID_117_"
- gradientUnits="userSpaceOnUse"
- x1="99.205597"
- y1="87.746597"
- x2="100.7206"
- y2="63.169102"
- gradientTransform="matrix(0.9975,-7.07e-2,7.07e-2,0.9975,-10.9669,13.6507)">
- <stop
- offset="0"
- style="stop-color:#DE5C01"
- id="stop563" />
- <stop
- offset="0.736"
- style="stop-color:#FEFD00"
- id="stop565" />
- <stop
- offset="0.7783"
- style="stop-color:#FEFE26"
- id="stop567" />
- <stop
- offset="0.8369"
- style="stop-color:#FFFE54"
- id="stop569" />
- <stop
- offset="0.889"
- style="stop-color:#FFFF76"
- id="stop571" />
- <stop
- offset="0.932"
- style="stop-color:#FFFF8B"
- id="stop573" />
- <stop
- offset="0.9607"
- style="stop-color:#FFFF92"
- id="stop575" />
- </linearGradient>
- <path
- d="M 100.412,58.065 C 100.412,58.065 108.469,80.997 82.719,102.497 C 81.2,103.766 93.171,103.223 94.219,102.747 C 97.305,101.345 100.952,91.99 100.522,93.11 C 100.095,94.229 112.479,76.574 100.412,58.065 z "
- id="path577"
- style="fill:url(#XMLID_117_)" />
- <linearGradient
- id="XMLID_118_"
- gradientUnits="userSpaceOnUse"
- x1="58.369099"
- y1="113.8594"
- x2="105.8753"
- y2="85.464897">
- <stop
- offset="0"
- style="stop-color:#B9120D"
- id="stop580" />
- <stop
- offset="0.078"
- style="stop-color:#BB180D"
- id="stop582" />
- <stop
- offset="0.1822"
- style="stop-color:#C0290C"
- id="stop584" />
- <stop
- offset="0.3013"
- style="stop-color:#C8450A"
- id="stop586" />
- <stop
- offset="0.4314"
- style="stop-color:#D36C08"
- id="stop588" />
- <stop
- offset="0.5706"
- style="stop-color:#E29E05"
- id="stop590" />
- <stop
- offset="0.7151"
- style="stop-color:#F4DA02"
- id="stop592" />
- <stop
- offset="0.7921"
- style="stop-color:#FEFD00"
- id="stop594" />
- <stop
- offset="0.8136"
- style="stop-color:#FEFD07"
- id="stop596" />
- <stop
- offset="0.8455"
- style="stop-color:#FEFD1B"
- id="stop598" />
- <stop
- offset="0.8837"
- style="stop-color:#FEFE3C"
- id="stop600" />
- <stop
- offset="0.9268"
- style="stop-color:#FFFE69"
- id="stop602" />
- <stop
- offset="0.9736"
- style="stop-color:#FFFFA3"
- id="stop604" />
- <stop
- offset="1"
- style="stop-color:#FFFFC7"
- id="stop606" />
- </linearGradient>
- <path
- d="M 111.68,72.61 C 111.68,72.61 106.82,102.354 73.219,104.747 C 60.062,105.685 41.171,102.606 42.844,107.624 C 43.363,109.18 45.836,115.667 51.48,117.172 C 66.755,121.247 107.395,119.913 111.68,72.61 z "
- id="path608"
- style="fill:url(#XMLID_118_)" />
- </g>
- <g
- id="Layer_6">
- <linearGradient
- id="XMLID_119_"
- gradientUnits="userSpaceOnUse"
- x1="54.2402"
- y1="93.582497"
- x2="102.9066"
- y2="100.176"
- gradientTransform="matrix(0.9951,9.89e-2,-9.89e-2,0.9951,10.3843,-6.0754)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop612" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop614" />
- </linearGradient>
- <path
- d="M 83.657,95.119 C 83.657,95.119 63.098,99.816 49.779,88.478 C 37.592,78.101 43.638,86.835 45.291,91.143 C 46.989,95.561 37.438,92.185 36.002,91.475 C 34.571,90.774 58.625,105.859 83.657,95.119 z "
- id="path616"
- style="fill:url(#XMLID_119_)" />
- <linearGradient
- id="XMLID_120_"
- gradientUnits="userSpaceOnUse"
- x1="39.012699"
- y1="89.889603"
- x2="95.521896"
- y2="107.6497"
- gradientTransform="matrix(0.9895,0.1448,-0.1448,0.9895,14.2829,-5.8352)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop619" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop621" />
- </linearGradient>
- <path
- d="M 70.408,106.325 C 70.408,106.325 45.883,101.505 38.118,84.887 C 31.483,70.69 33.239,81.108 32.94,85.849 C 32.626,90.726 25.749,84.066 24.83,82.907 C 24.804,82.879 24.786,82.86 24.784,82.865 C 24.647,82.955 37.433,102.999 70.408,106.325 z "
- id="path623"
- style="fill:url(#XMLID_120_)" />
- <linearGradient
- id="XMLID_121_"
- gradientUnits="userSpaceOnUse"
- x1="-601.46729"
- y1="628.96088"
- x2="-574.59741"
- y2="680.40417"
- gradientTransform="matrix(0.9837,-0.1799,0.1799,0.9837,500.9515,-643.7268)">
- <stop
- offset="0.0562"
- style="stop-color:#DE7210"
- id="stop626" />
- <stop
- offset="1"
- style="stop-color:#F6C08F"
- id="stop628" />
- </linearGradient>
- <path
- d="M 43.617,104.176 C 43.617,104.176 31.903,95.103 26.622,82.662 C 22.184,81.12 16.283,77.595 16.166,76.992 C 18.041,86.659 27.912,97.946 43.617,104.176 z "
- id="path630"
- style="fill:url(#XMLID_121_)" />
- </g>
- </g>
-</svg> \ No newline at end of file
diff --git a/svg/gnome-dev-disc-dvdrom.svg b/svg/gnome-dev-disc-dvdrom.svg
deleted file mode 100644
index e21643f..0000000
--- a/svg/gnome-dev-disc-dvdrom.svg
+++ /dev/null
@@ -1,720 +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/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="48.000000px"
- height="48.000000px"
- id="svg3077"
- sodipodi:version="0.32"
- inkscape:version="0.43+devel"
- sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/devices"
- sodipodi:docname="media-cdrom.svg">
- <defs
- id="defs3">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient23419">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop23421" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop23423" />
- </linearGradient>
- <linearGradient
- id="linearGradient3435"
- gradientUnits="userSpaceOnUse"
- x1="12.2744"
- y1="32.4165"
- x2="35.3912"
- y2="14.2033">
- <stop
- offset="0.0000000"
- style="stop-color:#ffffc8;stop-opacity:1.0000000;"
- id="stop3437" />
- <stop
- offset="1.0000000"
- style="stop-color:#9a91ef;stop-opacity:0.0000000;"
- id="stop3439" />
- </linearGradient>
- <linearGradient
- y2="14.2033"
- x2="35.3912"
- y1="32.4165"
- x1="12.2744"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3421">
- <stop
- id="stop3423"
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000" />
- <stop
- id="stop3427"
- style="stop-color:#b8c04c;stop-opacity:0.0000000;"
- offset="1.0000000" />
- </linearGradient>
- <linearGradient
- id="linearGradient3406"
- gradientUnits="userSpaceOnUse"
- x1="12.2744"
- y1="32.4165"
- x2="35.3912"
- y2="14.2033">
- <stop
- offset="0.0000000"
- style="stop-color:#b307ff;stop-opacity:0.82178217;"
- id="stop3408" />
- <stop
- offset="1.0000000"
- style="stop-color:#f0ff8b;stop-opacity:0.64356434;"
- id="stop3410" />
- <stop
- offset="1.0000000"
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- id="stop3412" />
- </linearGradient>
- <linearGradient
- y2="14.2033"
- x2="35.3912"
- y1="32.4165"
- x1="12.2744"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3394">
- <stop
- id="stop3396"
- style="stop-color:#fff307;stop-opacity:1.0000000;"
- offset="0.0000000" />
- <stop
- id="stop3398"
- style="stop-color:#166eff;stop-opacity:1.0000000;"
- offset="0.50000000" />
- <stop
- id="stop3400"
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="1.0000000" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient6036">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop6038" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop6040" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient6028">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop6030" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop6032" />
- </linearGradient>
- <linearGradient
- id="linearGradient4236">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.32673267;"
- offset="0.0000000"
- id="stop4238" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.60396039;"
- offset="1.0000000"
- id="stop4240" />
- </linearGradient>
- <linearGradient
- id="aigrd2"
- gradientUnits="userSpaceOnUse"
- x1="12.2744"
- y1="32.4165"
- x2="35.3912"
- y2="14.2033">
- <stop
- offset="0"
- style="stop-color:#FBFBFB"
- id="stop3043" />
- <stop
- offset="0.5"
- style="stop-color:#B6B6B6"
- id="stop3045" />
- <stop
- offset="1"
- style="stop-color:#E4E4E4"
- id="stop3047" />
- </linearGradient>
- <linearGradient
- id="aigrd1"
- gradientUnits="userSpaceOnUse"
- x1="14.9966"
- y1="11.1885"
- x2="32.511"
- y2="34.3075">
- <stop
- offset="0"
- style="stop-color:#EBEBEB"
- id="stop3034" />
- <stop
- offset="0.5"
- style="stop-color:#FFFFFF"
- id="stop3036" />
- <stop
- offset="1"
- style="stop-color:#EBEBEB"
- id="stop3038" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#aigrd1"
- id="linearGradient3912"
- gradientUnits="userSpaceOnUse"
- x1="14.9966"
- y1="11.1885"
- x2="32.511"
- y2="34.3075"
- gradientTransform="matrix(1.190476,0.000000,0.000000,1.190476,-4.224424,-2.500000)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4236"
- id="linearGradient4222"
- x1="21.125000"
- y1="14.625000"
- x2="29.000000"
- y2="28.000000"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.250000,0.000000,0.000000,1.250000,-5.652995,-2.604165)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4236"
- id="linearGradient4224"
- x1="21.125000"
- y1="14.625000"
- x2="29.000000"
- y2="28.000000"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.250000,0.000000,0.000000,1.250000,-5.652995,-2.604165)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#aigrd2"
- id="linearGradient4242"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.190476,0.000000,0.000000,1.190476,-4.224424,-2.500001)"
- x1="12.2744"
- y1="32.4165"
- x2="35.3912"
- y2="14.2033" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6028"
- id="linearGradient6034"
- x1="28.702885"
- y1="31.494707"
- x2="17.742729"
- y2="18.366575"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6036"
- id="linearGradient6042"
- x1="10.501720"
- y1="3.6100161"
- x2="48.798885"
- y2="54.698483"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- gradientTransform="matrix(0.848684,0.958020,-0.782119,0.692834,18.69147,-20.52578)"
- gradientUnits="userSpaceOnUse"
- r="21.333334"
- fy="27.569166"
- fx="37.751469"
- cy="27.569166"
- cx="37.751469"
- id="radialGradient3392"
- xlink:href="#linearGradient3394"
- inkscape:collect="always" />
- <radialGradient
- r="21.333334"
- fy="48.238270"
- fx="53.556889"
- cy="48.238270"
- cx="53.556889"
- gradientTransform="matrix(0.158450,-0.158988,0.432907,0.431441,-2.723645,15.00107)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3429"
- xlink:href="#linearGradient3421"
- inkscape:collect="always" />
- <radialGradient
- r="21.333334"
- fy="33.377594"
- fx="16.885271"
- cy="33.377594"
- cx="16.885271"
- gradientTransform="matrix(5.184267e-3,-0.122860,0.544548,2.297824e-2,0.957234,26.30756)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3433"
- xlink:href="#linearGradient3435"
- inkscape:collect="always" />
- <radialGradient
- r="21.333334"
- fy="21.618015"
- fx="35.511295"
- cy="21.618015"
- cx="35.511295"
- gradientTransform="matrix(0.105916,-1.914240e-2,0.104789,0.579807,17.13693,7.115158)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3443"
- xlink:href="#linearGradient3435"
- inkscape:collect="always" />
- <radialGradient
- gradientTransform="matrix(-5.048220e-2,1.387847e-2,-0.128440,-0.467196,35.41257,39.44172)"
- r="21.333334"
- fy="23.914305"
- fx="133.84108"
- cy="23.914305"
- cx="133.84108"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3447"
- xlink:href="#linearGradient3435"
- inkscape:collect="always" />
- <radialGradient
- r="21.333334"
- fy="38.807304"
- fx="26.137741"
- cy="38.807304"
- cx="26.137741"
- gradientTransform="matrix(0.769501,-1.242500,0.670300,0.415141,-21.77857,41.36563)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3449"
- xlink:href="#linearGradient3406"
- inkscape:collect="always" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#aigrd1"
- id="linearGradient23343"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.190476,0,0,1.190476,-4.224424,-2.5)"
- x1="14.9966"
- y1="11.1885"
- x2="32.511"
- y2="34.3075" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#aigrd2"
- id="linearGradient23345"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.190476,0,0,1.190476,-4.224424,-2.500001)"
- x1="12.2744"
- y1="32.4165"
- x2="35.3912"
- y2="14.2033" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4236"
- id="linearGradient23347"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.25,0,0,1.25,-5.652995,-2.604165)"
- x1="21.125000"
- y1="14.625000"
- x2="29.000000"
- y2="28.000000" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4236"
- id="linearGradient23349"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.25,0,0,1.25,-5.652995,-2.604165)"
- x1="21.125000"
- y1="14.625000"
- x2="29.000000"
- y2="28.000000" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6036"
- id="linearGradient23351"
- gradientUnits="userSpaceOnUse"
- x1="10.501720"
- y1="3.6100161"
- x2="48.798885"
- y2="54.698483" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6028"
- id="linearGradient23353"
- gradientUnits="userSpaceOnUse"
- x1="28.702885"
- y1="31.494707"
- x2="17.742729"
- y2="18.366575" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3394"
- id="radialGradient23355"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.848684,0.95802,-0.782119,0.692834,18.69147,-20.52578)"
- cx="37.751469"
- cy="27.569166"
- fx="37.751469"
- fy="27.569166"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3406"
- id="radialGradient23357"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.769501,-1.2425,0.6703,0.415141,-21.77857,41.36563)"
- cx="26.137741"
- cy="38.807304"
- fx="26.137741"
- fy="38.807304"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3421"
- id="radialGradient23359"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.15845,-0.158988,0.432907,0.431441,-2.723645,15.00107)"
- cx="53.556889"
- cy="48.238270"
- fx="53.556889"
- fy="48.238270"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3435"
- id="radialGradient23361"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.184267e-3,-0.12286,0.544548,2.297824e-2,0.957234,26.30756)"
- cx="16.885271"
- cy="33.377594"
- fx="16.885271"
- fy="33.377594"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3435"
- id="radialGradient23363"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.105916,-1.91424e-2,0.104789,0.579807,17.13693,7.115158)"
- cx="35.511295"
- cy="21.618015"
- fx="35.511295"
- fy="21.618015"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3435"
- id="radialGradient23365"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-5.04822e-2,1.387847e-2,-0.12844,-0.467196,35.41257,39.44172)"
- cx="133.84108"
- cy="23.914305"
- fx="133.84108"
- fy="23.914305"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3435"
- id="radialGradient23368"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-5.04822e-2,1.387847e-2,-0.12844,-0.467196,35.41257,39.44172)"
- cx="133.84108"
- cy="23.914305"
- fx="133.84108"
- fy="23.914305"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3435"
- id="radialGradient23371"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.105916,-1.91424e-2,0.104789,0.579807,17.13693,7.115158)"
- cx="35.511295"
- cy="21.618015"
- fx="35.511295"
- fy="21.618015"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3435"
- id="radialGradient23374"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.184267e-3,-0.12286,0.544548,2.297824e-2,0.957234,26.30756)"
- cx="16.885271"
- cy="33.377594"
- fx="16.885271"
- fy="33.377594"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3421"
- id="radialGradient23377"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.15845,-0.158988,0.432907,0.431441,-2.723645,15.00107)"
- cx="53.556889"
- cy="48.238270"
- fx="53.556889"
- fy="48.238270"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3406"
- id="radialGradient23380"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.769501,-1.2425,0.6703,0.415141,-21.77857,41.36563)"
- cx="26.137741"
- cy="38.807304"
- fx="26.137741"
- fy="38.807304"
- r="21.333334" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3394"
- id="radialGradient23383"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.848684,0.95802,-0.782119,0.692834,18.69147,-20.52578)"
- cx="37.751469"
- cy="27.569166"
- fx="37.751469"
- fy="27.569166"
- r="21.333334" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6036"
- id="linearGradient23387"
- gradientUnits="userSpaceOnUse"
- x1="10.501720"
- y1="3.6100161"
- x2="48.798885"
- y2="54.698483" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4236"
- id="linearGradient23390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.25,0,0,1.25,-5.652995,-2.604165)"
- x1="21.125000"
- y1="14.625000"
- x2="29.000000"
- y2="28.000000" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4236"
- id="linearGradient23393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.25,0,0,1.25,-5.652995,-2.604165)"
- x1="21.125000"
- y1="14.625000"
- x2="29.000000"
- y2="28.000000" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#aigrd2"
- id="linearGradient23397"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.190476,0,0,1.190476,-4.224424,-2.500001)"
- x1="12.2744"
- y1="32.4165"
- x2="35.3912"
- y2="14.2033" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#aigrd1"
- id="linearGradient23400"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.190476,0,0,1.190476,-4.224424,-2.5)"
- x1="14.9966"
- y1="11.1885"
- x2="32.511"
- y2="34.3075" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient23419"
- id="radialGradient23425"
- cx="23.334524"
- cy="41.63604"
- fx="23.334524"
- fy="41.63604"
- r="22.627417"
- gradientTransform="matrix(1,0,0,0.25,0,31.22703)"
- gradientUnits="userSpaceOnUse" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="0.25490196"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1"
- inkscape:cx="19.046921"
- inkscape:cy="-26.568656"
- inkscape:current-layer="layer1"
- showgrid="false"
- inkscape:grid-bbox="true"
- inkscape:document-units="px"
- inkscape:window-width="872"
- inkscape:window-height="804"
- inkscape:window-x="176"
- inkscape:window-y="58"
- inkscape:showpageshadow="false" />
- <metadata
- id="metadata4">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title>Media CD-ROM</dc:title>
- <dc:creator>
- <cc:Agent>
- <dc:title>Jakub Steiner</dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:source>http://jimmac.musichall.cz</dc:source>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>cdrom</rdf:li>
- <rdf:li>media</rdf:li>
- <rdf:li>removable</rdf:li>
- <rdf:li>cd</rdf:li>
- <rdf:li>audio</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
- </cc:Work>
- <cc:License
- rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Reproduction" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Distribution" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Notice" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Attribution" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/ShareAlike" />
- </cc:License>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:label="Layer 1"
- inkscape:groupmode="layer">
- <path
- sodipodi:type="arc"
- style="opacity:0.55;color:#000000;fill:url(#radialGradient23425);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;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="path23417"
- sodipodi:cx="23.334524"
- sodipodi:cy="41.63604"
- sodipodi:rx="22.627417"
- sodipodi:ry="5.6568542"
- d="M 45.961941 41.63604 A 22.627417 5.6568542 0 1 1 0.70710754,41.63604 A 22.627417 5.6568542 0 1 1 45.961941 41.63604 z"
- inkscape:r_cx="true"
- inkscape:r_cy="true"
- transform="matrix(1,0,0,1.066291,1,-2.885106)" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- id="path3040"
- d="M 24.347006,4.1666669 C 12.799386,4.1666669 3.5136719,13.452381 3.5136719,25 C 3.5136719,36.54762 12.799386,45.833335 24.347006,45.833335 C 35.894626,45.833335 45.180341,36.54762 45.180341,25 C 45.180341,13.452381 35.894626,4.1666669 24.347006,4.1666669 L 24.347006,4.1666669 z M 24.347006,30.000001 C 21.608911,30.000001 19.347006,27.738096 19.347006,25 C 19.347006,22.261905 21.608911,20 24.347006,20 C 27.085101,20 29.347006,22.261905 29.347006,25 C 29.347006,27.738096 27.085101,30.000001 24.347006,30.000001 z "
- style="fill:url(#linearGradient23400);fill-rule:nonzero;stroke:none;stroke-miterlimit:4" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- id="path3049"
- d="M 24.347006,4.1666665 C 12.799386,4.1666665 3.513672,13.452381 3.513672,25 C 3.513672,36.54762 12.799386,45.833335 24.347006,45.833335 C 35.894626,45.833335 45.180341,36.54762 45.180341,25 C 45.180341,13.452381 35.894626,4.1666665 24.347006,4.1666665 L 24.347006,4.1666665 z M 24.347006,30.000001 C 21.608911,30.000001 19.347006,27.738096 19.347006,25 C 19.347006,22.261905 21.608911,20 24.347006,20 C 27.085101,20 29.347006,22.261905 29.347006,25 C 29.347006,27.738096 27.085101,30.000001 24.347006,30.000001 z "
- style="fill:url(#linearGradient23397);fill-rule:nonzero;stroke:#808080;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- id="path3051"
- d="M 24.347006,14.895835 C 18.70442,14.895835 14.24284,19.488638 14.24284,25 C 14.24284,30.642588 18.835644,35.104166 24.347006,35.104166 C 29.989592,35.104166 34.451172,30.511364 34.451172,25 C 34.451172,19.357414 29.858368,14.895835 24.347006,14.895835 L 24.347006,14.895835 z M 24.347006,30.511364 C 21.328879,30.511364 18.835644,28.018129 18.835644,25 C 18.835644,21.981873 21.328879,19.488638 24.347006,19.488638 C 27.365133,19.488638 29.858368,21.981873 29.858368,25 C 29.858368,28.018129 27.365133,30.511364 24.347006,30.511364 z "
- style="opacity:0.10999995;fill-rule:nonzero;stroke:none;stroke-miterlimit:4" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- style="fill:url(#linearGradient23393);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1"
- d="M 29.922111,5.6692337 L 26.325518,19.663896 C 27.450222,19.963413 28.349661,20.659366 28.960646,21.622438 L 41.352866,14.073153 C 38.817618,9.9434382 34.748656,6.9050853 29.922111,5.6692337 z "
- id="path3916" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- id="path4214"
- d="M 17.307824,43.766057 L 22.043079,30.114558 C 20.946815,29.723566 20.107654,28.956005 19.577936,27.945951 L 6.6068752,34.450599 C 8.7939325,38.774811 12.599255,42.137482 17.307824,43.766057 z "
- style="fill:url(#linearGradient23390);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- style="opacity:0.54644811;fill:none;fill-rule:nonzero;stroke:url(#linearGradient23387);stroke-miterlimit:4;stroke-opacity:1"
- d="M 24.347002,5.2023655 C 13.373458,5.2023655 4.5493711,14.026454 4.5493711,24.999997 C 4.5493711,35.973541 13.373458,44.797628 24.347002,44.797628 C 35.320546,44.797628 44.144633,35.973541 44.144633,24.999997 C 44.144633,14.026454 35.320546,5.2023655 24.347002,5.2023655 L 24.347002,5.2023655 z "
- id="path5264"
- sodipodi:nodetypes="cccccc" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- sodipodi:type="arc"
- style="opacity:0.67213111;color:#000000;fill:none;fill-opacity:0.31638417;fill-rule:nonzero;stroke:url(#linearGradient23353);stroke-width:0.93053865;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:inline;overflow:visible"
- id="path6026"
- sodipodi:cx="24.306795"
- sodipodi:cy="24.930641"
- sodipodi:rx="6.0987959"
- sodipodi:ry="6.0987959"
- d="M 30.405591 24.930641 A 6.0987959 6.0987959 0 1 1 18.207999,24.930641 A 6.0987959 6.0987959 0 1 1 30.405591 24.930641 z"
- transform="translate(8.838835e-2,8.838865e-2)" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- style="opacity:0.1142857;fill:url(#radialGradient23383);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1"
- d="M 24.347006,4.1666665 C 12.799386,4.1666665 3.513672,13.452381 3.513672,25 C 3.513672,36.54762 12.799386,45.833335 24.347006,45.833335 C 35.894626,45.833335 45.180341,36.54762 45.180341,25 C 45.180341,13.452381 35.894626,4.1666665 24.347006,4.1666665 L 24.347006,4.1666665 z M 24.347006,30.000001 C 21.608911,30.000001 19.347006,27.738096 19.347006,25 C 19.347006,22.261905 21.608911,20 24.347006,20 C 27.085101,20 29.347006,22.261905 29.347006,25 C 29.347006,27.738096 27.085101,30.000001 24.347006,30.000001 z "
- id="path3390" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- id="path3404"
- d="M 24.347006,4.1666665 C 12.799386,4.1666665 3.513672,13.452381 3.513672,25 C 3.513672,36.54762 12.799386,45.833335 24.347006,45.833335 C 35.894626,45.833335 45.180341,36.54762 45.180341,25 C 45.180341,13.452381 35.894626,4.1666665 24.347006,4.1666665 L 24.347006,4.1666665 z M 24.347006,30.000001 C 21.608911,30.000001 19.347006,27.738096 19.347006,25 C 19.347006,22.261905 21.608911,20 24.347006,20 C 27.085101,20 29.347006,22.261905 29.347006,25 C 29.347006,27.738096 27.085101,30.000001 24.347006,30.000001 z "
- style="opacity:0.09714284;fill:url(#radialGradient23380);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- style="opacity:0.71428576;fill:url(#radialGradient23377);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1"
- d="M 24.347006,4.1666665 C 12.799386,4.1666665 3.513672,13.452381 3.513672,25 C 3.513672,36.54762 12.799386,45.833335 24.347006,45.833335 C 35.894626,45.833335 45.180341,36.54762 45.180341,25 C 45.180341,13.452381 35.894626,4.1666665 24.347006,4.1666665 L 24.347006,4.1666665 z M 24.347006,30.000001 C 21.608911,30.000001 19.347006,27.738096 19.347006,25 C 19.347006,22.261905 21.608911,20 24.347006,20 C 27.085101,20 29.347006,22.261905 29.347006,25 C 29.347006,27.738096 27.085101,30.000001 24.347006,30.000001 z "
- id="path3419" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- id="path3431"
- d="M 24.347006,4.1666665 C 12.799386,4.1666665 3.513672,13.452381 3.513672,25 C 3.513672,36.54762 12.799386,45.833335 24.347006,45.833335 C 35.894626,45.833335 45.180341,36.54762 45.180341,25 C 45.180341,13.452381 35.894626,4.1666665 24.347006,4.1666665 L 24.347006,4.1666665 z M 24.347006,30.000001 C 21.608911,30.000001 19.347006,27.738096 19.347006,25 C 19.347006,22.261905 21.608911,20 24.347006,20 C 27.085101,20 29.347006,22.261905 29.347006,25 C 29.347006,27.738096 27.085101,30.000001 24.347006,30.000001 z "
- style="opacity:0.62285713;fill:url(#radialGradient23374);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- style="opacity:0.37142861;fill:url(#radialGradient23371);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1"
- d="M 24.347006,4.1666665 C 12.799386,4.1666665 3.513672,13.452381 3.513672,25 C 3.513672,36.54762 12.799386,45.833335 24.347006,45.833335 C 35.894626,45.833335 45.180341,36.54762 45.180341,25 C 45.180341,13.452381 35.894626,4.1666665 24.347006,4.1666665 L 24.347006,4.1666665 z M 24.347006,30.000001 C 21.608911,30.000001 19.347006,27.738096 19.347006,25 C 19.347006,22.261905 21.608911,20 24.347006,20 C 27.085101,20 29.347006,22.261905 29.347006,25 C 29.347006,27.738096 27.085101,30.000001 24.347006,30.000001 z "
- id="path3441" />
- <path
- inkscape:r_cy="true"
- inkscape:r_cx="true"
- id="path3445"
- d="M 24.347006,4.1666665 C 12.799386,4.1666665 3.513672,13.452381 3.513672,25 C 3.513672,36.54762 12.799386,45.833335 24.347006,45.833335 C 35.894626,45.833335 45.180341,36.54762 45.180341,25 C 45.180341,13.452381 35.894626,4.1666665 24.347006,4.1666665 L 24.347006,4.1666665 z M 24.347006,30.000001 C 21.608911,30.000001 19.347006,27.738096 19.347006,25 C 19.347006,22.261905 21.608911,20 24.347006,20 C 27.085101,20 29.347006,22.261905 29.347006,25 C 29.347006,27.738096 27.085101,30.000001 24.347006,30.000001 z "
- style="opacity:0.23428572;fill:url(#radialGradient23368);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1" />
- </g>
-</svg>
diff --git a/svg/gnome-terminal.svg b/svg/gnome-terminal.svg
deleted file mode 100644
index f926642..0000000
--- a/svg/gnome-terminal.svg
+++ /dev/null
@@ -1,429 +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/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="48px"
- height="48px"
- id="svg1306"
- sodipodi:version="0.32"
- inkscape:version="0.43+devel"
- sodipodi:docbase="/home/tigert/cvs/freedesktop.org/tango-icon-theme/scalable/apps"
- sodipodi:docname="utilities-terminal.svg"
- inkscape:export-filename="/home/andreas/projekt/bild/tango/terminal4.png"
- inkscape:export-xdpi="240.00000"
- inkscape:export-ydpi="240.00000"
- inkscape:output_extension="org.inkscape.output.svg.inkscape">
- <defs
- id="defs1308">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient6447">
- <stop
- style="stop-color:#777973;stop-opacity:1;"
- offset="0"
- id="stop6449" />
- <stop
- style="stop-color:#777973;stop-opacity:0;"
- offset="1"
- id="stop6451" />
- </linearGradient>
- <linearGradient
- id="linearGradient4254">
- <stop
- style="stop-color:#616161;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop4256" />
- <stop
- style="stop-color:#a0a0a0;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop4258" />
- </linearGradient>
- <linearGradient
- id="linearGradient5176">
- <stop
- id="stop5178"
- offset="0.0000000"
- style="stop-color:#a2a59c;stop-opacity:1.0000000;" />
- <stop
- id="stop5180"
- offset="1.0000000"
- style="stop-color:#535750;stop-opacity:1.0000000;" />
- </linearGradient>
- <linearGradient
- id="linearGradient2667">
- <stop
- id="stop2669"
- offset="0.0000000"
- style="stop-color:#ffffff;stop-opacity:1.0000000;" />
- <stop
- id="stop2671"
- offset="1.0000000"
- style="stop-color:#fcfcff;stop-opacity:0.0000000;" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="26.729263"
- x2="17.199417"
- y1="1.6537577"
- x1="11.492236"
- gradientTransform="matrix(1.236157,0.000000,0.000000,0.896051,-1.081820,2.830699)"
- id="linearGradient2673"
- xlink:href="#linearGradient2667"
- inkscape:collect="always" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient2238">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop2240" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0;"
- offset="1"
- id="stop2242" />
- </linearGradient>
- <linearGradient
- id="linearGradient2224">
- <stop
- style="stop-color:#32342f;stop-opacity:0.54639173;"
- offset="0.0000000"
- id="stop2226" />
- <stop
- style="stop-color:#32342f;stop-opacity:0;"
- offset="1"
- id="stop2228" />
- </linearGradient>
- <linearGradient
- id="linearGradient2214">
- <stop
- style="stop-color:#a9aaa7;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop2216" />
- <stop
- style="stop-color:#676964;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2218" />
- </linearGradient>
- <linearGradient
- id="linearGradient2206">
- <stop
- style="stop-color:#777973;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop2208" />
- <stop
- style="stop-color:#cbccca;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2210" />
- </linearGradient>
- <linearGradient
- id="linearGradient2198">
- <stop
- style="stop-color:#748f48;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop2200" />
- <stop
- style="stop-color:#1f2816;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2202" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2198"
- id="linearGradient2204"
- x1="23.118565"
- y1="9.5830288"
- x2="22.440805"
- y2="34.225887"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.950085,0.000000,0.000000,0.965659,1.243978,0.255342)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2206"
- id="linearGradient2212"
- x1="29.870447"
- y1="32.285740"
- x2="24.841814"
- y2="14.157946"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.957412,0.000000,0.000000,0.952331,1.022766,0.133307)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5176"
- id="linearGradient2220"
- x1="8.6529236"
- y1="9.5865316"
- x2="21.305075"
- y2="32.497993"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.957412,0.000000,0.000000,0.952331,1.022766,0.133307)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2224"
- id="radialGradient2230"
- cx="24.041630"
- cy="42.242130"
- fx="24.041630"
- fy="42.242130"
- r="17.576654"
- gradientTransform="matrix(1.000000,0.000000,0.000000,0.304598,-1.841788e-16,29.37527)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2238"
- id="linearGradient2244"
- x1="20.338758"
- y1="19.636894"
- x2="48.845253"
- y2="49.730762"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.953506,0.000000,0.000000,0.947873,1.141528,1.205591)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4254"
- id="linearGradient4260"
- x1="11.048059"
- y1="9.1463490"
- x2="26.178129"
- y2="30.343304"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.997583,0.000000,0.000000,0.989941,0.104141,7.028871e-2)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2214"
- id="linearGradient5719"
- x1="40.253334"
- y1="42.318577"
- x2="36.451904"
- y2="37.999615"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.000000,0.000000,0.000000,0.744756,0.000000,9.569132)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient6447"
- id="radialGradient6453"
- cx="37.495606"
- cy="39.510023"
- fx="37.495606"
- fy="39.510023"
- r="2.5100370"
- gradientTransform="matrix(1.000000,0.000000,0.000000,0.737790,0.000000,9.844321)"
- gradientUnits="userSpaceOnUse" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="0.19607843"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1"
- inkscape:cx="33.312823"
- inkscape:cy="22.847042"
- inkscape:current-layer="layer1"
- showgrid="false"
- inkscape:grid-bbox="true"
- inkscape:document-units="px"
- inkscape:window-width="926"
- inkscape:window-height="975"
- inkscape:window-x="397"
- inkscape:window-y="25"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:showpageshadow="false" />
- <metadata
- id="metadata1311">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title>Terminal</dc:title>
- <dc:date>2005-10-15</dc:date>
- <dc:creator>
- <cc:Agent>
- <dc:title>Andreas Nilsson</dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>terminal</rdf:li>
- <rdf:li>emulator</rdf:li>
- <rdf:li>term</rdf:li>
- <rdf:li>command line</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
- <dc:contributor>
- <cc:Agent>
- <dc:title>Jakub Steiner</dc:title>
- </cc:Agent>
- </dc:contributor>
- </cc:Work>
- <cc:License
- rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Reproduction" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Distribution" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Notice" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Attribution" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/ShareAlike" />
- </cc:License>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:label="Layer 1"
- inkscape:groupmode="layer">
- <path
- sodipodi:type="arc"
- style="opacity:1;fill:url(#radialGradient2230);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.07686412;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path2222"
- sodipodi:cx="24.04163"
- sodipodi:cy="42.24213"
- sodipodi:rx="17.576654"
- sodipodi:ry="5.3538084"
- d="M 41.618284 42.24213 A 17.576654 5.3538084 0 1 1 6.4649754,42.24213 A 17.576654 5.3538084 0 1 1 41.618284 42.24213 z"
- transform="matrix(1.126713,0.000000,0.000000,0.856184,-2.891865,5.686653)" />
- <rect
- style="opacity:1.0000000;fill:url(#linearGradient2212);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient2220);stroke-width:0.99999946;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
- id="rect1316"
- width="44.996037"
- height="38.998734"
- x="1.5026338"
- y="3.5015533"
- rx="4.8517075"
- ry="4.8517079" />
- <rect
- style="opacity:1.0000000;fill:url(#linearGradient2204);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient4260);stroke-width:0.99495775;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
- id="rect1314"
- width="37.088005"
- height="29.022322"
- x="5.4962788"
- y="7.4827089"
- rx="1.6452150"
- ry="1.6452144" />
- <g
- id="g2286"
- style="opacity:0.25568182">
- <path
- id="path1345"
- d="M 8.0152033,11.500361 L 39.994145,11.500361"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 8.0152033,13.500361 L 39.994145,13.500361"
- id="path2264" />
- <path
- id="path2266"
- d="M 8.0152033,15.500361 L 39.994145,15.500361"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 8.0152033,17.500361 L 39.994145,17.500361"
- id="path2268" />
- <path
- id="path2270"
- d="M 8.0152033,19.500361 L 39.994145,19.500361"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 8.0152033,21.500361 L 39.994145,21.500361"
- id="path2272" />
- <path
- id="path2274"
- d="M 8.0152033,23.500361 L 39.994145,23.500361"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 8.0152033,25.500361 L 39.994145,25.500361"
- id="path2276" />
- <path
- id="path2278"
- d="M 8.0152033,27.500361 L 39.994145,27.500361"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 8.0152033,29.500361 L 39.994145,29.500361"
- id="path2280" />
- <path
- id="path2282"
- d="M 8.0152033,31.500361 L 39.994145,31.500361"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 8.0152033,33.500361 L 39.994145,33.500361"
- id="path2284" />
- </g>
- <rect
- style="opacity:0.76373626;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2244);stroke-width:0.99999946;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="rect2232"
- width="42.945141"
- height="37.000587"
- x="2.5542557"
- y="4.5007114"
- rx="3.7910469"
- ry="3.7910469" />
- <path
- style="font-size:18.585011px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1.0000000;stroke:#6ed66e;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.27868852;font-family:Bitstream Vera Sans Mono"
- d="M 11.625000,20.679392 L 11.625000,17.625000 L 20.609828,21.685794 L 20.609828,23.541713 L 11.625000,27.629147 L 11.625000,24.583829 L 18.589396,22.729971 L 11.625000,20.679392 z M 30.517635,30.705752 L 30.517635,32.679948 L 19.614229,32.679948 L 19.614229,30.705752 L 30.517635,30.705752"
- id="text1340"
- sodipodi:nodetypes="ccccccccccccc" />
- <path
- sodipodi:nodetypes="ccccccc"
- style="opacity:0.53142856;fill:url(#linearGradient2673);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 7.625388,8 C 7.102102,8 6.05153,8.190188 6.05153,9.0259761 L 6.16958,25.542519 C 23.841567,24.579133 20.294433,17.286426 42,13.633318 L 41.937264,9.2913791 C 41.859002,8.1662868 41.397947,8.0594548 40.327115,8.066071 L 7.625388,8 z "
- id="path2443" />
- <rect
- style="opacity:0.71428573;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.9999992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
- id="rect1340"
- width="34.026031"
- height="26.057468"
- x="6.9894562"
- y="8.9805145"
- rx="0.11773217"
- ry="0.11773217" />
- <rect
- style="opacity:1;fill:url(#radialGradient6453);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5719);stroke-width:1.00000119;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="rect5025"
- width="4.0200734"
- height="2.9590063"
- x="35.485569"
- y="37.514935"
- rx="0.35819405"
- ry="0.56022596" />
- <rect
- style="opacity:1;fill:#93d94c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="rect6458"
- width="2"
- height="2"
- x="32"
- y="38"
- rx="0.56022543"
- ry="0.56022543" />
- <path
- sodipodi:type="arc"
- style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;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"
- id="path2300"
- sodipodi:cx="28.3125"
- sodipodi:cy="38.75"
- sodipodi:rx="0.5625"
- sodipodi:ry="0.5625"
- d="M 28.875 38.75 A 0.5625 0.5625 0 1 1 27.75,38.75 A 0.5625 0.5625 0 1 1 28.875 38.75 z"
- transform="translate(4.375000,-6.250000e-2)" />
- </g>
-</svg>
diff --git a/svg/help-browser.svg b/svg/help-browser.svg
deleted file mode 100644
index 669dda3..0000000
--- a/svg/help-browser.svg
+++ /dev/null
@@ -1,213 +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/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="48.000000px"
- height="48.000000px"
- id="svg6361"
- sodipodi:version="0.32"
- inkscape:version="0.43+devel"
- sodipodi:docbase="/home/tigert/cvs/freedesktop.org/tango-icon-theme/scalable/apps"
- sodipodi:docname="help-browser.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape">
- <defs
- id="defs3">
- <linearGradient
- id="linearGradient2431">
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="0"
- id="stop2433" />
- <stop
- style="stop-color:#b8b8b8;stop-opacity:1;"
- offset="1"
- id="stop2435" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient21644">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop21646" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop21648" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient21644"
- id="radialGradient21650"
- cx="25.125"
- cy="36.75"
- fx="25.125"
- fy="36.75"
- r="15.75"
- gradientTransform="matrix(1.000000,0.000000,0.000000,0.595238,3.369686e-16,14.87500)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient2933">
- <stop
- id="stop2935"
- offset="0"
- style="stop-color:#9cbcde;stop-opacity:1" />
- <stop
- id="stop2937"
- offset="1"
- style="stop-color:#204a87" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2933"
- id="radialGradient2207"
- cx="26.544321"
- cy="28.458725"
- fx="26.544321"
- fy="28.458725"
- r="22.376116"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.238342,5.954846e-3,-6.507762e-3,1.351272,-6.992513,-9.744842)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2431"
- id="radialGradient2437"
- cx="-19.515638"
- cy="16.855663"
- fx="-19.515638"
- fy="16.855663"
- r="8.7536434"
- gradientTransform="matrix(4.445991,-8.852599e-16,1.367217e-15,6.8665,67.25071,-104.6679)"
- gradientUnits="userSpaceOnUse" />
- </defs>
- <sodipodi:namedview
- inkscape:guide-bbox="true"
- showguides="true"
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="0.15294118"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1"
- inkscape:cx="25.160747"
- inkscape:cy="22.523569"
- inkscape:current-layer="layer1"
- showgrid="true"
- inkscape:grid-bbox="true"
- inkscape:document-units="px"
- inkscape:window-width="1014"
- inkscape:window-height="1122"
- inkscape:window-x="178"
- inkscape:window-y="25"
- inkscape:showpageshadow="false"
- fill="#deb887"
- gridcolor="#7171cd"
- gridopacity="0.12156863"
- gridempcolor="#7b7bc3"
- gridempopacity="0.5372549"
- gridempspacing="10"
- stroke="#204a87" />
- <metadata
- id="metadata4">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title>Help Browser</dc:title>
- <dc:date>2005-11-06</dc:date>
- <dc:creator>
- <cc:Agent>
- <dc:title>Tuomas Kuosmanen</dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>help</rdf:li>
- <rdf:li>browser</rdf:li>
- <rdf:li>documentation</rdf:li>
- <rdf:li>docs</rdf:li>
- <rdf:li>man</rdf:li>
- <rdf:li>info</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
- <dc:contributor>
- <cc:Agent>
- <dc:title>Jakub Steiner, Andreas Nilsson</dc:title>
- </cc:Agent>
- </dc:contributor>
- <dc:source>http://tigert.com</dc:source>
- </cc:Work>
- <cc:License
- rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Reproduction" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Distribution" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Notice" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Attribution" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/ShareAlike" />
- </cc:License>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:label="Layer 1"
- inkscape:groupmode="layer">
- <path
- sodipodi:type="arc"
- style="opacity:0.63068181;color:#000000;fill:url(#radialGradient21650);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
- id="path21642"
- sodipodi:cx="25.125000"
- sodipodi:cy="36.750000"
- sodipodi:rx="15.750000"
- sodipodi:ry="9.3750000"
- d="M 40.875000 36.750000 A 15.750000 9.3750000 0 1 1 9.3750000,36.750000 A 15.750000 9.3750000 0 1 1 40.875000 36.750000 z"
- transform="matrix(1.173803,0.000000,0.000000,0.600000,-5.004403,20.32500)" />
- <path
- sodipodi:type="arc"
- style="fill:url(#radialGradient2207);fill-opacity:1.0000000;stroke:#204a87"
- id="path2093"
- sodipodi:cx="23.909048"
- sodipodi:cy="23.825787"
- sodipodi:rx="21.876116"
- sodipodi:ry="21.876116"
- d="M 45.785164 23.825787 A 21.876116 21.876116 0 1 1 2.0329323,23.825787 A 21.876116 21.876116 0 1 1 45.785164 23.825787 z"
- transform="matrix(0.938442,0.000000,0.000000,0.938680,1.564075,1.633906)" />
- <path
- transform="matrix(0.855103,0.000000,0.000000,0.855213,3.555288,3.625019)"
- d="M 45.785164 23.825787 A 21.876116 21.876116 0 1 1 2.0329323,23.825787 A 21.876116 21.876116 0 1 1 45.785164 23.825787 z"
- sodipodi:ry="21.876116"
- sodipodi:rx="21.876116"
- sodipodi:cy="23.825787"
- sodipodi:cx="23.909048"
- id="path2209"
- style="fill:none;fill-opacity:1.0000000;stroke:#ffffff;stroke-width:3.0307744;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000;opacity:0.96022727"
- sodipodi:type="arc" />
- <path
- sodipodi:type="inkscape:offset"
- inkscape:radius="0.13495015"
- inkscape:original="M -20.25 6 C -21.298341 6.000026 -22.372769 6.1244771 -23.5 6.34375 C -24.627244 6.563073 -25.886043 6.8832479 -27.25 7.34375 L -27.25 12.5 C -26.100219 11.776335 -24.997109 11.236862 -23.9375 10.875 C -22.877902 10.502213 -21.881822 10.312521 -20.96875 10.3125 C -19.999334 10.312521 -19.259834 10.530174 -18.71875 10.96875 C -18.177686 11.396402 -17.906262 12.013726 -17.90625 12.78125 C -17.906261 13.285654 -18.039408 13.776881 -18.34375 14.28125 C -18.636843 14.785651 -19.107484 15.33609 -19.75 15.90625 L -20.84375 16.84375 C -22.038631 17.918325 -22.815518 18.829509 -23.1875 19.53125 C -23.559495 20.22205 -23.750005 21.007137 -23.75 21.90625 L -23.75 22.71875 L -17.65625 22.71875 L -17.65625 21.96875 C -17.656262 21.475338 -17.517981 21.030712 -17.28125 20.625 C -17.044542 20.208345 -16.547785 19.648586 -15.78125 18.96875 L -14.71875 18.03125 C -13.659161 17.055386 -12.908389 16.156813 -12.46875 15.3125 C -12.029144 14.457253 -11.781268 13.480828 -11.78125 12.40625 C -11.781268 10.311973 -12.525902 8.7417969 -13.96875 7.65625 C -15.41163 6.559783 -17.499549 6.0000261 -20.25 6 z M -23.75 25.15625 L -23.75 31 L -17.65625 31 L -17.65625 25.15625 L -23.75 25.15625 z "
- xlink:href="#text2215"
- style="font-size:34.15322876px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#radialGradient2437);fill-opacity:1;stroke:#ffffff;stroke-width:1.09947276px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.78612713;font-family:Bitstream Vera Sans"
- id="path1554"
- d="M -20.25,5.875 C -21.309019,5.8750263 -22.397637,5.9982356 -23.53125,6.21875 C -24.664175,6.4391783 -25.911412,6.7562625 -27.28125,7.21875 C -27.291632,7.21754 -27.302118,7.21754 -27.3125,7.21875 C -27.324563,7.2273788 -27.335121,7.237937 -27.34375,7.25 C -27.355813,7.2586288 -27.366371,7.269187 -27.375,7.28125 C -27.37621,7.2916315 -27.37621,7.3021185 -27.375,7.3125 C -27.37621,7.3228815 -27.37621,7.3333685 -27.375,7.34375 L -27.375,12.5 C -27.37621,12.510382 -27.37621,12.520868 -27.375,12.53125 C -27.37621,12.541632 -27.37621,12.552118 -27.375,12.5625 C -27.366371,12.574563 -27.355813,12.585121 -27.34375,12.59375 C -27.335121,12.605813 -27.324563,12.616371 -27.3125,12.625 C -27.302118,12.62621 -27.291632,12.62621 -27.28125,12.625 C -27.270868,12.62621 -27.260382,12.62621 -27.25,12.625 C -27.239618,12.62621 -27.229132,12.62621 -27.21875,12.625 C -27.208368,12.62621 -27.197882,12.62621 -27.1875,12.625 C -26.045062,11.905957 -24.954148,11.357862 -23.90625,11 C -22.858109,10.631244 -21.863134,10.437521 -20.96875,10.4375 C -20.019532,10.437521 -19.323825,10.648045 -18.8125,11.0625 C -18.303777,11.46459 -18.031262,12.04554 -18.03125,12.78125 C -18.03126,13.261907 -18.175438,13.73266 -18.46875,14.21875 C -18.751741,14.705766 -19.209015,15.249245 -19.84375,15.8125 L -20.9375,16.75 C -22.138959,17.83049 -22.926743,18.741022 -23.3125,19.46875 C -23.695613,20.180196 -23.875005,20.988074 -23.875,21.90625 L -23.875,22.71875 C -23.87621,22.729132 -23.87621,22.739618 -23.875,22.75 C -23.87621,22.760382 -23.87621,22.770868 -23.875,22.78125 C -23.866371,22.793313 -23.855813,22.803871 -23.84375,22.8125 C -23.835121,22.824563 -23.824563,22.835121 -23.8125,22.84375 C -23.802118,22.84496 -23.791632,22.84496 -23.78125,22.84375 C -23.770868,22.84496 -23.760382,22.84496 -23.75,22.84375 L -17.65625,22.84375 C -17.645868,22.84496 -17.635382,22.84496 -17.625,22.84375 C -17.614618,22.84496 -17.604132,22.84496 -17.59375,22.84375 C -17.581687,22.835121 -17.571129,22.824563 -17.5625,22.8125 C -17.550437,22.803871 -17.539879,22.793313 -17.53125,22.78125 C -17.53004,22.770868 -17.53004,22.760382 -17.53125,22.75 C -17.53004,22.739618 -17.53004,22.729132 -17.53125,22.71875 L -17.53125,21.96875 C -17.531261,21.500554 -17.38288,21.075901 -17.15625,20.6875 C -16.933955,20.296216 -16.448177,19.737141 -15.6875,19.0625 L -14.625,18.125 C -13.558412,17.14269 -12.794341,16.240346 -12.34375,15.375 C -11.894481,14.500954 -11.656268,13.50158 -11.65625,12.40625 C -11.656268,10.279985 -12.400019,8.6722224 -13.875,7.5625 C -15.350197,6.4414748 -17.48124,5.8750263 -20.25,5.875 z M -23.8125,25.03125 C -23.824563,25.039879 -23.835121,25.050437 -23.84375,25.0625 C -23.855813,25.071129 -23.866371,25.081687 -23.875,25.09375 C -23.87621,25.104132 -23.87621,25.114618 -23.875,25.125 C -23.87621,25.135382 -23.87621,25.145868 -23.875,25.15625 L -23.875,31 C -23.87621,31.010382 -23.87621,31.020868 -23.875,31.03125 C -23.87621,31.041632 -23.87621,31.052118 -23.875,31.0625 C -23.866371,31.074563 -23.855813,31.085121 -23.84375,31.09375 C -23.835121,31.105813 -23.824563,31.116371 -23.8125,31.125 C -23.802118,31.12621 -23.791632,31.12621 -23.78125,31.125 C -23.770868,31.12621 -23.760382,31.12621 -23.75,31.125 L -17.65625,31.125 C -17.645868,31.12621 -17.635382,31.12621 -17.625,31.125 C -17.614618,31.12621 -17.604132,31.12621 -17.59375,31.125 C -17.581687,31.116371 -17.571129,31.105813 -17.5625,31.09375 C -17.550437,31.085121 -17.539879,31.074563 -17.53125,31.0625 C -17.53004,31.052118 -17.53004,31.041632 -17.53125,31.03125 C -17.53004,31.020868 -17.53004,31.010382 -17.53125,31 L -17.53125,25.15625 C -17.53004,25.145868 -17.53004,25.135382 -17.53125,25.125 C -17.53004,25.114618 -17.53004,25.104132 -17.53125,25.09375 C -17.539879,25.081687 -17.550437,25.071129 -17.5625,25.0625 C -17.571129,25.050437 -17.581687,25.039879 -17.59375,25.03125 C -17.604132,25.03004 -17.614618,25.03004 -17.625,25.03125 C -17.635382,25.03004 -17.645868,25.03004 -17.65625,25.03125 L -23.75,25.03125 C -23.760382,25.03004 -23.770868,25.03004 -23.78125,25.03125 C -23.791632,25.03004 -23.802118,25.03004 -23.8125,25.03125 z "
- transform="matrix(0.849895,0,0,0.835205,41.72981,8.548327)" />
- </g>
-</svg>
diff --git a/svg/internet-group-chat.svg b/svg/internet-group-chat.svg
deleted file mode 100644
index 3790722..0000000
--- a/svg/internet-group-chat.svg
+++ /dev/null
@@ -1,198 +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/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="48px"
- height="48px"
- id="svg5816"
- sodipodi:version="0.32"
- inkscape:version="0.43+devel"
- sodipodi:docbase="/home/tigert/cvs/freedesktop.org/tango-icon-theme/scalable/apps"
- sodipodi:docname="internet-group-chat.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape">
- <defs
- id="defs3">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient29433">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop29435" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop29437" />
- </linearGradient>
- <linearGradient
- id="linearGradient29418">
- <stop
- style="stop-color:#f5f5f5;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop29420" />
- <stop
- style="stop-color:#e9e9e9;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop29422" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient29418"
- id="linearGradient29429"
- gradientUnits="userSpaceOnUse"
- x1="26.011957"
- y1="10.916001"
- x2="39.037319"
- y2="26.257807"
- gradientTransform="matrix(1.007553,0.000000,0.000000,0.987647,-3.071923,0.274607)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient29433"
- id="radialGradient29439"
- cx="29.496454"
- cy="27.645426"
- fx="29.496454"
- fy="27.645426"
- r="11.515739"
- gradientTransform="matrix(1.000000,0.000000,0.000000,0.346491,-5.177067e-17,18.06653)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient29418"
- id="linearGradient29443"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.977228,0.000000,0.000000,0.995878,50.60272,9.115637)"
- x1="35.003674"
- y1="10.957423"
- x2="27.273300"
- y2="24.143761" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient29433"
- id="radialGradient29455"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.000000,0.000000,0.000000,0.346491,-5.192787e-16,18.06653)"
- cx="29.496454"
- cy="27.645426"
- fx="29.496454"
- fy="27.645426"
- r="11.515739" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="0.13333333"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="4.0000000"
- inkscape:cx="37.195122"
- inkscape:cy="3.7490845"
- inkscape:current-layer="layer1"
- showgrid="false"
- inkscape:grid-bbox="true"
- inkscape:document-units="px"
- inkscape:window-width="849"
- inkscape:window-height="743"
- inkscape:window-x="347"
- inkscape:window-y="184"
- inkscape:showpageshadow="false" />
- <metadata
- id="metadata4">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title>Group Chat</dc:title>
- <dc:creator>
- <cc:Agent>
- <dc:title>Jakub Steiner</dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:contributor>
- <cc:Agent>
- <dc:title />
- </cc:Agent>
- </dc:contributor>
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
- <dc:subject>
- <rdf:Bag>
- <rdf:li>group</rdf:li>
- <rdf:li>chat</rdf:li>
- <rdf:li>IRC</rdf:li>
- <rdf:li>internet</rdf:li>
- <rdf:li>network</rdf:li>
- </rdf:Bag>
- </dc:subject>
- </cc:Work>
- <cc:License
- rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Reproduction" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/Distribution" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Notice" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/Attribution" />
- <cc:permits
- rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
- <cc:requires
- rdf:resource="http://web.resource.org/cc/ShareAlike" />
- </cc:License>
- </rdf:RDF>
- </metadata>
- <g
- id="layer1"
- inkscape:label="Layer 1"
- inkscape:groupmode="layer">
- <path
- sodipodi:type="arc"
- style="opacity:0.12025315;color:#000000;fill:url(#radialGradient29439);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;overflow:visible"
- id="path29431"
- sodipodi:cx="29.496454"
- sodipodi:cy="27.645426"
- sodipodi:rx="11.515739"
- sodipodi:ry="3.9901025"
- d="M 41.012194 27.645426 A 11.515739 3.9901025 0 1 1 17.980715,27.645426 A 11.515739 3.9901025 0 1 1 41.012194 27.645426 z"
- transform="matrix(1.372807,0.000000,0.000000,1.092410,-10.33736,0.235623)" />
- <path
- style="color:#000000;fill:url(#linearGradient29429);fill-opacity:1.0000000;fill-rule:nonzero;stroke:#787878;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;overflow:visible"
- d="M 18.401556,6.5708568 C 17.330237,6.5708568 16.480907,7.4342708 16.480907,8.4844229 L 16.480907,23.546039 C 16.480907,24.596191 17.330237,25.428741 18.401556,25.428741 L 32.538786,25.428741 C 33.395105,26.532444 35.061504,28.321947 39.056397,29.811425 C 37.277778,27.762498 37.281568,26.371064 37.482095,25.428741 L 40.378811,25.428741 C 41.450128,25.428741 42.330943,24.596191 42.330945,23.546039 L 42.330945,8.4844229 C 42.330945,7.4342710 41.450128,6.5708568 40.378811,6.5708568 L 18.401556,6.5708568 z "
- id="rect29408" />
- <path
- id="path29445"
- d="M 18.813100,7.5755336 C 17.894941,7.5755336 17.520588,8.0124648 17.520588,8.9124830 L 17.520588,22.780475 C 17.520588,23.680493 18.248494,24.394018 19.166653,24.394018 L 33.050535,24.394018 C 33.784431,25.339932 34.353965,26.368524 36.565549,27.493537 C 36.152377,26.596163 36.500603,25.342181 36.782053,24.394018 L 40.274795,24.394018 C 41.192952,24.394018 41.291243,24.034046 41.291245,23.134028 L 41.291245,8.9124830 C 41.291245,8.0124650 41.041429,7.6260413 40.123272,7.6260413 L 18.813100,7.5755336 z "
- style="color:#000000;fill:none;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999940;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;overflow:visible"
- sodipodi:nodetypes="cccccccccccc" />
- <path
- transform="matrix(1.372807,0.000000,0.000000,1.092410,-21.08736,6.735623)"
- d="M 41.012194 27.645426 A 11.515739 3.9901025 0 1 1 17.980715,27.645426 A 11.515739 3.9901025 0 1 1 41.012194 27.645426 z"
- sodipodi:ry="3.9901025"
- sodipodi:rx="11.515739"
- sodipodi:cy="27.645426"
- sodipodi:cx="29.496454"
- id="path29453"
- style="opacity:0.12025315;color:#000000;fill:url(#radialGradient29455);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;overflow:visible"
- sodipodi:type="arc" />
- <path
- id="path29441"
- d="M 29.775522,15.464360 C 30.814596,15.464360 31.638363,16.334970 31.638363,17.393874 L 31.638363,32.581013 C 31.638363,33.639917 30.814596,34.479406 29.775522,34.479406 L 16.063794,34.479406 C 15.233249,35.592307 13.617005,37.396724 9.7423514,38.898615 C 11.467436,36.832612 11.463760,35.429582 11.269269,34.479406 L 8.4597394,34.479406 C 7.4206669,34.479406 6.5663627,33.639917 6.5663607,32.581013 L 6.5663607,17.393874 C 6.5663607,16.334970 7.4206669,15.464360 8.4597394,15.464360 L 29.775522,15.464360 z "
- style="color:#000000;fill:url(#linearGradient29443);fill-opacity:1.0000000;fill-rule:nonzero;stroke:#787878;stroke-width:0.99999946;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;overflow:visible" />
- <path
- style="color:#000000;fill:none;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;overflow:visible"
- d="M 29.389156,16.452895 C 30.331609,16.452895 30.624208,16.914249 30.624208,17.874689 L 30.624208,32.078936 C 30.624208,33.039376 30.382116,33.447250 29.439663,33.447250 L 15.538226,33.447250 C 14.784911,34.456666 13.470480,36.042788 12.026931,36.697916 C 12.429930,35.531131 12.275072,34.561610 12.199682,33.447250 L 8.7927724,33.447250 C 7.8503201,33.447250 7.5805314,33.039376 7.5805296,32.078936 L 7.5805296,18.000958 C 7.5805296,17.040518 7.8503201,16.452895 8.7927724,16.452895 L 29.389156,16.452895 z "
- id="path29449"
- sodipodi:nodetypes="cccccccccccc" />
- </g>
-</svg>