[MPlayer-cvslog] r38056 - in trunk: Changelog Copyright Makefile gui/dialog/dialog.c gui/dialog/fileselect.c gui/dialog/icons.c gui/dialog/icons.h gui/dialog/menu.c gui/dialog/msgbox.c gui/dialog/msgbox.h gui/dialo...

ib subversion at mplayerhq.hu
Wed Apr 11 13:26:40 EEST 2018


Author: ib
Date: Wed Apr 11 13:26:39 2018
New Revision: 38056

Log:
Replace X PixMap icons by new icons in Portable Network Graphics format.

Define the new icons as GdkPixbufs in icons.c and declare them in
icons.h.

Create GtkImages from the GdkPixbufs. GtkImages are now used instead
of GdkPixmaps.

(Most of the changes are purely cosmetic: "xpm" is replaced by "png".)

Added:
   trunk/gui/dialog/icons.c
   trunk/gui/dialog/icons.h
Deleted:
   trunk/gui/dialog/pixmaps/about.xpm
   trunk/gui/dialog/pixmaps/aspect.xpm
   trunk/gui/dialog/pixmaps/aspect_16_9.xpm
   trunk/gui/dialog/pixmaps/aspect_2_35_1.xpm
   trunk/gui/dialog/pixmaps/aspect_4_3.xpm
   trunk/gui/dialog/pixmaps/aspect_original.xpm
   trunk/gui/dialog/pixmaps/audio_dolby.xpm
   trunk/gui/dialog/pixmaps/audio_track.xpm
   trunk/gui/dialog/pixmaps/audio_track_load.xpm
   trunk/gui/dialog/pixmaps/blank.xpm
   trunk/gui/dialog/pixmaps/blank_1px.xpm
   trunk/gui/dialog/pixmaps/cd.xpm
   trunk/gui/dialog/pixmaps/cd_play.xpm
   trunk/gui/dialog/pixmaps/chapter.xpm
   trunk/gui/dialog/pixmaps/dir_up.xpm
   trunk/gui/dialog/pixmaps/dvd.xpm
   trunk/gui/dialog/pixmaps/dvd_play.xpm
   trunk/gui/dialog/pixmaps/equalizer.xpm
   trunk/gui/dialog/pixmaps/error.xpm
   trunk/gui/dialog/pixmaps/exit.xpm
   trunk/gui/dialog/pixmaps/image.xpm
   trunk/gui/dialog/pixmaps/information.xpm
   trunk/gui/dialog/pixmaps/play.xpm
   trunk/gui/dialog/pixmaps/play_next.xpm
   trunk/gui/dialog/pixmaps/play_pause.xpm
   trunk/gui/dialog/pixmaps/play_previous.xpm
   trunk/gui/dialog/pixmaps/play_stop.xpm
   trunk/gui/dialog/pixmaps/playlist.xpm
   trunk/gui/dialog/pixmaps/preferences.xpm
   trunk/gui/dialog/pixmaps/rotate.xpm
   trunk/gui/dialog/pixmaps/rotate_0.xpm
   trunk/gui/dialog/pixmaps/rotate_180.xpm
   trunk/gui/dialog/pixmaps/rotate_90ccw.xpm
   trunk/gui/dialog/pixmaps/rotate_90cw.xpm
   trunk/gui/dialog/pixmaps/size_double.xpm
   trunk/gui/dialog/pixmaps/size_full.xpm
   trunk/gui/dialog/pixmaps/size_half.xpm
   trunk/gui/dialog/pixmaps/size_normal.xpm
   trunk/gui/dialog/pixmaps/skin.xpm
   trunk/gui/dialog/pixmaps/subtitle_drop.xpm
   trunk/gui/dialog/pixmaps/subtitle_load.xpm
   trunk/gui/dialog/pixmaps/subtitle_track.xpm
   trunk/gui/dialog/pixmaps/title.xpm
   trunk/gui/dialog/pixmaps/tv.xpm
   trunk/gui/dialog/pixmaps/url.xpm
   trunk/gui/dialog/pixmaps/vcd.xpm
   trunk/gui/dialog/pixmaps/vcd_play.xpm
   trunk/gui/dialog/pixmaps/video_track.xpm
   trunk/gui/dialog/pixmaps/volume_mute.xpm
   trunk/gui/dialog/pixmaps/warning.xpm
Modified:
   trunk/Changelog
   trunk/Copyright
   trunk/Makefile
   trunk/gui/dialog/dialog.c
   trunk/gui/dialog/fileselect.c
   trunk/gui/dialog/menu.c
   trunk/gui/dialog/msgbox.c
   trunk/gui/dialog/msgbox.h

Modified: trunk/Changelog
==============================================================================
--- trunk/Changelog	Thu Apr  5 22:30:09 2018	(r38055)
+++ trunk/Changelog	Wed Apr 11 13:26:39 2018	(r38056)
@@ -34,6 +34,8 @@ MPlayer
     * New symbol character 'g' and new dynamic label variable $g
     * Skins can leave current volume unchanged at startup
     * New configuration file: gui.gain
+    * Modern new icons for the (default) menu, the file selector,
+      the playlist and the message boxes
 
 
   1.3.0: "worksforme" February 16, 2016

Modified: trunk/Copyright
==============================================================================
--- trunk/Copyright	Thu Apr  5 22:30:09 2018	(r38055)
+++ trunk/Copyright	Wed Apr 11 13:26:39 2018	(r38056)
@@ -136,3 +136,10 @@ URL:        http://www.andreasn.se
 Files:      etc/mplayer*.{ico,png}
 Copyright:  Andreas Nilsson <andreas at andreasn.se>
 License:    GNU General Public License
+
+Name:       Icons
+Version:    2018-03-31
+URL:        https://sixsixfive.deviantart.com
+Files:      gui/dialog/icons.c, gui/dialog/pixmaps/{dir,file*,open}.xpm
+Copyright:  sixsixfive
+License:    GNU General Public License

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	Thu Apr  5 22:30:09 2018	(r38055)
+++ trunk/Makefile	Wed Apr 11 13:26:39 2018	(r38056)
@@ -479,6 +479,7 @@ SRCS_MPLAYER-$(GUI_GTK)      += gui/app/
                                 gui/dialog/dialog.c                     \
                                 gui/dialog/equalizer.c                  \
                                 gui/dialog/fileselect.c                 \
+                                gui/dialog/icons.c                      \
                                 gui/dialog/menu.c                       \
                                 gui/dialog/msgbox.c                     \
                                 gui/dialog/playlist.c                   \

Modified: trunk/gui/dialog/dialog.c
==============================================================================
--- trunk/gui/dialog/dialog.c	Thu Apr  5 22:30:09 2018	(r38055)
+++ trunk/gui/dialog/dialog.c	Wed Apr 11 13:26:39 2018	(r38056)
@@ -193,30 +193,30 @@ void gtkMessageBox(int type, const gchar
     switch (type) {
     case MSGBOX_FATAL:
         gtk_window_set_title(GTK_WINDOW(MessageBox), MSGTR_GUI_ErrorFatal);
-        gtk_widget_hide(InformationPixmap);
-        gtk_widget_hide(WarningPixmap);
-        gtk_widget_show(ErrorPixmap);
+        gtk_widget_hide(InformationImage);
+        gtk_widget_hide(WarningImage);
+        gtk_widget_show(ErrorImage);
         break;
 
     case MSGBOX_ERROR:
         gtk_window_set_title(GTK_WINDOW(MessageBox), MSGTR_GUI_Error);
-        gtk_widget_hide(InformationPixmap);
-        gtk_widget_hide(WarningPixmap);
-        gtk_widget_show(ErrorPixmap);
+        gtk_widget_hide(InformationImage);
+        gtk_widget_hide(WarningImage);
+        gtk_widget_show(ErrorImage);
         break;
 
     case MSGBOX_WARNING:
         gtk_window_set_title(GTK_WINDOW(MessageBox), MSGTR_GUI_Warning);
-        gtk_widget_hide(InformationPixmap);
-        gtk_widget_show(WarningPixmap);
-        gtk_widget_hide(ErrorPixmap);
+        gtk_widget_hide(InformationImage);
+        gtk_widget_show(WarningImage);
+        gtk_widget_hide(ErrorImage);
         break;
 
     case MSGBOX_INFORMATION:
         gtk_window_set_title(GTK_WINDOW(MessageBox), MSGTR_GUI_Information);
-        gtk_widget_show(InformationPixmap);
-        gtk_widget_hide(WarningPixmap);
-        gtk_widget_hide(ErrorPixmap);
+        gtk_widget_show(InformationImage);
+        gtk_widget_hide(WarningImage);
+        gtk_widget_hide(ErrorImage);
         break;
     }
 

Modified: trunk/gui/dialog/fileselect.c
==============================================================================
--- trunk/gui/dialog/fileselect.c	Thu Apr  5 22:30:09 2018	(r38055)
+++ trunk/gui/dialog/fileselect.c	Wed Apr 11 13:26:39 2018	(r38056)
@@ -25,11 +25,11 @@
 
 #include "fileselect.h"
 #include "dialog.h"
+#include "icons.h"
 #include "preferences.h"
 #include "tools.h"
 #include "pixmaps/dir.xpm"
 #include "pixmaps/file.xpm"
-#include "pixmaps/dir_up.xpm"
 #include "gui/interface.h"
 #include "gui/app/app.h"
 #include "gui/app/cfg.h"
@@ -620,10 +620,8 @@ static GtkWidget *CreateFileSelect(void)
     GtkWidget *fsFNameListWindow;
     GtkWidget *hbuttonbox3;
 
-    GtkWidget *uppixmapwid;
-    GdkPixmap *uppixmap;
-    GdkBitmap *upmask;
-    GtkStyle *upstyle;
+    GtkWidget *upimage;
+    GdkPixbuf *uppixbuf;
 
     FileSelector = gtk_window_new(GTK_WINDOW_TOPLEVEL);
     gtk_widget_set_usize(FileSelector, 512, 440);
@@ -656,13 +654,13 @@ static GtkWidget *CreateFileSelect(void)
     gtk_widget_show(vseparator1);
     gtk_box_pack_start(GTK_BOX(hbox4), vseparator1, FALSE, TRUE, 0);
 
-    upstyle     = gtk_widget_get_style(FileSelector);
-    uppixmap    = gdk_pixmap_colormap_create_from_xpm_d(FileSelector->window, fsColorMap, &upmask, &upstyle->bg[GTK_STATE_NORMAL], (gchar **)dir_up_xpm);
-    uppixmapwid = gtk_pixmap_new(uppixmap, upmask);
-    gtk_widget_show(uppixmapwid);
+    uppixbuf = gdk_pixbuf_new_from_inline(-1, dir_up_png, FALSE, NULL);
+    upimage  = gtk_image_new_from_pixbuf(uppixbuf);
+    g_object_unref(uppixbuf);
+    gtk_widget_show(upimage);
 
     fsUp = gtk_button_new();
-    gtk_container_add(GTK_CONTAINER(fsUp), uppixmapwid);
+    gtk_button_set_image(GTK_BUTTON(fsUp), upimage);
     gtk_widget_show(fsUp);
     gtk_box_pack_start(GTK_BOX(hbox4), fsUp, FALSE, FALSE, 0);
     gtk_widget_set_usize(fsUp, 60, -2);

Added: trunk/gui/dialog/icons.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ trunk/gui/dialog/icons.c	Wed Apr 11 13:26:39 2018	(r38056)
@@ -0,0 +1,4446 @@
+/*
+ * This file is part of MPlayer.
+ *
+ * MPlayer is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * MPlayer is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+/* LC_ALL=C */
+/* gdk-pixbuf-csource --raw --extern --name=${PNG%.png}_png $PNG */
+
+#include <glib.h>
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (about_png)
+#endif
+#ifdef __GNUC__
+const guint8 about_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 about_png[] =
+#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\275\233\0\217"
+  "\275\232\0\232\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\267\227\0\40\275\233"
+  "\4\366\277\237\15\366\267\227\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\275\234"
+  "\2\220\330\303N\372\334\310[\372\275\234\2\220\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\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\6\275\234\5\361\361\350\244\377\362\351\247\377\276\234\7\362"
+  "\266\222\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\0\273\227\0V\321\270F\365\371\362\275\377\371"
+  "\363\275\377\320\270E\365\273\227\0V\0\0\0\0\0\0\0\0\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\6\273\227\0V\275\235\6\354"
+  "\357\345\242\377\373\366\304\377\373\366\305\377\357\345\240\377\274"
+  "\234\4\354\273\227\0V\252\252\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\275"
+  "\224\0\37\275\232\0\220\300\240\24\362\323\275N\365\355\342\227\377\370"
+  "\362\271\377\375\367\312\377\375\367\311\377\371\363\275\377\353\337"
+  "\217\377\316\266;\365\274\234\6\361\275\232\0\220\275\224\0\37\0\0\0"
+  "\0\276\234\5\230\304\250#\367\340\315k\373\354\341\214\377\361\347\222"
+  "\377\364\351\231\377\367\356\252\377\372\362\271\377\372\362\270\377"
+  "\367\356\253\377\365\353\240\377\362\351\231\377\354\340\212\377\331"
+  "\305Q\372\274\232\3\366\277\235\5\217\275\236\5\220\277\240\15\366\316"
+  "\265\"\372\333\304\37\377\346\324C\377\354\334c\377\360\343}\377\363"
+  "\350\213\377\363\350\213\377\360\343}\377\354\335d\377\346\324D\377\334"
+  "\305$\377\317\267(\372\274\232\2\366\277\235\5\227\0\0\0\0\275\224\0"
+  "\37\275\232\2\220\273\231\0\361\301\242\7\362\331\302)\377\350\326I\377"
+  "\355\337j\377\355\336j\377\350\326H\377\331\302)\377\301\242\7\362\273"
+  "\231\0\361\275\232\2\220\275\224\0\37\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\252\252\0\6\272\231\0U\274\233\1\354\327\277!\377\345\324F\377\345\324"
+  "E\377\327\277\40\377\274\233\1\354\272\231\0U\314\231\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\273\227\0V\302\242"
+  "\3\361\337\312!\377\336\311\37\377\301\241\3\362\273\227\0V\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\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\231\0\5\274\232\1\360\334\304\37\377\334\305\37\377\272\232\1"
+  "\361\314\231\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\275\234\4\220\317\263\34\371\317"
+  "\263\34\371\275\234\4\220\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\275\224\0\37\275"
+  "\233\4\366\275\233\4\366\275\224\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\276\236\10\231\277\237\11\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"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (aspect_png)
+#endif
+#ifdef __GNUC__
+const guint8 aspect_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 aspect_png[] =
+#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\0H\0\0\0\343"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\342\0\0\0G\0"
+  "\0\0\342\316\317\316\377\371\371\371\377\371\371\371\377\371\371\371"
+  "\377\371\371\371\377\371\371\371\377\376\376\376\377\371\371\371\377"
+  "\371\371\371\377\376\376\376\377\371\371\371\377\371\371\371\377\371"
+  "\371\371\377\316\316\315\377\0\0\0\341\0\0\0\377\371\371\371\377\\^["
+  "\377PRO\377PRO\377PRO\377PRO\377\371\371\371\377PRO\377PRO\377\371\371"
+  "\371\377PRO\377PRO\377\\^[\377\371\371\371\377\0\0\0\377\0\0\0\377\371"
+  "\371\371\377LOL\377LOL\377LOL\377LOL\377LOL\377\371\371\371\377LOL\377"
+  "LOL\377\371\371\371\377LOL\377LOL\377LOL\377\371\371\371\377\0\0\0\377"
+  "\0\0\0\377\371\371\371\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377\371\371"
+  "\371\377ILJ\377ILJ\377\371\371\371\377ILJ\377ILJ\377ILJ\377\371\371\371"
+  "\377\0\0\0\377\0\0\0\377\376\376\376\377\370\371\371\377\370\371\371"
+  "\377\370\371\371\377\370\371\371\377\370\371\371\377\371\371\371\377"
+  "EIG\377EIG\377\370\371\371\377EIG\377EIG\377EIG\377\370\371\371\377\0"
+  "\0\0\377\0\0\0\377\370\370\370\377AED\377AED\377AED\377AED\377AED\377"
+  "AED\377AED\377AED\377\370\370\370\377AED\377AED\377AED\377\370\370\370"
+  "\377\0\0\0\377\0\0\0\377\370\370\370\377>BB\377>BB\377>BB\377>BB\377"
+  ">BB\377>BB\377>BB\377>BB\377\370\370\370\377>BB\377>BB\377>BB\377\370"
+  "\370\370\377\0\0\0\377\0\0\0\377\376\376\376\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\370\370\370\377\370\370\370\377\371\371\371\377:\77\77\377:"
+  "\77\77\377:\77\77\377\370\370\370\377\0\0\0\377\0\0\0\377\370\370\370"
+  "\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777"
+  "<=\3777<=\3777<=\377\370\370\370\377\0\0\0\377\0\0\0\377\370\370\370"
+  "\377AGH\37739:\37739:\37739:\37739:\37739:\37739:\37739:\37739:\3773"
+  "9:\37739:\377AGH\377\370\370\370\377\0\0\0\377\0\0\0\342\307\310\310"
+  "\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\370\370\370\377\370\370\370\377\370"
+  "\370\370\377\370\370\370\377\370\370\370\377\370\370\370\377\306\307"
+  "\307\377\0\0\0\341\0\0\0G\0\0\0\342\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
+  "\0\0\377\0\0\0\377\0\0\0\341\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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 (aspect_16_9_png)
+#endif
+#ifdef __GNUC__
+const guint8 aspect_16_9_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 aspect_16_9_png[] =
+#endif
+{ ""
+  /* Pixbuf magic (0x47646b50) */
+  "GdkP"
+  /* length: header (24) + pixel_data (1216) */
+  "\0\0\4\330"
+  /* pixdata_type (0x1010002) */
+  "\1\1\0\2"
+  /* rowstride (76) */
+  "\0\0\0L"
+  /* width (19) */
+  "\0\0\0\23"
+  /* 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\0H\0\0\0\343\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
+  "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\342\0\0\0G\0\0\0\0\0\0\0\342"
+  "\317\317\316\377\371\371\371\377\371\371\371\377\371\371\371\377\371"
+  "\371\371\377\371\371\371\377\371\371\371\377\371\371\371\377\371\371"
+  "\371\377\371\371\371\377\371\371\371\377\371\371\371\377\371\371\371"
+  "\377\371\371\371\377\371\371\371\377\316\316\316\377\0\0\0\341\0\0\0"
+  "\0\0\0\0\377\371\371\371\377^`^\377SUR\377SUR\377SUR\377SUR\377SUR\377"
+  "SUR\377SUR\377SUR\377SUR\377SUR\377SUR\377SUR\377_a^\377\371\371\371"
+  "\377\0\0\0\377\0\0\0\0\0\0\0\377\371\371\371\377PRO\377PRO\377PRO\377"
+  "PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377"
+  "PRO\377\371\371\371\377\0\0\0\377\0\0\0\0\0\0\0\377\371\371\371\377L"
+  "OL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377"
+  "LOL\377LOL\377LOL\377LOL\377\371\371\371\377\0\0\0\377\0\0\0\0\0\0\0"
+  "\377\371\371\371\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377"
+  "ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377\371\371\371\377\0\0"
+  "\0\377\0\0\0\0\0\0\0\377\370\371\371\377EIG\377EIG\377EIG\377EIG\377"
+  "EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377"
+  "\370\371\371\377\0\0\0\377\0\0\0\0\0\0\0\377\370\370\370\377AED\377A"
+  "ED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377"
+  "AED\377AED\377AED\377\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\377\370"
+  "\370\370\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377"
+  ">BB\377>BB\377>BB\377>BB\377>BB\377>BB\377\370\370\370\377\0\0\0\377"
+  "\0\0\0\0\0\0\0\377\370\370\370\377:\77\77\377:\77\77\377:\77\77\377:"
+  "\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77"
+  "\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377\370\370\370\377\0"
+  "\0\0\377\0\0\0\0\0\0\0\377\370\370\370\3777<=\3777<=\3777<=\3777<=\377"
+  "7<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\377"
+  "\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\377\370\370\370\377AGH\3773"
+  "9:\37739:\37739:\37739:\37739:\37739:\37739:\37739:\37739:\37739:\377"
+  "39:\37739:\377AGH\377\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\342\307"
+  "\310\310\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\370\370\370\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\370\370\370\377\306\307\307\377\0\0\0\341\0\0\0\0\0"
+  "\0\0G\0\0\0\342\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
+  "\0\0\377\0\0\0\377\0\0\0\341\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\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 (aspect_2_35_1_png)
+#endif
+#ifdef __GNUC__
+const guint8 aspect_2_35_1_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 aspect_2_35_1_png[] =
+#endif
+{ ""
+  /* Pixbuf magic (0x47646b50) */
+  "GdkP"
+  /* length: header (24) + pixel_data (1216) */
+  "\0\0\4\330"
+  /* pixdata_type (0x1010002) */
+  "\1\1\0\2"
+  /* rowstride (76) */
+  "\0\0\0L"
+  /* width (19) */
+  "\0\0\0\23"
+  /* 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\0H\0\0\0\343\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\342"
+  "\0\0\0G\0\0\0\342\316\317\316\377\371\371\371\377\371\371\371\377\371"
+  "\371\371\377\371\371\371\377\371\371\371\377\371\371\371\377\371\371"
+  "\371\377\371\371\371\377\371\371\371\377\371\371\371\377\371\371\371"
+  "\377\371\371\371\377\371\371\371\377\371\371\371\377\371\371\371\377"
+  "\316\316\315\377\0\0\0\341\0\0\0\377\371\371\371\377\\^[\377PRO\377P"
+  "RO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377"
+  "PRO\377PRO\377\\^[\377\371\371\371\377\0\0\0\377\0\0\0\377\371\371\371"
+  "\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377L"
+  "OL\377LOL\377LOL\377LOL\377LOL\377LOL\377\371\371\371\377\0\0\0\377\0"
+  "\0\0\377\371\371\371\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377IL"
+  "J\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377\371\371"
+  "\371\377\0\0\0\377\0\0\0\377\370\371\371\377EIG\377EIG\377EIG\377EIG"
+  "\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377E"
+  "IG\377EIG\377\370\371\371\377\0\0\0\377\0\0\0\377\370\370\370\377AED"
+  "\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377A"
+  "ED\377AED\377AED\377AED\377AED\377\370\370\370\377\0\0\0\377\0\0\0\377"
+  "\370\370\370\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB"
+  "\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377\370\370\370\377"
+  "\0\0\0\377\0\0\0\377\370\370\370\377:\77\77\377:\77\77\377:\77\77\377"
+  ":\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77"
+  "\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377\370\370"
+  "\370\377\0\0\0\377\0\0\0\377\370\370\370\377EJK\3777<=\3777<=\3777<="
+  "\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777"
+  "<=\377EJK\377\370\370\370\377\0\0\0\377\0\0\0\342\307\310\311\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\370\370\370\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"
+  "\370\370\370\377\370\370\370\377\306\310\310\377\0\0\0\341\0\0\0G\0\0"
+  "\0\342\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
+  "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\341\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\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 (aspect_4_3_png)
+#endif
+#ifdef __GNUC__
+const guint8 aspect_4_3_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 aspect_4_3_png[] =
+#endif
+{ ""
+  /* Pixbuf magic (0x47646b50) */
+  "GdkP"
+  /* length: header (24) + pixel_data (1216) */
+  "\0\0\4\330"
+  /* pixdata_type (0x1010002) */
+  "\1\1\0\2"
+  /* rowstride (76) */
+  "\0\0\0L"
+  /* width (19) */
+  "\0\0\0\23"
+  /* height (16) */
+  "\0\0\0\20"
+  /* pixel_data: */
+  "\0\0\0\0\0\0\0H\0\0\0\343\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
+  "\0\0\377\0\0\0\342\0\0\0G\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\342\276\276\276"
+  "\377\366\366\366\377\366\366\366\377\366\366\366\377\366\366\366\377"
+  "\366\366\366\377\366\366\366\377\366\366\366\377\366\366\366\377\366"
+  "\366\366\377\366\366\366\377\366\366\366\377\366\366\366\377\275\275"
+  "\275\377\0\0\0\341\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\370\370\370\377"
+  "`b^\377UWS\377UWS\377UWS\377UWS\377UWS\377UWS\377UWS\377UWS\377UWS\377"
+  "UWS\377ac_\377\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\377\371\371\371\377SUR\377SUR\377SUR\377SUR\377SUR\377SUR\377SUR\377"
+  "SUR\377SUR\377SUR\377SUR\377SUR\377\371\371\371\377\0\0\0\377\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\377\371\371\371\377PRO\377PRO\377PRO\377PRO\377"
+  "PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377\371\371\371"
+  "\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\371\371\371\377LOL\377"
+  "LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377"
+  "LOL\377\371\371\371\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\371"
+  "\371\371\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377"
+  "ILJ\377ILJ\377ILJ\377ILJ\377\371\371\371\377\0\0\0\377\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\377\370\371\371\377EIG\377EIG\377EIG\377EIG\377EIG\377"
+  "EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377\370\371\371\377\0\0"
+  "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\370\370\370\377AED\377AED\377"
+  "AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377"
+  "\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\370\370"
+  "\370\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377"
+  ">BB\377>BB\377>BB\377\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\377\370\370\370\377:\77\77\377:\77\77\377:\77\77\377:\77\77"
+  "\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377"
+  ":\77\77\377:\77\77\377\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\377\370\370\370\3777<=\3777<=\3777<=\3777<=\3777<=\3777<="
+  "\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\377\370\370\370\377\0\0\0"
+  "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\370\370\370\37739:\37739:\377"
+  "39:\37739:\37739:\37739:\37739:\37739:\37739:\37739:\37739:\37739:\377"
+  "\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\370\370"
+  "\370\377\77DE\377067\377067\377067\377067\377067\377067\377067\37706"
+  "7\377067\377067\377\77DE\377\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\342\306\307\310\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\370"
+  "\370\370\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370"
+  "\370\377\370\370\370\377\305\307\307\377\0\0\0\341\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0G\0\0\0\342\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0"
+  "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\341\0\0\0F\0\0\0\0\0\0\0\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (aspect_original_png)
+#endif
+#ifdef __GNUC__
+const guint8 aspect_original_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 aspect_original_png[] =
+#endif
+{ ""
+  /* Pixbuf magic (0x47646b50) */
+  "GdkP"
+  /* length: header (24) + pixel_data (1216) */
+  "\0\0\4\330"
+  /* pixdata_type (0x1010002) */
+  "\1\1\0\2"
+  /* rowstride (76) */
+  "\0\0\0L"
+  /* width (19) */
+  "\0\0\0\23"
+  /* 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\0H\0\0\0\343\0\0\0\377\0"
+  "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\342\0\0\0G\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\342\316\317\316\377\371\371\371\377\371\371\371\377"
+  "\371\371\371\377\371\371\371\377\371\371\371\377\371\371\371\377\371"
+  "\371\371\377\371\371\371\377\371\371\371\377\371\371\371\377\371\371"
+  "\371\377\371\371\371\377\316\316\315\377\0\0\0\341\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\377\371\371\371\377\\^[\377PRO\377PRO\377PRO\377PRO\377"
+  "PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377\\^[\377\371\371\371\377\0"
+  "\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\371\371\371\377LOL\377LOL"
+  "\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377L"
+  "OL\377\371\371\371\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\371"
+  "\371\371\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377"
+  "ILJ\377ILJ\377ILJ\377ILJ\377\371\371\371\377\0\0\0\377\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\377\370\371\371\377EIG\377EIG\377EIG\377EIG\377EIG\377"
+  "EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377\370\371\371\377\0\0"
+  "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\370\370\370\377AED\377AED\377"
+  "AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377AED\377"
+  "\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\370\370"
+  "\370\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377"
+  ">BB\377>BB\377>BB\377\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\377\370\370\370\377:\77\77\377:\77\77\377:\77\77\377:\77\77"
+  "\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377:\77\77\377"
+  ":\77\77\377:\77\77\377\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\377\370\370\370\3777<=\3777<=\3777<=\3777<=\3777<=\3777<="
+  "\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\377\370\370\370\377\0\0\0"
+  "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\370\370\370\377AGH\37739:\377"
+  "39:\37739:\37739:\37739:\37739:\37739:\37739:\37739:\37739:\377AGH\377"
+  "\370\370\370\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\342\307\310"
+  "\310\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\370\370\370\377\370\370\370\377"
+  "\370\370\370\377\370\370\370\377\370\370\370\377\370\370\370\377\306"
+  "\307\307\377\0\0\0\341\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0G\0\0\0\342\0\0\0"
+  "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\341\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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 (audio_dolby_png)
+#endif
+#ifdef __GNUC__
+const guint8 audio_dolby_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 audio_dolby_png[] =
+#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.46\377.46\377.4"
+  "6\377.46\377.46\377.46\377.46\377.46\377.46\377.46\377.46\377.46\377"
+  ".46\377.46\377.46\377\0\0\0\0.46\377\365\350\200\377\365\350\200\377"
+  "\365\350\200\377\365\350\200\377\365\350\200\377\365\350\200\377.46\377"
+  "\365\350\200\377\365\350\200\377\365\350\200\377\365\350\200\377\365"
+  "\350\200\377\365\350\200\377.46\377\0\0\0\0.46\377\347\314\0\377>B1\377"
+  "gb%\377\306\261\12\377\347\314\0\377\347\314\0\377.46\377\347\314\0\377"
+  "\347\314\0\377\305\260\12\377gb%\377>B1\377\347\314\0\377.46\377\0\0"
+  "\0\0.46\377\343\307\0\377.46\377.46\377385\377\276\251\13\377\343\307"
+  "\0\377.46\377\343\307\0\377\275\250\13\377285\377.46\377.46\377\343\307"
+  "\0\377.46\377\0\0\0\0.46\377\337\302\0\377.46\377.46\377.46\377RQ+\377"
+  "\337\302\0\377.46\377\337\302\0\377RQ+\377.46\377.46\377.46\377\337\302"
+  "\0\377.46\377\0\0\0\0.46\377\333\275\0\377.46\377.46\377.46\377175\377"
+  "\333\275\0\377.46\377\333\275\0\377065\377.46\377.46\377.46\377\333\275"
+  "\0\377.46\377\0\0\0\0.46\377\326\267\0\377.46\377.46\377.46\377175\377"
+  "\326\267\0\377.46\377\326\267\0\377065\377.46\377.46\377.46\377\326\267"
+  "\0\377.46\377\0\0\0\0.46\377\322\262\0\377.46\377.46\377.46\377PO+\377"
+  "\322\262\0\377.46\377\322\262\0\377PM+\377.46\377.46\377.46\377\322\262"
+  "\0\377.46\377\0\0\0\0.46\377\316\255\0\377.46\377.46\3778=:\377\304\263"
+  "Q\377\317\257\6\377.46\377\320\260\12\377\301\256E\377496\377.46\377"
+  ".46\377\316\255\0\377.46\377\0\0\0\0.46\377\312\250\0\377HJ>\377}xN\377"
+  "\321\302r\377\332\302L\377\312\250\1\377.46\377\313\252\7\377\336\311"
+  "b\377\314\273d\377tnA\377AC6\377\312\250\0\377.46\377\0\0\0\0.46\377"
+  "\306\243\0\377\336\312l\377\332\303X\377\316\260%\377\306\243\0\377\306"
+  "\243\0\377.46\377\306\243\0\377\307\244\3\377\322\2677\377\335\307e\377"
+  "\334\307d\377\306\243\0\377.46\377\0\0\0\0.46\377.46\377.46\377.46\377"
+  ".46\377.46\377.46\377.46\377.46\377.46\377.46\377.46\377.46\377.46\377"
+  ".46\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"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (audio_track_png)
+#endif
+#ifdef __GNUC__
+const guint8 audio_track_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 audio_track_png[] =
+#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\40J"
+  "\207\206\40J\207\216\0\0\377\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\""
+  "D\210\17\37K\207\303\40J\207\221\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37M\203!\37L\207"
+  "Q\0\0\0\0+@\200\14\40J\207\332!K\206N\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0#F\204\35\40J\207\340"
+  "\37I\207[\0\0\0\0\37K\210:\40J\207\340\0@\200\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\36I\206*\40"
+  "J\207\351\34L\204\33\0\0\0\0\40J\210\276!K\207U\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40J\206\311\37M\203!\0\0\0"
+  "\0!K\207\214\40J\207\206\0\0\0\0\40J\206a\37J\207\243\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\37K\210K\34G\216\22\0\0\0\0!K\210m\40J\210\257"
+  "\0\0\0\0\37M\2052\40J\207\322\0\0\0\0!H\211'\40J\206\334\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40I\207\345!I\206e\0\0\0\0\40P\200\20\40"
+  "J\207\356\0\0\377\1$I\222\7\40J\207\370\0\0\0\0'N\211\15\40J\207\360"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40I\207\345!J\207d\0\0\0\0\36"
+  "K\207\21\40J\206\355\0\0\377\1\40@\200\10\40J\207\367\0\0\0\0\34U\216"
+  "\11\40J\207\364\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37H\206J\36K"
+  "\207\21\0\0\0\0\40J\206n\40J\210\257\0\0\0\0\36K\2073\40J\207\321\0\0"
+  "\0\0\36I\206*\40J\207\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!J\207\314\37M\203!\0\0\0\0\40J\207\216!K\206\205"
+  "\0\0\0\0\40J\207`\40J\207\250\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\36I\206*\40J\207\351\35N\211"
+  "\32\0\0\0\0\40J\210\276\37L\207Q\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34L\204\33\40J\207\340\40J\207Y"
+  "\0\0\0\0\40I\206\77\40J\207\337+U\200\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\34L\204\33\"J\206L\0\0\0\0"
+  "'N\211\15\40J\207\327!I\210M\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0'N\211\15!K\210"
+  "\274\40K\206\226\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40J\207\206!J\206"
+  "\224\0U\252\3\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 (audio_track_load_png)
+#endif
+#ifdef __GNUC__
+const guint8 audio_track_load_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 audio_track_load_png[] =
+#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\251\255\247\264\270\272\264\376\270\272\264\376\270\272\264"
+  "\376\270\272\264\376\270\272\264\376\270\272\264\376\270\272\264\376"
+  "\266\270\262\376\251\254\245\262\377\377\377\2\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\267\273\264\376\362\362\361\377\376\376\376\377\376"
+  "\376\376\377\376\376\376\377\376\376\376\377\376\376\376\377\376\376"
+  "\375\377\362\362\362\377\274\277\271\376\255\257\251\326\377\377\377"
+  "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\271\274\264\377\376\376\376\377\362"
+  "\363\361\377\361\362\357\377\357\361\356\377\356\357\354\377\354\356"
+  "\352\377\353\354\351\377\331\333\331\377\333\333\333\377\274\277\271"
+  "\376\252\256\247\312\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377"
+  "\376\376\376\377\364\365\363\377\362\363\361\377\361\362\357\377\357"
+  "\361\356\377\356\357\354\377\340\344\344\377\305\306\303\377\355\355"
+  "\354\377\333\333\333\377\271\274\265\376\246\250\242\222\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\271\274\265\377\376\376\376\377\365\366\365\377\364\365"
+  "\363\377\362\363\361\377\361\362\357\377\357\361\356\377Pq\237\377\230"
+  "\237\243\377\235\237\233\377\253\254\250\377\261\262\257\377\264\267"
+  "\260\374\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\376\376\376\377\367"
+  "\370\366\377\365\366\365\377\364\365\363\377\362\363\361\377\361\362"
+  "\357\377\336\343\345\377\77d\226\377\323\332\336\377\352\354\351\377"
+  "\375\375\375\377\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265"
+  "\377\376\377\376\377\370\371\370\377\367\370\366\377\365\366\364\377"
+  "\303\314\332\377\204\232\271\377\361\362\357\377\242\263\307\377z\222"
+  "\263\377\354\356\352\377\375\375\375\377\271\274\264\377\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\271\274\265\377\377\377\377\377\372\372\372\377\235\257"
+  "\310\377\355\360\361\377\362\364\363\377Km\235\377\325\333\342\377\350"
+  "\352\352\377Ae\227\377\356\357\354\377\375\375\375\377\271\274\264\377"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\377\377\377\377\374\374\373"
+  "\377-U\216\377\302\316\334\377\367\370\366\377\204\233\272\377\254\272"
+  "\316\377\362\363\361\377;_\225\377\357\361\356\377\375\376\375\377\271"
+  "\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\377\377\377\377"
+  "\375\375\375\377Vv\244\377\341\346\355\377\370\371\370\377i\206\255\377"
+  "\303\315\333\377\362\364\362\377;_\225\377\361\362\357\377\376\376\375"
+  "\377\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\377\377"
+  "\377\377\377\377\377\377\375\375\375\377\374\374\373\377\316\327\343"
+  "\377Np\237\377\363\365\364\377\304\317\333\377a~\250\377\362\363\361"
+  "\377\376\376\376\377\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274"
+  "\265\377\377\377\377\377\377\377\377\377\377\377\377\377\375\375\375"
+  "\377\356\361\363\377\344\350\356\377\370\371\370\377\\z\245\377\272\307"
+  "\326\377\364\365\363\377\376\376\376\377\271\274\264\377\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\271\274\265\377\377\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\377\377\375\375\375\377\374\374\373\377\210\236\275"
+  "\377p\213\261\377\367\370\366\377\365\366\364\377\376\376\376\377\271"
+  "\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274\264\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\257\277\323\377\366\367\367\377\370\371\370\377\367\370"
+  "\366\377\376\376\376\377\270\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\267"
+  "\273\264\376\366\366\366\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\363\363\361\377\267\273\264\376"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\251\254\246\262\267\273\263\376\270\272\264"
+  "\376\270\272\264\376\270\272\264\376\270\272\264\376\270\272\264\376"
+  "\270\272\264\376\270\272\264\376\270\272\264\376\270\272\264\376\267"
+  "\273\263\376\251\254\246\262\0\0\0\0\0\0\0\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (blank_png)
+#endif
+#ifdef __GNUC__
+const guint8 blank_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 blank_png[] =
+#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 (blank_1px_png)
+#endif
+#ifdef __GNUC__
+const guint8 blank_1px_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 blank_1px_png[] =
+#endif
+{ ""
+  /* Pixbuf magic (0x47646b50) */
+  "GdkP"
+  /* length: header (24) + pixel_data (64) */
+  "\0\0\0X"
+  /* pixdata_type (0x1010002) */
+  "\1\1\0\2"
+  /* rowstride (4) */
+  "\0\0\0\4"
+  /* width (1) */
+  "\0\0\0\1"
+  /* 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"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (cd_png)
+#endif
+#ifdef __GNUC__
+const guint8 cd_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 cd_png[] =
+#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\210\210\202-\207\211\206\221\210\212"
+  "\206\324\210\212\205\364\210\212\205\364\210\212\206\324\210\212\205"
+  "\220\205\213\205,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\222"
+  "\222\222\7\210\212\205\226\233\235\231\375\342\343\341\377\371\371\371"
+  "\377\376\376\376\377\376\376\376\377\366\366\366\377\331\332\331\377"
+  "\230\232\226\374\210\212\205\224\200\200\200\6\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\222\222\222\7\210\212\205\276\311\312\310\377\377\377\377\377\376"
+  "\376\376\377\373\373\372\377\367\370\367\377\365\366\364\377\365\366"
+  "\364\377\370\371\370\377\374\374\374\377\275\276\273\377\210\212\206"
+  "\275\200\200\200\6\0\0\0\0\0\0\0\0\211\212\205\227\260\261\256\377\374"
+  "\375\374\377\375\375\375\377\372\373\372\377\370\370\367\377\365\366"
+  "\364\377\363\364\362\377\360\362\357\377\356\357\354\377\357\361\355"
+  "\377\374\375\374\377\272\274\271\377\207\213\206\223\0\0\0\0\210\210"
+  "\202-\222\224\220\375\370\370\370\377\333\336\330\377\347\351\345\377"
+  "\371\371\370\377\366\367\365\377\364\365\363\377\361\362\360\377\356"
+  "\360\355\377\354\356\352\377\351\353\347\377\353\355\352\377\372\373"
+  "\372\377\225\227\222\374\210\210\202+\207\211\206\221\306\307\304\377"
+  "\354\356\352\377\323\327\317\377\323\327\317\377\346\350\344\377\372"
+  "\372\372\377\376\376\376\377\376\376\375\377\366\367\366\377\353\355"
+  "\351\377\350\352\346\377\345\347\343\377\363\364\362\377\316\317\314"
+  "\377\210\212\205\216\210\212\205\325\351\351\351\377\334\337\331\377"
+  "\323\327\317\377\323\327\317\377\354\356\353\377\342\342\342\377\314"
+  "\314\313\377\303\304\302\377\351\351\351\377\364\365\364\377\346\350"
+  "\344\377\344\346\341\377\350\352\346\377\355\356\355\377\211\212\205"
+  "\323\210\212\205\362\371\371\371\377\325\331\321\377\323\327\317\377"
+  "\325\331\322\377\374\374\373\377\212\213\211\377\276\277\275\300\300"
+  "\301\300\305\265\266\264\377\375\375\374\377\344\347\342\377\342\344"
+  "\337\377\341\344\336\377\372\372\372\377\210\212\205\362\210\212\205"
+  "\362\371\371\371\377\325\331\321\377\324\330\320\377\327\333\324\377"
+  "\374\374\373\377\221\222\220\377\273\274\273\302\275\276\275\305\257"
+  "\260\257\377\375\375\374\377\343\345\340\377\340\343\335\377\337\342"
+  "\334\377\371\372\371\377\210\212\205\362\210\212\205\325\351\351\350"
+  "\377\334\337\331\377\326\332\322\377\332\335\326\377\357\360\356\377"
+  "\336\336\336\377\245\246\244\377\262\263\262\377\344\345\344\377\362"
+  "\363\361\377\341\344\336\377\336\341\333\377\344\346\341\377\353\354"
+  "\353\377\211\212\205\323\210\212\205\220\305\306\304\377\355\356\353"
+  "\377\330\334\324\377\334\337\331\377\340\343\335\377\362\363\361\377"
+  "\375\375\374\377\375\375\375\377\367\370\367\377\350\352\346\377\337"
+  "\342\334\377\335\340\332\377\357\361\356\377\307\310\306\377\210\211"
+  "\206\215\205\213\205,\222\224\220\374\370\370\370\377\341\344\336\377"
+  "\336\341\333\377\341\344\337\377\345\350\343\377\351\353\347\377\355"
+  "\356\353\377\361\362\357\377\364\365\363\377\350\353\346\377\342\345"
+  "\337\377\370\370\370\377\221\223\217\374\206\214\206*\0\0\0\0\210\212"
+  "\205\224\262\264\260\377\373\374\373\377\346\350\343\377\344\346\341"
+  "\377\347\352\345\377\353\355\351\377\357\360\355\377\363\364\361\377"
+  "\366\367\365\377\373\373\373\377\374\375\374\377\260\262\256\377\207"
+  "\211\206\221\0\0\0\0\0\0\0\0\200\200\200\6\210\212\205\274\266\267\264"
+  "\377\372\372\372\377\364\365\363\377\356\360\355\377\356\360\354\377"
+  "\361\363\360\377\367\370\366\377\374\374\374\377\376\376\376\377\307"
+  "\311\306\377\210\212\206\273\231\231\231\5\0\0\0\0\0\0\0\0\0\0\0\0\200"
+  "\200\200\6\207\213\206\223\225\227\223\374\323\324\321\377\362\362\362"
+  "\377\375\375\375\377\375\375\375\377\367\367\367\377\337\337\336\377"
+  "\231\233\227\374\207\211\206\221\231\231\231\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\210\210\202+\210\212\205\216\211\212\205\323"
+  "\210\213\205\363\210\213\205\363\211\212\205\323\210\211\206\215\206"
+  "\214\206*\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 (cd_play_png)
+#endif
+#ifdef __GNUC__
+const guint8 cd_play_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 cd_play_png[] =
+#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\200\200\200\2\210\213\205Z\207\212\204\263\210\211\205"
+  "\346\210\212\205\372\210\211\205\346\210\212\205\262\207\212\204Y\200"
+  "\200\200\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\207\207\207"
+  "\"\210\211\204\316\271\272\267\377\356\356\355\377\374\374\374\377\376"
+  "\376\376\377\371\371\371\377\344\344\343\377\255\257\253\377\210\212"
+  "\205\315\207\207\207\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\207\207\207\""
+  "\212\215\207\352\352\352\351\377\377\377\377\377\373\373\372\377\365"
+  "\366\364\377\360\362\357\377\356\357\354\377\361\362\360\377\373\374"
+  "\373\377\326\326\324\377\213\214\211\351\213\213\203!\0\0\0\0\0\0\0\0"
+  "\200\200\200\2\210\211\204\316\316\317\315\377\367\367\366\377\371\372"
+  "\371\377\366\367\365\377\362\363\361\377\356\357\354\377\352\354\350"
+  "\377\346\350\344\377\343\346\340\377\366\367\365\377\322\322\320\377"
+  "\210\212\205\314\200\200\200\2\0\0\0\0\210\213\205Z\245\246\243\377\371"
+  "\372\371\377\325\331\321\377\336\340\333\377\363\364\361\377\360\362"
+  "\357\377\354\356\352\377\350\352\346\377\344\347\342\377\340\343\335"
+  "\377\335\341\332\377\373\373\372\377\244\245\241\377\210\213\205X\0\0"
+  "\0\0\210\211\205\264\327\330\326\377\345\347\342\377\323\327\317\377"
+  "\327\333\324\377\343\345\340\377\372\372\371\377\376\376\376\377\370"
+  "\371\370\377\345\350\343\377\336\341\333\377\332\335\327\377\347\351"
+  "\345\377\325\326\324\377\207\212\205\261\0\0\0\0\210\211\205\346\363"
+  "\363\363\377\330\333\324\377\325\331\322\377\331\335\326\377\366\367"
+  "\365\377\325\326\324\377\261\262\256\377\331\331\327\377\367\367\366"
+  "\377\334\337\331\377\330\334\325\377\331\335\326\377\362\363\362\377"
+  "\210\212\205\345\0\0\0\0\210\212\205\371\374\374\374\377\325\331\321"
+  "\377\327\333\324\377\333\337\330\377\376\376\376\377\247\252\245\377"
+  "\206\212\206J\246\250\244\377\376\376\376\377\332\336\327\377\326\332"
+  "\323\377\324\330\320\377\374\374\374\377\210\212\205\370\0\0\0\0\210"
+  "\211\205\346\252\252\252\377XYV\377WXV\377XZW\377ccb\377WWV\377FGE\377"
+  "XXX\377bbb\377WXU\377UVT\377VXU\377\244\244\244\377\210\212\205\345\0"
+  "\0\0\0\210\212\205\262VVV\377]^\\\377XYW\377\377\377\377\377\377\377"
+  "\377\377\377\377\377\377fff\377\377\377\377\377\377\377\377\377WXV\377"
+  "TVS\377\\\\[\377UUT\377\210\212\205\257\0\0\0\0\207\212\204YAB@\377d"
+  "dd\377YZX\377\377\377\377\377\0\0\0\377\0\0\0\377__^\377\377\377\377"
+  "\377\0\0\0\377\377\377\377\377XYW\377ddd\377BB@\377\207\212\204W\0\0"
+  "\0\0\200\200\200\2""00/\353UUT\377ccb\377\377\377\377\377\\^\\\377^_"
+  "]\377``_\377\377\377\377\377bcb\377\377\377\377\377fff\377UUT\377/0."
+  "\352\200\200\200\2\0\0\0\0\0\0\0\0\13\13\13\247554\366VVV\377\377\377"
+  "\377\377aa`\377``_\377`a`\377\377\377\377\377ddd\377\377\377\377\377"
+  "]]]\377554\366\13\13\13\246\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\13\13\13"
+  "\24600.\353\377\377\377\377\377\377\377\377\377\377\377\377fff\377\377"
+  "\377\377\377\377\377\377\377\0\0\0\377/0.\352\13\13\13\246\0\0\0\231"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0G\0\0\0\231\0\0\0\232\0\0\0\377\0\0\0\377"
+  "\0\0\0\377564\375\0\0\0\377\0\0\0\377\30\32\30\274\0\0\0\232\0\0\0\231"
+  "\0\0\0L\0\0\0\0\0\0\0\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (chapter_png)
+#endif
+#ifdef __GNUC__
+const guint8 chapter_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 chapter_png[] =
+#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\210\212"
+  "\205\355\210\212\205\377\210\212\205\377\210\212\205\377\210\212\205"
+  "\377\210\212\205\377\210\212\205\377\210\212\205\354\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\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\210\212\205\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\210\212\205\354\210\212\205\377"
+  "\210\212\205\377\210\212\205\377\210\212\205\377\210\212\205\377\210"
+  "\212\205\377\210\212\205\354\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\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\210\212\205\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\210\212\205\377\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\40J\206\355\40J\207\377\40J\207\377\40J\207\377\40J\207"
+  "\377\40J\207\377\40J\207\377\40I\207\354\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\210\212\205\377\210\212\205\377\210\212\205\377\0\0\0\0\40J\207"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377\40J\207\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205"
+  "\377\0\0\0\0\0\0\0\0\0\0\0\0\40I\207\354\40J\207\377\40J\207\377\40J"
+  "\207\377\40J\207\377\40J\207\377\40J\207\377\40I\207\354\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\210\212\205\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\210\212\205\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\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\40J\206"
+  "\355\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J"
+  "\207\377\40I\207\354\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377"
+  "\210\212\205\377\210\212\205\377\0\0\0\0\40J\207\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377\40J\207"
+  "\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"
+  "\40I\207\354\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207"
+  "\377\40J\207\377\40I\207\354\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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 (dir_up_png)
+#endif
+#ifdef __GNUC__
+const guint8 dir_up_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 dir_up_png[] =
+#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""8f\12\254:l\12\225\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0|\201"
+  "emy}d\366w{a\377w{a\377w{a\377x|b\374{\201e\270\200\200\200\2\0\0\0\0"
+  "9g\12\253Pp0\377Jh,\377:k\12\231\0\0\0\0\0\0\0\0\0\0\0\0z~c\361\340\342"
+  "\321\377\357\360\344\377\356\360\343\377\356\357\342\377\340\343\315"
+  "\377\207\213r\364x}_39f\13\2428g\13\377\233\327`\377\227\324\\\3777d"
+  "\13\377:h\14\233\0\0\0\0\0\0\0\0w{a\376\355\357\342\377\324\330\267\377"
+  "\320\325\261\377\320\325\261\377\350\352\331\377\234\240\207\367On*\376"
+  "8f\13\377n\310\25\377s\322\26\377s\322\26\377m\306\25\3777d\13\3779g"
+  "\13\234\0\0\0\0w{a\377\354\356\341\377\321\326\263\377\316\323\256\377"
+  "\316\323\256\377\332\336\302\377y\226W\377*M\10\377.S\11\377F\200\15"
+  "\377s\322\26\377s\322\26\377\77r\14\377*M\10\377*M\10\377;m\13\241w{"
+  "a\377\352\354\336\377\272\276\236\377\177\203h\377w{a\377w{a\377lpX\377"
+  "hlT\377diQ\377.U\11\377s\322\26\377s\322\26\377+N\11\377koW\377koX\374"
+  "lnX\234w{a\377\351\353\333\377\226\232}\377\323\326\305\377\360\362\347"
+  "\377\360\362\347\377\360\362\347\377\360\362\347\377\352\354\342\377"
+  ".T\11\377s\322\26\377s\322\26\377-P\12\377\357\361\346\377\357\360\345"
+  "\377{\177d\371w{a\377\347\352\331\377\213\220t\377\342\343\326\377\342"
+  "\344\324\377\337\342\320\377\340\342\321\377\341\343\323\377\334\336"
+  "\317\377.T\11\377s\322\26\377s\322\26\377-R\12\377\342\344\326\377\352"
+  "\353\336\377{\177e\355w{a\377\346\350\326\377\203\210l\377\347\350\333"
+  "\377\334\337\307\377\332\335\305\377\333\336\306\377\333\336\307\377"
+  "\330\333\304\377.S\11\377s\322\26\377q\317\26\377.S\11\377\335\340\315"
+  "\377\340\342\322\377}\202f\332w{a\377\344\347\324\377}\201f\377\351\353"
+  "\335\377\325\331\272\377\324\330\272\377\324\330\273\377\325\330\273"
+  "\377\322\326\270\377-M\15\377-N\15\377/Q\15\3772W\16\377\327\333\303"
+  "\377\324\326\303\377~\201g\302w{a\377\342\345\321\377\265\272\233\377"
+  "\347\351\327\377\316\323\256\377\316\323\257\377\316\323\257\377\320"
+  "\324\261\377\320\325\261\377\317\324\261\377\317\324\262\377\321\325"
+  "\263\377\321\326\264\377\335\340\310\377\306\311\263\377|\201g\244w{"
+  "a\377\341\344\316\377\325\332\273\377\342\345\317\377\316\323\256\377"
+  "\316\323\256\377\316\323\256\377\316\323\256\377\316\323\256\377\316"
+  "\323\256\377\316\323\256\377\316\323\256\377\316\323\256\377\335\340"
+  "\307\377\271\275\245\376w{a\203w{a\377\337\342\314\377\331\335\300\377"
+  "\336\341\310\377\316\323\256\377\316\323\256\377\316\323\256\377\316"
+  "\323\256\377\316\323\256\377\316\323\256\377\316\323\256\377\316\323"
+  "\256\377\316\323\256\377\337\342\311\377\251\255\224\367w|aiy}c\374\345"
+  "\345\340\377\346\346\343\377\346\346\343\377\346\346\343\377\346\346"
+  "\343\377\346\346\343\377\346\346\343\377\346\346\343\377\346\346\343"
+  "\377\346\346\343\377\346\346\343\377\346\346\343\377\346\346\343\377"
+  "\246\250\221\363w{`M\177\202f\217x|b\373y|b\377w{a\377w{a\377w{a\377"
+  "w{a\377w{a\377w{a\377w{a\377w{a\377w{a\377w{a\377w{a\377|\200f\322qq"
+  "U\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\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 (dvd_png)
+#endif
+#ifdef __GNUC__
+const guint8 dvd_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 dvd_png[] =
+#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\206\213\2139\204\214\221\240\204\215"
+  "\222\333\204\216\221\366\204\216\221\366\204\215\222\333\205\215\220"
+  "\237\206\220\2207\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\216"
+  "\216\252\11\205\215\220\245\224\236\242\375\317\330\336\377\342\352\362"
+  "\377\346\356\366\377\346\356\366\377\340\350\360\377\307\320\327\377"
+  "\221\232\237\375\205\215\220\243\200\200\200\10\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\216\216\252\11\205\216\220\310\272\303\311\377\347\357\367\377\346"
+  "\356\366\377\344\354\363\377\340\351\360\377\337\350\356\377\337\350"
+  "\356\377\341\352\361\377\345\355\365\377\260\271\276\377\205\215\221"
+  "\307\200\200\200\10\0\0\0\0\0\0\0\0\206\214\220\246\245\256\264\377\345"
+  "\355\365\377\345\355\365\377\343\354\363\377\341\351\360\377\337\350"
+  "\356\377\335\346\354\377\333\344\352\377\331\342\347\377\332\343\350"
+  "\377\345\355\365\377\256\267\275\377\204\216\221\242\0\0\0\0\206\213"
+  "\2139\215\226\233\375\341\351\361\377\311\324\327\377\323\335\341\377"
+  "\342\352\361\377\340\350\357\377\336\347\355\377\333\344\353\377\331"
+  "\343\350\377\327\341\346\377\325\336\343\377\326\340\346\377\343\354"
+  "\363\377\216\230\234\375\204\216\2166\204\214\221\240\270\300\306\377"
+  "\327\341\346\377\302\316\317\377\302\316\317\377\322\334\341\377\343"
+  "\353\363\377\346\356\366\377\346\356\365\377\340\350\360\377\326\340"
+  "\345\377\324\336\342\377\321\333\340\377\335\346\354\377\276\307\315"
+  "\377\204\214\220\236\204\215\221\334\325\335\345\377\312\324\327\377"
+  "\302\316\317\377\302\316\317\377\327\341\346\377\317\327\337\377\275"
+  "\305\314\377\265\276\304\377\325\335\345\377\336\347\356\377\322\334"
+  "\341\377\321\332\336\377\324\336\342\377\330\341\350\377\204\216\221"
+  "\332\204\216\221\364\342\352\362\377\304\317\321\377\302\316\317\377"
+  "\304\317\322\377\345\355\364\377\206\217\225\377\271\275\275\311\274"
+  "\276\300\315\251\262\271\377\345\355\365\377\321\333\337\377\317\331"
+  "\334\377\316\331\334\377\343\353\363\377\204\216\221\364\204\216\221"
+  "\364\342\352\362\377\304\317\321\377\303\317\320\377\306\321\323\377"
+  "\345\355\364\377\214\224\233\377\270\273\275\312\270\274\275\315\244"
+  "\255\264\377\345\355\365\377\320\331\335\377\315\330\333\377\314\327"
+  "\332\377\342\353\362\377\204\216\221\364\204\215\221\334\325\335\344"
+  "\377\312\324\327\377\305\320\322\377\310\323\325\377\332\343\351\377"
+  "\314\324\334\377\234\245\253\377\247\260\267\377\321\331\341\377\334"
+  "\345\353\377\316\331\334\377\314\326\331\377\321\332\336\377\326\337"
+  "\346\377\204\216\221\332\205\215\220\237\267\300\306\377\330\341\346"
+  "\377\307\322\323\377\312\324\327\377\315\330\333\377\334\345\353\377"
+  "\345\355\365\377\345\355\365\377\340\351\360\377\324\336\342\377\314"
+  "\327\332\377\313\325\330\377\332\343\351\377\270\301\310\377\204\216"
+  "\221\234\206\220\2207\214\225\232\375\341\351\361\377\316\331\334\377"
+  "\314\326\331\377\316\331\334\377\321\334\340\377\325\336\343\377\330"
+  "\341\346\377\333\344\352\377\336\347\355\377\324\336\342\377\317\331"
+  "\334\377\341\351\361\377\213\225\231\375\202\220\2205\0\0\0\0\205\215"
+  "\220\243\247\261\265\377\344\355\364\377\322\334\340\377\321\332\336"
+  "\377\323\336\341\377\326\340\345\377\332\343\350\377\335\346\353\377"
+  "\340\350\357\377\344\354\364\377\345\355\365\377\245\257\264\377\204"
+  "\214\221\240\0\0\0\0\0\0\0\0\200\200\200\10\204\215\221\307\252\263\271"
+  "\377\343\353\363\377\336\347\355\377\331\343\350\377\331\343\347\377"
+  "\333\345\353\377\340\351\360\377\345\355\365\377\346\356\366\377\270"
+  "\302\310\377\205\214\222\306\222\222\222\7\0\0\0\0\0\0\0\0\0\0\0\0\200"
+  "\200\200\10\204\216\221\242\216\230\235\375\302\313\321\377\334\344\354"
+  "\377\345\355\365\377\345\355\365\377\340\350\360\377\314\324\334\377"
+  "\222\233\240\375\204\214\221\240\222\222\222\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\204\216\2166\204\214\220\236\204\216\221\332"
+  "\204\217\222\365\204\217\222\365\204\216\221\332\204\216\221\234\202"
+  "\220\2205\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 (dvd_play_png)
+#endif
+#ifdef __GNUC__
+const guint8 dvd_play_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 dvd_play_png[] =
+#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\200\200\200\2\205\214\217d\204\216\220\274\204\215\222"
+  "\352\204\215\221\373\204\215\222\352\204\216\221\273\203\213\216c\200"
+  "\200\200\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\211\220\226"
+  "'\205\215\220\325\255\266\273\377\331\341\350\377\345\355\365\377\346"
+  "\356\366\377\342\352\362\377\321\331\340\377\243\254\261\377\204\216"
+  "\220\324\211\220\226'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\211\220\226'\210"
+  "\220\223\355\326\336\345\377\347\357\367\377\344\354\363\377\337\350"
+  "\356\377\333\344\352\377\331\342\347\377\333\344\353\377\344\355\364"
+  "\377\305\315\323\377\210\217\225\354\215\224\224&\0\0\0\0\0\0\0\0\200"
+  "\200\200\2\205\215\220\325\276\307\315\377\340\350\360\377\342\353\362"
+  "\377\340\350\357\377\334\345\353\377\331\342\347\377\326\337\344\377"
+  "\322\334\341\377\320\332\335\377\340\350\357\377\302\312\320\377\204"
+  "\214\221\323\200\200\200\2\0\0\0\0\205\214\217d\234\245\253\377\342\353"
+  "\362\377\304\317\321\377\314\325\331\377\335\346\353\377\333\344\352"
+  "\377\327\341\346\377\324\336\342\377\321\333\337\377\315\330\333\377"
+  "\313\326\330\377\344\354\363\377\233\244\251\377\205\215\217b\0\0\0\0"
+  "\204\216\222\275\306\317\325\377\321\333\337\377\302\316\317\377\306"
+  "\321\323\377\320\331\335\377\343\353\362\377\346\356\366\377\341\352"
+  "\361\377\321\334\340\377\314\326\331\377\310\323\326\377\323\335\341"
+  "\377\304\315\323\377\204\217\220\272\0\0\0\0\204\215\222\352\335\345"
+  "\355\377\307\321\323\377\304\317\322\377\307\323\325\377\340\350\357"
+  "\377\306\316\324\377\253\260\262\377\311\320\326\377\340\350\360\377"
+  "\312\324\327\377\307\322\324\377\307\323\325\377\334\345\354\377\203"
+  "\215\220\351\0\0\0\0\205\216\222\372\345\355\365\377\304\317\321\377"
+  "\306\321\323\377\311\324\327\377\346\356\366\377\242\251\252\377\206"
+  "\212\206J\240\247\250\377\346\356\366\377\310\324\326\377\305\320\322"
+  "\377\303\317\320\377\345\355\365\377\204\215\221\371\0\0\0\0\204\215"
+  "\222\352\232\240\245\377PUV\377PTU\377QUV\377Z]`\377PTV\377CFG\377RT"
+  "X\377Z]`\377PTU\377NST\377PTU\377\225\233\240\377\203\215\220\351\0\0"
+  "\0\0\204\216\221\273OSU\377\377\377\377\377\377\377\377\377RVX\377TX"
+  "Z\377\377\377\377\377\\_b\377\377\377\377\377X[]\377\377\377\377\377"
+  "\377\377\377\377TXZ\377NRT\377\204\215\220\270\0\0\0\0\203\213\216c>"
+  "BD\377\377\377\377\377\0\0\0\377\377\377\377\377TXZ\377\377\377\377\377"
+  "VZ\\\377\377\377\377\377Y\\_\377\377\377\377\377\0\0\0\377\377\377\377"
+  "\377>BD\377\203\213\216a\0\0\0\0\200\200\200\2/23\356\377\377\377\377"
+  "Z]`\377\377\377\377\377TYZ\377\377\377\377\377W[]\377\377\377\377\377"
+  "Z]`\377\377\377\377\377\\_b\377\377\377\377\377/14\355\200\200\200\2"
+  "\0\0\0\0\0\0\0\0\14\16\16\251\377\377\377\377PSU\377\377\377\377\377"
+  "X\\^\377\0\0\0\377\377\377\377\377\0\0\0\377[^b\377\377\377\377\377U"
+  "X[\377\377\377\377\377\14\14\14\247\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231"
+  "\377\377\377\377\377\377\377\377\0\0\0\377TWZ\377Z^a\377\377\377\377"
+  "\377[^b\377VZ]\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\231"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0G\0\0\0\377\0\0\0\377\33\35\35\300+//\343"
+  "267\366\0\0\0\377267\366+./\343\0\0\0\377\0\0\0\377\0\0\0\231\0\0\0L"
+  "\0\0\0\0\0\0\0\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (equalizer_png)
+#endif
+#ifdef __GNUC__
+const guint8 equalizer_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 equalizer_png[] =
+#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\0qsm\377o"
+  "ql\377oql\377oql\377oql\377oql\377oql\377oql\377oql\377oql\377oql\377"
+  "oql\377oql\377oql\377qsm\377\0\0\0\0oql\377\362\362\362\377\366\366\366"
+  "\377\366\366\366\377\366\366\366\377\366\366\366\377\366\366\366\377"
+  "\366\366\366\377\366\366\366\377\366\366\366\377\366\366\366\377\366"
+  "\366\366\377\366\366\366\377\362\362\362\377oql\377\0\0\0\0oql\377\354"
+  "\354\352\377\356\356\354\377\210\212\205\377\367\367\366\377\356\356"
+  "\354\377\356\356\354\377\210\212\205\377\367\367\366\377\356\356\354"
+  "\377\356\356\354\377\210\212\205\377\367\367\366\377\354\354\352\377"
+  "oql\377\0\0\0\0oql\377\354\354\352\377\356\356\354\377\210\212\205\377"
+  "\367\367\366\377\356\356\354\377\356\356\354\377\210\212\205\377\367"
+  "\367\366\377\356\356\354\377\356\356\354\377\210\212\205\377\367\367"
+  "\366\377\354\354\352\377oql\377\0\0\0\0oql\377\354\354\352\377\356\356"
+  "\354\377\210\212\205\377\367\367\366\377\356\356\354\377.46\377.46\377"
+  ".46\377\356\356\354\377\356\356\354\377\210\212\205\377\367\367\366\377"
+  "\354\354\352\377oql\377\0\0\0\0oql\377\354\354\352\377\356\356\354\377"
+  "\210\212\205\377\367\367\366\377\356\356\354\377.46\377.46\377.46\377"
+  "\356\356\354\377\356\356\354\377\210\212\205\377\367\367\366\377\354"
+  "\354\352\377oql\377\0\0\0\0oql\377\354\354\352\377\356\356\354\377\210"
+  "\212\205\377\367\367\366\377\356\356\354\377\370\370\370\377\321\322"
+  "\320\377\374\374\374\377\356\356\354\377\356\356\354\377\210\212\205"
+  "\377\367\367\366\377\354\354\352\377oql\377\0\0\0\0oql\377\354\354\352"
+  "\377.46\377.46\377.46\377\356\356\354\377\356\356\354\377\210\212\205"
+  "\377\367\367\366\377\356\356\354\377\356\356\354\377\210\212\205\377"
+  "\367\367\366\377\354\354\352\377oql\377\0\0\0\0oql\377\354\354\352\377"
+  ".46\377.46\377.46\377\356\356\354\377\356\356\354\377\210\212\205\377"
+  "\367\367\366\377\356\356\354\377\356\356\354\377\210\212\205\377\367"
+  "\367\366\377\354\354\352\377oql\377\0\0\0\0oql\377\354\354\352\377\370"
+  "\370\370\377\321\322\320\377\374\374\374\377\356\356\354\377\356\356"
+  "\354\377\210\212\205\377\367\367\366\377\356\356\354\377.46\377.46\377"
+  ".46\377\354\354\352\377oql\377\0\0\0\0oql\377\354\354\352\377\356\356"
+  "\354\377\210\212\205\377\367\367\366\377\356\356\354\377\356\356\354"
+  "\377\210\212\205\377\367\367\366\377\356\356\354\377.46\377.46\377.4"
+  "6\377\354\354\352\377oql\377\0\0\0\0oql\377\354\354\352\377\356\356\354"
+  "\377\210\212\205\377\367\367\366\377\356\356\354\377\356\356\354\377"
+  "\210\212\205\377\367\367\366\377\356\356\354\377\370\370\370\377\321"
+  "\322\320\377\374\374\374\377\354\354\352\377oql\377\0\0\0\0oql\377\352"
+  "\352\351\377\354\354\352\377\373\373\373\377\354\354\352\377\354\354"
+  "\352\377\354\354\352\377\373\373\373\377\354\354\352\377\354\354\352"
+  "\377\354\354\352\377\373\373\373\377\354\354\352\377\352\352\351\377"
+  "oql\377\0\0\0\0qsm\377oql\377oql\377oql\377oql\377oql\377oql\377oql\377"
+  "oql\377oql\377oql\377oql\377oql\377oql\377qsm\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"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (error_png)
+#endif
+#ifdef __GNUC__
+const guint8 error_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 error_png[] =
+#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\225\0\0\30\217\0\0B\217\0\0b\221\0\0t\220\0\0w\220\0"
+  "\0u\220\0\0c\221\0\0C\223\0\0\32\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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\1\220\0\0>\226\3\3\240"
+  "\226\3\3\347\231\12\12\367\257##\360\30166\366\313AA\372\315BB\377\313"
+  "AA\372\30277\367\257$$\360\231\12\12\366\225\3\3\352\226\3\3\243\217"
+  "\0\0B\200\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\0\0\0\0\0\0\0\0\200\0\0\6\220\3\3e\226\3\3"
+  "\346\245\30\30\363\325KK\375\361ll\377\377{{\377\377pp\377\377hh\377"
+  "\377cc\377\377bb\377\377cc\377\377hh\377\377pp\377\377{{\377\362mm\377"
+  "\327LL\375\246\30\30\362\225\3\3\351\220\2\2j\237\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\222\0\0"
+  "F\225\3\3\345\263''\364\352aa\377\377tt\377\377__\377\377MM\377\377B"
+  "B\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377BB\377\377MM\377\377__\377\377tt\377\355cc\377\266((\364\225"
+  "\3\3\350\220\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\237"
+  "\0\0\10\226\3\3\236\237\21\21\364\346YY\377\377nn\377\377TT\377\377B"
+  "B\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "BB\377\377TT\377\377nn\377\350[[\377\241\22\22\364\226\3\3\247\231\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\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\222\0\0\25\226\4\4\325\273--\366\372mm\377"
+  "\377XX\377\377BB\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377BB\377\377XX\377"
+  "\373nn\377\275--\367\226\3\3\334\223\0\0\32\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\217\0\0\31\225\3\3"
+  "\343\315==\372\377jj\377\377JJ\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\377JJ\377\377kk\377\320\77\77\373"
+  "\224\3\3\350\217\0\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\217\0\0\20\225\3\3\333\320\77\77\373\377ee\377\377EE\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377EE\377\377ee\377\326BB\374\225\3\3\343\222\0"
+  "\0\25\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\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\1\226\4\4\276"
+  "\30522\371\377cc\377\377DD\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377DD\377\377cc\377\31144\372\226\4\4\307\200\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\222\2\2s\252\30\30\365\375bb\377\377EE\377\377A"
+  "A\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377BB\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377BB\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377EE\377\376"
+  "bb\377\255\32\32\365\225\4\4\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\0\0\0\0\0\0\0\0\0\222\0\0"
+  "\34\226\5\5\365\362WW\377\377KK\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\376NN\377\361\314\313\377\364\217\216\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\373ff\377\360\333\331\377\370hh\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "KK\377\365YY\377\226\5\5\365\222\0\0#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\226\4\4\254"
+  "\31433\372\377UU\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\376LL\377\361\312\311\377\356\356\354\377\356\356\354\377"
+  "\360\224\223\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\374dc\377\357\342\340\377\356\356\354\377"
+  "\356\347\345\377\366lk\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\377UU\377\31755\374\226\4\4\267\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\223\0\0!\226\6\6\367\371WW\377\377DD\377\377AA\377\377AA\377\377A"
+  "A\377\377AA\377\377AA\377\376LL\377\361\312\311\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\360\224\223\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\374dc\377\357\342"
+  "\340\377\356\356\354\377\356\356\354\377\356\356\354\377\356\347\345"
+  "\377\366lk\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377DD\377\374YY\377\231\7\7\364\221\0\0,\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\225\2\2\220\307,,"
+  "\372\377OO\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\376"
+  "LL\377\361\312\311\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\360\224\223\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\374dc\377\357\342\340\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\356\347\345\377\366lk\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377NN\377\314//\374\226\3\3\236\0\0\0\0\0\0\0\0"
+  "\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\0\0\3\225\3\3\356"
+  "\360JJ\377\377EE\377\377AA\377\377AA\377\377AA\377\377AA\377\377BB\377"
+  "\361\314\313\377\356\356\354\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356"
+  "\354\377\360\217\216\377\377AA\377\377AA\377\373ff\377\357\344\342\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\356\345\343\377\366]]\377"
+  "\377@@\377\377@@\377\377@@\377\377\77\77\377\377\77\77\377\377DD\377"
+  "\363JJ\377\224\2\2\363\200\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\220\0\0""5\241\16\16\361\377OO\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\377AA\377\364\216\216\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\361\224\223\377\374dc\377\357\342\340\377\356\356\354\377\356\356\354"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\353\277\274\377\347GG\377\377\77\77"
+  "\377\377>>\377\377>>\377\377>>\377\377==\377\377==\377\377KK\377\245"
+  "\17\17\360\221\0\0A\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\223\2\2x\300##\370\377HH\377\377AA\377\377AA\377\377AA\377\377"
+  "AA\377\377AA\377\377AA\377\377AA\377\360\216\216\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\350\342"
+  "\340\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\353\276\274\377\346GF\377\371>>\377\377==\377\377==\377\377<<\377\377"
+  "<<\377\377<<\377\377;;\377\377CC\377\307##\373\223\2\2\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\230\4\4\264\33122\377"
+  "\377EE\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\360\216\216\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\350\350\346\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\356\356\354\377\353\276\274\377\346ED\377\371==\377\377<<\377\377"
+  ";;\377\377;;\377\377;;\377\377::\377\377::\377\377::\377\377==\377\336"
+  "00\377\230\4\4\302\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\227\5\5\335\352::\377\377BB\377\377AA\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377AA\377\377AA\377\377AA\377\377@@\377\360\215"
+  "\215\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\350\350\346\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\353\276\274\377\346DC\377\371<<\377\377"
+  "::\377\377::\377\377::\377\37799\377\37799\377\37799\377\37788\377\377"
+  "88\377\377::\377\35766\377\226\3\3\347\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\225\3\3\360\364>>\377\377AA\377\377AA\377"
+  "\377AA\377\377AA\377\377@@\377\377@@\377\377@@\377\377\77\77\377\377"
+  "\77\77\377\377\77\77\377\377>>\377\360\215\215\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\356\356\354\377\350\350\346"
+  "\377\356\356\354\377\356\356\354\377\353\276\273\377\346CB\377\371::"
+  "\377\37799\377\37799\377\37788\377\37788\377\37788\377\37777\377\377"
+  "77\377\37777\377\37766\377\37766\377\37266\377\223\1\1\370\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\223\1\1\370\371==\377"
+  "\377@@\377\377@@\377\377\77\77\377\377\77\77\377\377\77\77\377\377>>"
+  "\377\377>>\377\377>>\377\377==\377\377==\377\377==\377\377<<\377\360"
+  "\214\214\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\356\356\354\377\350\350\346\377\353\275\273\377\346BA\377\37199"
+  "\377\37788\377\37777\377\37777\377\37777\377\37766\377\37766\377\377"
+  "66\377\37755\377\37755\377\37755\377\37744\377\37744\377\221\0\0\375"
+  "\200\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\223\1\1\370"
+  "\371;;\377\377>>\377\377\77\77\377\377\77\77\377\377==\377\377==\377"
+  "\377==\377\377<<\377\377<<\377\377<<\377\377;;\377\377;;\377\377;;\377"
+  "\374^]\377\350\341\340\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\344\224\222\377\37188\377\37766\377"
+  "\37766\377\37766\377\37755\377\37755\377\37755\377\37744\377\37744\377"
+  "\37744\377\37744\377\37744\377\37733\377\37722\377\221\0\0\375\200\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\225\2\2\360\364"
+  "88\377\377==\377\377==\377\377==\377\377==\377\377<<\377\377;;\377\377"
+  ";;\377\377::\377\377::\377\377::\377\37799\377\374^]\377\357\342\340"
+  "\377\356\356\354\377\347\347\346\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\360\216\215\377\37755\377"
+  "\37744\377\37744\377\37744\377\37733\377\37733\377\37733\377\37733\377"
+  "\37733\377\37733\377\37722\377\37722\377\371//\377\223\1\1\370\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\227\5\5\335\35100"
+  "\377\377==\377\377<<\377\377<<\377\377<<\377\377;;\377\377::\377\377"
+  "99\377\37799\377\37788\377\37788\377\374]\\\377\357\342\340\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\347\347\346\377\356\356\354"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\360"
+  "\215\214\377\37733\377\37722\377\37722\377\37722\377\37711\377\37722"
+  "\377\37722\377\37722\377\37722\377\37722\377\37711\377\356))\377\226"
+  "\3\3\347\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231"
+  "\6\6\264\330''\377\377;;\377\377<<\377\377;;\377\377;;\377\377::\377"
+  "\37799\377\37788\377\37777\377\37777\377\374[Z\377\357\342\340\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356"
+  "\354\377\347\347\346\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\360\214\213\377\37711\377\37700\377"
+  "\37700\377\37711\377\37700\377\37711\377\37722\377\37711\377\37711\377"
+  "\37700\377\335!!\377\232\5\5\302\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\224\4\4y\277\32\32\370\377::\377\377<<\377\377<"
+  "<\377\377;;\377\37799\377\37788\377\37777\377\37766\377\374ZY\377\357"
+  "\342\340\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\356\356\354\377\347\347\346"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\360\213\212\377\377//\377\377//\377\377//\377\37700\377"
+  "\37700\377\37722\377\37733\377\37711\377\377//\377\304\27\27\373\224"
+  "\2\2\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\222"
+  "\5\5""6\240\13\13\361\377::\377\377;;\377\377<<\377\377<<\377\377::\377"
+  "\37788\377\37766\377\374[Z\377\357\341\337\377\356\356\354\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\356\356\354\377\356\356\354\377\353\273\271\377\344\213\212\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356"
+  "\354\377\360\212\211\377\377..\377\377..\377\377//\377\37722\377\377"
+  "22\377\37722\377\37722\377\377..\377\244\13\13\360\221\4\4A\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\277@@\4\226\5\5\356\355"
+  "11\377\377;;\377\377<<\377\377==\377\377;;\377\37788\377\37777\377\360"
+  "\331\327\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354"
+  "\377\353\271\267\377\347;9\377\371//\377\360\206\205\377\356\356\354"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\361"
+  "UT\377\377..\377\37700\377\37722\377\37744\377\37722\377\37711\377\362"
+  "))\377\225\4\4\363\222$$\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\377\377\377\1\227\7\7\220\304\34\34\371\37799\377\377"
+  "<<\377\377<<\377\377<<\377\377::\377\37766\377\370^^\377\356\344\342"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\353\273\270\377\34687\377\371..\377"
+  "\377--\377\377,,\377\360\203\203\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\351\215\213\377\35211\377\377//\377\37722\377\37733\377"
+  "\37744\377\37733\377\377//\377\311\32\32\374\230\6\6\237\377\377\377"
+  "\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\377\377\377"
+  "\1\231\17\17#\227\7\7\367\37044\377\377;;\377\377==\377\377==\377\377"
+  ";;\377\37788\377\37755\377\366\\\\\377\356\344\342\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\353\272\270\377\346"
+  "76\377\371--\377\377++\377\377++\377\377++\377\377**\377\360\202\202"
+  "\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377"
+  "\356\356\354\377\351\215\213\377\35211\377\375..\377\37700\377\37733"
+  "\377\37755\377\37744\377\37711\377\374--\377\231\7\7\365\226\13\13.\377"
+  "\377\377\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\377"
+  "\377\377\1\377\377\377\2\231\11\11\254\307\36\36\372\37788\377\377;;"
+  "\377\377>>\377\377<<\377\377::\377\37788\377\37733\377\366]]\377\356"
+  "\344\342\377\356\356\354\377\356\356\354\377\353\272\270\377\34687\377"
+  "\371--\377\377++\377\377++\377\377**\377\377**\377\377**\377\377))\377"
+  "\360\201\201\377\356\356\354\377\356\356\354\377\356\356\354\377\351"
+  "\214\213\377\35211\377\375..\377\37711\377\37733\377\37744\377\37755"
+  "\377\37744\377\377..\377\314\32\32\373\231\10\10\267\377\377\377\2\377"
+  "\377\377\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\377\377\377\1\234\31\31\37\230\10\10\365\360//\377\37788\377\377"
+  "<<\377\377==\377\377<<\377\377::\377\37777\377\37744\377\366]]\377\356"
+  "\345\343\377\353\273\270\377\34688\377\371--\377\377++\377\377**\377"
+  "\377**\377\377**\377\377))\377\377))\377\377))\377\377))\377\360\201"
+  "\201\377\356\356\354\377\351\214\213\377\35222\377\375..\377\37711\377"
+  "\37733\377\37755\377\37755\377\37733\377\37700\377\363((\377\230\7\7"
+  "\365\230\25\25%\377\377\377\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\377\377\377\1\377\377\377\2\227\13\13"
+  "s\247\20\20\364\37544\377\37788\377\377<<\377\377<<\377\377;;\377\377"
+  ";;\377\37788\377\37755\377\367RR\377\351<;\377\37111\377\377--\377\377"
+  ",,\377\377++\377\377**\377\377**\377\377**\377\377))\377\377**\377\377"
+  "++\377\377++\377\362TS\377\35233\377\37500\377\37733\377\37744\377\377"
+  "55\377\37755\377\37744\377\37700\377\376++\377\253\20\20\364\231\12\12"
+  "\177\252\252\252\3\377\377\377\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\377\377\377\1\277\200\200"
+  "\4\230\11\11\275\300\31\31\370\37744\377\37777\377\377;;\377\377<<\377"
+  "\377;;\377\377::\377\37799\377\37766\377\37744\377\37733\377\37711\377"
+  "\377//\377\377..\377\377..\377\377--\377\377--\377\377--\377\377--\377"
+  "\377..\377\37700\377\37711\377\37722\377\37744\377\37755\377\37766\377"
+  "\37766\377\37733\377\37700\377\377,,\377\304\27\27\371\230\10\10\307"
+  "mII\7\200\200\200\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\200\200\200\2\214&&\24"
+  "\227\10\10\334\312\34\34\371\37733\377\37755\377\37799\377\377::\377"
+  "\377::\377\377::\377\37699\377\37799\377\37777\377\37766\377\37744\377"
+  "\37733\377\37733\377\37733\377\37722\377\37722\377\37722\377\37733\377"
+  "\37744\377\37755\377\37655\377\37666\377\37766\377\37744\377\37722\377"
+  "\377//\377\377**\377\320\30\30\374\226\10\10\345{\32\32\35+++\6\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\1UUU\3fff\5\203\27\27!\225\10\10\345\305"
+  "\32\32\372\37700\377\37733\377\37766\377\37799\377\37688\377\37699\377"
+  "\377::\377\37799\377\37799\377\37799\377\37788\377\37777\377\37777\377"
+  "\37777\377\37766\377\37666\377\37777\377\37777\377\37777\377\37666\377"
+  "\37644\377\37733\377\37711\377\377,,\377\377))\377\312\27\27\373\226"
+  "\10\10\352m\20\20""1'''\15\40\40\40\10\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\1\0\0\0\2""333\5\34\34\34\11c\25\25$\225\10\10\327\264\23\23\366"
+  "\370++\377\377//\377\37722\377\37744\377\37766\377\37677\377\37799\377"
+  "\37788\377\37788\377\37788\377\37788\377\37788\377\37788\377\37788\377"
+  "\37777\377\37766\377\37766\377\37633\377\37722\377\37700\377\377,,\377"
+  "\377))\377\372%%\377\267\21\21\370\224\7\7\340O\16\16""7\25\25\25\30"
+  "\20\20\20\20\0\0\0\11\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\1\0\0\0\2\0\0"
+  "\0\5\32\32\32\12\20\20\20\20""0\20\20\40\215\10\10\250\233\11\11\366"
+  "\336\37\37\377\377**\377\377--\377\37700\377\37711\377\37722\377\377"
+  "44\377\37633\377\37744\377\37755\377\37755\377\37744\377\37733\377\376"
+  "22\377\37711\377\37700\377\377..\377\377++\377\377((\377\377&&\377\342"
+  "\33\33\377\234\11\11\367\207\7\7\271\40\11\11""7\7\7\7$\12\12\12\32\0"
+  "\0\0\20\0\0\0\12\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\1\0\0\0\2\0\0\0\5"
+  "\0\0\0\11\0\0\0\17\13\13\13\30\17\17\17#e\10\10e\223\7\7\351\252\15\15"
+  "\366\345\36\36\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\350\34\34\377\254\14\14\367\223\6\6\356"
+  "Z\6\6|\11\11\11;\6\6\6.\0\0\0\"\0\0\0\30\0\0\0\20\0\0\0\12\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\1\0\0\0\2\0\0\0\4\0\0\0\7\0\0\0\15\0\0\0\24"
+  "\11\11\11\35\7\7\7'\30\11\11""6n\6\6\207\224\5\5\354\236\10\10\366\314"
+  "\25\25\375\354\36\36\377\377##\377\377$$\377\377%%\377\377%%\377\377"
+  "%%\377\377%%\377\377$$\377\377##\377\377\"\"\377\355\35\35\377\315\25"
+  "\25\376\236\11\11\367\223\5\5\360f\5\5\231\21\7\7L\4\4\4=\5\5\5""2\0"
+  "\0\0'\0\0\0\35\0\0\0\25\0\0\0\15\0\0\0\10\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\1\0\0\0\1\0\0\0\3\0\0\0\5\0\0\0\11\0\0\0\17\0\0\0\25\0\0\0\35"
+  "\7\7\7&\5\5\5/\15\11\11""9T\5\5m\202\6\6\271\223\5\5\355\225\5\5\372"
+  "\243\12\12\365\265\16\16\371\300\21\21\373\305\22\22\377\301\21\21\373"
+  "\266\16\16\371\244\12\12\365\226\5\5\372\223\5\5\360\177\5\5\303N\4\4"
+  "}\12\7\7K\4\4\4B\4\4\4""9\0\0\0/\0\0\0&\0\0\0\36\0\0\0\26\0\0\0\17\0"
+  "\0\0\12\0\0\0\6\0\0\0\3\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\1\0\0\0\2\0"
+  "\0\0\3\0\0\0\6\0\0\0\11\0\0\0\16\0\0\0\23\0\0\0\31\0\0\0\37\0\0\0&\6"
+  "\6\6-\5\5\5""3\4\4\4:-\6\6PT\4\4sf\4\4\217k\3\3\235l\3\3\241k\3\3\240"
+  "c\3\3\223Q\4\4{-\6\6Z\4\4\4E\4\4\4@\4\4\4;\5\5\5""5\0\0\0-\0\0\0&\0\0"
+  "\0\40\0\0\0\32\0\0\0\24\0\0\0\16\0\0\0\12\0\0\0\6\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\1\0\0\0\2\0\0\0\3\0\0\0\5\0\0"
+  "\0\10\0\0\0\13\0\0\0\17\0\0\0\23\0\0\0\27\0\0\0\33\0\0\0\37\0\0\0$\0"
+  "\0\0'\6\6\6,\5\5\5/\5\5\5""1\5\5\5""3\5\5\5""3\5\5\5""3\5\5\5""1\0\0"
+  "\0.\0\0\0+\0\0\0(\0\0\0$\0\0\0\40\0\0\0\34\0\0\0\27\0\0\0\23\0\0\0\17"
+  "\0\0\0\13\0\0\0\10\0\0\0\6\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\1\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\6\0"
+  "\0\0\10\0\0\0\12\0\0\0\14\0\0\0\17\0\0\0\21\0\0\0\24\0\0\0\26\0\0\0\30"
+  "\0\0\0\32\0\0\0\33\0\0\0\34\0\0\0\34\0\0\0\34\0\0\0\33\0\0\0\32\0\0\0"
+  "\30\0\0\0\26\0\0\0\24\0\0\0\21\0\0\0\17\0\0\0\14\0\0\0\12\0\0\0\10\0"
+  "\0\0\6\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\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0"
+  "\3\0\0\0\4\0\0\0\6\0\0\0\7\0\0\0\10\0\0\0\11\0\0\0\12\0\0\0\13\0\0\0"
+  "\15\0\0\0\15\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\15\0\0\0\15\0\0\0\14\0"
+  "\0\0\13\0\0\0\11\0\0\0\10\0\0\0\7\0\0\0\6\0\0\0\5\0\0\0\3\0\0\0\2\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\1\0\0\0\1\0\0\0\1\0\0\0\2"
+  "\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\4\0\0\0\4\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\5\0\0\0\5\0\0\0\4\0\0\0\4\0\0\0\3"
+  "\0\0\0\3\0\0\0\2\0\0\0\2\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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\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\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\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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 (exit_png)
+#endif
+#ifdef __GNUC__
+const guint8 exit_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 exit_png[] =
+#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_a^\276UWS\377UWS\377UWS\377"
+  "UWS\377UWS\377UWS\377UWS\377UWS\377_a^\276\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0UWS\377\233\233\233\377}}}\377ooo\377ddd\377^^"
+  "^\377\357\357\355\377\357\357\355\377\357\357\355\377UWS\377\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\245\0\0\335\245\0\0G\0\0\0\0UWS\377\250\250\250\377"
+  "\210\210\210\377zzz\377ooo\377jjj\377\366\366\365\377\372\372\372\377"
+  "\365\365\364\377WYU\377\0\0\0\0\0\0\0\0\0\0\0\0\244\0\0\375\261\37\37"
+  "\367\245\0\0`UWS\377\263\263\263\377\224\224\224\377\206\206\206\377"
+  "yyy\377rrr\377\370\370\370\377\375\375\375\377\367\367\366\377WYU\377"
+  "\244\0\0\347\245\0\0\366\245\0\0\366\246\0\0\374\343\200\200\377\261"
+  "\35\35\366{.,\377\265\265\265\377\232\232\232\377\216\216\216\377\202"
+  "\202\202\377yyy\377\371\371\370\377\375\375\375\377\367\367\366\377W"
+  "YU\377\244\0\0\377\341pp\377\341qq\377\342qq\377\343qq\377\336hh\377"
+  "\257\35\35\377\255LL\377\235\234\234\377\221\221\221\377\205\205\205"
+  "\377|||\377\371\371\370\377\375\375\375\377\367\367\366\377WYU\377\244"
+  "\0\0\377\333JJ\377\322\37\37\377\323\"\"\377\323##\377\324**\377\326"
+  "\77\77\377\262\30\30\377\24455\377\224\224\224\377\210\210\210\377\177"
+  "\177\177\377\371\371\370\377\375\375\375\377\367\367\366\377XZV\377\244"
+  "\0\0\377\330::\377\314\0\0\377\314\0\0\377\314\0\0\377\320\24\24\377"
+  "\32544\377\261\23\23\377\24577\377\226\226\226\377\212\212\212\377\201"
+  "\201\201\377\371\371\370\377\375\375\375\377\366\366\366\377XZV\377\244"
+  "\0\0\377\330::\377\330::\377\330::\377\330::\377\32433\377\251\15\14"
+  "\377\256HH\377\245\244\244\377\231\231\231\377\215\215\215\377\203\203"
+  "\203\377\367\367\366\377\374\374\374\377\363\364\362\377XZV\377\245\0"
+  "\0\363\244\0\0\377\244\0\0\377\246\0\0\374\32111\377\253\7\7\365|,*\377"
+  "\271\271\271\377\250\250\250\377\234\234\234\377\220\220\220\377\207"
+  "\207\207\377\364\364\363\377\373\373\373\377\360\360\357\377XZV\377\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\244\0\0\375\250\5\5\366\244\0\0hUWS\377\272\272"
+  "\272\377\252\252\252\377\236\236\236\377\223\224\223\377\177\177~\377"
+  "\353\353\352\377\362\362\361\377\350\350\346\377WYU\377\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\244\0\0\354\246\0\0S\0\0\0\0UWS\377\271\271\271\377\253\253"
+  "\253\377\223\223\222\377\207\207\206\377\324\324\322\377\343\344\342"
+  "\377\344\344\342\377\335\335\332\377VXT\377\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0UWS\376\276\276\276\377\207\207\206\377\251\253"
+  "\246\377\317\321\313\377\321\323\315\377\321\323\315\377\321\323\315"
+  "\377\317\321\313\377UWS\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<=;\321\\^[\377TVR\377VXT\377VXT\377VXT\377VXT\377VXT\377VXT\377"
+  "`a]\275\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"
+  "\0\0\0\0\0\0\0\0\0\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 (file_png)
+#endif
+#ifdef __GNUC__
+const guint8 file_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 file_png[] =
+#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\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\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\377\0\0\0\0\0\0\0\0\0\0\0\377\363\363\362\377"
+  "\363\363\362\377\363\363\362\377\363\363\362\377\363\363\362\377\363"
+  "\363\362\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\0\0\0"
+  "\0\377\0\0\0\0\0\0\0\0\0\0\0\377\356\356\354\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\0\0\0\377"
+  "\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0"
+  "\377\0\0\0\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356"
+  "\354\377\356\356\354\377\360\360\356\377\32<m\377\31""9i\377\22)K\377"
+  "\4\11\21\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\356\356"
+  "\354\377\361\361\357\377\33>q\377\224\260\320\377x\223\266\377\33<k\377"
+  "\31>p)\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\356\356\354\377\356"
+  "\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\361\361"
+  "\357\377\33>q\377\204\252\323\377\272\320\347\377\231\261\316\377\33"
+  ">q\304\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\356\356\354\377"
+  "\356\356\354\377\356\356\354\377\356\356\354\377\356\356\354\377\361"
+  "\361\357\377\33>p\377o\233\313\377n\227\303\377\263\304\327\377Mm\230"
+  "\377\32=p;\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\356\356\354\377\356\356"
+  "\354\377\356\356\354\377\356\356\354\377\356\356\354\377\361\361\357"
+  "\377\33>p\377g\217\274\377Fg\216\377;Z\203\377:`\222\377\32>q\221\0\0"
+  "\0\377\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\4\4\4\377'''\377\33=p\377m\231\311\377\35 at t\376\13\31-\377\33>p"
+  "\322\33>q\342\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\363\363\362\377"
+  "\363\363\362\377\363\363\362\377\363\363\362\377\363\363\362\377\365"
+  "\365\364\377\33=o\377j\225\306\377\32=n\377\0\0\0\377\0\0\0\31\6\22$"
+  "*\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\356\356\354\377\356\356\354\377"
+  "\357\357\355\377\360\360\356\377\361\361\357\377\360\360\356\377\33>"
+  "q\377j\225\306\377\33>q\371\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0"
+  "\0\0\0\0\0\0\0\0\377\356\356\354\377\355\356\355\377\233\251\275\377"
+  "Nh\217\377(Iy\377#Ev\377)M\177\377l\230\310\377\33>q\371\0\0\0\377\0"
+  "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\356\356\354\377"
+  "e|\235\377Ts\235\377\250\276\327\377\302\324\350\377\301\323\350\377"
+  "\244\300\337\377l\230\311\377\32=n\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0"
+  "\0\377\0\0\0\0\0\0\0\0\0\0\0\377\356\356\354\377\"Du\377~\243\314\377"
+  "\214\260\326\377u\240\317\377x\242\320\377p\232\307\377g\223\302\377"
+  "\33>q\362\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377"
+  "\356\356\354\377o\204\242\377/U\207\377U{\251\377Y~\245\377[~\246\377"
+  "Ot\235\377.S\203\377\32=r\222\0\0\0\377\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\1\1\377\14\33""2\377\27""4_\377"
+  "\33=o\377\33=p\377\27""5a\377\15\35""5\377\0\1\1\377\0\0\0\377\0\0\0"
+  "\0\0\0\0\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (image_png)
+#endif
+#ifdef __GNUC__
+const guint8 image_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 image_png[] =
+#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\251\255\247\264\270\272\264\376\270\272\264\376\270\272\264"
+  "\376\270\272\264\376\270\272\264\376\270\272\264\376\270\272\264\376"
+  "\266\270\262\376\251\254\245\262\377\377\377\2\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\267\273\264\376\362\362\361\377\376\376\376\377\376"
+  "\376\376\377\376\376\376\377\376\376\376\377\376\376\376\377\376\376"
+  "\375\377\362\362\362\377\274\277\271\376\255\257\251\326\377\377\377"
+  "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\271\274\264\377\376\376\376\377\362"
+  "\363\361\377\361\362\357\377\357\361\356\377\356\357\354\377\354\356"
+  "\352\377\353\354\351\377\331\333\331\377\333\333\333\377\274\277\271"
+  "\376\252\256\247\312\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377"
+  "\376\376\376\377\364\365\363\377\362\363\361\377\361\362\357\377\357"
+  "\361\356\377\356\357\354\377\354\356\352\377\305\306\303\377\355\355"
+  "\354\377\333\333\333\377\271\274\265\376\246\250\242\222\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\271\274\265\377\376\376\376\377\365\366\365\377\364\365"
+  "\363\377\362\363\361\377\361\362\357\377\357\361\356\377\356\357\354"
+  "\377\261\263\257\377\235\237\233\377\253\254\250\377\261\262\257\377"
+  "\264\267\260\374\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\376\376\376"
+  "\377\367\370\366\377\365\366\365\377\364\365\363\377\362\363\361\377"
+  "\361\362\357\377\357\361\356\377\356\357\354\377\354\356\352\377\352"
+  "\354\351\377\375\375\375\377\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\270\273\264\377xzv\377xzv\377\211\212\206\377\253\255\251\377\336\337"
+  "\334\377\362\363\361\377\361\362\357\377\357\361\356\377\356\357\354"
+  "\377\354\356\352\377\375\375\375\377\271\274\264\377\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\275\300\271\377\376\376\376\377\376\376\376\377\364\364\364"
+  "\377\322\323\321\377\207\211\205\377\250\252\247\377\357\360\356\377"
+  "\361\362\357\377\357\361\356\377\356\357\354\377\375\375\375\377\271"
+  "\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\275\300\271\377\367\370\367\377"
+  "\365\366\364\377\365\366\364\377\370\371\370\377\373\373\373\377\260"
+  "\262\260\377\223\225\222\377\357\360\356\377\361\362\357\377\357\361"
+  "\356\377\375\376\375\377\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\275"
+  "\300\271\377\365\366\364\377\363\364\362\377\360\362\357\377\356\357"
+  "\354\377\357\361\355\377\374\374\374\377\255\257\255\377\251\253\250"
+  "\377\362\363\361\377\361\362\357\377\376\376\375\377\271\274\264\377"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\275\300\271\377\364\365\363\377\361\362\360"
+  "\377\356\360\355\377\354\356\352\377\351\353\347\377\353\355\352\377"
+  "\371\371\371\377\204\206\202\377\336\340\335\377\362\363\361\377\376"
+  "\376\376\377\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\275\300\271\377"
+  "\376\376\376\377\376\376\375\377\366\367\366\377\353\355\351\377\350"
+  "\352\346\377\345\347\343\377\363\364\362\377\305\305\304\377\254\256"
+  "\252\377\364\365\363\377\376\376\376\377\271\274\264\377\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\273\277\267\377\215\217\212\377\214\216\210\377\347\350"
+  "\347\377\364\365\364\377\346\350\344\377\344\346\341\377\350\352\346"
+  "\377\352\352\352\377\211\213\207\377\365\366\364\377\376\376\376\377"
+  "\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\270\273\264\377\316\320\314"
+  "\377\317\317\314\377\214\216\211\377\375\375\374\377\344\347\342\377"
+  "\342\344\337\377\341\344\336\377\371\371\371\377y{w\377\367\370\366\377"
+  "\376\376\376\377\270\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\266\272\263"
+  "\377\314\314\312\377\314\316\314\377\214\216\211\377\375\375\374\377"
+  "\343\345\340\377\340\343\335\377\337\342\334\377\370\370\370\377y{w\377"
+  "\377\377\377\377\363\363\361\377\267\273\264\376\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\273\276\270\323\266\272\262\377\267\271\263\377\275\277\271\377"
+  "\276\300\272\377\275\277\271\377\275\277\271\377\275\277\271\377\275"
+  "\277\271\377\266\270\262\377\270\272\264\376\267\273\263\376\251\254"
+  "\246\262\0\0\0\0\0\0\0\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (information_png)
+#endif
+#ifdef __GNUC__
+const guint8 information_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 information_png[] =
+#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\40J\212\30\37I\207B\37I\207b!K\206t\40K\207w!J\207u"
+  "\37K\206c\36H\205C\35N\211\32\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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\1!J\210>%N\213\240$O\213"
+  "\347)S\214\367Cj\237\360W|\256\366b\207\265\372d\210\267\377b\210\266"
+  "\372X}\255\367Dk\240\360+T\216\366$M\213\352$P\215\243\37I\207B\0\200"
+  "\200\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\0\0\0\0\0\0\0\0+U\200\6#L\210e#N\211\3468_\227\363"
+  "m\220\274\375\216\256\323\377\235\274\336\377\225\267\333\377\217\263"
+  "\331\377\213\260\327\377\212\260\327\377\213\260\327\377\217\263\331"
+  "\377\225\267\333\377\235\274\336\377\217\257\324\377m\221\275\375:a\231"
+  "\362$N\213\351\"K\211j\40@\200\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!I\207F$N\212\345Gn\242\364\205\246"
+  "\315\377\230\271\334\377\210\256\327\377{\245\322\377s\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377s\237\317\377{\245\322\377\210\256\327\377\230\271\334"
+  "\377\205\250\316\377Ip\245\364$N\212\350\"J\206L\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40@\200\10$O\211\2361Y\223\364|\237\310"
+  "\377\224\266\332\377\200\250\324\377s\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377s\237\317\377\200\250\324\377\224\266\332\377~\241\312\3771["
+  "\224\364%N\213\247\32M\200\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0$I\206\25$O\213\325"
+  "Nt\250\366\222\263\330\377\203\253\325\377s\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "s\237\317\377\203\253\325\377\222\264\331\377Ow\251\367$O\213\334\35"
+  "N\211\32\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\37G\205\31$O\212\343`\206\265\372\220\264\331\377y\244"
+  "\321\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377y\244\321\377\221\264\332\377c\210\270\373$M\212\350\40H\207\40\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\40P\200\20"
+  "$N\213\333c\210\267\373\215\261\330\377u\241\320\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377u\241\320\377\215\261\330\377f\214\272\374$O\212\343$I\206\25\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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\1$O\214\276V}\255\371"
+  "\213\260\327\377t\241\320\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377\211\257\327\377\323\341"
+  "\360\377\364\370\373\377\364\370\373\377\323\341\360\377\211\257\327"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377t\241\320\377\213\260\330\377Y\200\260\372"
+  "%O\214\307\0\200\200\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#K\211s:b\231"
+  "\365\212\256\327\377u\241\320\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377}\246\323\377\363"
+  "\367\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
+  "\377\377\363\367\373\377|\246\322\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377u\241\320"
+  "\377\213\257\330\377=e\234\365\"L\213\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\0\0\0\0\0\0\0\0\0"
+  "$I\211\34$N\212\365~\244\317\377y\244\321\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377\232\272\335\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\231\272\334\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377y\244\321\377\201\246\320\377%O\213\365"
+  "\35I\212#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0%O\213\254Y\201\263\372\201\251\324\377r"
+  "\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377~\247\323\377\366\371\374"
+  "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
+  "\365\370\374\377~\247\323\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377\201\251\324\377[\203\264\374&O\213\267\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37M\203!'"
+  "O\213\367\200\247\322\377t\241\320\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377\216\262\331\377\334\347\363\377\374\375\376"
+  "\377\374\375\376\377\334\347\363\377\216\262\330\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377t\241\320\377\202\251\324"
+  "\377)R\215\364#K\205,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0#N\212\220Ry\255\372}\246\323\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377t\241\320\377t\241\320\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "}\246\323\377T~\261\374%O\213\236\0\0\0\0\0\0\0\0\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\252\3$M\212\356s\234\312\377u\241\320"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\316"
+  "\377r\237\316\377u\240\317\377v\236\313\377#M\211\363+U\200\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\"H\2075/X\222\361}\246"
+  "\323\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377v\242\320\377\244\301\340\377\327\344\361\377\353\361\370\377"
+  "\237\276\336\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\316\377r\236\316\377r\236\316\377q\236"
+  "\316\377q\236\316\377q\236\316\377q\236\316\377q\236\316\377|\245\321"
+  "\3771[\225\360\37K\205A\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\"J\206xIs\250\370x\243\321\377r\237\317\377r\237\317\377r"
+  "\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377x\243\321\377\263\313\345\377\363\367\373\377\377\377"
+  "\377\377\377\377\377\377\377\377\377\377\274\321\350\377r\237\316\377"
+  "r\237\316\377r\236\316\377r\236\316\377q\236\316\377q\236\316\377q\236"
+  "\316\377q\236\316\377q\236\316\377q\236\315\377q\236\315\377q\236\315"
+  "\377q\236\315\377q\236\315\377w\241\317\377Mv\254\373\"L\211\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&O\214\264[\205\271"
+  "\377u\241\320\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377u\241\320\377\252\305\342\377\361\366"
+  "\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\377\226\267\333\377q\236\316\377q\236\316\377q\236\316"
+  "\377q\236\316\377q\236\315\377q\236\315\377q\236\315\377q\236\315\377"
+  "q\236\315\377q\235\315\377q\235\315\377q\235\315\377q\235\315\377q\235"
+  "\314\377s\237\315\377^\210\272\377&P\215\302\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&P\214\335g\223\302\377s\240\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377u\241\320"
+  "\377\255\307\342\377\360\365\372\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\370"
+  "\372\374\377t\240\316\377q\236\315\377q\236\315\377q\236\315\377q\236"
+  "\315\377q\235\315\377q\235\315\377q\235\315\377q\235\314\377p\235\314"
+  "\377p\235\314\377p\235\314\377p\235\314\377p\235\314\377p\235\314\377"
+  "q\236\314\377i\223\304\377$N\212\347\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0$N\212\360l\230\311\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\316\377r\236\316\377r\236\316\377q\236\316\377\246\302\340\377"
+  "\377\377\377\377\377\377\377\377\372\374\375\377\326\343\361\377\377"
+  "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\321\340"
+  "\357\377q\235\315\377q\235\315\377q\235\315\377q\235\314\377p\235\314"
+  "\377p\235\314\377p\235\314\377p\235\314\377p\235\314\377p\235\314\377"
+  "p\235\314\377p\235\314\377p\234\313\377p\234\313\377p\234\313\377p\234"
+  "\313\377o\232\310\377\"L\211\370\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\"L\211\370n\233\313\377r\237\317\377r\237\316\377"
+  "r\237\316\377r\236\316\377r\236\316\377q\236\316\377q\236\316\377q\236"
+  "\316\377q\236\316\377q\236\316\377q\236\315\377\253\306\341\377\357\364"
+  "\371\377\264\314\345\377|\246\321\377\217\261\327\377\377\377\377\377"
+  "\377\377\377\377\377\377\377\377\377\377\377\377\247\303\340\377p\235"
+  "\314\377p\235\314\377p\235\314\377p\235\314\377p\235\314\377p\235\314"
+  "\377p\234\313\377p\234\313\377p\234\313\377p\234\313\377p\234\313\377"
+  "p\234\313\377p\234\313\377p\234\313\377o\234\313\377o\234\312\377o\233"
+  "\312\377\40K\210\375\0\200\200\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\"L\211\370m\232\312\377q\236\316\377r\236\316\377r\236\316"
+  "\377q\236\316\377q\236\316\377q\236\315\377q\236\315\377q\236\315\377"
+  "q\236\315\377q\236\315\377q\235\315\377q\235\315\377q\235\315\377q\235"
+  "\314\377q\235\314\377\265\314\345\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\376\376\377\377}\246\321\377p\235\314\377p\234\313\377"
+  "p\234\313\377p\234\313\377p\234\313\377p\234\313\377p\234\313\377p\234"
+  "\313\377p\234\313\377o\234\313\377o\234\312\377o\234\312\377o\234\312"
+  "\377p\233\312\377p\233\312\377o\233\312\377o\232\312\377\40K\210\375"
+  "\0\200\200\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$N\212\360"
+  "j\226\306\377r\236\315\377r\236\315\377r\236\315\377r\236\315\377r\236"
+  "\315\377q\235\315\377q\235\315\377q\235\315\377q\235\314\377p\235\314"
+  "\377p\235\314\377p\235\314\377p\235\314\377p\235\314\377p\235\314\377"
+  "\341\353\364\377\377\377\377\377\377\377\377\377\377\377\377\377\341"
+  "\352\364\377p\234\313\377p\234\313\377p\234\313\377p\234\313\377p\234"
+  "\313\377o\234\313\377o\234\312\377o\234\312\377o\234\312\377o\233\312"
+  "\377o\233\312\377o\233\312\377p\233\312\377p\233\312\377p\233\311\377"
+  "p\233\311\377p\233\311\377l\227\306\377\"L\211\370\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0'Q\215\335a\215\277\377r\236\315"
+  "\377r\236\315\377r\236\315\377r\236\314\377q\235\314\377q\235\314\377"
+  "p\235\314\377p\235\314\377p\235\314\377p\235\314\377p\235\314\377p\235"
+  "\314\377p\234\313\377p\234\313\377\177\246\321\377\376\377\377\377\377"
+  "\377\377\377\377\377\377\377\377\377\377\377\267\316\345\377o\234\312"
+  "\377o\234\312\377o\234\312\377o\234\312\377o\233\312\377o\233\312\377"
+  "o\233\312\377o\233\312\377o\233\312\377o\233\311\377o\233\311\377p\233"
+  "\311\377p\233\311\377p\234\311\377p\234\311\377o\234\311\377o\233\311"
+  "\377c\215\277\377&O\213\347\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0(Q\216\264T\201\265\377r\236\315\377r\237\315\377r\237"
+  "\315\377r\237\315\377q\236\314\377q\235\314\377q\234\313\377p\234\313"
+  "\377p\234\313\377p\234\313\377p\234\313\377p\234\313\377p\234\313\377"
+  "p\234\313\377\254\306\341\377\377\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\377\377\214\257\325\377o\233\312\377o\233\312\377o\233"
+  "\312\377o\233\312\377o\233\311\377o\233\311\377o\233\311\377o\233\311"
+  "\377o\233\311\377n\233\311\377o\233\311\377o\232\311\377o\233\311\377"
+  "p\234\311\377p\234\311\377p\234\311\377p\233\311\377W\203\265\377'Q\216"
+  "\302\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0$L\207yC"
+  "n\245\370r\237\315\377s\236\314\377t\237\314\377s\236\314\377r\236\314"
+  "\377r\235\314\377q\234\313\377q\234\313\377p\234\313\377o\234\313\377"
+  "o\234\312\377o\234\312\377o\234\312\377o\233\312\377\332\345\361\377"
+  "\377\377\377\377\377\377\377\377\377\377\377\377\361\366\372\377p\233"
+  "\311\377o\233\311\377o\233\311\377o\233\311\377o\233\311\377n\233\311"
+  "\377n\233\311\377n\232\311\377n\232\310\377n\232\310\377o\232\310\377"
+  "o\232\310\377o\233\310\377p\234\311\377q\234\311\377r\235\312\377q\234"
+  "\311\377p\234\310\377Fq\246\373\"N\213\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&L\2116-W\221\361s\236\314\377t\237\315"
+  "\377u\237\315\377t\237\315\377s\237\314\377r\236\313\377p\235\312\377"
+  "p\234\312\377o\233\312\377o\233\312\377o\233\312\377o\233\312\377o\233"
+  "\312\377z\242\315\377\375\375\376\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\310\331\352\377n\233\311\377n\232\311\377n\232\311\377"
+  "n\232\310\377n\232\310\377n\232\310\377n\232\310\377n\232\310\377n\232"
+  "\310\377n\232\310\377o\232\310\377o\233\310\377p\234\310\377r\235\311"
+  "\377s\235\311\377r\235\311\377r\234\311\377p\233\310\3770Z\223\360#N"
+  "\211A\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\200\277"
+  "\4'O\213\356f\222\301\377t\237\314\377u\240\314\377v\240\314\377u\237"
+  "\314\377s\236\313\377q\235\313\377p\234\312\377p\233\311\377p\233\311"
+  "\377o\233\311\377o\233\311\377o\233\311\377\244\300\335\377\377\377\377"
+  "\377\377\377\377\377\377\377\377\377\377\377\377\377\242\276\334\377"
+  "n\232\310\377n\232\310\377n\232\310\377o\233\310\377\230\267\330\377"
+  "\211\255\322\377n\232\310\377n\232\307\377n\231\307\377o\231\307\377"
+  "n\232\307\377o\233\310\377q\234\311\377s\235\311\377t\236\312\377s\235"
+  "\310\377r\235\310\377h\223\301\377&O\213\363Im\222\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\377\377\377\1'P\216\220Hr\250"
+  "\371t\237\314\377v\240\315\377w\240\314\377w\240\314\377u\237\313\377"
+  "s\236\312\377r\235\312\377o\234\311\377o\233\311\377o\232\311\377n\232"
+  "\310\377n\232\310\377\322\340\356\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\377\377\377\377\202\250\320\377n\232\310\377v\240\312"
+  "\377\255\306\337\377\353\361\367\377\377\377\377\377\271\316\344\377"
+  "m\231\307\377n\231\307\377n\231\307\377n\232\307\377o\233\307\377q\234"
+  "\310\377s\235\310\377t\236\311\377u\237\311\377t\235\311\377s\234\310"
+  "\377Kt\251\374*R\215\237\377\377\377\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\377\377\377\1,W\212#(Q\213\367o\232\306\377"
+  "v\240\314\377w\241\314\377x\241\315\377w\240\314\377t\236\312\377s\235"
+  "\312\377q\234\311\377p\233\311\377o\233\310\377o\232\310\377u\236\312"
+  "\377\372\373\375\377\377\377\377\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\244\277\334\377\301\323\347\377\367\371\374\377\377"
+  "\377\377\377\377\377\377\377\365\370\373\377\221\261\324\377n\231\306"
+  "\377n\232\306\377o\232\307\377p\233\307\377r\233\310\377s\234\310\377"
+  "u\236\311\377w\237\311\377v\236\311\377s\235\310\377o\231\305\377*R\215"
+  "\365,S\213.\377\377\377\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\377\377\377\1\377\377\377\2*S\216\254Kv\251\372u\237\313"
+  "\377w\240\313\377y\242\314\377x\241\314\377w\240\313\377u\237\313\377"
+  "s\236\312\377r\235\312\377p\234\310\377p\232\310\377\226\265\326\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\366\371"
+  "\373\377\263\311\341\377u\236\311\377n\231\306\377o\231\307\377o\232"
+  "\307\377p\232\306\377q\234\307\377s\235\310\377u\236\311\377v\237\311"
+  "\377w\240\311\377v\237\311\377s\235\310\377Nx\253\373*T\216\267\377\377"
+  "\377\2\377\377\377\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\377\377\377\1:Z\224\37(Q\215\365i\222\302\377w\240\313"
+  "\377y\242\313\377z\242\314\377y\241\313\377x\240\313\377v\237\312\377"
+  "t\236\312\377r\235\311\377q\234\311\377\253\304\337\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\373\374\375\377\276\321\345\377x\240\312\377o\231\306\377"
+  "n\232\306\377o\232\306\377o\232\306\377q\234\307\377r\234\310\377u\236"
+  "\310\377v\237\311\377x\240\312\377x\240\311\377w\237\310\377u\235\307"
+  "\377j\222\300\377(Q\215\3650Z\221%\377\377\377\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\377\377\377\1\377"
+  "\377\377\2,R\216s5]\226\364s\234\311\377w\240\313\377y\241\314\377z\242"
+  "\314\377z\242\314\377y\241\313\377w\240\312\377v\237\311\377t\236\311"
+  "\377\243\276\333\377\377\377\377\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\371\373\375\377\277\322\346\377~\244\314\377o\232\306"
+  "\377o\232\306\377p\233\307\377q\233\307\377r\234\307\377s\234\307\377"
+  "u\235\307\377v\236\310\377x\237\311\377y\240\311\377y\240\311\377x\240"
+  "\311\377v\236\310\377q\233\307\3777_\230\364*R\217\177\252\252\252\3"
+  "\377\377\377\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\377\377\377\1\200\200\277\4*R\216\275Fp\243"
+  "\370t\236\311\377w\240\312\377z\242\313\377{\243\313\377{\242\313\377"
+  "z\241\313\377y\240\313\377x\240\311\377{\242\313\377\325\341\356\377"
+  "\372\373\375\377\346\355\365\377\267\315\343\377}\243\313\377r\234\307"
+  "\377r\234\307\377r\233\307\377s\234\307\377s\234\307\377u\235\307\377"
+  "v\236\310\377w\237\310\377x\240\311\377y\240\311\377y\241\312\377y\241"
+  "\311\377x\240\310\377u\236\307\377s\234\306\377Ir\246\371)R\214\307I"
+  "mm\7\200\200\200\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\200\200\200\2 at Y\214\24"
+  "'Q\214\334Nw\252\371u\236\311\377w\237\311\377y\241\312\377z\242\312"
+  "\377z\242\313\377z\242\313\377y\241\312\377z\242\312\377y\241\312\377"
+  "x\240\312\377w\237\310\377v\236\310\377v\236\310\377v\236\310\377v\236"
+  "\310\377v\236\310\377w\237\310\377w\240\311\377x\240\311\377x\240\310"
+  "\377y\240\310\377y\241\310\377z\240\311\377y\240\311\377x\237\310\377"
+  "u\235\307\377s\234\306\377Qz\253\374)Q\213\345,Or\35+++\6\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\1UUU\3fff\5.M|!'Q\213\345Js\246\372s\234\310\377"
+  "v\237\311\377x\240\312\377z\242\312\377z\241\311\377{\241\311\377|\242"
+  "\312\377|\242\312\377{\242\312\377{\242\312\377z\241\312\377z\241\312"
+  "\377z\241\311\377z\241\311\377z\241\311\377y\241\310\377z\241\311\377"
+  "{\241\311\377{\241\311\377z\240\310\377y\240\310\377y\240\310\377w\237"
+  "\307\377u\235\306\377s\233\305\377Mv\251\373(Q\213\352$>c1'''\15\40\40"
+  "\40\10\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\1\0\0\0\2""333\5\34\34\34\11"
+  "+ at c$(R\213\327<g\235\366o\227\303\377u\235\307\377v\236\310\377x\240"
+  "\311\377z\241\312\377y\241\311\377{\242\311\377{\242\311\377{\242\312"
+  "\377{\242\312\377{\242\312\377{\242\312\377{\242\312\377{\242\312\377"
+  "{\242\312\377{\241\310\377{\241\310\377y\240\307\377y\240\310\377w\237"
+  "\307\377u\235\306\377s\234\306\377n\226\302\377\77h\234\370(Q\211\340"
+  "\34.J7\25\25\25\30\20\20\20\20\0\0\0\11\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\1\0\0\0\2\0\0\0\5\32\32\32\12\20\20\20\20\30\40""0\40&L\203\250"
+  ",U\216\366[\204\264\377r\234\306\377t\235\307\377u\235\307\377w\236\310"
+  "\377x\237\310\377y\240\311\377y\237\310\377z\240\310\377z\241\310\377"
+  "z\241\310\377z\241\310\377z\240\310\377y\237\307\377x\240\310\377w\236"
+  "\307\377v\235\307\377u\234\305\377s\233\305\377q\232\304\377\\\204\264"
+  "\377+V\216\367%I}\271\16\27\40""7\7\7\7$\12\12\12\32\0\0\0\20\0\0\0\12"
+  "\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\1\0\0\0\2\0\0\0\5\0\0\0\11\0\0\0\17"
+  "\13\13\13\30\17\17\17#\34""8`e'P\212\3516_\226\366^\210\267\377q\233"
+  "\305\377s\233\305\377t\234\306\377t\235\306\377u\235\306\377v\236\307"
+  "\377u\236\307\377u\235\307\377u\235\307\377u\235\306\377u\234\305\377"
+  "t\234\305\377s\233\305\377r\232\304\377p\232\304\377`\210\270\3778`\227"
+  "\367'O\210\356\31""1V|\11\11\11;\6\6\6.\0\0\0\"\0\0\0\30\0\0\0\20\0\0"
+  "\0\12\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\1\0\0\0\2\0\0\0\4\0\0\0\7\0\0"
+  "\0\15\0\0\0\24\11\11\11\35\7\7\7'\16\16\30""6\34<f\207&O\210\354-U\216"
+  "\366Lv\247\375b\213\271\377o\230\304\377p\231\303\377p\232\304\377q\232"
+  "\304\377q\232\304\377q\232\304\377p\232\304\377p\231\303\377o\231\303"
+  "\377b\214\271\377Mv\250\376-V\216\367&O\210\360\34""9_\231\12\15\21L"
+  "\4\4\4=\5\5\5""2\0\0\0'\0\0\0\35\0\0\0\25\0\0\0\15\0\0\0\10\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\1\0\0\0\1\0\0\0\3\0\0\0\5\0\0\0\11\0\0\0\17"
+  "\0\0\0\25\0\0\0\35\7\7\7&\5\5\5/\11\11\15""9\27,Pm\"Ew\271&P\210\355"
+  "&P\212\3721Z\221\365=f\233\371En\241\373Fp\244\377Dn\242\373=f\234\371"
+  "2Z\221\365&P\212\372%O\207\360\"Ct\303\24)G}\7\12\12K\4\4\4B\4\4\4""9"
+  "\0\0\0/\0\0\0&\0\0\0\36\0\0\0\26\0\0\0\17\0\0\0\12\0\0\0\6\0\0\0\3\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\1\0\0\0\2\0\0\0\3\0\0\0\6\0\0\0\11\0"
+  "\0\0\16\0\0\0\23\0\0\0\31\0\0\0\37\0\0\0&\6\6\6-\5\5\5""3\4\4\4:\20\32"
+  "-P\26/Ps\31""5_\217\32""9f\235\33;g\241\33""9d\240\30""4^\223\25,K{\16"
+  "\32+Z\4\4\4E\4\4\4@\4\4\4;\5\5\5""5\0\0\0-\0\0\0&\0\0\0\40\0\0\0\32\0"
+  "\0\0\24\0\0\0\16\0\0\0\12\0\0\0\6\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\1\0\0\0\2\0\0\0\3\0\0\0\5\0\0\0\10\0\0\0\13\0"
+  "\0\0\17\0\0\0\23\0\0\0\27\0\0\0\33\0\0\0\37\0\0\0$\0\0\0'\6\6\6,\5\5"
+  "\5/\5\5\5""1\5\5\5""3\5\5\5""3\5\5\5""3\5\5\5""1\0\0\0.\0\0\0+\0\0\0"
+  "(\0\0\0$\0\0\0\40\0\0\0\34\0\0\0\27\0\0\0\23\0\0\0\17\0\0\0\13\0\0\0"
+  "\10\0\0\0\6\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\1\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\6\0\0\0\10\0\0\0\12"
+  "\0\0\0\14\0\0\0\17\0\0\0\21\0\0\0\24\0\0\0\26\0\0\0\30\0\0\0\32\0\0\0"
+  "\33\0\0\0\34\0\0\0\34\0\0\0\34\0\0\0\33\0\0\0\32\0\0\0\30\0\0\0\26\0"
+  "\0\0\24\0\0\0\21\0\0\0\17\0\0\0\14\0\0\0\12\0\0\0\10\0\0\0\6\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\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\3\0\0\0\4\0\0"
+  "\0\6\0\0\0\7\0\0\0\10\0\0\0\11\0\0\0\12\0\0\0\13\0\0\0\15\0\0\0\15\0"
+  "\0\0\16\0\0\0\16\0\0\0\16\0\0\0\15\0\0\0\15\0\0\0\14\0\0\0\13\0\0\0\11"
+  "\0\0\0\10\0\0\0\7\0\0\0\6\0\0\0\5\0\0\0\3\0\0\0\2\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\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\3"
+  "\0\0\0\3\0\0\0\4\0\0\0\4\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\5\0\0\0\5\0\0\0\4\0\0\0\4\0\0\0\3\0\0\0\3\0\0\0\2"
+  "\0\0\0\2\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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\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\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\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\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\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 (open_png)
+#endif
+#ifdef __GNUC__
+const guint8 open_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 open_png[] =
+#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|\201emy"
+  "}d\366w{a\377w{a\377w{a\377x|b\374{\201f\266\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\0z~c\361\344\346\327\377"
+  "\362\363\352\377\362\363\352\377\360\362\346\377\355\357\341\377\203"
+  "\207m\363zzc,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0w{a\376\361\362\350\377\317\324\260\377\316\323\256\377\320\325"
+  "\261\377\353\355\336\377\232\237\206\367w{a\376w{a\377w{a\377w{a\377"
+  "w{a\377w{a\377x|b\373}\200g\215\0\0\0\0x|b\377\362\363\351\377\317\324"
+  "\257\377\316\323\256\377\316\323\256\377\337\342\311\377\360\362\347"
+  "\377\360\361\346\377\360\361\346\377\360\361\346\377\360\361\346\377"
+  "\360\361\346\377\360\361\346\377\356\360\344\377y}c\374\0\0\0\1x|b\377"
+  "\361\362\347\377\317\324\257\377\316\323\256\377\316\323\256\377\316"
+  "\323\256\377\320\324\261\377\320\325\262\377\320\325\262\377\320\325"
+  "\262\377\320\325\262\377\320\325\262\377\321\326\263\377\361\362\347"
+  "\377x|b\377\0\0\0\1x|b\377\356\357\345\377\315\322\256\377\314\321\255"
+  "\377\314\321\255\377\314\321\255\377\314\321\255\377\314\321\255\377"
+  "\314\321\255\377\314\321\255\377\314\321\255\377\314\321\255\377\315"
+  "\322\256\377\356\357\345\377x|b\377\0\0\0\1x|b\377\355\356\343\377\302"
+  "\306\247\377\301\305\246\377\301\305\246\377\301\305\246\377\301\305"
+  "\246\377\301\305\246\377\301\305\246\377\301\305\246\377\301\305\246"
+  "\377\301\305\246\377\302\306\247\377\355\356\343\377x|b\377\0\0\0\1x"
+  "|b\377\353\354\342\377\267\273\241\377\265\272\240\377\265\272\240\377"
+  "\265\272\240\377\265\272\240\377\265\272\240\377\265\272\240\377\265"
+  "\272\240\377\265\272\240\377\265\272\240\377\267\273\241\377\353\354"
+  "\342\377x|b\377\0\0\0\1x|b\377\352\353\337\377\226\231\202\377\210\214"
+  "q\377\211\215r\377\211\215r\377\211\215r\377\211\215r\377\211\215r\377"
+  "\211\215r\377\211\215r\377\211\215r\377\211\215s\377\222\225|\377\202"
+  "\206j\377~\201g\260x|b\377\347\350\335\377\177\203j\377\331\333\315\377"
+  "\351\353\333\377\346\350\330\377\346\350\330\377\346\350\330\377\346"
+  "\350\330\377\346\350\330\377\346\350\330\377\346\350\330\377\346\350"
+  "\330\377\351\354\333\377\340\342\324\377\205\211r\377x|b\377\327\327"
+  "\313\377\227\232\206\377\351\353\340\377\340\343\316\377\332\335\307"
+  "\377\332\335\307\377\332\335\307\377\332\335\307\377\332\335\307\377"
+  "\332\335\307\377\332\335\307\377\332\335\307\377\346\350\330\377\342"
+  "\343\332\377|\201h\356x|b\377\341\342\326\377\304\306\270\377\347\351"
+  "\335\377\320\325\262\377\320\325\261\377\320\325\261\377\320\325\261"
+  "\377\320\325\261\377\320\325\261\377\320\325\261\377\320\325\261\377"
+  "\320\325\261\377\345\347\330\377\307\312\273\377x|c\277x|b\374\323\325"
+  "\301\377\346\347\335\377\340\342\317\377\334\336\311\377\334\336\311"
+  "\377\334\336\311\377\334\336\311\377\334\336\311\377\334\336\311\377"
+  "\334\336\311\377\334\336\311\377\334\336\311\377\340\343\321\377\240"
+  "\243\216\377v|a\214\177\202f\217x|b\373y~c\377\203\207l\377\203\207l"
+  "\377\203\207l\377\203\207l\377\203\207l\377\203\207l\377\203\207l\377"
+  "\203\207l\377\203\207l\377\203\207l\377\204\210l\376\200\203g\350yy^"
+  "&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\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 (play_png)
+#endif
+#ifdef __GNUC__
+const guint8 play_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 play_png[] =
+#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\211\213\205\266\206\215\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\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\210\212\205\377\215\220\213\366\215\216\211\221\200\222"
+  "\200\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\333\335\330\377\261"
+  "\264\257\370\213\215\210\363\207\214\205q\200\200\200\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\210"
+  "\212\205\377\340\343\335\377\340\343\335\377\323\325\317\377\236\240"
+  "\233\364\214\216\211\330\210\210\204:\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\340\343\335"
+  "\377\334\337\331\377\334\340\331\377\340\343\335\377\307\312\303\376"
+  "\221\223\217\365\214\216\211\264\204\215\204\35\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\340\343\335\377\333"
+  "\336\327\377\323\327\317\377\326\332\323\377\336\341\333\377\335\340"
+  "\333\377\271\273\266\373\214\216\211\366\212\214\210\203\222\222\222"
+  "\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\340\343\335"
+  "\377\333\336\327\377\323\327\317\377\323\327\317\377\323\327\317\377"
+  "\331\334\325\377\337\342\335\377\326\331\324\377\245\250\242\365\214"
+  "\216\210\346\206\212\206J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205"
+  "\377\340\343\335\377\333\336\327\377\323\327\317\377\323\327\317\377"
+  "\323\327\317\377\331\334\325\377\337\342\335\377\326\331\324\377\247"
+  "\251\244\365\214\216\210\346\206\212\206J\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\210\212\205\377\340\343\335\377\333\336\327\377\323\327\317\377"
+  "\326\332\323\377\336\341\333\377\335\340\333\377\271\273\266\373\214"
+  "\216\211\366\212\214\210\203\222\222\222\7\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\210\212\205\377\340\343\335\377\334\337\331\377\334\337"
+  "\331\377\340\343\335\377\307\312\304\376\222\224\220\365\214\217\211"
+  "\255\212\212\212\30\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\210\212\205\377\340\343\335\377\340\343\335\377\323\325\317\377"
+  "\237\241\233\364\214\216\210\330\210\210\204:\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\333"
+  "\336\331\377\262\265\260\370\214\215\211\360\210\213\206g\200\200\200"
+  "\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\210\212\205\377\215\220\213\366\215\216\211\221\200\222"
+  "\200\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\211\213\205\266\206\215\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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 (play_next_png)
+#endif
+#ifdef __GNUC__
+const guint8 play_next_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 play_next_png[] =
+#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\206\214\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\211\213\206\366\212\214\207f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\210\212\205\377\210\212\205\377\210\212\205\377"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\225\226\222\366\213"
+  "\216\211\265\216\216\200\22\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210"
+  "\212\205\377\323\327\317\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\210\212\205\377\333\335\330\377\263\265\257\372\213\214\210"
+  "\354\212\212\206\77\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\323"
+  "\327\317\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212"
+  "\205\377\335\340\332\377\337\342\334\377\311\314\305\377\216\220\213"
+  "\370\212\213\210\226\200\200\200\6\0\0\0\0\0\0\0\0\210\212\205\377\323"
+  "\327\317\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212"
+  "\205\377\335\340\332\377\325\331\321\377\332\336\327\377\330\334\325"
+  "\377\240\242\235\366\215\216\210\324\207\207\207$\0\0\0\0\210\212\205"
+  "\377\323\327\317\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\210\212\205\377\335\340\332\377\325\331\321\377\323\327\317\377\327"
+  "\333\324\377\337\341\334\377\273\275\270\374\212\215\210\365\213\213"
+  "\205\\\210\212\205\377\323\327\317\377\210\212\205\377\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\210\212\205\377\335\340\332\377\325\331\321\377\323"
+  "\327\317\377\327\333\324\377\337\341\334\377\273\275\270\374\212\215"
+  "\210\365\213\213\205\\\210\212\205\377\323\327\317\377\210\212\205\377"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\335\340\332\377\325"
+  "\331\321\377\332\336\327\377\330\334\325\377\240\242\235\366\214\215"
+  "\210\324\207\207\207$\0\0\0\0\210\212\205\377\323\327\317\377\210\212"
+  "\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\335\340\332"
+  "\377\337\342\334\377\311\314\305\377\216\220\213\370\212\213\210\226"
+  "\231\231\231\5\0\0\0\0\0\0\0\0\210\212\205\377\323\327\317\377\210\212"
+  "\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\333\335\330"
+  "\377\263\265\257\372\213\214\210\354\212\212\206\77\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\210\212\205\377\323\327\317\377\210\212\205\377\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\225\226\222\366\213\216\211"
+  "\265\216\216\200\22\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205"
+  "\377\323\327\317\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\211\213\206\366\212\214\207f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\210\212\205\377\210\212\205\377\210\212\205\377\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\206\214\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\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\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 (play_pause_png)
+#endif
+#ifdef __GNUC__
+const guint8 play_pause_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 play_pause_png[] =
+#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\210\212\205\377\210\212\205\377\210\212\205\377\210\212\205"
+  "\377\0\0\0\0\0\0\0\0\210\212\205\377\210\212\205\377\210\212\205\377"
+  "\210\212\205\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\207"
+  "\211\204\377\306\310\302\377\312\314\306\377\207\211\204\377\0\0\0\0"
+  "\0\0\0\0\207\211\204\377\306\310\302\377\312\314\306\377\207\211\204"
+  "\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\207\211\204\377"
+  "\327\333\324\377\335\337\332\377\207\211\204\377\0\0\0\0\0\0\0\0\207"
+  "\211\204\377\327\333\324\377\335\337\332\377\207\211\204\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\207\211\204\377\331\334\325"
+  "\377\337\341\333\377\207\211\204\377\0\0\0\0\0\0\0\0\207\211\204\377"
+  "\331\334\325\377\337\341\333\377\207\211\204\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\207\211\204\377\333\336\327\377\340\342"
+  "\335\377\207\211\204\377\0\0\0\0\0\0\0\0\207\211\204\377\333\336\327"
+  "\377\340\342\335\377\207\211\204\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\207\211\204\377\334\337\331\377\342\344\337\377\207"
+  "\211\204\377\0\0\0\0\0\0\0\0\207\211\204\377\334\337\331\377\342\344"
+  "\337\377\207\211\204\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\207\211\204\377\336\340\333\377\344\345\341\377\207\211\204\377"
+  "\0\0\0\0\0\0\0\0\207\211\204\377\336\340\333\377\344\345\341\377\207"
+  "\211\204\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\207\211"
+  "\204\377\340\342\335\377\345\347\343\377\207\211\204\377\0\0\0\0\0\0"
+  "\0\0\207\211\204\377\340\342\335\377\345\347\343\377\207\211\204\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\207\211\204\377\341"
+  "\343\336\377\347\350\344\377\207\211\204\377\0\0\0\0\0\0\0\0\207\211"
+  "\204\377\341\343\336\377\347\350\344\377\207\211\204\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\207\211\204\377\343\345\340\377"
+  "\351\351\346\377\207\211\204\377\0\0\0\0\0\0\0\0\207\211\204\377\343"
+  "\345\340\377\351\351\346\377\207\211\204\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\207\211\204\377\322\322\316\377\325\326\323"
+  "\377\207\211\204\377\0\0\0\0\0\0\0\0\207\211\204\377\322\322\316\377"
+  "\325\326\323\377\207\211\204\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\210\212\205\377\210\212\205\377\210\212\205\377\210\212"
+  "\205\377\0\0\0\0\0\0\0\0\210\212\205\377\210\212\205\377\210\212\205"
+  "\377\210\212\205\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"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (play_previous_png)
+#endif
+#ifdef __GNUC__
+const guint8 play_previous_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 play_previous_png[] =
+#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\213\213\203!\200\200\200\6\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\210\212\205\377\210\212\205\377\210\212\205\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\213\213\205\\\211\213"
+  "\206\362\211\211\211\15\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\323\327"
+  "\317\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200"
+  "\222\200\16\212\216\210\254\225\227\221\365\207\211\204\377\211\211\211"
+  "\15\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\323\327\317\377\210\212\205"
+  "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\211\211\2046\213\215\210\345\251"
+  "\254\246\370\334\337\331\377\210\212\205\376\211\211\211\15\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\210\212\205\377\323\327\317\377\210\212\205\377\0\0\0"
+  "\0\0\0\0\0\252\252\252\3\213\215\207{\215\220\212\367\306\311\303\376"
+  "\337\342\334\377\340\343\335\377\210\212\205\376\211\211\211\15\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\210\212\205\377\323\327\317\377\210\212\205\377\0"
+  "\0\0\0\214\214\204\37\213\215\210\314\235\237\231\366\327\331\324\377"
+  "\333\337\330\377\325\331\321\377\340\343\335\377\210\212\205\376\211"
+  "\211\211\15\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\323\327\317\377\210"
+  "\212\205\377\211\214\207[\212\214\207\364\270\273\265\373\337\341\334"
+  "\377\330\333\324\377\323\327\317\377\324\330\321\377\340\343\335\377"
+  "\210\212\205\376\211\211\211\15\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377"
+  "\323\327\317\377\210\212\205\377\211\214\207[\212\214\207\364\270\273"
+  "\265\373\337\341\334\377\330\333\324\377\323\327\317\377\324\330\321"
+  "\377\340\343\335\377\210\212\205\376\211\211\211\15\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\210\212\205\377\323\327\317\377\210\212\205\377\0\0\0\0\210\210"
+  "\210\36\213\215\210\314\235\237\231\366\327\331\324\377\333\337\330\377"
+  "\325\331\321\377\340\343\335\377\210\212\205\376\211\211\211\15\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\210\212\205\377\323\327\317\377\210\212\205\377\0"
+  "\0\0\0\0\0\0\0\252\252\252\3\213\215\207{\215\220\212\366\306\310\303"
+  "\376\337\342\334\377\340\343\335\377\210\212\205\376\211\211\211\15\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\323\327\317\377\210\212\205\377"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\211\211\2046\213\215\210\345\251\254"
+  "\246\370\334\337\331\377\210\212\205\376\211\211\211\15\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\210\212\205\377\323\327\317\377\210\212\205\377\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\222\200\16\212\216\210\254\225\227"
+  "\221\365\207\211\204\377\211\211\211\15\0\0\0\0\0\0\0\0\0\0\0\0\210\212"
+  "\205\377\210\212\205\377\210\212\205\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\213\213\205\\\211\213\206\362\211\211\211"
+  "\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\213\213\203!\200\200\200"
+  "\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\0\0\0\0\0\0\0\0"
+  "\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (play_stop_png)
+#endif
+#ifdef __GNUC__
+const guint8 play_stop_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 play_stop_png[] =
+#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"
+  "\210\212\205\377\210\212\205\377\210\212\205\377\210\212\205\377\210"
+  "\212\205\377\210\212\205\377\210\212\205\377\210\212\205\377\210\212"
+  "\205\377\210\212\205\377\210\212\205\377\210\212\205\377\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\210\212\205\377\315\317\313\377\326\330\323\377"
+  "\326\330\323\377\326\330\323\377\326\330\323\377\326\330\323\377\326"
+  "\330\323\377\326\330\323\377\326\330\323\377\315\317\313\377\210\212"
+  "\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\326\330\323"
+  "\377\331\334\325\377\326\332\323\377\326\332\323\377\326\332\323\377"
+  "\326\332\323\377\326\332\323\377\326\332\323\377\331\334\325\377\326"
+  "\330\323\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212"
+  "\205\377\326\330\323\377\326\332\323\377\323\327\317\377\323\327\317"
+  "\377\323\327\317\377\323\327\317\377\323\327\317\377\323\327\317\377"
+  "\326\332\323\377\326\330\323\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\210\212\205\377\326\330\323\377\326\332\323\377\323\327"
+  "\317\377\323\327\317\377\323\327\317\377\323\327\317\377\323\327\317"
+  "\377\323\327\317\377\326\332\323\377\326\330\323\377\210\212\205\377"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\326\330\323\377\326"
+  "\332\323\377\323\327\317\377\323\327\317\377\323\327\317\377\323\327"
+  "\317\377\323\327\317\377\323\327\317\377\326\332\323\377\326\330\323"
+  "\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377"
+  "\326\330\323\377\326\332\323\377\323\327\317\377\323\327\317\377\323"
+  "\327\317\377\323\327\317\377\323\327\317\377\323\327\317\377\326\332"
+  "\323\377\326\330\323\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\210\212\205\377\326\330\323\377\326\332\323\377\323\327\317\377"
+  "\323\327\317\377\323\327\317\377\323\327\317\377\323\327\317\377\323"
+  "\327\317\377\326\332\323\377\326\330\323\377\210\212\205\377\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\326\330\323\377\326\332\323"
+  "\377\323\327\317\377\323\327\317\377\323\327\317\377\323\327\317\377"
+  "\323\327\317\377\323\327\317\377\326\332\323\377\326\330\323\377\210"
+  "\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\326\330"
+  "\323\377\331\334\325\377\326\332\323\377\326\332\323\377\326\332\323"
+  "\377\326\332\323\377\326\332\323\377\326\332\323\377\331\334\325\377"
+  "\326\330\323\377\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210"
+  "\212\205\377\315\317\313\377\326\330\323\377\326\330\323\377\326\330"
+  "\323\377\326\330\323\377\326\330\323\377\326\330\323\377\326\330\323"
+  "\377\326\330\323\377\315\317\313\377\210\212\205\377\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\210\212\205\377\210\212\205\377\210\212\205\377\210"
+  "\212\205\377\210\212\205\377\210\212\205\377\210\212\205\377\210\212"
+  "\205\377\210\212\205\377\210\212\205\377\210\212\205\377\210\212\205"
+  "\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"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (playlist_png)
+#endif
+#ifdef __GNUC__
+const guint8 playlist_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 playlist_png[] =
+#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\0B\201\5\220"
+  "\77}\4\371B\200\5\217\0\0\0\0\0\0\0\0\"L\210\363\40J\207\377\40J\207"
+  "\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\"L\210"
+  "\363\0\0\0\0\0\0\0\0@|\4\370g\276\22\377A}\5\370\0\0\0\0\0\0\0\0\40J"
+  "\207\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377\40J\207\377\0\0\0\0\0\0\0\0B\200\5\216"
+  "A}\5\370B\200\5\214\0\0\0\0\0\0\0\0\"L\210\363\40J\207\377\40J\207\377"
+  "\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\"L\210\363"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "B\202\5\217\77}\4\371C\200\5\215\0\0\0\0\0\0\0\0\"L\210\363\40J\207\377"
+  "\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207"
+  "\377\"L\210\363\0\0\0\0\0\0\0\0@|\4\370g\276\22\377A}\5\370\0\0\0\0\0"
+  "\0\0\0\40J\207\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377r\237\317\377r\237\317\377\40J\207\377\0\0\0\0\0\0\0\0B"
+  "\200\5\216A}\5\370B\200\6\213\0\0\0\0\0\0\0\0\"L\210\363\40J\207\377"
+  "\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207"
+  "\377\"L\210\363\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0B\202\5\217\77}\4\371C\200\5\215\0\0\0\0\0\0\0\0\"L\210"
+  "\363\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J"
+  "\207\377\40J\207\377\"L\210\363\0\0\0\0\0\0\0\0@|\4\370g\276\22\377A"
+  "}\5\370\0\0\0\0\0\0\0\0\40J\207\377r\237\317\377r\237\317\377r\237\317"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377\40J\207\377"
+  "\0\0\0\0\0\0\0\0B\200\5\216A}\5\370B\200\6\213\0\0\0\0\0\0\0\0\"L\210"
+  "\363\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J"
+  "\207\377\40J\207\377\"L\210\363\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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 (preferences_png)
+#endif
+#ifdef __GNUC__
+const guint8 preferences_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 preferences_png[] =
+#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\250\250\250lwww\372xxx\354\211\211\211\215\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\214\214\214(www\331\213\213\213"
+  "a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0uuu\30vvv\345\217\217\217\377~~~\377"
+  "\213\213\213\217\0\0\0\0\0\0\0\0\0\0\0\0\213\213\213Bvvv\357\266\266"
+  "\266\377sss\375\205\205\205\177\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1ddd8n"
+  "nn\377\301\301\301\377uuu\357\0\0\0\0\0\0\0\0\220\220\220g{{{\371\330"
+  "\330\330\377\350\350\350\377\226\226\226\377nnn\317\263\263\263l\222"
+  "\222\222\16\0\0\0\0\0\0\0\0\0\0\0\3mmm\377\321\321\321\377ppp\376\0\0"
+  "\0\0\0\0\0\0rrr\372\337\337\337\377\347\347\347\377\271\271\271\377j"
+  "jj\362SSS.vvv\373xxx\331\217\217\217\"\0\0\0\0\207\207\207\235\201\201"
+  "\201\377\301\301\301\377www\353\0\0\0\0\213\213\213.sss\375\330\330\330"
+  "\377\312\312\312\377rrr\376nnnk\0\0\0\2|||\344}}}\377qqq\377lll\377\202"
+  "\202\202\377\313\313\313\377\316\316\316\377uuu\375\214\214\214\203p"
+  "pp\354\200\200\200\377mmm\377fff\377qqq\260\0\0\0\7\0\0\0\0\206\206\206"
+  "zxxx\377\277\277\277\377\316\316\316\377\256\256\256\377\231\231\232"
+  "\377]q\215\377+Ca\3778On\377xy|\377lll\360YYYE\0\0\0\31\0\0\0\15\0\0"
+  "\0\0\0\0\0\0\0\0\0\11\201\201\201\212vvv\354qqq\367yyy\322 at Us\354A\\"
+  "\200\377\232\270\337\377Wq\225\3775Ki\377zzzm\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\12\0\0\0\26\0\0\0\30+Fn\240AXx\377\233"
+  "\270\340\377s\236\332\377\211\247\321\377/Fc\377www\361\236\236\236*"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UU\252\3,Io\257C[z\377"
+  "\231\265\334\377e\225\326\377L~\301\377(Ad\377\205\225\252\377\252\252"
+  "\252\377yyy\346\223\223\223\32\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0;U\211"
+  "'(Ch\330Wn\216\377\232\270\340\377b\223\325\377L~\301\377'Ad\377M`y\347"
+  "\211\211\211\377\333\333\333\377\242\242\242\377~~~\335\252\252\252\17"
+  "\0\0\0\0\0\0\0\0""3T\200\210'\77_\372s\215\260\377\225\266\342\377]\217"
+  "\324\377O\204\312\377(Cf\377*Fk\235'''\32\203\203\203\320\221\221\221"
+  "\377\336\336\336\377\230\230\230\377\203\203\203\315\252\252\252\6\0"
+  "\0\0\0#:Y\371\211\250\323\377\206\253\337\377U\212\322\377R\210\321\377"
+  "1Q|\377)Ch\301\0\0\0\13\0\0\0\1BBB\33\202\202\202\327\226\226\226\377"
+  "\340\340\340\377\222\222\222\377\207\207\207\256\0\0\0\0&>`\355Nz\264"
+  "\377R\210\321\377R\210\321\377Cn\252\377%>^\353\25\40""5\30\0\0\0\0\0"
+  "\0\0\0\0\0\0\1RRR\37\202\202\202\335\233\233\233\377\331\331\331\377"
+  "www\371\0\0\0\0*Ios%>`\376J{\275\377N\202\310\377'Ad\377*Flm\0\0\0\1"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1```%\207\207\207\333vvv\377\206\206\206"
+  "\267\0\0\0\0\0\0\0\7+Em\210#;Z\367\":X\374-Jq\260\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\1\0\0\0\23@@@$\0\0\0\16\0\0\0\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (rotate_png)
+#endif
+#ifdef __GNUC__
+const guint8 rotate_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 rotate_png[] =
+#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\0Fb\201"
+  "\314Km\216=\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D^{\373Xr\216\374"
+  "Ig\205\262Mf\210\36\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0@@\200\4Ll\214hIf\204\271Gd\201\327^x\226\376\266\314\344"
+  "\377\213\244\276\377Nh\204\363Ji\207\206UU\200\6\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0Mm\2158Gc\201\340_|\232\377\215\250\305\377\252\301"
+  "\332\377\265\314\345\377\231\271\334\377\232\272\335\377\257\306\337"
+  "\377o\212\247\377Fb\200\342Jj\212Y\0\0\0\0\0\0\0\0\0\0\0\0Ki\212=Kf\203"
+  "\365\222\255\312\377\261\312\344\377\226\267\333\377z\241\314\377q\235"
+  "\314\377r\237\317\377r\237\317\377z\241\312\377e\203\243\377Ea~\353I"
+  "f\204p\0\0\0\0\0\0\0\0@`\200\10Hc\200\346\235\266\320\377\237\276\336"
+  "\377k\223\276\377Lj\212\377E`~\361Li\212\376p\234\313\377Z~\244\377F"
+  "b\200\367Ga\177\233\30\40""0\40\0\0\0\10\0\0\0\0\0\0\0\0Kh\207{w\221"
+  "\254\377\246\302\341\377g\217\272\377F_}\356=Voe\0\0\0\30D_{\374Jf\205"
+  "\375Gb\200\2730\77W5\0\0\0\13\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0Gb\201\312"
+  "y\233\300\377\177\247\322\377Kg\210\376>Tp[\0\0\0\6\0\0\0\4E_}\324:P"
+  "lS\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0E`}\350n\231"
+  "\305\377\242\274\331\377Fa\177\351\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\22\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\0Ea~\350"
+  "o\232\307\377\242\274\330\377Je\202\341\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0D_|\322D_|\377D_|\377Ea}\370\0\0\0\0\0\0\0\0Gc\202"
+  "\320f\217\272\377\234\274\334\377[t\220\374Ih\2071\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0Hb\203'Sn\211\370\235\274\334\377i\223\277\377He\202\337"
+  "\0\0\0\0\0\0\0\0Ii\210\213Vx\235\377\206\255\326\377\222\254\310\377"
+  "Ie\202\334Ig\214*\0\0\0\0\0\0\0\0If\203#Fb\200\326\212\246\303\377\213"
+  "\260\327\377Y{\241\377Ki\211\234\0\0\0\0\0\0\0\0Mf\214\24Fb~\360i\223"
+  "\277\377\223\265\332\377\215\250\304\377Pj\207\370Jf\205\317Gc\202\314"
+  "Hd\202\366\201\235\275\377\235\274\336\377k\225\301\377Fb\200\366Oj\204"
+  "\35\0\0\0\0\0\0\0\0\0\0\0\0Jh\211]If\205\374j\223\277\377\214\261\330"
+  "\377\242\277\335\377\220\255\313\377\216\254\314\377\241\276\334\377"
+  "\230\271\334\377n\227\303\377Jg\206\376Kj\211j\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0Jh\205`Fb\177\363X{\240\377m\226\301\377\202\251\323"
+  "\377\203\253\323\377s\232\304\377Z}\243\377Fb\200\366Kj\207j\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Uu\225\30Jg\207\227G"
+  "c\201\334D_|\366D_{\370Fa\177\337Jg\206\236Jc\204\37\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 (rotate_0_png)
+#endif
+#ifdef __GNUC__
+const guint8 rotate_0_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 rotate_0_png[] =
+#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\0Mj\212`Mj\212"
+  "`\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UU\200\6Gc\200\343Fb\200\345@`\200"
+  "\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\0Jh\210\207p\212\247\377m\210\246\377Ki"
+  "\210\213\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0No\220\27Gd\201\363\233\270\326\377\232\267"
+  "\327\377Hb\200\366Oj\204\35\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Hg\205\251m\214\254\377\215\261"
+  "\330\377\215\261\330\377m\214\255\377Hf\205\261\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Nm\2071He\202\373\205"
+  "\252\322\377v\242\321\377v\242\320\377\204\252\322\377Kg\205\375Mm\212"
+  "\77\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0G"
+  "c\202\310D_|\377St\226\377r\237\317\377r\237\317\377Uw\231\377D_|\377"
+  "Gc\201\323\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\31D^z\374r\237\317\377r\237\317\377Gc\201\377\26"
+  "\35$#\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\0\0\0\0\0D_{\374r\237\317\377r\237\317\377Gc\201\377"
+  "+ at U\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0D_{\375r\236\316\377r\236\316\377Gc\200\377"
+  "33M\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"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0D^{\375q\235\315\377q\235\315\377Fb\200\377"
+  "\34""99\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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^y\376q\235\314\377q\235\314\377Fb\177"
+  "\377\40\40@\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\0D]y\376q\234\313\377q\234\313\377F"
+  "a\177\377\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\0\0\0\0\0C]y\377p\233\312\377p\233\312\377F"
+  "a~\377\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\0C]y\377C]y\377C]y\377C]y\377\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\31\0\0\0\31\0\0\0\31\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"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (rotate_180_png)
+#endif
+#ifdef __GNUC__
+const guint8 rotate_180_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 rotate_180_png[] =
+#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`\200\237\10"
+  "Lj\213\331Lj\213M\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0;Nv\15Fb\177\377"
+  "_x\224\376He\203\271Eg\203%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0Df\210\17Kj\211\204Id\203\314Gc\201\346k\206\243"
+  "\377\267\316\345\377\220\251\303\377Qj\207\367If\206\223F]\213\13\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ml\215SFb\200\356k\210\247\377\227"
+  "\261\316\377\262\311\340\377\260\311\344\377\221\264\332\377\226\270"
+  "\333\377\261\310\340\377q\215\252\377Eb\200\350Jh\210g\0\0\0\0\0\0\0"
+  "\0\0\0\0\0Lj\212WOk\210\373\236\270\324\377\255\307\343\377\217\262\327"
+  "\377p\230\302\377n\231\310\377r\237\317\377r\237\317\377s\231\302\377"
+  "[x\230\377Fa\200\334D`|R\0\0\0\0\0\0\0\0Im\206\25Je\202\362\246\276\330"
+  "\377\227\270\334\377a\207\260\377Hd\203\374D_|\345Lj\212\377n\231\307"
+  "\377Uw\233\377Fb~\356E^|\202\0\14\14\26\0\0\0\5\0\0\0\0\0\0\0\0Jh\206"
+  "\221\202\233\266\377\237\276\336\377_\205\255\377Ea}\3437LdJ\36-5\"E"
+  "a~\377Gb\200\371Ec\177\243\35,:#\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0Gb\177\331\230\264\322\377}\246\321\377Gd\201\3738KeD\0\0\0\4""6"
+  "Q^\23Fb\200\3010E[;\0\0\0\14\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0D^|\363\244\300\336\377k\223\276\377D_|\336\0\0\0\3\0\0\0\0\0"
+  "\0\0\1\0\0\0\20\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\0E_|\361\241\276\334\377n\225\300\377Fb\200\332\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0Gb\200\327\222\260\317\377\202\251\323\377Gd\201\373"
+  "Mk\2052\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0Lh\207\221o\215\254\377\233\273\335\377_\204"
+  "\254\377Fa\177\337Kd\2073\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Im\206\25Hc\201\362\226\263\322\377"
+  "\220\263\331\377`\205\255\377Hd\203\374AWn\336\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Jj\212YOj\210"
+  "\374\223\260\320\377\240\276\337\377\216\260\324\377Ocz\371\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0Lj\212WFa\200\357d\203\244\377~\237\301\377Tm\206\370\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0Ki\207\21Kk\211\210He\202\320Fa\177\341\0\0\0\0"
+  "\0\0\0\0\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 (rotate_90ccw_png)
+#endif
+#ifdef __GNUC__
+const guint8 rotate_90ccw_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 rotate_90ccw_png[] =
+#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\0F]\213\13Ji\210\203Fb\201\322D`|\360"
+  "D^{\361Fb\200\335Ih\207\235Si\207\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0No\214>Gb\201\351z\224\260\377\230\262\317\377"
+  "\243\277\335\377\242\300\336\377\225\263\322\377u\222\262\377Ie\202\367"
+  "Li\207u\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ok\2137Jf\202\365\235"
+  "\266\321\377\245\302\340\377\201\250\323\377m\226\301\377l\224\276\377"
+  "~\246\320\377\227\270\334\377\234\271\327\377Vq\220\376Jj\210x\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\200\200\2Fc\201\335\221\254\311\377\240\276\337"
+  "\377e\213\265\377Jf\205\375E_}\343Fc\200\326Fb~\370[\177\245\377\211"
+  "\256\326\377\234\270\327\377Ie\203\371Mf\214(\0\0\0\0\0\0\0\0Nk\214_"
+  "\\y\227\377\262\313\345\377i\221\272\377F`}\356=TnX\0\0\0\5\0\0\0\0P"
+  "h\207\40Gd\201\317Y}\242\377\231\272\334\377r\221\262\377Hg\205\251\0"
+  "\0\0\0\0\0\0\0Jg\205\260\210\244\301\377\230\271\334\377Mk\214\377=W"
+  "ql\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0Lh\204\33Fa~\363\203\246\313\377\212"
+  "\252\314\377Eb~\350\0\0\0\2\0\0\0\7Gd\201\315\246\276\327\377~\245\317"
+  "\377C^{\366\37,8)Rp\217\31\0@@\4\0\0\0\0\0\0\0\0\0\0\0\0E\\v\304L`v\367"
+  "Tl\205\366Fb~\362Nl\215\272Fb\177\377`{\230\377\266\314\344\377s\240"
+  "\316\377On\217\377Fa\177\377Fa~\334\0\14\14\25\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ff\206(Sm\211\370\265\313\342\377\232"
+  "\272\335\377r\237\317\377p\235\314\377If\206\376<SmY\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\0Ig\204\232\202"
+  "\233\266\377\237\276\336\377r\237\317\377[\177\246\377Ga\177\277\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\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0Dfw\17Jd\201\353\253\302\333\377\177\245\315\377Gc\200\3700B"
+  "X:\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\0Jh\207qg\202\236\377e\204\243\377Fa\200\240\0\0"
+  "\0\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1Gc\201\324E`|\356\35,:#\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\0Lk\215CHg\206r\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\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 (rotate_90cw_png)
+#endif
+#ifdef __GNUC__
+const guint8 rotate_90cw_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 rotate_90cw_png[] =
+#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\0Nd\205\27Ig\210\222Gb\201\330D`|\360D_|\361Gb\177\331"
+  "Jg\207\220Qk\224\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\0Ki\210\\Hc\201\362o\215\254\377\222\260\317\377\241\276\334\377"
+  "\244\277\335\377\231\264\322\377\200\232\266\377Jf\202\361Nl\212U\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Jj\212YOj\211\374\226\264\322\377"
+  "\233\273\335\377\201\251\322\377n\225\277\377l\224\277\377}\246\321\377"
+  "\240\276\337\377\246\276\327\377Ok\210\373Lk\216Q\0\0\0\0\0\0\0\0\0\0"
+  "\0\0Gc\216\22Fb~\360\223\260\320\377\217\263\331\377^\204\253\377Gc\200"
+  "\373Fb\200\332E_}\336Gc\202\374`\205\256\377\230\271\334\377\236\267"
+  "\324\377Fb\177\355Nv\211\15\0\0\0\0\0\0\0\0Lg\207\212e\204\246\377\240"
+  "\276\337\377`\204\254\377Fb\200\336Jj\2120\0\0\0\0\0\0\0\4;NgEE`}\344"
+  "b\210\260\377\255\307\343\377j\207\246\377Kk\212\201\0\0\0\0\0\0\0\0"
+  "Gc\202\320~\237\302\377\215\257\322\377Gc\201\373Ih\2071\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\4""9MaLIe\203\375\217\263\330\377\226\261\316\377"
+  "He\203\312\0\0\0\0\0\0\0\0Ga\177\337Tl\206\366Oe{\366AXn\334\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\2Jj\212\30\"0E%C^{\344p\231\303\377\261\310\340"
+  "\377Gc\200\346\0\0\0\7\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\20Fb\200\301Ea~\377Lk\213\377o\233\312\377\260"
+  "\311\343\377k\205\241\377Gb\200\377Ki\212\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\3""0F\\:Gc\201\371n\231\307\377"
+  "r\237\317\377\221\264\332\377\267\316\345\377_x\224\376Lk\212J\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14F"
+  "b\200\244Uw\233\377r\237\317\377\226\270\333\377\220\251\303\377Gd\202"
+  "\267\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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\35,:#Fb~\356s\231\302\377\261\310\340\377Qk\207\367"
+  "Eg\203%\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\11E^|\202[x\230\377q\215\252\377If\206\223\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\14\14\25Fa~\332Fa~\351F]\213\13\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\5D`|RKi\212f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\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 (size_double_png)
+#endif
+#ifdef __GNUC__
+const guint8 size_double_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 size_double_png[] =
+#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: */
+  "\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202"
+  "\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G"
+  "\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377"
+  "\204\252\322\377\204\252\322\377\204\252\322\377\204\252\322\377\204"
+  "\252\322\377\204\252\322\377\204\252\322\377\204\252\322\377\204\252"
+  "\322\377\204\252\322\377\204\252\322\377\204\252\322\377\204\252\322"
+  "\377\204\252\322\377\36G\202\377\36G\202\377\204\252\322\377o\234\315"
+  "\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377"
+  "o\234\315\377\352\354\353\377o\234\315\377\352\354\353\377o\234\315\377"
+  "\352\354\353\377\204\252\322\377\36G\202\377\36G\202\377\204\252\322"
+  "\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377"
+  "o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234"
+  "\315\377o\234\315\377\204\252\322\377\36G\202\377\36G\202\377Gi\232\377"
+  "&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377"
+  "&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377Gi\232\377\36G\202"
+  "\377\0\0\0\3774:<\377+01\377+01\377+01\377+01\377+01\377+01\377+01\377"
+  "+01\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
+  "4:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\377LQS\377\344\345\345\377\377\377\377\377\377\377"
+  "\377\3774:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\377MST\377\346\346\347\377\377\377\377\377\346\346"
+  "\347\377\377\377\377\3774:<\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\3774:<\377\315\316\317"
+  "\377\377\377\377\377\346\346\347\377MST\377\377\377\377\3774:<\377\0"
+  "\0\0\377\0\0\0\377p\233\312\377p\233\312\377p\233\312\377p\233\312\377"
+  "p\233\312\377p\233\312\377p\233\312\377p\233\312\377MST\377\315\316\317"
+  "\377MST\3774:<\3774:<\3774:<\377\0\0\0\377\0\0\0\377p\233\312\377p\233"
+  "\312\377p\233\312\377p\233\312\377p\233\312\377\324\335\345\377p\233"
+  "\312\377p\233\312\377\30\33\34\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\3774:<\377\360\361\361\377\30\33\34\3774:<\3774:<\3774:<\3774"
+  ":<\3774:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\377\360\361\361\377\30\33\34\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\377\360\361\361\377\30\33\34\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "\360\361\361\377\30\33\34\3774:<\3774:<\3774:<\3774:<\3774:<\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
+  "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (size_full_png)
+#endif
+#ifdef __GNUC__
+const guint8 size_full_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 size_full_png[] =
+#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\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377Y^_\377Y^_\377Y^_\377Y^_\377Y^_\377Y^_"
+  "\377Y^_\377Y^_\377Y^_\377Y^_\377Y^_\377Y^_\377Y^_\377Y^_\377\0\0\0\377"
+  "\0\0\0\3774:<\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
+  "\377\377\3774:<\3774:<\3774:<\3774:<\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\377\377\377\377\3774:<\377\0\0\0\377\0\0\0\3774:<\377"
+  "\377\377\377\377\377\377\377\377\347\350\350\377OTV\3774:<\3774:<\377"
+  "4:<\3774:<\377LQS\377\344\345\345\377\377\377\377\377\377\377\377\377"
+  "4:<\377\0\0\0\377\0\0\0\3774:<\377\377\377\377\377\346\346\347\377\377"
+  "\377\377\377\346\346\347\377MST\3774:<\3774:<\377MST\377\346\346\347"
+  "\377\377\377\377\377\346\346\347\377\377\377\377\3774:<\377\0\0\0\377"
+  "\0\0\0\3774:<\377\377\377\377\377MST\377\346\346\347\377\377\377\377"
+  "\377\315\316\317\3774:<\3774:<\377\315\316\317\377\377\377\377\377\346"
+  "\346\347\377MST\377\377\377\377\3774:<\377\0\0\0\377\0\0\0\3774:<\377"
+  "4:<\3774:<\377MST\377\315\316\317\377MST\3774:<\3774:<\377MST\377\315"
+  "\316\317\377MST\3774:<\3774:<\3774:<\377\0\0\0\377\0\0\0\3774:<\3774"
+  ":<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\377LQS\377\315\316\317\377OTV\377"
+  "4:<\3774:<\377LQS\377\315\316\317\377OTV\3774:<\3774:<\3774:<\377\0\0"
+  "\0\377\0\0\0\3774:<\377\377\377\377\377MST\377\346\346\347\377\377\377"
+  "\377\377\315\316\317\3774:<\3774:<\377\315\316\317\377\377\377\377\377"
+  "\346\346\347\377MST\377\377\377\377\3774:<\377\0\0\0\377\0\0\0\3774:"
+  "<\377\377\377\377\377\346\346\347\377\377\377\377\377\346\346\347\377"
+  "MST\3774:<\3774:<\377MST\377\346\346\347\377\377\377\377\377\346\346"
+  "\347\377\377\377\377\3774:<\377\0\0\0\377\0\0\0\3774:<\377\377\377\377"
+  "\377\377\377\377\377\347\350\350\377OTV\3774:<\3774:<\3774:<\3774:<\377"
+  "LQS\377\344\345\345\377\377\377\377\377\377\377\377\3774:<\377\0\0\0"
+  "\377\0\0\0\3774:<\377\377\377\377\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\3774:<\3774:<\3774:<\3774:<\377\377\377\377\377\377\377"
+  "\377\377\377\377\377\377\377\377\377\3774:<\377\0\0\0\377\0\0\0\3774"
+  ":<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (size_half_png)
+#endif
+#ifdef __GNUC__
+const guint8 size_half_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 size_half_png[] =
+#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: */
+  "\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202"
+  "\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G"
+  "\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377"
+  "\204\252\322\377\204\252\322\377\204\252\322\377\204\252\322\377\204"
+  "\252\322\377\204\252\322\377\204\252\322\377\204\252\322\377\204\252"
+  "\322\377\204\252\322\377\204\252\322\377\204\252\322\377\204\252\322"
+  "\377\204\252\322\377\36G\202\377\36G\202\377\204\252\322\377o\234\315"
+  "\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377"
+  "o\234\315\377\352\354\353\377o\234\315\377\352\354\353\377o\234\315\377"
+  "\352\354\353\377\204\252\322\377\36G\202\377\36G\202\377\204\252\322"
+  "\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377"
+  "o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234"
+  "\315\377o\234\315\377\204\252\322\377\36G\202\377\36G\202\377Gi\232\377"
+  "&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377"
+  "&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377Gi\232\377\36G\202"
+  "\377\0\0\0\3774:<\377+01\377+01\377+01\377+01\377+01\377+01\377+01\377"
+  "+01\377+01\377DHI\377\313\314\314\377GLL\3774:<\377\0\0\0\377\0\0\0\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377\377\377\377"
+  "\377MST\377\346\346\347\377\377\377\377\377\315\316\317\3774:<\377\0"
+  "\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774"
+  ":<\377\377\377\377\377\346\346\347\377\377\377\377\377\346\346\347\377"
+  "MST\3774:<\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\3774:<\377\377\377\377\377\377\377\377"
+  "\377\347\350\350\377OTV\3774:<\3774:<\377\0\0\0\377\0\0\0\377p\233\312"
+  "\377p\233\312\377p\233\312\377p\233\312\377p\233\312\377p\233\312\377"
+  "p\233\312\377p\233\312\377\377\377\377\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\3774:<\3774:<\377\0\0\0\377\0\0\0\377p\233\312\377p"
+  "\233\312\377p\233\312\377p\233\312\377p\233\312\377\324\335\345\377p"
+  "\233\312\377p\233\312\377\30\33\34\3774:<\3774:<\3774:<\3774:<\3774:"
+  "<\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\3774:<\377\360\361\361\377\30\33\34\3774:<\3774:<\3774:"
+  "<\3774:<\3774:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774"
+  ":<\3774:<\3774:<\377\360\361\361\377\30\33\34\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\377\360\361\361\377\30\33\34\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\377\360\361\361\377\30\33\34\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (size_normal_png)
+#endif
+#ifdef __GNUC__
+const guint8 size_normal_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 size_normal_png[] =
+#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: */
+  "\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202"
+  "\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G"
+  "\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377\36G\202\377"
+  "\204\252\322\377\204\252\322\377\204\252\322\377\204\252\322\377\204"
+  "\252\322\377\204\252\322\377\204\252\322\377\204\252\322\377\204\252"
+  "\322\377\204\252\322\377\204\252\322\377\204\252\322\377\204\252\322"
+  "\377\204\252\322\377\36G\202\377\36G\202\377\204\252\322\377o\234\315"
+  "\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377"
+  "o\234\315\377\352\354\353\377o\234\315\377\352\354\353\377o\234\315\377"
+  "\352\354\353\377\204\252\322\377\36G\202\377\36G\202\377\204\252\322"
+  "\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377"
+  "o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234\315\377o\234"
+  "\315\377o\234\315\377\204\252\322\377\36G\202\377\36G\202\377Gi\232\377"
+  "&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377"
+  "&O\212\377&O\212\377&O\212\377&O\212\377&O\212\377Gi\232\377\36G\202"
+  "\377\0\0\0\3774:<\377+01\377+01\377+01\377+01\377+01\377+01\377+01\377"
+  "+01\377+01\377+01\377+01\377+01\3774:<\377\0\0\0\377\0\0\0\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377\0\0\0\377\0\0\0\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377\0\0\0\377\0"
+  "\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\377\0\0\0\377\0\0\0\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\377\0\0\0\377\0\0\0\3774:<\3774:<\3774:<\3774:<\3774:<\377"
+  "4:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\3774:<\377\0\0\0"
+  "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0"
+  "\0\0\377\0\0\0\377\0\0\0\377"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (skin_png)
+#endif
+#ifdef __GNUC__
+const guint8 skin_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 skin_png[] =
+#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: */
+  "P\234\5""6P\234\7\340N\232\6\376N\232\6\377N\232\6\377N\232\6\377N\232"
+  "\6\377N\232\6\376\304\240\0\376\304\240\0\377\304\240\0\377\304\240\0"
+  "\377\304\240\0\377\304\240\0\376\306\243\0\340\305\237\0""5P\234\7\340"
+  "w\3036\377\213\326O\377\213\326O\377\213\326O\377\213\326O\377\213\326"
+  "O\377z\264D\376\341\317\200\377\366\352\200\377\366\352\200\377\366\352"
+  "\200\377\366\352\200\377\366\351\177\377\351\326R\377\306\244\0\337N"
+  "\232\6\376\213\326O\377d\310\24\377d\310\24\377d\310\24\377d\310\24\377"
+  "d\310\24\377z\264D\376\341\317\200\377\355\324\0\377\355\324\0\377\355"
+  "\324\0\377\355\324\0\377\355\324\1\377\366\351\177\377\304\240\0\376"
+  "N\232\6\377\213\326O\377d\310\24\377d\310\24\377d\310\24\377d\310\24"
+  "\377d\310\24\377z\264D\376\342\320\200\377\355\324\0\377\355\324\0\377"
+  "\355\324\0\377\355\324\0\377\355\324\0\377\366\352\200\377\304\240\0"
+  "\377N\232\6\377\213\326O\377d\310\24\377d\310\24\377d\310\24\377d\310"
+  "\24\377d\310\24\377z\264D\376\342\320\200\377\355\324\0\377\355\324\0"
+  "\377\355\324\0\377\355\324\0\377\355\324\0\377\366\352\200\377\304\240"
+  "\0\377N\232\6\377\213\326O\377d\310\24\377d\310\24\377d\310\24\377d\310"
+  "\24\377d\310\24\377z\264D\376\342\320\200\377\355\324\0\377\355\324\0"
+  "\377\355\324\0\377\355\324\0\377\355\324\0\377\366\352\200\377\304\240"
+  "\0\377N\232\6\377\213\326O\377d\310\24\377d\310\24\377d\310\24\377d\310"
+  "\24\377d\310\24\377z\264D\376\342\320\200\377\355\324\0\377\355\324\0"
+  "\377\355\324\0\377\355\324\0\377\355\324\0\377\366\352\200\377\304\240"
+  "\0\377N\232\6\377z\263D\377z\263D\377z\263D\377z\263D\377z\263D\377z"
+  "\263D\377z\263D\377\342\320\200\377\342\320\200\377\342\320\200\377\342"
+  "\320\200\377\342\320\200\377\342\320\200\377\342\320\200\377\304\240"
+  "\0\377\244\0\0\377\322\200\200\377\322\200\200\377\322\200\200\377\322"
+  "\200\200\377\322\200\200\377\322\200\200\377\322\200\200\377q\223\277"
+  "\377q\223\277\377q\223\277\377q\223\277\377q\223\277\377q\223\277\377"
+  "q\223\277\3774e\244\377\244\0\0\377\346\200\200\377\314\0\0\377\314\0"
+  "\0\377\314\0\0\377\314\0\0\377\314\0\0\377\321\200\200\377q\223\277\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377\234"
+  "\274\335\3774e\244\377\244\0\0\377\346\200\200\377\314\0\0\377\314\0"
+  "\0\377\314\0\0\377\314\0\0\377\314\0\0\377\321\200\200\377q\223\277\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377\234"
+  "\274\335\3774e\244\377\244\0\0\377\346\200\200\377\314\0\0\377\314\0"
+  "\0\377\314\0\0\377\314\0\0\377\314\0\0\377\321\200\200\377q\223\277\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377\234"
+  "\274\335\3774e\244\377\244\0\0\377\346\200\200\377\314\0\0\377\314\0"
+  "\0\377\314\0\0\377\314\0\0\377\314\0\0\377\321\200\200\377q\223\277\377"
+  "r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377\234"
+  "\274\335\3774e\244\377\244\0\0\376\345\177\177\377\314\1\1\377\314\0"
+  "\0\377\314\0\0\377\314\0\0\377\314\0\0\377\321\200\200\377q\224\277\376"
+  "r\236\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377\234"
+  "\273\335\3774e\244\376\246\0\0\340\323RR\377\345\177\177\377\346\200"
+  "\200\377\346\200\200\377\346\200\200\377\346\200\200\377\321\200\200"
+  "\377q\224\277\376\234\273\335\377\234\274\335\377\234\274\335\377\234"
+  "\274\335\377\234\273\335\377{\241\314\3778h\246\337\244\0\0""5\246\0"
+  "\0\337\243\0\0\377\244\0\0\377\244\0\0\377\244\0\0\377\244\0\0\377\244"
+  "\0\0\3764e\244\3764e\244\3774e\244\3774e\244\3774e\244\3774e\243\377"
+  "8h\246\3375e\2445"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (subtitle_drop_png)
+#endif
+#ifdef __GNUC__
+const guint8 subtitle_drop_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 subtitle_drop_png[] =
+#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\0TXS\246UWS\377"
+  "UWS\377UWS\377UWS\377UWS\377UWS\377UWS\377VWR\244\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UWS\374\353\353\353\377\377\377\377"
+  "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377"
+  "\353\353\353\377UWS\374\0\0\0H\0\0\0\343\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377UWS\377\377\377\377\377\362MM\377\371\254\254\377"
+  "\377\377\377\377\371\254\254\377\362MM\377\377\377\377\377UWS\377\0\0"
+  "\0\342\316\317\316\377\371\371\371\377\371\371\371\377\371\371\371\377"
+  "\371\371\371\377\371\371\371\377UWS\377\377\377\377\377\371\254\254\377"
+  "\357,,\377\365yy\377\357,,\377\371\254\254\377\377\377\377\377UWS\377"
+  "\0\0\0\377\371\371\371\377\\^[\377PRO\377PRO\377PRO\377PRO\377UWS\377"
+  "\377\377\377\377\377\377\377\377\365{{\377\357**\377\364ss\377\377\377"
+  "\377\377\377\377\377\377UWS\377\0\0\0\377\371\371\371\377LOL\377LOL\377"
+  "LOL\377LOL\377LOL\377UWS\377\377\377\377\377\371\254\254\377\357,,\377"
+  "\365yy\377\357,,\377\371\254\254\377\377\377\377\377UWS\377\0\0\0\377"
+  "\371\371\371\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377UWS\377\377\377\377"
+  "\377\362MM\377\371\254\254\377\377\377\377\377\371\254\254\377\362NN"
+  "\377\377\377\377\377UWS\377\0\0\0\377\370\371\371\377EIG\377EIG\377E"
+  "IG\377EIG\377EIG\377UWS\377\353\353\353\377\377\377\377\377\377\377\377"
+  "\377\377\377\377\377\377\377\377\377\377\377\377\377\352\353\352\377"
+  "TVR\377\0\0\0\377\370\370\370\377AED\377\274\275\275\377\323\323\323"
+  "\377\323\323\323\377\323\323\323\377\202\203\200\377UWS\377UWS\377UW"
+  "S\377UWS\377UWS\377UWS\377UWS\377675\377\0\0\0\377\370\370\370\377>B"
+  "B\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377"
+  ">BB\377>BB\377\370\370\370\377\0\0\0\377\0\0\0\377\370\370\370\377:\77"
+  "\77\377:\77\77\377\300\301\301\377\323\323\323\377\323\323\323\377\323"
+  "\323\323\377\323\323\323\377\323\323\323\377\323\323\323\377\300\300"
+  "\300\377:\77\77\377:\77\77\377\370\370\370\377\0\0\0\377\0\0\0\377\370"
+  "\370\370\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\377"
+  "7<=\3777<=\3777<=\3777<=\377\370\370\370\377\0\0\0\377\0\0\0\377\370"
+  "\370\370\377AGH\37739:\37739:\37739:\37739:\37739:\37739:\37739:\377"
+  "39:\37739:\37739:\377AGH\377\370\370\370\377\0\0\0\377\0\0\0\342\307"
+  "\310\310\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\370\370\370\377\370\370\370"
+  "\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\370\377"
+  "\306\307\307\377\0\0\0\341\0\0\0G\0\0\0\342\0\0\0\377\0\0\0\377\0\0\0"
+  "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\341\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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 (subtitle_load_png)
+#endif
+#ifdef __GNUC__
+const guint8 subtitle_load_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 subtitle_load_png[] =
+#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\251\255\247\264\270\272\264\376\270\272\264\376\270\272\264"
+  "\376\270\272\264\376\270\272\264\376\270\272\264\376\270\272\264\376"
+  "\266\270\262\376\251\254\245\262\377\377\377\2\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\267\273\264\376\362\362\361\377\376\376\376\377\376"
+  "\376\376\377\376\376\376\377\376\376\376\377\376\376\376\377\376\376"
+  "\375\377\362\362\362\377\274\277\271\376\255\257\251\326\377\377\377"
+  "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\271\274\264\377\376\376\376\377\362"
+  "\363\361\377\361\362\357\377\357\361\356\377\356\357\354\377\354\356"
+  "\352\377\353\354\351\377\331\333\331\377\333\333\333\377\274\277\271"
+  "\376\252\256\247\312\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377"
+  "\376\376\376\377\364\365\363\377\362\363\361\377\361\362\357\377\357"
+  "\361\356\377\356\357\354\377\354\356\352\377\305\306\303\377\355\355"
+  "\354\377\333\333\333\377\271\274\265\376\246\250\242\222\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\271\274\265\377\376\376\376\377\365\366\365\377\364\365"
+  "\363\377\362\363\361\377\361\362\357\377\357\361\356\377\356\357\354"
+  "\377\261\263\257\377\235\237\233\377\253\254\250\377\261\262\257\377"
+  "\264\267\260\374\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\376\376\376"
+  "\377\367\370\366\377\365\366\365\377\364\365\363\377\362\363\361\377"
+  "\361\362\357\377\357\361\356\377\356\357\354\377\354\356\352\377\352"
+  "\354\351\377\375\375\375\377\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\271\274\265\377\376\377\376\377egd\377RTQ\377RTQ\377RTQ\377RTQ\377R"
+  "TQ\377RTQ\377RTQ\377dfc\377\375\375\375\377\271\274\264\377\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\271\274\265\377\377\377\377\377MOM\377\304\305\304\377"
+  "\323\323\323\377\323\323\323\377\323\323\323\377\323\323\323\377\323"
+  "\323\323\377\304\304\304\377MOM\377\375\375\375\377\271\274\264\377\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\377\377\377\377GJI\377GJI\377"
+  "GJI\377GJI\377GJI\377GJI\377GJI\377GJI\377GJI\377\375\376\375\377\271"
+  "\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\377\377\377\377"
+  "AED\377\303\304\303\377\323\323\323\377\323\323\323\377\323\323\323\377"
+  "\323\323\323\377\323\323\323\377\302\303\303\377AED\377\376\376\375\377"
+  "\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\377\377\377"
+  "\377<@@\377<@@\377<@@\377<@@\377<@@\377<@@\377<@@\377<@@\377<@@\377\376"
+  "\376\376\377\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377"
+  "\377\377\377\3776;<\3776;<\377\306\307\307\377\323\323\323\377\323\323"
+  "\323\377\323\323\323\377\306\307\307\3776;<\3776;<\377\376\376\376\377"
+  "\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274\265\377\377\377\377"
+  "\377INO\377168\377168\377168\377168\377168\377168\377168\377IMO\377\376"
+  "\376\376\377\271\274\264\377\0\0\0\0\0\0\0\0\0\0\0\0\271\274\264\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\374\373\377\372\372\371\377\370\371"
+  "\370\377\367\370\366\377\376\376\376\377\270\274\264\377\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\267\273\264\376\366\366\366\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\363\363\361\377"
+  "\267\273\264\376\0\0\0\0\0\0\0\0\0\0\0\0\251\254\246\262\267\273\263"
+  "\376\270\272\264\376\270\272\264\376\270\272\264\376\270\272\264\376"
+  "\270\272\264\376\270\272\264\376\270\272\264\376\270\272\264\376\270"
+  "\272\264\376\267\273\263\376\251\254\246\262\0\0\0\0\0\0\0\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (subtitle_track_png)
+#endif
+#ifdef __GNUC__
+const guint8 subtitle_track_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 subtitle_track_png[] =
+#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\0H\0\0\0\343"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
+  "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\342\0\0\0G\0"
+  "\0\0\342\316\317\316\377\371\371\371\377\371\371\371\377\371\371\371"
+  "\377\371\371\371\377\371\371\371\377\371\371\371\377\371\371\371\377"
+  "\371\371\371\377\371\371\371\377\371\371\371\377\371\371\371\377\371"
+  "\371\371\377\316\316\315\377\0\0\0\341\0\0\0\377\371\371\371\377\\^["
+  "\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377PRO\377P"
+  "RO\377\\^[\377\371\371\371\377\0\0\0\377\0\0\0\377\371\371\371\377LO"
+  "L\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377LOL\377"
+  "LOL\377LOL\377\371\371\371\377\0\0\0\377\0\0\0\377\371\371\371\377IL"
+  "J\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377ILJ\377"
+  "ILJ\377ILJ\377\371\371\371\377\0\0\0\377\0\0\0\377\370\371\371\377EI"
+  "G\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377EIG\377"
+  "EIG\377EIG\377\370\371\371\377\0\0\0\377\0\0\0\377\370\370\370\377AE"
+  "D\377\274\275\275\377\323\323\323\377\323\323\323\377\323\323\323\377"
+  "\323\323\323\377\323\323\323\377\323\323\323\377\323\323\323\377\323"
+  "\323\323\377\273\274\274\377AED\377\370\370\370\377\0\0\0\377\0\0\0\377"
+  "\370\370\370\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB\377>BB"
+  "\377>BB\377>BB\377>BB\377>BB\377\370\370\370\377\0\0\0\377\0\0\0\377"
+  "\370\370\370\377:\77\77\377:\77\77\377\300\301\301\377\323\323\323\377"
+  "\323\323\323\377\323\323\323\377\323\323\323\377\323\323\323\377\323"
+  "\323\323\377\300\300\300\377:\77\77\377:\77\77\377\370\370\370\377\0"
+  "\0\0\377\0\0\0\377\370\370\370\3777<=\3777<=\3777<=\3777<=\3777<=\377"
+  "7<=\3777<=\3777<=\3777<=\3777<=\3777<=\3777<=\377\370\370\370\377\0\0"
+  "\0\377\0\0\0\377\370\370\370\377AGH\37739:\37739:\37739:\37739:\3773"
+  "9:\37739:\37739:\37739:\37739:\37739:\377AGH\377\370\370\370\377\0\0"
+  "\0\377\0\0\0\342\307\310\310\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\370\370"
+  "\370\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\370"
+  "\377\370\370\370\377\306\307\307\377\0\0\0\341\0\0\0G\0\0\0\342\0\0\0"
+  "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0"
+  "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\341\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\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 (title_png)
+#endif
+#ifdef __GNUC__
+const guint8 title_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 title_png[] =
+#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\40J\206\355\40J\207\377\40J\207\377"
+  "\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40I\207\354\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377\210\212\205\377\210\212\205"
+  "\377\0\0\0\0\40J\207\377r\237\317\377r\237\317\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377\40J\207\377\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\40I\207\354\40J\207"
+  "\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40I"
+  "\207\354\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\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\210\212\205\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\210\212\205\377\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\40J\206\355\40J\207\377\40J\207\377\40J\207\377\40J\207"
+  "\377\40J\207\377\40J\207\377\40I\207\354\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\210\212\205\377\210\212\205\377\210\212\205\377\0\0\0\0\40J\207"
+  "\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377"
+  "r\237\317\377\40J\207\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205"
+  "\377\0\0\0\0\0\0\0\0\0\0\0\0\40I\207\354\40J\207\377\40J\207\377\40J"
+  "\207\377\40J\207\377\40J\207\377\40J\207\377\40I\207\354\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\210\212\205\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\210\212\205\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\210\212\205\377\0\0\0\0\0\0\0\0\0\0\0\0\40J\206"
+  "\355\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J"
+  "\207\377\40I\207\354\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\210\212\205\377"
+  "\210\212\205\377\210\212\205\377\0\0\0\0\40J\207\377r\237\317\377r\237"
+  "\317\377r\237\317\377r\237\317\377r\237\317\377r\237\317\377\40J\207"
+  "\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"
+  "\40I\207\354\40J\207\377\40J\207\377\40J\207\377\40J\207\377\40J\207"
+  "\377\40J\207\377\40I\207\354\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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 (tv_png)
+#endif
+#ifdef __GNUC__
+const guint8 tv_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 tv_png[] =
+#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\0VXT\206VXT\367TVR\205\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0VXT\206VXT\367TVR\205\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "VXT\366\235\237\231\377WYU\371\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0WYU\372\235\237\231\377VXT\366\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0JLI\227TVR\374]_[\377\210\211\206\217\377\377\377\1\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\211\213\205\210\\^Z\377TVR\375KMI\226\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\2\0\0\0Y)*)\311deb\377\210\211\206\217\377\377\377"
+  "\1\0\0\0\0\211\213\205\210fhd\377+,+\314\0\0\0]\0\0\0\2\0\0\0\0\0\0\0"
+  "\0OQO\205,-*\375#$\"\377#$\"\377#$\"\377#$\"\377#$\"\377#$\"\377#$\""
+  "\377#$\"\377#$\"\377#$\"\377#$\"\377#$\"\377,-*\375PPP\203,-*\375\210"
+  "\211\207\377\246\246\244\377\244\245\242\377\242\244\241\377\242\244"
+  "\241\377\242\244\241\377\242\244\241\377\242\244\241\377\242\244\241"
+  "\377\242\244\241\377\242\244\241\377\246\246\244\377\246\246\244\377"
+  "\207\211\206\377-.,\374#$\"\377\225\226\223\377\222\223\220\377W[Z\377"
+  "PRQ\377PRQ\377PRQ\377PRQ\377PRQ\377PRQ\377PRQ\377PRQ\377WZZ\377\222\223"
+  "\220\377\225\226\223\377#$\"\377#$\"\377\225\226\223\377lmj\377v\202"
+  "\213\377\263\313\344\377\263\313\344\377\263\313\344\377\263\313\344"
+  "\377\263\313\344\377\263\313\344\377\263\313\344\377\263\313\344\377"
+  "v\200\211\377mmj\377\225\226\223\377#$\"\377#$\"\377\225\226\223\377"
+  "RSO\377\245\272\317\377\263\313\344\377\263\313\344\377\263\313\344\377"
+  "\263\313\344\377\263\313\344\377\263\313\344\377\263\313\344\377\263"
+  "\313\344\377\243\270\314\377TUQ\377\225\226\223\377#$\"\377#$\"\377\223"
+  "\224\221\377KLI\377\263\313\344\377\263\313\344\377\263\313\344\377\263"
+  "\313\344\377\263\313\344\377\263\313\344\377\263\313\344\377\263\313"
+  "\344\377\263\313\344\377\260\310\341\377LMJ\377\225\226\223\377#$\"\377"
+  "#$\"\377\221\222\217\377MNK\377\257\310\340\377\257\310\340\377\257\310"
+  "\340\377\257\310\340\377\257\310\340\377\257\310\340\377\257\310\340"
+  "\377\257\310\340\377\257\310\340\377\257\310\340\377LMI\377\222\222\220"
+  "\377#$\"\377#$\"\377\224\225\222\377NOL\377\240\271\315\377\250\303\331"
+  "\377\250\303\331\377\250\303\331\377\250\303\331\377\250\303\331\377"
+  "\250\303\331\377\250\303\331\377\250\303\331\377\240\270\314\377OOL\377"
+  "\225\226\223\377#$\"\377#$\"\377\225\226\223\377fhe\377t\201\213\377"
+  "\242\275\322\377\242\275\322\377\242\275\322\377\242\275\322\377\242"
+  "\275\322\377\242\275\322\377\242\275\322\377\242\275\322\377s\200\210"
+  "\377hhf\377\225\226\223\377#$\"\377#$\"\377\225\226\223\377\220\221\215"
+  "\377TXV\377OQP\377OQP\377OQP\377OQP\377OQP\377OQP\377OQP\377OQP\377T"
+  "XV\377\220\221\216\377\225\226\223\377#$\"\377,-*\375{{y\377\226\227"
+  "\224\377\224\225\222\377\240\241\236\377\242\244\241\377\242\244\241"
+  "\377\242\244\241\377\242\244\241\377\242\244\241\377\242\244\241\377"
+  "\240\241\236\377\211\3374\377\226\227\224\377{{x\377./,\374PPP\203-."
+  ",\374#$\"\377#$\"\377#$\"\377#$\"\377#$\"\377#$\"\377#$\"\377#$\"\377"
+  "#$\"\377#$\"\377#$\"\377#$\"\377-.,\374QQO\201"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (url_png)
+#endif
+#ifdef __GNUC__
+const guint8 url_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 url_png[] =
+#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\0LLL\232MMM\377LLLe\0\0\0\0LLL\232MMM"
+  "\377LLLe\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0MMM\377MMM\377\0\0\0\0\0\0\0"
+  "\0\0\0\0\0MMM\315MMM\377MMM2\0\0\0\0MMM\315MMM\377MMM2\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0MMM\377MMM\377\0\0\0\0\0\0\0\0UUU\6MMM\370MMM\371I"
+  "II\7UUU\6MMM\370MMM\371III\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\0NNN4MMM\377MMM\313\0\0\0\0NNN4MMM\377MMM\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\0MMMgMMM\377MMM\230\0\0\0\0MMMgMMM\377MMM\230\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0LLL\232MMM\377LL"
+  "Le\0\0\0\0LLL\232MMM\377LLLe\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0MMM\315MMM\377MMM2\0\0\0\0MMM\315MMM"
+  "\377MMM2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0MMM\377MMM\377\0\0\0"
+  "\0UUU\6MMM\370MMM\371III\7UUU\6MMM\370MMM\371III\7\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0MMM\377MMM\377\0\0\0\0NNN4MMM\377MMM\313\0\0\0"
+  "\0NNN4MMM\377MMM\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\0MMMgMMM\377MMM\230\0\0\0\0MMMgMMM\377MMM\230"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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 (vcd_png)
+#endif
+#ifdef __GNUC__
+const guint8 vcd_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 vcd_png[] =
+#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\231\214w<\236\220w\245\240\223w\335"
+  "\241\222u\366\241\222u\366\240\223w\335\237\221x\244\227\217y;\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\231\200\12\236\221w\251"
+  "\260\241\206\375\347\327\276\377\371\350\320\377\375\354\324\377\375"
+  "\354\324\377\367\346\316\377\340\320\267\377\255\236\202\375\237\223"
+  "w\247\216\216q\11\0\0\0\0\0\0\0\0\0\0\0\0\231\231\200\12\240\222w\313"
+  "\324\304\252\377\376\355\325\377\375\354\324\377\373\352\321\377\370"
+  "\350\317\377\366\346\314\377\366\346\314\377\371\350\320\377\374\353"
+  "\323\377\312\272\240\377\240\221x\312\216\216q\11\0\0\0\0\0\0\0\0\237"
+  "\222w\252\300\260\226\377\374\353\323\377\374\353\323\377\372\352\321"
+  "\377\371\350\317\377\366\346\314\377\365\344\313\377\362\343\311\377"
+  "\361\341\306\377\362\342\307\377\374\353\323\377\310\271\236\377\236"
+  "\223x\246\0\0\0\0\231\214w<\251\232\177\375\371\350\320\377\342\323\267"
+  "\377\353\334\301\377\371\350\320\377\367\347\315\377\365\345\314\377"
+  "\363\343\311\377\361\341\307\377\357\340\305\377\355\335\302\377\356"
+  "\337\305\377\372\352\321\377\253\233\177\375\230\217y9\236\220w\245\322"
+  "\301\247\377\357\340\305\377\334\316\260\377\334\316\260\377\352\333"
+  "\300\377\372\351\321\377\375\354\324\377\375\354\323\377\367\347\316"
+  "\377\356\337\304\377\354\335\301\377\352\332\277\377\365\344\313\377"
+  "\330\310\255\377\237\221x\242\241\222u\336\355\334\304\377\343\324\267"
+  "\377\334\316\260\377\334\316\260\377\357\340\305\377\347\326\276\377"
+  "\326\305\254\377\317\277\245\377\355\334\304\377\365\345\314\377\352"
+  "\333\300\377\351\331\276\377\354\335\301\377\360\340\307\377\241\222"
+  "v\334\241\222u\365\371\350\320\377\335\317\261\377\334\316\260\377\335"
+  "\317\262\377\374\353\322\377\243\222y\377\303\277\265\313\304\300\270"
+  "\317\304\264\232\377\374\353\323\377\351\332\276\377\347\330\274\377"
+  "\347\330\273\377\372\351\321\377\241\222u\365\241\222u\365\371\350\320"
+  "\377\335\317\261\377\334\317\260\377\337\321\263\377\374\353\322\377"
+  "\250\230~\377\276\273\262\315\303\276\266\317\300\257\227\377\374\353"
+  "\323\377\350\331\275\377\346\327\272\377\345\326\272\377\371\351\320"
+  "\377\241\222u\365\241\222u\336\355\334\303\377\343\324\267\377\336\320"
+  "\262\377\341\322\265\377\362\341\310\377\344\323\273\377\270\250\216"
+  "\377\302\262\231\377\351\331\300\377\364\344\312\377\347\330\273\377"
+  "\344\326\271\377\351\331\276\377\356\336\305\377\241\222v\334\237\221"
+  "x\244\321\301\247\377\360\340\305\377\340\322\263\377\343\324\267\377"
+  "\346\327\272\377\364\344\312\377\374\353\323\377\374\353\323\377\370"
+  "\350\317\377\354\335\301\377\345\326\272\377\343\325\270\377\362\342"
+  "\310\377\322\302\251\377\236\222x\241\227\217y;\250\231~\375\371\350"
+  "\320\377\347\330\273\377\344\326\271\377\347\330\274\377\352\333\277"
+  "\377\355\335\302\377\360\340\305\377\363\343\311\377\365\345\314\377"
+  "\354\335\301\377\347\331\274\377\371\350\320\377\250\230}\375\233\222"
+  "{8\0\0\0\0\237\223w\247\302\262\227\377\373\353\322\377\352\333\277\377"
+  "\351\331\276\377\353\335\301\377\356\337\304\377\362\341\307\377\365"
+  "\344\312\377\367\347\315\377\373\352\322\377\374\353\323\377\300\261"
+  "\226\377\236\220w\245\0\0\0\0\0\0\0\0\216\216q\11\240\221w\312\305\265"
+  "\232\377\372\351\321\377\365\345\314\377\361\341\307\377\361\341\306"
+  "\377\363\344\311\377\370\350\316\377\374\353\323\377\375\354\324\377"
+  "\322\303\251\377\241\221w\311\266\222\222\7\0\0\0\0\0\0\0\0\0\0\0\0\216"
+  "\216q\11\236\223x\246\253\233\200\375\334\313\261\377\364\343\313\377"
+  "\374\353\323\377\374\353\323\377\370\347\317\377\345\324\273\377\256"
+  "\236\203\375\236\220w\245\266\222\222\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\230\217y9\237\221x\242\241\222v\334\241\222u\366\241"
+  "\222u\366\241\222v\334\236\222x\241\233\222{8\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 (vcd_play_png)
+#endif
+#ifdef __GNUC__
+const guint8 vcd_play_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 vcd_play_png[] =
+#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\200\200\200\2\236\222wg\237\222w\277\241\221u\353\241"
+  "\222u\373\241\221u\353\240\221v\276\233\217vf\200\200\200\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\237\223\200(\241\221u\327\307"
+  "\267\235\377\361\340\307\377\374\353\323\377\375\354\324\377\371\350"
+  "\320\377\351\330\277\377\276\257\223\377\241\221v\326\237\223\200(\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\237\223\200(\244\224x\356\356\335\304"
+  "\377\376\355\325\377\373\352\321\377\366\346\314\377\362\343\311\377"
+  "\361\341\306\377\363\343\311\377\373\353\322\377\336\315\263\377\245"
+  "\223z\355\243\226|'\0\0\0\0\0\0\0\0\200\200\200\2\241\221u\327\330\310"
+  "\256\377\370\347\316\377\371\351\320\377\367\347\315\377\364\344\312"
+  "\377\361\341\306\377\356\336\303\377\352\333\300\377\350\331\275\377"
+  "\367\347\315\377\333\312\260\377\240\222u\325\200\200\200\2\0\0\0\0\236"
+  "\222wg\270\250\215\377\371\351\320\377\335\317\261\377\344\325\271\377"
+  "\365\344\312\377\362\343\311\377\357\340\305\377\354\335\301\377\351"
+  "\332\276\377\346\327\272\377\343\326\270\377\373\352\321\377\267\247"
+  "\214\377\236\221zd\0\0\0\0\237\221v\300\337\317\265\377\352\332\276\377"
+  "\334\316\260\377\337\321\263\377\350\331\275\377\372\351\320\377\375"
+  "\354\324\377\371\350\320\377\352\333\277\377\344\326\271\377\341\322"
+  "\266\377\353\334\301\377\335\315\263\377\237\222u\275\0\0\0\0\241\221"
+  "u\353\365\344\314\377\340\321\263\377\335\317\262\377\340\322\265\377"
+  "\367\347\315\377\335\316\264\377\274\261\236\377\340\320\266\377\370"
+  "\347\316\377\343\324\267\377\340\322\264\377\340\322\265\377\364\344"
+  "\313\377\241\222v\352\0\0\0\0\241\223u\372\374\353\323\377\335\317\261"
+  "\377\337\321\263\377\342\324\267\377\375\354\324\377\264\252\226\377"
+  "\206\212\206J\263\251\226\377\375\354\324\377\341\323\266\377\336\320"
+  "\263\377\334\317\260\377\374\353\323\377\242\222v\371\0\0\0\0\241\221"
+  "u\353\253\237\216\377WQF\377ZTH\377[UJ\377c]R\377ZTI\377JG\77\377[TJ"
+  "\377c\\R\377ZTH\377XSG\377ZTH\377\246\232\212\377\241\222v\352\0\0\0"
+  "\0\240\221v\276YSH\377\377\377\377\377YSH\377\377\377\377\377^XM\377"
+  "\377\377\377\377\377\377\377\377\377\377\377\377aZP\377\377\377\377\377"
+  "\377\377\377\377^WL\377XRH\377\240\222u\273\0\0\0\0\233\217vfIC8\377"
+  "\377\377\377\377VPE\377\377\377\377\377^XL\377\377\377\377\377\0\0\0"
+  "\377\0\0\0\377b\\R\377\377\377\377\377\0\0\0\377\377\377\377\377IC8\377"
+  "\236\217xd\0\0\0\0\200\200\200\2:4+\357\377\377\377\377aZP\377\377\377"
+  "\377\377ZTI\377\377\377\377\377aZP\377b[Q\377c\\R\377\377\377\377\377"
+  "e^U\377\377\377\377\37795*\356\200\200\200\2\0\0\0\0\0\0\0\0\17\16\14"
+  "\251\0\0\0\377\377\377\377\377\0\0\0\377_XN\377\377\377\377\377ZUJ\377"
+  "\\VM\377^XO\377\377\377\377\377^XN\377\377\377\377\377\17\16\14\250\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\231\17\16\14\251\377\377\377\377LF;\377"
+  "]WM\377\377\377\377\377\377\377\377\377\377\377\377\377_XO\377\377\377"
+  "\377\377\377\377\377\377\0\0\0\377\0\0\0\231\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0G\0\0\0\231\0\0\0\377!\36\31\30140'\345\0\0\0\377\0\0\0\377\0\0"
+  "\0\37750'\344\0\0\0\377\0\0\0\377\0\0\0\231\0\0\0L\0\0\0\0\0\0\0\0"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (video_track_png)
+#endif
+#ifdef __GNUC__
+const guint8 video_track_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 video_track_png[] =
+#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\0Q]Q\26UYQHVXSnXZV|Z]X|VXSnUYQHUUU\25\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\1XZX]]`\\\330cea\360yzw\361\216\220\214\374\245"
+  "\247\244\377\266\267\263\377\241\242\236\374~\202{\360ceb\357ad_\327"
+  "ZZW[\0\0\0\1\0\0\0\0UUU\17egb\314\224\225\222\364\276\276\274\377\262"
+  "\264\261\377\262\265\262\377\224\225\222\377\221\222\217\377\207\211"
+  "\205\377\213\215\210\377\312\314\310\377\356\357\355\377\340\341\337"
+  "\377\212\214\211\362dfa\312UUU\17npj\260\276\277\275\373\245\246\242"
+  "\377^a]\377ac`\377\255\256\251\377\323\324\317\377\237\242\234\377\210"
+  "\212\205\377\263\264\257\377\334\334\332\377rtq\377lmi\377\261\262\257"
+  "\377\237\240\234\372loj\256|~z\366\342\343\341\377\213\215\210\377\243"
+  "\245\241\377\273\273\270\377\316\321\312\377\323\327\317\377\302\305"
+  "\276\377\302\305\276\377\323\327\317\377\324\327\320\377\277\301\275"
+  "\377\265\267\262\377\251\253\244\377\314\316\311\377vxt\364~\177{\337"
+  "\344\344\343\377\225\226\223\377qsn\377ikh\377\250\252\245\377\316\321"
+  "\312\377\306\312\303\377\316\321\312\377\331\334\326\377\237\241\234"
+  "\377cfb\377ilf\377\217\221\214\377\310\312\306\377\177\201}\335hie\266"
+  "\230\233\227\377\360\360\357\377\312\312\312\377\264\266\261\377\304"
+  "\306\300\377pro\377UWS\377VXT\377\204\205\202\377\277\301\273\377\250"
+  "\253\244\377\267\271\265\377\315\316\313\377\220\222\216\377gif\264Z"
+  "]Y\361\252\253\247\377\215\217\212\377\241\243\237\377\322\323\321\377"
+  "\361\361\360\377\372\372\372\377\366\367\366\377\357\360\357\377\345"
+  "\347\344\377\330\331\326\377\277\301\275\377\233\235\230\377\213\215"
+  "\210\377\252\253\247\377Z]Y\361Y[X\342\253\254\251\377\223\225\220\377"
+  "vxu\377^ba\377y}y\377\204\206\202\377\206\210\203\377\205\207\202\377"
+  "\201\203\177\377uyu\377]a_\377vyu\377\224\225\221\377\253\254\251\377"
+  "X[V\341VZVJgie\362\250\252\247\377\247\251\245\377\211\214\210\377^b"
+  "`\377JNM\377BFF\377BFF\377JNM\377^ba\377\211\214\210\377\247\251\245"
+  "\377\250\252\247\377gie\362W[TI\0\0\0\0UUU\77Z\\X\341vxt\360\226\227"
+  "\224\376\251\253\250\377\260\262\257\377\262\263\260\377\262\263\260"
+  "\377\260\262\257\377\251\253\250\377\226\227\224\376uxr\361Z\\W\341T"
+  "XT=\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1TXTCY[X\232Y\\W\323XYV\347Y[V\364"
+  "Y[V\364XYV\347Z\\W\322XZW\231TXTC\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"};
+
+
+/* GdkPixbuf RGBA C-Source image dump */
+
+#ifdef __SUNPRO_C
+#pragma align 4 (volume_mute_png)
+#endif
+#ifdef __GNUC__
+const guint8 volume_mute_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 volume_mute_png[] =
+#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\0TXTCUWS\334\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0TWTF`b^\366UWS\375\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0UYQHegd\367\336\337\334\377npm\375\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0UWS\304UWS\377UWS\377UWS\377UWS\376egb\370"
+  "\336\337\334\377\345\347\342\377UWS\375\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0VXT\377\344\346\341\377\344\346\341\377\343"
+  "\345\340\377VXT\377\336\340\333\377\346\350\342\377\327\332\323\377U"
+  "WS\375\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UWS\377"
+  "\322\325\316\377\322\325\316\377\321\323\315\377VYT\377\327\331\323\377"
+  "\322\325\316\377\321\323\315\377UWS\375\0\0\0\0\214\215\211\377\214\215"
+  "\211\377\0\0\0\0\0\0\0\0\214\215\211\377\214\215\211\377UWS\377\314\317"
+  "\307\377\314\317\307\377\313\316\306\377VXT\377\314\317\307\377\314\317"
+  "\307\377\313\316\306\377UWS\375\0\0\0\0bd`\377bd`\377\214\215\211\377"
+  "\214\215\211\377bd`\377bd`\377UWS\377\305\310\301\377\305\310\301\377"
+  "\304\307\300\377VXT\377\305\310\301\377\305\310\301\377\304\307\300\377"
+  "UWS\375\0\0\0\0\0\0\0\0bd`\377\214\215\211\377\214\215\211\377bd`\377"
+  "\0\0\0\0UWS\377\277\302\273\377\277\302\273\377\276\301\272\377VXT\377"
+  "\277\302\273\377\277\302\273\377\276\301\272\377UWS\375\0\0\0\0\0\0\0"
+  "\0\214\215\211\377bd`\377bd`\377\214\215\211\377\0\0\0\0UWS\377\270\273"
+  "\264\377\270\273\264\377\267\272\263\377VXT\377\252\254\245\377\270\273"
+  "\264\377\267\272\263\377UWS\375\0\0\0\0\214\215\211\377bd`\377bd`\377"
+  "bd`\377bd`\377\214\215\211\377UWS\312UWS\377UWS\377UWS\377UWS\377[]Z"
+  "\372\236\241\233\377\261\264\255\377UWS\375\0\0\0\0bd`\377bd`\377\0\0"
+  "\0\0\0\0\0\0bd`\377bd`\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0UX"
+  "RKZ]X\370\227\232\224\377UWS\375\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "UYQHY\\W\366UWS\375\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0VVSDUW"
+  "S\337\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\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 (warning_png)
+#endif
+#ifdef __GNUC__
+const guint8 warning_png[] __attribute__ ((__aligned__ (4))) =
+#else
+const guint8 warning_png[] =
+#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\277\237\0\30\305\236\0B\303\237\0b\304\240\0t\303\241"
+  "\0w\304\237\0u\304\240\0c\302\240\0C\304\235\0\32\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\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\1"
+  "\305\240\0>\307\244\5\240\307\243\4\347\311\246\13\367\323\267&\360\335"
+  "\304;\366\341\313F\372\344\314H\377\342\313G\372\336\304;\367\323\270"
+  "'\360\311\247\13\366\307\243\4\352\307\244\5\243\305\236\0B\377\200\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\0\0\0\0\0\0\0\0\325\252\0\6\305\242\3e\306\244\4\346\317"
+  "\257\31\363\347\321Q\375\366\346u\377\375\360\205\377\375\356z\377\375"
+  "\355s\377\375\355n\377\375\355m\377\375\355n\377\375\355s\377\375\356"
+  "z\377\375\360\205\377\366\347u\377\351\323Q\375\321\260\32\362\307\243"
+  "\3\351\305\241\2j\277\237\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\305\240\0F\307\244\3\345\325\271)"
+  "\364\363\340j\377\375\357\177\377\374\354k\377\374\352Z\377\374\351P"
+  "\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351P\377\374\352Z\377\374\354k\377\375"
+  "\357\177\377\364\343k\377\327\273+\364\307\244\3\350\303\241\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\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\277\237\0\10\307\243\3\236"
+  "\314\253\22\364\360\334a\377\375\356y\377\374\353`\377\374\351P\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351P\377\374\353`\377\375\356y\377\361"
+  "\337c\377\315\254\23\364\307\243\5\247\314\231\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\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\302\236\0\25\307\244\5\325\332\2771\366\372\353w\377\374\354d"
+  "\377\374\351P\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351P\377\374\354d\377\372\354x\377"
+  "\333\3002\367\307\243\3\334\304\235\0\32\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\302\243\0\31\307\244"
+  "\3\343\343\313B\372\375\356u\377\374\352W\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\352W\377\375\356v\377\345"
+  "\315E\373\307\243\3\350\307\237\0\40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\277\237\0\20\307\243\3\333\345\315E\373"
+  "\375\355p\377\374\351R\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351R\377\375\355"
+  "p\377\350\320H\374\307\244\3\343\302\236\0\25\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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\1\310\244\4\276\337\3057\371\375\355n"
+  "\377\374\351R\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351R\377\375\355o\377\341\307:\372\307\244\4\307\377\200\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\305\242\2s\320\261\32\365\374\353l\377\374"
+  "\351R\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\361\337N\377\203\177A\377DG8\377176\377BE8\377}z\77\377\355\335M\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "R\377\374\354n\377\322\264\35\365\307\245\4\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\0\0\0\0\0\0"
+  "\0\0\0\310\244\0\34\310\243\5\365\366\344a\377\374\352X\377\374\351O"
+  "\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\243"
+  "\232D\377.46\377.46\377.46\377.46\377.46\377\227\220B\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\352"
+  "X\377\367\346c\377\310\244\5\365\305\240\0#\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\310\245"
+  "\4\254\342\311:\372\374\353b\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\256\245E\377.46\377"
+  ".46\377.46\377.46\377.46\377\233\223C\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\353b\377"
+  "\345\313=\374\307\244\6\267\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\301\242\0!\307\244\6\367\372\350"
+  "b\377\374\351R\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\304\270I\377.46\377.46\377.46\377"
+  ".46\377.46\377\262\251F\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351R\377\373\352e\377"
+  "\311\246\10\364\305\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\0\0\0\0\0\0\306\245\4\220\337\3052\372\374\353\\\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\332\314K\377.46\377.46\377.46\377.46"
+  "\377.46\377\311\274H\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\353\\\377\343"
+  "\3116\374\307\243\3\236\0\0\0\0\0\0\0\0\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\3\306\243\3\356\364\340U\377\374\351R\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\361\337N\377.46\377.46\377.46\377.46"
+  "\377.46\377\337\320K\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\352S\377\366"
+  "\344W\377\306\243\3\363\325\252\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\305\237\0""5\314\254\20\361\374\353\\\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\3779=7\377.46\377.4"
+  "6\377.46\377/56\377\365\344O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\353\\\377\317\256\22\360\304\241\0A\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\306\242\2x\335\300(\370\374\352V\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377OQ:\377.46\377"
+  ".46\377.46\377 at D8\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\352W\377\336\305-\373\306\242\2\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\310\246\6\264\351\321:\377\374\351"
+  "R\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377ed=\377"
+  ".46\377.46\377.46\377VX:\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351R\377\354\325>\377\311\246\5\302\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\310\245\6\335\361\333F\377\374"
+  "\351P\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377{x\77"
+  "\377.46\377.46\377.46\377mk=\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351P\377\363\336I\377\310\244\4\347\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\307\243\3\360\366\342"
+  "J\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\222\213B\377.46\377.46\377.46\377\204\177A\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\371\346N\377\305"
+  "\241\2\370\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\305"
+  "\241\2\370\371\345K\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\247\236D\377.46\377.46\377.46\377\232\223D\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\305\240\1\375\377\200\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\305\241\2\370\371\345K\377\374\351O\377\374\351P\377"
+  "\374\351P\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\275\262H\377.46\377.46\377"
+  ".46\377\261\247F\377\374\351O\377\374\351O\377\374\351O\377\374\351O"
+  "\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351P\377\374"
+  "\351P\377\374\351O\377\374\351O\377\305\240\1\375\377\200\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\307\243\3\360\366\342H\377\374"
+  "\351P\377\374\351P\377\374\351P\377\374\351P\377\374\351P\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\324"
+  "\305K\377.46\377.46\377.46\377\310\273I\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351P\377\374\351"
+  "P\377\374\351P\377\374\351P\377\374\351P\377\371\345L\377\305\241\2\370"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\310\245\7\335"
+  "\361\332@\377\374\351P\377\374\351P\377\374\351P\377\374\351P\377\374"
+  "\351P\377\374\351P\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\351\331M\377.46\377.46\377.46\377\336\317L\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351P\377\374"
+  "\351P\377\374\351P\377\374\351P\377\374\351P\377\374\351P\377\363\335"
+  "D\377\310\244\6\347\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\310\247\7\264\350\3175\377\374\351Q\377\374\351R\377\374\351R"
+  "\377\374\351R\377\374\351P\377\374\351P\377\374\351P\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377pn>\3779>7\377jj=\377"
+  "\372\347N\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "P\377\374\351P\377\374\351P\377\374\351R\377\374\351R\377\374\351R\377"
+  "\374\351Q\377\353\3239\377\311\247\7\302\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\306\242\4y\333\276#\370\374\351R\377\374"
+  "\352S\377\374\352T\377\374\352S\377\374\351R\377\374\351Q\377\374\351"
+  "P\377\374\351P\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351P\377\374\351P\377\374\351P\377\374\351R\377\374"
+  "\352S\377\374\352T\377\374\352S\377\374\351R\377\336\303(\373\310\244"
+  "\4\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\306\241"
+  "\5""6\314\252\16\361\374\351R\377\374\352U\377\374\352U\377\374\352U"
+  "\377\374\352T\377\374\351R\377\374\351P\377\374\351P\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351P\377\374"
+  "\351P\377\374\351R\377\374\352T\377\374\352U\377\374\352U\377\374\352"
+  "U\377\374\351R\377\317\256\21\360\304\241\4A\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\277\277@\4\307\244\6\356\363\337F\377"
+  "\374\352U\377\374\352W\377\374\352W\377\374\352V\377\374\352T\377\374"
+  "\351R\377\374\351P\377\374\351P\377\374\351P\377\374\351O\377\374\351"
+  "O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351"
+  "O\377\374\351P\377\374\351P\377\374\351R\377\374\352T\377\374\352V\377"
+  "\374\352W\377\374\352W\377\374\352U\377\365\342J\377\307\244\6\363\333"
+  "\266$\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\377\377"
+  "\377\1\310\245\11\220\336\304)\371\374\352U\377\374\352X\377\374\352"
+  "Y\377\374\352Y\377\374\352W\377\374\352T\377\374\351R\377\374\351P\377"
+  "\374\351P\377\374\351P\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351O\377\374\351O\377\324\305K\377^_<\3778=7\377[\\;\377\316\301I\377"
+  "\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374\351O\377\374"
+  "\351P\377\374\351P\377\374\351P\377\374\351R\377\374\352T\377\374\352"
+  "W\377\374\352X\377\374\352Y\377\374\352X\377\374\352V\377\341\306.\374"
+  "\310\245\10\237\377\377\377\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\377\377\377\1\305\250\17#\307\245\10\367\370\345P\377"
+  "\374\352X\377\374\352Z\377\374\352[\377\374\352Y\377\374\352W\377\374"
+  "\352U\377\374\351R\377\374\351Q\377\374\351P\377\374\351P\377\374\351"
+  "P\377\374\351O\377\374\351O\377\352\331M\377>B8\377.46\377.46\377.46"
+  "\3779>7\377\344\324L\377\374\351O\377\374\351O\377\374\351P\377\374\351"
+  "P\377\374\351P\377\374\351Q\377\374\351R\377\374\352U\377\374\352W\377"
+  "\374\352Y\377\374\352[\377\374\352Z\377\374\352X\377\372\350S\377\310"
+  "\247\12\365\310\246\13.\377\377\377\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\377\377\377\1\377\377\377\2\312\246\12\254\340"
+  "\306-\372\374\352W\377\374\352Z\377\374\353\\\377\374\353[\377\374\352"
+  "Z\377\374\352X\377\374\352U\377\374\352T\377\374\351R\377\374\351Q\377"
+  "\374\351P\377\374\351P\377\374\351P\377\256\245F\377.46\377.46\377.4"
+  "6\377.46\377.46\377\244\233E\377\374\351P\377\374\351P\377\374\351P\377"
+  "\374\351Q\377\374\351R\377\374\352S\377\374\352U\377\374\352X\377\374"
+  "\352Z\377\374\353[\377\374\353\\\377\374\352[\377\374\352W\377\343\311"
+  "1\373\311\246\13\267\377\377\377\2\377\377\377\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\377\377\377\1\316\255\31"
+  "\37\310\244\11\365\364\340K\377\374\352Y\377\374\353\\\377\374\353]\377"
+  "\374\353]\377\374\353[\377\374\352Y\377\374\352W\377\374\352U\377\374"
+  "\352T\377\374\351R\377\374\351R\377\374\351Q\377\257\245F\377.46\377"
+  ".46\377.46\377.46\377.46\377\244\234E\377\374\351Q\377\374\351R\377\374"
+  "\351R\377\374\352S\377\374\352U\377\374\352W\377\374\352Y\377\374\353"
+  "[\377\374\353]\377\374\353]\377\374\353\\\377\374\352Y\377\365\341M\377"
+  "\311\244\11\365\310\245\25%\377\377\377\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\377\377\377\1\377\377\377"
+  "\2\312\246\13s\320\260\27\364\373\350U\377\374\352[\377\374\353]\377"
+  "\374\353^\377\374\353^\377\374\353]\377\374\353[\377\374\352Y\377\374"
+  "\352W\377\374\352V\377\374\352U\377\374\352T\377\352\332Q\377>B8\377"
+  ".46\377.46\377.46\3779>7\377\344\325P\377\374\352T\377\374\352U\377\374"
+  "\352V\377\374\352W\377\374\352Y\377\374\353[\377\374\353]\377\374\353"
+  "^\377\374\353^\377\374\353]\377\374\352[\377\373\351V\377\322\263\30"
+  "\364\307\245\14\177\252\252\252\3\377\377\377\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\377\377\377"
+  "\1\277\277\200\4\310\246\13\275\334\300(\370\374\352X\377\374\353[\377"
+  "\374\353^\377\374\353`\377\374\353`\377\374\353_\377\374\353]\377\374"
+  "\353\\\377\374\352[\377\374\352Y\377\374\352X\377\374\352W\377\324\306"
+  "Q\377_`>\3778=7\377\\\\=\377\316\302P\377\374\352W\377\374\352X\377\374"
+  "\352Y\377\374\352[\377\374\353\\\377\374\353]\377\374\353_\377\374\353"
+  "`\377\374\353`\377\374\353^\377\374\353[\377\374\352Y\377\336\303,\371"
+  "\310\247\14\307\222mI\7\200\200\200\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\200"
+  "\200\200\2\277\231&\24\307\245\11\334\342\3070\371\374\352Y\377\374\353"
+  "[\377\374\353^\377\374\353`\377\374\353`\377\374\353`\377\373\352_\377"
+  "\374\353`\377\374\353^\377\374\353]\377\374\353\\\377\374\353[\377\374"
+  "\353[\377\374\353[\377\374\353[\377\374\353[\377\374\353\\\377\374\353"
+  "]\377\374\353^\377\374\353_\377\373\352_\377\373\352`\377\374\353`\377"
+  "\374\353`\377\374\353^\377\374\353[\377\374\352Y\377\345\3134\374\306"
+  "\245\12\345\236\204\32\35+++\6\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\1UU"
+  "U\3fff\5\252\223\27!\306\244\11\345\336\303-\372\374\352X\377\374\352"
+  "[\377\374\353]\377\374\353`\377\373\352`\377\373\352a\377\374\353b\377"
+  "\374\353b\377\374\353a\377\374\353a\377\374\353`\377\374\353`\377\374"
+  "\353`\377\374\353`\377\374\353`\377\373\352`\377\374\353a\377\374\353"
+  "b\377\374\353b\377\373\352a\377\373\352`\377\374\353`\377\374\353]\377"
+  "\374\352[\377\374\352X\377\342\3071\373\306\245\12\352\215r\20""1'''"
+  "\15\40\40\40\10\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\1\0\0\0\2""333\5\34"
+  "\34\34\11\200q\25$\305\242\13\327\326\271\37\366\371\345R\377\374\352"
+  "Y\377\374\353[\377\374\353]\377\374\353`\377\373\352`\377\374\353b\377"
+  "\374\353b\377\374\353b\377\374\353b\377\374\353b\377\374\353b\377\374"
+  "\353b\377\374\353b\377\374\353b\377\374\353b\377\374\353b\377\373\352"
+  "`\377\374\353`\377\374\353]\377\374\353[\377\374\352Y\377\371\347S\377"
+  "\327\271!\370\303\241\11\340aS\16""7\25\25\25\30\20\20\20\20\0\0\0\11"
+  "\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\1\0\0\0\2\0\0\0\5\32\32\32\12\20\20"
+  "\20\20""80\20\40\271\231\13\250\310\247\15\366\354\325>\377\374\352W"
+  "\377\374\352Y\377\374\353[\377\374\353]\377\374\353^\377\374\353`\377"
+  "\373\352_\377\374\353`\377\374\353a\377\374\353a\377\374\353a\377\374"
+  "\353`\377\373\352_\377\374\353`\377\374\353^\377\374\353]\377\374\353"
+  "[\377\374\352Y\377\374\352W\377\356\326@\377\310\247\16\367\262\222\12"
+  "\271*%\11""7\7\7\7$\12\12\12\32\0\0\0\20\0\0\0\12\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\1\0\0\0\2\0\0\0\5\0\0\0\11\0\0\0\17\13\13\13\30\17\17"
+  "\17#\206o\10e\303\241\11\351\317\261\31\366\360\330B\377\374\352W\377"
+  "\374\352X\377\374\352Y\377\374\352Z\377\374\353[\377\374\353\\\377\374"
+  "\353\\\377\374\353\\\377\374\353\\\377\374\353\\\377\374\353[\377\374"
+  "\352[\377\374\352Y\377\374\352X\377\374\352W\377\361\332E\377\320\263"
+  "\32\367\301\240\11\356wc\6|\11\11\11;\6\6\6.\0\0\0\"\0\0\0\30\0\0\0\20"
+  "\0\0\0\12\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\1\0\0\0\2\0\0\0\4\0\0\0\7"
+  "\0\0\0\15\0\0\0\24\11\11\11\35\7\7\7'\34\30\11""6\223y\6\207\301\241"
+  "\11\354\311\250\17\366\342\311/\375\362\335G\377\374\352U\377\374\352"
+  "V\377\374\352W\377\374\352W\377\374\352W\377\374\352W\377\374\352W\377"
+  "\374\352V\377\374\352U\377\363\336H\377\343\3111\376\310\250\21\367\301"
+  "\240\7\360\207p\7\231\27\24\7L\4\4\4=\5\5\5""2\0\0\0'\0\0\0\35\0\0\0"
+  "\25\0\0\0\15\0\0\0\10\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\1\0\0\0\1\0\0"
+  "\0\3\0\0\0\5\0\0\0\11\0\0\0\17\0\0\0\25\0\0\0\35\7\7\7&\5\5\5/\15\15"
+  "\11""9p^\5m\253\215\10\271\302\241\11\355\305\243\7\372\312\254\24\365"
+  "\324\270\40\371\333\300'\373\340\303*\377\333\300(\373\325\270\40\371"
+  "\313\255\25\365\306\243\10\372\300\237\11\360\247\211\10\303fV\4}\16"
+  "\12\7K\4\4\4B\4\4\4""9\0\0\0/\0\0\0&\0\0\0\36\0\0\0\26\0\0\0\17\0\0\0"
+  "\12\0\0\0\6\0\0\0\3\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\1\0\0\0\2\0\0\0"
+  "\3\0\0\0\6\0\0\0\11\0\0\0\16\0\0\0\23\0\0\0\31\0\0\0\37\0\0\0&\6\6\6"
+  "-\5\5\5""3\4\4\4:=3\6Pq]\4s\210p\4\217\221w\3\235\222x\3\241\217v\3\240"
+  "\204m\3\223lY\4{90\6Z\4\4\4E\4\4\4@\4\4\4;\5\5\5""5\0\0\0-\0\0\0&\0\0"
+  "\0\40\0\0\0\32\0\0\0\24\0\0\0\16\0\0\0\12\0\0\0\6\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\1\0\0\0\2\0\0\0\3\0\0\0\5\0\0"
+  "\0\10\0\0\0\13\0\0\0\17\0\0\0\23\0\0\0\27\0\0\0\33\0\0\0\37\0\0\0$\0"
+  "\0\0'\6\6\6,\5\5\5/\5\5\5""1\5\5\5""3\5\5\5""3\5\5\5""3\5\5\5""1\0\0"
+  "\0.\0\0\0+\0\0\0(\0\0\0$\0\0\0\40\0\0\0\34\0\0\0\27\0\0\0\23\0\0\0\17"
+  "\0\0\0\13\0\0\0\10\0\0\0\6\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\1\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\6\0"
+  "\0\0\10\0\0\0\12\0\0\0\14\0\0\0\17\0\0\0\21\0\0\0\24\0\0\0\26\0\0\0\30"
+  "\0\0\0\32\0\0\0\33\0\0\0\34\0\0\0\34\0\0\0\34\0\0\0\33\0\0\0\32\0\0\0"
+  "\30\0\0\0\26\0\0\0\24\0\0\0\21\0\0\0\17\0\0\0\14\0\0\0\12\0\0\0\10\0"
+  "\0\0\6\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\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0"
+  "\3\0\0\0\4\0\0\0\6\0\0\0\7\0\0\0\10\0\0\0\11\0\0\0\12\0\0\0\13\0\0\0"
+  "\15\0\0\0\15\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\15\0\0\0\15\0\0\0\14\0"
+  "\0\0\13\0\0\0\11\0\0\0\10\0\0\0\7\0\0\0\6\0\0\0\5\0\0\0\3\0\0\0\2\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\1\0\0\0\1\0\0\0\1\0\0\0\2"
+  "\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\4\0\0\0\4\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\5\0\0\0\5\0\0\0\4\0\0\0\4\0\0\0\3"
+  "\0\0\0\3\0\0\0\2\0\0\0\2\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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\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\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\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
+  "\0\0\0\0\0\0"};

Added: trunk/gui/dialog/icons.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ trunk/gui/dialog/icons.h	Wed Apr 11 13:26:39 2018	(r38056)
@@ -0,0 +1,80 @@
+/*
+ * This file is part of MPlayer.
+ *
+ * MPlayer is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * MPlayer is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with MPlayer; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+/* LC_ALL=C */
+/* echo "extern const guint8 ${PNG%.png}_png[];" */
+
+#ifndef MPLAYER_GUI_ICONS_H
+#define MPLAYER_GUI_ICONS_H
+
+#include <glib.h>
+
+extern const guint8 about_png[];
+extern const guint8 aspect_png[];
+extern const guint8 aspect_16_9_png[];
+extern const guint8 aspect_2_35_1_png[];
+extern const guint8 aspect_4_3_png[];
+extern const guint8 aspect_original_png[];
+extern const guint8 audio_dolby_png[];
+extern const guint8 audio_track_png[];
+extern const guint8 audio_track_load_png[];
+extern const guint8 blank_png[];
+extern const guint8 blank_1px_png[];
+extern const guint8 cd_png[];
+extern const guint8 cd_play_png[];
+extern const guint8 chapter_png[];
+extern const guint8 dir_up_png[];
+extern const guint8 dvd_png[];
+extern const guint8 dvd_play_png[];
+extern const guint8 equalizer_png[];
+extern const guint8 error_png[];
+extern const guint8 exit_png[];
+extern const guint8 file_png[];
+extern const guint8 image_png[];
+extern const guint8 information_png[];
+extern const guint8 open_png[];
+extern const guint8 play_png[];
+extern const guint8 play_next_png[];
+extern const guint8 play_pause_png[];
+extern const guint8 play_previous_png[];
+extern const guint8 play_stop_png[];
+extern const guint8 playlist_png[];
+extern const guint8 preferences_png[];
+extern const guint8 rotate_png[];
+extern const guint8 rotate_0_png[];
+extern const guint8 rotate_180_png[];
+extern const guint8 rotate_90ccw_png[];
+extern const guint8 rotate_90cw_png[];
+extern const guint8 size_double_png[];
+extern const guint8 size_full_png[];
+extern const guint8 size_half_png[];
+extern const guint8 size_normal_png[];
+extern const guint8 skin_png[];
+extern const guint8 subtitle_drop_png[];
+extern const guint8 subtitle_load_png[];
+extern const guint8 subtitle_track_png[];
+extern const guint8 title_png[];
+extern const guint8 tv_png[];
+extern const guint8 url_png[];
+extern const guint8 vcd_png[];
+extern const guint8 vcd_play_png[];
+extern const guint8 video_track_png[];
+extern const guint8 volume_mute_png[];
+extern const guint8 warning_png[];
+
+#endif /* MPLAYER_GUI_ICONS_H */

Modified: trunk/gui/dialog/menu.c
==============================================================================
--- trunk/gui/dialog/menu.c	Thu Apr  5 22:30:09 2018	(r38055)
+++ trunk/gui/dialog/menu.c	Wed Apr 11 13:26:39 2018	(r38056)
@@ -48,64 +48,7 @@
 #include "libmpdemux/stheader.h"
 #include "libavutil/avstring.h"
 
-#include "pixmaps/about.xpm"
-#include "pixmaps/audio_track.xpm"
-#include "pixmaps/video_track.xpm"
-#include "pixmaps/size_half.xpm"
-#include "pixmaps/size_normal.xpm"
-#include "pixmaps/size_double.xpm"
-#include "pixmaps/size_full.xpm"
-#include "pixmaps/exit.xpm"
-#include "pixmaps/preferences.xpm"
-#include "pixmaps/equalizer.xpm"
-#include "pixmaps/playlist.xpm"
-#include "pixmaps/skin.xpm"
-#include "pixmaps/volume_mute.xpm"
-#include "pixmaps/open.xpm"
-#include "pixmaps/play.xpm"
-#include "pixmaps/play_stop.xpm"
-#include "pixmaps/play_pause.xpm"
-#include "pixmaps/play_previous.xpm"
-#include "pixmaps/play_next.xpm"
-#include "pixmaps/aspect.xpm"
-#include "pixmaps/aspect_original.xpm"
-#include "pixmaps/aspect_16_9.xpm"
-#include "pixmaps/aspect_2_35_1.xpm"
-#include "pixmaps/aspect_4_3.xpm"
-#include "pixmaps/file.xpm"
-#include "pixmaps/url.xpm"
-#include "pixmaps/subtitle_load.xpm"
-#include "pixmaps/subtitle_drop.xpm"
-#include "pixmaps/blank.xpm"
-#include "pixmaps/audio_track_load.xpm"
-#include "pixmaps/title.xpm"
-#include "pixmaps/subtitle_track.xpm"
-#ifdef CONFIG_CDDA
-#include "pixmaps/cd.xpm"
-#include "pixmaps/cd_play.xpm"
-#endif
-#ifdef CONFIG_VCD
-#include "pixmaps/vcd.xpm"
-#include "pixmaps/vcd_play.xpm"
-#endif
-#ifdef CONFIG_DVDREAD
-#include "pixmaps/dvd.xpm"
-#include "pixmaps/dvd_play.xpm"
-#include "pixmaps/chapter.xpm"
-#include "pixmaps/audio_dolby.xpm"
-#endif
-#ifdef CONFIG_TV
-#include "pixmaps/tv.xpm"
-#endif
-#if defined(CONFIG_LIBCDIO) || defined(CONFIG_DVDREAD)
-#include "pixmaps/image.xpm"
-#endif
-#include "pixmaps/blank_1px.xpm"
-#include "pixmaps/rotate.xpm"
-#include "pixmaps/rotate_0.xpm"
-#include "pixmaps/rotate_180.xpm"
-#include "pixmaps/rotate_90ccw.xpm"
-#include "pixmaps/rotate_90cw.xpm"
+#include "icons.h"
 
 int gtkPopupMenu;
 int gtkPopupMenuParam;
@@ -117,20 +60,17 @@ static void ActivateMenuItem( int Item )
  uiEvent( Item & 0x0000ffff,Item >> 16 );
 }
 
-static GtkWidget * AddMenuCheckItem(GtkWidget *window1, const char * immagine_xpm, GtkWidget* Menu,const char* label, gboolean state, int Number)
+static GtkWidget * AddMenuCheckItem( GtkWidget *Menu, const guint8 *icon, const char *label, gboolean state, int Number )
 {
  GtkWidget * Label = NULL;
- GtkWidget * Pixmap = NULL;
+ GtkWidget * Image;
  GtkWidget * hbox = NULL;
  GtkWidget * Item = NULL;
+ GdkPixbuf * Pixbuf;
 
- GdkPixmap *PixmapIcon = NULL;
- GdkColor transparent;
- GdkBitmap *MaskIcon = NULL;
-
- PixmapIcon = gdk_pixmap_create_from_xpm_d (window1->window, &MaskIcon, &transparent,(gchar **)immagine_xpm );
- Pixmap = gtk_pixmap_new (PixmapIcon, MaskIcon);
- gdk_pixmap_unref (PixmapIcon);
+ Pixbuf = gdk_pixbuf_new_from_inline(-1, icon, FALSE, NULL);
+ Image = gtk_image_new_from_pixbuf(Pixbuf);
+ g_object_unref(Pixbuf);
 
  hbox = gtk_hbox_new (FALSE, 8);
 
@@ -143,7 +83,7 @@ static GtkWidget * AddMenuCheckItem(GtkW
  Item=gtk_check_menu_item_new();
  Label = gtk_label_new (label);
 
- gtk_box_pack_start (GTK_BOX (hbox), Pixmap, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), Image, FALSE, FALSE, 0);
  gtk_box_pack_start (GTK_BOX (hbox), Label, FALSE, FALSE, 0);
  gtk_container_add (GTK_CONTAINER (Item), hbox);
 
@@ -158,25 +98,23 @@ static GtkWidget * AddMenuCheckItem(GtkW
  return Item;
 }
 
-static GtkWidget * AddMenuItem( GtkWidget *window1, const char * immagine_xpm,  GtkWidget * SubMenu,const char * label,int Number )
+static GtkWidget * AddMenuItem( GtkWidget *SubMenu, const guint8 *icon, const char *label, int Number )
 {
  GtkWidget * Label = NULL;
- GtkWidget * Pixmap = NULL;
+ GtkWidget * Image;
  GtkWidget * hbox = NULL;
  GtkWidget * Item = NULL;
- GdkPixmap * PixmapIcon = NULL;
- GdkColor transparent;
- GdkBitmap * MaskIcon = NULL;
+ GdkPixbuf * Pixbuf;
 
- PixmapIcon = gdk_pixmap_create_from_xpm_d (window1->window, &MaskIcon, &transparent,(gchar **)immagine_xpm );
- Pixmap = gtk_pixmap_new (PixmapIcon, MaskIcon);
- gdk_pixmap_unref (PixmapIcon);
+ Pixbuf = gdk_pixbuf_new_from_inline(-1, icon, FALSE, NULL);
+ Image = gtk_image_new_from_pixbuf(Pixbuf);
+ g_object_unref(Pixbuf);
 
  Item=gtk_menu_item_new();
  Label = gtk_label_new (label);
 
  hbox = gtk_hbox_new (FALSE, 8);
- gtk_box_pack_start (GTK_BOX (hbox), Pixmap, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), Image, FALSE, FALSE, 0);
  gtk_box_pack_start (GTK_BOX (hbox), Label, FALSE, FALSE, 0);
  gtk_container_add (GTK_CONTAINER (Item), hbox);
 
@@ -190,27 +128,25 @@ static GtkWidget * AddMenuItem( GtkWidge
  return Item;
 }
 
-static GtkWidget * AddSubMenu( GtkWidget *window1, const char * immagine_xpm, GtkWidget * Menu,const char * label )
+static GtkWidget * AddSubMenu( GtkWidget *Menu, const guint8 *icon, const char *label )
 {
  GtkWidget * Label = NULL;
- GtkWidget * Pixmap = NULL;
+ GtkWidget * Image;
  GtkWidget * hbox = NULL;
  GtkWidget * Item = NULL;
  GtkWidget * SubItem = NULL;
- GdkPixmap * PixmapIcon = NULL;
- GdkColor transparent;
- GdkBitmap * MaskIcon = NULL;
+ GdkPixbuf * Pixbuf;
 
- PixmapIcon = gdk_pixmap_create_from_xpm_d (window1->window, &MaskIcon, &transparent,(gchar **)immagine_xpm);
- Pixmap = gtk_pixmap_new (PixmapIcon, MaskIcon);
- gdk_pixmap_unref (PixmapIcon);
+ Pixbuf = gdk_pixbuf_new_from_inline(-1, icon, FALSE, NULL);
+ Image = gtk_image_new_from_pixbuf(Pixbuf);
+ g_object_unref(Pixbuf);
 
  SubItem=gtk_menu_item_new();
  Item=gtk_menu_new();
  Label = gtk_label_new (label);
 
  hbox = gtk_hbox_new (FALSE, 8);
- gtk_box_pack_start (GTK_BOX (hbox), Pixmap, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), Image, FALSE, FALSE, 0);
  gtk_box_pack_start (GTK_BOX (hbox), Label, FALSE, FALSE, 0);
  gtk_container_add (GTK_CONTAINER (SubItem), hbox);
 
@@ -414,15 +350,15 @@ static const Languages_t Languages[] =
 };
 
 #ifdef CONFIG_DVDREAD
-static const char * const *ChannelTypes[] =
+static const guint8 *ChannelTypes[] =
 {
-  audio_dolby_xpm,   // Dolby Digital
-  blank_xpm,
-  blank_xpm,         // Mpeg-1
-  blank_xpm,         // Mpeg-2
-  blank_xpm,         // LPCM
-  blank_xpm,
-  blank_xpm          // Digital Theatre System
+  audio_dolby_png,   // Dolby Digital
+  blank_png,
+  blank_png,         // Mpeg-1
+  blank_png,         // Mpeg-2
+  blank_png,         // LPCM
+  blank_png,
+  blank_png          // Digital Theatre System
 };
 static char * ChannelNumbers[] =
   { "\b1.0", "\b2.0", "\b2.1", "\b3.1", "\b5.0", "\b5.1" };
@@ -475,7 +411,6 @@ GtkWidget * CDTitleMenu;
 
 GtkWidget * CreatePopUpMenu( int wType )
 {
- GtkWidget * window1;
  GtkWidget * Menu = NULL;
  GtkWidget * SubMenu = NULL;
  GtkWidget * MenuItem = NULL;
@@ -487,117 +422,115 @@ GtkWidget * CreatePopUpMenu( int wType )
 
  Menu=gtk_menu_new();
  gtk_widget_realize (Menu);
- window1 = gtk_widget_get_toplevel(Menu);
-
 
-  AddMenuItem( window1, (const char*)about_xpm, Menu,MSGTR_GUI_AboutMPlayer"     ", evAbout );
+  AddMenuItem( Menu, about_png, MSGTR_GUI_AboutMPlayer"     ", evAbout );
   AddSeparator( Menu );
-   SubMenu=AddSubMenu( window1, (const char*)open_xpm, Menu,MSGTR_GUI_Open );
-    AddMenuItem( window1, (const char*)file_xpm, SubMenu,MSGTR_GUI_File"...    ", evLoadPlay );
+   SubMenu=AddSubMenu( Menu, open_png, MSGTR_GUI_Open );
+    AddMenuItem( SubMenu, file_png, MSGTR_GUI_File"...    ", evLoadPlay );
 #ifdef CONFIG_CDDA
-    AddMenuItem( window1, (const char*)cd_play_xpm, SubMenu,MSGTR_GUI_CD, evPlayCD );
-    CDSubMenu=AddSubMenu( window1, (const char*)cd_xpm, Menu,MSGTR_GUI_CD );
-    AddMenuItem( window1, (const char*)cd_play_xpm, CDSubMenu,MSGTR_GUI_Play,evPlayCD );
+    AddMenuItem( SubMenu, cd_play_png, MSGTR_GUI_CD, evPlayCD );
+    CDSubMenu=AddSubMenu( Menu, cd_png, MSGTR_GUI_CD );
+    AddMenuItem( CDSubMenu, cd_play_png, MSGTR_GUI_Play, evPlayCD );
     AddSeparator( CDSubMenu );
-    CDTitleMenu=AddSubMenu( window1, (const char*)title_xpm, CDSubMenu,MSGTR_GUI_Titles );
+    CDTitleMenu=AddSubMenu( CDSubMenu, title_png, MSGTR_GUI_Titles );
     if ( guiInfo.Tracks && ( guiInfo.StreamType == STREAMTYPE_CDDA ) )
      {
       char tmp[32]; int i;
       for ( i=1;i <= guiInfo.Tracks;i++ )
        {
         snprintf( tmp,32,MSGTR_GUI_TitleNN,i );
-        AddMenuCheckItem(window1, (const char*)blank_1px_xpm, CDTitleMenu,tmp, guiInfo.Track == i, ( i << 16 ) + ivSetCDTrack );
+        AddMenuCheckItem( CDTitleMenu, blank_1px_png, tmp, guiInfo.Track == i, ( i << 16 ) + ivSetCDTrack );
        }
      }
      else
       {
-       MenuItem=AddMenuItem( window1, (const char*)blank_1px_xpm, CDTitleMenu,MSGTR_GUI__none_,evNone );
+       MenuItem=AddMenuItem( CDTitleMenu, blank_1px_png, MSGTR_GUI__none_, evNone );
        gtk_widget_set_sensitive( MenuItem,FALSE );
       }
 #endif
 #ifdef CONFIG_VCD
-    AddMenuItem( window1, (const char*)vcd_play_xpm, SubMenu,MSGTR_GUI_VCD, evPlayVCD );
-    VCDSubMenu=AddSubMenu( window1, (const char*)vcd_xpm, Menu,MSGTR_GUI_VCD );
-    AddMenuItem( window1, (const char*)vcd_play_xpm, VCDSubMenu,MSGTR_GUI_Play,evPlayVCD );
+    AddMenuItem( SubMenu, vcd_play_png, MSGTR_GUI_VCD, evPlayVCD );
+    VCDSubMenu=AddSubMenu( Menu, vcd_png, MSGTR_GUI_VCD );
+    AddMenuItem( VCDSubMenu, vcd_play_png, MSGTR_GUI_Play, evPlayVCD );
     AddSeparator( VCDSubMenu );
-    VCDTitleMenu=AddSubMenu( window1, (const char*)title_xpm, VCDSubMenu,MSGTR_GUI_Titles );
+    VCDTitleMenu=AddSubMenu( VCDSubMenu, title_png, MSGTR_GUI_Titles );
     if ( guiInfo.Tracks && ( guiInfo.StreamType == STREAMTYPE_VCD ) )
      {
       char tmp[32]; int i;
       for ( i=1;i < guiInfo.Tracks;i++ )
        {
         snprintf( tmp,32,MSGTR_GUI_TitleNN,i );
-        AddMenuCheckItem(window1, (const char*)blank_1px_xpm, VCDTitleMenu,tmp, guiInfo.Track == i + 1, ( ( i + 1 ) << 16 ) + ivSetVCDTrack );
+        AddMenuCheckItem( VCDTitleMenu, blank_1px_png, tmp, guiInfo.Track == i + 1, ( ( i + 1 ) << 16 ) + ivSetVCDTrack );
        }
      }
      else
       {
-       MenuItem=AddMenuItem( window1, (const char*)blank_1px_xpm, VCDTitleMenu,MSGTR_GUI__none_,evNone );
+       MenuItem=AddMenuItem( VCDTitleMenu, blank_1px_png, MSGTR_GUI__none_, evNone );
        gtk_widget_set_sensitive( MenuItem,FALSE );
       }
 #endif
 #ifdef CONFIG_DVDREAD
-    AddMenuItem( window1, (const char*)dvd_play_xpm, SubMenu,MSGTR_GUI_DVD, evPlayDVD );
-    DVDSubMenu=AddSubMenu( window1, (const char*)dvd_xpm, Menu,MSGTR_GUI_DVD );
-    AddMenuItem( window1, (const char*)dvd_play_xpm, DVDSubMenu,MSGTR_GUI_Play"    ", evPlayDVD );
+    AddMenuItem( SubMenu, dvd_play_png, MSGTR_GUI_DVD, evPlayDVD );
+    DVDSubMenu=AddSubMenu( Menu, dvd_png, MSGTR_GUI_DVD );
+    AddMenuItem( DVDSubMenu, dvd_play_png, MSGTR_GUI_Play"    ", evPlayDVD );
     AddSeparator( DVDSubMenu );
-    DVDTitleMenu=AddSubMenu( window1, (const char*)title_xpm, DVDSubMenu,MSGTR_GUI_Titles );
+    DVDTitleMenu=AddSubMenu( DVDSubMenu, title_png, MSGTR_GUI_Titles );
      if ( guiInfo.Tracks && ( guiInfo.StreamType == STREAMTYPE_DVD ) )
       {
        char tmp[32]; int i;
        for ( i=1 ; i<= guiInfo.Tracks;i++ )
         {
          snprintf( tmp,32,MSGTR_GUI_TitleNN,i);
-         AddMenuCheckItem( window1, (const char*)blank_1px_xpm, DVDTitleMenu,tmp,
+         AddMenuCheckItem( DVDTitleMenu, blank_1px_png, tmp,
          guiInfo.Track == i,
          (i << 16) + ivSetDVDTitle );
         }
       }
       else
        {
-        MenuItem=AddMenuItem( window1, (const char*)blank_1px_xpm, DVDTitleMenu,MSGTR_GUI__none_,evNone );
+        MenuItem=AddMenuItem( DVDTitleMenu, blank_1px_png, MSGTR_GUI__none_, evNone );
         gtk_widget_set_sensitive( MenuItem,FALSE );
        }
-    DVDChapterMenu=AddSubMenu( window1, (const char*)chapter_xpm, DVDSubMenu,MSGTR_GUI_Chapters );
+    DVDChapterMenu=AddSubMenu( DVDSubMenu, chapter_png, MSGTR_GUI_Chapters );
      if ( guiInfo.Chapters && ( guiInfo.StreamType == STREAMTYPE_DVD ) )
       {
        char tmp[32]; int i;
        for ( i=1;i <= guiInfo.Chapters;i++ )
         {
          snprintf( tmp,32,MSGTR_GUI_ChapterNN,i );
-         AddMenuCheckItem( window1, (const char*)blank_1px_xpm, DVDChapterMenu,tmp,guiInfo.Chapter == i,
+         AddMenuCheckItem( DVDChapterMenu, blank_1px_png, tmp, guiInfo.Chapter == i,
          ( i << 16 ) + ivSetDVDChapter );
         }
       }
       else
        {
-        MenuItem=AddMenuItem( window1, (const char*)blank_1px_xpm, DVDChapterMenu,MSGTR_GUI__none_,evNone );
+        MenuItem=AddMenuItem( DVDChapterMenu, blank_1px_png, MSGTR_GUI__none_, evNone );
         gtk_widget_set_sensitive( MenuItem,FALSE );
        }
 #endif
 #if defined(CONFIG_LIBCDIO) || defined(CONFIG_DVDREAD)
-    AddMenuItem( window1, (const char*)image_xpm, SubMenu,MSGTR_GUI_Image"...    ", evPlayImage );
+    AddMenuItem( SubMenu, image_png, MSGTR_GUI_Image"...    ", evPlayImage );
 #endif
-    AddMenuItem( window1, (const char*)url_xpm, SubMenu,MSGTR_GUI_URL"...", evLoadURL );
+    AddMenuItem( SubMenu, url_png, MSGTR_GUI_URL"...", evLoadURL );
 #ifdef CONFIG_TV
-    AddMenuItem( window1, (const char*)tv_xpm, SubMenu,MSGTR_GUI_TV, evPlayTV );
+    AddMenuItem( SubMenu, tv_png, MSGTR_GUI_TV, evPlayTV );
 #endif
     AddSeparator( SubMenu );
-    AddMenuItem( window1, (const char*)audio_track_load_xpm, SubMenu,MSGTR_GUI_AudioTrack"...", evLoadAudioFile );
-    AddMenuItem( window1, (const char*)subtitle_load_xpm, SubMenu,MSGTR_GUI_Subtitle"...   ", evLoadSubtitle );
-   SubMenu=AddSubMenu(window1, (const char*)play_xpm, Menu,MSGTR_GUI_Playback );
-    D = AddMenuItem( window1, (const char*)play_xpm, SubMenu,MSGTR_GUI_Play"        ", evPlay );
-    F = AddMenuItem( window1, (const char*)play_pause_xpm, SubMenu,MSGTR_GUI_Pause, evPause );
-    H = AddMenuItem( window1, (const char*)play_stop_xpm, SubMenu,MSGTR_GUI_Stop, evStop );
-    N = AddMenuItem( window1, (const char*)play_next_xpm, SubMenu,MSGTR_GUI_Next, evNext );
-    I = AddMenuItem( window1, (const char*)play_previous_xpm, SubMenu,MSGTR_GUI_Previous, evPrev );
+    AddMenuItem( SubMenu, audio_track_load_png, MSGTR_GUI_AudioTrack"...", evLoadAudioFile );
+    AddMenuItem( SubMenu, subtitle_load_png, MSGTR_GUI_Subtitle"...   ", evLoadSubtitle );
+   SubMenu=AddSubMenu( Menu, play_png, MSGTR_GUI_Playback );
+    D = AddMenuItem( SubMenu, play_png, MSGTR_GUI_Play"        ", evPlay );
+    F = AddMenuItem( SubMenu, play_pause_png, MSGTR_GUI_Pause, evPause );
+    H = AddMenuItem( SubMenu, play_stop_png, MSGTR_GUI_Stop, evStop );
+    N = AddMenuItem( SubMenu, play_next_png, MSGTR_GUI_Next, evNext );
+    I = AddMenuItem( SubMenu, play_previous_png, MSGTR_GUI_Previous, evPrev );
     AddSeparator( SubMenu );
-    I2 = AddMenuItem( window1, (const char*)blank_xpm, SubMenu,MSGTR_GUI_SeekForward10sec, evForward10sec );
-    I3 = AddMenuItem( window1, (const char*)blank_xpm, SubMenu,MSGTR_GUI_SeekForward1min, evForward1min );
-    I4 = AddMenuItem( window1, (const char*)blank_xpm, SubMenu,MSGTR_GUI_SeekForward10min, evForward10min );
-    I5 = AddMenuItem( window1, (const char*)blank_xpm, SubMenu,MSGTR_GUI_SeekBackward10sec, evBackward10sec );
-    I6 = AddMenuItem( window1, (const char*)blank_xpm, SubMenu,MSGTR_GUI_SeekBackward1min, evBackward1min );
-    I7 = AddMenuItem( window1, (const char*)blank_xpm, SubMenu,MSGTR_GUI_SeekBackward10min, evBackward10min );
+    I2 = AddMenuItem( SubMenu, blank_png, MSGTR_GUI_SeekForward10sec, evForward10sec );
+    I3 = AddMenuItem( SubMenu, blank_png, MSGTR_GUI_SeekForward1min, evForward1min );
+    I4 = AddMenuItem( SubMenu, blank_png, MSGTR_GUI_SeekForward10min, evForward10min );
+    I5 = AddMenuItem( SubMenu, blank_png, MSGTR_GUI_SeekBackward10sec, evBackward10sec );
+    I6 = AddMenuItem( SubMenu, blank_png, MSGTR_GUI_SeekBackward1min, evBackward1min );
+    I7 = AddMenuItem( SubMenu, blank_png, MSGTR_GUI_SeekBackward10min, evBackward10min );
 
     if ( !guiInfo.Playing )
      {
@@ -614,7 +547,7 @@ GtkWidget * CreatePopUpMenu( int wType )
       gtk_widget_set_sensitive( I7, FALSE );
      }
 
-    AddMenuItem( window1, (const char*)playlist_xpm, Menu,MSGTR_GUI_Playlist, evPlaylist );
+    AddMenuItem( Menu, playlist_png, MSGTR_GUI_Playlist, evPlaylist );
 
   if ( guiInfo.VideoWindow )
    {
@@ -663,11 +596,11 @@ GtkWidget * CreatePopUpMenu( int wType )
     snprintf(tmp, sizeof(tmp), "%s%s%s%s%s", MSGTR_GUI_Original, aspect ? " (" : "", aspect && ca ? "≈" : "", aspect ? aspect : "", aspect ? ")" : "");
 
     AddSeparator( Menu );
-    AspectMenu=AddSubMenu( window1, (const char*)aspect_xpm, Menu,MSGTR_GUI_AspectRatio );
-    H=AddMenuCheckItem( window1, (const char*)aspect_original_xpm, AspectMenu,tmp, a11, evSetAspect + ( 1 << 16 ) );
-    D=AddMenuCheckItem( window1, (const char*)aspect_4_3_xpm, AspectMenu,"4:3", a43, evSetAspect + ( 3 << 16 ) );
-    N=AddMenuCheckItem( window1, (const char*)aspect_16_9_xpm, AspectMenu,"16:9", a169, evSetAspect + ( 2 << 16 ) );
-    F=AddMenuCheckItem( window1, (const char*)aspect_2_35_1_xpm, AspectMenu,MSGTR_GUI_235To1, a235, evSetAspect + ( 4 << 16 ) );
+    AspectMenu=AddSubMenu( Menu, aspect_png, MSGTR_GUI_AspectRatio );
+    H=AddMenuCheckItem( AspectMenu, aspect_original_png, tmp, a11, evSetAspect + ( 1 << 16 ) );
+    D=AddMenuCheckItem( AspectMenu, aspect_4_3_png, "4:3", a43, evSetAspect + ( 3 << 16 ) );
+    N=AddMenuCheckItem( AspectMenu, aspect_16_9_png, "16:9", a169, evSetAspect + ( 2 << 16 ) );
+    F=AddMenuCheckItem( AspectMenu, aspect_2_35_1_png, MSGTR_GUI_235To1, a235, evSetAspect + ( 4 << 16 ) );
 
     if ( !guiInfo.Playing )
      {
@@ -680,11 +613,11 @@ GtkWidget * CreatePopUpMenu( int wType )
 
   if ( guiInfo.VideoWindow )
    {
-    RotationMenu=AddSubMenu( window1, (const char*)rotate_xpm, Menu,MSGTR_GUI_Rotation );
-    N=AddMenuCheckItem( window1, (const char*)rotate_0_xpm, RotationMenu,MSGTR_GUI__none_, guiInfo.Rotation == -1, evSetRotation );
-    D=AddMenuCheckItem( window1, (const char*)rotate_90cw_xpm, RotationMenu,MSGTR_GUI_Rotation90CW, guiInfo.Rotation == 1, evSetRotation + ( 90 << 16 ) );
-    F=AddMenuCheckItem( window1, (const char*)rotate_90ccw_xpm, RotationMenu,MSGTR_GUI_Rotation90CCW, guiInfo.Rotation == 2, evSetRotation + ( -90 << 16 ) );
-    H=AddMenuCheckItem( window1, (const char*)rotate_180_xpm, RotationMenu,MSGTR_GUI_Rotation180, guiInfo.Rotation == 8, evSetRotation + ( 180 << 16 ) );
+    RotationMenu=AddSubMenu( Menu, rotate_png, MSGTR_GUI_Rotation );
+    N=AddMenuCheckItem( RotationMenu, rotate_0_png, MSGTR_GUI__none_, guiInfo.Rotation == -1, evSetRotation );
+    D=AddMenuCheckItem( RotationMenu, rotate_90cw_png, MSGTR_GUI_Rotation90CW, guiInfo.Rotation == 1, evSetRotation + ( 90 << 16 ) );
+    F=AddMenuCheckItem( RotationMenu, rotate_90ccw_png, MSGTR_GUI_Rotation90CCW, guiInfo.Rotation == 2, evSetRotation + ( -90 << 16 ) );
+    H=AddMenuCheckItem( RotationMenu, rotate_180_png, MSGTR_GUI_Rotation180, guiInfo.Rotation == 8, evSetRotation + ( 180 << 16 ) );
 
     if ( !guiInfo.Playing )
      {
@@ -707,10 +640,10 @@ GtkWidget * CreatePopUpMenu( int wType )
                 ( guiApp.videoWindow.Height == guiInfo.VideoHeight / 2 ) ) b_half=True;
       else b1=( guiApp.videoWindow.Width == guiInfo.VideoWidth && guiApp.videoWindow.Height == guiInfo.VideoHeight );
      } else b1=!guiApp.videoWindow.isFullScreen;
-    F=AddMenuCheckItem( window1, (const char*)size_full_xpm, Menu,MSGTR_GUI_SizeFullscreen,guiApp.videoWindow.isFullScreen,evFullScreen + ( True << 16 ) );
-    D=AddMenuCheckItem( window1, (const char*)size_double_xpm, Menu,MSGTR_GUI_SizeDouble,b2,evDoubleSize );
-    N=AddMenuCheckItem( window1, (const char*)size_normal_xpm, Menu,MSGTR_GUI_SizeNormal"      ",b1,evNormalSize );
-    H=AddMenuCheckItem( window1, (const char*)size_half_xpm, Menu,MSGTR_GUI_SizeHalf,b_half,evHalfSize );
+    F=AddMenuCheckItem( Menu, size_full_png, MSGTR_GUI_SizeFullscreen, guiApp.videoWindow.isFullScreen, evFullScreen + ( True << 16 ) );
+    D=AddMenuCheckItem( Menu, size_double_png, MSGTR_GUI_SizeDouble, b2, evDoubleSize );
+    N=AddMenuCheckItem( Menu, size_normal_png, MSGTR_GUI_SizeNormal"      ", b1, evNormalSize );
+    H=AddMenuCheckItem( Menu, size_half_png, MSGTR_GUI_SizeHalf, b_half, evHalfSize );
     if ( !guiInfo.Playing )
      {
       gtk_widget_set_sensitive( H,FALSE );
@@ -729,7 +662,7 @@ GtkWidget * CreatePopUpMenu( int wType )
 
     if ( c > 1 )
      {
-      SubMenu=AddSubMenu( window1, (const char*)video_track_xpm, Menu,MSGTR_GUI_VideoTracks );
+      SubMenu=AddSubMenu( Menu, video_track_png, MSGTR_GUI_VideoTracks );
       for ( i=0;i < MAX_V_STREAMS;i++ )
        if ( demuxer->v_streams[i] )
         {
@@ -737,15 +670,15 @@ GtkWidget * CreatePopUpMenu( int wType )
          char tmp[32];
          int selected_id = (video_id == vid || (video_id == -1 && vid == demuxer_default_video_track(demuxer)));
          snprintf( tmp,32,MSGTR_GUI_TrackN,vid );
-         AddMenuCheckItem( window1, (const char*)blank_1px_xpm, SubMenu,tmp,selected_id,( vid << 16 ) + ivSetVideo );
+         AddMenuCheckItem( SubMenu, blank_1px_png, tmp, selected_id, ( vid << 16 ) + ivSetVideo );
         }
      }
    }
 
   AddSeparator( Menu );
-  VolumeMenu = AddSubMenu( window1, (const char *) blank_xpm, Menu, MSGTR_Volume );
-  H = AddMenuItem( window1, (const char *) blank_xpm, VolumeMenu, MSGTR_GUI_Increase, evIncVolume );
-  D = AddMenuItem( window1, (const char *) blank_xpm, VolumeMenu, MSGTR_GUI_Decrease, evDecVolume );
+  VolumeMenu = AddSubMenu( Menu, blank_png, MSGTR_Volume );
+  H = AddMenuItem( VolumeMenu, blank_png, MSGTR_GUI_Increase, evIncVolume );
+  D = AddMenuItem( VolumeMenu, blank_png, MSGTR_GUI_Decrease, evDecVolume );
 
   if ( !guiInfo.AudioChannels )
    {
@@ -753,7 +686,7 @@ GtkWidget * CreatePopUpMenu( int wType )
     gtk_widget_set_sensitive( D, FALSE );
    }
 
-  MenuItem=AddMenuCheckItem( window1, (const char*)volume_mute_xpm, Menu,MSGTR_GUI_Mute,mixer->muted,evMute );
+  MenuItem=AddMenuCheckItem( Menu, volume_mute_png, MSGTR_GUI_Mute, mixer->muted, evMute );
   if ( !guiInfo.AudioChannels ) gtk_widget_set_sensitive( MenuItem,FALSE );
 
   if ( guiInfo.Playing && demuxer && guiInfo.StreamType != STREAMTYPE_DVD )
@@ -765,7 +698,7 @@ GtkWidget * CreatePopUpMenu( int wType )
 
     if ( c > 1 )
      {
-      SubMenu=AddSubMenu( window1, (const char*)audio_track_xpm, Menu,MSGTR_GUI_AudioTracks );
+      SubMenu=AddSubMenu( Menu, audio_track_png, MSGTR_GUI_AudioTracks );
       for ( i=0;i < MAX_A_STREAMS;i++ )
        if ( demuxer->a_streams[i] )
         {
@@ -774,7 +707,7 @@ GtkWidget * CreatePopUpMenu( int wType )
          char lng[32], tmp[64];
          if ( demuxer_audio_lang( demuxer, i, lng, sizeof(lng) ) == 0 ) snprintf( tmp,sizeof(tmp),MSGTR_GUI_TrackN" - %s",aid,GetLanguage( lng, GET_LANG_CHR ) );
          else snprintf( tmp,sizeof(tmp),MSGTR_GUI_TrackN,aid );
-         AddMenuCheckItem( window1, (const char*)blank_1px_xpm, SubMenu,tmp,selected_id,( aid << 16 ) + ivSetAudio );
+         AddMenuCheckItem( SubMenu, blank_1px_png, tmp, selected_id, ( aid << 16 ) + ivSetAudio );
         }
      }
    }
@@ -784,14 +717,14 @@ GtkWidget * CreatePopUpMenu( int wType )
       {
        char tmp[64]; int i;
 
-       DVDAudioLanguageMenu=AddSubMenu( window1, (const char*)audio_track_xpm, Menu,MSGTR_GUI_AudioTracks );
+       DVDAudioLanguageMenu=AddSubMenu( Menu, audio_track_png, MSGTR_GUI_AudioTracks );
 
        for ( i=0;i < guiInfo.AudioStreams;i++ )
         {
          snprintf( tmp, sizeof(tmp), "%s - %s",
                    ChannelNumbers[ guiInfo.AudioStream[i].channels ],
                    GetLanguage( &guiInfo.AudioStream[i].language, GET_LANG_INT ));
-         AddMenuCheckItem( window1, (const char *) ChannelTypes[ guiInfo.AudioStream[i].type ], DVDAudioLanguageMenu, tmp,
+         AddMenuCheckItem( DVDAudioLanguageMenu, ChannelTypes[ guiInfo.AudioStream[i].type ], tmp,
                            demuxer->audio->id == guiInfo.AudioStream[i].id,
                            ( guiInfo.AudioStream[i].id << 16 ) + ivSetDVDAudio );
         }
@@ -801,13 +734,13 @@ GtkWidget * CreatePopUpMenu( int wType )
       {
        char tmp[64]; int i;
 
-       DVDSubtitleLanguageMenu=AddSubMenu( window1, (const char*)subtitle_track_xpm, Menu,MSGTR_GUI_Subtitles );
-       AddMenuCheckItem( window1, (const char*)blank_1px_xpm, DVDSubtitleLanguageMenu,MSGTR_GUI__none_, guiInfo.mpcontext->d_sub->id == -2, ( -2 << 16 ) + ivSetDVDSubtitle );
+       DVDSubtitleLanguageMenu=AddSubMenu( Menu, subtitle_track_png, MSGTR_GUI_Subtitles );
+       AddMenuCheckItem( DVDSubtitleLanguageMenu, blank_1px_png, MSGTR_GUI__none_, guiInfo.mpcontext->d_sub->id == -2, ( -2 << 16 ) + ivSetDVDSubtitle );
 
        for ( i=0;i < guiInfo.Subtitles;i++ )
         {
          snprintf(tmp, sizeof(tmp), MSGTR_GUI_TrackN" - %s", i, GetLanguage(&guiInfo.Subtitle[i].language, GET_LANG_INT));
-         AddMenuCheckItem( window1, (const char*)blank_1px_xpm, DVDSubtitleLanguageMenu,tmp,
+         AddMenuCheckItem( DVDSubtitleLanguageMenu, blank_1px_png, tmp,
                            guiInfo.mpcontext->d_sub->id == guiInfo.Subtitle[i].id,
                            ( guiInfo.Subtitle[i].id << 16 ) + ivSetDVDSubtitle );
         }
@@ -821,8 +754,8 @@ GtkWidget * CreatePopUpMenu( int wType )
   if ( subs && guiInfo.StreamType != STREAMTYPE_DVD )
    {
     int i, j, subs0 = guiInfo.mpcontext->sub_counts[SUB_SOURCE_SUBS], subs1 = guiInfo.mpcontext->sub_counts[SUB_SOURCE_VOBSUB];
-    SubMenu=AddSubMenu( window1, (const char*)subtitle_track_xpm, Menu, MSGTR_GUI_Subtitles );
-    AddMenuCheckItem( window1, (const char*)blank_1px_xpm, SubMenu, MSGTR_GUI__none_, sub_pos == -1, (-1 << 16) + ivSetSubtitle );
+    SubMenu=AddSubMenu( Menu, subtitle_track_png, MSGTR_GUI_Subtitles );
+    AddMenuCheckItem( SubMenu, blank_1px_png, MSGTR_GUI__none_, sub_pos == -1, (-1 << 16) + ivSetSubtitle );
     for ( i=0;i < subs;i++ )
      {
       int ret = -1;
@@ -866,20 +799,20 @@ GtkWidget * CreatePopUpMenu( int wType )
        }
       if ( ret == 0 ) snprintf( tmp, sizeof(tmp), MSGTR_GUI_TrackN" - %s", i, GetLanguage( lng, GET_LANG_CHR ) );
       else snprintf( tmp, sizeof(tmp), MSGTR_GUI_TrackN, i );
-      AddMenuCheckItem( window1,(const char*)blank_1px_xpm,SubMenu,tmp,sub_pos == i,( i << 16 ) + ivSetSubtitle );
+      AddMenuCheckItem( SubMenu, blank_1px_png, tmp, sub_pos == i, ( i << 16 ) + ivSetSubtitle );
      }
    }
 
-  if ( subdata ) AddMenuItem( window1, (const char*)subtitle_drop_xpm, Menu,MSGTR_GUI_DropSubtitle,evDropSubtitle );
+  if ( subdata ) AddMenuItem( Menu, subtitle_drop_png, MSGTR_GUI_DropSubtitle, evDropSubtitle );
 
   AddSeparator( Menu );
-  AddMenuItem( window1, (const char*)equalizer_xpm, Menu,MSGTR_GUI_Equalizer, evEqualizer );
-  AddMenuItem( window1, (const char*)skin_xpm, Menu,MSGTR_GUI_SkinBrowser, evSkinBrowser );
-  AddMenuItem( window1, (const char*)preferences_xpm, Menu,MSGTR_GUI_Preferences, evPreferences );
+  AddMenuItem( Menu, equalizer_png, MSGTR_GUI_Equalizer, evEqualizer );
+  AddMenuItem( Menu, skin_png, MSGTR_GUI_SkinBrowser, evSkinBrowser );
+  AddMenuItem( Menu, preferences_png, MSGTR_GUI_Preferences, evPreferences );
 
   AddSeparator( Menu );
-  if ( wType == wMain || wType == wVideo ) AddMenuItem( window1, (const char *) blank_xpm, Menu, MSGTR_GUI_Minimize, (wType << 16) + evIconify );
-  AddMenuItem( window1, (const char*)exit_xpm, Menu,MSGTR_GUI_Quit, evExit );
+  if ( wType == wMain || wType == wVideo ) AddMenuItem( Menu, blank_png, MSGTR_GUI_Minimize, (wType << 16) + evIconify );
+  AddMenuItem( Menu, exit_png, MSGTR_GUI_Quit, evExit );
 
  return Menu;
 }

Modified: trunk/gui/dialog/msgbox.c
==============================================================================
--- trunk/gui/dialog/msgbox.c	Thu Apr  5 22:30:09 2018	(r38055)
+++ trunk/gui/dialog/msgbox.c	Wed Apr 11 13:26:39 2018	(r38056)
@@ -22,19 +22,16 @@
 #include "gui/app/gui.h"
 #include "help_mp.h"
 
-#include "pixmaps/error.xpm"
-#include "pixmaps/warning.xpm"
-#include "pixmaps/information.xpm"
-
 #include "dialog.h"
+#include "icons.h"
 #include "msgbox.h"
 #include "tools.h"
 
 GtkWidget * gtkMessageBoxText;
 GtkWidget * MessageBox = NULL;
-GtkWidget * InformationPixmap;
-GtkWidget * WarningPixmap;
-GtkWidget * ErrorPixmap;
+GtkWidget * InformationImage;
+GtkWidget * WarningImage;
+GtkWidget * ErrorImage;
 
 static void on_Ok_released( GtkButton * button,gpointer user_data  )
 {
@@ -51,9 +48,7 @@ static GtkWidget * CreateMessageBox( voi
  GtkWidget * hbuttonbox1;
  GtkWidget * Ok;
  GtkAccelGroup * accel_group;
- GtkStyle * pixmapstyle;
- GdkPixmap * pixmapwid;
- GdkBitmap * mask;
+ GdkPixbuf * pixbuf;
 
  accel_group=gtk_accel_group_new();
 
@@ -71,23 +66,26 @@ static GtkWidget * CreateMessageBox( voi
  vbox1=gtkAddVBox( gtkAddDialogFrame( MessageBox ),0 );
  hbox1=gtkAddHBox( vbox1,1 );
 
- pixmapstyle=gtk_widget_get_style( MessageBox );
+ pixbuf = gdk_pixbuf_new_from_inline(-1, information_png, FALSE, NULL);
+ InformationImage = gtk_image_new_from_pixbuf(pixbuf);
+ g_object_unref(pixbuf);
 
- pixmapwid=gdk_pixmap_colormap_create_from_xpm_d( MessageBox->window,gdk_colormap_get_system(),&mask,&pixmapstyle->bg[GTK_STATE_NORMAL],(gchar ** )information_xpm );
- InformationPixmap=gtk_pixmap_new( pixmapwid,mask );
- pixmapwid=gdk_pixmap_colormap_create_from_xpm_d( MessageBox->window,gdk_colormap_get_system(),&mask,&pixmapstyle->bg[GTK_STATE_NORMAL],(gchar ** )warning_xpm );
- WarningPixmap=gtk_pixmap_new( pixmapwid,mask );
- pixmapwid=gdk_pixmap_colormap_create_from_xpm_d( MessageBox->window,gdk_colormap_get_system(),&mask,&pixmapstyle->bg[GTK_STATE_NORMAL],(gchar ** )error_xpm );
- ErrorPixmap=gtk_pixmap_new( pixmapwid,mask );
+ gtk_widget_hide( InformationImage );
+ gtk_box_pack_start( GTK_BOX( hbox1 ),InformationImage,FALSE,FALSE,2 );
 
- gtk_widget_hide( InformationPixmap );
- gtk_box_pack_start( GTK_BOX( hbox1 ),InformationPixmap,FALSE,FALSE,2 );
+ pixbuf = gdk_pixbuf_new_from_inline(-1, warning_png, FALSE, NULL);
+ WarningImage = gtk_image_new_from_pixbuf(pixbuf);
+ g_object_unref(pixbuf);
 
- gtk_widget_hide( WarningPixmap );
- gtk_box_pack_start( GTK_BOX( hbox1 ),WarningPixmap,FALSE,FALSE,2 );
+ gtk_widget_hide( WarningImage );
+ gtk_box_pack_start( GTK_BOX( hbox1 ),WarningImage,FALSE,FALSE,2 );
 
- gtk_widget_hide( ErrorPixmap );
- gtk_box_pack_start( GTK_BOX( hbox1 ),ErrorPixmap,FALSE,FALSE,2 );
+ pixbuf = gdk_pixbuf_new_from_inline(-1, error_png, FALSE, NULL);
+ ErrorImage = gtk_image_new_from_pixbuf(pixbuf);
+ g_object_unref(pixbuf);
+
+ gtk_widget_hide( ErrorImage );
+ gtk_box_pack_start( GTK_BOX( hbox1 ),ErrorImage,FALSE,FALSE,2 );
 
  gtkMessageBoxText=gtk_label_new( "Text jol. Ha ezt megerted,akkor neked nagyon jo a magyar tudasod,te." );
  gtk_widget_show( gtkMessageBoxText );

Modified: trunk/gui/dialog/msgbox.h
==============================================================================
--- trunk/gui/dialog/msgbox.h	Thu Apr  5 22:30:09 2018	(r38055)
+++ trunk/gui/dialog/msgbox.h	Wed Apr 11 13:26:39 2018	(r38056)
@@ -22,9 +22,9 @@
 #include <gtk/gtk.h>
 
 extern GtkWidget * MessageBox;
-extern GtkWidget * InformationPixmap;
-extern GtkWidget * WarningPixmap;
-extern GtkWidget * ErrorPixmap;
+extern GtkWidget * InformationImage;
+extern GtkWidget * WarningImage;
+extern GtkWidget * ErrorImage;
 extern GtkWidget * gtkMessageBoxText;
 
 void ShowMessageBox( const char * msg );


More information about the MPlayer-cvslog mailing list