aboutsummaryrefslogtreecommitdiffstats
path: root/meta-gnome
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2018-03-30 15:31:15 +0200
committerArmin Kuster <akuster808@gmail.com>2018-04-08 17:00:06 -0700
commit190bec6025d4fc40ae488daea1f6dba9d9fbeb77 (patch)
treea774decad9ca259a861af1a3d1f09e96c78dbaf9 /meta-gnome
parentf2d6ae51109fa114d0a861bb7de978a846889054 (diff)
downloadmeta-openembedded-contrib-190bec6025d4fc40ae488daea1f6dba9d9fbeb77.tar.gz
libgnomeui: remove
* libbonoboui is gone * project is dead - last release 2011 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r--meta-gnome/recipes-gnome/libgnome/libgnomeui/0001-suppress-string-format-literal-warning-to-fix-build-.patch78
-rw-r--r--meta-gnome/recipes-gnome/libgnome/libgnomeui/05_fix_invalid_utf8.patch21
-rw-r--r--meta-gnome/recipes-gnome/libgnome/libgnomeui/gnome-stock-pixbufs.h4030
-rw-r--r--meta-gnome/recipes-gnome/libgnome/libgnomeui/no-pixbuf-csource.patch11
-rw-r--r--meta-gnome/recipes-gnome/libgnome/libgnomeui_2.24.5.bb34
5 files changed, 0 insertions, 4174 deletions
diff --git a/meta-gnome/recipes-gnome/libgnome/libgnomeui/0001-suppress-string-format-literal-warning-to-fix-build-.patch b/meta-gnome/recipes-gnome/libgnome/libgnomeui/0001-suppress-string-format-literal-warning-to-fix-build-.patch
deleted file mode 100644
index abc9bdfbab..0000000000
--- a/meta-gnome/recipes-gnome/libgnome/libgnomeui/0001-suppress-string-format-literal-warning-to-fix-build-.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From 6697fcf9d7f53126b442bf19890640b5f88c8aa4 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
-Date: Fri, 29 Jul 2016 21:24:20 +0200
-Subject: [PATCH] suppress string format literal warning to fix build with gcc6
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-works around:
-| ../../libgnomeui-2.24.5/libgnomeui/gnome-dateedit.c: In function 'day_selected':
-| ../../libgnomeui-2.24.5/libgnomeui/gnome-dateedit.c:156:9: error: format not a string literal, format string not checked [-Werror=format-nonliteral]
-| strftime_date_format, &mtm) == 0)
-| ^~~~~~~~~~~~~~~~~~~~
-| ../../libgnomeui-2.24.5/libgnomeui/gnome-dateedit.c: In function 'gnome_date_edit_set_time':
-| ../../libgnomeui-2.24.5/libgnomeui/gnome-dateedit.c:704:2: error: format not a string literal, format string not checked [-Werror=format-nonliteral]
-| if (strftime (buffer, sizeof (buffer), strftime_date_format, mytm) == 0)
-| ^~
-
-Upstream-Status: Pending
-
-Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
----
- libgnomeui/gnome-dateedit.c | 6 ++++++
- libgnomeui/gnome-gconf-ui.c | 3 +++
- 2 files changed, 9 insertions(+)
-
-diff --git a/libgnomeui/gnome-dateedit.c b/libgnomeui/gnome-dateedit.c
-index 69ab699..41541c3 100644
---- a/libgnomeui/gnome-dateedit.c
-+++ b/libgnomeui/gnome-dateedit.c
-@@ -152,9 +152,12 @@ day_selected (GtkCalendar *calendar, GnomeDateEdit *gde)
- else
- mtm.tm_year = year;
-
-+#pragma GCC diagnostic push
-+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
- if (strftime (buffer, sizeof (buffer),
- strftime_date_format, &mtm) == 0)
- strcpy (buffer, "???");
-+#pragma GCC diagnostic pop
- buffer[sizeof(buffer)-1] = '\0';
-
- /* FIXME: what about set time */
-@@ -701,8 +704,11 @@ gnome_date_edit_set_time (GnomeDateEdit *gde, time_t the_time)
- mytm = localtime (&the_time);
-
- /* Set the date */
-+#pragma GCC diagnostic push
-+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
- if (strftime (buffer, sizeof (buffer), strftime_date_format, mytm) == 0)
- strcpy (buffer, "???");
-+#pragma GCC diagnostic pop
- buffer[sizeof(buffer)-1] = '\0';
-
- str_utf8 = g_locale_to_utf8 (buffer, -1, NULL, NULL, NULL);
-diff --git a/libgnomeui/gnome-gconf-ui.c b/libgnomeui/gnome-gconf-ui.c
-index 43c0f44..a84b2c0 100644
---- a/libgnomeui/gnome-gconf-ui.c
-+++ b/libgnomeui/gnome-gconf-ui.c
-@@ -180,12 +180,15 @@ error_idle_func (gpointer data)
- "configuration settings may not work properly.");
- }
-
-+#pragma GCC diagnostic push
-+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
- dialog = gtk_message_dialog_new (NULL /* parent */,
- 0 /* flags */,
- GTK_MESSAGE_ERROR,
- GTK_BUTTONS_OK,
- fmt,
- gnome_program_get_human_readable_name(gnome_program_get()));
-+#pragma GCC diagnostic pop
- gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
- g_signal_connect (dialog, "response",
- G_CALLBACK (gtk_widget_destroy),
---
-2.5.5
-
diff --git a/meta-gnome/recipes-gnome/libgnome/libgnomeui/05_fix_invalid_utf8.patch b/meta-gnome/recipes-gnome/libgnome/libgnomeui/05_fix_invalid_utf8.patch
deleted file mode 100644
index bb09b47951..0000000000
--- a/meta-gnome/recipes-gnome/libgnome/libgnomeui/05_fix_invalid_utf8.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Description: Fix FTBFS with glib 2.54
- glib-mkenums now expects input files to be UTF-8,
- fix the encoding of libgnomeui/gnome-scores.h
-Author: Adrian Bunk <bunk@debian.org>
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-Upstream-Status: Pending
-
-Index: libgnomeui-2.24.5/libgnomeui/gnome-scores.h
-===================================================================
---- libgnomeui-2.24.5.orig/libgnomeui/gnome-scores.h
-+++ libgnomeui-2.24.5/libgnomeui/gnome-scores.h
-@@ -27,7 +27,7 @@
- * "High Scores" Widget
- *
- * AUTHOR:
-- * Horacio J. Peña <horape@compendium.com.ar>
-+ * Horacio J. Peña <horape@compendium.com.ar>
- *
- * This is free software (under the terms of the GNU LGPL)
- *
diff --git a/meta-gnome/recipes-gnome/libgnome/libgnomeui/gnome-stock-pixbufs.h b/meta-gnome/recipes-gnome/libgnome/libgnomeui/gnome-stock-pixbufs.h
deleted file mode 100644
index 953a8aeb06..0000000000
--- a/meta-gnome/recipes-gnome/libgnome/libgnomeui/gnome-stock-pixbufs.h
+++ /dev/null
@@ -1,4030 +0,0 @@
-/* gnome stock icons in GdmPixbuf usable rgb data
- *
- * Copyright (C) 1997 the Free Software Foundation
- *
- * the pixmaps for button_cancel, save_as, trash, mail_receive, stop
- * right_arrow, home, save, book_blue, trash_full, undo, search, mail_forward
- * revert, mail_compose, mic, copy, jump_to, convert, button_apply, timer
- * mail, book_red, book_yellow, help, redo, new, mail_send, button_yes, cut
- * properties, print, mail_reply, refresh, search_replace, open, preferences
- * left_arrow, undelete, close, volume, button_no, exit, book_green
- * book_open, paste, line_in, spellcheck, timer_stopped
- * are Copyright (C) 1998 Tuomas Kuosmanen
- */
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_attach)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_attach[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_attach[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\21\0\0\0\2\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\26\0"
- "\0\0\"\0\0\0$\0\0\0%\0\0\0%\0\0\0\377\0\0\0l\0\0\0\377\0\0\0\377\0\0"
- "\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\"\0\0\0\20\0"
- "\0\0$\0\0\0~\1\1\1\377QQQ\377\232\232\232\377\317\317\317\377ooo\377"
- "\0\0\0\377\0\0\0\16\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0x\0\0\0"
- "\377FFF\377\245\245\245\377\342\342\342\377\377\377\377\377\377\377\377"
- "\377\366\366\366\377\212\212\212\377999\377\0\0\0(\0\0\0\10\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\0\0"
- "B\0\0\0\377\34\34\34\377\213\213\213\377\346\346\346\377\356\356\356"
- "\377\341\341\341\377\377\377\377\377\370\370\370\377\367\367\367\377"
- "\366\366\366\377\314\314\314\377VVV\377\0\0\0^\0\0\0\12\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\0\377>>>\377\201\201\201"
- "\377\324\324\324\377\34\34\34\377\347\347\347\377\327\327\327\377\372"
- "\372\372\377\371\371\371\377\370\370\370\377\302\302\302\377\313\313"
- "\313\377\365\365\365\377\331\331\331\377\201\201\201\377\0\0\0\377\0"
- "\0\0\25\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0:\3\3\3\377TTT\377\346\346"
- "\346\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\327"
- "\327\327\377\336\336\336\377\263\263\263\377yyy\377\0\0\0\377\342\342"
- "\342\377\366\366\366\377\365\365\365\377\364\364\364\377\235\235\235"
- "\377(((\377\0\0\0)\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\366\366"
- "\366\377\377\377\377\377\377\377\377\377\372\372\372\377\372\372\372"
- "\377\373\373\373\377\0\0\0\377\246\246\246\377\305\305\305\377\360\360"
- "\360\377\370\370\370\377\0\0\0\377\342\342\342\377\302\302\302\377\312"
- "\312\312\377\364\364\364\377\307\307\307\377VVV\377\0\0\0^\0\0\0\12\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\362\362\362\377\370\370\370\377\371"
- "\371\371\377\316\316\316\377\304\304\304\377\305\305\305\377\0\0\0\377"
- "\325\325\325\377\371\371\371\377\370\370\370\377\370\370\370\377\0\0"
- "\0\377\263\263\263\377\332\332\332\377\364\364\364\377\363\363\363\377"
- "\363\363\363\377yyy\377\0\0\0\377\0\0\0\25\0\0\0\3\0\0\0\0\0\0\0\0\0"
- "\0\0h\205\205\205\377\377\377\377\377\370\370\370\377\276\276\276\377"
- "\371\371\371\377\371\371\371\377\0\0\0\377\323\323\323\377\334\334\334"
- "\377\302\302\302\377\302\302\302\377\0\0\0\377\342\342\342\377\365\365"
- "\365\377\364\364\364\377\363\363\363\377\362\362\362\377\234\234\234"
- "\377(((\377\0\0\0)\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\40HHH\377\377\377\377"
- "\377\367\367\367\377\367\367\367\377\370\370\370\377\370\370\370\377"
- "\0\0\0\377\247\247\247\377\326\326\326\377\367\367\367\377\366\366\366"
- "\377\0\0\0\377\342\342\342\377\364\364\364\377\304\304\304\377\310\310"
- "\310\377\362\362\362\377\306\306\306\377LLL\377\0\0\0^\0\0\0\12\0\0\0"
- "\0\0\0\0\0\0\0\0\1\0\0\0\377\352\352\352\377\377\377\377\377\366\366"
- "\366\377\276\276\276\377\302\302\302\377\0\0\0\377\345\345\345\377\330"
- "\330\330\377\366\366\366\377\365\365\365\377\0\0\0\377\255\255\255\377"
- "\274\274\274\377\352\352\352\377\340\340\340\377\361\361\361\377\352"
- "\352\352\377\220\220\220\377\0\0\0\377\0\0\0\25\0\0\0\3\0\0\0\0\0\0\0"
- "\0\0\0\0ihhh\377\377\377\377\377\365\365\365\377\366\366\366\377\366"
- "\366\366\377\242\242\242\377\0\0\0\377\300\300\300\377\301\301\301\377"
- "\0\0\0\377xxx\377\326\326\326\377\363\363\363\377\362\362\362\377\361"
- "\361\361\377\361\361\361\377\325\325\325\377\256\256\256\377\25\25\25"
- "\377\0\0\0)\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4""999\377\377\377\377\377"
- "\364\364\364\377\365\365\365\377\365\365\365\377\332\332\332\377\232"
- "\232\232\377\0\0\0\377\0\0\0\377yyy\377\326\326\326\377\362\362\362\377"
- "\362\362\362\377\361\361\361\377\326\326\326\377\320\320\320\377\227"
- "\227\227\377rrr\377JJJ\377\0\0\0.\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\377\354\354\354\377\377\377\377\377\364\364\364\377\254\254\254"
- "\377\272\272\272\377\335\335\335\377\363\363\363\377\316\316\316\377"
- "\333\333\333\377\354\354\354\377\327\327\327\377\326\326\326\377\261"
- "\261\261\377\201\201\201\377VVV\377###\377\0\0\0\377\0\0\0q\0\0\0)\0"
- "\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0hiii\377\377\377\377\377\363\363"
- "\363\377\363\363\363\377\363\363\363\377\363\363\363\377\362\362\362"
- "\377\362\362\362\377\327\327\327\377\267\267\267\377\202\202\202\377"
- "@@@\377###\377\0\0\0\377\0\0\0\204\0\0\0""2\0\0\0.\0\0\0)\0\0\0\25\0"
- "\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4(((\377\377\377\377\377\363\363"
- "\363\377\362\362\362\377\362\362\362\377\327\327\327\377\276\276\276"
- "\377\226\226\226\377222\377###\377\0\0\0\377\0\0\0u\0\0\0H\0\0\0/\0\0"
- "\0*\0\0\0\31\0\0\0\13\0\0\0\10\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\377\346\346\346\377\350\350\350\377\314\314\314\377"
- "\232\232\232\377@@@\377###\377\0\0\0\377\0\0\0\221\0\0\0I\0\0\0/\0\0"
- "\0*\0\0\0\30\0\0\0\16\0\0\0\11\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0;999\377\202\202\202\377999\377"
- "\22\22\22\377\0\0\0\204\0\0\0I\0\0\0/\0\0\0*\0\0\0\33\0\0\0\16\0\0\0"
- "\11\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\377\0\0\0\377\0\0\0u\0\0"
- "\0""1\0\0\0*\0\0\0\31\0\0\0\16\0\0\0\11\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0&\0\0\0)\0\0\0\27\0\0\0"
- "\12\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\0\10\0\0\0\3\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_book_blue)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_book_blue[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_book_blue[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0"
- "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\21\26\35\377\227"
- "\250\276\377}\223\254\377s\212\243\377l\204\234\377d|\226\377^v\217\377"
- "Wo\210\377Pi\202\377Pi\202\377Pi\202\377Pi\202\377Pi\202\377Vn\206\377"
- "IXi\377\21\30\"\376\0\0\0.\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\273v\213\242\377\216\242\270\377v\215\247\377Vr\220\377"
- "Nj\210\377Fb\200\377=Zx\3775Rp\3771Nk\3771Nk\3776Ro\3776Ro\377<Ws\377"
- "6Ro\3773@O\377\25\34%\372\0\0\0N\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\22\12\15\21\377\231\254\300\377\200\226\256\377[v\224\377"
- "So\215\377Jg\205\377B_}\377:Wu\3772Om\3771Nk\3771Nk\3771Nk\3771Nk\377"
- ";Wr\377-D\\\377#/6\377\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\255[iy\377\231\254\300\377u\215\246\377Ws\221\377Ok\210"
- "\377Gc\201\377\77[y\3776Sq\3771Nk\3771Nk\3771Nk\3771Nk\3774Pm\377;Wr"
- "\377)\77V\3775<A\375\0\0\0\377\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\21\0\0\0\377\231\254\300\377\200\227\260\377\\x\226\377Tp\216"
- "\377Kh\206\377C`~\377;Xv\3773Pn\3771Nk\3771Nk\3773Pk\3771Nk\3779Uq\377"
- "-D\\\377\27\",\377~\202\205\377578\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\232[iy\377\217\243\271\377u\215\246\377Xt\222\377Pl"
- "\212\377Hd\202\377@\\z\3778Tr\3771Nk\3771Nk\3771Nk\3771Nk\3772Ol\377"
- "=Yt\377)\77V\377!'.\376JLM\377\216\220\222\377\0\0\0Q\0\0\0\20\0\0\0"
- "\0\0\0\0\0\0\0\0\20\0\0\0\377\230\253\277\375\177\226\257\377]y\227\377"
- "Uq\217\377Mi\207\377Da\177\377<Yw\3774Qo\3771Nk\3771Nk\3771Nk\3771Nk"
- "\3778Tp\377/F]\377\30$-\377TWY\366eij\377334\377\0\0\0Q\0\0\0\20\0\0"
- "\0\0\0\0\0\0\0\0\0\335eu\203\377\215\242\271\377v\215\247\377Zu\223\377"
- "Qm\213\377Ie\203\377A]{\3779Us\3771Nk\3771Nk\3771Nk\3771Nk\3771Nk\377"
- "<Ws\377*BZ\377#+2\377FHJ\377\220\222\225\377\0\0\0\377\0\0\0c\0\0\0\21"
- "\0\0\0\0\0\0\0!\0\0\0\377\233\254\273\377\207\234\264\377c~\233\377V"
- "r\220\377Nj\210\377Fb\200\377=Zx\3775Rp\3771Nk\3771Nk\3771Nk\3771Nk\377"
- "5Rn\3774Kb\377\31$-\377dhk\377mop\3770G]\377\0\0\0\373\0\0\0R\0\0\0\25"
- "\0\0\0\0\0\0\0\245ep}\377\221\245\274\377q\213\246\377\\x\226\377Tp\216"
- "\377Kh\206\377C`~\377;Xv\3773Pn\3771Nk\3771Nk\3771Nk\3771Nk\377=Yt\377"
- ")\77V\377&.3\377WXY\377\213\217\225\377\11\15\21\372\0\0\0\234\0\0\0"
- "I\0\0\0\17\0\0\0\13\0\0\0\377~\216\237\337\212\237\266\377l\205\241\377"
- "Xt\222\377Pl\212\377Hd\202\377@\\z\3778Tr\3771Nk\3771Nk\3771Nk\3771N"
- "k\3771Nk\3775Lc\377\32%0\377HLN\377suv\377C[s\370\0\0\0\364\0\0\0U\0"
- "\0\0+\0\0\0\7\0\0\0\206uww\377\275\306\323\375\256\276\314\377\247\266"
- "\306\377\243\262\302\377\236\255\275\377\232\252\271\377\220\240\260"
- "\377{\217\241\377y\214\237\377y\214\237\377y\214\237\377y\214\237\377"
- "p\204\231\377Ufy\37725;\377[^a\377\216\223\230\377\12\16\21\372\0\0\0"
- "\233\0\0\0G\0\0\0\21\0\0\0\1\2\7\11\331\260\272\304\377,>Q\377$6J\377"
- "$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377"
- "$6J\377+5\77\377^bh\377wxz\377F`z\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6"
- "\0\0\0\0\15\17\21\377\207\223\235\377@AE\377_``\373ttt\377\226\226\226"
- "\377\261\261\261\377\257\257\260\377\305\305\306\377\316\316\317\377"
- "\264\273\301\377\274\302\311\377\275\304\312\377\304\313\322\377\313"
- "\322\331\377\326\332\336\377\220\226\233\377\205\212\217\377\24\33!\371"
- "\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\14\16\17\377k{\213\377WWW"
- "\377}~\200\377\342\344\346\377\342\344\346\377\341\341\341\377\337\337"
- "\340\377\337\337\340\377\362\362\362\377\375\375\376\377\361\363\365"
- "\377\361\363\365\377\361\363\365\377\247\250\252\377\262\265\271\377"
- "imq\377F`z\377\0\1\2\370\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\0\0\0\0$%'\377"
- "cr\201\377i|\216\377Tk\203\377E]x\377\326\334\341\377\347\352\355\377"
- "\355\357\361\377\355\357\362\377\345\346\347\377\336\336\337\377\341"
- "\341\342\377\341\341\342\377\337\337\340\377\341\342\343\377rz\203\377"
- "\213\217\224\377\25\33!\367\0\0\0\234\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0"
- "\0\0\0\0\0\0\0""9\0\0\0\377\4\6\12\3548J]\363Mbx\351Th\177\357Sj\202"
- "\377Wo\206\377\207\227\247\377\327\335\341\377\342\346\351\377\351\354"
- "\356\377\370\371\372\377\370\371\372\377\201\205\212\377\245\247\250"
- "\377\234\242\250\377\1\2\3\370\0\0\0U\0\0\0*\0\0\0\7\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e\0\0\0\276\0\0\0\346\0\0\0\360\0\0\0\363"
- ";K^\371DVi\371Tg}\367Uk\200\366Vl\203\377\254\270\303\377\334\341\345"
- "\377\350\353\355\377\237\243\246\377\25\35$\373\0\0\0\234\0\0\0H\0\0"
- "\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0"
- "\34\0\0\0""4\0\0\0C\0\0\0g\0\0\0\251\0\0\0\344\0\0\0\361\0\0\0\3560>"
- "M\365=N`\371O_s\372Se{\367Lc|\357\1\3\5\367\0\0\0U\0\0\0+\0\0\0\7\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12"
- "\0\0\0\15\0\0\0\20\0\0\0\33\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327"
- "\0\0\0\356\0\0\0\354\0\0\0\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\3\0\0\0\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0"
- "\77\0\0\0H\0\0\0H\0\0\0@\0\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0"
- "\0\0\16\0\0\0\14\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_book_green)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_book_green[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_book_green[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0"
- "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\21\34\21\377\225"
- "\276\225\377y\255y\377n\246n\377e\241e\377^\233^\377Y\222Y\377S\212S"
- "\377O\202O\377O\202O\377O\202O\377O\202O\377O\202O\377R\210R\377CnC\377"
- "\22\36\22\376\0\0\0.\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\273o\247o\377\214\271\214\377r\251r\377V\216V\377P\204P\377Jz"
- "J\377CoC\377=e=\377:`:\377:`:\377=e=\377=e=\377AkA\377=e=\3770P0\377"
- "\26#\26\372\0\0\0N\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22"
- "\11\17\11\377\227\277\227\377}\260}\377Y\223Y\377T\213T\377M\177M\377"
- "GuG\377AkA\377;a;\377:`:\377:`:\377:`:\377:`:\377@j@\3773T3\377!6!\377"
- "\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255O\203"
- "O\377\227\277\227\377q\250q\377W\217W\377P\204P\377K|K\377ErE\377>f>"
- "\377:`:\377:`:\377:`:\377:`:\377<c<\377@j@\377/N/\377,I,\375\0\0\0\377"
- "\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\0\377\227\277\227"
- "\377~\260~\377[\226[\377U\214U\377N\201N\377HwH\377BmB\377<c<\377:`:"
- "\377:`:\377;a;\377:`:\377@i@\3773T3\377\30(\30\377\201\201\201\377(B"
- "(\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232O\203O\377\215"
- "\271\215\377q\250q\377X\221X\377R\207R\377L}L\377FsF\377@i@\377:`:\377"
- ":`:\377:`:\377:`:\377;a;\377BmB\377/N/\377\35""0\35\376KKK\377\220\220"
- "\220\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0\377\226\277\226"
- "\375}\260}\377\\\227\\\377V\215V\377O\203O\377IxI\377CnC\377=d=\377:"
- "`:\377:`:\377:`:\377:`:\377\77h\77\3774V4\377\31*\31\377VVV\366ggg\377"
- "333\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\335W\217W\377\214\271\214"
- "\377r\251r\377Y\222Y\377R\210R\377L~L\377FtF\377@j@\377:`:\377:`:\377"
- ":`:\377:`:\377:`:\377AkA\3771Q1\377\37""3\37\377HHH\377w\254w\377\0\0"
- "\0\377\0\0\0c\0\0\0\21\0\0\0\0\0\0\0!\0\0\0\377\226\277\226\377\204\264"
- "\204\377_\235_\377V\216V\377P\204P\377JzJ\377CoC\377=e=\377:`:\377:`"
- ":\377:`:\377:`:\377=d=\3778]8\377\32+\32\377ggg\377nnn\3774V4\377\0\0"
- "\0\373\0\0\0R\0\0\0\25\0\0\0\0\0\0\0\245U\214U\377\220\273\220\377n\246"
- "n\377[\226[\377U\214U\377N\201N\377HwH\377BmB\377<c<\377:`:\377:`:\377"
- ":`:\377:`:\377BmB\377/N/\377!6!\377XXX\377t\253t\377\11\17\11\372\0\0"
- "\0\234\0\0\0I\0\0\0\17\0\0\0\13\0\0\0\377t\247t\337\210\266\210\377h"
- "\243h\377X\221X\377R\207R\377L}L\377FsF\377@i@\377:`:\377:`:\377:`:\377"
- ":`:\377:`:\3779^9\377\33.\33\377KKK\377ttt\377EpE\370\0\0\0\364\0\0\0"
- "U\0\0\0+\0\0\0\7\0\0\0\206Y\222Y\377\272\325\272\375\254\314\254\377"
- "\243\307\243\377\237\304\237\377\230\300\230\377\223\275\223\377\210"
- "\266\210\377r\251r\377o\247o\377o\247o\377o\247o\377o\247o\377e\241e"
- "\377M\177M\377(B(\377^^^\377x\255x\377\11\17\11\372\0\0\0\233\0\0\0G"
- "\0\0\0\21\0\0\0\1\3\5\3\331\250\312\250\377.L.\377)D)\377)D)\377)D)\377"
- ")D)\377)D)\377)D)\377)D)\377)D)\377)D)\377)D)\377)D)\377)D)\377'A'\377"
- "ccc\377xxx\377HwH\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\13\22\13"
- "\377w\254w\3771Q1\377___\373ttt\377\226\226\226\377\261\261\261\377\257"
- "\257\257\377\305\305\305\377\316\316\316\377\272\272\272\377\302\302"
- "\302\377\303\303\303\377\313\313\313\377\322\322\322\377\332\332\332"
- "\377\225\225\225\377m\246m\377\23\37\23\371\0\0\0\234\0\0\0H\0\0\0\22"
- "\0\0\0\1\0\0\0\0\11\17\11\377\\\230\\\377AkA\377~~~\377\344\344\344\377"
- "\344\344\344\377\341\341\341\377\337\337\337\377\337\337\337\377\362"
- "\362\362\377\375\375\375\377\363\363\363\377\363\363\363\377\363\363"
- "\363\377\250\250\250\377\265\265\265\377mmm\377HwH\377\0\1\0\370\0\0"
- "\0U\0\0\0*\0\0\0\6\0\0\0\0\0\0\0\0\33.\33\377V\215V\377\\\230\\\377P"
- "\204P\377FtF\377\333\333\333\377\352\352\352\377\357\357\357\377\357"
- "\357\357\377\346\346\346\377\336\336\336\377\341\341\341\377\341\341"
- "\341\377\337\337\337\377\342\342\342\377zzz\377s\252s\377\24\40\24\367"
- "\0\0\0\234\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0\377"
- "\5\10\5\3548[8\363MxM\351Q\200Q\357O\203O\377R\210R\377\227\227\227\377"
- "\334\334\334\377\345\345\345\377\353\353\353\377\371\371\371\377\371"
- "\371\371\377\205\205\205\377\246\246\246\377\213\270\213\377\1\2\1\370"
- "\0\0\0U\0\0\0*\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e"
- "\0\0\0\276\0\0\0\346\0\0\0\360\0\0\0\3639]9\371AjA\371O\200O\367Q\203"
- "Q\366Q\206Q\377\245\310\245\377\340\340\340\377\352\352\352\377\213\270"
- "\213\377\25\"\25\373\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0\34\0\0\0""4\0\0\0C\0\0\0g\0"
- "\0\0\251\0\0\0\344\0\0\0\361\0\0\0\356/L/\365;a;\371HvH\372M}M\367Lz"
- "L\357\2\3\2\367\0\0\0U\0\0\0+\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12\0\0\0\15\0\0\0\20\0\0\0\33"
- "\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327\0\0\0\356\0\0\0\354\0\0\0"
- "\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"
- "\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0\77\0\0\0H\0\0\0H\0\0\0@\0"
- "\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\5\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_book_open)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_book_open[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_book_open[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3OOOD\0\0\0\377\4\5\6"
- "\377\0\0\0;\0\0\0\20\0\0\0\6\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\3NNNE\13\17\22\377\225\237\252\377\303\306"
- "\312\356\0\0\0\377\0\0\0&\0\0\0\22\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\13\17\22\377\202\220\236\377\361\361"
- "\361\377\325\327\330\377\12\15\20\377\0\0\0_\0\0\0\40\0\0\0\13\0\0\0"
- "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\21\27\34\377\206\223\240"
- "\377\357\360\360\377\336\336\336\377\325\325\325\377\233\237\244\324"
- "\0\0\0\377\0\0\0/\0\0\0\24\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"
- ".\16\23\27\377\205\222\237\377\357\360\360\377\333\333\333\377\312\312"
- "\312\377\310\310\310\377\310\311\312\377\14\17\23\377\0\0\0[\0\0\0\40"
- "\0\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\24\32\40\377y\210\225\370\361\361"
- "\361\377\325\325\325\377\312\312\312\377\322\322\322\377\303\303\303"
- "\377\315\315\315\377ty~\275\0\0\0\377\0\0\0-\0\0\0\24\0\0\0\6\0\0\0\2"
- "\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0-\27\37&\377\177\215\232\361\357\360\360\377\332\332\332\377\323\323"
- "\323\377\304\304\304\377\316\316\316\377\300\300\300\377\312\312\312"
- "\377\261\261\261\336\15\21\25\377\0\0\0Y\0\0\0#\0\0\0\22\0\0\0\14\0\0"
- "\0\12\0\0\0\12\0\0\0\12\0\0\0\11\0\0\0\7\0\0\0\4\0\0\0\1\0\0\0\0\0\0"
- "\0\377v\205\222\350\356\357\357\377\331\331\331\377\323\323\323\377\320"
- "\320\320\377\302\302\302\377\313\313\313\377\311\311\311\377\274\274"
- "\274\377\244\247\251\344hkl\351333\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\352\0\0\0\177\0\0\0=\0\0\0\20\0\0\0\6\0\0"
- "\0\1AO]\377\255\265\274\363\352\352\352\377\322\322\322\377\277\277\277"
- "\377\315\315\315\377\313\313\313\377\275\275\275\377\306\306\306\377"
- "\265\266\267\365\211\220\226\370\270\270\270\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377@AB\342\0\0\0\177\0\0\0%\0\0\0\20\0\0\0\4\0\0"
- "\0\377M`t\340\353\353\353\377\321\321\321\377\303\303\303\377\301\301"
- "\301\377\310\310\310\377\267\267\267\377\303\303\303\377\227\237\247"
- "\347\241\243\244\376\374\375\375\377\363\364\364\377\353\354\355\377"
- "\352\353\354\377\351\352\353\377\356\357\361\377\366\367\370\377\344"
- "\345\346\376\222\223\225\375\0\0\0\377\0\0\0""9\0\0\0\33\0\0\0\7\0\0"
- "\0=2AO\377\214\230\242\362\347\347\347\377\311\311\311\377\273\273\273"
- "\377\304\304\304\377\302\302\302\377\244\247\253\346\223\226\231\375"
- "\327\330\330\377\374\375\375\377\372\374\374\377\371\372\373\377\370"
- "\371\372\377\367\370\371\377\365\366\370\377\367\367\371\377\306\307"
- "\307\377O^j\375\0\0\0\360\0\0\0B\0\0\0\37\0\0\0\11\0\0\0\23\0\0\0\377"
- "L_r\340\350\350\350\377\306\306\306\377\276\276\276\377\270\270\270\377"
- "\265\265\266\361\227\236\244\356\250\250\250\377\375\376\376\377\365"
- "\366\366\377\347\351\351\377\353\354\355\377\352\353\354\377\360\361"
- "\362\377\370\371\372\377\340\342\343\377\217\226\235\376\25\34\"\377"
- "\0\0\0\201\0\0\0>\0\0\0\34\0\0\0\10\0\0\0\13\0\0\0A5DS\377\215\231\242"
- "\363\343\343\343\377\301\301\301\377\276\276\276\377\216\224\232\316"
- "\235\237\237\376\377\377\377\377\375\376\376\377\374\375\375\377\372"
- "\374\374\377\362\363\364\377\361\362\363\377\367\370\371\377\366\366"
- "\367\377\246\250\253\377s\177\212\376\4\5\6\377\0\0\0P\0\0\0""1\0\0\0"
- "\24\0\0\0\5\0\0\0\5\0\0\0\24\0\0\0\377K_q\340\345\345\345\377\301\301"
- "\301\377\236\237\240\326\227\231\233\375\331\331\331\377\377\377\377"
- "\377\347\350\350\377\356\357\357\377\364\365\365\377\371\372\373\377"
- "\370\371\372\377\373\373\373\377\330\330\332\377\223\233\243\377\17\24"
- "\30\377\0\0\0t\0\0\0B\0\0\0\"\0\0\0\14\0\0\0\3\0\0\0\2\0\0\0\13\0\0\0"
- "A9IW\377\202\217\227\360\333\333\333\370\212\216\222\347\264\264\264"
- "\377\377\377\377\377\377\377\377\377\375\376\376\377\365\366\366\377"
- "\354\356\356\377\346\347\350\377\372\372\373\377\365\365\367\377\256"
- "\262\266\377\\l|\377\0\0\0\377\0\0\0P\0\0\0""1\0\0\0\25\0\0\0\6\0\0\0"
- "\1\0\0\0\0\0\0\0\5\0\0\0\24\0\0\0\377J]p\336\273\273\273\321\253\253"
- "\253\377\377\377\377\377\370\370\370\377\361\361\361\377\357\360\360"
- "\377\374\375\375\377\372\373\373\377\371\372\373\377\373\374\374\377"
- "\336\341\343\377\235\246\256\377\12\15\20\377\0\0\0t\0\0\0A\0\0\0\"\0"
- "\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\13\0\0\0A$/:\377imq\346"
- "wxy\377\362\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\360\360\360\377\363\363\363\377\373\374\374\377\371\371\372\377\273"
- "\277\304\377Vgy\377\0\0\0\377\0\0\0P\0\0\0""1\0\0\0\25\0\0\0\6\0\0\0"
- "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\24\0\0\0\377J_t\3701>K\376\263"
- "\275\306\375\321\327\335\377\331\336\343\377\366\367\367\377\365\365"
- "\365\377\377\377\377\377\377\377\377\377\321\322\324\377\232\243\254"
- "\377\4\5\6\377\0\0\0t\0\0\0A\0\0\0!\0\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\13\0\0\0""7\0\0\0\256+4<\366)2;\377O_"
- "p\377^q\204\376\221\236\253\375\237\253\266\375\277\307\320\377\350\354"
- "\356\377\262\270\276\377q}\210\376\0\0\0\377\0\0\0P\0\0\0""1\0\0\0\25"
- "\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"
- "\0\22\0\0\0&\0\0\0:\0\0\0Y\0\0\0\200\0\0\0\301%-5\377Qar\377Vgy\375z"
- "\206\225\375v\205\224\374\0\0\0\377\0\0\0r\0\0\0\77\0\0\0!\0\0\0\13\0"
- "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0"
- "\6\0\0\0\20\0\0\0\34\0\0\0%\0\0\0-\0\0\0""8\0\0\0X\0\0\0\200\0\0\0\275"
- ",4=\377!'.\377\0\0\0p\0\0\0D\0\0\0*\0\0\0\23\0\0\0\5\0\0\0\1\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0"
- "\0\10\0\0\0\14\0\0\0\21\0\0\0\31\0\0\0\"\0\0\0,\0\0\0""7\0\0\0A\0\0\0"
- "C\0\0\0;\0\0\0)\0\0\0\26\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2"
- "\0\0\0\4\0\0\0\6\0\0\0\13\0\0\0\20\0\0\0\30\0\0\0\37\0\0\0\40\0\0\0\33"
- "\0\0\0\21\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\6\0\0\0\10\0\0\0\11\0\0\0\7\0\0\0\4"
- "\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_book_red)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_book_red[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_book_red[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0"
- "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\37\21\16\377\310"
- "\225\213\377\272ym\377\264n`\377\260fW\377\252^O\377\240YK\377\226SF"
- "\377\216OC\377\216OC\377\216OC\377\216OC\377\216OC\377\225RF\377xC8\377"
- "!\22\17\376\0\0\0.\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\273\265pb\377\303\214\201\377\266re\377\234WI\377\221PD\377\206"
- "J>\377zD9\377o>4\377i;1\377i;1\377o>4\377o>4\377vA7\377o>4\377X0)\377"
- "'\26\22\372\0\0\0N\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22"
- "\21\11\10\377\311\227\215\377\274}q\377\241ZK\377\230TG\377\214MA\377"
- "\201G<\377vA7\377k;2\377i;1\377i;1\377i;1\377i;1\377tA6\377\\3+\377;"
- "!\33\377\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\255\217OC\377\311\227\215\377\265qc\377\235WI\377\221PD\377\210K\77"
- "\377|E:\377p>4\377i;1\377i;1\377i;1\377i;1\377l<3\377tA6\377U/(\377O"
- ",%\375\0\0\0\377\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"
- "\0\377\311\227\215\377\275~r\377\244[L\377\231UH\377\215NB\377\202H<"
- "\377wB8\377l<3\377i;1\377i;1\377k;2\377i;1\377s@6\377\\3+\377,\30\24"
- "\377\201\201\201\377I(\"\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\232\217OC\377\304\215\202\377\265qc\377\237XJ\377\223RE\377\211"
- "L@\377~F;\377s@6\377i;1\377i;1\377i;1\377i;1\377k;2\377wB8\377U/(\377"
- "4\35\30\376KKK\377\220\220\220\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0"
- "\0\0\20\0\0\0\377\310\226\214\375\274}q\377\245\\M\377\232VH\377\217"
- "OC\377\203I=\377xC8\377m=3\377i;1\377i;1\377i;1\377i;1\377q\77""5\377"
- "_4,\377-\31\25\377VVV\366ggg\377333\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0"
- "\0\0\0\0\335\235WI\377\303\214\201\377\266re\377\240YK\377\225RF\377"
- "\212L@\377\177G;\377tA6\377i;1\377i;1\377i;1\377i;1\377i;1\377vA7\377"
- "Y1)\3778\37\32\377HHH\377\270wj\377\0\0\0\377\0\0\0c\0\0\0\21\0\0\0\0"
- "\0\0\0!\0\0\0\377\310\226\214\377\300\205y\377\254`P\377\234WI\377\221"
- "PD\377\206J>\377zD9\377o>4\377i;1\377i;1\377i;1\377i;1\377m=3\377f8/"
- "\377/\32\26\377ggg\377nnn\377_4,\377\0\0\0\373\0\0\0R\0\0\0\25\0\0\0"
- "\0\0\0\0\245\231UH\377\305\220\205\377\264n`\377\244[L\377\231UH\377"
- "\215NB\377\202H<\377wB8\377l<3\377i;1\377i;1\377i;1\377i;1\377wB8\377"
- "U/(\377;!\33\377XXX\377\267tg\377\21\11\10\372\0\0\0\234\0\0\0I\0\0\0"
- "\17\0\0\0\13\0\0\0\377\262th\337\302\210}\377\261hY\377\237XJ\377\223"
- "RE\377\211L@\377~F;\377s@6\377i;1\377i;1\377i;1\377i;1\377i;1\377g90"
- "\3772\33\27\377KKK\377ttt\377zE:\370\0\0\0\364\0\0\0U\0\0\0+\0\0\0\7"
- "\0\0\0\206\240YK\377\333\272\264\375\324\254\244\377\320\243\233\377"
- "\315\237\226\377\312\231\217\377\307\224\211\377\302\210}\377\266re\377"
- "\265pb\377\265pb\377\265pb\377\265pb\377\260fW\377\214MA\377I(\"\377"
- "^^^\377\271xk\377\21\11\10\372\0\0\0\233\0\0\0G\0\0\0\21\0\0\0\1\6\3"
- "\3\331\322\250\240\377T.'\377J)#\377J)#\377J)#\377J)#\377J)#\377J)#\377"
- "J)#\377J)#\377J)#\377J)#\377J)#\377J)#\377G'!\377ccc\377xxx\377\202H"
- "<\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\24\13\11\377\270wj\377"
- "Y1)\377___\373ttt\377\226\226\226\377\261\261\261\377\257\257\257\377"
- "\305\305\305\377\316\316\316\377\272\272\272\377\302\302\302\377\303"
- "\303\303\377\313\313\313\377\322\322\322\377\332\332\332\377\225\225"
- "\225\377\264m_\377\"\23\20\371\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0"
- "\0\0\21\11\10\377\247]N\377vA7\377~~~\377\344\344\344\377\344\344\344"
- "\377\341\341\341\377\337\337\337\377\337\337\337\377\362\362\362\377"
- "\375\375\375\377\363\363\363\377\363\363\363\377\363\363\363\377\250"
- "\250\250\377\265\265\265\377mmm\377\202H<\377\1\0\0\370\0\0\0U\0\0\0"
- "*\0\0\0\6\0\0\0\0\0\0\0\0""2\33\27\377\232VH\377\247]N\377\221PD\377"
- "\177G;\377\333\333\333\377\352\352\352\377\357\357\357\377\357\357\357"
- "\377\346\346\346\377\336\336\336\377\341\341\341\377\341\341\341\377"
- "\337\337\337\377\342\342\342\377zzz\377\267sf\377$\24\21\367\0\0\0\234"
- "\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0\377\11\5\4\354"
- "c80\363\203MB\351\214QE\357\217OC\377\225RF\377\227\227\227\377\334\334"
- "\334\377\345\345\345\377\353\353\353\377\371\371\371\377\371\371\371"
- "\377\205\205\205\377\246\246\246\377\303\213\200\377\2\1\1\370\0\0\0"
- "U\0\0\0*\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e\0\0\0"
- "\276\0\0\0\346\0\0\0\360\0\0\0\363f:1\371sA7\371\214OC\367\217QE\366"
- "\222QD\377\320\245\234\377\340\340\340\377\352\352\352\377\303\213\200"
- "\377%\25\21\373\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0\34\0\0\0""4\0\0\0C\0\0\0g\0\0\0\251"
- "\0\0\0\344\0\0\0\361\0\0\0\356S/(\365j;2\371\201I=\372\211MB\367\205"
- "LA\357\3\2\1\367\0\0\0U\0\0\0+\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12\0\0\0\15\0\0\0\20\0\0\0\33"
- "\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327\0\0\0\356\0\0\0\354\0\0\0"
- "\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"
- "\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0\77\0\0\0H\0\0\0H\0\0\0@\0"
- "\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\5\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_book_yellow)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_book_yellow[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_book_yellow[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0"
- "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32(\40\5\377\352\315"
- "i\377\344\300C\377\342\2733\377\341\267&\377\333\261\36\377\317\247\34"
- "\377\303\235\32\377\270\224\31\377\270\224\31\377\270\224\31\377\270"
- "\224\31\377\270\224\31\377\301\234\32\377\234~\25\377*\"\6\376\0\0\0"
- ".\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\273\343\274"
- "4\377\350\311]\377\343\2758\377\312\243\33\377\273\227\32\377\255\214"
- "\30\377\236\177\25\377\220t\23\377\211n\22\377\211n\22\377\220t\23\377"
- "\220t\23\377\230{\25\377\220t\23\377r\\\17\3771(\7\372\0\0\0N\0\0\0\20"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\26\22\3\377\352\316m\377\345"
- "\302H\377\321\250\34\377\304\236\33\377\264\222\31\377\246\206\27\377"
- "\230{\25\377\212p\23\377\211n\22\377\211n\22\377\211n\22\377\211n\22"
- "\377\227y\24\377w`\20\377M>\12\377\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\255\272\226\31\377\352\316m\377\343\2746\377"
- "\313\244\34\377\273\227\32\377\257\215\30\377\241\202\26\377\221u\24"
- "\377\211n\22\377\211n\22\377\211n\22\377\211n\22\377\214q\23\377\227"
- "y\24\377nY\17\377fR\16\375\0\0\0\377\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\21\0\0\0\377\352\316m\377\345\303J\377\324\253\35\377\306"
- "\240\33\377\266\223\31\377\250\210\27\377\232|\25\377\214q\23\377\211"
- "n\22\377\211n\22\377\212p\23\377\211n\22\377\225x\24\377w`\20\3779.\10"
- "\377\201\201\201\377^L\15\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\232\272\226\31\377\350\312_\377\343\2746\377\315\245\34\377\277"
- "\232\32\377\261\217\30\377\243\203\26\377\225x\24\377\211n\22\377\211"
- "n\22\377\211n\22\377\211n\22\377\212p\23\377\232|\25\377nY\17\377C6\11"
- "\376KKK\377\220\220\220\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\20"
- "\0\0\0\377\351\315k\375\345\302H\377\326\255\35\377\310\241\33\377\272"
- "\226\31\377\252\211\27\377\234~\25\377\216r\23\377\211n\22\377\211n\22"
- "\377\211n\22\377\211n\22\377\223w\24\377zc\21\377;0\10\377VVV\366ggg"
- "\377333\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\335\313\244\34\377"
- "\350\311]\377\343\2758\377\317\247\34\377\301\234\32\377\263\220\30\377"
- "\245\205\26\377\227y\24\377\211n\22\377\211n\22\377\211n\22\377\211n"
- "\22\377\211n\22\377\230{\25\377s]\20\377I;\12\377HHH\377\344\277\77\377"
- "\0\0\0\377\0\0\0c\0\0\0\21\0\0\0\0\0\0\0!\0\0\0\377\352\316k\377\347"
- "\306R\377\337\264\36\377\312\243\33\377\273\227\32\377\255\214\30\377"
- "\236\177\25\377\220t\23\377\211n\22\377\211n\22\377\211n\22\377\211n"
- "\22\377\216r\23\377\203j\22\377=1\10\377ggg\377nnn\377zc\21\377\0\0\0"
- "\373\0\0\0R\0\0\0\25\0\0\0\0\0\0\0\245\306\240\33\377\351\313b\377\342"
- "\2733\377\324\253\35\377\306\240\33\377\266\223\31\377\250\210\27\377"
- "\232|\25\377\214q\23\377\211n\22\377\211n\22\377\211n\22\377\211n\22"
- "\377\232|\25\377nY\17\377M>\12\377XXX\377\344\276;\377\25\21\3\372\0"
- "\0\0\234\0\0\0I\0\0\0\17\0\0\0\13\0\0\0\377\326\266D\337\347\307X\377"
- "\341\270*\377\315\245\34\377\277\232\32\377\261\217\30\377\243\203\26"
- "\377\225x\24\377\211n\22\377\211n\22\377\211n\22\377\211n\22\377\211"
- "n\22\377\205k\22\377A4\10\377KKK\377ttt\377\234\177\30\370\0\0\0\364"
- "\0\0\0U\0\0\0+\0\0\0\7\0\0\0\206\317\247\34\377\360\336\236\375\356\330"
- "\213\377\355\324~\377\354\322w\377\353\317n\377\352\314g\377\347\307"
- "X\377\343\2758\377\343\2744\377\343\2744\377\343\2744\377\343\2744\377"
- "\341\267&\377\264\222\31\377^L\15\377^^^\377\344\300A\377\25\21\3\372"
- "\0\0\0\233\0\0\0G\0\0\0\21\0\0\0\1\7\6\1\331\356\326\205\377lW\17\377"
- "`N\15\377`N\15\377`N\15\377`N\15\377`N\15\377`N\15\377`N\15\377`N\15"
- "\377`N\15\377`N\15\377`N\15\377`N\15\377]K\14\377ccc\377xxx\377\250\210"
- "\27\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\32\25\3\377\344\277\77"
- "\377s]\20\377___\373ttt\377\226\226\226\377\261\261\261\377\257\257\257"
- "\377\305\305\305\377\316\316\316\377\272\272\272\377\302\302\302\377"
- "\303\303\303\377\313\313\313\377\322\322\322\377\332\332\332\377\225"
- "\225\225\377\342\2721\377,#\6\371\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0"
- "\0\0\0\26\22\3\377\330\256\35\377\230{\25\377~~~\377\344\344\344\377"
- "\344\344\344\377\341\341\341\377\337\337\337\377\337\337\337\377\362"
- "\362\362\377\375\375\375\377\363\363\363\377\363\363\363\377\363\363"
- "\363\377\250\250\250\377\265\265\265\377mmm\377\250\210\27\377\1\1\0"
- "\370\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\0\0\0\0A4\10\377\310\241\33\377\330"
- "\256\35\377\273\227\32\377\245\205\26\377\333\333\333\377\352\352\352"
- "\377\357\357\357\377\357\357\357\377\346\346\346\377\336\336\336\377"
- "\341\341\341\377\341\341\341\377\337\337\337\377\342\342\342\377zzz\377"
- "\343\275:\377-%\7\367\0\0\0\234\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0"
- "\0\0\0\0""9\0\0\0\377\13\10\1\354~e\25\363\243\206!\351\260\220\40\357"
- "\272\226\31\377\301\234\32\377\227\227\227\377\334\334\334\377\345\345"
- "\345\377\353\353\353\377\371\371\371\377\371\371\371\377\205\205\205"
- "\377\246\246\246\377\350\310[\377\2\2\0\370\0\0\0U\0\0\0*\0\0\0\7\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e\0\0\0\276\0\0\0\346\0\0\0"
- "\360\0\0\0\363\202i\24\371\224w\26\371\262\220\35\367\266\224\36\366"
- "\275\231\32\377\355\325\200\377\340\340\340\377\352\352\352\377\350\310"
- "[\3770&\6\373\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0\34\0\0\0""4\0\0\0C\0\0\0g\0\0\0\251"
- "\0\0\0\344\0\0\0\361\0\0\0\356iU\21\365\207n\25\371\245\206\31\372\257"
- "\215\33\367\250\211\36\357\4\3\0\367\0\0\0U\0\0\0+\0\0\0\7\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12\0\0\0"
- "\15\0\0\0\20\0\0\0\33\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327\0\0"
- "\0\356\0\0\0\354\0\0\0\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\3\0\0\0\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0\77"
- "\0\0\0H\0\0\0H\0\0\0@\0\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0\0"
- "\0\16\0\0\0\14\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_line_in)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_line_in[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_line_in[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0-..\257###\377\10\10\10x\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\25\25\25\377\345\345\346\377###\377\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0fff\315\356\356\356\377MMM\217\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\2\2\2\337\277\277\277\377\3\3\3\325\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0i\0\0\0s\0\0\0_\0\0"
- "\0=\0\0\0!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21"
- "\21\22\377\354\354\355\377\22\22\22\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0\0\0\262\216\216\216\260\210\210\210"
- "\233TTT\210$$$v\0\0\0b\0\0\0F\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0$$%\243\273\273\273\377\0\0\0O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\212lll\326\316\316\316\311\245\245\245\274\0"
- "\0\0\242\0\0\0\214\0\0\0v\0\0\0U\0\0\0;\0\0\0+\0\0\0\"\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\377\352\352\352\377\0\0\0\377\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\230mmm\347\316\316\316\345\10\10\10"
- "\313\10\10\10\231\0\0\0G\0\0\0=\0\0\0""1\0\0\0:\0\0\0""2\0\0\0#\0\0\0"
- "\37\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377RRR\377\332\332\334\377===\377\0"
- "\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\343\265\265\265\363KK"
- "K\351\0\0\0M\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\33"
- "\0\0\0\35\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\373\373\373\377\234\233"
- "\234\377\324\324\324\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\231"
- "GGG\361\244\244\244\365\0\0\0\242\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\377\221\221"
- "\221\377===\377===\377\36\36\36\377\77\77\77\377\0\0\0\377\0\0\0\0\0"
- "\0\0\0\0\0\0\331___\367###\362\0\0\0B\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\377\221"
- "\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377\0\0\0\0\0\0"
- "\0\0\0\0\0\342SSS\355\0\0\0\353\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
- "\221\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377\0\0\0\0"
- "\0\0\0\0\0\0\0\330SSS\353\0\0\0\355\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\377\221\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377\0\0"
- "\0\0\0\0\0\0\0\0\0\262'''\332\"\"\"\367\0\0\0<\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\377\221\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377"
- "\0\0\0\0\0\0\0\0\0\0\0D\0\0\0\315UUU\362\0\0\0\313\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\377\221\221\221\377===\377===\377\36\36\36\377EEE\377\0\0\0"
- "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\241LLL\322FFF\336\0\0\0\234\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\377AAA\377ddd\377%%%\377,,,\377<<<\377\0\0\0\377\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\35\0\0\0\236XXX\257FFF\273\0\0\0q\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\377\25\25\25\377\7\7\7\377(((\377\0\0\0\377\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0\205ZZZ\233\0\0\0\236\0\0\0b\0\0"
- "\0\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\377+++\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\0cXXX{\0\0\0{\0\0\0""3\0\0\0%\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\324"
- "+++\324\0\0\0\324\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0""7\0\0\0T\0\0\0_\0\0\0^\0\0\0#\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\252+++\252\0\0\0\252"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\13\0\0\0@\0\0\0F\0\0\0J\0\0\0""2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\177+++\177\0\0\0\177\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""1"
- "\0\0\0:\7\7\7@\0\0\0,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0U+++U\0\0\0U\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\27\0\0\0/\0\0\0""2\10\10\10""5\0"
- "\0\0+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0*+++*\0\0\0*\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\23\0\0\0""0\0\0\0-\14\14\14-\0\0\0+\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_mail)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_mail[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_mail[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2"
- "\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
- "\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0"
- "\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377SSS\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377"
- "\375\375\375\377\374\374\374\377\373\373\373\377\371\371\371\377\370"
- "\370\370\377\367\367\367\377\366\366\366\377\365\365\365\377\364\364"
- "\364\377\343\343\343\377SSS\377\0\0\0\377\0\0\0\31\0\0\0\10\0\0\0\1\0"
- "\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377OOO\377\377\377\377\377\365\365"
- "\365\377\364\364\364\377\363\363\363\377\362\362\362\377\362\362\362"
- "\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357\357\377"
- "\356\356\356\377\355\355\355\377\343\343\343\377OOO\377\256\256\256\377"
- "\0\0\0\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
- "\377\377\344\344\344\377CCC\377\375\375\375\377\363\363\363\377\362\362"
- "\362\377\362\362\362\377\361\361\361\377\360\360\360\377\357\357\357"
- "\377\356\356\356\377\356\356\356\377\355\355\355\377\343\343\343\377"
- "OOO\377\254\254\254\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0"
- "\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\344\344"
- "\344\377OOO\377\373\373\373\377\361\361\361\377\360\360\360\377\360\360"
- "\360\377\357\357\357\377\356\356\356\377\355\355\355\377\355\355\355"
- "\377\343\343\343\377CCC\377\240\240\240\377\324\324\324\377\310\310\310"
- "\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377"
- "\377\377\377\373\373\373\377\365\365\365\377\344\344\344\377CCC\377\370"
- "\370\370\377\360\360\360\377\357\357\357\377\356\356\356\377\355\355"
- "\355\377\354\354\354\377\343\343\343\377OOO\377\225\225\225\377\324\324"
- "\324\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0"
- "\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365"
- "\365\365\377\365\365\365\377\344\344\344\377>>>\377\365\365\365\377\356"
- "\356\356\377\355\355\355\377\354\354\354\377\343\343\343\377MMM\377\201"
- "\201\201\377\306\306\306\377\344\344\344\377\344\344\344\377\310\310"
- "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
- "\377\377\377\377\373\373\373\377\365\365\365\377\365\365\365\377\344"
- "\344\344\377jjj\377CCC\377\363\363\363\377\354\354\354\377\343\343\343"
- "\377OOO\377jjj\377\306\306\306\377\306\306\306\377\365\365\365\377\344"
- "\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0"
- "\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365\377"
- "\344\344\344\377ccc\377\377\377\377\377\271\271\271\377OOO\377\360\360"
- "\360\377OOO\377\225\225\225\377\306\306\306\377sss\377\306\306\306\377"
- "\365\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0"
- "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377"
- "\344\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344\344\377"
- "\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344\344\377"
- "\344\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310\310\377"
- "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
- "\377\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365"
- "\365\377\365\365\365\377\365\365\365\377\344\344\344\377\344\344\344"
- "\377\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377"
- "|||\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0"
- "\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377|||\377\377\377\377\377"
- "\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344"
- "\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344"
- "\344\377\344\344\344\377\344\344\344\377\344\344\344\377|||\377\310\310"
- "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
- "sss\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377"
- "\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274"
- "\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274"
- "\274\377\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0"
- "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\207\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\31"
- "\0\0\0(\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0"
- "-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0(\0\0\0\31\0\0\0\10"
- "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21"
- "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0"
- "\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\16\0\0\0\10\0"
- "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0"
- "\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0"
- "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_mail_compose)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_mail_compose[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_mail_compose[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\321\257"
- "a\377\361\343\254\377\373\251\17\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0V\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\265\265"
- "\265\377\240k\11\377\361\343\254\377\373\251\17\377\201`\0\377\0\0\0"
- "\377\340\340\340\377\301\301\301\377\0\0\0\377\0\0\0D\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\364\364\364\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\375\375\375\377\375\375\375\377\0\0\0\377\346\303p\377\361\323\207\377"
- "\325\217\14\377\0\0\0\377\262\262\262\377\303\303\303\377\373\373\373"
- "\377\250\250\250\377\0\0\0\377\0\0\0V\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
- "\377\377\377\377\366\366\366\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\375\375\375\377\375\375\375\377\375\375\375\377\263\263"
- "\263\377\240k\11\377\361\343\254\377\373\251\17\377\201`\0\377\0\0\0"
- "\377\372\372\372\377\255\255\255\377vvv\377]]]\377@@@\377\0\0\0\377\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\377"
- "\377\377\377\373\373\373\377\373\373\373\377\373\373\373\377\373\373"
- "\373\377\370\370\370\377\0\0\0\377\346\303p\377\361\320~\377\325\217"
- "\14\377\0\0\0\377\254\254\254\377\370\370\366\377\342\342\342\377\205"
- "\205\205\377KKI\377\26\26\26\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\377\377\377\377\377\364\364\364\377\375\375\375\377\375\375\375"
- "\377\373\373\373\377\373\373\373\377\373\373\372\377}}}\377\240k\11\377"
- "\361\343\254\377\373\251\17\377\201`\0\377\0\0\0\377\364\364\364\377"
- "\362\362\362\377\360\360\360\377\357\357\357\377\325\325\325\377\255"
- "\255\255\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377"
- "\377\362\362\362\377\371\371\371\377\366\366\366\377\366\366\366\377"
- "\366\366\363\377\363\363\363\377\0\0\0\377\346\303p\377\361\320~\377"
- "\325\217\14\377\0\0\0\377\207\207\206\377\345\345\345\377\342\342\342"
- "\377\337\337\337\377\353\353\353\377\342\342\342\377\301\301\301\377"
- "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\360\360"
- "\360\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\366"
- "\377\256\256\256\377{S\7\377\361\343\254\377\373\251\17\377\201`\0\377"
- "\0\0\0\377\355\355\355\377\353\353\353\377\353\353\351\377\351\351\347"
- "\377\351\351\347\377\340\340\336\377\277\277\277\377\0\0\0\377\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\357\357\357\377\363\363"
- "\363\377\360\360\360\377\360\360\355\377\355\355\355\377\0\0\0\377\346"
- "\303p\377\361\322\204\377\312\207\13\377\0\0\0\377\236\236\234\377\334"
- "\334\331\377\331\331\331\377\331\331\326\377\326\326\324\377\345\345"
- "\344\377\331\331\327\377\272\272\272\377\0\0\0\377\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\377\377\377\377\377\355\355\355\377\364\364\364\377\364"
- "\364\364\377\362\362\362\377\252\252\252\377\240k\11\377\361\343\254"
- "\377\373\251\17\377\201`\0\377\0\0\0\377\347\347\345\377\345\345\344"
- "\377\345\345\344\377\344\344\342\377\340\340\336\377\342\342\340\377"
- "\331\331\327\377\272\272\272\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\377\377\377\377\377\353\353\353\377\356\356\354\377\347\347\345"
- "\377\345\345\345\377\0\0\0\377\346\303p\377\361\322\204\377\312\207\13"
- "\377\0\0\0\377\227\227\226\377\324\324\321\377\342\342\340\377\340\340"
- "\336\377\336\336\334\377\336\336\333\377\336\336\334\377\331\331\327"
- "\377\275\275\274\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
- "\377\377\377\347\347\347\377\357\357\355\377\353\353\353\377\246\246"
- "\245\377\272|\12\377\373\251\17\377\373\251\17\377z[\0\377\0\0\0\377"
- "\342\342\340\377\340\340\336\377\336\336\334\377\336\336\333\377\334"
- "\334\331\377\333\333\331\377\333\333\331\377\325\325\323\377\274\274"
- "\274\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377"
- "\345\345\345\377\343\343\343\377\331\331\331\377\0\0\0\377\362\346\266"
- "\377{{{\377pK\5\377\0\0\0\377ggd\377\313\313\307\377\311\311\307\377"
- "\334\334\331\377\333\333\327\377\331\331\327\377\327\327\325\377\331"
- "\331\327\377\327\327\323\377\264\264\264\377\0\0\0\377\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\377\377\377\377\377\342\342\340\377\345\345\344\377"
- "\344\344\344\377\0\0\0\377\333\325\301\377~oW\377uX\0\377\0\0\0\377\334"
- "\334\331\377\333\333\331\377\333\333\327\377\331\331\325\377\327\327"
- "\323\377\325\325\323\377\325\325\321\377\327\327\323\377\320\320\316"
- "\377\272\272\270\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
- "\377\377\377\336\336\334\377\335\335\333\377\321\321\317\377\16\16\16"
- "\377SSS\377\0\0\0\377\0\0\0\377\215\215\213\377\304\304\301\377\304\304"
- "\277\377\301\301\274\377\325\325\321\377\325\325\321\377\323\323\320"
- "\377\321\321\320\377\323\323\320\377\320\320\316\377\272\272\270\377"
- "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\334\334"
- "\333\377\340\340\334\377\335\335\333\377\0\0\0\377\0\0\0\377\211\211"
- "\207\377\311\311\306\377\315\315\312\377\320\320\315\377\316\316\313"
- "\377\320\320\315\377\320\320\315\377\320\320\315\377\320\320\315\377"
- "\317\317\314\377\320\320\315\377\320\320\314\377\266\266\266\377\0\0"
- "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\333\333\331"
- "\377\324\324\320\377\303\303\300\377[[[\377\221\221\215\377\221\221\217"
- "\377\237\237\235\377\257\257\254\377\271\271\266\377\276\276\273\377"
- "\303\303\300\377\305\305\302\377\310\310\305\377\312\312\307\377\313"
- "\313\310\377\314\314\311\377\314\314\310\377\262\262\262\377\0\0\0\377"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\322\322\320\377\322"
- "\322\317\377\317\317\314\377\277\277\275\377\237\237\234\377\210\210"
- "\206\377\207\207\205\377\214\214\212\377\225\225\223\377\234\234\232"
- "\377\250\250\245\377\261\261\256\377\265\265\263\377\273\273\270\377"
- "\276\276\273\377\277\277\274\377\302\302\276\377\262\262\262\377\0\0"
- "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\321\321\316"
- "\377\320\320\314\377\314\314\311\377\317\317\314\377\303\303\300\377"
- "\256\256\253\377\235\235\232\377\227\227\224\377\227\227\224\377\224"
- "\224\221\377\232\232\227\377\237\237\234\377\243\243\240\377\250\250"
- "\245\377\252\252\247\377\260\260\254\377\270\270\265\377\260\260\256"
- "\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\322"
- "\322\317\377\321\321\316\377\321\321\316\377\321\321\316\377\317\317"
- "\315\377\313\313\310\377\276\276\274\377\264\264\260\377\254\254\250"
- "\377\244\244\242\377\240\240\234\377\240\240\234\377\244\244\240\377"
- "\244\244\242\377\250\250\246\377\253\253\247\377\262\262\256\377\244"
- "\244\244\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377"
- "\377\321\321\320\377\321\321\316\377\320\320\316\377\316\316\314\377"
- "\316\316\312\377\316\316\312\377\314\314\310\377\306\306\302\377\274"
- "\274\271\377\263\263\257\377\264\264\260\377\253\253\251\377\246\246"
- "\243\377\240\240\235\377\246\246\243\377\252\252\247\377\254\254\251"
- "\377\241\241\241\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377"
- "\377\377\377\261\261\257\377\264\264\263\377\264\264\261\377\264\264"
- "\261\377\264\264\261\377\263\263\261\377\263\263\261\377\262\262\256"
- "\377\256\256\252\377\247\247\244\377\242\242\240\377\245\245\241\377"
- "\245\245\241\377\231\231\227\377\222\222\220\377\224\224\220\377\235"
- "\235\233\377\205\205\203\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0r\0\0"
- "\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_mail_forward)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_mail_forward[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_mail_forward[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"
- "\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
- "\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2"
- "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0m\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377"
- "SSS\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\376\376\376\377\375\375\375\377\374\374\374\377\373\373\373\377\371"
- "\371\371\377\370\370\370\377\367\367\367\377\366\366\366\377\365\365"
- "\365\377\364\364\364\377\343\343\343\377SSS\377\0\0\0\377\0\0\0\31\0"
- "\0\0\10\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377OOO\377\377"
- "\377\377\377\365\365\365\377\364\364\364\377\363\363\363\377\362\362"
- "\362\377\362\362\362\377\361\361\361\377\360\360\360\377\360\360\360"
- "\377\357\357\357\377\356\356\356\377\355\355\355\377\343\343\343\377"
- "OOO\377\256\256\256\377\0\0\0\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0"
- "\0\2\0\0\0\377\377\377\377\377\344\344\344\377CCC\377\375\375\375\377"
- "\363\363\363\377\362\362\362\377\362\362\362\377\361\361\361\377\360"
- "\360\360\377\357\357\357\377\356\356\356\377\356\356\356\377\355\355"
- "\355\377\343\343\343\377OOO\377\254\254\254\377\310\310\310\377\0\0\0"
- "\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377"
- "\365\365\365\377\344\344\344\377OOO\377\373\373\373\377\361\361\361\377"
- "\360\360\360\377\360\360\360\377\357\357\357\377\356\356\356\377\355"
- "\355\355\377\355\355\355\377\343\343\343\377CCC\377\240\240\240\377\324"
- "\324\324\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0"
- "\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\365\365\365\377"
- "\344\344\344\377CCC\377\370\370\370\377\360\360\360\377\357\357\357\377"
- "\356\356\356\377\355\355\355\377\354\354\354\377\343\343\343\377OOO\377"
- "\225\225\225\377\324\324\324\377\344\344\344\377\310\310\310\377\0\0"
- "\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377"
- "\377\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377"
- ">>>\377\365\365\365\377\356\356\356\377\355\355\355\377\354\354\354\377"
- "\343\343\343\377MMM\377\201\201\201\377\306\306\306\377\344\344\344\377"
- "\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0"
- "\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\365\365\365"
- "\377\365\365\365\377\344\344\344\377jjj\377CCC\377\363\363\363\377\354"
- "\354\354\377\343\343\343\377OOO\377jjj\377\306\306\306\377\306\306\306"
- "\377\365\365\365\377\0\0\0\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0"
- "\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377"
- "\365\365\365\377\344\344\344\377ccc\377\377\377\377\377\271\271\271\377"
- "OOO\377\360\360\360\377OOO\377\225\225\225\377\306\306\306\377sss\377"
- "\306\306\306\377\365\365\365\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
- "-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373"
- "\373\377\344\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344"
- "\344\377\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344"
- "\344\377\344\344\344\377|||\377\344\344\344\377\0\0\0\377[\210\262\377"
- "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
- "\377\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365"
- "\365\377\365\365\365\377\365\365\365\377\344\344\344\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\236\270\321"
- "\377P\200\255\377\0\0\0\377\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
- "\377\377\377\377|||\377\377\377\377\377\344\344\344\377\344\344\344\377"
- "\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\0\0"
- "\0\377\265\311\334\377\257\305\332\377\262\307\333\377\266\312\335\377"
- "\266\312\335\377\266\312\335\377\244\275\325\377\234\267\321\377P\200"
- "\255\377\10\15\21\377\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377sss\377\274\274"
- "\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274"
- "\377\274\274\274\377\274\274\274\377\274\274\274\377\0\0\0\377\233\266"
- "\320\377\240\272\323\377\234\267\321\377\234\267\321\377\233\266\320"
- "\377\232\265\317\377\240\272\323\377\234\267\321\377\227\263\316\377"
- "_\213\264\377\0\0\0\377\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\221\260\314\377\236\270\321\377\232\265\317\377\232\265\317"
- "\377\233\266\320\377\234\267\321\377\234\267\321\377\234\267\321\377"
- "\240\272\323\377\225\262\316\377Ly\243\377\0\0\0\377\0\0\0\1\0\0\0\10"
- "\0\0\0\31\0\0\0(\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0"
- "\0\377It\234\377\77e\210\377\77e\210\377\77e\210\377\77e\210\377\77e"
- "\210\377\77e\210\377\77e\210\377\77e\210\377*C[\377\0\0\0\377\0\0\0\0"
- "\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21"
- "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\377Eo\226\3777Yx\3777Yx\3777Yx\377"
- "7Yx\3777Yx\377\77e\210\377\77e\210\377*C[\377\0\0\0\377\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0"
- "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
- "\377\0\0\0\377\0\0\0\377\77e\210\377*C[\377\0\0\0\377\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\377*C[\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_mail_receive)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_mail_receive[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_mail_receive[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\377\311\333\307\377\311\332\307\377\311\332\307\377\201\232y\377"
- "XuM\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\377\262\311\260\377\251\304\247\377\255\310\253"
- "\377[yP\377MgD\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\273\320\271\377\256\307\254\377"
- "\256\307\254\377[yP\377MgD\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\324\0\0\0\377\0\0\0\377\0\0\0\377\271\316\267"
- "\377\256\307\254\377\252\307\250\377[yP\377MgD\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\315\336\313"
- "\377\261\311\260\377\265\316\265\377\260\311\260\377\255\306\253\377"
- "[yP\377[yP\377[yP\377MhD\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0"
- "\0\0\2\0\0\0\2\0\0\0\377\315\336\313\377\264\313\262\377\263\312\261"
- "\377\255\306\253\377[yP\377[yP\377MhD\377\0\0\0\377\0\0\0\2\0\0\0\2\0"
- "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "f\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\315\336"
- "\313\377\252\307\250\377\260\307\256\377[yP\377MhD\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\10\0\0\0"
- "\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377SSS\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\376\376\376\377\0\0\0\377\315\336"
- "\313\377\255\310\253\377TqJ\377\0\0\0\377\367\367\367\377\366\366\366"
- "\377\365\365\365\377\364\364\364\377\343\343\343\377SSS\377\0\0\0\377"
- "\0\0\0\31\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377"
- "OOO\377\377\377\377\377\365\365\365\377\364\364\364\377\363\363\363\377"
- "\362\362\362\377\0\0\0\377\317\337\314\377\0\0\0\377\360\360\360\377"
- "\357\357\357\377\356\356\356\377\355\355\355\377\343\343\343\377OOO\377"
- "\256\256\256\377\0\0\0\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\2\0"
- "\0\0\377\377\377\377\377\344\344\344\377CCC\377\375\375\375\377\363\363"
- "\363\377\362\362\362\377\362\362\362\377\361\361\361\377---\377\357\357"
- "\357\377\356\356\356\377\356\356\356\377\355\355\355\377\343\343\343"
- "\377OOO\377\254\254\254\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
- "\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\344"
- "\344\344\377OOO\377\373\373\373\377\361\361\361\377\360\360\360\377\360"
- "\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377\355\355"
- "\355\377\343\343\343\377CCC\377\240\240\240\377\324\324\324\377\310\310"
- "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
- "\377\377\377\377\373\373\373\377\365\365\365\377\344\344\344\377CCC\377"
- "\370\370\370\377\360\360\360\377\357\357\357\377\356\356\356\377\355"
- "\355\355\377\354\354\354\377\343\343\343\377OOO\377\225\225\225\377\324"
- "\324\324\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
- "\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365"
- "\365\365\377\365\365\365\377\344\344\344\377>>>\377\365\365\365\377\356"
- "\356\356\377\355\355\355\377\354\354\354\377\343\343\343\377MMM\377\201"
- "\201\201\377\306\306\306\377\344\344\344\377\344\344\344\377\310\310"
- "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
- "\377\377\377\377\373\373\373\377\365\365\365\377\365\365\365\377\344"
- "\344\344\377jjj\377CCC\377\363\363\363\377\354\354\354\377\343\343\343"
- "\377OOO\377jjj\377\306\306\306\377\306\306\306\377\365\365\365\377\344"
- "\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0"
- "\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365\377"
- "\344\344\344\377ccc\377\377\377\377\377\271\271\271\377OOO\377\360\360"
- "\360\377OOO\377\225\225\225\377\306\306\306\377sss\377\306\306\306\377"
- "\365\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0"
- "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377"
- "\344\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344\344\377"
- "\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344\344\377"
- "\344\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310\310\377"
- "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
- "\377\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365"
- "\365\377\365\365\365\377\365\365\365\377\344\344\344\377\344\344\344"
- "\377\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377"
- "|||\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0"
- "\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377|||\377\377\377\377\377"
- "\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344"
- "\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344"
- "\344\377\344\344\344\377\344\344\344\377\344\344\344\377|||\377\310\310"
- "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377"
- "sss\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377"
- "\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274"
- "\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274"
- "\274\377\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0"
- "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\207\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\31"
- "\0\0\0(\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0"
- "-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0(\0\0\0\31\0\0\0\10"
- "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21"
- "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0"
- "\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\16\0\0\0\10\0"
- "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0"
- "\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0"
- "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0"
- "\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_mail_reply)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_mail_reply[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_mail_reply[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
- "\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2"
- "\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0"
- "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0"
- "\0\0\0\1\0\0\0\377SSS\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\376\376\376\377\375\375\375\377\374\374\374\377"
- "\373\373\373\377\371\371\371\377\370\370\370\377\367\367\367\377\366"
- "\366\366\377\365\365\365\377\364\364\364\377\343\343\343\377SSS\377\0"
- "\0\0\377\0\0\0\31\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\356\356"
- "\356\377OOO\377\377\377\377\377\365\365\365\377\364\364\364\377\363\363"
- "\363\377\362\362\362\377\362\362\362\377\361\361\361\377\360\360\360"
- "\377\360\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377"
- "\343\343\343\377OOO\377\256\256\256\377\0\0\0\377\0\0\0(\0\0\0\17\0\0"
- "\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\344\344\344\377CCC\377"
- "\375\375\375\377\363\363\363\377\362\362\362\377\362\362\362\377\361"
- "\361\361\377\360\360\360\377\357\357\357\377\356\356\356\377\356\356"
- "\356\377\355\355\355\377\343\343\343\377OOO\377\254\254\254\377\310\310"
- "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377"
- "\377\377\377\377\365\365\365\377\344\344\344\377OOO\377\373\373\373\377"
- "\361\361\361\377\360\360\360\377\360\360\360\377\357\357\357\377\356"
- "\356\356\377\355\355\355\377\355\355\355\377\343\343\343\377CCC\377\240"
- "\240\240\377\324\324\324\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
- "\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\365"
- "\365\365\377\344\344\344\377CCC\377\370\370\370\377\360\360\360\377\357"
- "\357\357\377\356\356\356\377\355\355\355\377\354\354\354\377\343\343"
- "\343\377OOO\377\225\225\225\377\324\324\324\377\344\344\344\377\310\310"
- "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377"
- "\377\377\377\377\365\365\365\377\365\365\365\377\365\365\365\377\344"
- "\344\344\377>>>\377\365\365\365\377\356\356\356\377\355\355\355\377\354"
- "\354\354\377\343\343\343\377MMM\377\201\201\201\377\306\306\306\377\344"
- "\344\344\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
- "\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377=\32"
- "\23\377\365\365\365\377\344\344\344\377jjj\377CCC\377\363\363\363\377"
- "\354\354\354\377\343\343\343\377OOO\377jjj\377\306\306\306\377\306\306"
- "\306\377\365\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0"
- "\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\0\0"
- "\0\377\0\0\0\377\344\344\344\377ccc\377\377\377\377\377\271\271\271\377"
- "OOO\377\360\360\360\377OOO\377\225\225\225\377\306\306\306\377sss\377"
- "\306\306\306\377\365\365\365\377\344\344\344\377\310\310\310\377\0\0"
- "\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\0\0\0\377\352"
- "\300\272\377\0\0\0\377ccc\377\377\377\377\377\365\365\365\377\344\344"
- "\344\377\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344"
- "\344\377\344\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310"
- "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377"
- "\352\300\272\377\337\236\225\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
- "\377\0\0\0\377\0\0\0\377\0\0\0\377\344\344\344\377\365\365\365\377\365"
- "\365\365\377\365\365\365\377\344\344\344\377|||\377\344\344\344\377\310"
- "\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\377\352"
- "\300\272\377\340\241\230\377\341\245\235\377\342\247\236\377\343\253"
- "\243\377\342\247\236\377\343\252\242\377\337\236\225\377\314bS\377\0"
- "\0\0\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344"
- "\377\344\344\344\377\344\344\344\377|||\377\310\310\310\377\0\0\0\377"
- "\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\377\352\300\272\377\335\227\215\377\337"
- "\237\227\377\337\236\225\377\336\232\220\377\335\226\214\377\335\226"
- "\214\377\336\232\220\377\335\224\212\377\261C4\377\0\0\0\377\274\274"
- "\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274"
- "\377\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0\0\21"
- "C\31\23\377\352\302\274\377\336\232\220\377\337\234\222\377\335\231\217"
- "\377\335\231\217\377\335\227\215\377\336\232\220\377\336\232\220\377"
- "\336\232\220\377\336\232\220\377\265E5\377\0\0\0\377\0\0\0\377\0\0\0"
- "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
- "\0\207\0\0\0(\0\0\0\17\0\0\0\0\0\0\0\377e&\35\377\230:,\377\230:,\377"
- "\230:,\377\230:,\377\230:,\377\230:,\377\230:,\377\230:,\377|/$\377\0"
- "\0\0\377\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0"
- "\0(\0\0\0\31\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\377e&\35\377\230:,\377\230"
- ":,\377c%\35\377c%\35\377c%\35\377c%\35\377c%\35\377l)\37\377\0\0\0\377"
- "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0"
- "\21\0\0\0\16\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377e&\35"
- "\377\230:,\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
- "\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\377e&\35\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_mail_send)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_mail_send[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_mail_send[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0O\77\12\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
- "\364\346\265\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\364\345"
- "\263\377\355\326\204\377u_\20\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\364\345"
- "\263\377\355\325\200\377\356\326\205\377\257\215\30\377u_\20\377\0\0"
- "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\377\364\345\263\377\357\331\214\377\356\330\213\377\355\325\202"
- "\377\257\215\30\377\257\215\30\377u_\20\377\0\0\0\377\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\377\364\345\263\377\356\330\211\377"
- "\357\332\222\377\356\330\211\377\355\325\202\377\257\215\30\377\257\215"
- "\30\377\257\215\30\377u_\20\377\0\0\0\377\0\0\0\2\0\0\0\2\0\0\0\2\0\0"
- "\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\360\333\223\377\355\326\204"
- "\377\355\325\200\377\257\215\30\377s]\20\377\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\10\0\0\0\2\0\0\0\0"
- "\0\0\0\0\0\0\0\1\0\0\0\377SSS\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\0\0\0\377\360\334\227\377\355\326\204\377"
- "\355\326\204\377\257\215\30\377s]\20\377\0\0\0\377\366\366\366\377\365"
- "\365\365\377\364\364\364\377\343\343\343\377SSS\377\0\0\0\377\0\0\0\31"
- "\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377OOO\377\377"
- "\377\377\377\365\365\365\377\364\364\364\377\0\0\0\377\356\330\211\377"
- "\355\323|\377\355\326\204\377\257\215\30\377s]\20\377\0\0\0\377\356\356"
- "\356\377\355\355\355\377\343\343\343\377OOO\377\256\256\256\377\0\0\0"
- "\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377"
- "\344\344\344\377CCC\377\375\375\375\377\363\363\363\377\0\0\0\377\344"
- "\277=\377\313\244\34\377\321\250\34\377\220t\23\377|d\21\377\0\0\0\377"
- "\355\355\355\377\343\343\343\377OOO\377\254\254\254\377\310\310\310\377"
- "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
- "\377\377\365\365\365\377\344\344\344\377OOO\377\373\373\373\377\0\0\0"
- "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\343"
- "\343\343\377CCC\377\240\240\240\377\324\324\324\377\310\310\310\377\0"
- "\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377"
- "\377\373\373\373\377\365\365\365\377\344\344\344\377CCC\377\370\370\370"
- "\377\360\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377"
- "\354\354\354\377\343\343\343\377OOO\377\225\225\225\377\324\324\324\377"
- "\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0"
- "\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365"
- "\377\365\365\365\377\344\344\344\377>>>\377\365\365\365\377\356\356\356"
- "\377\355\355\355\377\354\354\354\377\343\343\343\377MMM\377\201\201\201"
- "\377\306\306\306\377\344\344\344\377\344\344\344\377\310\310\310\377"
- "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377"
- "\377\377\373\373\373\377\365\365\365\377\365\365\365\377\344\344\344"
- "\377jjj\377CCC\377\363\363\363\377\354\354\354\377\343\343\343\377OO"
- "O\377jjj\377\306\306\306\377\306\306\306\377\365\365\365\377\344\344"
- "\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0"
- "\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365\377\344"
- "\344\344\377ccc\377\377\377\377\377\271\271\271\377OOO\377\360\360\360"
- "\377OOO\377\225\225\225\377\306\306\306\377sss\377\306\306\306\377\365"
- "\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21"
- "\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\344"
- "\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344\344\377\324"
- "\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344\344\377\344"
- "\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310\310\377\0"
- "\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377"
- "\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365\365"
- "\377\365\365\365\377\365\365\365\377\344\344\344\377\344\344\344\377"
- "\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377|||\377"
- "\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0"
- "\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377|||\377\377\377\377\377\344\344"
- "\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344"
- "\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377"
- "\344\344\344\377\344\344\344\377\344\344\344\377|||\377\310\310\310\377"
- "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377sss\377\274"
- "\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274"
- "\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274"
- "\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377"
- "\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0\0\21\0\0"
- "\0\2\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\207"
- "\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\31\0\0\0(\0\0"
- "\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0"
- "\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0(\0\0\0\31\0\0\0\10\0\0\0\1\0"
- "\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21\0\0\0\21\0"
- "\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21"
- "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\16\0\0\0\10\0\0\0\2\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0"
- "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0"
- "\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_menu_about)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_menu_about[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_menu_about[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (1024) */
- "\0\0\4\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (64) */
- "\0\0\0@"
- /* width (16) */
- "\0\0\0\20"
- /* height (16) */
- "\0\0\0\20"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\"\10\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0LN\23l\0\0\0\377\25\26\6#\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\11\0\0\0\377\356\366>\377\0\0\0\377\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20\21\4\7dg\32"
- "x\0\0\0\377\0\0\0\377\352\361=\377\360\370\77\377\313\3225\370\0\0\0"
- "\377\0\0\0\377JL\23k\0\0\0\0\20\21\4\0dg\32\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\34\35\7\0\0\0\0\377\360\370\77\377\360\370\77\377\360\370\77\377\360"
- "\370\77\377\360\370\77\377\360\370\77\377\351\360=\377\0\0\0\377\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\37\10%\0\0\0"
- "\377\360\370\77\377\360\370\77\377\360\370\77\377\360\370\77\377\345"
- "\354<\377\0\0\0\377\5\5\1\7\0\0\0\0\0\0\0\0\37\37\10\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\350\360=\377\360\370\77\377\360"
- "\370\77\377\360\370\77\377\253\260-\372\0\0\0\377\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\360\370"
- "\77\377\354\363>\377\0\0\0\377\357\367\77\377\316\3266\377\0\0\0\377"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\377\264\272/\363\0\0\0\377\30\30\6\77\0\0\0\377\315\3245\375"
- "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\36\37\10g\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
- "\26\27\5F\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_menu_blank)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_menu_blank[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_menu_blank[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (1024) */
- "\0\0\4\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (64) */
- "\0\0\0@"
- /* width (16) */
- "\0\0\0\20"
- /* height (16) */
- "\0\0\0\20"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_scores)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_scores[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_scores[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\4\0\0\0\4\0\0"
- "\0\3\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\215\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
- "\0\227\0\0\0\22\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\2\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\341\341\341\377\0\0\0\377\0\0\0""2\0\0\0\22\0\0\0\2\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\377\377\377\377\377\353"
- "\353\353\377\0\0\0\377\355\355\355\377\322\322\322\377\0\0\0\377\0\0"
- "\0L\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"
- "\0\377\377\377\377\377\0\0\0\377\0\0\0\377\356\356\356\377\322\322\322"
- "\377\0\0\0\377\0\0\0T\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\3\0"
- "\0\0\4\0\0\0\10\0\0\0\377\377\377\377\377\355\355\355\377\0\0\0\377\357"
- "\357\357\377\323\323\323\377\0\0\0\377\0\0\0U\0\0\0\40\0\0\0\4\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\215\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377"
- "\377\356\356\356\377\0\0\0\377\360\360\360\377\324\324\324\377\0\0\0"
- "\377\0\0\0W\0\0\0$\0\0\0\10\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\325\325\325\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\205\0\0\0\20\0\0\0\5\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\377\377\377\377\377\0\0\0\377\0\0\0"
- "\377\0\0\0\377\355\355\355\377\356\356\356\377\357\357\357\377\361\361"
- "\361\377\362\362\362\377\363\363\363\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0"
- "1\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\377\377\377"
- "\377\377\353\353\353\377\354\354\354\377\0\0\0\377\356\356\356\377\357"
- "\357\357\377\360\360\360\377\361\361\361\377\363\363\363\377\364\364"
- "\364\377\365\365\365\377\0\0\0\377\0\0\0\377\0\0\0\377\333\333\333\377"
- "\0\0\0\377\0\0\0K\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0"
- "\0\0\377\377\377\377\377\0\0\0\377\0\0\0\377\0\0\0\377\357\357\357\377"
- "\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\365"
- "\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\0\0\0\377"
- "\334\334\334\377\0\0\0\377\0\0\0T\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\4\0\0\0\377\377\377\377\377\0\0\0\377\356\356\356\377\357"
- "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
- "\363\377\364\364\364\377\365\365\365\377\367\367\367\377\370\370\370"
- "\377\0\0\0\377\0\0\0\377\335\335\335\377\0\0\0\377\0\0\0U\0\0\0\40\0"
- "\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\377\377\377\377\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\361\361\361\377\362\362\362\377\363\363\363"
- "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
- "\371\371\371\377\372\372\372\377\0\0\0\377\336\336\336\377\0\0\0\377"
- "\0\0\0U\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\377\377"
- "\377\377\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362"
- "\362\377\363\363\363\377\364\364\364\377\365\365\365\377\366\366\366"
- "\377\367\367\367\377\370\370\370\377\0\0\0\377\0\0\0\377\0\0\0\377\337"
- "\337\337\377\0\0\0\377\0\0\0U\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\4\0\0\0\377\341\341\341\377\323\323\323\377\324\324\324\377"
- "\325\325\325\377\326\326\326\377\327\327\327\377\330\330\330\377\331"
- "\331\331\377\331\331\331\377\332\332\332\377\333\333\333\377\334\334"
- "\334\377\335\335\335\377\337\337\337\377\340\340\340\377\0\0\0\377\0"
- "\0\0T\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\254\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\273\0\0\0L\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\2\0\0\0\23\0\0\0""5\0\0\0M\0\0\0T\0\0\0U\0\0\0U\0\0\0U\0\0\0U"
- "\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0T\0\0\0L\0\0\0"
- "2\0\0\0\22\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\23\0"
- "\0\0\35\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40"
- "\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\37\0\0\0\34\0\0\0"
- "\22\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0"
- "\0\0\3\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0"
- "\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_mic)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_mic[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_mic[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0<\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0<\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<RRR\377\332"
- "\332\333\377\372\372\373\377\361\361\363\377\370\370\371\377\335\334"
- "\335\377\0\0\0\377\0\0\0E\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\377\332\331\332\377\363\362\365\377\326\325\334\377\350"
- "\350\353\377\267\265\275\377\324\322\327\377ifl\377\0\0\0\377\0\0\0\13"
- "\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\372\372\373\377"
- "\334\334\342\377\354\353\356\377\301\277\307\377\330\326\333\377\220"
- "\217\226\377\214\212\217\377\0\0\0\377\0\0\0\26\0\0\0\4\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\363\361\364\377\357\357\362\377\312"
- "\307\321\377\337\336\343\377\235\234\244\377\275\273\301\377CBF\377\0"
- "\0\0\377\0\0\0\31\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I\0\0\0]\0\0\0\1\0\0\0\377"
- "\372\372\372\377\324\322\331\377\350\346\353\377\261\260\272\377\311"
- "\307\316\377tqz\377qpv\377\0\0\0\377\0\0\0\31\0\0\0_\0\0\0J\0\0\0\1\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "]\0\0\0\377\0\0\0\377\0\0\0\377\361\360\363\377\355\354\360\377\303\301"
- "\312\377\330\326\335\377\214\211\225\377\250\246\257\377226\377\0\0\0"
- "\377\0\0\0\377\0\0\0\377\0\0\0b\0\0\0\7\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377\0\0\0\26\0\0\0\377"
- "\371\371\372\377\317\316\326\377\344\342\347\377\250\247\261\377\303"
- "\301\310\377ebl\377aae\377\0\0\0\377\0\0\0\34\0\0\0\377\0\0\0\27\0\0"
- "\0\12\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\377\0\0\0\25\0\0\0\377\360\356\361\377\353\352\356\377"
- "\276\273\306\377\325\324\332\377\204\200\214\377\236\235\246\377-,0\377"
- "\0\0\0\377\0\0\0\32\0\0\0\377\0\0\0\25\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24"
- "\0\0\0\377\370\370\371\377\312\307\321\377\337\336\342\377\234\232\244"
- "\377\270\266\276\377YW_\377][a\377\0\0\0\377\0\0\0\31\0\0\0\377\0\0\0"
- "\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0\0\0\377\354\352\355\377\343\342\346"
- "\377\250\247\260\377\307\305\314\377rqx\377\222\220\231\377(&*\377\0"
- "\0\0\377\0\0\0\31\0\0\0\377\0\0\0\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0"
- "\0\0\377\350\347\352\377\265\263\272\377\314\314\322\377\205\204\212"
- "\377\245\244\253\377JIO\377MLQ\377\0\0\0\377\0\0\0\31\0\0\0\377\0\0\0"
- "\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0\0\0C\0\0\0\377\206\204\210\37776"
- ":\377aac\377$#&\377DDI\377\0\0\0\377\0\0\0\232\0\0\0\30\0\0\0\377\0\0"
- "\0\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0\0\0\6\0\0\0D\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232\0\0\0\32\0\0\0\17\0\0\0\377"
- "\0\0\0\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0k\0\0\0\206\0\0\0\6\0\0\0\3\0\0\0\13\0\0\0"
- "\26\0\0\0{\0\0\0\32\0\0\0\31\0\0\0\27\0\0\0\17\0\0\0\200\0\0\0m\0\0\0"
- "\22\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\2\0\0\0o\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\13\0"
- "\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\13\0\0\0\22\0\0\0\24KKK\377"
- "aaa\377\0\0\0\377\0\0\0\30\0\0\0\25\0\0\0\24\0\0\0\22\0\0\0\13\0\0\0"
- "\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\4\0\0\0\5KKK\377\177\177"
- "\177\377\0\0\0\377\0\0\0m\0\0\0;\0\0\0\6\0\0\0\5\0\0\0\2\0\0\0\33\0\0"
- "\0]\0\0\0\34\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0KKK\377\177\177\177\377"
- "\0\0\0\377\0\0\0\32\0\0\0\12\0\0\0L\0\0\0\2\0\0\0\0\0\0\0I\0\0\0\4\0"
- "\0\0M\0\0\0\37\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""3\40\40\40\377hhh\377\0\0\0"
- "\377\0\0\0G\0\0\0\7\0\0\0\2\0\0\0k\0\0\0]\0\0\0\2\0\0\0\5\0\0\0\3\0\0"
- "\0l\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\\\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377gd[\377\0\0\0\377VRH\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0`\0\0\0"
- "\2\0\0\0o\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\33\33\33\377\257\255"
- "\251\377\205\202{\377wtl\377VRH\377VRH\377VRH\377VRH\377VRH\377VRH\377"
- "VRH\377VRH\377VRH\377LI@\377;:2\377\40\37\32\377\0\0\0\377\0\0\0\14\0"
- "\0\0\37\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\27\0\0\0\5\0\0\0K\0\0\0W\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\4\0\0\0\25\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0"
- "\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31"
- "\0\0\0\31\0\0\0\25\0\0\0\4\0\0\0\1\0\0\0\5"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_multiple_file)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_multiple_file[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_multiple_file[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (4096) */
- "\0\0\20\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (128) */
- "\0\0\0\200"
- /* width (32) */
- "\0\0\0\40"
- /* height (32) */
- "\0\0\0\40"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\33\0\0\0\14\0\0\0\2\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\340\340\340\377"
- "\301\301\301\377\0\0\0\377\0\0\0+\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\377\377\377\377\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0-\0"
- "\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\340\340\340\377\301\301\301\377\0\0\0\377\0\0\0"
- "-\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\375\375\375\377\373\373\373\377"
- "\372\372\371\377\303\303\303\377\373\373\373\377\250\250\250\377\0\0"
- "\0\377\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\4\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\33\0\0\0\14\0\0\0\2\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\340\340\340\377\301\301"
- "\301\377\0\0\0\377\0\0\0+\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\377"
- "\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\375\375\375\377\373\373\373\377\372"
- "\372\371\377\303\303\303\377\373\373\373\377\250\250\250\377\0\0\0\377"
- "\0\0\0-\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\321\321\321\377"
- "\252\252\252\377\323\323\323\377\377\377\377\377\323\323\323\377\377"
- "\377\377\377\252\252\252\377\252\252\252\377\375\375\375\377\320\320"
- "\320\377\372\372\372\377\371\371\370\377\367\367\366\377\255\255\255"
- "\377vvv\377]]]\377@@@\377\0\0\0\377\0\0\0+\0\0\0\14\0\0\0\0\0\0\0\377"
- "\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\375\375\375\377\374\374\374\377\0\0\0\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\376\376\376\377\374\374\374\377"
- "\373\373\372\377\371\371\371\377\367\367\367\377\366\366\365\377\364"
- "\364\364\377\342\342\342\377\205\205\205\377KKI\377\26\26\26\377\0\0"
- "\0\377\0\0\0N\0\0\0\33\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377"
- "\377\377\377\376\376\376\377\374\374\374\377\373\373\372\377\371\371"
- "\371\377\0\0\0\377\377\377\377\377\377\377\377\377\252\252\252\377\271"
- "\271\271\377\323\323\323\377\323\323\323\377\376\376\376\377\250\250"
- "\250\377\236\236\236\377\235\235\235\377\245\245\244\377\366\366\366"
- "\377\243\243\242\377\311\311\310\377\362\362\361\377\360\360\357\377"
- "\356\356\355\377\355\355\353\377\235\235\235\377\0\0\0\377\0\0\0]\0\0"
- "\0#\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\373\373"
- "\373\377\371\371\371\377\370\370\367\377\366\366\366\377\0\0\0\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\375\375\375\377\373\373\373\377\372\372\371\377\370\370\370"
- "\377\367\367\366\377\365\365\364\377\364\364\363\377\362\362\361\377"
- "\360\360\357\377\357\357\356\377\355\355\354\377\354\354\352\377\352"
- "\352\350\377\244\244\243\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377"
- "\377\377\377\377\0\0\0\377\377\377\377\377\370\370\370\377\367\367\366"
- "\377\365\365\364\377\364\364\363\377\0\0\0\377\377\377\377\377\377\377"
- "\377\377\252\252\252\377\321\321\321\377\374\374\374\377\316\316\316"
- "\377\371\371\370\377\244\244\244\377\243\243\243\377\232\232\231\377"
- "\257\257\256\377\361\361\360\377\237\237\236\377rrq\377\225\225\224\377"
- "\223\223\223\377\351\351\347\377\347\347\346\377\244\244\244\377\0\0"
- "\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377"
- "\377\377\377\365\365\365\377\364\364\363\377\362\362\361\377\361\361"
- "\360\377\0\0\0\377\377\377\377\377\376\376\376\377\374\374\374\377\373"
- "\373\372\377\371\371\371\377\367\367\367\377\366\366\365\377\364\364"
- "\364\377\363\363\362\377\361\361\360\377\360\360\356\377\356\356\355"
- "\377\354\354\353\377\353\353\351\377\351\351\350\377\350\350\346\377"
- "\346\346\344\377\345\345\343\377\242\242\242\377\0\0\0\377\0\0\0_\0\0"
- "\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\363\363"
- "\362\377\361\361\360\377\360\360\356\377\356\356\355\377\0\0\0\377\377"
- "\377\377\377\373\373\373\377\264\264\264\377\263\263\263\377\366\366"
- "\366\377\261\261\261\377\260\260\257\377\230\230\230\377\227\227\226"
- "\377\356\356\355\377oon\377nnn\377nnm\377mml\377llk\377kkj\377\343\343"
- "\341\377\342\342\340\377\242\242\242\377\0\0\0\377\0\0\0_\0\0\0$\0\0"
- "\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\360\360\357"
- "\377\356\356\355\377\355\355\353\377\353\353\352\377\0\0\0\377\377\377"
- "\377\377\370\370\370\377\367\367\366\377\365\365\364\377\364\364\363"
- "\377\362\362\361\377\360\360\357\377\357\357\356\377\355\355\354\377"
- "\354\354\352\377nnm\377\207\226\245\377\206\226\244\377\205\225\243\377"
- "\205\224\243\377jji\377\341\341\336\377\337\337\335\377\243\243\242\377"
- "\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377"
- "\377\377\377\377\355\355\354\377\354\354\352\377\352\352\350\377\351"
- "\351\347\377\0\0\0\377\377\377\377\377\365\365\365\377\261\261\260\377"
- "\230\230\230\377\307\307\306\377\305\305\304\377\356\356\354\377\303"
- "\303\302\377\301\301\300\377\351\351\347\377lll\377\217\236\254\377\275"
- "\270\225\377p|i\377\214\233\252\377iih\377\336\336\333\377\334\334\332"
- "\377\243\243\242\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377"
- "\377\377\0\0\0\377\377\377\377\377\352\352\351\377\351\351\347\377\347"
- "\347\346\377\346\346\344\377\0\0\0\377\377\377\377\377\363\363\362\377"
- "\361\361\360\377\360\360\356\377\356\356\355\377\354\354\353\377\353"
- "\353\351\377\351\351\350\377\350\350\346\377\346\346\344\377kkj\377\226"
- "\245\264\377\323\307\215\377\237\234d\377o\177w\377hhf\377\333\333\330"
- "\377\332\332\327\377\240\240\237\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0"
- "\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\350\350\346\377"
- "\346\346\344\377\345\345\343\377\343\343\341\377\0\0\0\377\377\377\377"
- "\377\360\360\357\377\243\243\242\377\225\225\224\377\224\224\223\377"
- "\251\251\250\377\232\232\231\377\247\247\246\377\275\275\273\377\343"
- "\343\341\377jji\377\235\254\273\377\315\304\226\377fsW\377\233\252\271"
- "\377ffe\377\330\330\325\377\327\327\324\377\242\242\241\377\0\0\0\377"
- "\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377"
- "\377\345\345\343\377\343\343\341\377\342\342\340\377\340\340\336\377"
- "\0\0\0\377\377\377\377\377\355\355\354\377\354\354\352\377\352\352\350"
- "\377\351\351\347\377\347\347\345\377\345\345\343\377\344\344\342\377"
- "\342\342\340\377\341\341\336\377hhh\377\245\264\303\377\313\305\235\377"
- "l}o\377o\200s\377eec\377\326\326\322\377\324\324\321\377\242\242\241"
- "\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0"
- "\377\377\377\377\377\342\342\340\377\341\341\336\377\337\337\335\377"
- "\336\336\333\377\0\0\0\377\377\377\377\377\352\352\351\377\233\233\232"
- "\377\215\215\214\377\346\346\344\377\274\274\273\377\217\217\215\377"
- "\216\216\214\377\271\271\266\377\336\336\333\377ggf\377gge\377ffd\377"
- "eed\377ddc\377ddb\377\323\323\320\377\321\321\316\377\241\241\240\377"
- "\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\320\320\320\377\0\0\0\377"
- "\377\377\377\377\340\340\335\377\336\336\333\377\334\334\332\377\333"
- "\333\330\377\0\0\0\377\377\377\377\377\350\350\346\377\346\346\344\377"
- "\345\345\343\377\343\343\341\377\341\341\337\377\340\340\336\377\336"
- "\336\334\377\335\335\332\377\333\333\330\377\332\332\327\377\330\330"
- "\325\377\326\326\323\377\325\325\322\377\323\323\320\377\322\322\316"
- "\377\320\320\315\377\317\317\313\377\240\240\237\377\0\0\0\377\0\0\0"
- "_\0\0\0$\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377\377\335\335"
- "\332\377\333\333\330\377\332\332\327\377\330\330\325\377\0\0\0\377\377"
- "\377\377\377\345\345\343\377\227\227\226\377\216\216\215\377\215\215"
- "\214\377\214\214\212\377\335\335\333\377\222\222\220\377\236\236\233"
- "\377\234\234\232\377\207\207\205\377\325\325\322\377\257\257\254\377"
- "\230\230\226\377\213\213\210\377\253\253\247\377\315\315\312\377\314"
- "\314\310\377\242\242\241\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\40"
- "\0\0\0T\0\0\0\377\320\320\320\377\261\261\257\377\264\264\263\377\264"
- "\264\261\377\240\240\235\377\0\0\0\377\377\377\377\377\342\342\340\377"
- "\341\341\336\377\337\337\335\377\336\336\333\377\334\334\331\377\332"
- "\332\330\377\331\331\326\377\327\327\324\377\326\326\322\377\324\324"
- "\321\377\323\323\317\377\321\321\315\377\317\317\314\377\316\316\312"
- "\377\314\314\310\377\314\314\307\377\314\314\307\377\242\242\240\377"
- "\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\12\0\0\0\37\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377\377\340"
- "\340\335\377\224\224\222\377\266\266\264\377\333\333\330\377\235\235"
- "\233\377\210\210\206\377\326\326\323\377\325\325\321\377\214\214\212"
- "\377\217\217\215\377\203\203\200\377\316\316\312\377\224\224\221\377"
- "\224\224\220\377\314\314\307\377\314\314\307\377\314\314\307\377\237"
- "\237\237\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0%"
- "\0\0\0T\0\0\0j\0\0\0m\0\0\0m\0\0\0o\0\0\0\377\377\377\377\377\335\335"
- "\332\377\333\333\330\377\332\332\327\377\330\330\325\377\326\326\323"
- "\377\325\325\322\377\323\323\320\377\322\322\316\377\320\320\315\377"
- "\317\317\313\377\315\315\311\377\314\314\307\377\314\314\307\377\314"
- "\314\307\377\314\314\307\377\314\314\307\377\314\314\307\377\240\240"
- "\237\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\13\0\0"
- "\0\34\0\0\0&\0\0\0(\0\0\0(\0\0\0,\0\0\0\377\320\320\320\377\261\261\257"
- "\377\264\264\263\377\264\264\261\377\240\240\235\377\240\240\235\377"
- "\237\237\235\377\237\237\235\377\237\237\233\377\231\231\225\377\215"
- "\215\211\377\213\213\211\377\213\213\211\377\213\213\211\377\211\211"
- "\211\377\211\211\211\377\203\203\177\377\204\204\202\377]]\\\377\0\0"
- "\0\377\0\0\0^\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\4\0\0\0\6"
- "\0\0\0\7\0\0\0\7\0\0\0\13\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\263\0\0\0T\0\0\0\37\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0!\0\0\0S\0\0"
- "\0i\0\0\0m\0\0\0m\0\0\0m\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0"
- "\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0l\0\0\0`\0\0\0:"
- "\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\1\0\0\0\12\0\0\0\34\0\0\0&\0\0\0(\0\0\0(\0\0\0(\0\0\0)\0\0"
- "\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0"
- "\0\0)\0\0\0)\0\0\0(\0\0\0#\0\0\0\25\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\4\0\0\0"
- "\6\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0"
- "\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0"
- "\7\0\0\0\6\0\0\0\4\0\0\0\1"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_not)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_not[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_not[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0b\0\0\0\260\0\0\0\342"
- "\0\0\0\373\0\0\0\373\0\0\0\343\0\0\0\263\0\0\0j\0\0\0\13\0\0\0\5\0\0"
- "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0b\0\0\0\341n\35\15\377\2670\25\377\315"
- "4\27\377\3173\27\377\3152\26\377\310/\25\377\260(\22\377h\27\12\377\0"
- "\0\0\345\0\0\0o\0\0\0\14\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\225K\24\11\377\3105\27\377"
- "\3237\31\377\3215\30\377\3173\27\377\3151\26\377\3140\25\377\312.\25"
- "\377\310,\24\377\306+\23\377\270'\21\377D\16\5\377\0\0\0\243\0\0\0\24"
- "\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
- "\0\225o\36\15\377\3238\31\377\3236\30\377\331_H\377\361\317\311\377\371"
- "\364\363\377\371\371\371\377\364\353\352\377\350\273\265\377\325vj\377"
- "\307\77-\377\302'\21\377\300%\21\377c\22\10\377\0\0\0\246\0\0\0\26\0"
- "\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0bK\24\11\377\323"
- "8\31\377\3226\30\377\353\261\246\377\372\372\372\377\372\372\372\377"
- "\372\372\372\377\371\371\371\377\370\370\370\377\370\370\370\377\355"
- "\324\320\377\277#\20\377\277#\20\377\276#\20\377\274!\17\377B\13\5\377"
- "\0\0\0|\0\0\0\24\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\341\307"
- "4\27\377\3226\30\377\353\261\246\377\373\373\373\377\372\372\372\377"
- "\372\372\372\377\371\371\371\377\370\370\370\377\370\370\370\377\355"
- "\324\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\272\37\16"
- "\377\255\34\14\377\0\0\0\351\0\0\0(\0\0\0\14\0\0\0\1\0\0\0\0\0\0\0\0"
- "\0\0\0bm\34\14\377\3225\30\377\326WA\377\372\372\372\377\372\372\372"
- "\377\372\372\372\377\371\371\371\377\370\370\370\377\370\370\370\377"
- "\355\324\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\277"
- "#\20\377\303C6\377\266\34\14\377^\16\5\377\0\0\0\204\0\0\0\31\0\0\0\5"
- "\0\0\0\0\0\0\0\1\0\0\0\260\266.\24\377\3173\27\377\341\232\220\377\372"
- "\372\372\377\371\371\371\377\371\371\371\377\370\370\370\377\370\370"
- "\370\377\355\324\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20"
- "\377\277#\20\377\347\306\302\377\335\247\242\377\264\32\13\377\233\25"
- "\11\377\0\0\0\304\0\0\0'\0\0\0\13\0\0\0\1\0\0\0\2\0\0\0\342\3132\26\377"
- "\3151\26\377\353\306\302\377\371\371\371\377\371\371\371\377\370\370"
- "\370\377\367\367\367\377\355\324\320\377\277#\20\377\277#\20\377\277"
- "#\20\377\277#\20\377\277#\20\377\347\306\302\377\362\362\362\377\347"
- "\312\306\377\262\30\12\377\255\26\12\377\0\0\0\352\0\0\0""4\0\0\0\22"
- "\0\0\0\2\0\0\0\3\0\0\0\373\3141\26\377\313/\25\377\361\337\335\377\371"
- "\371\371\377\370\370\370\377\367\367\367\377\355\324\320\377\277#\20"
- "\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\347\306\302\377"
- "\362\362\362\377\361\361\361\377\355\343\342\377\260\26\12\377\256\24"
- "\11\377\0\0\0\374\0\0\0<\0\0\0\26\0\0\0\3\0\0\0\3\0\0\0\373\312/\25\377"
- "\311-\24\377\361\337\335\377\370\370\370\377\367\367\367\377\355\324"
- "\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377"
- "\347\306\302\377\362\362\362\377\361\361\361\377\361\361\361\377\351"
- "\327\325\377\256\24\11\377\254\22\10\377\0\0\0\374\0\0\0A\0\0\0\30\0"
- "\0\0\3\0\0\0\3\0\0\0\343\305,\23\377\307+\23\377\347\272\265\377\367"
- "\367\367\377\355\324\320\377\277#\20\377\277#\20\377\277#\20\377\277"
- "#\20\377\277#\20\377\347\306\302\377\362\362\362\377\361\361\361\377"
- "\361\361\361\377\360\360\360\377\346\321\316\377\255\22\10\377\247\20"
- "\7\377\0\0\0\353\0\0\0A\0\0\0\30\0\0\0\3\0\0\0\3\0\0\0\263\255%\20\377"
- "\305)\22\377\335\226\215\377\352\310\304\377\277#\20\377\277#\20\377"
- "\277#\20\377\277#\20\377\277#\20\377\347\306\302\377\362\362\362\377"
- "\361\361\361\377\361\361\361\377\360\360\360\377\357\357\357\377\333"
- "\254\250\377\253\20\7\377\223\14\5\377\0\0\0\310\0\0\0=\0\0\0\26\0\0"
- "\0\3\0\0\0\2\0\0\0jf\25\11\377\302'\21\377\307A1\377\277#\20\377\277"
- "#\20\377\277#\20\377\277#\20\377\277#\20\377\347\305\301\377\362\362"
- "\362\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357\357"
- "\377\356\356\356\377\267:3\377\250\16\6\377V\6\2\377\0\0\0\222\0\0\0"
- "4\0\0\0\22\0\0\0\2\0\0\0\1\0\0\0\13\0\0\0\345\264#\20\377\277#\20\377"
- "\277#\20\377\277#\20\377\277#\20\377\277#\20\377\347\305\301\377\362"
- "\362\362\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357"
- "\357\377\356\356\356\377\321\223\217\377\250\16\6\377\233\13\5\377\0"
- "\0\0\353\0\0\0I\0\0\0'\0\0\0\13\0\0\0\1\0\0\0\0\0\0\0\5\0\0\0oC\14\5"
- "\377\274!\17\377\273\40\16\377\277#\20\377\277#\20\377\344\273\266\377"
- "\362\362\362\377\361\361\361\377\360\360\360\377\360\360\360\377\357"
- "\357\357\377\355\355\355\377\321\223\217\377\247\15\6\377\245\13\5\377"
- "9\3\1\377\0\0\0\224\0\0\0;\0\0\0\31\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\1\0"
- "\0\0\14\0\0\0\243a\20\7\377\270\36\15\377\267\34\14\377\300=1\377\326"
- "\212\201\377\337\255\246\377\344\303\276\377\354\343\341\377\346\321"
- "\316\377\332\253\247\377\26780\377\247\15\5\377\244\13\5\377U\5\1\377"
- "\0\0\0\267\0\0\0F\0\0\0(\0\0\0\14\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\4\0\0\0\24\0\0\0\246@\12\3\377\251\31\12\377\263\30\13\377\261\26"
- "\12\377\257\25\11\377\255\23\10\377\253\21\10\377\252\20\7\377\250\16"
- "\6\377\246\14\5\377\232\12\4\3779\3\1\377\0\0\0\267\0\0\0I\0\0\0/\0\0"
- "\0\24\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\26"
- "\0\0\0|\0\0\0\351\\\13\5\377\230\22\10\377\252\23\10\377\253\21\7\377"
- "\251\17\7\377\244\16\6\377\221\13\4\377U\5\2\377\0\0\0\353\0\0\0\224"
- "\0\0\0F\0\0\0/\0\0\0\26\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\24\0\0\0(\0\0\0\204\0\0\0\304\0\0\0"
- "\352\0\0\0\374\0\0\0\374\0\0\0\353\0\0\0\310\0\0\0\222\0\0\0I\0\0\0;"
- "\0\0\0(\0\0\0\24\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\14\0\0\0\31\0\0\0'\0\0\0""4"
- "\0\0\0<\0\0\0A\0\0\0A\0\0\0<\0\0\0""4\0\0\0'\0\0\0\31\0\0\0\14\0\0\0"
- "\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\13\0\0\0\22\0\0\0\26\0\0"
- "\0\30\0\0\0\30\0\0\0\26\0\0\0\22\0\0\0\13\0\0\0\5\0\0\0\1\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0"
- "\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_table_borders)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_table_borders[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_table_borders[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\375\375\375\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\336\336\336\377\0\0"
- "\0\377\0\0\0E\0\0\0\16\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360"
- "\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377"
- "\360\360\360\377\360\360\360\377\362\362\362\377nnn\377\363\363\363\377"
- "\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366"
- "\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360\377\360"
- "\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360"
- "\360\377\360\360\360\377\362\362\362\377\362\362\362\377\363\363\363"
- "\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377"
- "\366\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0"
- "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360"
- "\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377"
- "\360\360\360\377\361\361\361\377\362\362\362\377jjj\377\363\363\363\377"
- "\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366"
- "\366\366\377\367\367\367\377\367\367\367\377\347\347\347\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360\377\360"
- "\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377\361\361"
- "\361\377\362\362\362\377\363\363\363\377\363\363\363\377\364\364\364"
- "\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366\366\377"
- "\367\367\367\377\367\367\367\377\370\370\370\377\350\350\350\377\0\0"
- "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360"
- "\377\360\360\360\377\360\360\360\377\360\360\360\377\361\361\361\377"
- "\362\362\362\377\362\362\362\377\363\363\363\377kkk\377\365\365\365\377"
- "\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367"
- "\367\367\377\370\370\370\377\371\371\371\377\350\350\350\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360\377\360"
- "\360\360\377\360\360\360\377\361\361\361\377\362\362\362\377\362\362"
- "\362\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365"
- "\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367\367\377"
- "\370\370\370\377\371\371\371\377\371\371\371\377\351\351\351\377\0\0"
- "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360"
- "\377\360\360\360\377\361\361\361\377\362\362\362\377\362\362\362\377"
- "\363\363\363\377\363\363\363\377\365\365\365\377kkk\377\366\366\366\377"
- "\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371"
- "\371\371\377\371\371\371\377\372\372\372\377\351\351\351\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\361\361\361\377\361"
- "\361\361\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
- "\363\377\364\364\364\377\365\365\365\377\366\366\366\377\366\366\366"
- "\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371\371\377"
- "\371\371\371\377\372\372\372\377\372\372\372\377\352\352\352\377\0\0"
- "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\376\376\376\377kkk\377\362\362"
- "\362\377jjj\377\363\363\363\377jjj\377\364\364\364\377kkk\377\366\366"
- "\366\377lll\377\367\367\367\377lll\377\370\370\370\377mmm\377\371\371"
- "\371\377mmm\377\372\372\372\377nnn\377\353\353\353\377\0\0\0\377\0\0"
- "\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\362\362\362\377\362\362"
- "\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365\365\365"
- "\377\365\365\365\377\366\366\366\377\367\367\367\377\367\367\367\377"
- "\370\370\370\377\371\371\371\377\371\371\371\377\372\372\372\377\372"
- "\372\372\377\373\373\373\377\374\374\374\377\353\353\353\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363"
- "\363\363\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365"
- "\365\377\366\366\366\377\367\367\367\377lll\377\370\370\370\377\371\371"
- "\371\377\371\371\371\377\372\372\372\377\372\372\372\377\373\373\373"
- "\377\374\374\374\377\374\374\374\377\354\354\354\377\0\0\0\377\0\0\0"
- "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363\363"
- "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366"
- "\377\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377"
- "\371\371\371\377\372\372\372\377\372\372\372\377\373\373\373\377\374"
- "\374\374\377\374\374\374\377\375\375\375\377\354\354\354\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\364\364\364\377\364"
- "\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366"
- "\366\377\367\367\367\377\370\370\370\377mmm\377\371\371\371\377\372\372"
- "\372\377\372\372\372\377\373\373\373\377\374\374\374\377\374\374\374"
- "\377\375\375\375\377\375\375\375\377\355\355\355\377\0\0\0\377\0\0\0"
- "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365\365"
- "\365\377\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367"
- "\377\367\367\367\377\371\371\371\377\371\371\371\377\372\372\372\377"
- "\372\372\372\377\373\373\373\377\374\374\374\377\374\374\374\377\375"
- "\375\375\377\375\375\375\377\376\376\376\377\356\356\356\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365"
- "\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367"
- "\367\377\370\370\370\377\371\371\371\377mmm\377\372\372\372\377\373\373"
- "\373\377\374\374\374\377\374\374\374\377\375\375\375\377\375\375\375"
- "\377\376\376\376\377\377\377\377\377\356\356\356\377\0\0\0\377\0\0\0"
- "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366\366"
- "\366\377\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370"
- "\377\371\371\371\377\372\372\372\377\372\372\372\377\373\373\373\377"
- "\374\374\374\377\374\374\374\377\375\375\375\377\375\375\375\377\376"
- "\376\376\377\377\377\377\377\377\377\377\377\356\356\356\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366"
- "\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371"
- "\371\377\371\371\371\377\372\372\372\377nnn\377\374\374\374\377\374\374"
- "\374\377\375\375\375\377\375\375\375\377\376\376\376\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\356\356\356\377\0\0\0\377\0\0\0"
- "R\0\0\0\20\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0R\0\0\0\20\0"
- "\0\0\0\0\0\0\15\0\0\0D\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0"
- "\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0"
- "\0\0R\0\0\0R\0\0\0R\0\0\0E\0\0\0\16\0\0\0\0\0\0\0\2\0\0\0\15\0\0\0\20"
- "\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0"
- "\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0"
- "\0\0\20\0\0\0\20\0\0\0\20\0\0\0\16\0\0\0\3"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_table_fill)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_table_fill[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_table_fill[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\377\262\262\262\377\262\262\262\377\262"
- "\262\262\377\262\262\262\377\262\262\262\377\262\262\262\377\262\262"
- "\262\377\262\262\262\377\262\262\262\377\260\260\260\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\377\336\336\336\377\0\0"
- "\0\377\0\0\0E\0\0\0\16\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247"
- "\377\247\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377"
- "\247\247\247\377\247\247\247\377\250\250\250\377LLL\377\363\363\363\377"
- "\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366"
- "\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247\377\247"
- "\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377\247\247"
- "\247\377\247\247\247\377\250\250\250\377\250\250\250\377\363\363\363"
- "\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377"
- "\366\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0"
- "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247"
- "\377\247\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377"
- "\247\247\247\377\250\250\250\377\250\250\250\377III\377\363\363\363\377"
- "\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366"
- "\366\366\377\367\367\367\377\367\367\367\377\347\347\347\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247\377\247"
- "\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377\250\250"
- "\250\377\250\250\250\377\251\251\251\377\251\251\251\377\364\364\364"
- "\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366\366\377"
- "\367\367\367\377\367\367\367\377\370\370\370\377\350\350\350\377\0\0"
- "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247"
- "\377\247\247\247\377\247\247\247\377\247\247\247\377\250\250\250\377"
- "\250\250\250\377\250\250\250\377\251\251\251\377JJJ\377\365\365\365\377"
- "\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367"
- "\367\367\377\370\370\370\377\371\371\371\377\350\350\350\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247\377\247"
- "\247\247\377\247\247\247\377\250\250\250\377\250\250\250\377\250\250"
- "\250\377\251\251\251\377\252\252\252\377\253\253\253\377\365\365\365"
- "\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367\367\377"
- "\370\370\370\377\371\371\371\377\371\371\371\377\351\351\351\377\0\0"
- "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247"
- "\377\247\247\247\377\250\250\250\377\250\250\250\377\250\250\250\377"
- "\251\251\251\377\251\251\251\377\253\253\253\377JJJ\377\366\366\366\377"
- "\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371"
- "\371\371\377\371\371\371\377\372\372\372\377\351\351\351\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\250\250\250\377\250"
- "\250\250\377\250\250\250\377\250\250\250\377\251\251\251\377\251\251"
- "\251\377\252\252\252\377\253\253\253\377\253\253\253\377\366\366\366"
- "\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371\371\377"
- "\371\371\371\377\372\372\372\377\372\372\372\377\352\352\352\377\0\0"
- "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\261\261\261\377JJJ\377\250\250"
- "\250\377III\377\251\251\251\377III\377\252\252\252\377JJJ\377\253\253"
- "\253\377KKK\377\254\254\254\377KKK\377\255\255\255\377LLL\377\255\255"
- "\255\377LLL\377\256\256\256\377LLL\377\244\244\244\377\0\0\0\377\0\0"
- "\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\362\362\362\377\362\362"
- "\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365\365\365"
- "\377\365\365\365\377\366\366\366\377\254\254\254\377\254\254\254\377"
- "\255\255\255\377\255\255\255\377\255\255\255\377\256\256\256\377\256"
- "\256\256\377\257\257\257\377\257\257\257\377\244\244\244\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363"
- "\363\363\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365"
- "\365\377\366\366\366\377\367\367\367\377KKK\377\255\255\255\377\255\255"
- "\255\377\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257"
- "\377\257\257\257\377\257\257\257\377\244\244\244\377\0\0\0\377\0\0\0"
- "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363\363"
- "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366"
- "\377\366\366\366\377\367\367\367\377\255\255\255\377\255\255\255\377"
- "\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257\377\257"
- "\257\257\377\257\257\257\377\260\260\260\377\244\244\244\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\364\364\364\377\364"
- "\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366"
- "\366\377\367\367\367\377\370\370\370\377LLL\377\255\255\255\377\256\256"
- "\256\377\256\256\256\377\257\257\257\377\257\257\257\377\257\257\257"
- "\377\260\260\260\377\260\260\260\377\245\245\245\377\0\0\0\377\0\0\0"
- "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365\365"
- "\365\377\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367"
- "\377\367\367\367\377\371\371\371\377\255\255\255\377\256\256\256\377"
- "\256\256\256\377\257\257\257\377\257\257\257\377\257\257\257\377\260"
- "\260\260\377\260\260\260\377\261\261\261\377\246\246\246\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365"
- "\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367"
- "\367\377\370\370\370\377\371\371\371\377LLL\377\256\256\256\377\257\257"
- "\257\377\257\257\257\377\257\257\257\377\260\260\260\377\260\260\260"
- "\377\261\261\261\377\262\262\262\377\246\246\246\377\0\0\0\377\0\0\0"
- "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366\366"
- "\366\377\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370"
- "\377\371\371\371\377\372\372\372\377\256\256\256\377\257\257\257\377"
- "\257\257\257\377\257\257\257\377\260\260\260\377\260\260\260\377\261"
- "\261\261\377\262\262\262\377\262\262\262\377\246\246\246\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366"
- "\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371"
- "\371\377\371\371\371\377\372\372\372\377LLL\377\257\257\257\377\257\257"
- "\257\377\260\260\260\377\260\260\260\377\261\261\261\377\262\262\262"
- "\377\262\262\262\377\262\262\262\377\246\246\246\377\0\0\0\377\0\0\0"
- "R\0\0\0\20\0\0\0\0\0\0\0\377\356\356\356\377\346\346\346\377\346\346"
- "\346\377\346\346\346\377\347\347\347\377\350\350\350\377\350\350\350"
- "\377\351\351\351\377\352\352\352\377\244\244\244\377\244\244\244\377"
- "\244\244\244\377\244\244\244\377\245\245\245\377\246\246\246\377\246"
- "\246\246\377\246\246\246\377\246\246\246\377\232\232\232\377\0\0\0\377"
- "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\15\0\0\0"
- "D\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0"
- "\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0"
- "\0\0E\0\0\0\16\0\0\0\0\0\0\0\2\0\0\0\15\0\0\0\20\0\0\0\20\0\0\0\20\0"
- "\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20"
- "\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0"
- "\20\0\0\0\16\0\0\0\3"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_text_bulleted_list)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_text_bulleted_list[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_text_bulleted_list[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232"
- "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362"
- "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
- "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364"
- "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377"
- "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333"
- "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340"
- "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343"
- "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
- "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377"
- "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
- "\357\357\377\355\355\355\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362"
- "\362\362\377\341\341\341\377\341\341\341\377\342\342\342\377\343\343"
- "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
- "\377\350\350\350\377\351\351\351\377\352\352\352\377\352\352\352\377"
- "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
- "\357\357\377\360\360\360\377\361\361\361\377\0\0\0\377\0\0\0""8\0\0\0"
- "\25\0\0\0\377\362\362\362\377\342\342\342\377\343\343\343\377\236\236"
- "\236\377mmm\377\237\237\237\377\346\346\346\377\347\347\347\377ooo\377"
- "ppp\377ppp\377qqq\377qqq\377qqq\377rrr\377rrr\377sss\377\360\360\360"
- "\377\361\361\361\377\362\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
- "\377\363\363\363\377\343\343\343\377\344\344\344\377nnn\377nnn\377nn"
- "n\377\347\347\347\377\350\350\350\377\351\351\351\377\352\352\352\377"
- "\353\353\353\377\354\354\354\377\355\355\355\377\355\355\355\377\356"
- "\356\356\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362"
- "\362\377\363\363\363\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363"
- "\363\377\344\344\344\377\345\345\345\377\240\240\240\377ooo\377\241\241"
- "\241\377\350\350\350\377\351\351\351\377ppp\377qqq\377qqq\377rrr\377"
- "rrr\377sss\377sss\377sss\377ttt\377\362\362\362\377\363\363\363\377\364"
- "\364\364\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\345"
- "\345\345\377\346\346\346\377\347\347\347\377\350\350\350\377\351\351"
- "\351\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354"
- "\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377"
- "\356\356\356\377\360\360\360\377\361\361\361\377\363\363\363\377\364"
- "\364\364\377\365\365\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364"
- "\364\364\377\346\346\346\377\347\347\347\377\350\350\350\377\351\351"
- "\351\377\352\352\352\377\352\352\352\377\353\353\353\377qqq\377rrr\377"
- "rrr\377sss\377sss\377ttt\377\362\362\362\377\363\363\363\377\363\363"
- "\363\377\364\364\364\377\365\365\365\377\366\366\366\377\0\0\0\377\0"
- "\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\347\347\347\377\350\350\350"
- "\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354\377"
- "\354\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\360"
- "\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\364\364"
- "\364\377\365\365\365\377\365\365\365\377\366\366\366\377\367\367\367"
- "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\350\350\350"
- "\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354\377"
- "\355\355\355\377\356\356\356\377\356\356\356\377\357\357\357\377\360"
- "\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\364\364"
- "\364\377\365\365\365\377\366\366\366\377\367\367\367\377\367\367\367"
- "\377\370\370\370\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365"
- "\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354\377"
- "\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377\360"
- "\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\364\364"
- "\364\377\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370"
- "\377\370\370\370\377\371\371\371\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
- "\377\365\365\365\377\352\352\352\377\353\353\353\377\354\354\354\377"
- "\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377\361"
- "\361\361\377\362\362\362\377\362\362\362\377\363\363\363\377\364\364"
- "\364\377\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370"
- "\377\371\371\371\377\372\372\372\377\372\372\372\377\0\0\0\377\0\0\0"
- "=\0\0\0\27\0\0\0\377\366\366\366\377\353\353\353\377\354\354\354\377"
- "\303\303\303\377rrr\377\304\304\304\377\360\360\360\377\361\361\361\377"
- "ttt\377uuu\377\203\203\203\377uuu\377vvv\377vvv\377www\377www\377xxx"
- "\377\372\372\372\377\373\373\373\377\374\374\374\377\0\0\0\377\0\0\0"
- "=\0\0\0\27\0\0\0\377\367\367\367\377\355\355\355\377\355\355\355\377"
- "rrr\377sss\377sss\377\361\361\361\377\362\362\362\377\363\363\363\377"
- "\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\367"
- "\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377\373\373"
- "\373\377\374\374\374\377\375\375\375\377\0\0\0\377\0\0\0=\0\0\0\27\0"
- "\0\0\377\367\367\367\377\356\356\356\377\357\357\357\377\304\304\304"
- "\377sss\377\306\306\306\377\362\362\362\377\363\363\363\377uuu\377vv"
- "v\377vvv\377www\377www\377www\377xxx\377xxx\377\373\373\373\377\374\374"
- "\374\377\375\375\375\377\376\376\376\377\0\0\0\377\0\0\0=\0\0\0\27\0"
- "\0\0\377\370\370\370\377\360\360\360\377\361\361\361\377\362\362\362"
- "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
- "\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372"
- "\372\372\377\373\373\373\377\373\373\373\377\374\374\374\377\375\375"
- "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\0\0\0\377\0"
- "\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361\377\362\362\362"
- "\377\363\363\363\377\364\364\364\377\364\364\364\377\365\365\365\377"
- "\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372"
- "\372\372\377\373\373\373\377\374\374\374\377\375\375\375\377\375\375"
- "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362\377\362\362\362"
- "\377\363\363\363\377\364\364\364\377\365\365\365\377\366\366\366\377"
- "\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372"
- "\372\372\377\373\373\373\377\374\374\374\377\375\375\375\377\376\376"
- "\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\232\311\311\311"
- "\377\355\355\355\377\370\370\370\377\365\365\365\377\366\366\366\377"
- "\367\367\367\377\370\370\370\377\370\370\370\377\371\371\371\377\372"
- "\372\372\377\373\373\373\377\374\374\374\377\375\375\375\377\376\376"
- "\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\356\356\356\377\275\275\275\377\0\0\0\324\0\0\0:\0\0\0\26\0\0\0"
- "\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
- "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\324\0"
- "\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0\0\0<\0\0\0="
- "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0"
- "=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0\0\0\7\0\0\0"
- "\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0"
- "\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27"
- "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0\7\0\0\0"
- "\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0"
- "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0"
- "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_text_indent)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_text_indent[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_text_indent[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232"
- "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362"
- "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
- "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364"
- "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377"
- "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333"
- "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340"
- "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343"
- "\343\377\344\344\344\377\345\345\345\377\256\256\256\377\347\347\347"
- "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377"
- "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
- "\357\357\377\343\343\343\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362"
- "\362\362\377\341\341\341\377\341\341\341\377\342\342\342\377\343\343"
- "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
- "\377\350\350\350\377\351\351\351\377\352\352\352\377\352\352\352\377"
- "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
- "\357\357\377\360\360\360\377\347\347\347\377\0\0\0\377\0\0\0""8\0\0\0"
- "\25\0\0\0\377\362\362\362\377\342\342\342\377\254\254\254\377\254\254"
- "\254\377\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257"
- "\377\260\260\260\377\261\261\261\377\262\262\262\377\262\262\262\377"
- "\263\263\263\377\263\263\263\377\264\264\264\377\265\265\265\377\265"
- "\265\265\377\266\266\266\377\361\361\361\377\350\350\350\377\0\0\0\377"
- "\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\343\343\343\377\344\344\344"
- "\377\345\345\345\377\345\345\345\377\346\346\346\377\347\347\347\377"
- "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354"
- "\354\354\377\355\355\355\377\355\355\355\377\356\356\356\377\357\357"
- "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\351\351\351"
- "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\344\344\344"
- "\377\345\345\345\377\346\346\346\377\347\347\347\377\347\347\347\377"
- "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354"
- "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\357\357"
- "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363"
- "\377\352\352\352\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363"
- "\377\345\345\345\377\346\346\346\377\347\347\347\377\350\350\350\377"
- "\351\351\351\377\351\351\351\377\352\352\352\377uuu\377vvv\377vvv\377"
- "www\377www\377xxx\377xxx\377xxx\377yyy\377yyy\377\364\364\364\377\353"
- "\353\353\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\346"
- "\346\346\377\347\347\347\377\350\350\350\377\252\252\252\377\352\352"
- "\352\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355"
- "\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361\377"
- "\362\362\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365"
- "\365\365\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364"
- "\364\364\377\347\347\347\377\350\350\350\377\351\351\351\377\0\0\0\377"
- "\254\254\254\377\354\354\354\377\354\354\354\377vvv\377www\377www\377"
- "xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366\377\355"
- "\355\355\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\255\255\255\377\356\356"
- "\356\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361"
- "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
- "\366\366\366\377\367\367\367\377\367\367\367\377\356\356\356\377\0\0"
- "\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\351\351\351\377\352"
- "\352\352\377\353\353\353\377\0\0\0\377\255\255\255\377\356\356\356\377"
- "\357\357\357\377xxx\377xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377{{{"
- "\377{{{\377|||\377\370\370\370\377\357\357\357\377\0\0\0\377\0\0\0=\0"
- "\0\0\27\0\0\0\377\365\365\365\377\352\352\352\377\353\353\353\377\354"
- "\354\354\377\255\255\255\377\356\356\356\377\357\357\357\377\360\360"
- "\360\377\361\361\361\377\362\362\362\377\362\362\362\377\363\363\363"
- "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
- "\370\370\370\377\371\371\371\377\372\372\372\377\360\360\360\377\0\0"
- "\0\377\0\0\0=\0\0\0\27\0\0\0\377\366\366\366\377\353\353\353\377\354"
- "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360"
- "\360\377\361\361\361\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366"
- "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377"
- "\373\373\373\377\362\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377"
- "\367\367\367\377\355\355\355\377\355\355\355\377\356\356\356\377\357"
- "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
- "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366"
- "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377"
- "\373\373\373\377\374\374\374\377\363\363\363\377\0\0\0\377\0\0\0=\0\0"
- "\0\27\0\0\0\377\367\367\367\377\356\356\356\377\357\357\357\377\357\357"
- "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363"
- "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
- "\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377\373"
- "\373\373\377\374\374\374\377\375\375\375\377\364\364\364\377\0\0\0\377"
- "\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\360\360\360\377\267\267\267"
- "\377\270\270\270\377\270\270\270\377\270\270\270\377\271\271\271\377"
- "\272\272\272\377\273\273\273\377\273\273\273\377\274\274\274\377\275"
- "\275\275\377\276\276\276\377\276\276\276\377\276\276\276\377\277\277"
- "\277\377\300\300\300\377\301\301\301\377\377\377\377\377\365\365\365"
- "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361"
- "\377\362\362\362\377\363\363\363\377\364\364\364\377\364\364\364\377"
- "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
- "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
- "\375\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377"
- "\377\365\365\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362"
- "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
- "\366\366\366\377\366\366\366\377\367\367\367\377\274\274\274\377\371"
- "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
- "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
- "\232\311\311\311\377\332\332\332\377\356\356\356\377\353\353\353\377"
- "\354\354\354\377\355\355\355\377\356\356\356\377\356\356\356\377\357"
- "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
- "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\365\365\365"
- "\377\365\365\365\377\344\344\344\377\275\275\275\377\0\0\0\324\0\0\0"
- ":\0\0\0\26\0\0\0\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\324\0\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0"
- "\0\0<\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0="
- "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0"
- "\0\0\7\0\0\0\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0"
- "\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27"
- "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0"
- "\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0"
- "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0"
- "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_text_numbered_list)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_text_numbered_list[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_text_numbered_list[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232"
- "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362"
- "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
- "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364"
- "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377"
- "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333"
- "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340"
- "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343"
- "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
- "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377"
- "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
- "\357\357\377\355\355\355\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362"
- "\362\362\377\341\341\341\377\341\341\341\377\314\314\314\377mmm\377\344"
- "\344\344\377\345\345\345\377\346\346\346\377\347\347\347\377\350\350"
- "\350\377\351\351\351\377\352\352\352\377\352\352\352\377\353\353\353"
- "\377\354\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377"
- "\360\360\360\377\361\361\361\377\0\0\0\377\0\0\0""8\0\0\0\25\0\0\0\377"
- "\362\362\362\377\342\342\342\377\315\315\315\377mmm\377mmm\377\345\345"
- "\345\377\346\346\346\377\347\347\347\377ooo\377ppp\377ppp\377qqq\377"
- "qqq\377qqq\377rrr\377rrr\377sss\377\360\360\360\377\361\361\361\377\362"
- "\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\343"
- "\343\343\377\344\344\344\377\345\345\345\377nnn\377\346\346\346\377\347"
- "\347\347\377\350\350\350\377\351\351\351\377\352\352\352\377\353\353"
- "\353\377\354\354\354\377\355\355\355\377\355\355\355\377\356\356\356"
- "\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377"
- "\363\363\363\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377"
- "\344\344\344\377\345\345\345\377\346\346\346\377ooo\377\347\347\347\377"
- "\350\350\350\377\351\351\351\377ppp\377qqq\377qqq\377rrr\377rrr\377s"
- "ss\377sss\377sss\377ttt\377\362\362\362\377\363\363\363\377\364\364\364"
- "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\345\345\345"
- "\377\346\346\346\377\347\347\347\377ooo\377\351\351\351\377\351\351\351"
- "\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355\377"
- "\356\356\356\377\357\357\357\377\360\360\360\377\356\356\356\377\360"
- "\360\360\377\361\361\361\377\363\363\363\377\364\364\364\377\365\365"
- "\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\346\346"
- "\346\377\347\347\347\377\350\350\350\377\351\351\351\377\352\352\352"
- "\377\352\352\352\377\353\353\353\377\206\206\206\377rrr\377rrr\377ss"
- "s\377sss\377ttt\377\362\362\362\377\363\363\363\377\363\363\363\377\364"
- "\364\364\377\365\365\365\377\366\366\366\377\0\0\0\377\0\0\0=\0\0\0\27"
- "\0\0\0\377\364\364\364\377\347\347\347\377\350\350\350\377\351\351\351"
- "\377\352\352\352\377\353\353\353\377\354\354\354\377\354\354\354\377"
- "\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377\361"
- "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365"
- "\365\377\365\365\365\377\366\366\366\377\367\367\367\377\0\0\0\377\0"
- "\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\350\350\350\377\351\351\351"
- "\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355\377"
- "\356\356\356\377\356\356\356\377\357\357\357\377\360\360\360\377\361"
- "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365"
- "\365\377\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370"
- "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\351\351\351"
- "\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355\377"
- "\356\356\356\377\357\357\357\377\360\360\360\377\360\360\360\377\361"
- "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365"
- "\365\377\366\366\366\377\367\367\367\377\370\370\370\377\370\370\370"
- "\377\371\371\371\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365"
- "\377\352\352\352\377\353\353\353\377\303\303\303\377rrr\377\327\327\327"
- "\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377"
- "\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377\366"
- "\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372"
- "\372\377\372\372\372\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\366\366"
- "\366\377\353\353\353\377\354\354\354\377rrr\377\356\356\356\377sss\377"
- "\360\360\360\377\361\361\361\377ttt\377uuu\377\203\203\203\377uuu\377"
- "vvv\377vvv\377www\377www\377xxx\377\372\372\372\377\373\373\373\377\374"
- "\374\374\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\367\367\367\377\355"
- "\355\355\377\355\355\355\377\356\356\356\377\330\330\330\377sss\377\361"
- "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365"
- "\365\377\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370"
- "\377\371\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377"
- "\375\375\375\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\367\367\367\377"
- "\356\356\356\377\357\357\357\377\330\330\330\377sss\377\332\332\332\377"
- "\362\362\362\377\363\363\363\377uuu\377vvv\377vvv\377www\377www\377w"
- "ww\377xxx\377xxx\377\373\373\373\377\374\374\374\377\375\375\375\377"
- "\376\376\376\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377"
- "\360\360\360\377\361\361\361\377ttt\377ttt\377uuu\377\364\364\364\377"
- "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
- "\371\371\377\372\372\372\377\373\373\373\377\373\373\373\377\374\374"
- "\374\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377"
- "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361"
- "\377\362\362\362\377\363\363\363\377\364\364\364\377\364\364\364\377"
- "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
- "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
- "\375\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362"
- "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
- "\366\366\366\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
- "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
- "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
- "\232\311\311\311\377\355\355\355\377\370\370\370\377\365\365\365\377"
- "\366\366\366\377\367\367\367\377\370\370\370\377\370\370\370\377\371"
- "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
- "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\356\356\356\377\275\275\275\377\0\0\0\324\0\0\0"
- ":\0\0\0\26\0\0\0\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\324\0\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0"
- "\0\0<\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0="
- "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0"
- "\0\0\7\0\0\0\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0"
- "\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27"
- "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0"
- "\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0"
- "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0"
- "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_text_unindent)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_text_unindent[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_text_unindent[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232"
- "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362"
- "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363"
- "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364"
- "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377"
- "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333"
- "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340"
- "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343"
- "\343\377\344\344\344\377\345\345\345\377\256\256\256\377\347\347\347"
- "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377"
- "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
- "\357\357\377\343\343\343\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362"
- "\362\362\377\341\341\341\377\341\341\341\377\342\342\342\377\343\343"
- "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347"
- "\377\350\350\350\377\351\351\351\377\352\352\352\377\352\352\352\377"
- "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357"
- "\357\357\377\360\360\360\377\347\347\347\377\0\0\0\377\0\0\0""8\0\0\0"
- "\25\0\0\0\377\362\362\362\377\342\342\342\377\254\254\254\377\254\254"
- "\254\377\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257"
- "\377\260\260\260\377\261\261\261\377\262\262\262\377\262\262\262\377"
- "\263\263\263\377\263\263\263\377\264\264\264\377\265\265\265\377\265"
- "\265\265\377\266\266\266\377\361\361\361\377\350\350\350\377\0\0\0\377"
- "\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\343\343\343\377\344\344\344"
- "\377\345\345\345\377\345\345\345\377\346\346\346\377\347\347\347\377"
- "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354"
- "\354\354\377\355\355\355\377\355\355\355\377\356\356\356\377\357\357"
- "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\351\351\351"
- "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\344\344\344"
- "\377\345\345\345\377\346\346\346\377\347\347\347\377\347\347\347\377"
- "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354"
- "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\357\357"
- "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363"
- "\377\352\352\352\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363"
- "\377\345\345\345\377\346\346\346\377\347\347\347\377\350\350\350\377"
- "\351\351\351\377\351\351\351\377\352\352\352\377uuu\377vvv\377vvv\377"
- "www\377www\377xxx\377xxx\377xxx\377yyy\377yyy\377\364\364\364\377\353"
- "\353\353\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\346"
- "\346\346\377\347\347\347\377\252\252\252\377\351\351\351\377\352\352"
- "\352\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355"
- "\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361\377"
- "\362\362\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365"
- "\365\365\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364"
- "\364\364\377\347\347\347\377\252\252\252\377\0\0\0\377\352\352\352\377"
- "\353\353\353\377\354\354\354\377\354\354\354\377vvv\377www\377www\377"
- "xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366\377\355"
- "\355\355\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\252"
- "\252\252\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\356\356"
- "\356\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361"
- "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
- "\366\366\366\377\367\367\367\377\367\367\367\377\356\356\356\377\0\0"
- "\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\351\351\351\377\253"
- "\253\253\377\0\0\0\377\354\354\354\377\355\355\355\377\356\356\356\377"
- "\357\357\357\377xxx\377xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377{{{"
- "\377{{{\377|||\377\370\370\370\377\357\357\357\377\0\0\0\377\0\0\0=\0"
- "\0\0\27\0\0\0\377\365\365\365\377\352\352\352\377\353\353\353\377\255"
- "\255\255\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360"
- "\360\377\361\361\361\377\362\362\362\377\362\362\362\377\363\363\363"
- "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
- "\370\370\370\377\371\371\371\377\372\372\372\377\360\360\360\377\0\0"
- "\0\377\0\0\0=\0\0\0\27\0\0\0\377\366\366\366\377\353\353\353\377\354"
- "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360"
- "\360\377\361\361\361\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366"
- "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377"
- "\373\373\373\377\362\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377"
- "\367\367\367\377\355\355\355\377\355\355\355\377\356\356\356\377\357"
- "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
- "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366"
- "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377"
- "\373\373\373\377\374\374\374\377\363\363\363\377\0\0\0\377\0\0\0=\0\0"
- "\0\27\0\0\0\377\367\367\367\377\356\356\356\377\357\357\357\377\357\357"
- "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363"
- "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377"
- "\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377\373"
- "\373\373\377\374\374\374\377\375\375\375\377\364\364\364\377\0\0\0\377"
- "\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\360\360\360\377\267\267\267"
- "\377\270\270\270\377\270\270\270\377\270\270\270\377\271\271\271\377"
- "\272\272\272\377\273\273\273\377\273\273\273\377\274\274\274\377\275"
- "\275\275\377\276\276\276\377\276\276\276\377\276\276\276\377\277\277"
- "\277\377\300\300\300\377\301\301\301\377\377\377\377\377\365\365\365"
- "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361"
- "\377\362\362\362\377\363\363\363\377\364\364\364\377\364\364\364\377"
- "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371"
- "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
- "\375\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377"
- "\377\365\365\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362"
- "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377"
- "\366\366\366\377\366\366\366\377\367\367\367\377\274\274\274\377\371"
- "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375"
- "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0"
- "\232\311\311\311\377\332\332\332\377\356\356\356\377\353\353\353\377"
- "\354\354\354\377\355\355\355\377\356\356\356\377\356\356\356\377\357"
- "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363"
- "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\365\365\365"
- "\377\365\365\365\377\344\344\344\377\275\275\275\377\0\0\0\324\0\0\0"
- ":\0\0\0\26\0\0\0\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\324\0\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0"
- "\0\0<\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0="
- "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0"
- "\0\0\7\0\0\0\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0"
- "\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27"
- "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0"
- "\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0"
- "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0"
- "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_timer)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_timer[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_timer[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\23\0"
- "\0\0o\0\0\0\266\0\0\0\344\0\0\0\373\0\0\0\373\0\0\0\345\0\0\0\270\0\0"
- "\0t\0\0\0\31\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\205\0\0\0"
- "\373\207\207\207\377\300\300\300\377\323\323\323\377\326\326\326\377"
- "\325\325\325\377\322\322\322\377\275\275\275\377\204\204\204\377\0\0"
- "\0\374\0\0\0\217\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377[\210\262\377\0\0\0\377\324\324"
- "\324\377\342\342\342\377\365\365\365\377\374\374\374\377\374\374\374"
- "\377\374\374\374\377\373\373\373\377\363\363\363\377\354\354\354\377"
- "\341\341\341\377\220\220\220\377\0\0\0\324\0\0\0""6\0\0\0\3\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\236"
- "\270\321\377P\200\255\377\0\0\0\377\375\375\375\377\375\375\375\377\375"
- "\375\375\377\316\316\316\377\310\310\310\377\374\374\374\377\373\373"
- "\373\377\373\373\373\377\367\367\367\377\350\350\350\377\272\272\272"
- "\377\0\0\0\352\0\0\0\77\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\377\277\321\341"
- "\377\257\305\332\377\262\307\333\377\266\312\335\377\244\275\325\377"
- "\234\267\321\377P\200\255\377\10\15\21\377\375\375\375\377\375\375\375"
- "\377\277\277\277\377\270\270\270\377\373\373\373\377\373\373\373\377"
- "\372\372\372\377\371\371\371\377\370\370\370\377\350\350\350\377\301"
- "\301\301\377\0\0\0\330\0\0\0\32\0\0\0\4\0\0\0\0\0\0\0\377\302\322\341"
- "\377\240\272\323\377\234\267\321\377\232\265\317\377\240\272\323\377"
- "\234\267\321\377\227\263\316\377_\213\264\377\0\0\0\377\375\375\375\377"
- "\260\260\260\377\251\251\251\377\373\373\373\377\373\373\373\377\371"
- "\371\371\377\371\371\371\377\367\367\367\377\366\366\366\377\345\345"
- "\345\377\217\217\217\377\0\0\0\242\0\0\0\20\0\0\0\1\0\0\0\377\310\326"
- "\344\377\236\270\321\377\232\265\317\377\234\267\321\377\234\267\321"
- "\377\234\267\321\377\240\272\323\377\225\262\316\377Ly\243\377\0\0\0"
- "\377\241\241\241\377\231\231\231\377\373\373\373\377\372\372\372\377"
- "\371\371\371\377\370\370\370\377\367\367\367\377\365\365\365\377\363"
- "\363\363\377\350\350\350\377\0\0\0\374\0\0\0>\0\0\0\11\0\0\0\377g\213"
- "\254\377\77e\210\377\77e\210\377\77e\210\377\77e\210\377\77e\210\377"
- "\77e\210\377*C[\377\0\0\0\377\375\375\375\377\221\221\221\377\212\212"
- "\212\377\373\373\373\377\372\372\372\377\371\371\371\377\370\370\370"
- "\377\366\366\366\377\365\365\365\377\363\363\363\377\355\355\355\377"
- "\216\216\216\377\0\0\0\227\0\0\0\25\0\0\0\377d\207\247\3777Yx\3777Yx"
- "\3777Yx\377\77e\210\377\77e\210\377*C[\377\0\0\0\377\377\377\377\377"
- "\376\376\376\377\201\201\201\377zzz\377\373\373\373\377\371\371\371\377"
- "\370\370\370\377\367\367\367\377\365\365\365\377\364\364\364\377\362"
- "\362\362\377\357\357\357\377\323\323\323\377\0\0\0\314\0\0\0(\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\77e\210\377*C[\377\0\0\0\377"
- "\375\375\375\377\376\376\376\377\375\375\375\377rrr\377kkk\377\356\356"
- "\356\377\371\371\371\377\370\370\370\377\366\366\366\377\364\364\364"
- "\377\363\363\363\377\361\361\361\377\357\357\357\377\367\367\367\377"
- "\0\0\0\354\0\0\0""9\0\0\0\0\0\0\0\373\350\350\350\377\372\372\372\377"
- "\0\0\0\377*C[\377\0\0\0\377\374\374\374\377\374\374\374\377\374\374\374"
- "\377\374\374\374\377ccc\377[[[\377\313\313\313\377\345\345\345\377\367"
- "\367\367\377\365\365\365\377\364\364\364\377\362\362\362\377\273\273"
- "\273\377\356\356\356\377\370\370\370\377\0\0\0\374\0\0\0D\0\0\0\0\0\0"
- "\0\373\336\336\336\377\371\371\371\377\0\0\0\377\0\0\0\377\373\373\373"
- "\377\373\373\373\377\373\373\373\377\373\373\373\377\373\373\373\377"
- "\221\221\221\377LLL\377EEE\377bbb\377\300\300\300\377\335\335\335\377"
- "\362\362\362\377\361\361\361\377\265\265\265\377\355\355\355\377\370"
- "\370\370\377\0\0\0\374\0\0\0J\0\0\0\0\0\0\0\346\332\332\332\377\370\370"
- "\370\377\0\0\0\377\371\371\371\377\371\371\371\377\371\371\371\377\372"
- "\372\372\377\372\372\372\377\372\372\372\377\352\352\352\377\276\276"
- "\276\377ddd\377...\377'''\377III\377\361\361\361\377\357\357\357\377"
- "\355\355\355\377\371\371\371\377\367\367\367\377\0\0\0\355\0\0\0J\0\0"
- "\0\0\0\0\0\273\275\275\275\377\365\365\365\377\367\367\367\377\370\370"
- "\370\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\370"
- "\377\370\370\370\377\367\367\367\377\366\366\366\377\335\335\335\377"
- "\276\276\276\377WWW\377xxx\377\357\357\357\377\356\356\356\377\354\354"
- "\354\377\371\371\371\377\323\323\323\377\0\0\0\316\0\0\0D\0\0\0\0\0\0"
- "\0t\177\177\177\377\341\341\341\377\366\366\366\377\366\366\366\377\366"
- "\366\366\377\366\366\366\377\367\367\367\377\366\366\366\377\366\366"
- "\366\377\365\365\365\377\364\364\364\377\364\364\364\377\362\362\362"
- "\377\361\361\361\377\357\357\357\377\356\356\356\377\355\355\355\377"
- "\364\364\364\377\370\370\370\377\214\214\214\377\0\0\0\237\0\0\0""9\0"
- "\0\0\0\0\0\0\31\0\0\0\374\320\320\320\377\353\353\353\377\364\364\364"
- "\377\364\364\364\377\365\365\365\377\364\364\364\377\364\364\364\377"
- "\364\364\364\377\363\363\363\377\362\362\362\377\361\361\361\377\360"
- "\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377\354\354"
- "\354\377\370\370\370\377\361\361\361\377\0\0\0\374\0\0\0_\0\0\0(\0\0"
- "\0\0\0\0\0\2\0\0\0\217\211\211\211\377\324\324\324\377\362\362\362\377"
- "\362\362\362\377\362\362\362\377\362\362\362\377\362\362\362\377\361"
- "\361\361\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357"
- "\357\377\356\356\356\377\355\355\355\377\354\354\354\377\371\371\371"
- "\377\370\370\370\377\230\230\230\377\0\0\0\260\0\0\0H\0\0\0\25\0\0\0"
- "\0\0\0\0\0\0\0\0\10\0\0\0\324\253\253\253\377\323\323\323\377\360\360"
- "\360\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360\360"
- "\377\357\357\357\377\357\357\357\377\356\356\356\377\356\356\356\377"
- "\355\355\355\377\354\354\354\377\371\371\371\377\370\370\370\377\304"
- "\304\304\377\0\0\0\335\0\0\0Q\0\0\0.\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\1"
- "\0\0\0""6\0\0\0\352\253\253\253\377\322\322\322\377\344\344\344\377\356"
- "\356\356\377\356\356\356\377\356\356\356\377\256\256\256\377\255\255"
- "\255\377\355\355\355\377\354\354\354\377\353\353\353\377\370\370\370"
- "\377\370\370\370\377\302\302\302\377\0\0\0\355\0\0\0p\0\0\0<\0\0\0\20"
- "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\77\0\0\0\330\202\202\202"
- "\377\315\315\315\377\331\331\331\377\354\354\354\377\354\354\354\377"
- "\354\354\354\377\354\354\354\377\353\353\353\377\364\364\364\377\370"
- "\370\370\377\367\367\367\377\214\214\214\377\0\0\0\335\0\0\0q\0\0\0B"
- "\0\0\0\32\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"
- "\0\32\0\0\0\242\0\0\0\374\210\210\210\377\310\310\310\377\335\335\335"
- "\377\370\370\370\377\370\370\370\377\367\367\367\377\361\361\361\377"
- "\300\300\300\377\0\0\0\374\0\0\0\260\0\0\0Q\0\0\0<\0\0\0\32\0\0\0\5\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0"
- "\20\0\0\0>\0\0\0\227\0\0\0\314\0\0\0\354\0\0\0\374\0\0\0\374\0\0\0\355"
- "\0\0\0\316\0\0\0\237\0\0\0_\0\0\0H\0\0\0.\0\0\0\20\0\0\0\4\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\1\0\0\0\10\0\0\0\25\0\0\0(\0\0\0""9\0\0\0D\0\0\0J\0\0\0J\0\0\0D\0\0"
- "\0""9\0\0\0(\0\0\0\25\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\1\0\0\0\6\0\0\0\12\0\0\0\15\0\0\0\17\0\0\0\17\0\0\0\15\0\0\0\12"
- "\0\0\0\6\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_timer_stopped)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_timer_stopped[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_timer_stopped[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0"
- "\0o\0\0\0\266\0\0\0\344\0\0\0\373\0\0\0\373\0\0\0\345\0\0\0\270\0\0\0"
- "t\0\0\0\31\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\205\0\0\0\373\207"
- "\207\207\377\300\300\300\377\323\323\323\377\326\326\326\377\325\325"
- "\325\377\322\322\322\377\275\275\275\377\204\204\204\377\0\0\0\374\0"
- "\0\0\217\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0\314\223\223\223\377\324\324\324\377"
- "\342\342\342\377\365\365\365\377\374\374\374\377\374\374\374\377\374"
- "\374\374\377\373\373\373\377\363\363\363\377\354\354\354\377\341\341"
- "\341\377\220\220\220\377\0\0\0\324\0\0\0""6\0\0\0\3\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0\344\277\277\277\377\336\336"
- "\336\377\360\360\360\377\375\375\375\377\375\375\375\377\375\375\375"
- "\377\316\316\316\377\310\310\310\377\374\374\374\377\373\373\373\377"
- "\373\373\373\377\367\367\367\377\350\350\350\377\272\272\272\377\0\0"
- "\0\352\0\0\0\77\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\314\267\267\267\377\342\342\342\377\373\373\373\377\375\375\375\377"
- "\375\375\375\377\375\375\375\377\375\375\375\377\277\277\277\377\270"
- "\270\270\377\373\373\373\377\373\373\373\377\372\372\372\377\371\371"
- "\371\377\370\370\370\377\350\350\350\377\301\301\301\377\0\0\0\330\0"
- "\0\0\32\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\205\207\207\207\377\336"
- "\336\336\377\373\373\373\377\375\375\375\377\375\375\375\377\375\375"
- "\375\377\375\375\375\377\375\375\375\377\260\260\260\377\251\251\251"
- "\377\373\373\373\377\373\373\373\377\371\371\371\377\371\371\371\377"
- "\367\367\367\377\366\366\366\377\345\345\345\377\217\217\217\377\0\0"
- "\0\242\0\0\0\20\0\0\0\1\0\0\0\0\0\0\0\23\0\0\0\373\324\324\324\377\367"
- "\367\367\377\375\375\375\377\375\375\375\377\375\375\375\377\375\375"
- "\375\377\375\375\375\377\375\375\375\377\241\241\241\377\231\231\231"
- "\377\373\373\373\377\372\372\372\377\371\371\371\377\370\370\370\377"
- "\367\367\367\377\365\365\365\377\363\363\363\377\350\350\350\377\0\0"
- "\0\374\0\0\0>\0\0\0\11\0\0\0\0\0\0\0o\207\207\207\377\342\342\342\377"
- "\374\374\374\377\375\375\375\377\375\375\375\377\375\375\375\377\375"
- "\375\375\377\376\376\376\377\375\375\375\377\221\221\221\377\212\212"
- "\212\377\373\373\373\377\372\372\372\377\371\371\371\377\370\370\370"
- "\377\366\366\366\377\365\365\365\377\363\363\363\377\355\355\355\377"
- "\216\216\216\377\0\0\0\227\0\0\0\25\0\0\0\0\0\0\0\266\300\300\300\377"
- "\364\364\364\377\374\374\374\377\374\374\374\377\375\375\375\377\375"
- "\375\375\377\376\376\376\377\377\377\377\377\376\376\376\377\201\201"
- "\201\377zzz\377\373\373\373\377\371\371\371\377\370\370\370\377\367\367"
- "\367\377\365\365\365\377\364\364\364\377\362\362\362\377\357\357\357"
- "\377\323\323\323\377\0\0\0\314\0\0\0(\0\0\0\0\0\0\0\346\323\323\323\377"
- "\372\372\372\377\373\373\373\377\374\374\374\377\374\374\374\377\375"
- "\375\375\377\375\375\375\377\376\376\376\377\375\375\375\377rrr\377k"
- "kk\377\356\356\356\377\371\371\371\377\370\370\370\377\366\366\366\377"
- "\364\364\364\377\363\363\363\377\361\361\361\377\357\357\357\377\367"
- "\367\367\377\0\0\0\354\0\0\0""9\0\0\0\0\0\0\0\373\350\350\350\377\372"
- "\372\372\377\337\337\337\377\373\373\373\377\374\374\374\377\374\374"
- "\374\377\374\374\374\377\374\374\374\377\374\374\374\377ccc\377[[[\377"
- "\313\313\313\377\345\345\345\377\367\367\367\377\365\365\365\377\364"
- "\364\364\377\362\362\362\377\273\273\273\377\356\356\356\377\370\370"
- "\370\377\0\0\0\374\0\0\0D\0\0\0\0\0\0\0\373\336\336\336\377\371\371\371"
- "\377\332\332\332\377\372\372\372\377\373\373\373\377\373\373\373\377"
- "\373\373\373\377\373\373\373\377\373\373\373\377\221\221\221\377LLL\377"
- "EEE\377bbb\377\300\300\300\377\335\335\335\377\362\362\362\377\361\361"
- "\361\377\265\265\265\377\355\355\355\377\370\370\370\377\0\0\0\374\0"
- "\0\0J\0\0\0\0\0\0\0\346\332\332\332\377\370\370\370\377\371\371\371\377"
- "\371\371\371\377\371\371\371\377\371\371\371\377\372\372\372\377\372"
- "\372\372\377\372\372\372\377\352\352\352\377\276\276\276\377ddd\377."
- "..\377'''\377III\377\361\361\361\377\357\357\357\377\355\355\355\377"
- "\371\371\371\377\367\367\367\377\0\0\0\355\0\0\0J\0\0\0\0\0\0\0\273\275"
- "\275\275\377\365\365\365\377\367\367\367\377\370\370\370\377\370\370"
- "\370\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\370"
- "\377\367\367\367\377\366\366\366\377\335\335\335\377\276\276\276\377"
- "WWW\377xxx\377\357\357\357\377\356\356\356\377\354\354\354\377\371\371"
- "\371\377\323\323\323\377\0\0\0\316\0\0\0D\0\0\0\0\0\0\0t\177\177\177"
- "\377\341\341\341\377\366\366\366\377\366\366\366\377\366\366\366\377"
- "\366\366\366\377\367\367\367\377\366\366\366\377\366\366\366\377\365"
- "\365\365\377\364\364\364\377\364\364\364\377yyy\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\234"
- "\0\0\0\0\0\0\0\31\0\0\0\374\320\320\320\377\353\353\353\377\364\364\364"
- "\377\364\364\364\377\365\365\365\377\364\364\364\377\364\364\364\377"
- "\364\364\364\377\363\363\363\377\362\362\362\377\361\361\361\377\0\0"
- "\0\377\351\\\23\377\362g\37\377\356b\32\377\345Y\23\377\333T\22\377\322"
- "S\27\377\312R\33\377\276D\17\377\0\0\0\377\0\0\0\0\0\0\0\2\0\0\0\217"
- "\211\211\211\377\324\324\324\377\362\362\362\377\362\362\362\377\362"
- "\362\362\377\362\362\362\377\362\362\362\377\361\361\361\377\361\361"
- "\361\377\360\360\360\377\360\360\360\377\0\0\0\377\353a\33\377\376\362"
- "\353\377\374\346\333\377\350k,\377\337e)\377\370\342\330\377\373\361"
- "\355\377\300K\30\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\324\253"
- "\253\253\377\323\323\323\377\360\360\360\377\360\360\360\377\360\360"
- "\360\377\360\360\360\377\360\360\360\377\357\357\357\377\357\357\357"
- "\377\356\356\356\377\0\0\0\377\345[\26\377\372\337\322\377\377\377\377"
- "\377\372\346\334\377\372\344\331\377\377\377\377\377\364\334\322\377"
- "\275G\23\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0""6\0\0\0\352\253"
- "\253\253\377\322\322\322\377\344\344\344\377\356\356\356\377\356\356"
- "\356\377\356\356\356\377\256\256\256\377\255\255\255\377\355\355\355"
- "\377\0\0\0\377\335U\22\377\342d%\377\371\340\324\377\377\377\377\377"
- "\377\377\377\377\365\336\323\377\307U\"\377\271B\16\377\0\0\0\377\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\77\0\0\0\330\202\202\202\377\315\315"
- "\315\377\331\331\331\377\354\354\354\377\354\354\354\377\354\354\354"
- "\377\354\354\354\377\353\353\353\377\0\0\0\377\323O\21\377\332a)\377"
- "\371\343\331\377\377\377\377\377\377\377\377\377\366\344\333\377\304"
- "W(\377\265@\16\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5"
- "\0\0\0\32\0\0\0\242\0\0\0\374\210\210\210\377\310\310\310\377\335\335"
- "\335\377\370\370\370\377\370\370\370\377\367\367\367\377\0\0\0\377\312"
- "N\23\377\367\341\327\377\377\377\377\377\364\335\323\377\364\335\323"
- "\377\377\377\377\377\364\342\332\377\262B\23\377\0\0\0\377\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\227\0\0"
- "\0\314\0\0\0\354\0\0\0\374\0\0\0\374\0\0\0\355\0\0\0\377\302K\26\377"
- "\370\353\345\377\363\333\321\377\304S\"\377\300R\"\377\361\332\320\377"
- "\367\353\347\377\255A\25\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\25\0\0\0(\0\0\0""9\0\0\0D\0"
- "\0\0J\0\0\0J\0\0\0\377\267@\16\377\272E\23\377\270C\21\377\266@\16\377"
- "\263>\15\377\260>\20\377\253\77\23\377\2447\14\377\0\0\0\377\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
- "\0\6\0\0\0\12\0\0\0\15\0\0\0\17\0\0\0\17\0\0\0\206\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\177"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_trash)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_trash[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_trash[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0R\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
- "X\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\220\34\34"
- "\34\377vvv\377\346\346\346\377\323\323\323\377\303\303\303\377\220\220"
- "\220\377III\377\0\0\0\377\0\0\0\276\0\0\0,\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0E\0\0\0\240\0\0\0"
- "\377\0\0\0\377HG=\377\272\270\246\377\342\342\337\377\361\361\360\377"
- "\352\351\346\377\362\362\356\377\353\352\345\377\301\300\265\377WVJ\377"
- "RQF\377\0\0\0\377\0\0\0\377\0\0\0\227\0\0\0""3\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\377\250\246\217\377\275\273\241\377\300"
- "\276\243\377\243\241\212\377ml\\\377||r\377LLI\377EE\77\377DC:\377oo"
- "g\377\306\305\271\377\266\265\233\377ml]\377\263\261\233\377\247\246"
- "\216\377\220\217z\377\0\0\0\377\0\0\0E\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\377\252\251\223\377\314\313\265\377\320\316\272\377\325\323"
- "\301\377\256\255\243\377\224\223\212\377EDB\377##!\377541\377)(#\377"
- "\36\36\32\377SRF\377\255\254\223\377\222\221\211\377\302\301\257\377"
- "\261\257\226\377\254\252\222\377\223\222}\377\0\0\0\377\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\10\10\10\377\321\320\301\377\314\313\265\377\326\325"
- "\304\377\337\336\321\377\316\315\300\377\254\254\246\377\220\217\212"
- "\377~}w\377\\\\U\377GF>\377edV\377wve\377\200~o\377\276\275\247\377\265"
- "\263\232\377\266\265\233\377\265\263\232\377\241\237\210\377\0\0\0\377"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\331\330\314\377\366\365\362"
- "\377\333\332\321\377\332\331\316\377\345\344\331\377\320\317\303\377"
- "\323\323\311\377\312\311\274\377\267\266\246\377\270\266\241\377\260"
- "\257\226\377\241\237\210\377\271\270\235\377\271\267\235\377\270\266"
- "\234\377\304\302\251\377\257\255\227\377\213\211v\377\0\0\0\377\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\252\251\230\377\266\266\262\377"
- "\371\371\367\377\372\372\370\377\364\364\360\377\342\341\332\377\331"
- "\331\316\377\333\332\317\377\325\323\301\377\323\321\276\377\304\302"
- "\251\377\300\276\243\377\305\304\254\377\326\325\303\377\315\314\277"
- "\377\273\272\255\377|zi\377qp`\377\0\0\0\336\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\23\23\23\316\231\230\202\377\257\256\235\377\303\303\276\377"
- "\336\336\334\377\351\351\350\377\373\373\372\377\375\375\374\377\375"
- "\375\375\377\374\373\372\377\371\371\367\377\362\362\357\377\352\351"
- "\343\377\333\332\321\377\300\277\261\377\225\224\204\377xwf\377nm]\377"
- "[[M\377\0\0\0\315\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\222]\\O\377\223"
- "\222}\377\243\242\223\377\270\267\246\377\330\327\320\377\333\333\324"
- "\377\323\322\312\377\310\310\303\377\306\305\275\377\275\274\255\377"
- "\272\270\250\377\237\236\213\377\216\214x\377\214\213w\377\216\214x\377"
- "zyh\377lk]\377NME\377\0\0\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""2"
- "\0\0\0\377BBB\377{{s\377\237\237\226\377\322\321\307\377\334\333\322"
- "\377\314\313\276\377\321\320\302\377\304\303\266\377\261\257\226\377"
- "\261\257\226\377\261\257\226\377\232\230\203\377\200\177m\377}|k\377"
- "ji^\377@@>\377\0\0\0\377\0\0\0""3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\37777-\377\17\17\17\377874\377xxu\377\231\230\223\377\212"
- "\211~\377\263\262\244\377\252\252\236\377\243\241\212\377\207\206s\377"
- "\217\215y\377baU\377TTQ\37711.\377\0\0\0\377++#\377\0\0\0\377\0\0\0\17"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377qq]\377WWK\377BB:\377"
- "&&\40\377!!!\377\33\33\33\377\0\0\0\377$$$\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\26\26\23\377**\"\37700'\377\77\77""4\377\0\0\0\377"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377zze\377[[Q"
- "\377\205\205v\377vvk\377\230\230\216\377uuk\377QQF\377\177\177t\377j"
- "jX\377@@5\377bbQ\377TTE\377>>3\377UUF\37744+\377QQC\377\0\0\0\377\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\205\205n\377]"
- "]T\377\221\221\202\377\202\202x\377\252\252\243\377zzq\377NNE\377\212"
- "\212\200\377||m\377BB7\377``R\377ZZJ\377<<2\377NNA\37755,\377TTE\377"
- "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\3\0\0\0\377"
- "\205\205n\377[[Q\377\254\254\234\377\205\205{\377\273\273\263\377\243"
- "\243\232\377TTK\377\223\223\212\377\221\221\205\377BB7\377``R\377hhV"
- "\377AA6\377jjX\377CC7\377jjX\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\1\0\0\0\5\0\0\0\10\0\0\0\377\205\205n\377[[Q\377\244\244\223\377"
- "\205\205{\377\301\301\266\377\261\261\242\377kk_\377\261\261\242\377"
- "\235\235\213\377TTE\377\204\204p\377qq^\377CC7\377jjX\377CC7\377jjX\377"
- "\0\0\0\377\0\0\0\6\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\12\0\0\0\24\0\0\0\377"
- "\205\205n\377[[Q\377\245\245\224\377\205\205{\377\302\302\267\377\261"
- "\261\242\377kk_\377\261\261\242\377\235\235\213\377TTE\377\204\204p\377"
- "qq^\377CC7\377jjX\377CC7\377jjX\377\0\0\0\377\0\0\0\26\0\0\0\13\0\0\0"
- "\2\0\0\0\3\0\0\0\26\0\0\0+\0\0\0\377\205\205n\377[[Q\377\235\235\213"
- "\377\205\205{\377\301\301\266\377\261\261\242\377kk_\377\261\261\242"
- "\377\235\235\213\377TTE\377\204\204p\377qq^\377CC7\377jjX\377CC7\377"
- "jjX\377\0\0\0\377\0\0\0""1\0\0\0\32\0\0\0\4\0\0\0\7\0\0\0#\0\0\0I\0\0"
- "\0\377{{e\377[[Q\377\244\244\223\377\205\205{\377\301\301\266\377\261"
- "\261\242\377kk_\377\261\261\242\377\235\235\213\377TTE\377\204\204p\377"
- "qq^\377CC7\377jjX\377CC7\377__O\377\0\0\0\377\0\0\0H\0\0\0*\0\0\0\7\0"
- "\0\0\12\0\0\0,\0\0\0X\0\0\0\377ffT\377[[Q\377\244\244\223\377\202\202"
- "x\377\301\301\266\377\261\261\242\377kk_\377\261\261\242\377\235\235"
- "\213\377TTE\377\204\204p\377qq^\377CC7\377jjX\377II<\377WWH\377\0\0\0"
- "\377\0\0\0P\0\0\0*\0\0\0\7\0\0\0\6\0\0\0\35\0\0\0C\0\0\0r\0\0\0\377W"
- "WJ\377}}m\377vvi\377\263\263\250\377\241\241\224\377mma\377\263\263\245"
- "\377\235\235\213\377TTE\377\204\204p\377iiW\377AA5\377VVG\377DD8\377"
- "\0\0\0\377\0\0\0\177\0\0\0C\0\0\0\35\0\0\0\4\0\0\0\1\0\0\0\13\0\0\0\34"
- "\0\0\0""2\0\0\0g\0\0\0\320\0\0\0\377\0\0\0\377YYQ\377XXI\377NN@\377t"
- "tg\377aaS\377NNA\377II<\377II<\377\0\0\0\377\0\0\0\377\0\0\0\304\0\0"
- "\0t\0\0\0>\0\0\0%\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\17\0"
- "\0\0\31\0\0\0\37\0\0\0r\0\0\0\264\0\0\0\302\0\0\0\377\0\0\0\377\0\0\0"
- "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\271\0\0\0\217\0\0\0S\0\0\0,"
- "\0\0\0*\0\0\0\33\0\0\0\10\0\0\0\1\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_trash_full)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_trash_full[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_trash_full[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\10"
- "\10\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\6\6\6\21\6\6\6K\16\16\16\377BBB\377JJJ\377>>>\377,,,\377\0"
- "\0\0\377\6\6\6>\6\6\6!\0\0\0\0\0\0\0\0\0\0\0\0\10\10\10\377\10\10\10"
- "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\6\6\6:\0\0\0\377\0\0\0\377\205\203q\377\360\355\330\377\362\361\351"
- "\377\356\355\344\377\307\306\272\377SRF\377\0\0\0\377\0\0\0\377\6\6\6"
- "K\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\6\6\6>\20\20\20\377\302\300\245\377\301\277\245"
- "\377zyg\377HG@\377''%\37765.\377\207\205r\377\240\236\210\377\243\241"
- "\212\377\245\243\214\377\0\0\0\377\6\6\6!\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0+++\377\323\321\274"
- "\377\334\332\304\377\342\340\317\377\271\267\242\377db[\377986\377<<"
- "3\377a`S\377\232\230\203\377\267\265\233\377\263\262\230\377\244\242"
- "\213\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\10\10\377"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\350\344\323\377\364\361\351"
- "\377\362\361\344\377\352\351\332\377\345\342\322\377\325\322\276\377"
- "\303\301\247\377\257\255\224\377\300\276\244\377\306\304\254\377\270"
- "\266\234\377ywf\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\10\10\10\377\10\10\10\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\212\211"
- "u\377\361\355\322\377\373\370\351\377\371\365\355\377\370\367\356\377"
- "\370\367\354\377\365\363\346\377\354\352\331\377\336\335\313\377\0\0"
- "\0\377\0\0\0\377BA8\377\0\0\0\377\0\0\0\0\0\0\0>\0\0\0\377\0\0\0W\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\202RQF\377sqe\377"
- "\237\235\221\377\344\341\310\377\351\345\317\377\342\340\313\377\321"
- "\321\313\377\216\215\177\377\0\0\0\377\377\377\377\377\301\301\301\377"
- "\0\0\0\377\0\0\0\240\0\0\0L\0\0\0\377\377\377\377\377\0\0\0\377\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\37\33\377440\377"
- "KID\377hgb\377pof\377kkd\377nl]\377XWK\377++%\377\0\0\0\377\377\377\377"
- "\377\222\222\222\377\2\2\2\377\0\0\0\377\346\346\346\377\0\0\0\377\0"
- "\0\0>\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0**#\377"
- "\240\240\225\377MM@\377660\377**&\377//*\377\17\17\15\377\13\13\11\377"
- "\20\20\15\377(($\377\0\0\0\377\274\274\274\377nnn\377\355\355\355\377"
- "\0\0\0\377\0\0\0L\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0++$\377\245\244\231\377\267\266\256\377qpg\377\241\241\222"
- "\377tsc\377@@5\377ii[\377%%\36\377\34\34\34\377\354\354\354\377\317\317"
- "\317\377ooo\377\257\257\257\377\0\0\0\377\0\0\0!\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,,%\377\255\255\243\377\331"
- "\331\322\377\213\213\177\377\326\325\316\377\210\210{\377XWO\377\177"
- "\177u\377\0\0\0\377\336\336\336\377\377\377\377\377\336\336\336\377\336"
- "\336\336\377\311\311\311\377\0\0\0\377\0\0\0\77\0\0\0\1\0\0\0\1\0\0\0"
- "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6,,%\377\255\255\243\377\332"
- "\332\323\377\217\216\201\377\335\335\324\377\254\253\231\377]]R\377i"
- "i`\377mmm\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
- "\377\377\347\347\347\377\223\223\223\377\0\0\0\377\0\0\0+\0\0\0\13\0"
- "\0\0\7\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\5\0\0\0\21++$\377~~u\377\330\330"
- "\321\377\215\215\200\377\335\335\323\377\254\253\231\377PPG\377\30\30"
- "\30\377\311\311\311\377\307\340\307\377x\265x\377\233\310\233\377\377"
- "\377\377\377\347\347\347\377\306\306\306\377\0\0\0\377\0\0\0U\0\0\0\35"
- "\0\0\0\27\0\0\0\15\0\0\0\3\0\0\0\1\0\0\0\11\0\0\0\34''!\377CC=\377\216"
- "\216\206\377^^U\377\332\332\320\377\254\253\231\37755.\377]]]\377\324"
- "\347\324\377]\246]\377\307\340\307\377\377\377\377\377]\246]\377\215"
- "\272\215\377\345\345\345\377\206\206\206\377\0\0\0\377\0\0\0G\0\0\0'"
- "\0\0\0\31\0\0\0\10\0\0\0\1\0\0\0\11\0\0\0\34\4\4\4k\6\6\6\377\6\6\6\377"
- "BA:\377\217\217{\377zzl\377\0\0\0\377\304\304\304\377s\262s\377\307\340"
- "\307\377\377\377\377\377\377\377\377\377x\265x\377n\253n\377\345\345"
- "\345\377\220\220\220\377\0\0\0\377\0\0\0w\0\0\0.\0\0\0\"\0\0\0\16\0\0"
- "\0\1\0\0\0\5\0\0\0\23\0\0\0&\0\0\0""0\4\4\4y\6\6\6\377\0\0\0\377\17\17"
- "\17\377\0\0\0\377\327\327\327\377\377\377\377\377\377\377\377\377\377"
- "\377\377\377\377\377\377\377\377\377\377\377\364\364\364\377S\235S\377"
- "\277\277\277\377JJJ\377\0\0\0\377\0\0\0""1\0\0\0(\0\0\0\23\0\0\0\0\0"
- "\0\0\1\0\0\0\6\0\0\0\23\0\0\0\40\0\0\0)\0\0\0-\0\0\0.\0\0\0""0\0\0\0"
- "\377\354\354\354\377x\265x\377\377\377\377\377\377\377\377\377\307\340"
- "\307\377\377\377\377\377\272\323\272\377\212\270\212\377\212\267\212"
- "\377qqq\377\0\0\0\377\0\0\0""2\0\0\0*\0\0\0\27\0\0\0\0\0\0\0\0\0\0\0"
- "\1\0\0\0\3\0\0\0\12\0\0\0\21\0\0\0\26\0\0\0\33\0\0\0\"\0\0\0\377\254"
- "\254\254\377\354\354\354\377o\254o\377o\254o\377n\253n\377T\235T\377"
- "\262\314\262\377\212\270\212\377\222\222\222\377aaa\377\0\0\0\377\0\0"
- "\0""1\0\0\0'\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"
- "\0\0\0\2\0\0\0\10\0\0\0\22\0\0\0U\0\0\0\377\0\0\0\377iii\377\200\200"
- "\200\377}\220}\377\241\241\241\377\203\203\203\377zzz\377CCC\377\0\0"
- "\0\377\0\0\0w\0\0\0*\0\0\0\34\0\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\0\21\0\0\0""9\0\0\0p\0"
- "\0\0\234\0\0\0\304\0\0\0\377\0\0\0\377\0\0\0\377(((\377444\263888q\0"
- "\0\0#\0\0\0\32\0\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\14\0\0\0\21\0\0\0\23"
- "\0\0\0\24\0\0\0\26\0\0\0\26\0\0\0\26\0\0\0\25\0\0\0\25\0\0\0\24\0\0\0"
- "\17\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\6\0\0"
- "\0\6\0\0\0\7\0\0\0\10\0\0\0\7\0\0\0\6\0\0\0\6\0\0\0\4\0\0\0\2\0\0\0\1"
- "\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_volume)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_volume[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_volume[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0,\0\0\0\377\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0I@f\320I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\0\377"
- "\0\0\0\377\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0I@f\377I@f+\0\0\0\0I@f+I@f"
- "\252I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\0\377\256\253\237\377\0\0\0\377\0\0\0"
- "\21\0\0\0\2\0\0\0\0\0\0\0\0I@f+I@f\377I@f+\0\0\0\0I@f\213I@fO\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0o\0\0\0\377\256\253\237\377\334\331\323\377\0\0\0\377\0\0\0\221"
- "\0\0\0\4I@f\377I@f+\0\0\0\0I@f\252I@fO\0\0\0\0I@fcI@f\213\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\0\377\233\230\212\377\200~r"
- "\377\0\0\0\377\256\253\237\377\342\341\334\377\362\362\360\377\0\0\0"
- "\377\0\0\0\347\0\0\0\12I@f+I@f\377\0\0\0\0I@fOI@f\252\0\0\0\0I@f@I@f"
- "\252\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\22\0\0\0\377\343\342"
- "\335\377\266\266\261\377\0\0\0\377\356\355\352\377\352\352\346\377\305"
- "\301\267\377\0\0\0\377III\377\0\0\0\24\0\0\0\0I@f\377\0\0\0\0I@f+I@f"
- "\320\0\0\0\0I@f#I@f\320\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"
- "\30\0\0\0\377\260\254\234\377\222\216\201\377\0\0\0\377\315\312\301\377"
- "\270\264\246\377\277\273\257\377\0\0\0\377\11\11\11\377\0\0\0\30\0\0"
- "\0\0I@f\377\0\0\0\0\0\0\0\0I@f\377\0\0\0\0\0\0\0\0I@f\377\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\377\233\230\212\377\200~"
- "r\377\0\0\0\377\236\232\214\377\260\254\234\377\260\254\234\377\0\0\0"
- "\377+++\377\0\0\0\27\0\0\0\0I@f\377\0\0\0\0I@f+I@f\320\0\0\0\0I@f#I@"
- "f\320\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\377yvl\377"
- "dbY\377\0\0\0\377\236\232\214\377\236\232\214\377\236\232\214\377\0\0"
- "\0\377\10\10\10\376\0\0\0\27I@f+I@f\377\0\0\0\0I@fOI@f\252\0\0\0\0I@"
- "f@I@f\252\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\240\0\0\0\377\215\212}\377\236\232\214\377"
- "\0\0\0\377\0\0\0\300\0\0\0\30I@f\377I@f+\0\0\0\0I@f\252I@fO\0\0\0\0I"
- "@fYI@f\213\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\30\0\0\0>\0"
- "\0\0S\0\0\0S\0\0\0Q\0\0\0r\0\0\0\377~{p\377\0\0\0\377\0\0\0=\0\0\0\32"
- "\0\0\0\0\0\0\0\0I@f+I@f\320I@f+\0\0\0\0I@f\213I@fO\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\2\0\0\0\22\0\0\0/\0\0\0=\0\0\0;\0\0\0""8\0\0\0C"
- "\0\0\0o\0\0\0\377\0\0\0\377\0\0\0""1\0\0\0\26\0\0\0\0\0\0\0\0I@f\377"
- "I@f+\0\0\0\0I@f+I@f\213I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0"
- "\0\0\7\0\0\0\22\0\0\0\27\0\0\0\26\0\0\0\26\0\0\0%\0\0\0>\0\0\0l\0\0\0"
- "\377\0\0\0\"\0\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I@f\320"
- "I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2"
- "\0\0\0\3\0\0\0\3\0\0\0\4\0\0\0\15\0\0\0#\0\0\0;\0\0\0""8\0\0\0\30\0\0"
- "\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\3\0\0\0\15\0\0\0\37\0\0\0%\0\0\0\21\0\0\0\2\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\3\0\0\0\11\0\0\0\15\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_midi)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_midi[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_midi[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (2304) */
- "\0\0\11\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (96) */
- "\0\0\0`"
- /* width (24) */
- "\0\0\0\30"
- /* height (24) */
- "\0\0\0\30"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\24\0\0\0n\0\0\0\24\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\36\0\0"
- "\0\206\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0$\0\0\0^\0\0\0u\0\0\0\231\0\0\0\231\0\0\0Q\0\0\0<\0\0\0"
- "(\0\0\0\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0.\0\0\0\276\0\0\0X\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "^\0\0\0C\0\0\0u\0\0\0$\0\0\0\24\0\0\0E\0\0\0w\0\0\0}\0\0\0X\0\0\0""7"
- "\0\0\0\15\0\0\0A\0\0\0\225\0\0\0""8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\271\0\0\0$\0\0\0"
- "\177\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0\0>\0\0\0\201\0\0\0\311"
- "\0\0\0\200\0\0\0G\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0E\0\0\0\364\0\0\0b\0\0\0\362\0\0\0"
- "U\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\355\377\377\377\377\0\0\0\355\377\377\377\377"
- "\0\0\0\356\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\376\250\250\250\377\0\0\0\355\267\267"
- "\267\377\0\0\0\356\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0{\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0z\0\0\0\0\0\0\0\0\0\0\0\377\323\321\316\377\274\272\265"
- "\377\254\252\244\377\230\226\217\377\230\226\217\377\230\226\217\377"
- "\230\226\217\377\230\226\217\377\230\226\217\377\230\226\217\377\230"
- "\226\217\377\230\226\217\377\230\226\217\377\230\226\217\377\230\226"
- "\217\377\230\226\217\377\230\226\217\377zxr\377b`[\377USO\377\0\0\0\377"
- "\0\0\0\23\0\0\0\0\0\0\0\377\257\255\251\377\234\232\225\377\204\202|"
- "\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377f"
- "d]\377fd]\377fd]\377fd]\377fd]\377RPJ\377RPJ\377A@;\377\0\0\0\377\0\0"
- "\0,\0\0\0\3\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0""6\0\0\0\7\0\0\0\377\315\315\315\377VVV\377"
- "\0\0\0\377\312\312\312\377VVV\377\0\0\0\377\310\310\310\377VVV\377\0"
- "\0\0\377\305\305\305\377\302\302\302\377\271\271\271\377\303\303\303"
- "\377VVV\377\0\0\0\377\300\300\300\377VVV\377\0\0\0\377\276\276\276\377"
- "\270\270\270\377\0\0\0\377\0\0\0\77\0\0\0\14\0\0\0\377\377\377\377\377"
- "kkk\377\0\0\0\377\374\374\374\377kkk\377\0\0\0\377\370\370\370\377kk"
- "k\377\0\0\0\377\366\366\366\377\361\361\361\377\346\346\346\377\362\362"
- "\362\377kkk\377\0\0\0\377\360\360\360\377kkk\377\0\0\0\377\355\355\355"
- "\377\346\346\346\377\0\0\0\377\0\0\0E\0\0\0\22\0\0\0\377\377\377\377"
- "\377kkk\377\0\0\0\377\373\373\373\377kkk\377\0\0\0\377\367\367\367\377"
- "kkk\377\0\0\0\377\365\365\365\377\361\361\361\377\345\345\345\377\362"
- "\362\362\377kkk\377\0\0\0\377\357\357\357\377kkk\377\0\0\0\377\354\354"
- "\354\377\345\345\345\377\0\0\0\377\0\0\0D\0\0\0\23\0\0\0\377\377\377"
- "\377\377kkk\377\0\0\0\377\372\372\372\377kkk\377\0\0\0\377\367\367\367"
- "\377kkk\377\0\0\0\377\365\365\365\377\360\360\360\377\344\344\344\377"
- "\362\362\362\377kkk\377\0\0\0\377\356\356\356\377kkk\377\0\0\0\377\353"
- "\353\353\377\344\344\344\377\0\0\0\377\0\0\0D\0\0\0\20\0\0\0\377\376"
- "\376\376\377NNN\377\0\0\0\377\372\372\372\377NNN\377\0\0\0\377\366\366"
- "\366\377NNN\377\0\0\0\377\365\365\365\377\357\357\357\377\344\344\344"
- "\377\361\361\361\377NNN\377\0\0\0\377\356\356\356\377NNN\377\0\0\0\377"
- "\353\353\353\377\343\343\343\377\0\0\0\377\0\0\0D\0\0\0\16\0\0\0\377"
- "\375\375\375\377\374\374\374\377\360\360\360\377\372\372\372\377\367"
- "\367\367\377\354\354\354\377\366\366\366\377\363\363\363\377\347\347"
- "\347\377\364\364\364\377\356\356\356\377\343\343\343\377\360\360\360"
- "\377\352\352\352\377\336\336\336\377\356\356\356\377\346\346\346\377"
- "\332\332\332\377\353\353\353\377\343\343\343\377\0\0\0\377\0\0\0D\0\0"
- "\0\16\0\0\0\377\374\374\374\377\373\373\373\377\357\357\357\377\372\372"
- "\372\377\366\366\366\377\353\353\353\377\366\366\366\377\362\362\362"
- "\377\347\347\347\377\363\363\363\377\356\356\356\377\342\342\342\377"
- "\360\360\360\377\351\351\351\377\336\336\336\377\355\355\355\377\345"
- "\345\345\377\331\331\331\377\352\352\352\377\342\342\342\377\0\0\0\377"
- "\0\0\0D\0\0\0\16\0\0\0\377\374\374\374\377\373\373\373\377\370\370\370"
- "\377\373\373\373\377\373\373\373\377\366\366\366\377\373\373\373\377"
- "\371\371\371\377\366\366\366\377\371\371\371\377\370\370\370\377\363"
- "\363\363\377\370\370\370\377\366\366\366\377\361\361\361\377\370\370"
- "\370\377\364\364\364\377\360\360\360\377\370\370\370\377\341\341\341"
- "\377\0\0\0\377\0\0\0D\0\0\0\16\0\0\0\377\301\301\301\377\300\300\300"
- "\377\267\267\267\377\301\301\301\377\275\275\275\377\270\270\270\377"
- "\275\275\275\377\272\272\272\377\264\264\264\377\272\272\272\377\270"
- "\270\270\377\251\251\251\377\272\272\272\377\263\263\263\377\251\251"
- "\251\377\266\266\266\377\257\257\257\377\246\246\246\377\264\264\264"
- "\377\255\255\255\377\0\0\0\377\0\0\0D\0\0\0\16\0\0\0n\0\0\0\377\0\0\0"
- "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
- "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\227\0\0\0\77\0"
- "\0\0\14\0\0\0\6\0\0\0#\0\0\0>\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0"
- "\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0"
- "\0\0D\0\0\0D\0\0\0D\0\0\0\77\0\0\0#\0\0\0\6\0\0\0\1\0\0\0\6\0\0\0\14"
- "\0\0\0\15\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0"
- "\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0"
- "\0\0\16\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\6\0\0\0\1"};
-
-
-/* GdkPixbuf RGBA C-Source image dump */
-
-#ifdef __SUNPRO_C
-#pragma align 4 (stock_authentication)
-#endif
-#ifdef __GNUC__
-static const guint8 stock_authentication[] __attribute__ ((__aligned__ (4))) =
-#else
-static const guint8 stock_authentication[] =
-#endif
-{ ""
- /* Pixbuf magic (0x47646b50) */
- "GdkP"
- /* length: header (24) + pixel_data (9216) */
- "\0\0$\30"
- /* pixdata_type (0x1010002) */
- "\1\1\0\2"
- /* rowstride (192) */
- "\0\0\0\300"
- /* width (48) */
- "\0\0\0""0"
- /* height (48) */
- "\0\0\0""0"
- /* pixel_data: */
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\3"
- "\0\0\0\4\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\1\0\0"
- "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\1\0\0\0\2\0\0\0\4\0\0\0\7\0\0\0\12\0\0\0\16\0\0\0\21\0\0\0\23\0\0"
- "\0\23\0\0\0\23\0\0\0\21\0\0\0\16\0\0\0\12\0\0\0\7\0\0\0\4\0\0\0\2\0\0"
- "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\10\0\0"
- "\0\16\0\0\0g\0\0\0\253\0\0\0\332\0\0\0\366\1\1\1\377\0\0\0\366\0\0\0"
- "\334\0\0\0\260\0\0\0q\0\0\0\36\0\0\0\25\0\0\0\16\0\0\0\10\0\0\0\4\0\0"
- "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\14\0\0\0\203\0\0\0\354"
- "\1\1\1\377\233\233\233\377\320\320\320\377\343\343\343\377\351\351\351"
- "\377\335\335\335\377\306\306\306\377\221\221\221\377\1\1\1\377\0\0\0"
- "\356\0\0\0\221\0\0\0#\0\0\0\27\0\0\0\15\0\0\0\5\0\0\0\2\0\0\0\1\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0"
- "\0\0\7\0\0\0>\0\0\0\320\1\1\1\377\276\276\276\377\352\352\352\377\361"
- "\361\361\377\363\363\363\377\361\361\361\377\355\355\355\377\352\352"
- "\352\377\346\346\346\377\342\342\342\377\330\330\330\377\234\234\234"
- "\377\1\1\1\377\0\0\0\330\0\0\0W\0\0\0\36\0\0\0\20\0\0\0\7\0\0\0\2\0\0"
- "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\7"
- "\0\0\0R\0\0\0\366```\377\343\343\343\377\363\363\363\377\360\360\360"
- "\377\354\354\354\377\346\346\346\377\344\344\344\377\343\343\343\377"
- "\342\342\342\377\342\342\342\377\342\342\342\377\341\341\341\377\326"
- "\326\326\377\267\267\267\377EEE\377\0\0\0\367\0\0\0m\0\0\0\"\0\0\0\22"
- "\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
- "\0\5\0\0\0>\0\0\0\366\205\205\205\377\354\354\354\377\363\363\363\377"
- "\352\352\352\377\343\343\343\377\331\331\331\377\316\316\316\377\302"
- "\302\302\377\302\302\302\377\314\314\314\377\325\325\325\377\334\334"
- "\334\377\340\340\340\377\335\335\335\377\310\310\310\377\271\271\271"
- "\377bbb\377\0\0\0\370\0\0\0Y\0\0\0!\0\0\0\17\0\0\0\5\0\0\0\1\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\15\0\0\0\320^^^\377\354\354\354"
- "\377\363\363\363\377\350\350\350\377\334\334\334\377\274\274\274\370"
- "XXX\360\24\24\24\341\0\0\0\333\0\0\0\326\0\0\0\324{{{\352\276\276\276"
- "\366\340\340\340\377\337\337\337\377\334\334\334\377\303\303\303\377"
- "\273\273\273\377LLL\377\0\0\0\273\0\0\0""5\0\0\0\33\0\0\0\13\0\0\0\3"
- "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\203\1\1\1\377\342\342"
- "\342\377\363\363\363\377\351\351\351\377\330\330\330\377\227\227\227"
- "\354\0\0\0\352\0\0\0\274\0\0\0g\0\0\0Y\0\0\0S\0\0\0Q\0\0\0Y\0\0\0\305"
- "\234\234\234\351\335\335\335\371\340\340\340\377\330\330\330\377\273"
- "\273\273\377\266\266\266\377\1\1\1\377\0\0\0x\0\0\0*\0\0\0\23\0\0\0\7"
- "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\3\0\0\0\15\0\0\0\354\271\271\271\377\363"
- "\363\363\377\353\353\353\377\330\330\330\377\212\212\212\356\0\0\0\342"
- "\0\0\0}\0\0\0W\0\0\0F\0\0\0""9\0\0\0""0\0\0\0.\0\0\0""1\0\0\0;\0\0\0"
- "\224\222\222\222\337\333\333\333\367\337\337\337\377\316\316\316\377"
- "\263\263\263\377\223\223\223\377\0\0\0\313\0\0\0:\0\0\0\36\0\0\0\13\0"
- "\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0E\1\1\1\377\352\352\352\377\361\361"
- "\361\377\335\335\335\377\300\300\300\377\2\2\2\350\0\0\0\214\0\0\0T\0"
- "\0\0<\0\0\0)\0\0\0\34\0\0\0\25\0\0\0\23\0\0\0\26\0\0\0\37\0\0\0.\0\0"
- "\0\240\242\242\242\337\345\345\345\377\335\335\335\377\300\300\300\377"
- "\266\266\266\377\1\1\1\377\0\0\0a\0\0\0)\0\0\0\22\0\0\0\5\0\0\0\1\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\2\0\0\0\11\0\0\0p\240\240\240\377\361\361\361\377\350\350\350\377"
- "\306\306\306\377\201\201\201\354\0\0\0\322\0\0\0Z\0\0\0>\0\0\0%\0\0\0"
- "\24\0\0\0\13\0\0\0\7\0\0\0\5\0\0\0\7\0\0\0\15\0\0\0\30\0\0\0""0\2\2\2"
- "\313\334\334\334\357\352\352\352\377\321\321\321\377\256\256\256\377"
- "vvv\377\0\0\0\220\0\0\0""4\0\0\0\30\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\14"
- "\0\0\0\223\320\320\320\377\362\362\362\377\331\331\331\377\300\300\300"
- "\377///\345\0\0\0\213\0\0\0J\0\0\0,\0\0\0\25\0\0\0\11\0\0\0\3\0\0\0\1"
- "\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\13\0\0\0\31\0\0\0n\202\202\202\340\356"
- "\356\356\377\334\334\334\377\265\265\265\377\237\237\237\377\0\0\0\274"
- "\0\0\0>\0\0\0\37\0\0\0\13\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\16\0\0\0\325\341\341\341"
- "\377\361\361\361\377\314\314\314\377\300\300\300\377\17\17\17\331\0\0"
- "\0e\0\0\0=\0\0\0\40\0\0\0\16\0\0\0\5\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\1"
- "\0\0\0\2\0\0\0\5\0\0\0\17\0\0\0#\37\37\37\323\354\354\354\377\342\342"
- "\342\377\300\300\300\377\250\250\250\377\0\0\0\325\0\0\0G\0\0\0%\0\0"
- "\0\16\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\2\0\0\0\7\0\0\0\24\0\0\0\336\346\346\346\377\357\357\357\377"
- "\313\313\313\377\267\267\267\377\0\0\0\322\0\0\0W\0\0\0""6\0\0\0\34\0"
- "\0\0\15\0\0\0\10\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\10\0\0"
- "\0\16\0\0\0\35\0\0\0\301\351\351\351\377\345\345\345\377\305\305\305"
- "\377\256\256\256\377\0\0\0\360\0\0\0O\0\0\0.\0\0\0\25\0\0\0\10\0\0\0"
- "\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\6\0\0\0"
- "\17\0\0\0\37\0\0\0\354\332\332\332\377\353\353\353\377\312\312\312\377"
- "\253\253\253\377\0\0\0\322\0\0\0Y\0\0\0<\0\0\0%\0\0\0\32\0\0\0\26\0\0"
- "\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\26\0\0\0\32\0\0\0&\0"
- "\0\0\300\344\344\344\377\343\343\343\377\312\312\312\377\255\254\252"
- "\377\0\0\0\371\0\0\0Y\0\0\0;\0\0\0\"\0\0\0\23\0\0\0\12\0\0\0\5\0\0\0"
- "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5""1\26\7f7\31\10\3777\31\10\377"
- "7\31\10\377\234R\27\377\270n%\377\271k&\377\247Z\34\3777\31\10\3777\31"
- "\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10"
- "\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\377"
- "7\31\10\377\245^\37\377\274s*\377\270o'\377\227U\32\3777\31\10\3777\31"
- "\10\3777\31\10\3777\31\10\377%\20\5_\0\0\0\33\0\0\0\16\0\0\0\5\0\0\0"
- "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12""7\31\10\377\311\234b\377\364\341\313"
- "\377\364\340\311\377\357\333\276\377\354\325\267\377\353\322\264\377"
- "\352\322\263\377\353\317\260\377\351\316\256\377\350\314\253\377\347"
- "\314\250\377\350\307\241\377\346\306\241\377\346\306\241\377\346\306"
- "\241\377\346\306\241\377\346\306\241\377\350\307\241\377\350\307\241"
- "\377\346\306\241\377\345\305\240\377\345\305\240\377\343\302\232\377"
- "\340\300\233\377\340\275\223\377\337\272\222\377\337\272\216\377\335"
- "\263\206\377\325\254|\377\242a\33\3777\31\10\377\0\0\0""1\0\0\0\32\0"
- "\0\0\12\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\20""7\31\10\377\365\346\320"
- "\377\352\323\257\377\352\317\257\377\343\302\232\377\332\270\213\377"
- "\332\266\207\377\330\260\201\377\326\256\177\377\323\253|\377\321\251"
- "t\377\317\245n\377\314\243m\377\312\237g\377\312\237g\377\312\237g\377"
- "\312\237g\377\312\237g\377\312\237g\377\312\237g\377\310\236g\377\306"
- "\233c\377\302\230a\377\302\223[\377\277\220R\377\274\210K\377\275\204"
- "@\377\272~=\377\263v4\377\247j\"\377\215S\24\3777\31\10\377\0\0\0E\0"
- "\0\0&\0\0\0\17\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\23""7\31\10\377\365"
- "\344\316\377\351\316\256\377\347\315\250\377\337\275\220\377\330\261"
- "\203\377\325\255~\377\322\252{\377\322\246w\377\320\247q\377\315\243"
- "l\377\310\237h\377\305\233d\377\304\231a\377\304\231a\377\304\231a\377"
- "\305\232b\377\305\232b\377\305\232b\377\305\232b\377\304\231a\377\302"
- "\230]\377\301\224Z\377\277\220T\377\276\216O\377\274\207I\377\272\202"
- "\77\377\272~=\377\261t2\377\247j\"\377\213R\24\3777\31\10\377\0\0\0Q"
- "\0\0\0.\0\0\0\23\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\24""7\31\10\377\365"
- "\346\320\377\353\317\260\377\351\316\256\377\340\277\227\377\333\264"
- "\206\377\330\260\201\377\327\257\200\377\322\254{\377\322\246w\377\320"
- "\246o\377\314\243m\377\265\216\\\377\240~P\377\232yM\377\232yM\377\262"
- "\214Y\377\307\234d\377\307\234d\377\307\234d\377\305\232b\377\302\227"
- "_\377\302\223[\377\277\220T\377\276\216O\377\274\204A\377\272\202\77"
- "\377\265|8\377\257s,\377\243f\36\377\207P\24\3777\31\10\377\0\0\0W\0"
- "\0\0""2\0\0\0\25\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365"
- "\344\316\377\352\317\257\377\350\315\251\377\337\274\222\377\325\255"
- "~\377\322\253}\377\322\252{\377\320\253u\377\320\246o\377\315\243l\377"
- "\263\216]\377\224tJ\377w^<\377\40\31\20\377\0\0\0\377\40\31\20\377y`"
- ">\377\310\237h\377\312\237g\377\307\235f\377\305\233d\377\304\231a\377"
- "\302\230]\377\277\221V\377\276\216O\377\276\206E\377\274\203\77\377\266"
- "|7\377\252l#\377\215U\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0"
- "\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\344\316\377\351\316"
- "\256\377\350\316\251\377\341\274\224\377\332\264\207\377\330\262\201"
- "\377\327\257\200\377\322\252{\377\320\250s\377\317\245n\377\222tM\377"
- "z`>\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377y`\77\377\312"
- "\237g\377\305\233d\377\305\232b\377\302\227_\377\301\224Z\377\276\217"
- "Q\377\274\207I\377\272\201=\377\267~:\377\263y4\377\246i!\377\213R\24"
- "\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5"
- "\0\0\0\25""7\31\10\377\364\341\313\377\350\315\251\377\345\311\244\377"
- "\335\272\220\377\325\255~\377\322\252{\377\322\252{\377\322\245u\377"
- "\321\247p\377\314\243m\377\225uL\377\40\32\20\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377!\32\20\377\327\267\216\377\310\236g\377"
- "\306\233c\377\304\231a\377\302\227_\377\277\221V\377\275\214L\377\274"
- "\210E\377\273\202>\377\266|7\377\251k\"\377\215S\24\3777\31\10\377\0"
- "\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10"
- "\377\365\344\316\377\351\315\254\377\347\313\246\377\337\274\222\377"
- "\330\260\201\377\326\256\177\377\322\253}\377\322\252{\377\321\245r\377"
- "\315\243l\377\226wN\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
- "\377\0\0\0\377\0\0\0\377\341\313\255\377\307\235f\377\304\231a\377\302"
- "\227_\377\300\223Y\377\276\217Q\377\275\214L\377\274\205C\377\272~=\377"
- "\263x2\377\247j\"\377\213R\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25"
- "\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313\377\350"
- "\314\247\377\345\312\244\377\334\271\217\377\326\256\177\377\323\253"
- "|\377\322\252{\377\322\245u\377\317\245n\377\312\241k\377\225uL\377\40"
- "\31\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\40\31\17"
- "\377\336\306\247\377\302\230a\377\301\222V\377\277\220T\377\275\215N"
- "\377\274\207I\377\272\202\77\377\265}:\377\265x6\377\255r,\377\244f\35"
- "\377\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\344\316\377\351\315\254\377\347"
- "\313\246\377\335\272\220\377\325\255~\377\322\253y\377\321\250r\377\317"
- "\245n\377\312\241k\377\310\237h\377\305\232b\377u\\8\377\0\0\0\377\0"
- "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377u[7\377\335\307\247\377\302\223"
- "[\377\301\222V\377\277\220R\377\276\216O\377\274\210K\377\274\203\77"
- "\377\267\177<\377\266|7\377\260u/\377\244h!\377\211Q\24\3777\31\10\377"
- "\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10"
- "\377\365\346\320\377\352\317\257\377\351\316\252\377\341\274\224\377"
- "\333\264\206\377\332\263\205\377\332\263\205\377\326\256\177\377\322"
- "\253y\377\320\250s\377\317\245n\377\314\243m\377z`>\377!\32\20\377\0"
- "\0\0\377\40\32\21\377\222~c\377\343\317\263\377\324\263\210\377\306\233"
- "c\377\302\230]\377\301\224Z\377\277\220T\377\275\214L\377\273\204D\377"
- "\267\177<\377\266z9\377\261v0\377\244h!\377\213R\24\3777\31\10\377\0"
- "\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10"
- "\377\364\341\313\377\351\316\252\377\345\311\244\377\332\270\213\377"
- "\322\254w\377\322\245u\377\321\250r\377\315\244n\377\312\241k\377\310"
- "\236g\377\304\231a\377\302\230]\377\245}M\377\0\0\0\377\0\0\0\377\0\0"
- "\0\377\331\277\236\377\312\243q\377\304\231a\377\302\230a\377\302\223"
- "[\377\277\221V\377\277\220T\377\275\214L\377\274\210E\377\272\202\77"
- "\377\267}8\377\263x2\377\255o&\377\211Q\24\3777\31\10\377\0\0\0X\0\0"
- "\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365"
- "\344\316\377\351\316\252\377\347\313\246\377\334\271\217\377\326\256"
- "\177\377\323\253|\377\322\252{\377\322\245u\377\320\246o\377\312\241"
- "k\377\310\236g\377\272\223^\377\225tJ\377\0\0\0\377\0\0\0\377\0\0\0\377"
- "\305\263\233\377\304\231a\377\304\231a\377\302\230a\377\301\222V\377"
- "\277\221V\377\276\216O\377\274\207I\377\274\203\77\377\267~:\377\265"
- "y8\377\255v.\377\257r*\377\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0"
- "\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\346\320\377"
- "\352\317\257\377\351\316\252\377\341\275\226\377\333\264\206\377\330"
- "\260\201\377\326\256\177\377\322\254{\377\320\250s\377\315\243l\377\312"
- "\240i\377\265\217]\377\203fA\377\0\0\0\377\0\0\0\377\0\0\0\377\217uT"
- "\377\336\306\247\377\304\231a\377\302\230]\377\301\222V\377\277\220T"
- "\377\275\215N\377\274\211G\377\274\203\77\377\267~:\377\265y8\377\257"
- "s,\377\275\202B\377\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0"
- "\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313\377\347"
- "\314\250\377\346\306\241\377\333\270\216\377\323\253|\377\322\253y\377"
- "\321\247v\377\320\246o\377\314\242k\377\312\237g\377\305\232b\377\264"
- "\215Y\377lT3\377\0\0\0\377\0\0\0\377\0\0\0\377mU6\377\336\306\247\377"
- "\304\231a\377\302\230a\377\302\223[\377\301\222V\377\277\220R\377\274"
- "\210K\377\273\204D\377\272~=\377\264{7\377\261v0\377\300\215Q\377\211"
- "N\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
- "\0\5\0\0\0\25""7\31\10\377\364\340\311\377\347\313\246\377\346\306\241"
- "\377\334\263\207\377\321\253v\377\321\245r\377\320\246o\377\315\243l"
- "\377\310\237h\377\304\231a\377\262\213W\377\254\203N\377\77""0\34\377"
- "\0\0\0\377\0\0\0\377\0\0\0\377@2\36\377\322\275\237\377\310\242q\377"
- "\302\223[\377\277\221V\377\277\220T\377\275\215N\377\274\211G\377\270"
- "\200=\377\265|8\377\265x6\377\257t.\377\300\215Q\377\206L\23\3777\31"
- "\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25"
- "7\31\10\377\364\341\313\377\346\312\245\377\346\306\241\377\333\264\206"
- "\377\321\253v\377\320\247q\377\317\245n\377\312\241k\377\310\236g\377"
- "\304\231a\377\262\207S\377\232uE\377\77""0\34\377\0\0\0\377\0\0\0\377"
- "\0\0\0\377\77""0\34\377\211h>\377\332\301\240\377\275\216P\377\275\215"
- "N\377\274\210K\377\273\204D\377\272\202\77\377\267~:\377\264{7\377\261"
- "w2\377\255q*\377\312\235c\377\207M\24\3777\31\10\377\0\0\0X\0\0\0""3"
- "\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313"
- "\377\350\314\247\377\344\310\243\377\332\270\215\377\323\253|\377\322"
- "\246w\377\320\253u\377\320\246o\377\313\242l\377\310\237h\377\267\217"
- "[\377\177c\77\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377r"
- "Y8\377\323\263\211\377\302\230a\377\301\222V\377\277\221V\377\276\217"
- "Q\377\274\210K\377\274\204A\377\265}:\377\265|8\377\261v0\377\314\237"
- "i\377\211Q\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\344\316\377\350\315\251\377\345"
- "\311\244\377\334\271\217\377\325\255~\377\322\252{\377\322\253y\377\321"
- "\247p\377\317\245n\377\312\241k\377\310\237h\377\305\232b\377\305\232"
- "b\377\305\232b\377\305\232b\377\305\232b\377\305\232b\377\305\232b\377"
- "\305\232b\377\304\231a\377\302\223[\377\277\221V\377\277\220R\377\274"
- "\207I\377\274\203\77\377\267~:\377\270\177;\377\274\202=\377\316\241"
- "k\377\211N\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313\377\350\313\245\377\345"
- "\311\244\377\332\270\213\377\322\252{\377\322\245u\377\321\247p\377\315"
- "\244n\377\312\237g\377\307\234d\377\304\231a\377\301\227\\\377\300\223"
- "Y\377\300\222W\377\300\222W\377\300\222W\377\300\222W\377\300\222W\377"
- "\300\222W\377\277\221V\377\277\220R\377\276\216O\377\274\211G\377\273"
- "\204D\377\271\201>\377\265|8\377\270\177;\377\274\205E\377\315\240j\377"
- "\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"
- "\0\0\0\5\0\0\0\25""7\31\10\377\364\340\311\377\346\311\243\377\345\305"
- "\240\377\331\270\210\377\323\246v\377\320\247q\377\317\245n\377\313\242"
- "l\377\312\237g\377\306\233c\377\305\232b\377\304\231a\377\302\230]\377"
- "\302\230a\377\302\230a\377\304\231a\377\304\231a\377\305\232b\377\305"
- "\232b\377\304\231a\377\301\224Z\377\300\223Y\377\277\220T\377\274\214"
- "M\377\274\211G\377\276\212M\377\304\231a\377\276\213O\377\307\235`\377"
- "\211N\24\3777\31\10\377\0\0\0W\0\0\0""3\0\0\0\25\0\0\0\5\0\0\0\1\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"
- "\0\0\0\5\0\0\0\24""7\31\10\377\364\340\311\377\346\310\241\377\341\303"
- "\234\377\332\263\205\377\321\245r\377\317\245n\377\315\243l\377\310\237"
- "h\377\305\233d\377\302\231_\377\302\223[\377\300\222W\377\277\221V\377"
- "\277\221V\377\300\222W\377\302\223[\377\301\227\\\377\305\232b\377\310"
- "\236g\377\315\243l\377\315\243l\377\316\241k\377\316\241k\377\322\253"
- "y\377\322\252w\377\321\245r\377\324\247s\377\277\212L\377\261s0\377\207"
- "M\24\3777\31\10\377\0\0\0T\0\0\0""0\0\0\0\24\0\0\0\5\0\0\0\1\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
- "\0\5\0\0\0\22""3\27\7\301\262u-\377\307\235`\377\304\232]\377\275\214"
- "L\377\272~=\377\270~9\377\266z9\377\265x6\377\263u2\377\257w.\377\255"
- "r,\377\254t+\377\252r)\377\252r)\377\252r)\377\256q)\377\256q)\377\256"
- "q)\377\256q)\377\252r)\377\251m&\377\252l#\377\245i\"\377\243g\40\377"
- "\242e\35\377\236a\31\377\233_\30\377\231]\26\377\222V\25\377X0\15\377"
- "&\21\5\264\0\0\0K\0\0\0*\0\0\0\21\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\16"
- "+\23\6q1\26\7\3077\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10"
- "\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\377"
- "7\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31"
- "\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10"
- "\3777\31\10\3777\31\10\3777\31\10\3777\31\10\377&\21\5\264\14\5\1e\0"
- "\0\0;\0\0\0\40\0\0\0\14\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\11\0\0\0\30"
- "\0\0\0,\0\0\0A\0\0\0O\0\0\0U\0\0\0W\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0"
- "X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0"
- "\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0W\0\0\0S\0"
- "\0\0K\0\0\0;\0\0\0'\0\0\0\24\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0"
- "\0\4\0\0\0\15\0\0\0\30\0\0\0$\0\0\0,\0\0\0""0\0\0\0""3\0\0\0""3\0\0\0"
- "3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0"
- "\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3"
- "\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""2\0\0\0""0\0\0\0"
- "*\0\0\0\40\0\0\0\24\0\0\0\11\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\2\0\0\0\4\0\0\0\11\0\0\0\16\0\0\0\22\0\0\0\24\0\0\0\25\0\0\0\25\0"
- "\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25"
- "\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0"
- "\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\24\0"
- "\0\0\21\0\0\0\14\0\0\0\7\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\5\0\0"
- "\0\5\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6"
- "\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0"
- "\0\6\0\0\0\6\0\0\0\6\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\4\0\0\0\3\0\0\0\2"
- "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0"
- "\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1"
- "\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0"
- "\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
- "\0\0\0\0\0\0\0\0\0\0\0\0"};
-
-
diff --git a/meta-gnome/recipes-gnome/libgnome/libgnomeui/no-pixbuf-csource.patch b/meta-gnome/recipes-gnome/libgnome/libgnomeui/no-pixbuf-csource.patch
deleted file mode 100644
index e0765bae18..0000000000
--- a/meta-gnome/recipes-gnome/libgnome/libgnomeui/no-pixbuf-csource.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- libgnomeui-2.6.1.1/configure.in.old 2004-08-04 00:28:43.582266664 +0100
-+++ libgnomeui-2.6.1.1/configure.in 2004-08-04 00:29:27.496590672 +0100
-@@ -235,7 +235,7 @@
-
- dnl This is installed from GTK+ 2.0's gdk-pixbuf
- AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource)
--test -z "$GDK_PIXBUF_CSOURCE" && AC_MSG_ERROR([
-+test -z "$GDK_PIXBUF_CSOURCE" && AC_MSG_WARN([
- *** You need the gdk-pixbuf-csource tool which is installed
- *** from GTK+ 2.0's gdk-pixbuf.
- ***
diff --git a/meta-gnome/recipes-gnome/libgnome/libgnomeui_2.24.5.bb b/meta-gnome/recipes-gnome/libgnome/libgnomeui_2.24.5.bb
deleted file mode 100644
index ff8a680d67..0000000000
--- a/meta-gnome/recipes-gnome/libgnome/libgnomeui_2.24.5.bb
+++ /dev/null
@@ -1,34 +0,0 @@
-DESCRIPTION = "GNOME User Interface Library"
-LICENSE = "LGPLv2"
-LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605"
-
-SECTION = "x11/gnome/libs"
-DEPENDS = "libgnome libgnomecanvas libbonoboui libgnome-keyring intltool-native gnome-common-native"
-
-inherit distro_features_check gnome
-
-REQUIRED_DISTRO_FEATURES = "x11"
-
-FILES_${PN} += "${libdir}/gtk-2.0/*/filesystems/lib*.so \
- ${libdir}/libglade/*/lib*.so \
- ${datadir}/pixmaps/gnome-about-logo.png"
-FILES_${PN}-dev += "${libdir}/gtk-2.0/*/filesystems/*.la ${libdir}/gtk-2.0/*/filesystems/*.a ${libdir}/libglade/*/*.la"
-FILES_${PN}-staticdev += "${libdir}/libglade/*/*.a"
-
-SRC_URI += " \
- file://0001-suppress-string-format-literal-warning-to-fix-build-.patch \
- file://gnome-stock-pixbufs.h \
- file://no-pixbuf-csource.patch \
- file://05_fix_invalid_utf8.patch \
-"
-SRC_URI[archive.md5sum] = "d4bb506b1916015323928faab5aa708b"
-SRC_URI[archive.sha256sum] = "ae352f2495889e65524c979932c909f4629a58e64290fb0c95333373225d3c0f"
-GNOME_COMPRESS_TYPE="bz2"
-
-EXTRA_OECONF = "--disable-gtk-doc"
-
-do_configure_prepend() {
- install -m 0644 ${WORKDIR}/gnome-stock-pixbufs.h ${S}/libgnomeui/pixmaps/gnome-stock-pixbufs.h
-}
-
-LDFLAGS += "-lm"