From a2c8d01b3600295c8bfc197053e9669a4622d521 Mon Sep 17 00:00:00 2001 From: Guillaume Chazarain Date: Sun, 15 May 2011 16:34:49 +0200 Subject: [PATCH] - Set LIBS instead of LDFLAGS (LIBS are appended while LDFLAGS are prepended to the ld command line) - Fix some build warnings - Use newer autotools --- aclocal.m4 | 4 +- config.guess | 149 ++--- config.sub | 47 +- configure | 9 +- configure.ac | 9 +- src/actions.c | 2 +- src/cmdline.c | 16 +- src/collection.c | 4 +- src/gliv-image.c | 4 +- src/include/cmdline.h | 8 +- src/include/gliv-image.h | 2 +- src/include/gliv_logo.h | 1457 +++++++++++++++++++++++----------------------- src/windows.c | 3 - 13 files changed, 850 insertions(+), 864 deletions(-) rewrite src/include/gliv_logo.h (94%) diff --git a/aclocal.m4 b/aclocal.m4 index fcf403a..1f3261c 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -2969,7 +2969,7 @@ $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. -_PKG_TEXT])dnl +_PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) @@ -2980,7 +2980,7 @@ path to pkg-config. _PKG_TEXT -To get pkg-config, see .])dnl +To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS diff --git a/config.guess b/config.guess index e3a2116..c2246a4 100755 --- a/config.guess +++ b/config.guess @@ -1,10 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. -timestamp='2009-06-10' +timestamp='2009-12-30' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -27,16 +27,16 @@ timestamp='2009-06-10' # the same distribution terms that you use for the rest of that program. -# Originally written by Per Bothner . -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# Originally written by Per Bothner. Please send patches (context +# diff format) to and include a ChangeLog +# entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` @@ -56,8 +56,9 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free +Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -333,6 +334,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" @@ -807,12 +811,12 @@ EOF i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - *:Interix*:[3456]*) + *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; - EM64T | authenticamd | genuineintel) + authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) @@ -854,6 +858,20 @@ EOF i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ @@ -876,6 +894,17 @@ EOF frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; @@ -901,39 +930,18 @@ EOF #endif #endif EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu - exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in @@ -942,8 +950,11 @@ EOF *) echo hppa-unknown-linux-gnu ;; esac exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux @@ -966,58 +977,6 @@ EOF xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^LIBC/{ - s: ::g - p - }'`" - test x"${LIBC}" != x && { - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit - } - test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } - ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both @@ -1247,6 +1206,16 @@ EOF *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} diff --git a/config.sub b/config.sub index eb0389a..c2d1257 100755 --- a/config.sub +++ b/config.sub @@ -1,10 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. -timestamp='2009-06-11' +timestamp='2010-01-22' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -32,13 +32,16 @@ timestamp='2009-06-11' # Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. @@ -72,8 +75,9 @@ Report bugs and patches to ." version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free +Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -149,7 +153,7 @@ case $os in -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) + -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; @@ -284,6 +288,7 @@ case $basic_machine in | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ + | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ @@ -291,13 +296,14 @@ case $basic_machine in | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ + | ubicom32 \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; - m6811 | m68hc11 | m6812 | m68hc12) + m6811 | m68hc11 | m6812 | m68hc12 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none @@ -340,7 +346,7 @@ case $basic_machine in | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ @@ -368,15 +374,17 @@ case $basic_machine in | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ - | romp-* | rs6000-* \ + | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile-* | tilegx-* \ | tron-* \ + | ubicom32-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ @@ -726,6 +734,9 @@ case $basic_machine in basic_machine=ns32k-utek os=-sysv ;; + microblaze) + basic_machine=microblaze-xilinx + ;; mingw32) basic_machine=i386-pc os=-mingw32 @@ -1076,6 +1087,11 @@ case $basic_machine in basic_machine=tic6x-unknown os=-coff ;; + # This must be matched before tile*. + tilegx*) + basic_machine=tilegx-unknown + os=-linux-gnu + ;; tile*) basic_machine=tile-unknown os=-linux-gnu @@ -1247,6 +1263,9 @@ case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; @@ -1268,8 +1287,8 @@ case $os in # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ - | -kopensolaris* \ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ @@ -1290,7 +1309,7 @@ case $os in | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1423,6 +1442,8 @@ case $os in -dicos*) os=-dicos ;; + -nacl*) + ;; -none) ;; *) diff --git a/configure b/configure index 1e9999d..9ba32b1 100755 --- a/configure +++ b/configure @@ -7087,7 +7087,7 @@ fi fi CFLAGS="$X_CFLAGS $CFLAGS" -LDFLAGS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS $LDFLAGS" +LIBS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS $LIBS" # Checks for GtkGLExt. @@ -7299,7 +7299,7 @@ $as_echo "yes" >&6; } fi CFLAGS="$GTKGLEXT_CFLAGS $CFLAGS" -LDFLAGS="$GTKGLEXT_LIBS $LDFLAGS" +LIBS="$GTKGLEXT_LIBS $LIBS" GTKGL_VERSION="$($PKG_CONFIG --modversion gtkglext-1.0)" # Checks for OpenGL. @@ -7325,8 +7325,7 @@ rm -f core conftest.err conftest.$ac_objext \ if test "x$ogl" = "xno"; then { $as_echo "$as_me:${as_lineno-$LINENO}: maybe libGL requires libpthread..." >&5 $as_echo "$as_me: maybe libGL requires libpthread..." >&6;} - OLD_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -lpthread" + LIBS="$LIBS -lpthread" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include "GL/gl.h" @@ -7551,7 +7550,7 @@ fi $as_echo "yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version)" >&6; } CFLAGS="$GTK_CFLAGS $CFLAGS" - LDFLAGS="$GTK_LIBS $LDFLAGS" + LIBS="$GTK_LIBS $LIBS" GTK_VERSION="$($PKG_CONFIG --modversion gtk+-2.0)" else diff --git a/configure.ac b/configure.ac index df28f63..3de71e4 100644 --- a/configure.ac +++ b/configure.ac @@ -129,12 +129,12 @@ AC_CHECK_SIZEOF([unsigned long]) # Checks for X. AC_PATH_XTRA CFLAGS="$X_CFLAGS $CFLAGS" -LDFLAGS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS $LDFLAGS" +LIBS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS $LIBS" # Checks for GtkGLExt. PKG_CHECK_MODULES(GTKGLEXT, [gtkglext-1.0 >= 0.7.0]) CFLAGS="$GTKGLEXT_CFLAGS $CFLAGS" -LDFLAGS="$GTKGLEXT_LIBS $LDFLAGS" +LIBS="$GTKGLEXT_LIBS $LIBS" GTKGL_VERSION="$($PKG_CONFIG --modversion gtkglext-1.0)" # Checks for OpenGL. @@ -145,8 +145,7 @@ AC_TRY_LINK([#include "GL/gl.h"], if test "x$ogl" = "xno"; then AC_MSG_NOTICE([maybe libGL requires libpthread...]) - OLD_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -lpthread" + LIBS="$LIBS -lpthread" AC_TRY_LINK([#include "GL/gl.h"], [glBegin(GL_QUADS);], [], @@ -156,7 +155,7 @@ fi # Checks for gtk. AM_PATH_GTK_2_0([2.6.0], [ CFLAGS="$GTK_CFLAGS $CFLAGS" - LDFLAGS="$GTK_LIBS $LDFLAGS" + LIBS="$GTK_LIBS $LIBS" GTK_VERSION="$($PKG_CONFIG --modversion gtk+-2.0)" ], [exit 1], [gthread]) diff --git a/src/actions.c b/src/actions.c index 7eb115f..58600b9 100644 --- a/src/actions.c +++ b/src/actions.c @@ -308,7 +308,7 @@ static gboolean edit_action_dialog(gchar ** name, gchar ** command) GtkWidget *dialog = create_edit_action_dialog(); GtkEntry *name_entry, *command_entry; - gboolean duplicate; + gboolean duplicate = FALSE; gint response; gboolean ok = FALSE; diff --git a/src/cmdline.c b/src/cmdline.c index c960bb2..a574dcb 100644 --- a/src/cmdline.c +++ b/src/cmdline.c @@ -1,5 +1,5 @@ /* - File autogenerated by gengetopt version 2.22.2 + File autogenerated by gengetopt version 2.22.4 generated with the following command: gengetopt --input=../tools/gliv.ggo --unamed-opts --no-handle-error @@ -21,7 +21,7 @@ #define FIX_UNUSED(X) (void) (X) /* avoid warnings for unused params */ #endif -#include "getopt.h" +#include #include "cmdline.h" @@ -60,7 +60,7 @@ static void clear_args (struct gengetopt_args_info *args_info); static int -cmdline_parser_internal (int argc, char * const *argv, struct gengetopt_args_info *args_info, +cmdline_parser_internal (int argc, char **argv, struct gengetopt_args_info *args_info, struct cmdline_parser_params *params, const char *additional_error); @@ -362,13 +362,13 @@ gengetopt_strdup (const char *s) } int -cmdline_parser (int argc, char * const *argv, struct gengetopt_args_info *args_info) +cmdline_parser (int argc, char **argv, struct gengetopt_args_info *args_info) { return cmdline_parser2 (argc, argv, args_info, 0, 1, 1); } int -cmdline_parser_ext (int argc, char * const *argv, struct gengetopt_args_info *args_info, +cmdline_parser_ext (int argc, char **argv, struct gengetopt_args_info *args_info, struct cmdline_parser_params *params) { int result; @@ -378,7 +378,7 @@ cmdline_parser_ext (int argc, char * const *argv, struct gengetopt_args_info *ar } int -cmdline_parser2 (int argc, char * const *argv, struct gengetopt_args_info *args_info, int override, int initialize, int check_required) +cmdline_parser2 (int argc, char **argv, struct gengetopt_args_info *args_info, int override, int initialize, int check_required) { int result; struct cmdline_parser_params params; @@ -434,11 +434,11 @@ int update_arg(void *field, char **orig_field, const char *long_opt, char short_opt, const char *additional_error) { - FIX_UNUSED (field); char *stop_char = 0; const char *val = value; int found; char **string_field; + FIX_UNUSED (field); stop_char = 0; found = 0; @@ -503,7 +503,7 @@ int update_arg(void *field, char **orig_field, int cmdline_parser_internal ( - int argc, char * const *argv, struct gengetopt_args_info *args_info, + int argc, char **argv, struct gengetopt_args_info *args_info, struct cmdline_parser_params *params, const char *additional_error) { int c; /* Character of the parsed option. */ diff --git a/src/collection.c b/src/collection.c index 941d3b2..af757c1 100644 --- a/src/collection.c +++ b/src/collection.c @@ -513,7 +513,7 @@ static gboolean write_thumb(const gchar * filename, FILE * file) bps = gdk_pixbuf_get_bits_per_sample(thumb); WRITE(file, "1"); - WRITE_NB(file, strlen(thumb_key)); /* HashKeyLength */ + WRITE_NB(file, (int) strlen(thumb_key)); /* HashKeyLength */ WRITE(file, thumb_key); /* HashKey */ WRITE_NB(file, gdk_pixbuf_get_colorspace(thumb)); /* GdkColorspace */ WRITE_NB(file, gdk_pixbuf_get_has_alpha(thumb)); /* AlphaChannel */ @@ -542,7 +542,7 @@ static gboolean serialize_file(const gchar * filename, WRITE(file, ""); path = get_absolute_filename(filename); - WRITE_NB(file, strlen(path)); /* PathLength */ + WRITE_NB(file, (int) strlen(path)); /* PathLength */ WRITE(file, path); /* Path */ g_free(path); diff --git a/src/gliv-image.c b/src/gliv-image.c index 3719f6c..859b9e5 100644 --- a/src/gliv-image.c +++ b/src/gliv-image.c @@ -1,10 +1,10 @@ -/* Generated by GOB (v2.0.16) (do not edit directly) */ +/* Generated by GOB (v2.0.17) (do not edit directly) */ /* End world hunger, donate to the World Food Programme, http://www.wfp.org */ #define GOB_VERSION_MAJOR 2 #define GOB_VERSION_MINOR 0 -#define GOB_VERSION_PATCHLEVEL 16 +#define GOB_VERSION_PATCHLEVEL 17 #define selfp (self->_priv) diff --git a/src/include/cmdline.h b/src/include/cmdline.h index b800951..c6539ad 100644 --- a/src/include/cmdline.h +++ b/src/include/cmdline.h @@ -1,6 +1,6 @@ /** @file cmdline.h * @brief The header file for the command line option parser - * generated by GNU Gengetopt version 2.22.2 + * generated by GNU Gengetopt version 2.22.4 * http://www.gnu.org/software/gengetopt. * DO NOT modify this file, since it can be overwritten * @author GNU Gengetopt by Lorenzo Bettini */ @@ -127,7 +127,7 @@ extern const char *gengetopt_args_info_help[]; * @param args_info the structure where option information will be stored * @return 0 if everything went fine, NON 0 if an error took place */ -int cmdline_parser (int argc, char * const *argv, +int cmdline_parser (int argc, char **argv, struct gengetopt_args_info *args_info); /** @@ -141,7 +141,7 @@ int cmdline_parser (int argc, char * const *argv, * @return 0 if everything went fine, NON 0 if an error took place * @deprecated use cmdline_parser_ext() instead */ -int cmdline_parser2 (int argc, char * const *argv, +int cmdline_parser2 (int argc, char **argv, struct gengetopt_args_info *args_info, int override, int initialize, int check_required); @@ -153,7 +153,7 @@ int cmdline_parser2 (int argc, char * const *argv, * @param params additional parameters for the parser * @return 0 if everything went fine, NON 0 if an error took place */ -int cmdline_parser_ext (int argc, char * const *argv, +int cmdline_parser_ext (int argc, char **argv, struct gengetopt_args_info *args_info, struct cmdline_parser_params *params); diff --git a/src/include/gliv-image.h b/src/include/gliv-image.h index d5e7573..a383c37 100644 --- a/src/include/gliv-image.h +++ b/src/include/gliv-image.h @@ -1,4 +1,4 @@ -/* Generated by GOB (v2.0.16) (do not edit directly) */ +/* Generated by GOB (v2.0.17) (do not edit directly) */ #include #include diff --git a/src/include/gliv_logo.h b/src/include/gliv_logo.h dissimilarity index 94% index fe5d29e..5fd4fc5 100644 --- a/src/include/gliv_logo.h +++ b/src/include/gliv_logo.h @@ -1,728 +1,729 @@ -/* Auto-generated */ -/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ - -static const GdkPixdata gliv_logo = { - 0x47646b50, /* Pixbuf magic: 'GdkP' */ - 24 + 18583, /* header length + pixel_data length */ - 0x2010002, /* pixdata_type */ - 752, /* rowstride */ - 188, /* width */ - 188, /* height */ - /* pixel_data: */ - "\377\0\0\0\0\377\0\0\0\0\226\0\0\0\0\2\0\0\0\6\0\0\0\33\203\0\0\0\"\4" - "\0\0\0*\0\0\0-\0\0\0\27\0\0\0\1\377\0\0\0\0\254\0\0\0\0\10\0\0\0\27\0" - "\0\0A\0\0\0b\0\0\0\201\0\0\0\240\0\0\0\270\0\0\0\323\0\0\0\352\210\0" - "\0\0\377\11\0\0\0\372\0\0\0\343\0\0\0\306\0\0\0\257\0\0\0\223\0\0\0{" - "\0\0\0\\\0\0\0""5\0\0\0\15\377\0\0\0\0\237\0\0\0\0\5\0\0\0*\0\0\0e\0" - "\0\0\223\0\0\0\276\0\0\0\353\231\0\0\0\377\6\0\0\0\343\0\0\0\273\0\0" - "\0\222\0\0\0c\0\0\0.\0\0\0\4\377\0\0\0\0\225\0\0\0\0\4\0\0\0-\0\0\0m" - "\0\0\0\254\0\0\0\351\243\0\0\0\377\5\0\0\0\365\0\0\0\303\0\0\0\204\0" - "\0\0B\0\0\0\11\377\0\0\0\0\215\0\0\0\0\4\0\0\0\3\0\0\0@\0\0\0\220\0\0" - "\0\340\214\0\0\0\377\11\6\0\12\377\26\0$\377&\0=\3772\0P\377\77\0e\377" - "J\0w\377X\0\215\377]\0\226\377_\0\230\377\203f\0\243\377\10a\0\233\377" - "T\0\206\377G\0r\3779\0\\\377.\0J\377\40\0""3\377\24\0\40\377\4\0\7\377" - "\213\0\0\0\377\4\0\0\0\367\0\0\0\271\0\0\0i\0\0\0\32\377\0\0\0\0\207" - "\0\0\0\0\4\0\0\0\1\0\0\0>\0\0\0\236\0\0\0\353\211\0\0\0\377\6\5\0\10" - "\377\34\0.\3773\0R\377H\0t\377^\0\227\377t\0\272\377\223\177\0\314\377" - "\7\177\0\313\377o\0\262\377[\0\222\377F\0p\3772\0P\377\35\0.\377\5\0" - "\11\377\210\0\0\0\377\4\0\0\0\376\0\0\0\305\0\0\0f\0\0\0\17\377\0\0\0" - "\0\202\0\0\0\0\3\0\0\0\32\0\0\0x\0\0\0\334\210\0\0\0\377\5\6\0\12\377" - "#\0""9\377C\0k\377b\0\235\377}\0\310\377\236\177\0\314\377\5~\0\312\377" - "h\0\247\377N\0}\3770\0M\377\17\0\31\377\207\0\0\0\377\4\0\0\0\366\0\0" - "\0\244\0\0\0D\0\0\0\2\373\0\0\0\0\4\0\0\0\3\0\0\0O\0\0\0\260\0\0\0\374" - "\207\0\0\0\377\4\16\0\26\3775\0V\377]\0\226\377}\0\311\377\247\177\0" - "\314\377\4n\0\261\377L\0z\377#\0""9\377\3\0\5\377\206\0\0\0\377\3\0\0" - "\0\337\0\0\0{\0\0\0\24\367\0\0\0\0\3\0\0\0\26\0\0\0\204\0\0\0\345\207" - "\0\0\0\377\4\15\0\25\377;\0^\377e\0\242\377\177\0\313\377\255\177\0\314" - "\377\4x\0\301\377Q\0\202\377\"\0""6\377\1\0\2\377\205\0\0\0\377\3\0\0" - "\0\365\0\0\0\226\0\0\0$\363\0\0\0\0\3\0\0\0#\0\0\0\226\0\0\0\367\206" - "\0\0\0\377\4\2\0\4\377'\0\77\377Y\0\217\377~\0\312\377\263\177\0\314" - "\377\3p\0\264\377A\0h\377\20\0\32\377\205\0\0\0\377\3\0\0\0\373\0\0\0" - "\230\0\0\0\31\357\0\0\0\0\3\0\0\0/\0\0\0\251\0\0\0\374\206\0\0\0\377" - "\3\22\0\36\377D\0m\377s\0\270\377\270\177\0\314\377\4~\0\312\377]\0\226" - "\377'\0>\377\1\0\2\377\204\0\0\0\377\3\0\0\0\364\0\0\0\202\0\0\0\10\353" - "\0\0\0\0\3\0\0\0\36\0\0\0\242\0\0\0\375\205\0\0\0\377\4\0\0\1\377&\0" - "=\377_\0\231\377\177\0\313\377\275\177\0\314\377\3l\0\255\3773\0R\377" - "\3\0\5\377\204\0\0\0\377\2\0\0\0\331\0\0\0>\350\0\0\0\0\3\0\0\0\20\0" - "\0\0\211\0\0\0\366\205\0\0\0\377\3\2\0\4\377/\0K\377j\0\252\377\302\177" - "\0\314\377\3n\0\261\377-\0H\377\1\0\2\377\203\0\0\0\377\3\0\0\0\376\0" - "\0\0\224\0\0\0\11\344\0\0\0\0\3\0\0\0\1\0\0\0g\0\0\0\353\205\0\0\0\377" - "\3\2\0\3\3774\0T\377p\0\264\377\306\177\0\314\377\2f\0\244\377\31\0)" - "\377\204\0\0\0\377\2\0\0\0\324\0\0\0-\342\0\0\0\0\2\0\0\0'\0\0\0\302" - "\206\0\0\0\377\2(\0A\377m\0\257\377\311\177\0\314\377\3}\0\311\377E\0" - "o\377\4\0\7\377\203\0\0\0\377\2\0\0\0\366\0\0\0`\337\0\0\0\0\3\0\0\0" - "\6\0\0\0|\0\0\0\370\205\0\0\0\377\2\34\0-\377c\0\236\377\315\177\0\314" - "\377\2k\0\253\377\27\0&\377\204\0\0\0\377\2\0\0\0\235\0\0\0\10\334\0" - "\0\0\0\2\0\0\0-\0\0\0\322\205\0\0\0\377\3\10\0\16\377N\0}\377\177\0\313" - "\377\317\177\0\314\377\2|\0\306\3776\0V\377\204\0\0\0\377\2\0\0\0\304" - "\0\0\0\21\331\0\0\0\0\3\0\0\0\1\0\0\0n\0\0\0\367\205\0\0\0\377\2*\0C" - "\377s\0\271\377\323\177\0\314\377\2U\0\210\377\6\0\12\377\203\0\0\0\377" - "\2\0\0\0\321\0\0\0\31\327\0\0\0\0\2\0\0\0\21\0\0\0\257\205\0\0\0\377" - "\2\14\0\24\377X\0\216\377\326\177\0\314\377\2k\0\253\377\20\0\32\377" - "\203\0\0\0\377\2\0\0\0\332\0\0\0\25\325\0\0\0\0\2\0\0\0""8\0\0\0\341" - "\205\0\0\0\377\2'\0>\377u\0\274\377\330\177\0\314\377\2r\0\267\377\26" - "\0#\377\203\0\0\0\377\2\0\0\0\310\0\0\0\12\322\0\0\0\0\3\0\0\0\1\0\0" - "\0r\0\0\0\372\204\0\0\0\377\3\3\0\6\377I\0v\377\177\0\313\377\332\177" - "\0\314\377\2w\0\276\377\31\0(\377\203\0\0\0\377\2\0\0\0\261\0\0\0\3\320" - "\0\0\0\0\2\0\0\0\11\0\0\0\255\205\0\0\0\377\2\21\0\33\377e\0\242\377" - "\335\177\0\314\377\2u\0\273\377\22\0\35\377\203\0\0\0\377\1\0\0\0\216" - "\317\0\0\0\0\2\0\0\0\25\0\0\0\307\205\0\0\0\377\2*\0D\377x\0\301\377" - "\337\177\0\314\377\2m\0\257\377\12\0\21\377\203\0\0\0\377\1\0\0\0`\315" - "\0\0\0\0\2\0\0\0%\0\0\0\333\204\0\0\0\377\2\1\0\2\377F\0p\377\253\177" - "\0\314\377\20\200\0\314\360\200\0\313\306\200\0\315\242\177\0\315\211" - "~\0\314o\200\0\315f\200\0\314Z~\0\314U~\0\313c\200\0\314t~\0\315u\200" - "\0\314\220\200\0\314\252\177\0\314\303\177\0\314\335\177\0\314\367\247" - "\177\0\314\377\2_\0\230\377\3\0\5\377\202\0\0\0\377\2\0\0\0\365\0\0\0" - ")\313\0\0\0\0\2\0\0\0""9\0\0\0\353\204\0\0\0\377\2\4\0\7\377V\0\212\377" - "\247\177\0\314\377\5\177\0\314\371\177\0\314\303\177\0\313\205\200\0" - "\313J{\0\316\37\220\0\0\0\0\5\200\0\314\36\200\0\313J~\0\315\177\177" - "\0\314\263\200\0\314\350\243\177\0\314\377\1I\0v\377\203\0\0\0\377\2" - "\0\0\0\321\0\0\0\10\311\0\0\0\0\2\0\0\0""7\0\0\0\360\204\0\0\0\377\2" - "\12\0\20\377c\0\236\377\245\177\0\314\377\4\177\0\314\321\177\0\314\203" - "\200\0\315Bq\0\306\11\231\0\0\0\0\4\200\0\316*\200\0\314j\177\0\314\253" - "\177\0\314\357\240\177\0\314\377\1*\0D\377\203\0\0\0\377\1\0\0\0\216" - "\310\0\0\0\0\2\0\0\0""2\0\0\0\360\204\0\0\0\377\2\20\0\32\377m\0\257" - "\377\242\177\0\314\377\4\177\0\314\375\177\0\314\303~\0\314s\200\0\313" - "\"\240\0\0\0\0\4\200\0\325\6~\0\313E\200\0\314\226\177\0\314\351\235" - "\177\0\314\377\2w\0\277\377\17\0\31\377\202\0\0\0\377\2\0\0\0\373\0\0" - "\0+\306\0\0\0\0\2\0\0\0-\0\0\0\353\204\0\0\0\377\2\16\0\26\377o\0\262" - "\377\241\177\0\314\377\3\200\0\314\342~\0\314}\200\0\314\36\246\0\0\0" - "\0\3f\0\314\5\200\0\313X\200\0\314\314\234\177\0\314\377\1^\0\227\377" - "\203\0\0\0\377\1\0\0\0\271\305\0\0\0\0\2\0\0\0$\0\0\0\352\204\0\0\0\377" - "\2\14\0\24\377m\0\256\377\240\177\0\314\377\3\177\0\314\317~\0\313Y\200" - "\0\277\4\253\0\0\0\0\2\200\0\313@\177\0\315\305\233\177\0\314\377\1)" - "\0B\377\203\0\0\0\377\1\0\0\0J\303\0\0\0\0\2\0\0\0\17\0\0\0\326\204\0" - "\0\0\377\2\12\0\21\377j\0\252\377\237\177\0\314\377\3\177\0\314\277\200" - "\0\315H\0\0\377\1\257\0\0\0\0\2~\0\313O\200\0\314\326\231\177\0\314\377" - "\2o\0\262\377\4\0\6\377\202\0\0\0\377\1\0\0\0\312\302\0\0\0\0\2\0\0\0" - "\3\0\0\0\263\204\0\0\0\377\2\5\0\10\377e\0\242\377\236\177\0\314\377" - "\2\200\0\314\310\200\0\313@\263\0\0\0\0\3\200\0\325\6\200\0\314~\177" - "\0\314\371\230\177\0\314\377\1""7\0X\377\203\0\0\0\377\1\0\0\0@\301\0" - "\0\0\0\1\0\0\0\207\204\0\0\0\377\2\0\0\1\377S\0\205\377\235\177\0\314" - "\377\3\200\0\314\334~\0\313Y\0\0\377\1\266\0\0\0\0\2\200\0\3164\200\0" - "\314\336\227\177\0\314\377\2r\0\267\377\3\0\5\377\202\0\0\0\377\1\0\0" - "\0\270\300\0\0\0\0\2\0\0\0X\0\0\0\376\204\0\0\0\377\1;\0^\377\234\177" - "\0\314\377\3\177\0\314\363~\0\314s\200\0\325\6\271\0\0\0\0\2\200\0\312" - "\30\177\0\314\317\227\177\0\314\377\1/\0K\377\203\0\0\0\377\1\0\0\0""9" - "\276\0\0\0\0\2\0\0\0""2\0\0\0\365\204\0\0\0\377\2%\0;\377~\0\312\377" - "\233\177\0\314\377\2\177\0\314\265{\0\316\37\274\0\0\0\0\2\200\0\317" - "\20\200\0\315\300\226\177\0\314\377\1g\0\245\377\203\0\0\0\377\1\0\0" - "\0\251\275\0\0\0\0\2\0\0\0\24\0\0\0\343\204\0\0\0\377\2\23\0\37\377x" - "\0\300\377\232\177\0\314\377\2\177\0\314\351\200\0\314Z\277\0\0\0\0\2" - "\200\0\314\12\200\0\314\310\226\177\0\314\377\1'\0\77\377\202\0\0\0\377" - "\2\0\0\0\352\0\0\0\6\274\0\0\0\0\1\0\0\0\253\204\0\0\0\377\2\7\0\14\377" - "l\0\256\377\232\177\0\314\377\2\200\0\314\276\200\0\312\30\301\0\0\0" - "\0\2z\0\310\27\177\0\314\347\225\177\0\314\377\1O\0\177\377\203\0\0\0" - "\377\1\0\0\0N\273\0\0\0\0\1\0\0\0T\205\0\0\0\377\1Q\0\202\377\231\177" - "\0\314\377\3\177\0\314\375~\0\314}U\0\252\3\303\0\0\0\0\2~\0\315G\200" - "\0\314\376\224\177\0\314\377\2y\0\302\377\5\0\10\377\202\0\0\0\377\1" - "\0\0\0\245\272\0\0\0\0\2\0\0\0\24\0\0\0\351\204\0\0\0\377\1$\0:\377\231" - "\177\0\314\377\2\177\0\314\367\200\0\313T\306\0\0\0\0\1\177\0\314\245" - "\225\177\0\314\377\1*\0D\377\202\0\0\0\377\2\0\0\0\354\0\0\0\2\271\0" - "\0\0\0\1\0\0\0\247\204\0\0\0\377\2\7\0\14\377q\0\266\377\230\177\0\314" - "\377\2\177\0\314\353\200\0\312:\245\0\0\0\0\1\0\0\0\34\202\0\0\0""3\2" - "\0\0\0#\0\0\0\3\235\0\0\0\0\2\200\0\314\36\177\0\314\365\224\177\0\314" - "\377\1O\0~\377\203\0\0\0\377\1\0\0\0""5\270\0\0\0\0\1\0\0\0@\205\0\0" - "\0\377\1N\0}\377\230\177\0\314\377\2\177\0\314\333|\0\317%\243\0\0\0" - "\0\12\0\0\0\12\0\0\0z\3\0\7\340!\0""5\373<\0a\345B\0j\3457\0X\366\"\0" - "6\362\3\0\5\234\0\0\0\36\234\0\0\0\0\1\200\0\314\222\224\177\0\314\377" - "\1q\0\266\377\203\0\0\0\377\1\0\0\0o\270\0\0\0\0\1\0\0\0\305\204\0\0" - "\0\377\2\32\0*\377\177\0\313\377\227\177\0\314\377\2\177\0\314\327\200" - "\0\321\26\243\0\0\0\0\14\0\0\0*\1\0\2\327>\0d\344{\0\306\360\177\0\313" - "\323\177\0\315\223\200\0\314x\200\0\314\226y\0\302\337x\0\300\370:\0" - "^\372\5\0\10f\233\0\0\0\0\2\200\0\315$\177\0\314\375\224\177\0\314\377" - "\1\12\0\21\377\202\0\0\0\377\1\0\0\0\243\267\0\0\0\0\1\0\0\0K\205\0\0" - "\0\377\1[\0\222\377\227\177\0\314\377\2\177\0\314\333{\0\320\33\211\0" - "\0\0\0\1\0\0\0,\215\0\0\0\273\1\0\0\0\13\213\0\0\0\0\16\0\0\0\33\3\0" - "\6\347c\0\240\337\177\0\313\327l\0\257I\0\0\0h\0\0\0\227\0\0\0\230\0" - "\0\0x\0\0\0%\200\0\312:w\0\276\335]\0\226\374\17\0\30t\233\0\0\0\0\1" - "\200\0\314\264\224\177\0\314\377\1!\0""5\377\202\0\0\0\377\1\0\0\0\323" - "\266\0\0\0\0\2\0\0\0\1\0\0\0\316\204\0\0\0\377\1\36\0""1\377\227\177" - "\0\314\377\2\177\0\314\337{\0\312\35\212\0\0\0\0\1\0\0\0<\202\0\0\0\377" - "\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\212\0\0\0\0\17\0\0\0" - "\251R\0\204\333\200\0\314\310\31\0+H\21\0\34\355Z\0\221\356|\0\307\370" - "}\0\311\371u\0\275\366R\0\203\375\40\0""2\230f\0\263\12r\0\267\314Y\0" - "\216\375\0\0\6.\232\0\0\0\0\1~\0\315W\224\177\0\314\377\1""7\0Y\377\202" - "\0\0\0\377\2\0\0\0\367\0\0\0\2\265\0\0\0\0\1\0\0\0S\205\0\0\0\377\1`" - "\0\232\377\226\177\0\314\377\2\200\0\314\346\200\0\313\"\213\0\0\0\0" - "\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303" - "\211\0\0\0\0\20\0\0\0\37\17\0\30\373~\0\313\364N\0\2004\20\0\32\353z" - "\0\304\365\200\0\315\216{\0\320\33\0\0\377\1|\0\315)m\0\257\242x\0\301" - "\375/\0L\235\200\0\317\20v\0\275\3633\0R\303\232\0\0\0\0\2w\0\314\17" - "\200\0\314\374\223\177\0\314\377\1O\0~\377\203\0\0\0\377\1\0\0\0\37\265" - "\0\0\0\0\1\0\0\0\316\204\0\0\0\377\1!\0""6\377\226\177\0\314\377\2\177" - "\0\314\371}\0\3169\214\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213" - "\177\0\314\377\1\177\0\314\303\211\0\0\0\0\21\0\0\0iC\0m\343\177\0\315" - "\247\0\0\0}_\0\231\355\200\0\313\224\0\0\0[/\0L\363E\0o\373=\0b\303\0" - "\0@\4^\0\226\213p\0\265\376\32\0,\35d\0\240\204`\0\233\376\0\0\0\14\232" - "\0\0\0\0\1\177\0\314\307\223\177\0\314\377\1d\0\241\377\203\0\0\0\377" - "\1\0\0\0D\264\0\0\0\0\1\0\0\0A\205\0\0\0\377\1\\\0\223\377\226\177\0" - "\314\377\1\200\0\315f\215\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377" - "\213\177\0\314\377\1\177\0\314\303\211\0\0\0\0\21\0\0\0\207`\0\231\342" - "\200\0\313v\3\0\6\270|\0\310\372\200\0\311&,\0F\366v\0\276\366e\0\243" - "\223q\0\265\373T\0\207\264\0\0\0\0l\0\256\367F\0p\226x\0\277\40|\0\307" - "\377\22\0\35G\232\0\0\0\0\1\200\0\314\226\223\177\0\314\377\1w\0\276" - "\377\203\0\0\0\377\1\0\0\0h\264\0\0\0\0\1\0\0\0\260\204\0\0\0\377\2\25" - "\0\"\377\177\0\313\377\225\177\0\314\377\2\177\0\314\271\0\0\377\1\215" - "\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177" - "\0\314\303\211\0\0\0\0\21\0\0\0\200`\0\233\347~\0\314w\3\0\6\250~\0\312" - "\375|\0\314#:\0\\\317\177\0\314\377o\0\263\2478\0Z\247r\0\266\364\0\0" - "\0\0X\0\217\341U\0\211\305\0\0\0\0\177\0\314\377(\0Be\232\0\0\0\0\1~" - "\0\314i\224\177\0\314\377\1\11\0\16\377\202\0\0\0\377\1\0\0\0\211\263" - "\0\0\0\0\2\0\0\0\36\0\0\0\375\204\0\0\0\377\1E\0o\377\225\177\0\314\377" - "\2\200\0\314\362\200\0\314\36\216\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0" - "\220\377\213\177\0\314\377\1\177\0\314\303\211\0\0\0\0\21\0\0\0IC\0k" - "\365~\0\313\242\0\0\0J`\0\231\372n\0\260\224\0\0$\7p\0\263Tf\0\252\36" - ";\0_\334p\0\263\344\0\0\0\0Z\0\221\354V\0\213\262U\0\252\6\177\0\314" - "\377-\0I[\232\0\0\0\0\1\200\0\314<\224\177\0\314\377\1\25\0\"\377\202" - "\0\0\0\377\1\0\0\0\236\263\0\0\0\0\1\0\0\0\201\204\0\0\0\377\2\2\0\4" - "\377t\0\272\377\225\177\0\314\377\1~\0\313g\217\0\0\0\0\1\0\0\0<\202" - "\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\211\0\0\0\0" - "\21\0\0\0\4\26\0$\344|\0\307\367\200\0\316\32#\0""7\241v\0\276\376`\0" - "\232\332C\0k\254H\0t\351z\0\304\375m\0\257Y\34\0--t\0\272\377S\0\210" - "MO\0\201Qw\0\277\377\0\0\15\24\232\0\0\0\0\1\200\0\313\"\224\177\0\314" - "\377\1\40\0""3\377\202\0\0\0\377\1\0\0\0\261\263\0\0\0\0\205\0\0\0\377" - "\1/\0L\377\225\177\0\314\377\2\200\0\315\300\0\0\377\1\217\0\0\0\0\1" - "\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303" - "\212\0\0\0\0\17\0\0\0SM\0|\373v\0\276\324v\0\304\15$\0;NR\0\205\303b" - "\0\235\332`\0\233\277m\0\2628\0\0\25\14T\0\210\351g\0\244\344\0\0\0\0" - "X\0\215\307W\0\213\340\215\0\0\0\0\1\0\0\0\17\215\0\0\0\0\1t\0\321\13" - "\224\177\0\314\377\1)\0B\377\202\0\0\0\377\1\0\0\0\307\213\0\0\0\0\1" - "\0\0\377\1\203\0\0\0\0\1\0\0\0\17\242\0\0\0\0\1\0\0\0L\205\0\0\0\377" - "\226\177\0\314\377\1}\0\3169\220\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0" - "\220\377\213\177\0\314\377\1\177\0\314\303\213\0\0\0\0\16\11\0\15wY\0" - "\217\375t\0\272\355h\0\250im\0\333\7\0\0\0\0\0\0\0\3:\0]v`\0\232\365" - "o\0\262\365Q\0\206&F\0pIx\0\302\3765\0W[\213\0\0\0\0\4v\0\304\15x\0\301" - "\3042\0P\354\0\0\0\204\215\0\0\0\0\1\200\0\314\370\223\177\0\314\377" - "\1""2\0Q\377\202\0\0\0\377\1\0\0\0\331\212\0\0\0\0\7\200\0\315`\200\0" - "\314\270t\0\321\13\0\0\0\0\0\0\0""1\0\0\0\350\0\0\0s\241\0\0\0\0\1\0" - "\0\0\222\204\0\0\0\377\2\13\0\22\377}\0\311\377\224\177\0\314\377\1\177" - "\0\314\263\221\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0" - "\314\377\1\177\0\314\303\214\0\0\0\0\14\4\0\11:9\0]\325g\0\246\376{\0" - "\306\376m\0\260\367v\0\276\376t\0\271\375Y\0\216\276P\0\217\20C\0j5q" - "\0\265\373M\0|\307\213\0\0\0\0\7\200\0\306\22y\0\303\323\177\0\314\377" - "\177\0\313\3775\0U\377\0\0\0\225\0\0\0\1\213\0\0\0\0\1\177\0\314\345" - "\223\177\0\314\377\1>\0c\377\202\0\0\0\377\1\0\0\0\354\211\0\0\0\0\6" - "\200\0\314n\200\0\314\376\177\0\314\377\177\0\314\307\34\0""1I\0\0\0" - "\360\202\0\0\0\377\1\0\0\0\203\237\0\0\0\0\2\0\0\0\6\0\0\0\354\204\0" - "\0\0\377\1""9\0\\\377\225\177\0\314\377\1}\0\3131\221\0\0\0\0\1\0\0\0" - "<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\216\0" - "\0\0\0\5\0\0\0\17\26\0(98\0XN+\0H5\0\0\0\1\202\0\0\0\0\3A\0h\232N\0~" - "\321\0\0\0\3\212\0\0\0\0\2z\0\314\31y\0\303\335\204\177\0\314\377\3=" - "\0b\377\0\0\0\242\0\0\0\4\212\0\0\0\0\1\200\0\314\326\223\177\0\314\377" - "\1C\0l\377\202\0\0\0\377\1\0\0\0\366\210\0\0\0\0\1\200\0\314~\204\177" - "\0\314\377\2i\0\247\375\13\0\22\377\203\0\0\0\377\2\0\0\0\222\0\0\0\1" - "\235\0\0\0\0\1\0\0\0S\205\0\0\0\377\1h\0\247\377\224\177\0\314\377\1" - "\177\0\315\305\222\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177" - "\0\314\377\1\177\0\314\303\241\0\0\0\0\2\200\0\317\40z\0\303\346\206" - "\177\0\314\377\3D\0n\377\0\0\1\260\0\0\0\7\211\0\0\0\0\1\200\0\314\322" - "\223\177\0\314\377\1C\0l\377\203\0\0\0\377\206\0\0\0\0\2\0\0\377\1\200" - "\0\315\216\206\177\0\314\377\2m\0\256\377\17\0\31\377\203\0\0\0\377\2" - "\0\0\0\241\0\0\0\3\234\0\0\0\0\1\0\0\0\245\204\0\0\0\377\1\21\0\34\377" - "\225\177\0\314\377\1~\0\315e\222\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0" - "\220\377\213\177\0\314\377\1\177\0\314\303\240\0\0\0\0\2|\0\315){\0\305" - "\355\210\177\0\314\377\3L\0z\377\1\0\3\275\0\0\0\14\210\0\0\0\0\1\200" - "\0\314\322\223\177\0\314\377\1C\0l\377\203\0\0\0\377\205\0\0\0\0\2U\0" - "\252\3\200\0\314\234\210\177\0\314\377\2p\0\264\377\24\0\40\377\203\0" - "\0\0\377\2\0\0\0\256\0\0\0\7\232\0\0\0\0\2\0\0\0\2\0\0\0\354\204\0\0" - "\0\377\1""5\0V\377\224\177\0\314\377\2\200\0\314\364\200\0\310\16\222" - "\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177" - "\0\314\303\214\0\0\0\0\1H\0v_\207v\0\276\311\1u\0\273\250\212\0\0\0\0" - "\2}\0\3153{\0\305\363\212\177\0\314\377\3S\0\205\377\4\0\6\310\0\0\0" - "\21\207\0\0\0\0\1\200\0\314\322\223\177\0\314\377\1C\0l\377\203\0\0\0" - "\377\204\0\0\0\0\2\200\0\325\6\200\0\314\252\212\177\0\314\377\2t\0\272" - "\377\30\0'\377\203\0\0\0\377\2\0\0\0\273\0\0\0\13\231\0\0\0\0\1\0\0\0" - "7\205\0\0\0\377\1Z\0\220\377\224\177\0\314\377\1\177\0\314\245\223\0" - "\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0" - "\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1o\0\261\362\211\0\0" - "\0\0\2|\0\315)|\0\307\367\214\177\0\314\377\3Z\0\220\377\5\0\10\324\0" - "\0\0\30\206\0\0\0\0\1\200\0\314\322\223\177\0\314\377\1J\0v\377\203\0" - "\0\0\377\203\0\0\0\0\2\200\0\314\12\200\0\315\266\214\177\0\314\377\2" - "w\0\277\377\24\0\40\377\203\0\0\0\377\2\0\0\0\306\0\0\0\21\230\0\0\0" - "\0\1\0\0\0\177\204\0\0\0\377\2\3\0\6\377{\0\305\377\224\177\0\314\377" - "\1}\0\312\77\223\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177" - "\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1" - "o\0\261\362\211\0\0\0\0\2\200\0\377\2b\0\236\303\215\177\0\314\377\3" - "_\0\231\377\10\0\15\334\0\0\0\37\205\0\0\0\0\1\200\0\314\322\223\177" - "\0\314\377\1H\0s\377\203\0\0\0\377\202\0\0\0\0\2w\0\314\17\177\0\314" - "\303\215\177\0\314\377\2I\0v\377\0\0\1\377\203\0\0\0\377\2\0\0\0\305" - "\0\0\0\20\230\0\0\0\0\1\0\0\0\301\204\0\0\0\377\1\35\0.\377\224\177\0" - "\314\377\2\177\0\314\333\0\0\377\1\223\0\0\0\0\1\0\0\0<\202\0\0\0\377" - "\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377" - "\207\177\0\314\377\1o\0\261\362\213\0\0\0\0\1_\0\231\264\215\177\0\314" - "\377\3e\0\242\377\12\0\21\345\0\0\0(\204\0\0\0\0\1\200\0\314\332\223" - "\177\0\314\377\1C\0l\377\202\0\0\0\377\4\0\0\0\372\0\0\0\0y\0\316\25" - "\177\0\314\315\215\177\0\314\377\1B\0j\377\204\0\0\0\377\2\0\0\0\271" - "\0\0\0\13\230\0\0\0\0\2\0\0\0\4\0\0\0\365\204\0\0\0\377\1""9\0[\377\224" - "\177\0\314\377\1\177\0\314\207\224\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z" - "\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207" - "\177\0\314\377\1o\0\261\362\214\0\0\0\0\2^\0\226\243\177\0\313\377\214" - "\177\0\314\377\3j\0\252\377\16\0\27\353\0\0\0""2\203\0\0\0\0\1\177\0" - "\314\343\223\177\0\314\377\1<\0`\377\202\0\0\0\377\3\0\0\0\360\200\0" - "\310\34\177\0\314\327\214\177\0\314\377\2\177\0\313\3779\0\\\377\204" - "\0\0\0\377\2\0\0\0\256\0\0\0\6\231\0\0\0\0\1\0\0\0""3\205\0\0\0\377\1" - "U\0\211\377\224\177\0\314\377\1\200\0\316>\224\0\0\0\0\1\0\0\0<\202\0" - "\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1" - "%\0<\377\207\177\0\314\377\1o\0\261\362\215\0\0\0\0\2\\\0\223\220~\0" - "\312\377\214\177\0\314\377\3o\0\262\377\21\0\33\362\0\0\0<\202\0\0\0" - "\0\1\200\0\314\360\223\177\0\314\377\1""7\0Y\377\202\0\0\0\377\2\24\0" - "!\346\177\0\314\337\214\177\0\314\377\2~\0\312\3773\0R\377\204\0\0\0" - "\377\2\0\0\0\237\0\0\0\3\232\0\0\0\0\1\0\0\0k\205\0\0\0\377\1q\0\266" - "\377\223\177\0\314\377\2\200\0\314\360f\0\314\5\224\0\0\0\0\1\0\0\0<" - "\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0" - "\0\0\1%\0<\377\207\177\0\314\377\1o\0\261\362\216\0\0\0\0\2Z\0\221\200" - "}\0\310\377\214\177\0\314\377\5s\0\270\377\26\0#\367\0\0\0I\0\0\0\0\177" - "\0\314\373\223\177\0\314\377\4""3\0R\377\0\0\0\377\26\0$\377u\0\274\373" - "\214\177\0\314\377\2|\0\307\377+\0F\377\204\0\0\0\377\2\0\0\0\221\0\0" - "\0\1\233\0\0\0\0\1\0\0\0\243\204\0\0\0\377\1\14\0\23\377\224\177\0\314" - "\377\1\200\0\314\256\225\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377" - "\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314" - "\377\1o\0\261\362\217\0\0\0\0\2X\0\220n{\0\307\376\214\177\0\314\377" - "\3v\0\275\377\33\0+\372\16\0\26[\224\177\0\314\377\3-\0H\377\34\0-\377" - "v\0\276\377\214\177\0\314\377\2{\0\305\377%\0<\377\204\0\0\0\377\1\0" - "\0\0\201\235\0\0\0\0\1\0\0\0\324\204\0\0\0\377\1\"\0""7\377\224\177\0" - "\314\377\1\200\0\314r\225\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377" - "\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314" - "\377\1o\0\261\362\220\0\0\0\0\2W\0\215^z\0\304\375\214\177\0\314\377" - "\2y\0\302\377+\0F\375\224\177\0\314\377\2=\0b\377y\0\302\377\214\177" - "\0\314\377\2x\0\301\377\37\0""2\377\203\0\0\0\377\2\0\0\0\376\0\0\0q" - "\235\0\0\0\0\2\0\0\0\5\0\0\0\372\204\0\0\0\377\1""8\0Z\377\224\177\0" - "\314\377\1\200\0\312:\225\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377" - "\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314" - "\377\1o\0\261\362\221\0\0\0\0\2X\0\215Nw\0\300\374\214\177\0\314\377" - "\1|\0\306\377\224\177\0\314\377\1|\0\307\377\214\177\0\314\377\2u\0\274" - "\377\32\0*\377\203\0\0\0\377\2\0\0\0\374\0\0\0c\236\0\0\0\0\1\0\0\0-" - "\205\0\0\0\377\1N\0}\377\223\177\0\314\377\2\177\0\314\371\200\0\277" - "\10\225\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377" - "\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1o\0\261\362" - "\222\0\0\0\0\2Y\0\216\77u\0\274\372\254\177\0\314\377\2r\0\267\377\24" - "\0!\377\203\0\0\0\377\2\0\0\0\371\0\0\0U\237\0\0\0\0\1\0\0\0W\205\0\0" - "\0\377\1c\0\237\377\223\177\0\314\377\1\177\0\314\311\226\0\0\0\0\1\0" - "\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\214" - "\0\0\0\0\1%\0<\377\207\177\0\314\377\1o\0\261\362\223\0\0\0\0\2X\0\222" - "1r\0\267\370\252\177\0\314\377\2n\0\260\377\20\0\32\377\203\0\0\0\377" - "\2\0\0\0\365\0\0\0I\240\0\0\0\0\1\0\0\0\204\205\0\0\0\377\1y\0\302\377" - "\223\177\0\314\377\1\177\0\315\223\226\0\0\0\0\1\0\0\0<\202\0\0\0\377" - "\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377" - "\207\177\0\314\377\1o\0\261\362\224\0\0\0\0\2\\\0\225$p\0\263\364\250" - "\177\0\314\377\2j\0\252\377\14\0\24\377\203\0\0\0\377\2\0\0\0\360\0\0" - "\0<\241\0\0\0\0\1\0\0\0\256\204\0\0\0\377\1\15\0\25\377\224\177\0\314" - "\377\1\200\0\315f\226\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213" - "\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377" - "\1o\0\261\362\225\0\0\0\0\2b\0\235\32m\0\256\357\246\177\0\314\377\2" - "d\0\241\377\11\0\16\377\203\0\0\0\377\2\0\0\0\352\0\0\0""2\242\0\0\0" - "\0\1\0\0\0\323\204\0\0\0\377\1\36\0""1\377\224\177\0\314\377\1\200\0" - "\314<\226\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377" - "\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1o\0\261\362" - "\226\0\0\0\0\2i\0\245\21j\0\251\350\244\177\0\314\377\2_\0\231\377\6" - "\0\12\377\203\0\0\0\377\2\0\0\0\343\0\0\0(\242\0\0\0\0\2\0\0\0\1\0\0" - "\0\367\204\0\0\0\377\1/\0L\377\224\177\0\314\377\1w\0\314\17\226\0\0" - "\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314" - "\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1o\0\261\362\227\0\0\0\0" - "\2t\0\271\13g\0\245\336\242\177\0\314\377\2Y\0\216\377\4\0\6\377\203" - "\0\0\0\377\2\0\0\0\332\0\0\0\40\243\0\0\0\0\1\0\0\0\34\205\0\0\0\377" - "\1@\0g\377\223\177\0\314\377\1\177\0\314\343\227\0\0\0\0\1\0\0\0<\202" - "\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0" - "\1%\0<\377\207\177\0\314\377\1o\0\261\362\230\0\0\0\0\2\200\0\325\6e" - "\0\241\324\240\177\0\314\377\2R\0\204\377\2\0\4\377\203\0\0\0\377\2\0" - "\0\0\322\0\0\0\30\244\0\0\0\0\1\0\0\0<\205\0\0\0\377\1P\0\201\377\223" - "\177\0\314\377\1\200\0\314\276\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z" - "\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207" - "\177\0\314\377\1o\0\261\362\231\0\0\0\0\2U\0\252\3c\0\236\307\236\177" - "\0\314\377\2K\0y\377\1\0\2\377\203\0\0\0\377\2\0\0\0\307\0\0\0\22\245" - "\0\0\0\0\1\0\0\0^\205\0\0\0\377\1`\0\232\377\223\177\0\314\377\1\200" - "\0\314\234\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0" - "\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1o\0" - "\261\362\232\0\0\0\0\2\0\0\377\1`\0\232\271\234\177\0\314\377\2D\0m\377" - "\0\0\1\377\203\0\0\0\377\2\0\0\0\275\0\0\0\14\246\0\0\0\0\1\0\0\0~\205" - "\0\0\0\377\1q\0\266\377\223\177\0\314\377\1\200\0\314|\227\0\0\0\0\1" - "\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303" - "\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1o\0\261\362\234\0\0\0\0\1^" - "\0\227\246\232\177\0\314\377\1<\0`\377\204\0\0\0\377\2\0\0\0\260\0\0" - "\0\7\247\0\0\0\0\1\0\0\0\237\204\0\0\0\377\2\3\0\5\377~\0\312\377\223" - "\177\0\314\377\1\200\0\315\\\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0" - "\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207" - "\177\0\314\377\1o\0\261\362\235\0\0\0\0\2\\\0\224\226\177\0\313\377\226" - "\177\0\314\377\2~\0\312\3774\0S\377\204\0\0\0\377\2\0\0\0\244\0\0\0\4" - "\250\0\0\0\0\1\0\0\0\301\204\0\0\0\377\1\20\0\32\377\224\177\0\314\377" - "\1\200\0\313@\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177" - "\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1" - "o\0\261\362\236\0\0\0\0\2Z\0\220\203~\0\312\377\224\177\0\314\377\2}" - "\0\311\377-\0I\377\204\0\0\0\377\2\0\0\0\225\0\0\0\1\251\0\0\0\0\1\0" - "\0\0\341\204\0\0\0\377\1\33\0+\377\224\177\0\314\377\1\200\0\314(\227" - "\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177" - "\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1o\0\261\362\237\0" - "\0\0\0\2Y\0\217r|\0\307\376\222\177\0\314\377\2{\0\306\377&\0>\377\204" - "\0\0\0\377\1\0\0\0\205\253\0\0\0\0\1\0\0\0\371\204\0\0\0\377\1&\0>\377" - "\224\177\0\314\377\1\200\0\314\24\227\0\0\0\0\1\0\0\0<\202\0\0\0\377" - "\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377" - "\207\177\0\314\377\1o\0\261\362\240\0\0\0\0\2Y\0\216az\0\304\376\220" - "\177\0\314\377\2y\0\302\377!\0""5\377\203\0\0\0\377\2\0\0\0\376\0\0\0" - "v\253\0\0\0\0\1\0\0\0\20\205\0\0\0\377\1""1\0N\377\223\177\0\314\377" - "\2\177\0\314\373\0\0\377\1\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220" - "\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177" - "\0\314\377\1o\0\261\362\241\0\0\0\0\2X\0\221Qx\0\300\375\216\177\0\314" - "\377\2v\0\276\377\33\0+\377\203\0\0\0\377\2\0\0\0\374\0\0\0g\254\0\0" - "\0\0\1\0\0\0&\205\0\0\0\377\1<\0`\377\223\177\0\314\377\1\177\0\314\347" - "\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1" - "\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177\0\314\377\1o\0\261\362\242" - "\0\0\0\0\2X\0\221Cv\0\275\373\214\177\0\314\377\2s\0\270\377\26\0$\377" - "\203\0\0\0\377\2\0\0\0\372\0\0\0Y\255\0\0\0\0\1\0\0\0;\205\0\0\0\377" - "\1G\0r\377\223\177\0\314\377\1\177\0\314\321\230\0\0\0\0\1\0\0\0<\202" - "\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0" - "\1%\0<\377\207\177\0\314\377\1o\0\261\362\243\0\0\0\0\2]\0\2234s\0\270" - "\370\212\177\0\314\377\2o\0\262\377\21\0\34\377\203\0\0\0\377\2\0\0\0" - "\366\0\0\0K\256\0\0\0\0\1\0\0\0Q\205\0\0\0\377\1Q\0\202\377\223\177\0" - "\314\377\1\177\0\315\273\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220" - "\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\1%\0<\377\207\177" - "\0\314\377\1o\0\261\362\244\0\0\0\0\2]\0\225)p\0\264\365\210\177\0\314" - "\377\2k\0\253\377\16\0\26\377\203\0\0\0\377\2\0\0\0\362\0\0\0@\257\0" - "\0\0\0\1\0\0\0f\205\0\0\0\377\1X\0\216\377\223\177\0\314\377\1\200\0" - "\314\260\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314" - "\377\1\177\0\314\303\214\0\0\0\0\1#\0""8\377\207w\0\276\377\1i\0\250" - "\356\245\0\0\0\0\2d\0\244\34m\0\257\360\206\177\0\314\377\2f\0\244\377" - "\12\0\20\377\203\0\0\0\377\2\0\0\0\354\0\0\0""4\260\0\0\0\0\1\0\0\0}" - "\205\0\0\0\377\1]\0\225\377\223\177\0\314\377\1\177\0\314\245\230\0\0" - "\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314" - "\303\214\0\0\0\0\210\0\0\0\377\1\0\0\0\264\246\0\0\0\0\2f\0\246\24k\0" - "\254\351\204\177\0\314\377\2`\0\232\377\7\0\13\377\203\0\0\0\377\2\0" - "\0\0\345\0\0\0+\261\0\0\0\0\1\0\0\0\207\205\0\0\0\377\1a\0\234\377\223" - "\177\0\314\377\1\200\0\315\230\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z" - "\0\220\377\213\177\0\314\377\1\177\0\314\303\214\0\0\0\0\210\0\0\0\377" - "\1\0\0\0\264\247\0\0\0\0\2t\0\271\13h\0\247\342\202\177\0\314\377\2Z" - "\0\221\377\5\0\10\377\203\0\0\0\377\2\0\0\0\336\0\0\0!\262\0\0\0\0\1" - "\0\0\0\226\205\0\0\0\377\1i\0\250\377\223\177\0\314\377\1\177\0\313\217" - "\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1" - "\177\0\314\303\214\0\0\0\0\210\0\0\0w\1\0\0\0T\250\0\0\0\0\4\200\0\325" - "\6f\0\244\327T\0\206\377\3\0\5\377\203\0\0\0\377\2\0\0\0\324\0\0\0\32" - "\263\0\0\0\0\1\0\0\0\237\205\0\0\0\377\1m\0\257\377\223\177\0\314\377" - "\1\200\0\314\206\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213" - "\177\0\314\377\1\177\0\314\303\243\0\0\0\0\16m\0\333\7\200\0\314(~\0" - "\315G\200\0\313b\200\0\314t\200\0\314|\200\0\314\210\177\0\314\221\200" - "\0\313\200~\0\315k~\0\315Q}\0\313;\200\0\310\34\200\0\377\2\215\0\0\0" - "\0\3U\0\252\3\2\0\4w\0\0\0\376\202\0\0\0\377\2\0\0\0\313\0\0\0\23\264" - "\0\0\0\0\1\0\0\0\250\205\0\0\0\377\1r\0\266\377\223\177\0\314\377\1\200" - "\0\314x\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314" - "\377\1\177\0\314\303\236\0\0\0\0\6\200\0\314\36~\0\314_\200\0\314\214" - "\177\0\314\265\200\0\314\334\200\0\314\374\214\177\0\314\377\5\200\0" - "\314\372\200\0\314\330\177\0\314\245\200\0\313l\200\0\317\40\213\0\0" - "\0\0\4\0\0\0f\0\0\0\374\0\0\0\277\0\0\0\15\265\0\0\0\0\1\0\0\0\264\205" - "\0\0\0\377\1x\0\300\377\223\177\0\314\377\1\200\0\314n\230\0\0\0\0\1" - "\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303" - "\232\0\0\0\0\4t\0\321\13\200\0\315V\200\0\314\232\200\0\314\334\227\177" - "\0\314\377\3\200\0\314\314\200\0\313lx\0\322\21\211\0\0\0\0\2\0\0\0D" - "\0\0\0\11\266\0\0\0\0\1\0\0\0\300\205\0\0\0\377\1x\0\300\377\223\177" - "\0\314\377\1~\0\314i\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377" - "\213\177\0\314\377\1\177\0\314\303\227\0\0\0\0\4m\0\333\7~\0\313O\177" - "\0\315\247\200\0\314\364\234\177\0\314\377\3\200\0\314\366\200\0\314" - "\244}\0\315=\277\0\0\0\0\1\0\0\0\311\205\0\0\0\377\1x\0\300\377\223\177" - "\0\314\377\1~\0\314w\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377" - "\213\177\0\314\377\1\177\0\314\303\225\0\0\0\0\3}\0\3153\177\0\315\223" - "\200\0\314\356\242\177\0\314\377\2\177\0\313\301\200\0\3164\275\0\0\0" - "\0\1\0\0\0\322\205\0\0\0\377\1x\0\300\377\223\177\0\314\377\1\200\0\314" - "x\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1" - "\177\0\314\303\222\0\0\0\0\3\200\0\325\6~\0\315[\177\0\314\311\245\177" - "\0\314\377\4}\0\312\360\200\0\314\366\200\0\314\226t\0\321\13\273\0\0" - "\0\0\1\0\0\0\322\205\0\0\0\377\1x\0\300\377\223\177\0\314\377\1\200\0" - "\314x\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377" - "\1\177\0\314\303\220\0\0\0\0\3y\0\316\25~\0\315\177\177\0\314\347\246" - "\177\0\314\377\2~\0\312\377u\0\274\377\202\177\0\314\377\2\200\0\314" - "\334\200\0\314<\272\0\0\0\0\1\0\0\0\322\205\0\0\0\377\1x\0\300\377\223" - "\177\0\314\377\1\200\0\314x\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220" - "\377\213\177\0\314\377\1\177\0\314\303\216\0\0\0\0\3y\0\316\25\177\0" - "\315\211\177\0\314\363\250\177\0\314\377\1v\0\276\377\204\177\0\314\377" - "\3\177\0\314\375\200\0\313\200U\0\252\3\270\0\0\0\0\1\0\0\0\322\205\0" - "\0\0\377\1u\0\273\377\223\177\0\314\377\1\200\0\314x\230\0\0\0\0\1\0" - "\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\214" - "\0\0\0\0\3\200\0\317\20\200\0\314\210\177\0\314\363\251\177\0\314\377" - "\202|\0\306\377\206\177\0\314\377\2~\0\311\276\200\0\317\20\267\0\0\0" - "\0\1\0\0\0\304\205\0\0\0\377\1p\0\264\377\223\177\0\314\377\1\200\0\314" - "x\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1" - "\177\0\314\303\212\0\0\0\0\3\200\0\377\2\200\0\314j\177\0\314\353\253" - "\177\0\314\377\1y\0\302\377\210\177\0\314\377\2{\0\305\332{\0\320\33" - "\266\0\0\0\0\1\0\0\0\303\205\0\0\0\377\1n\0\260\377\223\177\0\314\377" - "\1\177\0\314\203\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213" - "\177\0\314\377\1\177\0\314\303\211\0\0\0\0\2}\0\312\77\200\0\314\316" - "\254\177\0\314\377\2{\0\306\377\177\0\313\377\211\177\0\314\377\2y\0" - "\302\356\200\0\316*\265\0\0\0\0\1\0\0\0\303\205\0\0\0\377\1g\0\245\377" - "\223\177\0\314\377\1\177\0\314\221\230\0\0\0\0\1\0\0\0<\202\0\0\0\377" - "\1Z\0\220\377\213\177\0\314\377\1\177\0\314\303\207\0\0\0\0\3w\0\314" - "\17\200\0\314\232\200\0\314\376\254\177\0\314\377\2\177\0\313\377}\0" - "\311\377\213\177\0\314\377\2x\0\300\370k\0\254+\264\0\0\0\0\1\0\0\0\303" - "\205\0\0\0\377\1`\0\232\377\223\177\0\314\377\1\200\0\313\236\230\0\0" - "\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314" - "\303\206\0\0\0\0\2\200\0\313J\177\0\314\343\256\177\0\314\377\1\177\0" - "\313\377\215\177\0\314\377\2n\0\260\364:\0c\37\263\0\0\0\0\1\0\0\0\274" - "\205\0\0\0\377\1Y\0\217\377\223\177\0\314\377\1\200\0\315\254\230\0\0" - "\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1\177\0\314" - "\303\204\0\0\0\0\2t\0\321\13\200\0\314\234\277\177\0\314\377\2b\0\236" - "\364\27\0'!\262\0\0\0\0\1\0\0\0\256\205\0\0\0\377\1R\0\204\377\223\177" - "\0\314\377\1\200\0\314\272\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220" - "\377\213\177\0\314\377\1\177\0\314\303\203\0\0\0\0\2\200\0\3142\200\0" - "\314\330\301\177\0\314\377\2P\0\201\361\0\0\0\25\261\0\0\0\0\1\0\0\0" - "\240\205\0\0\0\377\1K\0x\377\223\177\0\314\377\1\200\0\314\310\230\0" - "\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\5\177\0" - "\314\303\0\0\0\0\0\0\377\1\200\0\314n\200\0\314\370\303\177\0\314\377" - "\2=\0a\337\0\0\0\12\260\0\0\0\0\1\0\0\0\222\205\0\0\0\377\1D\0m\377\223" - "\177\0\314\377\1\200\0\314\326\230\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z" - "\0\220\377\213\177\0\314\377\3\177\0\314\303y\0\311\23\177\0\314\257" - "\305\177\0\314\377\3|\0\306\377\34\0.\275\0\0\0\1\257\0\0\0\0\1\0\0\0" - "\204\205\0\0\0\377\1""9\0\\\377\223\177\0\314\377\1\177\0\314\353\230" - "\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\2~\0\313" - "\316\200\0\314\336\307\177\0\314\377\2d\0\241\377\2\0\4\210\257\0\0\0" - "\0\1\0\0\0v\205\0\0\0\377\1+\0F\377\224\177\0\314\377\1\200\0\277\10" - "\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\213\177\0\314\377\1" - "~\0\314\374\311\177\0\314\377\2;\0^\376\0\0\0Y\256\0\0\0\0\1\0\0\0h\205" - "\0\0\0\377\1\35\0.\377\224\177\0\314\377\1|\0\317%\227\0\0\0\0\1\0\0" - "\0<\202\0\0\0\377\1Z\0\220\377\261\177\0\314\377\11z\0\303\377f\0\244" - "\377V\0\212\377Q\0\202\377L\0z\377E\0o\377O\0\177\377[\0\222\377p\0\263" - "\377\233\177\0\314\377\3z\0\304\377\13\0\23\366\0\0\0+\255\0\0\0\0\1" - "\0\0\0W\205\0\0\0\377\1\16\0\27\377\224\177\0\314\377\1~\0\316C\227\0" - "\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\255\177\0\314\377\4v\0\275" - "\377V\0\212\3775\0V\377\25\0\"\377\211\0\0\0\377\3\20\0\32\3778\0Z\377" - "s\0\270\377\231\177\0\314\377\3E\0n\377\0\0\0\311\0\0\0\3\254\0\0\0\0" - "\1\0\0\0>\205\0\0\0\377\2\2\0\3\377~\0\312\377\223\177\0\314\377\1~\0" - "\314_\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\252\177\0\314\377" - "\4r\0\267\377H\0s\377\33\0,\377\1\0\2\377\216\0\0\0\377\3\5\0\11\377" - "E\0o\377}\0\311\377\227\177\0\314\377\3y\0\302\377\12\0\21\377\0\0\0" - "v\254\0\0\0\0\1\0\0\0!\206\0\0\0\377\1q\0\266\377\223\177\0\314\377\1" - "\200\0\314|\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\247\177\0" - "\314\377\4\177\0\313\377[\0\222\377$\0:\377\1\0\2\377\223\0\0\0\377\2" - "\32\0*\377q\0\266\377\227\177\0\314\377\3A\0i\377\0\0\0\367\0\0\0'\253" - "\0\0\0\0\2\0\0\0\6\0\0\0\376\205\0\0\0\377\1c\0\236\377\223\177\0\314" - "\377\1\200\0\315\242\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377" - "\245\177\0\314\377\3}\0\311\377N\0~\377\23\0\36\377\211\0\0\0\377\14" - "\0\0\0\345\0\0\0\264\0\0\0\213\0\0\0j\0\0\0]\0\0\0U\0\0\0E\0\0\0J\0\0" - "\0Y\0\0\0\205\0\0\0\274\0\0\0\367\202\0\0\0\377\2\16\0\27\377i\0\251" - "\377\226\177\0\314\377\3u\0\274\377\4\0\7\377\0\0\0\251\254\0\0\0\0\1" - "\0\0\0\350\205\0\0\0\377\1T\0\206\377\223\177\0\314\377\1\177\0\314\317" - "\227\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\243\177\0\314\377\3" - "}\0\311\377O\0\177\377\21\0\33\377\207\0\0\0\377\4\0\0\0\353\0\0\0\252" - "\0\0\0j\0\0\0(\213\0\0\0\0\2\0\0\0\14\0\0\0^\202\0\0\0\377\2\10\0\16" - "\377d\0\241\377\226\177\0\314\377\3""2\0Q\377\0\0\0\375\0\0\0+\253\0" - "\0\0\0\1\0\0\0\312\205\0\0\0\377\1B\0j\377\223\177\0\314\377\2\200\0" - "\314\370\200\0\277\4\226\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377" - "\242\177\0\314\377\2W\0\213\377\22\0\36\377\206\0\0\0\377\4\0\0\0\356" - "\0\0\0\234\0\0\0D\0\0\0\3\220\0\0\0\0\5\0\0\0\6\0\0\0\201\0\0\0\373\12" - "\0\21\377n\0\260\377\225\177\0\314\377\3d\0\241\377\0\0\0\377\0\0\0\247" - "\253\0\0\0\0\1\0\0\0\255\205\0\0\0\377\1""0\0N\377\224\177\0\314\377" - "\1\200\0\313,\226\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\240\177" - "\0\314\377\2j\0\252\377!\0""6\377\206\0\0\0\377\3\0\0\0\314\0\0\0_\0" - "\0\0\7\225\0\0\0\0\4\0\0\0""6\0\0\0\347\35\0.\377~\0\312\377\225\177" - "\0\314\377\3\22\0\35\377\0\0\0\375\0\0\0$\252\0\0\0\0\1\0\0\0\221\205" - "\0\0\0\377\1\33\0+\377\224\177\0\314\377\1\200\0\314Z\226\0\0\0\0\1\0" - "\0\0<\202\0\0\0\377\1Z\0\220\377\236\177\0\314\377\3z\0\303\3777\0X\377" - "\2\0\3\377\205\0\0\0\377\2\0\0\0\267\0\0\0;\231\0\0\0\0\3\0\0\0\"\0\0" - "\0\331H\0s\377\225\177\0\314\377\3\77\0e\377\0\0\0\377\0\0\0\222\252" - "\0\0\0\0\1\0\0\0t\205\0\0\0\377\2\5\0\11\377~\0\312\377\223\177\0\314" - "\377\1\177\0\314\207\226\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377" - "\235\177\0\314\377\2^\0\226\377\20\0\32\377\205\0\0\0\377\2\0\0\0\271" - "\0\0\0""9\234\0\0\0\0\3\0\0\0\25\6\0\13\316o\0\262\377\224\177\0\314" - "\377\4i\0\250\377\0\0\0\377\0\0\0\363\0\0\0\20\251\0\0\0\0\1\0\0\0P\206" - "\0\0\0\377\1m\0\257\377\223\177\0\314\377\1\200\0\314\272\226\0\0\0\0" - "\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\233\177\0\314\377\3z\0\304\3773" - "\0R\377\0\0\1\377\204\0\0\0\377\2\0\0\0\307\0\0\0;\237\0\0\0\0\2\0\0" - "\0\34""5\0T\356\224\177\0\314\377\4~\0\312\377\7\0\14\377\0\0\0\377\0" - "\0\0i\251\0\0\0\0\1\0\0\0,\206\0\0\0\377\1W\0\213\377\223\177\0\314\377" - "\2\200\0\314\362U\0\252\3\225\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220" - "\377\232\177\0\314\377\2m\0\257\377\35\0/\377\204\10\0\16\377\3\11\0" - "\17\350\24\0#fq\0\306\22\213x\0\322\21\1f\0\314\5\225\0\0\0\0\2\10\0" - "\21=q\0\265\377\224\177\0\314\377\3#\0""9\377\0\0\0\377\0\0\0\303\251" - "\0\0\0\0\2\0\0\0\11\0\0\0\373\205\0\0\0\377\1@\0f\377\224\177\0\314\377" - "\1}\0\3153\225\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\256\177\0" - "\314\377\1~\0\314K\226\0\0\0\0\1T\0\207\310\224\177\0\314\377\4@\0g\377" - "\0\0\0\377\0\0\0\376\0\0\0\37\251\0\0\0\0\1\0\0\0\325\205\0\0\0\377\1" - "(\0A\377\224\177\0\314\377\1\200\0\315p\225\0\0\0\0\1\0\0\0<\202\0\0" - "\0\377\1Z\0\220\377\256\177\0\314\377\1~\0\314K\226\0\0\0\0\1k\0\255" - "2\224\177\0\314\377\1Y\0\216\377\202\0\0\0\377\1\0\0\0v\251\0\0\0\0\1" - "\0\0\0\250\205\0\0\0\377\1\22\0\35\377\224\177\0\314\377\1\200\0\314" - "\264\225\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\256\177\0\314\377" - "\1~\0\314K\227\0\0\0\0\1y\0\301\344\223\177\0\314\377\1j\0\252\377\202" - "\0\0\0\377\1\0\0\0\267\251\0\0\0\0\1\0\0\0{\205\0\0\0\377\2\1\0\2\377" - "w\0\277\377\223\177\0\314\377\2\177\0\314\365m\0\333\7\224\0\0\0\0\1" - "\0\0\0<\202\0\0\0\377\1Z\0\220\377\256\177\0\314\377\1~\0\314K\227\0" - "\0\0\0\1\200\0\314\234\223\177\0\314\377\5|\0\306\377\0\0\1\377\0\0\0" - "\377\0\0\0\360\0\0\0\2\250\0\0\0\0\1\0\0\0M\206\0\0\0\377\1Z\0\220\377" - "\224\177\0\314\377\1~\0\313E\224\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0" - "\220\377\256\177\0\314\377\1""7\0Y\253\227\0\0\0\0\1~\0\313c\224\177" - "\0\314\377\1\13\0\22\377\202\0\0\0\377\1\0\0\0+\250\0\0\0\0\1\0\0\0\36" - "\206\0\0\0\377\1;\0_\377\224\177\0\314\377\1\200\0\315\216\224\0\0\0" - "\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\256\177\0\314\377\1%\0<\377\227" - "\0\0\0\0\1\200\0\3120\224\177\0\314\377\1\31\0(\377\202\0\0\0\377\1\0" - "\0\0c\251\0\0\0\0\1\0\0\0\360\205\0\0\0\377\1\35\0/\377\224\177\0\314" - "\377\2\177\0\314\341\0\0\377\1\223\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z" - "\0\220\377\256\177\0\314\377\1%\0<\377\227\0\0\0\0\1\200\0\306\22\224" - "\177\0\314\377\1'\0>\377\202\0\0\0\377\1\0\0\0\215\251\0\0\0\0\1\0\0" - "\0\302\205\0\0\0\377\2\2\0\4\377x\0\300\377\224\177\0\314\377\1}\0\314" - "7\223\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\256\177\0\314\377\1" - "%\0<\377\230\0\0\0\0\1\200\0\314\366\223\177\0\314\377\1""3\0R\377\202" - "\0\0\0\377\1\0\0\0\261\251\0\0\0\0\1\0\0\0\214\206\0\0\0\377\1V\0\212" - "\377\224\177\0\314\377\1\200\0\314\214\223\0\0\0\0\1\0\0\0<\202\0\0\0" - "\377\1Z\0\220\377\256\177\0\314\377\1%\0<\377\230\0\0\0\0\1\200\0\314" - "\360\223\177\0\314\377\1""4\0T\377\202\0\0\0\377\1\0\0\0\323\251\0\0" - "\0\0\1\0\0\0O\206\0\0\0\377\1""2\0Q\377\224\177\0\314\377\2\177\0\314" - "\345\200\0\277\4\222\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\256" - "\177\0\314\377\1%\0<\377\230\0\0\0\0\1\177\0\314\375\223\177\0\314\377" - "\1""4\0T\377\202\0\0\0\377\1\0\0\0\357\251\0\0\0\0\2\0\0\0\24\0\0\0\376" - "\205\0\0\0\377\2\16\0\26\377\177\0\313\377\224\177\0\314\377\1~\0\314" - "K\222\0\0\0\0\1\0\0\0<\202\0\0\0\377\1Z\0\220\377\256\177\0\314\377\1" - "%\0<\377\230\0\0\0\0\224\177\0\314\377\1""4\0T\377\203\0\0\0\377\1\0" - "\0\0\14\251\0\0\0\0\1\0\0\0\326\206\0\0\0\377\1c\0\236\377\224\177\0" - "\314\377\1\200\0\314\256\222\0\0\0\0\1\0\0\0<\202\0\0\0\377\1<\0`\377" - "\256U\0\210\377\1\31\0(\377\227\0\0\0\0\1\200\0\377\2\224\177\0\314\377" - "\1""1\0N\377\203\0\0\0\377\1\0\0\0(\251\0\0\0\0\1\0\0\0\221\206\0\0\0" - "\377\1""8\0Z\377\224\177\0\314\377\2\177\0\314\373\200\0\314\36\221\0" - "\0\0\0\1\0\0\0<\262\0\0\0\377\227\0\0\0\0\1\200\0\316\32\224\177\0\314" - "\377\1#\0""8\377\203\0\0\0\377\1\0\0\0D\251\0\0\0\0\1\0\0\0I\206\0\0" - "\0\377\2\20\0\32\377\177\0\313\377\224\177\0\314\377\1\177\0\314\221" - "\221\0\0\0\0\1\0\0\0<\262\0\0\0\377\227\0\0\0\0\1\200\0\312:\224\177" - "\0\314\377\1\24\0\40\377\203\0\0\0\377\1\0\0\0@\251\0\0\0\0\2\0\0\0\11" - "\0\0\0\366\206\0\0\0\377\1_\0\231\377\224\177\0\314\377\2\177\0\314\367" - "{\0\312\35\220\0\0\0\0\1\0\0\0<\262\0\0\0\377\227\0\0\0\0\1~\0\314o\224" - "\177\0\314\377\1\5\0\10\377\203\0\0\0\377\1\0\0\0<\252\0\0\0\0\1\0\0" - "\0\270\206\0\0\0\377\1.\0J\377\225\177\0\314\377\1\177\0\313\231\220" - "\0\0\0\0\1\0\0\0<\262\0\0\0\377\227\0\0\0\0\1\200\0\313\250\223\177\0" - "\314\377\1v\0\275\377\204\0\0\0\377\1\0\0\0<\252\0\0\0\0\1\0\0\0d\206" - "\0\0\0\377\2\5\0\10\377x\0\300\377\224\177\0\314\377\2\200\0\314\372" - "\200\0\314(\217\0\0\0\0\1\0\0\0""8\262\0\0\0\356\227\0\0\0\0\1\177\0" - "\314\343\223\177\0\314\377\1d\0\240\377\204\0\0\0\377\1\0\0\0<\252\0" - "\0\0\0\2\0\0\0\24\0\0\0\374\206\0\0\0\377\1I\0u\377\225\177\0\314\377" - "\1\177\0\314\271\330\0\0\0\0\1\200\0\314(\224\177\0\314\377\1R\0\203" - "\377\204\0\0\0\377\1\0\0\0)\253\0\0\0\0\1\0\0\0\274\206\0\0\0\377\2\22" - "\0\35\377~\0\312\377\225\177\0\314\377\1\200\0\313T\327\0\0\0\0\1~\0" - "\315\177\224\177\0\314\377\1;\0^\377\204\0\0\0\377\1\0\0\0\14\253\0\0" - "\0\0\1\0\0\0e\207\0\0\0\377\1X\0\215\377\225\177\0\314\377\2\200\0\314" - "\342w\0\314\17\326\0\0\0\0\1\177\0\314\327\224\177\0\314\377\1\36\0""0" - "\377\203\0\0\0\377\1\0\0\0\355\254\0\0\0\0\2\0\0\0\15\0\0\0\364\206\0" - "\0\0\377\1\40\0""3\377\226\177\0\314\377\1\200\0\314\240\325\0\0\0\0" - "\1}\0\316/\224\177\0\314\377\2|\0\307\377\4\0\6\377\203\0\0\0\377\1\0" - "\0\0\317\255\0\0\0\0\1\0\0\0\237\207\0\0\0\377\1g\0\245\377\226\177\0" - "\314\377\1\200\0\315R\324\0\0\0\0\1\177\0\314\237\224\177\0\314\377\1" - "d\0\240\377\204\0\0\0\377\1\0\0\0\261\255\0\0\0\0\1\0\0\0=\207\0\0\0" - "\377\1.\0J\377\226\177\0\314\377\2\177\0\314\353\200\0\317\40\322\0\0" - "\0\0\2\200\0\314\36\177\0\314\371\224\177\0\314\377\1@\0g\377\204\0\0" - "\0\377\1\0\0\0\213\256\0\0\0\0\1\0\0\0\316\206\0\0\0\377\2\1\0\2\377" - "k\0\254\377\226\177\0\314\377\2\200\0\314\322\200\0\314\24\321\0\0\0" - "\0\1\177\0\314\245\225\177\0\314\377\1\24\0!\377\204\0\0\0\377\1\0\0" - "\0h\256\0\0\0\0\1\0\0\0^\207\0\0\0\377\1+\0F\377\227\177\0\314\377\2" - "\200\0\314\310t\0\321\13\317\0\0\0\0\2}\0\315=\200\0\314\376\224\177" - "\0\314\377\1i\0\250\377\205\0\0\0\377\1\0\0\0""3\256\0\0\0\0\2\0\0\0" - "\6\0\0\0\346\206\0\0\0\377\2\0\0\1\377h\0\246\377\227\177\0\314\377\2" - "\177\0\314\275\200\0\277\10\315\0\0\0\0\2\200\0\277\4\200\0\314\322\225" - "\177\0\314\377\1=\0b\377\204\0\0\0\377\2\0\0\0\365\0\0\0\4\257\0\0\0" - "\0\1\0\0\0|\207\0\0\0\377\1\40\0""4\377\230\177\0\314\377\2\177\0\314" - "\253U\0\252\3\314\0\0\0\0\1\200\0\315p\225\177\0\314\377\2}\0\311\377" - "\17\0\30\377\204\0\0\0\377\1\0\0\0\276\260\0\0\0\0\2\0\0\0\24\0\0\0\366" - "\207\0\0\0\377\1T\0\206\377\230\177\0\314\377\2\200\0\314\256\200\0\314" - "\12\312\0\0\0\0\2\200\0\315.\200\0\314\366\225\177\0\314\377\1T\0\207" - "\377\205\0\0\0\377\1\0\0\0\205\261\0\0\0\0\1\0\0\0\231\207\0\0\0\377" - "\2\15\0\26\377y\0\302\377\230\177\0\314\377\2\200\0\314\326\200\0\316" - "4\310\0\0\0\0\2\200\0\325\14\200\0\314\330\226\177\0\314\377\1\34\0-" - "\377\205\0\0\0\377\1\0\0\0@\261\0\0\0\0\2\0\0\0\40\0\0\0\371\207\0\0" - "\0\377\1""3\0R\377\231\177\0\314\377\3\177\0\314\375\177\0\315\235{\0" - "\312\35\305\0\0\0\0\2U\0\252\3\177\0\315\261\226\177\0\314\377\1`\0\232" - "\377\205\0\0\0\377\2\0\0\0\345\0\0\0\2\262\0\0\0\0\1\0\0\0\225\207\0" - "\0\0\377\2\0\0\1\377[\0\222\377\232\177\0\314\377\3\200\0\314\366\200" - "\0\315\204\200\0\317\20\302\0\0\0\0\2\0\0\377\1\200\0\315\230\227\177" - "\0\314\377\1$\0:\377\205\0\0\0\377\1\0\0\0\220\263\0\0\0\0\2\0\0\0\33" - "\0\0\0\366\207\0\0\0\377\2\14\0\24\377v\0\275\377\233\177\0\314\377\3" - "\177\0\314\353\177\0\314\201z\0\310\27\300\0\0\0\0\1\177\0\314\207\227" - "\177\0\314\377\2h\0\246\377\0\0\1\377\205\0\0\0\377\1\0\0\0:\264\0\0" - "\0\0\1\0\0\0\207\210\0\0\0\377\2#\0""8\377~\0\312\377\234\177\0\314\377" - "\3\200\0\314\370\200\0\313\236}\0\314-\274\0\0\0\0\2U\0\252\3\200\0\314" - "\234\230\177\0\314\377\1*\0C\377\205\0\0\0\377\2\0\0\0\333\0\0\0\1\264" - "\0\0\0\0\2\0\0\0\14\0\0\0\342\210\0\0\0\377\1;\0^\377\237\177\0\314\377" - "\3\177\0\314\307\200\0\313ly\0\316\25\270\0\0\0\0\2{\0\320\33\200\0\313" - "\274\230\177\0\314\377\1_\0\230\377\206\0\0\0\377\1\0\0\0m\266\0\0\0" - "\0\1\0\0\0U\210\0\0\0\377\2\0\0\1\377U\0\210\377\240\177\0\314\377\4" - "\200\0\314\372\177\0\314\263~\0\313c\200\0\312\30\263\0\0\0\0\3q\0\306" - "\11~\0\313{\177\0\314\363\230\177\0\314\377\2}\0\310\377\25\0\"\377\205" - "\0\0\0\377\2\0\0\0\357\0\0\0\14\267\0\0\0\0\1\0\0\0\270\210\0\0\0\377" - "\2\5\0\10\377i\0\250\377\242\177\0\314\377\5\200\0\314\376\177\0\314" - "\315\200\0\314\202}\0\3147\200\0\377\2\255\0\0\0\0\3\200\0\314\12\200" - "\0\313l\200\0\314\346\232\177\0\314\377\1F\0p\377\206\0\0\0\377\1\0\0" - "\0\212\270\0\0\0\0\2\0\0\0\33\0\0\0\356\210\0\0\0\377\2\21\0\34\377r" - "\0\266\377\245\177\0\314\377\5\200\0\314\352\200\0\314\252\200\0\315" - "p}\0\3147f\0\314\5\247\0\0\0\0\3}\0\314-\177\0\313\205\177\0\314\353" - "\233\177\0\314\377\2n\0\261\377\6\0\12\377\205\0\0\0\377\2\0\0\0\371" - "\0\0\0\31\271\0\0\0\0\1\0\0\0Z\211\0\0\0\377\1\26\0$\377\251\177\0\314" - "\377\6\177\0\314\365\177\0\314\277\200\0\315\204\200\0\313N\200\0\313" - "\"\0\0\377\1\236\0\0\0\0\4w\0\314\17\200\0\313J\200\0\314\220\200\0\314" - "\336\235\177\0\314\377\2|\0\307\377\31\0)\377\206\0\0\0\377\1\0\0\0\232" - "\273\0\0\0\0\1\0\0\0\246\211\0\0\0\377\1""7\0X\377\255\177\0\314\377" - "\7\200\0\314\364\200\0\315\312\200\0\313\236\200\0\314t~\0\314K\200\0" - "\315.\200\0\314\24\223\0\0\0\0\6y\0\316\25}\0\3147~\0\313g\177\0\314" - "\225\177\0\314\317\200\0\314\374\240\177\0\314\377\1""6\0V\377\206\0" - "\0\0\377\2\0\0\0\375\0\0\0&\273\0\0\0\0\2\0\0\0\12\0\0\0\322\211\0\0" - "\0\377\2\"\0""6\377|\0\307\377\262\177\0\314\377\12\177\0\314\367\177" - "\0\314\333\177\0\315\305\177\0\315\273\200\0\315\254\177\0\313\243\177" - "\0\313\231\200\0\313\212\177\0\314\201\200\0\314|\202\200\0\314\210\7" - "\177\0\314\227\177\0\313\231\177\0\314\241\200\0\314\252\200\0\315\300" - "\200\0\314\332\177\0\314\367\245\177\0\314\377\1V\0\212\377\207\0\0\0" - "\377\1\0\0\0\240\275\0\0\0\0\2\0\0\0$\0\0\0\357\211\0\0\0\377\2'\0>\377" - "{\0\305\377\350\177\0\314\377\2l\0\256\377\7\0\14\377\206\0\0\0\377\2" - "\0\0\0\360\0\0\0\30\276\0\0\0\0\2\0\0\0H\0\0\0\374\211\0\0\0\377\2\35" - "\0/\377r\0\266\377\346\177\0\314\377\2x\0\300\377\25\0\"\377\207\0\0" - "\0\377\1\0\0\0n\300\0\0\0\0\1\0\0\0y\212\0\0\0\377\2\11\0\17\377W\0\213" - "\377\344\177\0\314\377\2|\0\307\377!\0""5\377\207\0\0\0\377\2\0\0\0\321" - "\0\0\0\4\300\0\0\0\0\2\0\0\0\1\0\0\0\244\213\0\0\0\377\2""3\0R\377z\0" - "\303\377\341\177\0\314\377\2~\0\312\377*\0D\377\207\0\0\0\377\2\0\0\0" - "\373\0\0\0""8\302\0\0\0\0\2\0\0\0\3\0\0\0\261\213\0\0\0\377\2\23\0\36" - "\377e\0\242\377\340\177\0\314\377\1""4\0T\377\210\0\0\0\377\1\0\0\0v" - "\304\0\0\0\0\1\0\0\0\15\214\0\0\0\377\3\2\0\4\377=\0b\377y\0\302\377" - "\334\177\0\314\377\2\177\0\313\377;\0_\377\210\0\0\0\377\2\0\0\0\265" - "\0\0\0\1\305\0\0\0\0\2\0\0\0\17\0\0\0\313\214\0\0\0\377\3\14\0\24\377" - "J\0w\377}\0\311\377\331\177\0\314\377\2z\0\304\377,\0F\377\210\0\0\0" - "\377\2\0\0\0\343\0\0\0\24\307\0\0\0\0\2\0\0\0\25\0\0\0\323\215\0\0\0" - "\377\3\24\0!\377V\0\212\377~\0\312\377\326\177\0\314\377\2n\0\260\377" - "\30\0'\377\210\0\0\0\377\2\0\0\0\371\0\0\0<\311\0\0\0\0\2\0\0\0\21\0" - "\0\0\302\216\0\0\0\377\3\23\0\36\377J\0w\377z\0\303\377\323\177\0\314" - "\377\2N\0}\377\6\0\12\377\211\0\0\0\377\1\0\0\0j\313\0\0\0\0\2\0\0\0" - "\5\0\0\0\216\217\0\0\0\377\3\11\0\16\377;\0_\377r\0\266\377\317\177\0" - "\314\377\2s\0\270\377&\0>\377\212\0\0\0\377\1\0\0\0\226\316\0\0\0\0\2" - "\0\0\0Q\0\0\0\354\217\0\0\0\377\4\1\0\2\377'\0>\377X\0\215\377}\0\310" - "\377\312\177\0\314\377\3~\0\312\377N\0}\377\11\0\16\377\212\0\0\0\377" - "\2\0\0\0\253\0\0\0\3\317\0\0\0\0\2\0\0\0\34\0\0\0\276\221\0\0\0\377\3" - "\13\0\22\3776\0V\377d\0\240\377\307\177\0\314\377\2]\0\225\377\30\0'" - "\377\213\0\0\0\377\2\0\0\0\275\0\0\0\6\321\0\0\0\0\3\0\0\0\1\0\0\0k\0" - "\0\0\364\222\0\0\0\377\3\22\0\36\377@\0g\377m\0\257\377\301\177\0\314" - "\377\3~\0\312\377W\0\213\377\35\0.\377\214\0\0\0\377\2\0\0\0\310\0\0" - "\0\17\324\0\0\0\0\3\0\0\0\36\0\0\0\240\0\0\0\375\223\0\0\0\377\4\24\0" - "!\377:\0^\377^\0\227\377}\0\311\377\273\177\0\314\377\3t\0\272\377D\0" - "m\377\23\0\36\377\215\0\0\0\377\2\0\0\0\305\0\0\0\24\327\0\0\0\0\2\0" - "\0\0""1\0\0\0\270\225\0\0\0\377\4\7\0\14\377*\0C\377O\0\177\377n\0\261" - "\377\265\177\0\314\377\4|\0\306\377W\0\213\377'\0\77\377\2\0\4\377\216" - "\0\0\0\377\2\0\0\0\233\0\0\0\7\332\0\0\0\0\2\0\0\0H\0\0\0\306\227\0\0" - "\0\377\5\14\0\23\377(\0A\377F\0p\377c\0\236\377}\0\310\377\255\177\0" - "\314\377\4z\0\303\377W\0\213\3770\0N\377\11\0\16\377\217\0\0\0\377\2" - "\0\0\0\365\0\0\0h\336\0\0\0\0\3\0\0\0""7\0\0\0\250\0\0\0\373\230\0\0" - "\0\377\6\4\0\7\377\32\0*\3771\0N\377F\0p\377\\\0\224\377q\0\266\377\244" - "\177\0\314\377\5v\0\276\377\\\0\224\377>\0c\377\37\0""2\377\4\0\6\377" - "\221\0\0\0\377\2\0\0\0\315\0\0\0)\341\0\0\0\0\3\0\0\0\36\0\0\0\212\0" - "\0\0\357\234\0\0\0\377\10\10\0\15\377\35\0.\377/\0K\377\77\0f\377N\0" - "~\377\\\0\223\377j\0\252\377x\0\300\377\225\177\0\314\377\7w\0\277\377" - "i\0\251\377Z\0\220\377J\0w\377:\0^\377'\0>\377\17\0\30\377\224\0\0\0" - "\377\3\0\0\0\372\0\0\0\200\0\0\0\5\344\0\0\0\0\4\0\0\0\11\0\0\0\\\0\0" - "\0\301\0\0\0\376\241\0\0\0\377\15\5\0\11\377\24\0!\377\"\0""6\377,\0" - "G\3773\0R\3779\0[\377=\0b\377D\0m\377J\0v\377N\0~\377P\0\200\377L\0z" - "\377K\0x\377\202D\0m\377\6=\0b\377;\0_\377/\0L\377\"\0""6\377\24\0!\377" - "\5\0\10\377\232\0\0\0\377\2\0\0\0\307\0\0\0""1\351\0\0\0\0\3\0\0\0!\0" - "\0\0}\0\0\0\327\314\0\0\0\377\3\0\0\0\340\0\0\0Y\0\0\0\1\355\0\0\0\0" - "\3\0\0\0""4\0\0\0\220\0\0\0\350\307\0\0\0\377\3\0\0\0\326\0\0\0c\0\0" - "\0\6\361\0\0\0\0\4\0\0\0\3\0\0\0>\0\0\0\212\0\0\0\322\301\0\0\0\377\4" - "\0\0\0\374\0\0\0\265\0\0\0M\0\0\0\2\367\0\0\0\0\4\0\0\0\40\0\0\0h\0\0" - "\0\265\0\0\0\365\273\0\0\0\377\3\0\0\0\327\0\0\0z\0\0\0\32\375\0\0\0" - "\0\5\0\0\0\5\0\0\0""8\0\0\0s\0\0\0\256\0\0\0\347\264\0\0\0\377\3\0\0" - "\0\342\0\0\0\225\0\0\0""9\377\0\0\0\0\206\0\0\0\0\5\0\0\0\"\0\0\0]\0" - "\0\0\224\0\0\0\277\0\0\0\354\253\0\0\0\377\4\0\0\0\364\0\0\0\273\0\0" - "\0|\0\0\0""1\377\0\0\0\0\216\0\0\0\0\7\0\0\0\27\0\0\0C\0\0\0n\0\0\0\231" - "\0\0\0\303\0\0\0\344\0\0\0\375\237\0\0\0\377\6\0\0\0\362\0\0\0\310\0" - "\0\0\230\0\0\0j\0\0\0""7\0\0\0\4\377\0\0\0\0\227\0\0\0\0\13\0\0\0\6\0" - "\0\0\"\0\0\0=\0\0\0[\0\0\0u\0\0\0\221\0\0\0\255\0\0\0\307\0\0\0\343\0" - "\0\0\356\0\0\0\375\214\0\0\0\377\11\0\0\0\371\0\0\0\344\0\0\0\315\0\0" - "\0\265\0\0\0\227\0\0\0x\0\0\0X\0\0\0""7\0\0\0\25\377\0\0\0\0\250\0\0" - "\0\0\4\0\0\0\6\0\0\0\21\0\0\0\37\0\0\0(\202\0\0\0""3\1\0\0\0.\202\0\0" - "\0\"\3\0\0\0\23\0\0\0\21\0\0\0\11\377\0\0\0\0\377\0\0\0\0\221\0\0\0\0", -}; - - +/* Auto-generated */ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static const GdkPixdata gliv_logo = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 18588, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 752, /* rowstride */ + 188, /* width */ + 188, /* height */ + /* pixel_data: */ + "\377\0\0\0\0\377\0\0\0\0\226\0\0\0\0\2\0\0\0\17\0\0\0\40\203\0\0\0\"" + "\3\0\0\0$\0\0\0""1\0\0\0\25\377\0\0\0\0\255\0\0\0\0\10\0\0\0\36\0\0\0" + "H\0\0\0u\0\0\0\230\0\0\0\261\0\0\0\307\0\0\0\341\0\0\0\370\210\0\0\0" + "\377\11\0\0\0\371\0\0\0\342\0\0\0\306\0\0\0\260\0\0\0\223\0\0\0}\0\0" + "\0a\0\0\0F\0\0\0\36\377\0\0\0\0\236\0\0\0\0\6\0\0\0\2\0\0\0.\0\0\0l\0" + "\0\0\231\0\0\0\305\0\0\0\360\231\0\0\0\377\6\0\0\0\361\0\0\0\311\0\0" + "\0\223\0\0\0^\0\0\0*\0\0\0\2\377\0\0\0\0\224\0\0\0\0\5\0\0\0\1\0\0\0" + "/\0\0\0o\0\0\0\257\0\0\0\354\243\0\0\0\377\5\0\0\0\362\0\0\0\306\0\0" + "\0\211\0\0\0E\0\0\0\11\377\0\0\0\0\215\0\0\0\0\4\0\0\0\6\0\0\0F\0\0\0" + "\227\0\0\0\345\214\0\0\0\377\7\13\0\22\377\37\0""2\377-\0I\3779\0[\377" + "G\0r\377R\0\204\377^\0\227\377\204f\0\243\377\11j\0\252\377c\0\236\377" + "V\0\212\377H\0t\377;\0^\377.\0J\377\37\0""2\377\23\0\36\377\5\0\10\377" + "\213\0\0\0\377\4\0\0\0\367\0\0\0\277\0\0\0u\0\0\0%\377\0\0\0\0\207\0" + "\0\0\0\4\0\0\0\7\0\0\0R\0\0\0\246\0\0\0\360\211\0\0\0\377\6\5\0\11\377" + "\37\0""2\3774\0T\377K\0x\377_\0\231\377v\0\275\377\224\177\0\314\377" + "\6u\0\274\377a\0\234\377M\0|\3779\0[\377\34\0-\377\4\0\7\377\211\0\0" + "\0\377\3\0\0\0\324\0\0\0y\0\0\0\32\377\0\0\0\0\202\0\0\0\0\3\0\0\0/\0" + "\0\0\221\0\0\0\354\210\0\0\0\377\5\5\0\10\377\"\0""6\377B\0j\377b\0\235" + "\377}\0\310\377\236\177\0\314\377\5}\0\311\377i\0\250\377N\0~\377.\0" + "J\377\17\0\30\377\207\0\0\0\377\4\0\0\0\374\0\0\0\271\0\0\0\\\0\0\0\12" + "\373\0\0\0\0\3\0\0\0\17\0\0\0k\0\0\0\314\210\0\0\0\377\4\22\0\35\377" + ";\0^\377c\0\236\377}\0\310\377\247\177\0\314\377\4o\0\262\377L\0z\377" + "$\0:\377\4\0\6\377\206\0\0\0\377\3\0\0\0\357\0\0\0\206\0\0\0\27\367\0" + "\0\0\0\3\0\0\0\27\0\0\0\204\0\0\0\356\207\0\0\0\377\3\23\0\36\377\77" + "\0f\377h\0\247\377\256\177\0\314\377\4z\0\303\377X\0\216\377)\0B\377" + "\2\0\4\377\205\0\0\0\377\3\0\0\0\367\0\0\0\227\0\0\0!\363\0\0\0\0\3\0" + "\0\0""5\0\0\0\252\0\0\0\372\206\0\0\0\377\4\6\0\12\3770\0M\377a\0\233" + "\377\177\0\313\377\263\177\0\314\377\3u\0\273\377H\0t\377\31\0(\377\205" + "\0\0\0\377\3\0\0\0\375\0\0\0\252\0\0\0!\357\0\0\0\0\3\0\0\0""1\0\0\0" + "\256\0\0\0\375\206\0\0\0\377\3\35\0.\377N\0~\377y\0\302\377\271\177\0" + "\314\377\3a\0\234\377(\0@\377\1\0\2\377\204\0\0\0\377\3\0\0\0\363\0\0" + "\0\201\0\0\0\14\353\0\0\0\0\3\0\0\0\35\0\0\0\242\0\0\0\375\205\0\0\0" + "\377\3\1\0\2\377*\0C\377e\0\242\377\276\177\0\314\377\3m\0\256\3775\0" + "V\377\4\0\6\377\204\0\0\0\377\2\0\0\0\341\0\0\0F\350\0\0\0\0\3\0\0\0" + "\16\0\0\0\205\0\0\0\366\205\0\0\0\377\3\10\0\15\377@\0f\377s\0\271\377" + "\302\177\0\314\377\3u\0\274\3777\0Y\377\2\0\3\377\203\0\0\0\377\3\0\0" + "\0\376\0\0\0\233\0\0\0\20\344\0\0\0\0\3\0\0\0\4\0\0\0j\0\0\0\351\205" + "\0\0\0\377\3\2\0\4\3775\0V\377t\0\272\377\306\177\0\314\377\2f\0\244" + "\377\35\0/\377\204\0\0\0\377\2\0\0\0\345\0\0\0>\342\0\0\0\0\2\0\0\0""1" + "\0\0\0\314\206\0\0\0\377\2)\0B\377l\0\256\377\311\177\0\314\377\3~\0" + "\312\377H\0t\377\5\0\11\377\203\0\0\0\377\2\0\0\0\372\0\0\0o\337\0\0" + "\0\0\3\0\0\0\12\0\0\0\211\0\0\0\373\205\0\0\0\377\2\34\0-\377b\0\235" + "\377\315\177\0\314\377\2n\0\261\377\37\0""2\377\204\0\0\0\377\2\0\0\0" + "\244\0\0\0\10\334\0\0\0\0\2\0\0\0B\0\0\0\334\205\0\0\0\377\3\13\0\22" + "\377R\0\204\377\177\0\313\377\317\177\0\314\377\3~\0\312\377>\0c\377" + "\1\0\2\377\203\0\0\0\377\2\0\0\0\302\0\0\0\20\331\0\0\0\0\3\0\0\0\4\0" + "\0\0\207\0\0\0\375\204\0\0\0\377\3\0\0\1\3771\0N\377v\0\276\377\323\177" + "\0\314\377\2[\0\222\377\11\0\16\377\203\0\0\0\377\2\0\0\0\322\0\0\0\32" + "\327\0\0\0\0\2\0\0\0\33\0\0\0\302\205\0\0\0\377\2\22\0\36\377_\0\230" + "\377\326\177\0\314\377\2k\0\253\377\17\0\30\377\203\0\0\0\377\2\0\0\0" + "\335\0\0\0\34\325\0\0\0\0\2\0\0\0G\0\0\0\352\205\0\0\0\377\2""1\0O\377" + "{\0\305\377\330\177\0\314\377\2q\0\266\377\25\0\"\377\203\0\0\0\377\2" + "\0\0\0\324\0\0\0\21\322\0\0\0\0\3\0\0\0\4\0\0\0\205\0\0\0\375\204\0\0" + "\0\377\2\6\0\12\377R\0\204\377\333\177\0\314\377\2v\0\276\377\32\0*\377" + "\203\0\0\0\377\2\0\0\0\301\0\0\0\10\320\0\0\0\0\2\0\0\0\13\0\0\0\264" + "\205\0\0\0\377\2\31\0(\377m\0\256\377\335\177\0\314\377\2w\0\276\377" + "\25\0\"\377\203\0\0\0\377\2\0\0\0\246\0\0\0\1\316\0\0\0\0\2\0\0\0\26" + "\0\0\0\311\205\0\0\0\377\2""6\0V\377|\0\306\377\337\177\0\314\377\2q" + "\0\266\377\16\0\27\377\203\0\0\0\377\1\0\0\0o\315\0\0\0\0\2\0\0\0$\0" + "\0\0\333\204\0\0\0\377\2\1\0\2\377K\0x\377\253\177\0\314\377\7\177\0" + "\314\371\177\0\314\321\200\0\314\256\177\0\314\225\200\0\313\200~\0\315" + "k\200\0\315V\202~\0\314U\7\200\0\314Z\200\0\314r\177\0\313\217\200\0" + "\313\250\200\0\314\304\177\0\314\337\200\0\314\374\247\177\0\314\377" + "\2j\0\252\377\6\0\12\377\202\0\0\0\377\2\0\0\0\370\0\0\0""2\313\0\0\0" + "\0\2\0\0\0""4\0\0\0\351\204\0\0\0\377\2\5\0\11\377Y\0\216\377\247\177" + "\0\314\377\6\200\0\314\372\200\0\313\306\177\0\314\213\200\0\313T|\0" + "\315)\200\0\277\4\216\0\0\0\0\6m\0\333\7\200\0\313,\200\0\313T\200\0" + "\314\206\200\0\314\270\177\0\314\353\243\177\0\314\377\1Q\0\202\377\203" + "\0\0\0\377\2\0\0\0\331\0\0\0\14\311\0\0\0\0\2\0\0\0""6\0\0\0\360\204" + "\0\0\0\377\2\13\0\22\377d\0\241\377\245\177\0\314\377\4\200\0\314\322" + "\200\0\314\202~\0\314A\200\0\314\12\231\0\0\0\0\4\200\0\315$\200\0\314" + "h\200\0\314\260\200\0\314\366\240\177\0\314\377\1/\0L\377\203\0\0\0\377" + "\1\0\0\0\214\310\0\0\0\0\2\0\0\0""2\0\0\0\356\204\0\0\0\377\2\17\0\30" + "\377n\0\260\377\243\177\0\314\377\3\200\0\315\312~\0\314w|\0\317%\240" + "\0\0\0\0\4\200\0\314\12\200\0\315R\200\0\314\246\200\0\314\366\235\177" + "\0\314\377\2z\0\303\377\22\0\36\377\202\0\0\0\377\2\0\0\0\372\0\0\0*" + "\306\0\0\0\0\2\0\0\0.\0\0\0\354\204\0\0\0\377\2\16\0\26\377n\0\261\377" + "\241\177\0\314\377\3\200\0\314\356\177\0\314\221\200\0\313,\246\0\0\0" + "\0\3w\0\314\17\200\0\314d\177\0\314\317\234\177\0\314\377\1]\0\226\377" + "\203\0\0\0\377\1\0\0\0\273\305\0\0\0\0\2\0\0\0*\0\0\0\351\204\0\0\0\377" + "\2\15\0\25\377m\0\256\377\240\177\0\314\377\3\177\0\314\323\200\0\315" + "`\200\0\277\10\253\0\0\0\0\2\200\0\313D\177\0\313\301\233\177\0\314\377" + "\1(\0A\377\203\0\0\0\377\1\0\0\0P\303\0\0\0\0\2\0\0\0\34\0\0\0\344\204" + "\0\0\0\377\2\14\0\23\377k\0\254\377\237\177\0\314\377\3\200\0\315\300" + "~\0\314K\0\0\377\1\257\0\0\0\0\2\200\0\313N\177\0\314\335\231\177\0\314" + "\377\2n\0\261\377\3\0\6\377\202\0\0\0\377\2\0\0\0\322\0\0\0\1\301\0\0" + "\0\0\2\0\0\0\11\0\0\0\314\204\0\0\0\377\2\10\0\16\377j\0\252\377\236" + "\177\0\314\377\2\200\0\314\320~\0\313E\263\0\0\0\0\3\200\0\314\12\177" + "\0\315\211\200\0\314\374\230\177\0\314\377\1""9\0\\\377\203\0\0\0\377" + "\1\0\0\0F\300\0\0\0\0\2\0\0\0\1\0\0\0\245\204\0\0\0\377\2\2\0\3\377]" + "\0\225\377\235\177\0\314\377\3\200\0\314\342~\0\314_\200\0\377\2\266" + "\0\0\0\0\2\200\0\313@\177\0\314\347\227\177\0\314\377\2s\0\271\377\3" + "\0\6\377\202\0\0\0\377\1\0\0\0\267\300\0\0\0\0\1\0\0\0w\205\0\0\0\377" + "\1G\0r\377\234\177\0\314\377\3\177\0\314\365~\0\314yq\0\306\11\271\0" + "\0\0\0\2{\0\320\33\177\0\314\323\227\177\0\314\377\1""1\0O\377\202\0" + "\0\0\377\2\0\0\0\376\0\0\0*\276\0\0\0\0\2\0\0\0I\0\0\0\375\204\0\0\0" + "\377\1""0\0M\377\234\177\0\314\377\2\177\0\314\277\200\0\315$\274\0\0" + "\0\0\2x\0\322\21\177\0\314\307\226\177\0\314\377\2j\0\252\377\0\0\1\377" + "\202\0\0\0\377\1\0\0\0\222\275\0\0\0\0\2\0\0\0\24\0\0\0\350\204\0\0\0" + "\377\2\34\0.\377|\0\306\377\232\177\0\314\377\3\177\0\314\361~\0\313" + "g\0\0\377\1\276\0\0\0\0\2\200\0\306\22\177\0\314\325\226\177\0\314\377" + "\1!\0""5\377\202\0\0\0\377\2\0\0\0\354\0\0\0\7\274\0\0\0\0\1\0\0\0\247" + "\204\0\0\0\377\2\12\0\20\377r\0\266\377\232\177\0\314\377\2\200\0\314" + "\314\200\0\313\"\301\0\0\0\0\2{\0\316\37\177\0\314\355\225\177\0\314" + "\377\1Q\0\202\377\203\0\0\0\377\1\0\0\0R\273\0\0\0\0\1\0\0\0Q\205\0\0" + "\0\377\1S\0\206\377\232\177\0\314\377\2\177\0\314\225m\0\333\7\303\0" + "\0\0\0\1~\0\313O\225\177\0\314\377\2z\0\304\377\6\0\12\377\202\0\0\0" + "\377\1\0\0\0\242\272\0\0\0\0\2\0\0\0\23\0\0\0\347\204\0\0\0\377\1(\0" + "@\377\231\177\0\314\377\2\200\0\314\370\200\0\315\\\306\0\0\0\0\1\200" + "\0\314\252\225\177\0\314\377\1*\0C\377\202\0\0\0\377\2\0\0\0\353\0\0" + "\0\3\271\0\0\0\0\1\0\0\0\243\204\0\0\0\377\2\11\0\16\377s\0\270\377\230" + "\177\0\314\377\2\177\0\314\355\200\0\316>\245\0\0\0\0\1\0\0\0\40\202" + "\0\0\0Q\2\0\0\0""1\0\0\0\7\235\0\0\0\0\2{\0\316\37\200\0\314\366\224" + "\177\0\314\377\1O\0~\377\203\0\0\0\377\1\0\0\0""7\270\0\0\0\0\1\0\0\0" + "D\205\0\0\0\377\1P\0\200\377\230\177\0\314\377\2\200\0\314\334\200\0" + "\311&\243\0\0\0\0\12\0\0\0\11\0\0\0x\2\0\5\340%\0<\374B\0k\356I\0t\357" + "8\0Z\372$\0""9\362\3\0\5\236\0\0\0#\234\0\0\0\0\1\177\0\314\227\224\177" + "\0\314\377\1r\0\267\377\203\0\0\0\377\1\0\0\0s\267\0\0\0\0\2\0\0\0\1" + "\0\0\0\315\204\0\0\0\377\2\34\0-\377\177\0\313\377\227\177\0\314\377" + "\2\177\0\314\333{\0\320\33\243\0\0\0\0\14\0\0\0.\1\0\2\332\77\0f\347" + "{\0\305\355~\0\313\326\177\0\315\235\200\0\314\210\177\0\313\231y\0\303" + "\343x\0\300\370;\0_\373\5\0\12j\233\0\0\0\0\2\200\0\311&\177\0\314\375" + "\224\177\0\314\377\1\20\0\32\377\202\0\0\0\377\1\0\0\0\252\267\0\0\0" + "\0\1\0\0\0S\205\0\0\0\377\1_\0\231\377\227\177\0\314\377\2\177\0\314" + "\335{\0\312\35\211\0\0\0\0\1\0\0\0""0\215\0\0\0\273\1\0\0\0\20\213\0" + "\0\0\0\16\0\0\0\37\3\0\5\352e\0\242\341\177\0\313\327g\0\243H\0\0\0m" + "\3\0\6\247\12\0\20\256\0\0\0\202\0\0\0'~\0\314Av\0\276\340`\0\232\374" + "\20\0\31r\233\0\0\0\0\1\177\0\314\265\224\177\0\314\377\1'\0>\377\202" + "\0\0\0\377\1\0\0\0\340\266\0\0\0\0\2\0\0\0\3\0\0\0\324\204\0\0\0\377" + "\1\"\0""6\377\227\177\0\314\377\2\177\0\314\341{\0\316\37\212\0\0\0\0" + "\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300" + "\212\0\0\0\0\17\0\0\0\262W\0\214\337\177\0\313\313\30\0&J\22\0\35\357" + "[\0\223\360|\0\310\372\177\0\314\377u\0\274\367R\0\203\375\34\0.\233" + "j\0\252\14r\0\266\316X\0\214\375\0\0\5""1\232\0\0\0\0\1\200\0\313X\224" + "\177\0\314\377\1>\0c\377\202\0\0\0\377\2\0\0\0\376\0\0\0\16\265\0\0\0" + "\0\1\0\0\0\\\204\0\0\0\377\2\0\0\1\377d\0\241\377\226\177\0\314\377\2" + "\200\0\314\362\200\0\313,\213\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223" + "\377\213\177\0\314\377\1\200\0\315\300\211\0\0\0\0\20\0\0\0&\23\0\37" + "\375~\0\314\370N\0{>\21\0\34\357z\0\305\366\177\0\314\221u\0\275#@\0" + "\200\4\200\0\316*o\0\263\247y\0\303\376/\0J\236\200\0\317\20v\0\275\365" + "6\0X\312\232\0\0\0\0\2x\0\322\21\177\0\314\373\223\177\0\314\377\1U\0" + "\210\377\203\0\0\0\377\1\0\0\0""3\264\0\0\0\0\2\0\0\0\3\0\0\0\333\204" + "\0\0\0\377\1'\0\77\377\226\177\0\314\377\2\177\0\314\375\200\0\314P\214" + "\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200" + "\0\315\300\211\0\0\0\0\21\0\0\0mG\0q\347\177\0\313\255\0\0\0\204`\0\233" + "\357\200\0\314\226\0\0\0^/\0L\367O\0~\375\77\0f\303\0\0+\6\\\0\223\216" + "r\0\267\376\35\0,#e\0\242\216b\0\236\376\0\0\0\17\232\0\0\0\0\1\177\0" + "\314\321\223\177\0\314\377\1l\0\255\377\203\0\0\0\377\1\0\0\0Y\264\0" + "\0\0\0\1\0\0\0S\205\0\0\0\377\1c\0\236\377\226\177\0\314\377\1~\0\314" + "}\215\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377" + "\1\200\0\315\300\211\0\0\0\0\21\0\0\0\214`\0\232\344~\0\314y\4\0\10\273" + "}\0\311\373\200\0\314(/\0K\365x\0\300\370f\0\245\242r\0\266\373U\0\211" + "\274\0\0\377\1n\0\261\370G\0s\233r\0\274&}\0\311\377\24\0\"K\232\0\0" + "\0\0\1\200\0\314\244\223\177\0\314\377\2~\0\312\377\3\0\5\377\202\0\0" + "\0\377\1\0\0\0{\264\0\0\0\0\1\0\0\0\274\204\0\0\0\377\1\27\0%\377\226" + "\177\0\314\377\2\177\0\314\265\0\0\377\1\215\0\0\0\0\1\0\0\0B\202\0\0" + "\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\211\0\0\0\0\21" + "\0\0\0\204_\0\230\347~\0\315u\4\0\7\257~\0\312\375\200\0\315$<\0a\327" + "|\0\307\377n\0\260\2549\0\\\253r\0\270\365\0\0\0\0Z\0\220\342U\0\211" + "\304\0\0\0\0\177\0\313\377*\0Eh\232\0\0\0\0\1~\0\314w\224\177\0\314\377" + "\1\17\0\30\377\202\0\0\0\377\1\0\0\0\221\263\0\0\0\0\2\0\0\0'\0\0\0\376" + "\204\0\0\0\377\1H\0s\377\225\177\0\314\377\2\200\0\314\360\200\0\310" + "\34\216\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377" + "\1\200\0\315\300\211\0\0\0\0\21\0\0\0QD\0n\366}\0\312\247\0\0\0Vd\0\240" + "\374n\0\260\224$\0I\7g\0\244\\f\0\252\36<\0a\335p\0\264\350\0\0\0\0\\" + "\0\223\357V\0\213\264f\0\231\12~\0\312\377*\0E\\\232\0\0\0\0\1\200\0" + "\313J\224\177\0\314\377\1\31\0(\377\202\0\0\0\377\1\0\0\0\245\263\0\0" + "\0\0\1\0\0\0\206\204\0\0\0\377\2\3\0\6\377v\0\275\377\225\177\0\314\377" + "\1\200\0\314d\217\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177" + "\0\314\377\1\200\0\315\300\211\0\0\0\0\21\0\0\0\7\31\0)\352}\0\311\371" + "w\0\304\36$\0""9\245v\0\276\376]\0\224\334C\0k\260I\0v\352z\0\304\375" + "k\0\256X\34\0/6x\0\300\377U\0\211]M\0}Zx\0\301\377\0\0\13\30\232\0\0" + "\0\0\1\200\0\314(\224\177\0\314\377\1#\0""8\377\202\0\0\0\377\1\0\0\0" + "\270\262\0\0\0\0\2\0\0\0\1\0\0\0\334\204\0\0\0\377\1*\0D\377\225\177" + "\0\314\377\2\177\0\315\305\0\0\377\1\217\0\0\0\0\1\0\0\0B\202\0\0\0\377" + "\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\212\0\0\0\0\17\0\0\0" + "ZN\0}\374v\0\276\323\200\0\325\14\"\0""8RR\0\203\312c\0\237\342f\0\243" + "\310m\0\2636\0\0\24\15V\0\211\353i\0\251\351\0\0\377\1[\0\222\320X\0" + "\216\347\215\0\0\0\0\1\0\0\0\17\215\0\0\0\0\1\200\0\314\24\224\177\0" + "\314\377\1-\0H\377\202\0\0\0\377\1\0\0\0\314\217\0\0\0\0\1\0\0\0\17\242" + "\0\0\0\0\1\0\0\0""6\205\0\0\0\377\1[\0\222\377\225\177\0\314\377\1\200" + "\0\313@\220\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314" + "\377\1\200\0\315\300\213\0\0\0\0\16\7\0\15t[\0\223\374u\0\272\356g\0" + "\245o\200\0\325\14\0\0\0\0\0\0\0\5""8\0X|a\0\233\366o\0\264\367Z\0\221" + "%K\0vR{\0\306\377;\0^g\213\0\0\0\0\5y\0\311\23y\0\302\3215\0V\361\0\0" + "\0\223\0\0\0\2\213\0\0\0\0\2\200\0\377\2\177\0\314\375\223\177\0\314" + "\377\1""6\0W\377\202\0\0\0\377\1\0\0\0\340\212\0\0\0\0\7~\0\314o\200" + "\0\315\300w\0\314\17\0\0\0\0\0\0\0:\0\0\0\357\0\0\0\210\241\0\0\0\0\1" + "\0\0\0\226\204\0\0\0\377\2\16\0\26\377~\0\312\377\224\177\0\314\377\1" + "\200\0\314\272\221\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177" + "\0\314\377\1\200\0\315\300\214\0\0\0\0\14\4\0\11""9;\0_\324h\0\247\376" + "~\0\312\377x\0\300\375z\0\303\377v\0\274\375X\0\216\277P\0\217\20B\0" + "j:r\0\267\373O\0~\316\213\0\0\0\0\7\200\0\316\32z\0\303\336\177\0\314" + "\377\177\0\313\377:\0]\377\0\0\0\242\0\0\0\4\213\0\0\0\0\1\177\0\314" + "\353\223\177\0\314\377\1\77\0f\377\202\0\0\0\377\1\0\0\0\361\211\0\0" + "\0\0\1~\0\315\177\202\177\0\314\377\3\177\0\314\315\36\0""3U\0\0\0\364" + "\202\0\0\0\377\2\0\0\0\223\0\0\0\2\236\0\0\0\0\2\0\0\0\11\0\0\0\357\204" + "\0\0\0\377\1=\0b\377\225\177\0\314\377\1\200\0\3136\221\0\0\0\0\1\0\0" + "\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\216" + "\0\0\0\0\5\0\0\0\21\37\0""3K/\0J]7\0[F\0\0+\6\202\0\0\0\0\3>\0d\227L" + "\0y\320\0\0\0\4\212\0\0\0\0\2\200\0\313\"z\0\304\346\204\177\0\314\377" + "\3D\0m\377\0\0\0\260\0\0\0\7\212\0\0\0\0\1\177\0\314\333\223\177\0\314" + "\377\1B\0j\377\202\0\0\0\377\1\0\0\0\367\210\0\0\0\0\1\200\0\314\210" + "\204\177\0\314\377\2k\0\255\376\16\0\27\377\203\0\0\0\377\2\0\0\0\242" + "\0\0\0\4\235\0\0\0\0\1\0\0\0V\205\0\0\0\377\1k\0\253\377\224\177\0\314" + "\377\1\200\0\314\310\222\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377" + "\213\177\0\314\377\1\200\0\315\300\241\0\0\0\0\2\200\0\313,{\0\305\356" + "\206\177\0\314\377\3J\0w\377\1\0\3\276\0\0\0\14\211\0\0\0\0\1\177\0\314" + "\327\223\177\0\314\377\1D\0m\377\202\0\0\0\377\1\0\0\0\371\206\0\0\0" + "\0\2\200\0\377\2\177\0\314\227\206\177\0\314\377\2p\0\263\377\23\0\36" + "\377\203\0\0\0\377\2\0\0\0\260\0\0\0\10\234\0\0\0\0\1\0\0\0\245\204\0" + "\0\0\377\1\21\0\34\377\225\177\0\314\377\1~\0\313g\222\0\0\0\0\1\0\0" + "\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\240" + "\0\0\0\0\2}\0\3147{\0\307\364\210\177\0\314\377\3R\0\203\377\3\0\4\303" + "\0\0\0\17\210\0\0\0\0\1\177\0\314\325\223\177\0\314\377\1E\0n\377\202" + "\0\0\0\377\1\0\0\0\374\205\0\0\0\0\2f\0\314\5\200\0\314\246\210\177\0" + "\314\377\2t\0\272\377\30\0&\377\203\0\0\0\377\2\0\0\0\276\0\0\0\15\232" + "\0\0\0\0\2\0\0\0\3\0\0\0\356\204\0\0\0\377\1""7\0X\377\224\177\0\314" + "\377\2\177\0\314\365\200\0\310\16\222\0\0\0\0\1\0\0\0B\202\0\0\0\377" + "\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\214\0\0\0\0\1L\0ya\207" + "v\0\276\311\1t\0\274\253\212\0\0\0\0\2~\0\316C|\0\307\370\212\177\0\314" + "\377\3X\0\216\377\5\0\7\317\0\0\0\25\207\0\0\0\0\1\200\0\314\322\223" + "\177\0\314\377\1F\0q\377\202\0\0\0\377\1\0\0\0\376\204\0\0\0\0\2q\0\306" + "\11\177\0\314\263\212\177\0\314\377\2w\0\277\377\35\0/\377\203\0\0\0" + "\377\2\0\0\0\312\0\0\0\23\231\0\0\0\0\1\0\0\0""6\205\0\0\0\377\1Y\0\217" + "\377\224\177\0\314\377\1\200\0\314\246\223\0\0\0\0\1\0\0\0B\202\0\0\0" + "\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\214\0\0\0\0\1'\0" + "\77\377\207\177\0\314\377\1p\0\263\363\211\0\0\0\0\2\200\0\316*|\0\307" + "\371\214\177\0\314\377\3Y\0\216\377\5\0\7\322\0\0\0\30\206\0\0\0\0\1" + "\200\0\314\320\223\177\0\314\377\1G\0r\377\203\0\0\0\377\1\0\0\0\1\202" + "\0\0\0\0\2\200\0\314\12\200\0\315\266\214\177\0\314\377\2x\0\301\377" + "\23\0\37\377\203\0\0\0\377\2\0\0\0\312\0\0\0\23\230\0\0\0\0\1\0\0\0~" + "\204\0\0\0\377\2\3\0\6\377z\0\303\377\224\177\0\314\377\1\200\0\315B" + "\223\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1" + "\200\0\315\300\214\0\0\0\0\1'\0\77\377\207\177\0\314\377\1p\0\263\363" + "\211\0\0\0\0\2\0\0\377\1a\0\235\263\215\177\0\314\377\3e\0\242\377\12" + "\0\21\342\0\0\0%\205\0\0\0\0\1\200\0\314\322\223\177\0\314\377\1G\0r" + "\377\203\0\0\0\377\4\0\0\0\3\0\0\0\0\200\0\314\24\177\0\313\313\215\177" + "\0\314\377\1;\0_\377\204\0\0\0\377\2\0\0\0\267\0\0\0\12\230\0\0\0\0\1" + "\0\0\0\303\204\0\0\0\377\1\37\0""2\377\224\177\0\314\377\2\200\0\314" + "\336\200\0\377\2\223\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213" + "\177\0\314\377\1\200\0\315\300\214\0\0\0\0\1'\0\77\377\207\177\0\314" + "\377\1p\0\263\363\213\0\0\0\0\1^\0\227\240\215\177\0\314\377\3j\0\252" + "\377\16\0\27\352\0\0\0/\204\0\0\0\0\1\200\0\314\334\223\177\0\314\377" + "\1C\0k\377\202\0\0\0\377\4\0\0\0\373\0\0\0\0{\0\320\33\177\0\314\325" + "\214\177\0\314\377\2\177\0\313\3776\0W\377\204\0\0\0\377\2\0\0\0\252" + "\0\0\0\6\230\0\0\0\0\2\0\0\0\6\0\0\0\367\204\0\0\0\377\1;\0_\377\224" + "\177\0\314\377\1\200\0\314\210\224\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\" + "\0\223\377\213\177\0\314\377\1\200\0\315\300\214\0\0\0\0\1'\0\77\377" + "\207\177\0\314\377\1p\0\263\363\214\0\0\0\0\2]\0\225\216~\0\312\377\214" + "\177\0\314\377\3l\0\255\377\17\0\30\360\0\0\0""9\203\0\0\0\0\1\177\0" + "\314\347\223\177\0\314\377\1>\0c\377\202\0\0\0\377\3\0\0\0\361|\0\314" + "#\200\0\314\336\214\177\0\314\377\2~\0\312\3773\0R\377\204\0\0\0\377" + "\2\0\0\0\234\0\0\0\3\231\0\0\0\0\1\0\0\0""7\205\0\0\0\377\1W\0\214\377" + "\224\177\0\314\377\1\200\0\313@\224\0\0\0\0\1\0\0\0B\202\0\0\0\377\1" + "\\\0\223\377\213\177\0\314\377\1\200\0\315\300\214\0\0\0\0\1'\0\77\377" + "\207\177\0\314\377\1p\0\263\363\215\0\0\0\0\2]\0\224|}\0\310\377\214" + "\177\0\314\377\3p\0\264\377\24\0\37\366\0\0\0E\202\0\0\0\0\1\200\0\314" + "\362\223\177\0\314\377\1""8\0Z\377\202\0\0\0\377\2\30\0&\352\200\0\314" + "\346\214\177\0\314\377\2}\0\310\377,\0F\377\204\0\0\0\377\2\0\0\0\215" + "\0\0\0\1\232\0\0\0\0\1\0\0\0r\205\0\0\0\377\1s\0\271\377\223\177\0\314" + "\377\2\177\0\314\361f\0\314\5\224\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\" + "\0\223\377\213\177\0\314\377\1\200\0\315\300\214\0\0\0\0\1'\0\77\377" + "\207\177\0\314\377\1p\0\263\363\216\0\0\0\0\2[\0\223j{\0\307\376\214" + "\177\0\314\377\5t\0\272\377\31\0'\371\0\0\0R\0\0\0\0\200\0\314\374\223" + "\177\0\314\377\4""3\0R\377\0\0\0\377\33\0+\377w\0\300\374\214\177\0\314" + "\377\2{\0\305\377%\0;\377\204\0\0\0\377\1\0\0\0w\234\0\0\0\0\1\0\0\0" + "\251\204\0\0\0\377\1\20\0\32\377\224\177\0\314\377\1\177\0\315\261\225" + "\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200" + "\0\315\300\214\0\0\0\0\1'\0\77\377\207\177\0\314\377\1p\0\263\363\217" + "\0\0\0\0\2\\\0\222Yz\0\304\375\214\177\0\314\377\3w\0\277\377\35\0.\375" + "\17\0\31h\224\177\0\314\377\3.\0J\377\36\0""0\377x\0\300\377\214\177" + "\0\314\377\2x\0\301\377\37\0""2\377\203\0\0\0\377\2\0\0\0\375\0\0\0k" + "\235\0\0\0\0\1\0\0\0\341\204\0\0\0\377\1)\0B\377\224\177\0\314\377\1" + "~\0\314w\225\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314" + "\377\1\200\0\315\300\214\0\0\0\0\1'\0\77\377\207\177\0\314\377\1p\0\263" + "\363\220\0\0\0\0\2W\0\215Lw\0\277\374\214\177\0\314\377\2z\0\303\377" + "/\0K\376\224\177\0\314\377\2@\0f\377z\0\304\377\214\177\0\314\377\2u" + "\0\274\377\31\0)\377\203\0\0\0\377\2\0\0\0\373\0\0\0]\235\0\0\0\0\1\0" + "\0\0\23\205\0\0\0\377\1\77\0f\377\224\177\0\314\377\1\200\0\316>\225" + "\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200" + "\0\315\300\214\0\0\0\0\1'\0\77\377\207\177\0\314\377\1p\0\263\363\221" + "\0\0\0\0\2Y\0\221\377\204\0\0\0\377\1\0\0\0\200\252\0\0\0\0\1\0\0" + "\0\354\204\0\0\0\377\1\40\0""3\377\224\177\0\314\377\1}\0\3131\227\0" + "\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0" + "\315\300\214\0\0\0\0\1'\0\77\377\207\177\0\314\377\1p\0\263\363\237\0" + "\0\0\0\2]\0\226k|\0\307\376\222\177\0\314\377\2{\0\305\377&\0=\377\203" + "\0\0\0\377\2\0\0\0\376\0\0\0w\252\0\0\0\0\2\0\0\0\4\0\0\0\376\204\0\0" + "\0\377\1+\0E\377\224\177\0\314\377\1{\0\320\33\227\0\0\0\0\1\0\0\0B\202" + "\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\214\0\0\0" + "\0\1'\0\77\377\207\177\0\314\377\1p\0\263\363\240\0\0\0\0\2U\0\213Zy" + "\0\302\375\220\177\0\314\377\2v\0\275\377\32\0*\377\203\0\0\0\377\2\0" + "\0\0\376\0\0\0p\253\0\0\0\0\1\0\0\0\31\205\0\0\0\377\1""6\0V\377\223" + "\177\0\314\377\2\200\0\314\376f\0\314\5\227\0\0\0\0\1\0\0\0B\202\0\0" + "\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\214\0\0\0\0\1" + "'\0\77\377\207\177\0\314\377\1p\0\263\363\241\0\0\0\0\2\\\0\224Ew\0\276" + "\373\216\177\0\314\377\2r\0\267\377\25\0\"\377\203\0\0\0\377\2\0\0\0" + "\372\0\0\0Y\254\0\0\0\0\1\0\0\0/\205\0\0\0\377\1@\0g\377\223\177\0\314" + "\377\1\200\0\314\356\230\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377" + "\213\177\0\314\377\1\200\0\315\300\214\0\0\0\0\1'\0\77\377\207\177\0" + "\314\377\1p\0\263\363\242\0\0\0\0\2b\0\235~\0\314U~\0\315e~\0\314o\200\0" + "\315z\200\0\314\210\200\0\314\226\177\0\315\223\200\0\314|\200\0\315" + "`~\0\313I}\0\314-q\0\306\11\215\0\0\0\0\3\200\0\277\4\2\0\5i\0\0\0\375" + "\202\0\0\0\377\2\0\0\0\273\0\0\0\14\264\0\0\0\0\1\0\0\0\254\205\0\0\0" + "\377\1s\0\271\377\223\177\0\314\377\1~\0\313{\230\0\0\0\0\1\0\0\0B\202" + "\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\236\0\0\0" + "\0\5|\0\314#~\0\313c\200\0\315\230\200\0\314\302\200\0\314\354\215\177" + "\0\314\377\5\200\0\314\374\200\0\314\324\200\0\314\240~\0\313g|\0\314" + "#\213\0\0\0\0\4\0\0\0X\0\0\0\372\0\0\0\256\0\0\0\7\265\0\0\0\0\1\0\0" + "\0\267\205\0\0\0\377\1w\0\277\377\223\177\0\314\377\1~\0\313q\230\0\0" + "\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315" + "\300\232\0\0\0\0\4\200\0\306\22~\0\313]\177\0\314\241\177\0\314\341\227" + "\177\0\314\377\3\177\0\314\331\200\0\314|{\0\320\33\211\0\0\0\0\2\0\0" + "\0=\0\0\0\7\266\0\0\0\0\1\0\0\0\302\205\0\0\0\377\1w\0\277\377\223\177" + "\0\314\377\1~\0\314o\230\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377" + "\213\177\0\314\377\1\200\0\315\300\227\0\0\0\0\4q\0\306\11~\0\315W\177" + "\0\315\261\177\0\314\371\234\177\0\314\377\3\200\0\314\374\177\0\314" + "\263~\0\313E\277\0\0\0\0\1\0\0\0\314\205\0\0\0\377\1w\0\276\377\223\177" + "\0\314\377\1~\0\313q\230\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377" + "\213\177\0\314\377\1\200\0\315\300\225\0\0\0\0\3}\0\312\77\177\0\314" + "\241\200\0\314\362\242\177\0\314\377\2\177\0\313\301\200\0\316>\275\0" + "\0\0\0\1\0\0\0\317\205\0\0\0\377\1v\0\276\377\223\177\0\314\377\1\200" + "\0\314r\230\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314" + "\377\1\200\0\315\300\222\0\0\0\0\3q\0\306\11~\0\313c\200\0\314\320\246" + "\177\0\314\377\3\200\0\314\376\200\0\314\226\200\0\325\14\273\0\0\0\0" + "\1\0\0\0\316\205\0\0\0\377\1v\0\275\377\223\177\0\314\377\1~\0\314s\230" + "\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200" + "\0\315\300\220\0\0\0\0\3\200\0\314\24\200\0\315\204\177\0\314\353\252" + "\177\0\314\377\2\177\0\314\335}\0\312\77\272\0\0\0\0\1\0\0\0\315\205" + "\0\0\0\377\1u\0\273\377\223\177\0\314\377\1\200\0\314t\230\0\0\0\0\1" + "\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300" + "\216\0\0\0\0\3\200\0\321\26\177\0\315\211\177\0\314\363\255\177\0\314" + "\377\3\177\0\314\375\177\0\314\215f\0\314\5\270\0\0\0\0\1\0\0\0\314\205" + "\0\0\0\377\1t\0\272\377\223\177\0\314\377\1\200\0\313v\230\0\0\0\0\1" + "\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300" + "\214\0\0\0\0\3\200\0\317\20\177\0\314\213\200\0\314\364\261\177\0\314" + "\377\2}\0\310\304x\0\322\21\267\0\0\0\0\1\0\0\0\313\205\0\0\0\377\1t" + "\0\272\377\223\177\0\314\377\1~\0\314y\230\0\0\0\0\1\0\0\0B\202\0\0\0" + "\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300\212\0\0\0\0\3U\0" + "\252\3~\0\313g\200\0\314\352\264\177\0\314\377\2z\0\304\335\200\0\310" + "\34\266\0\0\0\0\1\0\0\0\311\205\0\0\0\377\1p\0\263\377\223\177\0\314" + "\377\1\200\0\314\206\230\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377" + "\213\177\0\314\377\1\200\0\315\300\211\0\0\0\0\2\200\0\313@\200\0\314" + "\320\267\177\0\314\377\2x\0\300\361z\0\305,\265\0\0\0\0\1\0\0\0\310\205" + "\0\0\0\377\1i\0\250\377\223\177\0\314\377\1\177\0\315\223\230\0\0\0\0" + "\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315\300" + "\207\0\0\0\0\2\200\0\321\26\177\0\314\251\272\177\0\314\377\2w\0\277" + "\370g\0\250/\264\0\0\0\0\1\0\0\0\307\205\0\0\0\377\1b\0\235\377\223\177" + "\0\314\377\1\177\0\314\241\230\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223" + "\377\213\177\0\314\377\1\200\0\315\300\206\0\0\0\0\2\200\0\313T\200\0" + "\314\352\274\177\0\314\377\2s\0\270\367J\0y&\263\0\0\0\0\1\0\0\0\277" + "\205\0\0\0\377\1[\0\222\377\223\177\0\314\377\1\177\0\314\257\230\0\0" + "\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\1\200\0\315" + "\300\204\0\0\0\0\2z\0\310\27\177\0\315\247\277\177\0\314\377\2i\0\250" + "\366#\0""9$\262\0\0\0\0\1\0\0\0\261\205\0\0\0\377\1T\0\207\377\223\177" + "\0\314\377\1\177\0\314\275\230\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223" + "\377\213\177\0\314\377\1\200\0\315\300\203\0\0\0\0\2~\0\313I\177\0\314" + "\351\301\177\0\314\377\2\\\0\223\365\0\0\10!\261\0\0\0\0\1\0\0\0\243" + "\205\0\0\0\377\1M\0|\377\223\177\0\314\377\1\177\0\313\313\230\0\0\0" + "\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314\377\5\200\0\315" + "\300\0\0\0\0f\0\314\5\177\0\314\213\200\0\314\376\303\177\0\314\377\2" + ">\0d\352\0\0\0\21\260\0\0\0\0\1\0\0\0\225\205\0\0\0\377\1F\0q\377\223" + "\177\0\314\377\1\177\0\314\335\230\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\" + "\0\223\377\213\177\0\314\377\3\200\0\315\300\200\0\316\32\177\0\314\307" + "\305\177\0\314\377\3{\0\306\377\33\0+\311\0\0\0\5\257\0\0\0\0\1\0\0\0" + "\207\205\0\0\0\377\1\77\0e\377\223\177\0\314\377\2\200\0\314\370\0\0" + "\377\1\227\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177\0\314" + "\377\2\200\0\315\315\177\0\314\345\307\177\0\314\377\2d\0\241\377\3\0" + "\5\237\257\0\0\0\0\1\0\0\0y\205\0\0\0\377\1""3\0R\377\224\177\0\314\377" + "\1z\0\310\27\227\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\213\177" + "\0\314\377\1\177\0\315\375\311\177\0\314\377\2<\0`\377\0\0\0p\256\0\0" + "\0\0\1\0\0\0k\205\0\0\0\377\1%\0;\377\224\177\0\314\377\1\200\0\3164" + "\227\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\261\177\0\314\377\11" + "}\0\310\377j\0\252\377X\0\215\377O\0\177\377J\0w\377H\0t\377R\0\204\377" + "^\0\226\377r\0\267\377\233\177\0\314\377\3z\0\304\377\17\0\30\373\0\0" + "\0/\255\0\0\0\0\1\0\0\0^\205\0\0\0\377\1\26\0$\377\224\177\0\314\377" + "\1~\0\315Q\227\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\255\177\0" + "\314\377\5v\0\275\377V\0\212\3776\0W\377\26\0#\377\2\0\3\377\210\0\0" + "\0\377\3\23\0\36\377<\0a\377p\0\264\377\231\177\0\314\377\3L\0z\377\0" + "\0\0\315\0\0\0\4\254\0\0\0\0\1\0\0\0L\205\0\0\0\377\1\10\0\16\377\224" + "\177\0\314\377\1\200\0\314n\227\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0" + "\223\377\252\177\0\314\377\4w\0\276\377M\0|\377\40\0""3\377\1\0\2\377" + "\216\0\0\0\377\3\4\0\6\377F\0p\377~\0\312\377\227\177\0\314\377\3|\0" + "\307\377\17\0\30\377\0\0\0{\254\0\0\0\0\1\0\0\0""1\206\0\0\0\377\1y\0" + "\302\377\223\177\0\314\377\1\177\0\314\213\227\0\0\0\0\1\0\0\0B\202\0" + "\0\0\377\1\\\0\223\377\250\177\0\314\377\3e\0\242\377.\0J\377\3\0\6\377" + "\223\0\0\0\377\2\35\0/\377r\0\266\377\227\177\0\314\377\3K\0x\377\0\0" + "\0\370\0\0\0(\253\0\0\0\0\1\0\0\0\25\206\0\0\0\377\1k\0\253\377\223\177" + "\0\314\377\1\177\0\313\255\227\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223" + "\377\245\177\0\314\377\3~\0\312\377T\0\206\377\34\0-\377\211\0\0\0\377" + "\14\0\0\0\355\0\0\0\302\0\0\0\231\0\0\0p\0\0\0^\0\0\0U\0\0\0D\0\0\0N" + "\0\0\0h\0\0\0\212\0\0\0\301\0\0\0\373\202\0\0\0\377\2\17\0\30\377k\0" + "\253\377\226\177\0\314\377\3|\0\306\377\12\0\20\377\0\0\0\265\253\0\0" + "\0\0\2\0\0\0\1\0\0\0\366\205\0\0\0\377\1]\0\225\377\223\177\0\314\377" + "\1\200\0\314\332\227\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\243" + "\177\0\314\377\3~\0\312\377Q\0\202\377\23\0\37\377\207\0\0\0\377\4\0" + "\0\0\360\0\0\0\261\0\0\0l\0\0\0(\213\0\0\0\0\6\0\0\0\20\0\0\0h\0\0\0" + "\334\0\0\0\377\11\0\16\377j\0\252\377\226\177\0\314\377\3""8\0Z\377\0" + "\0\0\377\0\0\0""7\253\0\0\0\0\1\0\0\0\332\205\0\0\0\377\1M\0|\377\223" + "\177\0\314\377\2\177\0\314\375t\0\321\13\226\0\0\0\0\1\0\0\0B\202\0\0" + "\0\377\1\\\0\223\377\242\177\0\314\377\2U\0\210\377\22\0\36\377\206\0" + "\0\0\377\4\0\0\0\361\0\0\0\240\0\0\0H\0\0\0\4\220\0\0\0\0\5\0\0\0\5\0" + "\0\0\203\0\0\0\373\20\0\32\377t\0\272\377\225\177\0\314\377\3e\0\242" + "\377\0\0\0\377\0\0\0\264\253\0\0\0\0\1\0\0\0\275\205\0\0\0\377\1""8\0" + "Z\377\224\177\0\314\377\1}\0\3147\226\0\0\0\0\1\0\0\0B\202\0\0\0\377" + "\1\\\0\223\377\240\177\0\314\377\2j\0\252\377!\0""5\377\206\0\0\0\377" + "\3\0\0\0\331\0\0\0l\0\0\0\15\225\0\0\0\0\4\0\0\0""7\0\0\0\346\40\0""3" + "\377~\0\312\377\225\177\0\314\377\3\23\0\37\377\0\0\0\376\0\0\0""3\252" + "\0\0\0\0\1\0\0\0\241\205\0\0\0\377\1!\0""6\377\224\177\0\314\377\1~\0" + "\315e\226\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\236\177\0\314" + "\377\3|\0\307\377@\0f\377\3\0\5\377\205\0\0\0\377\3\0\0\0\277\0\0\0I" + "\0\0\0\1\230\0\0\0\0\3\0\0\0!\0\0\0\332J\0v\377\225\177\0\314\377\3@" + "\0f\377\0\0\0\377\0\0\0\253\252\0\0\0\0\1\0\0\0\204\205\0\0\0\377\1\13" + "\0\22\377\224\177\0\314\377\1\177\0\315\223\226\0\0\0\0\1\0\0\0B\202" + "\0\0\0\377\1\\\0\223\377\235\177\0\314\377\2e\0\242\377\27\0%\377\205" + "\0\0\0\377\2\0\0\0\274\0\0\0>\234\0\0\0\0\3\0\0\0\25\7\0\14\332r\0\266" + "\377\224\177\0\314\377\4i\0\250\377\0\0\0\377\0\0\0\373\0\0\0\31\251" + "\0\0\0\0\1\0\0\0f\206\0\0\0\377\1s\0\271\377\223\177\0\314\377\1\177" + "\0\313\301\226\0\0\0\0\1\0\0\0B\202\0\0\0\377\1\\\0\223\377\233\177\0" + "\314\377\3}\0\311\377>\0d\377\2\0\3\377\204\0\0\0\377\2\0\0\0\305\0\0" + "\0;\237\0\0\0\0\2\0\0\0$8\0Z\364\224\177\0\314\377\4\177\0\313\377\11" + "\0\17\377\0\0\0\377\0\0\0p\251\0\0\0\0\1\0\0\0@\206\0\0\0\377\1]\0\225" + "\377\223\177\0\314\377\2\177\0\314\363\200\0\277\4\225\0\0\0\0\1\0\0" + "\0B\202\0\0\0\377\1\\\0\223\377\232\177\0\314\377\2s\0\270\377+\0E\377" + "\204\21\0\33\377\3\23\0\36\351&\0\252\0\0\0\0\2" + "\0\0\0\27\0\0\0\374\206\0\0\0\377\1Q\0\202\377\225\177\0\314\377\1\200" + "\0\315\266\330\0\0\0\0\1\200\0\313,\224\177\0\314\377\1X\0\215\377\204" + "\0\0\0\377\1\0\0\0""4\253\0\0\0\0\1\0\0\0\300\206\0\0\0\377\1\36\0""0" + "\377\226\177\0\314\377\1\200\0\314P\327\0\0\0\0\1\177\0\314\203\224\177" + "\0\314\377\1<\0`\377\204\0\0\0\377\1\0\0\0\34\253\0\0\0\0\1\0\0\0l\207" + "\0\0\0\377\1e\0\242\377\225\177\0\314\377\2\177\0\314\343\200\0\317\20" + "\326\0\0\0\0\1\200\0\314\332\224\177\0\314\377\1\37\0""2\377\203\0\0" + "\0\377\2\0\0\0\372\0\0\0\3\253\0\0\0\0\2\0\0\0\22\0\0\0\370\206\0\0\0" + "\377\1,\0G\377\226\177\0\314\377\1\200\0\314\244\325\0\0\0\0\1\200\0" + "\312:\224\177\0\314\377\2}\0\310\377\5\0\10\377\203\0\0\0\377\1\0\0\0" + "\340\255\0\0\0\0\1\0\0\0\252\206\0\0\0\377\2\2\0\4\377p\0\264\377\226" + "\177\0\314\377\1~\0\315W\324\0\0\0\0\1\200\0\314\260\224\177\0\314\377" + "\1d\0\240\377\204\0\0\0\377\1\0\0\0\302\255\0\0\0\0\1\0\0\0I\207\0\0" + "\0\377\1""3\0R\377\226\177\0\314\377\2\200\0\314\362\200\0\316*\322\0" + "\0\0\0\2}\0\312+\200\0\314\376\224\177\0\314\377\1@\0g\377\204\0\0\0" + "\377\1\0\0\0\240\255\0\0\0\0\2\0\0\0\3\0\0\0\344\206\0\0\0\377\2\2\0" + "\4\377n\0\260\377\226\177\0\314\377\2\200\0\314\332y\0\316\25\321\0\0" + "\0\0\1\177\0\314\245\225\177\0\314\377\1\26\0#\377\204\0\0\0\377\1\0" + "\0\0o\256\0\0\0\0\1\0\0\0}\207\0\0\0\377\1.\0J\377\227\177\0\314\377" + "\2\177\0\314\315w\0\314\17\317\0\0\0\0\2\200\0\314<\200\0\314\376\224" + "\177\0\314\377\1j\0\252\377\205\0\0\0\377\1\0\0\0""5\256\0\0\0\0\2\0" + "\0\0\24\0\0\0\365\206\0\0\0\377\2\1\0\2\377j\0\252\377\227\177\0\314" + "\377\2\177\0\313\301q\0\306\11\315\0\0\0\0\2\200\0\277\4\177\0\314\321" + "\225\177\0\314\377\1\77\0f\377\204\0\0\0\377\2\0\0\0\365\0\0\0\5\257" + "\0\0\0\0\1\0\0\0\227\207\0\0\0\377\1\"\0""6\377\230\177\0\314\377\2\200" + "\0\314\260\200\0\277\4\314\0\0\0\0\1~\0\315u\226\177\0\314\377\1\23\0" + "\37\377\204\0\0\0\377\1\0\0\0\300\260\0\0\0\0\2\0\0\0&\0\0\0\375\207" + "\0\0\0\377\1U\0\210\377\230\177\0\314\377\2\177\0\314\265y\0\311\23\312" + "\0\0\0\0\2\200\0\3158\200\0\314\372\225\177\0\314\377\1`\0\232\377\205" + "\0\0\0\377\1\0\0\0\205\261\0\0\0\0\1\0\0\0\252\207\0\0\0\377\2\16\0\27" + "\377y\0\302\377\230\177\0\314\377\2\200\0\314\344~\0\316C\310\0\0\0\0" + "\2\200\0\306\22\177\0\314\341\226\177\0\314\377\1&\0=\377\205\0\0\0\377" + "\1\0\0\0>\261\0\0\0\0\2\0\0\0)\0\0\0\374\207\0\0\0\377\1""7\0X\377\231" + "\177\0\314\377\3\200\0\314\376\200\0\314\246|\0\311!\305\0\0\0\0\2\200" + "\0\277\4\177\0\313\267\226\177\0\314\377\2h\0\247\377\0\0\1\377\204\0" + "\0\0\377\2\0\0\0\346\0\0\0\3\262\0\0\0\0\1\0\0\0\237\207\0\0\0\377\2" + "\0\0\1\377^\0\226\377\232\177\0\314\377\3\200\0\314\370\177\0\314\215" + "\200\0\306\22\302\0\0\0\0\2\0\0\377\1\177\0\314\241\227\177\0\314\377" + "\1-\0H\377\205\0\0\0\377\1\0\0\0\222\263\0\0\0\0\2\0\0\0\40\0\0\0\370" + "\207\0\0\0\377\2\16\0\27\377w\0\277\377\233\177\0\314\377\3\200\0\314" + "\356\177\0\314\203\200\0\312\30\300\0\0\0\0\1\177\0\314\215\227\177\0" + "\314\377\2m\0\257\377\2\0\3\377\205\0\0\0\377\1\0\0\0;\264\0\0\0\0\1" + "\0\0\0\206\210\0\0\0\377\1+\0E\377\235\177\0\314\377\3\177\0\314\371" + "\200\0\314\240\200\0\3158\274\0\0\0\0\2\200\0\277\4\200\0\314\222\230" + "\177\0\314\377\1+\0E\377\205\0\0\0\377\2\0\0\0\342\0\0\0\1\264\0\0\0" + "\0\2\0\0\0\14\0\0\0\344\210\0\0\0\377\1F\0q\377\237\177\0\314\377\3\177" + "\0\314\331~\0\313{\200\0\314\36\270\0\0\0\0\2\200\0\313\"\200\0\314\302" + "\230\177\0\314\377\1^\0\226\377\206\0\0\0\377\1\0\0\0\205\266\0\0\0\0" + "\1\0\0\0Z\210\0\0\0\377\2\2\0\3\377^\0\227\377\240\177\0\314\377\4\177" + "\0\314\375\177\0\314\275\200\0\314j|\0\311!\263\0\0\0\0\3\200\0\314\12" + "\200\0\315z\177\0\314\363\230\177\0\314\377\2|\0\307\377\24\0!\377\205" + "\0\0\0\377\2\0\0\0\371\0\0\0\34\266\0\0\0\0\2\0\0\0\1\0\0\0\275\210\0" + "\0\0\377\2\12\0\21\377n\0\261\377\243\177\0\314\377\4\200\0\314\324\200" + "\0\314\210\200\0\314\0c\377}\0\311\377\341\177\0\314\377\2~\0\312\377*\0C\377" + "\207\0\0\0\377\2\0\0\0\375\0\0\0;\302\0\0\0\0\2\0\0\0\5\0\0\0\263\213" + "\0\0\0\377\2\34\0-\377m\0\257\377\340\177\0\314\377\1""3\0R\377\210\0" + "\0\0\377\1\0\0\0\205\304\0\0\0\0\2\0\0\0\11\0\0\0\301\213\0\0\0\377\3" + "\4\0\6\377>\0c\377y\0\302\377\335\177\0\314\377\1=\0b\377\210\0\0\0\377" + "\2\0\0\0\300\0\0\0\4\305\0\0\0\0\2\0\0\0\20\0\0\0\322\214\0\0\0\377\3" + "\13\0\22\377J\0w\377}\0\310\377\331\177\0\314\377\2z\0\304\377+\0E\377" + "\210\0\0\0\377\2\0\0\0\351\0\0\0\32\307\0\0\0\0\2\0\0\0\26\0\0\0\317" + "\215\0\0\0\377\3\23\0\37\377V\0\212\377\177\0\313\377\326\177\0\314\377" + "\2p\0\264\377\30\0'\377\210\0\0\0\377\2\0\0\0\375\0\0\0E\311\0\0\0\0" + "\2\0\0\0\17\0\0\0\300\216\0\0\0\377\3\26\0$\377O\0~\377|\0\306\377\323" + "\177\0\314\377\2U\0\211\377\11\0\17\377\211\0\0\0\377\1\0\0\0{\313\0" + "\0\0\0\2\0\0\0\10\0\0\0\246\217\0\0\0\377\3\13\0\22\377@\0f\377t\0\272" + "\377\317\177\0\314\377\2v\0\275\377,\0F\377\212\0\0\0\377\2\0\0\0\232" + "\0\0\0\1\315\0\0\0\0\2\0\0\0f\0\0\0\365\217\0\0\0\377\4\4\0\6\377/\0" + "L\377_\0\230\377~\0\312\377\312\177\0\314\377\3~\0\312\377O\0~\377\13" + "\0\22\377\212\0\0\0\377\2\0\0\0\256\0\0\0\3\317\0\0\0\0\2\0\0\0&\0\0" + "\0\307\221\0\0\0\377\3\16\0\27\377;\0^\377i\0\250\377\307\177\0\314\377" + "\2\\\0\224\377\27\0&\377\213\0\0\0\377\2\0\0\0\277\0\0\0\10\321\0\0\0" + "\0\3\0\0\0\3\0\0\0x\0\0\0\365\222\0\0\0\377\3\27\0%\377D\0n\377m\0\257" + "\377\301\177\0\314\377\3\177\0\313\377X\0\216\377\34\0.\377\214\0\0\0" + "\377\2\0\0\0\316\0\0\0\17\324\0\0\0\0\3\0\0\0\35\0\0\0\242\0\0\0\375" + "\223\0\0\0\377\4\24\0\40\377:\0]\377_\0\231\377}\0\311\377\273\177\0" + "\314\377\3x\0\301\377M\0|\377\26\0#\377\215\0\0\0\377\2\0\0\0\310\0\0" + "\0\25\327\0\0\0\0\2\0\0\0""2\0\0\0\276\225\0\0\0\377\4\10\0\16\377,\0" + "F\377O\0\177\377l\0\255\377\265\177\0\314\377\4~\0\312\377]\0\226\377" + ".\0J\377\4\0\7\377\216\0\0\0\377\2\0\0\0\242\0\0\0\10\332\0\0\0\0\2\0" + "\0\0M\0\0\0\316\227\0\0\0\377\5\12\0\20\377'\0>\377D\0m\377a\0\233\377" + "{\0\306\377\255\177\0\314\377\4{\0\306\377Y\0\217\3771\0N\377\12\0\21" + "\377\217\0\0\0\377\2\0\0\0\373\0\0\0t\336\0\0\0\0\3\0\0\0B\0\0\0\262" + "\0\0\0\375\230\0\0\0\377\6\3\0\5\377\34\0-\3773\0R\377I\0v\377^\0\227" + "\377u\0\273\377\244\177\0\314\377\5x\0\300\377Z\0\221\377<\0`\377\35" + "\0/\377\3\0\6\377\221\0\0\0\377\2\0\0\0\327\0\0\0""6\341\0\0\0\0\3\0" + "\0\0\31\0\0\0\200\0\0\0\354\234\0\0\0\377\7\12\0\21\377\40\0""4\3776" + "\0W\377L\0z\377Y\0\217\377h\0\246\377u\0\273\377\226\177\0\314\377\10" + "~\0\312\377s\0\270\377f\0\244\377X\0\216\377C\0l\377+\0E\377\22\0\36" + "\377\1\0\2\377\223\0\0\0\377\3\0\0\0\374\0\0\0\200\0\0\0\5\344\0\0\0" + "\0\3\0\0\0\17\0\0\0t\0\0\0\330\241\0\0\0\377\12\4\0\6\377\21\0\34\377" + "\36\0""1\377$\0:\377*\0D\3772\0Q\3778\0Z\377=\0b\377D\0m\377K\0x\377" + "\203L\0z\377\3I\0u\377D\0m\377B\0j\377\202;\0_\377\5""3\0R\377'\0>\377" + "\33\0+\377\15\0\26\377\2\0\3\377\231\0\0\0\377\2\0\0\0\306\0\0\0""7\351" + "\0\0\0\0\3\0\0\0*\0\0\0\200\0\0\0\335\314\0\0\0\377\2\0\0\0\324\0\0\0" + "D\355\0\0\0\0\4\0\0\0\4\0\0\0H\0\0\0\243\0\0\0\360\307\0\0\0\377\3\0" + "\0\0\326\0\0\0c\0\0\0\7\361\0\0\0\0\4\0\0\0\5\0\0\0@\0\0\0\211\0\0\0" + "\323\302\0\0\0\377\3\0\0\0\304\0\0\0O\0\0\0\2\367\0\0\0\0\4\0\0\0\36" + "\0\0\0g\0\0\0\260\0\0\0\364\273\0\0\0\377\3\0\0\0\350\0\0\0\216\0\0\0" + ".\375\0\0\0\0\5\0\0\0\7\0\0\0<\0\0\0w\0\0\0\263\0\0\0\355\264\0\0\0\377" + "\4\0\0\0\345\0\0\0\225\0\0\0F\0\0\0\4\377\0\0\0\0\204\0\0\0\0\6\0\0\0" + "\1\0\0\0+\0\0\0f\0\0\0\236\0\0\0\302\0\0\0\357\253\0\0\0\377\5\0\0\0" + "\362\0\0\0\266\0\0\0z\0\0\0""8\0\0\0\1\377\0\0\0\0\215\0\0\0\0\6\0\0" + "\0\36\0\0\0K\0\0\0x\0\0\0\246\0\0\0\323\0\0\0\372\240\0\0\0\377\6\0\0" + "\0\365\0\0\0\313\0\0\0\234\0\0\0n\0\0\0""4\0\0\0\3\377\0\0\0\0\227\0" + "\0\0\0\12\0\0\0\30\0\0\0""3\0\0\0N\0\0\0l\0\0\0\207\0\0\0\242\0\0\0\300" + "\0\0\0\330\0\0\0\356\0\0\0\367\216\0\0\0\377\11\0\0\0\353\0\0\0\324\0" + "\0\0\274\0\0\0\243\0\0\0\222\0\0\0q\0\0\0O\0\0\0*\0\0\0\3\377\0\0\0\0" + "\246\0\0\0\0\4\0\0\0\1\0\0\0\21\0\0\0\33\0\0\0%\204\0\0\0""3\3\0\0\0" + "+\0\0\0\"\0\0\0!\202\0\0\0\21\1\0\0\0\6\377\0\0\0\0\377\0\0\0\0\220\0" + "\0\0\0", +}; + + diff --git a/src/windows.c b/src/windows.c index 22a0e7e..2b2f934 100644 --- a/src/windows.c +++ b/src/windows.c @@ -245,15 +245,12 @@ gboolean toggle_widgets(GtkWidget ** widgets, gint nb_widgets, gboolean * flag) { /* We are not reentrant. */ static gboolean toggling = FALSE; - gint w, h; gint i; if (toggling) return FALSE; toggling = TRUE; - w = rt->wid_size->width; - h = rt->wid_size->height; for (i = 0; i < nb_widgets; i++) { if (*flag == FALSE) -- 2.11.4.GIT