Maelstrom-3.0.7/000755 000765 000024 00000000000 14007426743 013753 5ustar00valvestaff000000 000000 Maelstrom-3.0.7/COPYING.txt000644 000765 000024 00000000757 14007026357 015632 0ustar00valvestaff000000 000000 The source code to Maelstrom 3.0 and higher has been released under the GNU General Public License which can be found in COPYING.GPL. The artwork and animations in Maelstrom may be used under the terms of the Creative Commons Attribution 3.0 license (unported): http://creativecommons.org/licenses/by/3.0/legalcode The following files must accompany any distribution of Maeltrom 3.0: Ambrosia_Software,_Inc._FAQ MaelstromGPL_press_release They can be found in the Docs directory. Maelstrom-3.0.7/acinclude.m4000644 000765 000024 00000027430 14006022047 016136 0ustar00valvestaff000000 000000 # Configure paths for SDL # Sam Lantinga 9/21/99 # stolen from Manish Singh # stolen back from Frank Belew # stolen from Manish Singh # Shamelessly stolen from Owen Taylor # serial 2 dnl AM_PATH_SDL2([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) dnl Test for SDL, and define SDL_CFLAGS and SDL_LIBS dnl AC_DEFUN([AM_PATH_SDL2], [dnl dnl Get the cflags and libraries from the sdl2-config script dnl AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)], sdl_prefix="$withval", sdl_prefix="") AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional)], sdl_exec_prefix="$withval", sdl_exec_prefix="") AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program], , enable_sdltest=yes) min_sdl_version=ifelse([$1], ,2.0.0,$1) if test "x$sdl_prefix$sdl_exec_prefix" = x ; then PKG_CHECK_MODULES([SDL], [sdl2 >= $min_sdl_version], [sdl_pc=yes], [sdl_pc=no]) else sdl_pc=no if test x$sdl_exec_prefix != x ; then sdl_config_args="$sdl_config_args --exec-prefix=$sdl_exec_prefix" if test x${SDL2_CONFIG+set} != xset ; then SDL2_CONFIG=$sdl_exec_prefix/bin/sdl2-config fi fi if test x$sdl_prefix != x ; then sdl_config_args="$sdl_config_args --prefix=$sdl_prefix" if test x${SDL2_CONFIG+set} != xset ; then SDL2_CONFIG=$sdl_prefix/bin/sdl2-config fi fi fi if test "x$sdl_pc" = xyes ; then no_sdl="" SDL2_CONFIG="pkg-config sdl2" else as_save_PATH="$PATH" if test "x$prefix" != xNONE && test "$cross_compiling" != yes; then PATH="$prefix/bin:$prefix/usr/bin:$PATH" fi AC_PATH_PROG(SDL2_CONFIG, sdl2-config, no, [$PATH]) PATH="$as_save_PATH" AC_MSG_CHECKING(for SDL - version >= $min_sdl_version) no_sdl="" if test "$SDL2_CONFIG" = "no" ; then no_sdl=yes else SDL_CFLAGS=`$SDL2_CONFIG $sdl_config_args --cflags` SDL_LIBS=`$SDL2_CONFIG $sdl_config_args --libs` sdl_major_version=`$SDL2_CONFIG $sdl_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` sdl_minor_version=`$SDL2_CONFIG $sdl_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` sdl_micro_version=`$SDL2_CONFIG $sdl_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test "x$enable_sdltest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_CXXFLAGS="$CXXFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $SDL_CFLAGS" CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" dnl dnl Now check if the installed SDL is sufficiently new. (Also sanity dnl checks the results of sdl2-config to some extent dnl rm -f conf.sdltest AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include #include #include "SDL.h" int main (int argc, char *argv[]) { int major, minor, micro; FILE *fp = fopen("conf.sdltest", "w"); if (fp) fclose(fp); if (sscanf("$min_sdl_version", "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_sdl_version"); exit(1); } if (($sdl_major_version > major) || (($sdl_major_version == major) && ($sdl_minor_version > minor)) || (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro))) { return 0; } else { printf("\n*** 'sdl2-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version); printf("*** of SDL required is %d.%d.%d. If sdl2-config is correct, then it is\n", major, minor, micro); printf("*** best to upgrade to the required version.\n"); printf("*** If sdl2-config was wrong, set the environment variable SDL2_CONFIG\n"); printf("*** to point to the correct copy of sdl2-config, and remove the file\n"); printf("*** config.cache before re-running configure\n"); return 1; } } ]])], [], [no_sdl=yes], [echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" CXXFLAGS="$ac_save_CXXFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_sdl" = x ; then AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) fi fi if test "x$no_sdl" = x ; then ifelse([$2], , :, [$2]) else if test "$SDL2_CONFIG" = "no" ; then echo "*** The sdl2-config script installed by SDL could not be found" echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in" echo "*** your path, or set the SDL2_CONFIG environment variable to the" echo "*** full path to sdl2-config." else if test -f conf.sdltest ; then : else echo "*** Could not run SDL test program, checking why..." CFLAGS="$CFLAGS $SDL_CFLAGS" CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include #include "SDL.h" int main(int argc, char *argv[]) { return 0; } #undef main #define main K_and_R_C_main ]], [[ return 0; ]])], [ echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding SDL or finding the wrong" echo "*** version of SDL. If it is not finding SDL, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"], [ echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means SDL was incorrectly installed" echo "*** or that you have moved SDL since it was installed. In the latter case, you" echo "*** may want to edit the sdl2-config script: $SDL2_CONFIG" ]) CFLAGS="$ac_save_CFLAGS" CXXFLAGS="$ac_save_CXXFLAGS" LIBS="$ac_save_LIBS" fi fi SDL_CFLAGS="" SDL_LIBS="" ifelse([$3], , :, [$3]) fi AC_SUBST(SDL_CFLAGS) AC_SUBST(SDL_LIBS) rm -f conf.sdltest ]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH|_LIBDIR)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES Maelstrom-3.0.7/buttonlist.h000644 000765 000024 00000002342 07043351074 016330 0ustar00valvestaff000000 000000 /* A simple menu button class -- only handles mouse input */ #include "SDL_types.h" class ButtonList { public: ButtonList() { button_list.next = NULL; } ~ButtonList() { Delete_Buttons(); } void Add_Button(Uint16 x, Uint16 y, Uint16 width, Uint16 height, void (*callback)(void)) { struct button *belem; for ( belem=&button_list; belem->next; belem=belem->next ); belem->next = new button; belem = belem->next; belem->x1 = x; belem->y1 = y; belem->x2 = x+width; belem->y2 = y+height; belem->callback = callback; belem->next = NULL; } void Activate_Button(Uint16 x, Uint16 y) { struct button *belem; for ( belem=button_list.next; belem; belem=belem->next ) { if ( (x >= belem->x1) && (x <= belem->x2) && (y >= belem->y1) && (y <= belem->y2) ) { if ( belem->callback ) (*belem->callback)(); } } } void Delete_Buttons(void) { struct button *belem, *btemp; for ( belem=button_list.next; belem; ) { btemp = belem; belem = belem->next; delete btemp; }; button_list.next = NULL; } private: typedef struct button { /* Sensitive area */ Uint16 x1, y1; Uint16 x2, y2; void (*callback)(void); struct button *next; } button; button button_list; }; Maelstrom-3.0.7/netscore.h000644 000765 000024 00000000405 14006431512 015732 0ustar00valvestaff000000 000000 /* Definitions for the network part of the score service */ #define SCORE_HOST "libsdl.org" #define SCORE_PORT 4444 #define KEY_LEN 4 /* Auth key length in bytes */ /* CRC Name Score Wave */ #define SCOREFMT "NEWSCORE\t%s\t%s\t%-3.1u\t%u\n" Maelstrom-3.0.7/install-sh000755 000765 000024 00000012736 07015153223 015757 0ustar00valvestaff000000 000000 #!/bin/sh # # install - install a program, script, or datafile # This comes from X11R5 (mit/util/scripts/install.sh). # # Copyright 1991 by the Massachusetts Institute of Technology # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that # the above copyright notice appear in all copies and that both that # copyright notice and this permission notice appear in supporting # documentation, and that the name of M.I.T. not be used in advertising or # publicity pertaining to distribution of the software without specific, # written prior permission. M.I.T. makes no representations about the # suitability of this software for any purpose. It is provided "as is" # without express or implied warranty. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. It can only install one file at a time, a restriction # shared with many OS's install programs. # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" transformbasename="" transform_arg="" instcmd="$mvprog" chmodcmd="$chmodprog 0755" chowncmd="" chgrpcmd="" stripcmd="" rmcmd="$rmprog -f" mvcmd="$mvprog" src="" dst="" dir_arg="" while [ x"$1" != x ]; do case $1 in -c) instcmd="$cpprog" shift continue;; -d) dir_arg=true shift continue;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; -s) stripcmd="$stripprog" shift continue;; -t=*) transformarg=`echo $1 | sed 's/-t=//'` shift continue;; -b=*) transformbasename=`echo $1 | sed 's/-b=//'` shift continue;; *) if [ x"$src" = x ] then src=$1 else # this colon is to work around a 386BSD /bin/sh bug : dst=$1 fi shift continue;; esac done if [ x"$src" = x ] then echo "install: no input file specified" exit 1 else true fi if [ x"$dir_arg" != x ]; then dst=$src src="" if [ -d $dst ]; then instcmd=: chmodcmd="" else instcmd=mkdir fi else # Waiting for this to be detected by the "$instcmd $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if [ -f $src -o -d $src ] then true else echo "install: $src does not exist" exit 1 fi if [ x"$dst" = x ] then echo "install: no destination specified" exit 1 else true fi # If destination is a directory, append the input filename; if your system # does not like double slashes in filenames, you may need to add some logic if [ -d $dst ] then dst="$dst"/`basename $src` else true fi fi ## this sed command emulates the dirname command dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` # Make sure that the destination directory exists. # this part is taken from Noah Friedman's mkinstalldirs script # Skip lots of stat calls in the usual case. if [ ! -d "$dstdir" ]; then defaultIFS=' ' IFS="${IFS-${defaultIFS}}" oIFS="${IFS}" # Some sh's can't handle IFS=/ for some reason. IFS='%' set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'` IFS="${oIFS}" pathcomp='' while [ $# -ne 0 ] ; do pathcomp="${pathcomp}${1}" shift if [ ! -d "${pathcomp}" ] ; then $mkdirprog "${pathcomp}" else true fi pathcomp="${pathcomp}/" done fi if [ x"$dir_arg" != x ] then $doit $instcmd $dst && if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi else # If we're going to rename the final executable, determine the name now. if [ x"$transformarg" = x ] then dstfile=`basename $dst` else dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename fi # don't allow the sed command to completely eliminate the filename if [ x"$dstfile" = x ] then dstfile=`basename $dst` else true fi # Make a temp file name in the proper directory. dsttmp=$dstdir/#inst.$$# # Move or copy the file name to the temp name $doit $instcmd $src $dsttmp && trap "rm -f ${dsttmp}" 0 && # and set any options; do chmod last to preserve setuid bits # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $instcmd $src $dsttmp" command. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi && # Now rename the file to the real destination. $doit $rmcmd -f $dstdir/$dstfile && $doit $mvcmd $dsttmp $dstdir/$dstfile fi && exit 0 Maelstrom-3.0.7/controls.h000644 000765 000024 00000001523 14007012406 015753 0ustar00valvestaff000000 000000 // Functions from controls.cc #ifdef USE_JOYSTICK extern void CalibrateJoystick(char *joystick); #endif extern void LoadControls(void); extern void SaveControls(void); extern void ConfigureControls(void); extern int PollEvent(SDL_Event *event, int timeout); extern void HandleEvents(int timeout); extern int DropEvents(void); extern void ShowDawn(void); /* Generic key control definitions */ #define THRUST_KEY 0x01 #define RIGHT_KEY 0x02 #define LEFT_KEY 0x03 #define SHIELD_KEY 0x04 #define FIRE_KEY 0x05 #define PAUSE_KEY 0x06 #define ABORT_KEY 0x07 /* The controls structure */ typedef struct { SDL_Keycode gPauseControl; SDL_Keycode gShieldControl; SDL_Keycode gThrustControl; SDL_Keycode gTurnRControl; SDL_Keycode gTurnLControl; SDL_Keycode gFireControl; SDL_Keycode gQuitControl; } Controls; extern SDL_Keymod gToggleFullscreenMod; Maelstrom-3.0.7/controls.cpp000644 000765 000024 00000034771 14007020646 016326 0ustar00valvestaff000000 000000 /* This file handles the controls configuration and updating the keystrokes */ #include #include #include "Maelstrom_Globals.h" #include "load.h" #include "dialog.h" #define MAELSTROM_DATA "Maelstrom-data" #define SIGNATURE "MAEL307" /* Savable and configurable controls/data */ /* Pause Shield Thrust TurnR TurnL Fire Quit */ #ifdef FAITHFUL_SPECS Controls controls = { SDLK_CAPSLOCK,SDLK_SPACE,SDLK_UP,SDLK_RIGHT,SDLK_LEFT,SDLK_TAB,SDLK_ESCAPE }; #else Controls controls = { SDLK_PAUSE,SDLK_SPACE,SDLK_UP,SDLK_RIGHT,SDLK_LEFT,SDLK_TAB,SDLK_ESCAPE }; #endif SDL_Keymod gToggleFullscreenMod = KMOD_ALT; #ifdef MOVIE_SUPPORT int gMovie = 0; #endif Uint8 gSoundLevel = 4; Uint8 gGammaCorrect = 3; /* Map a keycode to a key name */ void KeyName(SDL_Keycode keycode, char *namebuf) { const char *name; char ch; int starting; /* Get the name of the key */ name = SDL_GetKeyName(keycode); /* Add "arrow" to the arrow keys */ if ( strcmp(name, "up") == 0 ) { name = "up arrow"; } else if ( strcmp(name, "down") == 0 ) { name = "down arrow"; } else if ( strcmp(name, "right") == 0 ) { name = "right arrow"; } else if ( strcmp(name, "left") == 0 ) { name = "left arrow"; } /* Make the key names uppercased */ for ( starting = 1; *name; ++name ) { ch = *name; if ( starting ) { if ( islower(ch) ) ch = toupper(ch); starting = 0; } else { if ( ch == ' ' ) starting = 1; } *namebuf++ = ch; } *namebuf = '\0'; } static FILE *OpenData(const char *mode, const char **fname) { SavePath path(MAELSTROM_DATA); FILE *data; if ( fname ) { *fname = path.Path(); } if ( (data=fopen(path.Path(), mode)) == NULL ) return(NULL); return(data); } static bool ControlsUseKey(SDL_KeyCode key) { return (controls.gPauseControl == key || controls.gShieldControl == key || controls.gThrustControl == key || controls.gTurnRControl == key || controls.gTurnLControl == key || controls.gFireControl == key || controls.gQuitControl == key); } void UpdateToggleFullscreenShortcut() { if (!ControlsUseKey(SDLK_LALT) && !ControlsUseKey(SDLK_RALT)) { gToggleFullscreenMod = KMOD_ALT; } else if (!ControlsUseKey(SDLK_LSHIFT) && !ControlsUseKey(SDLK_RSHIFT)) { gToggleFullscreenMod = KMOD_SHIFT; } else if (!ControlsUseKey(SDLK_LCTRL) && !ControlsUseKey(SDLK_RCTRL)) { gToggleFullscreenMod = KMOD_CTRL; } else { gToggleFullscreenMod = KMOD_NONE; } } void LoadControls(void) { char buffer[BUFSIZ]; const char *datafile; FILE *data; /* Open our control data file */ data = OpenData("r", &datafile); if ( data == NULL ) { return; } /* Read the controls */ if ( (fread(buffer, 1, strlen(SIGNATURE), data) != 7) || strncmp(buffer, SIGNATURE, strlen(SIGNATURE)) ) { error( "Warning: Data file '%s' is corrupt! (will fix)\n", datafile); fclose(data); return; } fread(&gSoundLevel, sizeof(gSoundLevel), 1, data); fread(&controls, sizeof(controls), 1, data); fread(&gGammaCorrect, sizeof(gGammaCorrect), 1, data); fclose(data); UpdateToggleFullscreenShortcut(); } void SaveControls(void) { const char *datafile; const char *newmode; FILE *data; /* Don't clobber existing joystick data */ if ( (data=OpenData("r", NULL)) != NULL ) { newmode = "r+"; fclose(data); } else newmode = "w"; if ( (data=OpenData(newmode, &datafile)) == NULL ) { error("Warning: Couldn't save controls to %s\n", datafile); return; } fwrite(SIGNATURE, 1, strlen(SIGNATURE), data); fwrite(&gSoundLevel, sizeof(gSoundLevel), 1, data); fwrite(&controls, sizeof(controls), 1, data); fwrite(&gGammaCorrect, sizeof(gGammaCorrect), 1, data); fclose(data); UpdateToggleFullscreenShortcut(); } #define FIRE_CTL 0 #define THRUST_CTL 1 #define SHIELD_CTL 2 #define TURNR_CTL 3 #define TURNL_CTL 4 #define PAUSE_CTL 5 #define QUIT_CTL 6 #define NUM_CTLS 7 #define SP 3 #define CTL_DIALOG_WIDTH 482 #define CTL_DIALOG_HEIGHT 300 Controls newcontrols; static struct { const char *label; int yoffset; SDL_Keycode *control; } checkboxes[] = { { "Fire", 0*BOX_HEIGHT+0*SP, &newcontrols.gFireControl }, { "Thrust", 1*BOX_HEIGHT+1*SP, &newcontrols.gThrustControl }, { "Shield", 2*BOX_HEIGHT+2*SP, &newcontrols.gShieldControl }, { "Turn Clockwise", 3*BOX_HEIGHT+3*SP, &newcontrols.gTurnRControl }, { "Turn Counter-Clockwise", 4*BOX_HEIGHT+4*SP, &newcontrols.gTurnLControl }, { "Pause", 5*BOX_HEIGHT+5*SP, &newcontrols.gPauseControl }, { "Abort Game", 6*BOX_HEIGHT+6*SP, &newcontrols.gQuitControl }, }; static int X=0; static int Y=0; static MFont *chicago; static SDL_Surface *keynames[NUM_CTLS]; static int currentbox, valid; static int OK_callback(void) { valid = 1; return(1); } static int Cancel_callback(void) { valid = 0; return(1); } static void BoxKeyPress(SDL_Keysym key, int *doneflag) { SDL_Color black = { 0x00, 0x00, 0x00, 0 }; SDL_Color white = { 0xFF, 0xFF, 0xFF, 0 }; int i; char keyname[128]; if ( key.sym == *checkboxes[currentbox].control ) return; /* Make sure the key isn't in use! */ for ( i=0; iInvertText(keynames[currentbox]); screen->QueueBlit( X+96+(BOX_WIDTH-keynames[currentbox]->w)/2, Y+75+SP+checkboxes[currentbox].yoffset, keynames[currentbox], NOCLIP); screen->Update(); fontserv->FreeText(keynames[currentbox]); /* Blit the new message */ SDL_strlcpy(keyname, "That key is in use!", sizeof(keyname)); keynames[currentbox] = fontserv->TextImage(keyname, chicago, STYLE_NORM, black, white); screen->QueueBlit( X+96+(BOX_WIDTH-keynames[currentbox]->w)/2, Y+75+SP+checkboxes[currentbox].yoffset, keynames[currentbox], NOCLIP); screen->Update(); SDL_Delay(1000); break; } } /* Clear the current text */ fontserv->InvertText(keynames[currentbox]); screen->QueueBlit(X+96+(BOX_WIDTH-keynames[currentbox]->w)/2, Y+75+SP+checkboxes[currentbox].yoffset, keynames[currentbox], NOCLIP); screen->Update(); fontserv->FreeText(keynames[currentbox]); /* Display the new key */ *checkboxes[currentbox].control = key.sym; KeyName(*checkboxes[currentbox].control, keyname); keynames[currentbox] = fontserv->TextImage(keyname, chicago, STYLE_NORM, black, white); screen->QueueBlit(X+96+(BOX_WIDTH-keynames[currentbox]->w)/2, Y+75+SP+checkboxes[currentbox].yoffset, keynames[currentbox], NOCLIP); screen->Update(); } void ConfigureControls(void) { #ifdef FAITHFUL_SPECS static char *C_text1 = "While playing Maelstrom, CAPS LOCK pauses the game and"; static char *C_text2 = "ESC aborts the game."; SDL_Surface *text1, *text2; #endif Uint32 black; int i; char keyname[128]; Maclike_Dialog *dialog; SDL_Surface *splash; Mac_Button *cancel, *okay; Mac_RadioList *radiobuttons; Mac_Dialog *boxes; /* Set up all the components of the dialog box */ black = screen->MapRGB(0x00, 0x00, 0x00); if ( (chicago = fontserv->NewFont("Chicago", 12)) == NULL ) { error("Can't use Chicago font!\n"); return; } if ( (splash = Load_Title(screen, 100)) == NULL ) { error("Can't load configuration splash!\n"); delete chicago; return; } X=(SCREEN_WIDTH-CTL_DIALOG_WIDTH)/2; Y=(SCREEN_HEIGHT-CTL_DIALOG_HEIGHT)/2; dialog = new Maclike_Dialog(X, Y, CTL_DIALOG_WIDTH, CTL_DIALOG_HEIGHT, screen); dialog->Add_Image(splash, 4, 4); #ifdef FAITHFUL_SPECS text1 = fontserv->TextImage(C_text1,chicago,STYLE_NORM,0x00,0x00,0x00); text2 = fontserv->TextImage(C_text2,chicago,STYLE_NORM,0x00,0x00,0x00); dialog->Add_Image(text1, 66, 216); dialog->Add_Image(text2, 66, 232); #endif valid = 0; cancel = new Mac_Button(291, 265, BUTTON_WIDTH, BUTTON_HEIGHT, "Cancel", chicago, fontserv, Cancel_callback); dialog->Add_Dialog(cancel); okay = new Mac_Button(291+BUTTON_WIDTH+26, 265, BUTTON_WIDTH, BUTTON_HEIGHT, "OK", chicago, fontserv, OK_callback); dialog->Add_Dialog(okay); memcpy(&newcontrols, &controls, sizeof(controls)); radiobuttons = new Mac_RadioList(¤tbox, X+266, Y+75, chicago, fontserv); currentbox = FIRE_CTL; for ( i=0; iTextImage(keyname, chicago, STYLE_NORM, 0x00, 0x00, 0x00); /* Only display "Fire" through "Turn Counter-Clockwise" */ #ifdef FAITHFUL_SPECS if ( i < PAUSE_CTL ) { #else if ( i < NUM_CTLS ) { #endif radiobuttons->Add_Radio(263, 71+checkboxes[i].yoffset, checkboxes[i].label); dialog->Add_Rectangle(92, 71+checkboxes[i].yoffset, BOX_WIDTH, BOX_HEIGHT, black); dialog->Add_Image(keynames[i], 92+(BOX_WIDTH-keynames[i]->w)/2, 71+SP+checkboxes[i].yoffset); } } dialog->Add_Dialog(radiobuttons); boxes = new Mac_Dialog(92, 71); boxes->SetKeyPress(BoxKeyPress); dialog->Add_Dialog(boxes); /* Run the dialog box */ dialog->Run(EXPAND_STEPS); /* Clean up and return */ screen->FreeImage(splash); #ifdef FAITHFUL_SPECS fontserv->FreeText(text1); fontserv->FreeText(text2); #endif for ( i=0; iFreeText(keynames[i]); } delete chicago; delete dialog; if ( valid ) { memcpy(&controls, &newcontrols, sizeof(controls)); SaveControls(); } return; } static void HandleEvent(SDL_Event *event) { SDL_Keycode key; switch (event->type) { #ifdef SDL_INIT_JOYSTICK /* -- Handle joystick axis motion */ case SDL_JOYAXISMOTION: /* X-Axis - rotate right/left */ if ( event->jaxis.axis == 0 ) { if ( event->jaxis.value < -8000 ) { SetControl(LEFT_KEY, 1); SetControl(RIGHT_KEY, 0); } else if ( event->jaxis.value > 8000 ) { SetControl(RIGHT_KEY, 1); SetControl(LEFT_KEY, 0); } else { SetControl(LEFT_KEY, 0); SetControl(RIGHT_KEY, 0); } } else /* Y-Axis - accelerate */ if ( event->jaxis.axis == 1 ) { if ( event->jaxis.value < -8000 ) { SetControl(THRUST_KEY, 1); } else { SetControl(THRUST_KEY, 0); } } break; /* -- Handle joystick button presses/releases */ case SDL_JOYBUTTONDOWN: case SDL_JOYBUTTONUP: if ( event->jbutton.state == SDL_PRESSED ) { if ( event->jbutton.button == 0 ) { SetControl(FIRE_KEY, 1); } else if ( event->jbutton.button == 1 ) { SetControl(SHIELD_KEY, 1); } } else { if ( event->jbutton.button == 0 ) { SetControl(FIRE_KEY, 0); } else if ( event->jbutton.button == 1 ) { SetControl(SHIELD_KEY, 0); } } break; #endif /* -- Handle key presses/releases */ case SDL_KEYDOWN: /* -- Handle ALT-ENTER hotkey */ if ( (event->key.keysym.sym == SDLK_RETURN) && (event->key.keysym.mod & gToggleFullscreenMod) ) { screen->ToggleFullScreen(); break; } case SDL_KEYUP: /* -- Handle normal key bindings */ key = event->key.keysym.sym; if ( event->key.state == SDL_PRESSED ) { /* Check for various control keys */ if ( key == controls.gFireControl ) SetControl(FIRE_KEY, 1); else if ( key == controls.gTurnRControl ) SetControl(RIGHT_KEY, 1); else if ( key == controls.gTurnLControl ) SetControl(LEFT_KEY, 1); else if ( key == controls.gShieldControl ) SetControl(SHIELD_KEY, 1); else if ( key == controls.gThrustControl ) SetControl(THRUST_KEY, 1); else if ( key == controls.gPauseControl ) SetControl(PAUSE_KEY, 1); else if ( key == controls.gQuitControl ) SetControl(ABORT_KEY, 1); else if ( SpecialKey(event->key.keysym) == 0 ) /* The key has been handled */; else if ( key == SDLK_F3 ) { /* Special key -- Do a screen dump here. */ screen->ScreenDump("ScreenShot", 0, 0, 0, 0); #ifdef MOVIE_SUPPORT } else if ( key == XK_F5 ) { /* Special key -- Toggle movie function. */ extern int SelectMovieRect(void); if ( ! gMovie ) gMovie = SelectMovieRect(); else gMovie = 0; mesg("Movie is %s...\n", gMovie ? "started" : "stopped"); #endif } } else { /* Update control key status */ if ( key == controls.gFireControl ) SetControl(FIRE_KEY, 0); else if ( key == controls.gTurnRControl ) SetControl(RIGHT_KEY, 0); else if ( key == controls.gTurnLControl ) SetControl(LEFT_KEY, 0); else if ( key == controls.gShieldControl ) SetControl(SHIELD_KEY, 0); else if ( key == controls.gThrustControl ) SetControl(THRUST_KEY, 0); } break; case SDL_QUIT: SetControl(ABORT_KEY, 1); break; } } /* This function gives a good way to delay a specified amount of time while handling keyboard/joystick events, or just to poll for events. */ void HandleEvents(int timeout) { SDL_Event event; do { while ( SDL_PollEvent(&event) ) { HandleEvent(&event); } if ( timeout ) { /* Delay 1/60 of a second... */ Delay(1); } } while ( timeout-- ); } int DropEvents(void) { SDL_Event event; int keys = 0; while ( SDL_PollEvent(&event) ) { if ( event.type == SDL_KEYDOWN ) { ++keys; } } return(keys); } #define DAWN_DIALOG_WIDTH 318 #define DAWN_DIALOG_HEIGHT 194 void ShowDawn(void) { static const char *D_text[6] = { "No eternal reward will forgive us", "now", "for", "wasting", "the", "dawn." }; MFont *chicago; SDL_Surface *splash, *text[6]; Maclike_Dialog *dialog; Mac_Button *OK; int i, x, y, X, Y; /* Set up all the components of the dialog box */ #ifdef CENTER_DIALOG X=(SCREEN_WIDTH-DAWN_DIALOG_WIDTH)/2; Y=(SCREEN_HEIGHT-DAWN_DIALOG_HEIGHT)/2; #else /* The way it is on the original Maelstrom */ X=160; Y=73; #endif if ( (chicago = fontserv->NewFont("Chicago", 12)) == NULL ) { error("Can't use Chicago font!\n"); return; } if ( (splash = GetCIcon(screen, 103)) == NULL ) { error("Can't load alien dawn splash!\n"); return; } dialog = new Maclike_Dialog(X, Y, DAWN_DIALOG_WIDTH, DAWN_DIALOG_HEIGHT, screen); x = y = 19; dialog->Add_Image(splash, x, y); x += (splash->w+26); text[0] = fontserv->TextImage(D_text[0], chicago, STYLE_NORM, 0x00, 0x00, 0x00); dialog->Add_Image(text[0], x, y); for ( i=1; i<6; ++i ) { y += (text[i-1]->h+2); text[i] = fontserv->TextImage(D_text[i], chicago, STYLE_NORM, 0x00, 0x00, 0x00); dialog->Add_Image(text[i], x, y); x += (text[i]->w+2); } OK = new Mac_DefaultButton(210, 160, 90, BUTTON_HEIGHT, "OK", chicago, fontserv, NULL); dialog->Add_Dialog(OK); /* Run the dialog box */ dialog->Run(EXPAND_STEPS); /* Clean up and return */ screen->FreeImage(splash); for ( i=0; i<6; ++i ) fontserv->FreeText(text[i]); delete chicago; delete dialog; return; } Maelstrom-3.0.7/INSTALL000644 000765 000024 00000000436 14006431554 015002 0ustar00valvestaff000000 000000 To build and install the game, get the Simple DirectMedia Layer library from http://www.libsdl.org and install it. Then run: ./configure; make; make install If you are building with Visual C++, unpack VisualC.zip and open the VC++ project file found in the new "VisualC" directory. Maelstrom-3.0.7/dialog.h000644 000765 000024 00000053730 14007050016 015355 0ustar00valvestaff000000 000000 #include #include #include "SDL_FrameBuf.h" #include "Mac_FontServ.h" /* This is a class set for Macintosh-like dialogue boxes. :) */ /* Sorta complex... */ /* Defaults for various dialog classes */ #define BUTTON_WIDTH 75 #define BUTTON_HEIGHT 19 #define BOX_WIDTH 170 #define BOX_HEIGHT 20 #define EXPAND_STEPS 50 class Mac_Dialog { public: Mac_Dialog(int x, int y); virtual ~Mac_Dialog() { } /* Input handling */ virtual void SetButtonPress(void (*new_button_callback) (int x, int y, int button, int *doneflag)) { button_callback = new_button_callback; } virtual void HandleButtonPress(int x, int y, int button, int *doneflag) { if ( button_callback ) { (*button_callback)(x, y, button, doneflag); } } virtual void SetKeyPress(void (*new_key_callback) (SDL_Keysym key, int *doneflag)) { key_callback = new_key_callback; } virtual void HandleKeyPress(SDL_Keysym key, int *doneflag) { if ( key_callback ) { (*key_callback)(key, doneflag); } } /* Display handling */ virtual void Map(int Xoff, int Yoff, FrameBuf *screen, Uint8 R_bg, Uint8 G_bg, Uint8 B_bg, Uint8 R_fg, Uint8 G_fg, Uint8 B_fg) { X += Xoff; Y += Yoff; Screen = screen; } virtual void Show(void) { } static void EnableText(void) { if ( text_enabled++ == 0 ) { SDL_StartTextInput(); } } static void DisableText(void) { if ( --text_enabled == 0 ) { SDL_StopTextInput(); } } /* Error message routine */ virtual char *Error(void) { return(errstr); } protected: static int text_enabled; FrameBuf *Screen; int X, Y; void (*button_callback)(int x, int y, int button, int *doneflag); void (*key_callback)(SDL_Keysym key, int *doneflag); /* Utility routines for dialogs */ int IsSensitive(SDL_Rect *area, int x, int y) { if ( (y > area->y) && (y < (area->y+area->h)) && (x > area->x) && (x < (area->x+area->w)) ) return(1); return(0); } /* Error message */ virtual void SetError(const char *fmt, ...) { va_list ap; va_start(ap, fmt); SDL_vsnprintf(errbuf, sizeof(errbuf), fmt, ap); va_end(ap); errstr = errbuf; } char *errstr; char errbuf[1024]; }; /* The button callbacks should return 1 if they finish the dialog, or 0 if they do not. */ class Mac_Button : public Mac_Dialog { public: Mac_Button(int x, int y, int width, int height, const char *text, MFont *font, FontServ *fontserv, int (*callback)(void)); virtual ~Mac_Button() { SDL_FreeSurface(button); } virtual void Map(int Xoff, int Yoff, FrameBuf *screen, Uint8 R_bg, Uint8 G_bg, Uint8 B_bg, Uint8 R_fg, Uint8 G_fg, Uint8 B_fg) { /* Do the normal dialog mapping */ Mac_Dialog::Map(Xoff, Yoff, screen, R_bg, G_bg, B_bg, R_fg, G_fg, B_fg); /* Set up the button sensitivity */ sensitive.x = X; sensitive.y = Y; sensitive.w = Width; sensitive.h = Height; /* Map the bitmap image */ button->format->palette->colors[0].r = R_bg; button->format->palette->colors[0].g = G_bg; button->format->palette->colors[0].b = B_bg; button->format->palette->colors[1].r = R_fg; button->format->palette->colors[1].g = G_fg; button->format->palette->colors[1].b = B_fg; } virtual void Show(void) { Screen->QueueBlit(X, Y, button, NOCLIP); } virtual void HandleButtonPress(int x, int y, int button, int *doneflag) { if ( IsSensitive(&sensitive, x, y) ) ActivateButton(doneflag); } protected: int Width, Height; SDL_Surface *button; SDL_Rect sensitive; int (*Callback)(void); virtual void Bevel_Button(SDL_Surface *image) { Uint16 h; Uint8 *image_bits; image_bits = (Uint8 *)image->pixels; /* Bevel upper corners */ memset(image_bits+3, 0x01, image->w-6); image_bits += image->pitch; memset(image_bits+1, 0x01, 2); memset(image_bits+image->w-3, 0x01, 2); image_bits += image->pitch; memset(image_bits+1, 0x01, 1); memset(image_bits+image->w-2, 0x01, 1); image_bits += image->pitch; /* Draw sides */ for ( h=3; h<(image->h-3); ++h ) { image_bits[0] = 0x01; image_bits[image->w-1] = 0x01; image_bits += image->pitch; } /* Bevel bottom corners */ memset(image_bits+1, 0x01, 1); memset(image_bits+image->w-2, 0x01, 1); image_bits += image->pitch; memset(image_bits+1, 0x01, 2); memset(image_bits+image->w-3, 0x01, 2); image_bits += image->pitch; memset(image_bits+3, 0x01, image->w-6); } virtual void InvertImage(void) { int i; Uint8 *buf; for ( i=button->h*button->pitch, buf=(Uint8 *)button->pixels; i > 0; --i, ++buf ) { *buf = !*buf; } } virtual void ActivateButton(int *doneflag) { /* Flash the button */ InvertImage(); Show(); Screen->Update(); SDL_Delay(50); InvertImage(); Show(); Screen->Update(); /* Run the callback */ if ( Callback ) *doneflag = (*Callback)(); else *doneflag = 1; } }; /* The only difference between this button and the Mac_Button is that if is pressed, this button is activated. */ class Mac_DefaultButton : public Mac_Button { public: Mac_DefaultButton(int x, int y, int width, int height, const char *text, MFont *font, FontServ *fontserv, int (*callback)(void)); virtual ~Mac_DefaultButton() { } virtual void HandleKeyPress(SDL_Keysym key, int *doneflag) { if ( key.sym == SDLK_RETURN ) ActivateButton(doneflag); } virtual void Map(int Xoff, int Yoff, FrameBuf *screen, Uint8 R_bg, Uint8 G_bg, Uint8 B_bg, Uint8 R_fg, Uint8 G_fg, Uint8 B_fg) { Mac_Button::Map(Xoff, Yoff, screen, R_bg, G_bg, B_bg, R_fg, G_fg, B_fg); Fg = Screen->MapRGB(R_fg, G_fg, B_fg); } virtual void Show(void) { int x, y, maxx, maxy; /* Show the normal button */ Mac_Button::Show(); /* Show the thick edge */ x = X-4; maxx = x+4+Width+4-1; y = Y-4; maxy = y+4+Height+4-1; Screen->DrawLine(x+5, y, maxx-5, y, Fg); Screen->DrawLine(x+3, y+1, maxx-3, y+1, Fg); Screen->DrawLine(x+2, y+2, maxx-2, y+2, Fg); Screen->DrawLine(x+1, y+3, x+5, y+3, Fg); Screen->DrawLine(maxx-5, y+3, maxx-1, y+3, Fg); Screen->DrawLine(x+1, y+4, x+3, y+4, Fg); Screen->DrawLine(maxx-3, y+4, maxx-1, y+4, Fg); Screen->DrawLine(x, y+5, x+3, y+5, Fg); Screen->DrawLine(maxx-3, y+5, maxx, y+5, Fg); Screen->DrawLine(x, y+6, x, maxy-6, Fg); Screen->DrawLine(maxx, y+6, maxx, maxy-6, Fg); Screen->DrawLine(x+1, y+6, x+1, maxy-6, Fg); Screen->DrawLine(maxx-1, y+6, maxx-1, maxy-6, Fg); Screen->DrawLine(x+2, y+6, x+2, maxy-6, Fg); Screen->DrawLine(maxx-2, y+6, maxx-2, maxy-6, Fg); Screen->DrawLine(x, maxy-5, x+3, maxy-5, Fg); Screen->DrawLine(maxx-3, maxy-5, maxx, maxy-5, Fg); Screen->DrawLine(x+1, maxy-4, x+3, maxy-4, Fg); Screen->DrawLine(maxx-3, maxy-4, maxx-1, maxy-4, Fg); Screen->DrawLine(x+1, maxy-3, x+5, maxy-3, Fg); Screen->DrawLine(maxx-5, maxy-3, maxx-1, maxy-3, Fg); Screen->DrawLine(x+2, maxy-2, maxx-2, maxy-2, Fg); Screen->DrawLine(x+3, maxy-1, maxx-3, maxy-1, Fg); Screen->DrawLine(x+5, maxy, maxx-5, maxy, Fg); } protected: Uint32 Fg; /* The foreground color of the dialog */ }; /* Class of checkboxes */ #define CHECKBOX_SIZE 12 class Mac_CheckBox : public Mac_Dialog { public: Mac_CheckBox(int *toggle, int x, int y, const char *text, MFont *font, FontServ *fontserv); virtual ~Mac_CheckBox() { if ( label ) { Fontserv->FreeText(label); } } virtual void HandleButtonPress(int x, int y, int button, int *doneflag) { if ( IsSensitive(&sensitive, x, y) ) { *checkval = !*checkval; Check_Box(*checkval); Screen->Update(); } } virtual void Map(int Xoff, int Yoff, FrameBuf *screen, Uint8 R_bg, Uint8 G_bg, Uint8 B_bg, Uint8 R_fg, Uint8 G_fg, Uint8 B_fg) { /* Do the normal dialog mapping */ Mac_Dialog::Map(Xoff, Yoff, screen, R_bg, G_bg, B_bg, R_fg, G_fg, B_fg); /* Set up the checkbox sensitivity */ sensitive.x = X; sensitive.y = Y; sensitive.w = CHECKBOX_SIZE; sensitive.h = CHECKBOX_SIZE; /* Get the screen colors */ Fg = Screen->MapRGB(R_fg, G_fg, B_fg); Bg = Screen->MapRGB(R_bg, G_bg, B_bg); /* Map the checkbox text */ label->format->palette->colors[1].r = R_fg; label->format->palette->colors[1].g = G_fg; label->format->palette->colors[1].b = B_fg; } virtual void Show(void) { Screen->DrawRect(X, Y, CHECKBOX_SIZE, CHECKBOX_SIZE, Fg); if ( label ) { Screen->QueueBlit(X+CHECKBOX_SIZE+4, Y-2, label,NOCLIP); } Check_Box(*checkval); } private: FontServ *Fontserv; SDL_Surface *label; Uint32 Fg, Bg; int *checkval; SDL_Rect sensitive; void Check_Box(int checked) { Uint32 color; if ( checked ) color = Fg; else color = Bg; Screen->DrawLine(X, Y, X+CHECKBOX_SIZE-1, Y+CHECKBOX_SIZE-1, color); Screen->DrawLine(X, Y+CHECKBOX_SIZE-1, X+CHECKBOX_SIZE-1, Y, color); } }; /* Class of radio buttons */ class Mac_RadioList : public Mac_Dialog { private: struct radio { SDL_Surface *label; int x, y; SDL_Rect sensitive; struct radio *next; }; public: Mac_RadioList(int *variable, int x, int y, MFont *font, FontServ *fontserv); virtual ~Mac_RadioList() { struct radio *radio, *old; for ( radio=radio_list.next; radio; ) { old = radio; radio = radio->next; if ( old->label ) Fontserv->FreeText(old->label); delete old; } } virtual void HandleButtonPress(int x, int y, int button, int *doneflag) { int n; struct radio *radio, *oldradio; oldradio = radio_list.next; for (n=0, radio=radio_list.next; radio; radio=radio->next, ++n){ if ( n == *radiovar ) { oldradio = radio; break; } } for (n=0, radio=radio_list.next; radio; radio=radio->next, ++n){ if ( IsSensitive(&radio->sensitive, x, y) ) { Spot(oldradio->x, oldradio->y, Bg); *radiovar = n; Spot(radio->x, radio->y, Fg); Screen->Update(); } } } virtual void Add_Radio(int x, int y, const char *text) { struct radio *radio; for ( radio=&radio_list; radio->next; radio=radio->next ) /* Loop to end of radio box list */; radio->next = new struct radio; radio = radio->next; radio->label = Fontserv->TextImage(text, Font, STYLE_NORM, 0, 0, 0); radio->x = x; radio->y = y; radio->sensitive.x = x; radio->sensitive.y = y; radio->sensitive.w = 20+radio->label->w; radio->sensitive.h = BOX_HEIGHT; radio->next = NULL; } virtual void Map(int Xoff, int Yoff, FrameBuf *screen, Uint8 R_bg, Uint8 G_bg, Uint8 B_bg, Uint8 R_fg, Uint8 G_fg, Uint8 B_fg) { struct radio *radio; /* Do the normal dialog mapping */ Mac_Dialog::Map(Xoff, Yoff, screen, R_bg, G_bg, B_bg, R_fg, G_fg, B_fg); /* Get the screen colors */ Fg = Screen->MapRGB(R_fg, G_fg, B_fg); Bg = Screen->MapRGB(R_bg, G_bg, B_bg); /* Adjust sensitivity and map the radiobox text */ for ( radio=radio_list.next; radio; radio=radio->next ) { radio->x += Xoff; radio->y += Yoff; radio->sensitive.x += Xoff; radio->sensitive.y += Yoff; radio->label->format->palette->colors[1].r = R_fg; radio->label->format->palette->colors[1].g = G_fg; radio->label->format->palette->colors[1].b = B_fg; } } virtual void Show(void) { int n; struct radio *radio; for (n=0, radio=radio_list.next; radio; radio=radio->next, ++n){ Circle(radio->x, radio->y); if ( n == *radiovar ) { Spot(radio->x, radio->y, Fg); } if ( radio->label ) { Screen->QueueBlit(radio->x+21, radio->y+3, radio->label, NOCLIP); } } } private: FontServ *Fontserv; MFont *Font; Uint32 Fg, Bg; int *radiovar; radio radio_list; void Circle(int x, int y) { x += 5; y += 5; Screen->DrawLine(x+4, y, x+7, y, Fg); Screen->DrawLine(x+2, y+1, x+3, y+1, Fg); Screen->DrawLine(x+8, y+1, x+9, y+1, Fg); Screen->DrawLine(x+1, y+2, x+1, y+3, Fg); Screen->DrawLine(x+10, y+2, x+10, y+3, Fg); Screen->DrawLine(x, y+4, x, y+7, Fg); Screen->DrawLine(x+11, y+4, x+11, y+7, Fg); Screen->DrawLine(x+1, y+8, x+1, y+9, Fg); Screen->DrawLine(x+10, y+8, x+10, y+9, Fg); Screen->DrawLine(x+2, y+10, x+3, y+10, Fg); Screen->DrawLine(x+8, y+10, x+9, y+10, Fg); Screen->DrawLine(x+4, y+11, x+7, y+11, Fg); } void Spot(int x, int y, Uint32 color) { x += 8; y += 8; Screen->DrawLine(x+1, y, x+4, y, color); ++y; Screen->DrawLine(x, y, x+5, y, color); ++y; Screen->DrawLine(x, y, x+5, y, color); ++y; Screen->DrawLine(x, y, x+5, y, color); ++y; Screen->DrawLine(x, y, x+5, y, color); ++y; Screen->DrawLine(x+1, y, x+4, y, color); } }; /* Class of text entry boxes */ class Mac_TextEntry : public Mac_Dialog { public: Mac_TextEntry(int x, int y, MFont *font, FontServ *fontserv); virtual ~Mac_TextEntry() { struct text_entry *entry, *old; for ( entry=entry_list.next; entry; ) { old = entry; entry = entry->next; if ( old->text ) Fontserv->FreeText(old->text); delete old; } DisableText(); } virtual void HandleButtonPress(int x, int y, int button, int *doneflag) { struct text_entry *entry; for ( entry=entry_list.next; entry; entry=entry->next ) { if ( IsSensitive(&entry->sensitive, x, y) ) { current->hilite = 0; Update_Entry(current); current = entry; DrawCursor(current); Screen->Update(); } } } virtual void HandleKeyPress(SDL_Keysym key, int *doneflag) { int n; switch (key.sym) { case SDLK_TAB: current->hilite = 0; Update_Entry(current); if ( current->next ) current=current->next; else current=entry_list.next; current->hilite = 1; Update_Entry(current); break; case SDLK_DELETE: case SDLK_BACKSPACE: if ( current->hilite ) { *current->variable = '\0'; current->hilite = 0; } else if ( *current->variable ) { n = strlen(current->variable); current->variable[n-1] = '\0'; } Update_Entry(current); DrawCursor(current); break; default: if ( (current->end+Cwidth) > current->width ) return; // FIXME: We should use SDL_TEXTINPUT, but this class isn't used, so... if ( key.sym <= 0x7F ) { current->hilite = 0; n = strlen(current->variable); current->variable[n] = (char)key.sym; current->variable[n+1] = '\0'; Update_Entry(current); DrawCursor(current); } break; } Screen->Update(); } virtual void Add_Entry(int x, int y, int width, int is_default, char *variable) { struct text_entry *entry; for ( entry=&entry_list; entry->next; entry=entry->next ) /* Loop to end of entry list */; entry->next = new struct text_entry; entry = entry->next; entry->variable = variable; if ( is_default ) { current = entry; entry->hilite = 1; } else entry->hilite = 0; entry->x = x+3; entry->y = y+3; entry->width = width*Cwidth; entry->height = Cheight; entry->sensitive.x = x; entry->sensitive.y = y; entry->sensitive.w = 3+(width*Cwidth)+3; entry->sensitive.h = 3+Cheight+3; entry->text = NULL; entry->next = NULL; } virtual void Map(int Xoff, int Yoff, FrameBuf *screen, Uint8 R_bg, Uint8 G_bg, Uint8 B_bg, Uint8 R_fg, Uint8 G_fg, Uint8 B_fg) { struct text_entry *entry; /* Do the normal dialog mapping */ Mac_Dialog::Map(Xoff, Yoff, screen, R_bg, G_bg, B_bg, R_fg, G_fg, B_fg); /* Get the screen colors */ foreground.r = R_fg; foreground.g = G_fg; foreground.b = B_fg; background.r = R_bg; background.g = G_bg; background.b = B_bg; Fg = Screen->MapRGB(R_fg, G_fg, B_fg); Bg = Screen->MapRGB(R_bg, G_bg, B_bg); /* Adjust sensitivity and map the radiobox text */ for ( entry=entry_list.next; entry; entry=entry->next ) { entry->x += Xoff; entry->y += Yoff; entry->sensitive.x += Xoff; entry->sensitive.y += Yoff; } } virtual void Show(void) { struct text_entry *entry; for ( entry=entry_list.next; entry; entry=entry->next ) { Screen->DrawRect(entry->x-3, entry->y-3, 3+entry->width+3, 3+Cheight+3, Fg); Update_Entry(entry); } } private: FontServ *Fontserv; MFont *Font; Uint32 Fg, Bg; int Cwidth, Cheight; SDL_Color foreground; SDL_Color background; struct text_entry { SDL_Surface *text; char *variable; SDL_Rect sensitive; int x, y; int width, height; int end; int hilite; struct text_entry *next; } entry_list, *current; void Update_Entry(struct text_entry *entry) { Uint32 clear; /* Create the new entry text */ if ( entry->text ) { Fontserv->FreeText(entry->text); } if ( entry->hilite ) { clear = Fg; entry->text = Fontserv->TextImage(entry->variable, Font, STYLE_NORM, background, foreground); } else { clear = Bg; entry->text = Fontserv->TextImage(entry->variable, Font, STYLE_NORM, foreground, background); } Screen->FillRect(entry->x, entry->y, entry->width, entry->height, clear); if ( entry->text ) { entry->end = entry->text->w; Screen->QueueBlit(entry->x, entry->y, entry->text, NOCLIP); } else { entry->end = 0; } } void DrawCursor(struct text_entry *entry) { Screen->DrawLine(entry->x+entry->end, entry->y, entry->x+entry->end, entry->y+entry->height-1, Fg); } }; /* Class of numeric entry boxes */ class Mac_NumericEntry : public Mac_Dialog { public: Mac_NumericEntry(int x, int y, MFont *font, FontServ *fontserv); virtual ~Mac_NumericEntry() { struct numeric_entry *entry, *old; for ( entry=entry_list.next; entry; ) { old = entry; entry = entry->next; if ( old->text ) Fontserv->FreeText(old->text); delete old; } } virtual void HandleButtonPress(int x, int y, int button, int *doneflag) { struct numeric_entry *entry; for ( entry=entry_list.next; entry; entry=entry->next ) { if ( IsSensitive(&entry->sensitive, x, y) ) { current->hilite = 0; Update_Entry(current); current = entry; DrawCursor(current); Screen->Update(); } } } virtual void HandleKeyPress(SDL_Keysym key, int *doneflag) { int n; switch (key.sym) { case SDLK_TAB: current->hilite = 0; Update_Entry(current); if ( current->next ) current=current->next; else current=entry_list.next; current->hilite = 1; Update_Entry(current); break; case SDLK_DELETE: case SDLK_BACKSPACE: if ( current->hilite ) { *current->variable = 0; current->hilite = 0; } else *current->variable /= 10; Update_Entry(current); DrawCursor(current); break; case SDLK_0: case SDLK_1: case SDLK_2: case SDLK_3: case SDLK_4: case SDLK_5: case SDLK_6: case SDLK_7: case SDLK_8: case SDLK_9: n = (key.sym-SDLK_0); if ( (current->end+Cwidth) > current->width ) return; if ( current->hilite ) { *current->variable = n; current->hilite = 0; } else { *current->variable *= 10; *current->variable += n; } Update_Entry(current); DrawCursor(current); break; default: break; } Screen->Update(); } virtual void Add_Entry(int x, int y, int width, int is_default, int *variable) { struct numeric_entry *entry; for ( entry=&entry_list; entry->next; entry=entry->next ) /* Loop to end of numeric entry list */; entry->next = new struct numeric_entry; entry = entry->next; entry->variable = variable; if ( is_default ) { current = entry; entry->hilite = 1; } else entry->hilite = 0; entry->x = x+3; entry->y = y+3; entry->width = width*Cwidth; entry->height = Cheight; entry->sensitive.x = x; entry->sensitive.y = y; entry->sensitive.w = 3+(width*Cwidth)+3; entry->sensitive.h = 3+Cheight+3; entry->text = NULL; entry->next = NULL; } virtual void Map(int Xoff, int Yoff, FrameBuf *screen, Uint8 R_bg, Uint8 G_bg, Uint8 B_bg, Uint8 R_fg, Uint8 G_fg, Uint8 B_fg) { struct numeric_entry *entry; /* Do the normal dialog mapping */ Mac_Dialog::Map(Xoff, Yoff, screen, R_bg, G_bg, B_bg, R_fg, G_fg, B_fg); /* Get the screen colors */ foreground.r = R_fg; foreground.g = G_fg; foreground.b = B_fg; background.r = R_bg; background.g = G_bg; background.b = B_bg; Fg = Screen->MapRGB(R_fg, G_fg, B_fg); Bg = Screen->MapRGB(R_bg, G_bg, B_bg); /* Adjust sensitivity and map the radiobox text */ for ( entry=entry_list.next; entry; entry=entry->next ) { entry->x += Xoff; entry->y += Yoff; entry->sensitive.x += Xoff; entry->sensitive.y += Yoff; } } virtual void Show(void) { struct numeric_entry *entry; for ( entry=entry_list.next; entry; entry=entry->next ) { Screen->DrawRect(entry->x-3, entry->y-3, 3+entry->width+3, 3+Cheight+3, Fg); Update_Entry(entry); } } private: FontServ *Fontserv; MFont *Font; Uint32 Fg, Bg; int Cwidth, Cheight; SDL_Color foreground; SDL_Color background; struct numeric_entry { SDL_Surface *text; int *variable; SDL_Rect sensitive; int x, y; int width, height; int end; int hilite; struct numeric_entry *next; } entry_list, *current; void Update_Entry(struct numeric_entry *entry) { char buf[128]; Uint32 clear; /* Create the new entry text */ if ( entry->text ) { Fontserv->FreeText(entry->text); } SDL_snprintf(buf, sizeof(buf), "%d", *entry->variable); if ( entry->hilite ) { clear = Fg; entry->text = Fontserv->TextImage(buf, Font, STYLE_NORM, background, foreground); } else { clear = Bg; entry->text = Fontserv->TextImage(buf, Font, STYLE_NORM, foreground, background); } entry->end = entry->text->w; Screen->FillRect(entry->x, entry->y, entry->width, entry->height, clear); Screen->QueueBlit(entry->x, entry->y, entry->text, NOCLIP); } void DrawCursor(struct numeric_entry *entry) { Screen->DrawLine(entry->x+entry->end, entry->y, entry->x+entry->end, entry->y+entry->height-1, Fg); } }; /* Finally, the macintosh-like dialog class */ class Maclike_Dialog { public: Maclike_Dialog(int x, int y, int width, int height, FrameBuf *screen); ~Maclike_Dialog(); void Add_Rectangle(int x, int y, int w, int h, Uint32 color); void Add_Image(SDL_Surface *image, int x, int y); void Add_Dialog(Mac_Dialog *dialog); void Run(int expand_steps = 1); private: FrameBuf *Screen; int X, Y; int Width, Height; struct rect_elem { Sint16 x, y; Uint16 w, h; Uint32 color; struct rect_elem *next; } rect_list; struct image_elem { SDL_Surface *image; int x, y; struct image_elem *next; } image_list; struct dialog_elem { Mac_Dialog *dialog; struct dialog_elem *next; } dialog_list; }; Maelstrom-3.0.7/maclib/000755 000765 000024 00000000000 14007426743 015202 5ustar00valvestaff000000 000000 Maelstrom-3.0.7/colortable.h000644 000765 000024 00000322263 14006110151 016240 0ustar00valvestaff000000 000000 /* The standard Maelstrom colormap + 8 levels of gamma correction */ #define MAX_GAMMA 8 static SDL_Color colors[1+MAX_GAMMA][256] = { /* Gamma level 0 */ { { 0xff, 0xff, 0xff, 0xff }, /* Pixel 0 */ { 0xff, 0xff, 0xcc, 0xff }, /* Pixel 1 */ { 0xff, 0xff, 0x99, 0xff }, /* Pixel 2 */ { 0xff, 0xff, 0x66, 0xff }, /* Pixel 3 */ { 0xff, 0xff, 0x33, 0xff }, /* Pixel 4 */ { 0xff, 0xff, 0x00, 0xff }, /* Pixel 5 */ { 0xff, 0xcc, 0xff, 0xff }, /* Pixel 6 */ { 0xff, 0xcc, 0xcc, 0xff }, /* Pixel 7 */ { 0xff, 0xcc, 0x99, 0xff }, /* Pixel 8 */ { 0xff, 0xcc, 0x66, 0xff }, /* Pixel 9 */ { 0xff, 0xcc, 0x33, 0xff }, /* Pixel 10 */ { 0xff, 0xcc, 0x00, 0xff }, /* Pixel 11 */ { 0xff, 0x99, 0xff, 0xff }, /* Pixel 12 */ { 0xff, 0x99, 0xcc, 0xff }, /* Pixel 13 */ { 0xff, 0x99, 0x99, 0xff }, /* Pixel 14 */ { 0xff, 0x99, 0x66, 0xff }, /* Pixel 15 */ { 0xff, 0x99, 0x33, 0xff }, /* Pixel 16 */ { 0xff, 0x99, 0x00, 0xff }, /* Pixel 17 */ { 0xff, 0x66, 0xff, 0xff }, /* Pixel 18 */ { 0xff, 0x66, 0xcc, 0xff }, /* Pixel 19 */ { 0xff, 0x66, 0x99, 0xff }, /* Pixel 20 */ { 0xff, 0x66, 0x66, 0xff }, /* Pixel 21 */ { 0xff, 0x66, 0x33, 0xff }, /* Pixel 22 */ { 0xff, 0x66, 0x00, 0xff }, /* Pixel 23 */ { 0xff, 0x33, 0xff, 0xff }, /* Pixel 24 */ { 0xff, 0x33, 0xcc, 0xff }, /* Pixel 25 */ { 0xff, 0x33, 0x99, 0xff }, /* Pixel 26 */ { 0xff, 0x33, 0x66, 0xff }, /* Pixel 27 */ { 0xff, 0x33, 0x33, 0xff }, /* Pixel 28 */ { 0xff, 0x33, 0x00, 0xff }, /* Pixel 29 */ { 0xff, 0x00, 0xff, 0xff }, /* Pixel 30 */ { 0xff, 0x00, 0xcc, 0xff }, /* Pixel 31 */ { 0xff, 0x00, 0x99, 0xff }, /* Pixel 32 */ { 0xff, 0x00, 0x66, 0xff }, /* Pixel 33 */ { 0xff, 0x00, 0x33, 0xff }, /* Pixel 34 */ { 0xff, 0x00, 0x00, 0xff }, /* Pixel 35 */ { 0xcc, 0xff, 0xff, 0xff }, /* Pixel 36 */ { 0xcc, 0xff, 0xcc, 0xff }, /* Pixel 37 */ { 0xcc, 0xff, 0x99, 0xff }, /* Pixel 38 */ { 0xcc, 0xff, 0x66, 0xff }, /* Pixel 39 */ { 0xcc, 0xff, 0x33, 0xff }, /* Pixel 40 */ { 0xcc, 0xff, 0x00, 0xff }, /* Pixel 41 */ { 0xcc, 0xcc, 0xff, 0xff }, /* Pixel 42 */ { 0xcc, 0xcc, 0xcc, 0xff }, /* Pixel 43 */ { 0xcc, 0xcc, 0x99, 0xff }, /* Pixel 44 */ { 0xcc, 0xcc, 0x66, 0xff }, /* Pixel 45 */ { 0xcc, 0xcc, 0x33, 0xff }, /* Pixel 46 */ { 0xcc, 0xcc, 0x00, 0xff }, /* Pixel 47 */ { 0xcc, 0x99, 0xff, 0xff }, /* Pixel 48 */ { 0xcc, 0x99, 0xcc, 0xff }, /* Pixel 49 */ { 0xcc, 0x99, 0x99, 0xff }, /* Pixel 50 */ { 0xcc, 0x99, 0x66, 0xff }, /* Pixel 51 */ { 0xcc, 0x99, 0x33, 0xff }, /* Pixel 52 */ { 0xcc, 0x99, 0x00, 0xff }, /* Pixel 53 */ { 0xcc, 0x66, 0xff, 0xff }, /* Pixel 54 */ { 0xcc, 0x66, 0xcc, 0xff }, /* Pixel 55 */ { 0xcc, 0x66, 0x99, 0xff }, /* Pixel 56 */ { 0xcc, 0x66, 0x66, 0xff }, /* Pixel 57 */ { 0xcc, 0x66, 0x33, 0xff }, /* Pixel 58 */ { 0xcc, 0x66, 0x00, 0xff }, /* Pixel 59 */ { 0xcc, 0x33, 0xff, 0xff }, /* Pixel 60 */ { 0xcc, 0x33, 0xcc, 0xff }, /* Pixel 61 */ { 0xcc, 0x33, 0x99, 0xff }, /* Pixel 62 */ { 0xcc, 0x33, 0x66, 0xff }, /* Pixel 63 */ { 0xcc, 0x33, 0x33, 0xff }, /* Pixel 64 */ { 0xcc, 0x33, 0x00, 0xff }, /* Pixel 65 */ { 0xcc, 0x00, 0xff, 0xff }, /* Pixel 66 */ { 0xcc, 0x00, 0xcc, 0xff }, /* Pixel 67 */ { 0xcc, 0x00, 0x99, 0xff }, /* Pixel 68 */ { 0xcc, 0x00, 0x66, 0xff }, /* Pixel 69 */ { 0xcc, 0x00, 0x33, 0xff }, /* Pixel 70 */ { 0xcc, 0x00, 0x00, 0xff }, /* Pixel 71 */ { 0x99, 0xff, 0xff, 0xff }, /* Pixel 72 */ { 0x99, 0xff, 0xcc, 0xff }, /* Pixel 73 */ { 0x99, 0xff, 0x99, 0xff }, /* Pixel 74 */ { 0x99, 0xff, 0x66, 0xff }, /* Pixel 75 */ { 0x99, 0xff, 0x33, 0xff }, /* Pixel 76 */ { 0x99, 0xff, 0x00, 0xff }, /* Pixel 77 */ { 0x99, 0xcc, 0xff, 0xff }, /* Pixel 78 */ { 0x99, 0xcc, 0xcc, 0xff }, /* Pixel 79 */ { 0x99, 0xcc, 0x99, 0xff }, /* Pixel 80 */ { 0x99, 0xcc, 0x66, 0xff }, /* Pixel 81 */ { 0x99, 0xcc, 0x33, 0xff }, /* Pixel 82 */ { 0x99, 0xcc, 0x00, 0xff }, /* Pixel 83 */ { 0x99, 0x99, 0xff, 0xff }, /* Pixel 84 */ { 0x99, 0x99, 0xcc, 0xff }, /* Pixel 85 */ { 0x99, 0x99, 0x99, 0xff }, /* Pixel 86 */ { 0x99, 0x99, 0x66, 0xff }, /* Pixel 87 */ { 0x99, 0x99, 0x33, 0xff }, /* Pixel 88 */ { 0x99, 0x99, 0x00, 0xff }, /* Pixel 89 */ { 0x99, 0x66, 0xff, 0xff }, /* Pixel 90 */ { 0x99, 0x66, 0xcc, 0xff }, /* Pixel 91 */ { 0x99, 0x66, 0x99, 0xff }, /* Pixel 92 */ { 0x99, 0x66, 0x66, 0xff }, /* Pixel 93 */ { 0x99, 0x66, 0x33, 0xff }, /* Pixel 94 */ { 0x99, 0x66, 0x00, 0xff }, /* Pixel 95 */ { 0x99, 0x33, 0xff, 0xff }, /* Pixel 96 */ { 0x99, 0x33, 0xcc, 0xff }, /* Pixel 97 */ { 0x99, 0x33, 0x99, 0xff }, /* Pixel 98 */ { 0x99, 0x33, 0x66, 0xff }, /* Pixel 99 */ { 0x99, 0x33, 0x33, 0xff }, /* Pixel 100 */ { 0x99, 0x33, 0x00, 0xff }, /* Pixel 101 */ { 0x99, 0x00, 0xff, 0xff }, /* Pixel 102 */ { 0x99, 0x00, 0xcc, 0xff }, /* Pixel 103 */ { 0x99, 0x00, 0x99, 0xff }, /* Pixel 104 */ { 0x99, 0x00, 0x66, 0xff }, /* Pixel 105 */ { 0x99, 0x00, 0x33, 0xff }, /* Pixel 106 */ { 0x99, 0x00, 0x00, 0xff }, /* Pixel 107 */ { 0x66, 0xff, 0xff, 0xff }, /* Pixel 108 */ { 0x66, 0xff, 0xcc, 0xff }, /* Pixel 109 */ { 0x66, 0xff, 0x99, 0xff }, /* Pixel 110 */ { 0x66, 0xff, 0x66, 0xff }, /* Pixel 111 */ { 0x66, 0xff, 0x33, 0xff }, /* Pixel 112 */ { 0x66, 0xff, 0x00, 0xff }, /* Pixel 113 */ { 0x66, 0xcc, 0xff, 0xff }, /* Pixel 114 */ { 0x66, 0xcc, 0xcc, 0xff }, /* Pixel 115 */ { 0x66, 0xcc, 0x99, 0xff }, /* Pixel 116 */ { 0x66, 0xcc, 0x66, 0xff }, /* Pixel 117 */ { 0x66, 0xcc, 0x33, 0xff }, /* Pixel 118 */ { 0x66, 0xcc, 0x00, 0xff }, /* Pixel 119 */ { 0x66, 0x99, 0xff, 0xff }, /* Pixel 120 */ { 0x66, 0x99, 0xcc, 0xff }, /* Pixel 121 */ { 0x66, 0x99, 0x99, 0xff }, /* Pixel 122 */ { 0x66, 0x99, 0x66, 0xff }, /* Pixel 123 */ { 0x66, 0x99, 0x33, 0xff }, /* Pixel 124 */ { 0x66, 0x99, 0x00, 0xff }, /* Pixel 125 */ { 0x66, 0x66, 0xff, 0xff }, /* Pixel 126 */ { 0x66, 0x66, 0xcc, 0xff }, /* Pixel 127 */ { 0x66, 0x66, 0x99, 0xff }, /* Pixel 128 */ { 0x66, 0x66, 0x66, 0xff }, /* Pixel 129 */ { 0x66, 0x66, 0x33, 0xff }, /* Pixel 130 */ { 0x66, 0x66, 0x00, 0xff }, /* Pixel 131 */ { 0x66, 0x33, 0xff, 0xff }, /* Pixel 132 */ { 0x66, 0x33, 0xcc, 0xff }, /* Pixel 133 */ { 0x66, 0x33, 0x99, 0xff }, /* Pixel 134 */ { 0x66, 0x33, 0x66, 0xff }, /* Pixel 135 */ { 0x66, 0x33, 0x33, 0xff }, /* Pixel 136 */ { 0x66, 0x33, 0x00, 0xff }, /* Pixel 137 */ { 0x66, 0x00, 0xff, 0xff }, /* Pixel 138 */ { 0x66, 0x00, 0xcc, 0xff }, /* Pixel 139 */ { 0x66, 0x00, 0x99, 0xff }, /* Pixel 140 */ { 0x66, 0x00, 0x66, 0xff }, /* Pixel 141 */ { 0x66, 0x00, 0x33, 0xff }, /* Pixel 142 */ { 0x66, 0x00, 0x00, 0xff }, /* Pixel 143 */ { 0x33, 0xff, 0xff, 0xff }, /* Pixel 144 */ { 0x33, 0xff, 0xcc, 0xff }, /* Pixel 145 */ { 0x33, 0xff, 0x99, 0xff }, /* Pixel 146 */ { 0x33, 0xff, 0x66, 0xff }, /* Pixel 147 */ { 0x33, 0xff, 0x33, 0xff }, /* Pixel 148 */ { 0x33, 0xff, 0x00, 0xff }, /* Pixel 149 */ { 0x33, 0xcc, 0xff, 0xff }, /* Pixel 150 */ { 0x33, 0xcc, 0xcc, 0xff }, /* Pixel 151 */ { 0x33, 0xcc, 0x99, 0xff }, /* Pixel 152 */ { 0x33, 0xcc, 0x66, 0xff }, /* Pixel 153 */ { 0x33, 0xcc, 0x33, 0xff }, /* Pixel 154 */ { 0x33, 0xcc, 0x00, 0xff }, /* Pixel 155 */ { 0x33, 0x99, 0xff, 0xff }, /* Pixel 156 */ { 0x33, 0x99, 0xcc, 0xff }, /* Pixel 157 */ { 0x33, 0x99, 0x99, 0xff }, /* Pixel 158 */ { 0x33, 0x99, 0x66, 0xff }, /* Pixel 159 */ { 0x33, 0x99, 0x33, 0xff }, /* Pixel 160 */ { 0x33, 0x99, 0x00, 0xff }, /* Pixel 161 */ { 0x33, 0x66, 0xff, 0xff }, /* Pixel 162 */ { 0x33, 0x66, 0xcc, 0xff }, /* Pixel 163 */ { 0x33, 0x66, 0x99, 0xff }, /* Pixel 164 */ { 0x33, 0x66, 0x66, 0xff }, /* Pixel 165 */ { 0x33, 0x66, 0x33, 0xff }, /* Pixel 166 */ { 0x33, 0x66, 0x00, 0xff }, /* Pixel 167 */ { 0x33, 0x33, 0xff, 0xff }, /* Pixel 168 */ { 0x33, 0x33, 0xcc, 0xff }, /* Pixel 169 */ { 0x33, 0x33, 0x99, 0xff }, /* Pixel 170 */ { 0x33, 0x33, 0x66, 0xff }, /* Pixel 171 */ { 0x33, 0x33, 0x33, 0xff }, /* Pixel 172 */ { 0x33, 0x33, 0x00, 0xff }, /* Pixel 173 */ { 0x33, 0x00, 0xff, 0xff }, /* Pixel 174 */ { 0x33, 0x00, 0xcc, 0xff }, /* Pixel 175 */ { 0x33, 0x00, 0x99, 0xff }, /* Pixel 176 */ { 0x33, 0x00, 0x66, 0xff }, /* Pixel 177 */ { 0x33, 0x00, 0x33, 0xff }, /* Pixel 178 */ { 0x33, 0x00, 0x00, 0xff }, /* Pixel 179 */ { 0x00, 0xff, 0xff, 0xff }, /* Pixel 180 */ { 0x00, 0xff, 0xcc, 0xff }, /* Pixel 181 */ { 0x00, 0xff, 0x99, 0xff }, /* Pixel 182 */ { 0x00, 0xff, 0x66, 0xff }, /* Pixel 183 */ { 0x00, 0xff, 0x33, 0xff }, /* Pixel 184 */ { 0x00, 0xff, 0x00, 0xff }, /* Pixel 185 */ { 0x00, 0xcc, 0xff, 0xff }, /* Pixel 186 */ { 0x00, 0xcc, 0xcc, 0xff }, /* Pixel 187 */ { 0x00, 0xcc, 0x99, 0xff }, /* Pixel 188 */ { 0x00, 0xcc, 0x66, 0xff }, /* Pixel 189 */ { 0x00, 0xcc, 0x33, 0xff }, /* Pixel 190 */ { 0x00, 0xcc, 0x00, 0xff }, /* Pixel 191 */ { 0x00, 0x99, 0xff, 0xff }, /* Pixel 192 */ { 0x00, 0x99, 0xcc, 0xff }, /* Pixel 193 */ { 0x00, 0x99, 0x99, 0xff }, /* Pixel 194 */ { 0x00, 0x99, 0x66, 0xff }, /* Pixel 195 */ { 0x00, 0x99, 0x33, 0xff }, /* Pixel 196 */ { 0x00, 0x99, 0x00, 0xff }, /* Pixel 197 */ { 0x00, 0x66, 0xff, 0xff }, /* Pixel 198 */ { 0x00, 0x66, 0xcc, 0xff }, /* Pixel 199 */ { 0x00, 0x66, 0x99, 0xff }, /* Pixel 200 */ { 0x00, 0x66, 0x66, 0xff }, /* Pixel 201 */ { 0x00, 0x66, 0x33, 0xff }, /* Pixel 202 */ { 0x00, 0x66, 0x00, 0xff }, /* Pixel 203 */ { 0x00, 0x33, 0xff, 0xff }, /* Pixel 204 */ { 0x00, 0x33, 0xcc, 0xff }, /* Pixel 205 */ { 0x00, 0x33, 0x99, 0xff }, /* Pixel 206 */ { 0x00, 0x33, 0x66, 0xff }, /* Pixel 207 */ { 0x00, 0x33, 0x33, 0xff }, /* Pixel 208 */ { 0x00, 0x33, 0x00, 0xff }, /* Pixel 209 */ { 0x00, 0x00, 0xff, 0xff }, /* Pixel 210 */ { 0x00, 0x00, 0xcc, 0xff }, /* Pixel 211 */ { 0x00, 0x00, 0x99, 0xff }, /* Pixel 212 */ { 0x00, 0x00, 0x66, 0xff }, /* Pixel 213 */ { 0x00, 0x00, 0x33, 0xff }, /* Pixel 214 */ { 0xee, 0x00, 0x00, 0xff }, /* Pixel 215 */ { 0xdd, 0x00, 0x00, 0xff }, /* Pixel 216 */ { 0xbb, 0x00, 0x00, 0xff }, /* Pixel 217 */ { 0xaa, 0x00, 0x00, 0xff }, /* Pixel 218 */ { 0x88, 0x00, 0x00, 0xff }, /* Pixel 219 */ { 0x77, 0x00, 0x00, 0xff }, /* Pixel 220 */ { 0x55, 0x00, 0x00, 0xff }, /* Pixel 221 */ { 0x44, 0x00, 0x00, 0xff }, /* Pixel 222 */ { 0x22, 0x00, 0x00, 0xff }, /* Pixel 223 */ { 0x11, 0x00, 0x00, 0xff }, /* Pixel 224 */ { 0x00, 0xee, 0x00, 0xff }, /* Pixel 225 */ { 0x00, 0xdd, 0x00, 0xff }, /* Pixel 226 */ { 0x00, 0xbb, 0x00, 0xff }, /* Pixel 227 */ { 0x00, 0xaa, 0x00, 0xff }, /* Pixel 228 */ { 0x00, 0x88, 0x00, 0xff }, /* Pixel 229 */ { 0x00, 0x77, 0x00, 0xff }, /* Pixel 230 */ { 0x00, 0x55, 0x00, 0xff }, /* Pixel 231 */ { 0x00, 0x44, 0x00, 0xff }, /* Pixel 232 */ { 0x00, 0x22, 0x00, 0xff }, /* Pixel 233 */ { 0x00, 0x11, 0x00, 0xff }, /* Pixel 234 */ { 0x00, 0x00, 0xee, 0xff }, /* Pixel 235 */ { 0x00, 0x00, 0xdd, 0xff }, /* Pixel 236 */ { 0x00, 0x00, 0xbb, 0xff }, /* Pixel 237 */ { 0x00, 0x00, 0xaa, 0xff }, /* Pixel 238 */ { 0x00, 0x00, 0x88, 0xff }, /* Pixel 239 */ { 0x00, 0x00, 0x77, 0xff }, /* Pixel 240 */ { 0x00, 0x00, 0x55, 0xff }, /* Pixel 241 */ { 0x00, 0x00, 0x44, 0xff }, /* Pixel 242 */ { 0x00, 0x00, 0x22, 0xff }, /* Pixel 243 */ { 0x00, 0x00, 0x11, 0xff }, /* Pixel 244 */ { 0xee, 0xee, 0xee, 0xff }, /* Pixel 245 */ { 0xdd, 0xdd, 0xdd, 0xff }, /* Pixel 246 */ { 0xbb, 0xbb, 0xbb, 0xff }, /* Pixel 247 */ { 0xaa, 0xaa, 0xaa, 0xff }, /* Pixel 248 */ { 0x88, 0x88, 0x88, 0xff }, /* Pixel 249 */ { 0x77, 0x77, 0x77, 0xff }, /* Pixel 250 */ { 0x55, 0x55, 0x55, 0xff }, /* Pixel 251 */ { 0x44, 0x44, 0x44, 0xff }, /* Pixel 252 */ { 0x22, 0x22, 0x22, 0xff }, /* Pixel 253 */ { 0x11, 0x11, 0x11, 0xff }, /* Pixel 254 */ { 0x00, 0x00, 0x00, 0xff }, /* Pixel 255 */ }, /* Gamma level 1 */ { { 0xff, 0xff, 0xff, 0xff }, /* Pixel 0 */ { 0xff, 0xff, 0xcc, 0xff }, /* Pixel 1 */ { 0xff, 0xff, 0x99, 0xff }, /* Pixel 2 */ { 0xff, 0xff, 0x66, 0xff }, /* Pixel 3 */ { 0xff, 0xff, 0x33, 0xff }, /* Pixel 4 */ { 0xff, 0xff, 0x00, 0xff }, /* Pixel 5 */ { 0xff, 0xcc, 0xff, 0xff }, /* Pixel 6 */ { 0xff, 0xcc, 0xcc, 0xff }, /* Pixel 7 */ { 0xff, 0xcc, 0x99, 0xff }, /* Pixel 8 */ { 0xff, 0xcc, 0x66, 0xff }, /* Pixel 9 */ { 0xff, 0xcc, 0x33, 0xff }, /* Pixel 10 */ { 0xff, 0xcc, 0x00, 0xff }, /* Pixel 11 */ { 0xff, 0x99, 0xff, 0xff }, /* Pixel 12 */ { 0xff, 0x99, 0xcc, 0xff }, /* Pixel 13 */ { 0xff, 0x99, 0x99, 0xff }, /* Pixel 14 */ { 0xff, 0x99, 0x66, 0xff }, /* Pixel 15 */ { 0xff, 0x99, 0x33, 0xff }, /* Pixel 16 */ { 0xff, 0x99, 0x00, 0xff }, /* Pixel 17 */ { 0xff, 0x66, 0xff, 0xff }, /* Pixel 18 */ { 0xff, 0x66, 0xcc, 0xff }, /* Pixel 19 */ { 0xff, 0x66, 0x99, 0xff }, /* Pixel 20 */ { 0xff, 0x66, 0x66, 0xff }, /* Pixel 21 */ { 0xff, 0x66, 0x33, 0xff }, /* Pixel 22 */ { 0xff, 0x66, 0x00, 0xff }, /* Pixel 23 */ { 0xff, 0x33, 0xff, 0xff }, /* Pixel 24 */ { 0xff, 0x33, 0xcc, 0xff }, /* Pixel 25 */ { 0xff, 0x33, 0x99, 0xff }, /* Pixel 26 */ { 0xff, 0x33, 0x66, 0xff }, /* Pixel 27 */ { 0xff, 0x33, 0x33, 0xff }, /* Pixel 28 */ { 0xff, 0x33, 0x00, 0xff }, /* Pixel 29 */ { 0xff, 0x00, 0xff, 0xff }, /* Pixel 30 */ { 0xff, 0x00, 0xcc, 0xff }, /* Pixel 31 */ { 0xff, 0x00, 0x99, 0xff }, /* Pixel 32 */ { 0xff, 0x00, 0x66, 0xff }, /* Pixel 33 */ { 0xff, 0x00, 0x33, 0xff }, /* Pixel 34 */ { 0xff, 0x00, 0x00, 0xff }, /* Pixel 35 */ { 0xcc, 0xff, 0xff, 0xff }, /* Pixel 36 */ { 0xcc, 0xff, 0xcc, 0xff }, /* Pixel 37 */ { 0xcc, 0xff, 0x99, 0xff }, /* Pixel 38 */ { 0xcc, 0xff, 0x66, 0xff }, /* Pixel 39 */ { 0xcc, 0xff, 0x33, 0xff }, /* Pixel 40 */ { 0xcc, 0xff, 0x00, 0xff }, /* Pixel 41 */ { 0xcc, 0xcc, 0xff, 0xff }, /* Pixel 42 */ { 0xd5, 0xd5, 0xd5, 0xff }, /* Pixel 43 */ { 0xd5, 0xd5, 0xa0, 0xff }, /* Pixel 44 */ { 0xd5, 0xd5, 0x6b, 0xff }, /* Pixel 45 */ { 0xd5, 0xd5, 0x35, 0xff }, /* Pixel 46 */ { 0xd5, 0xd5, 0x00, 0xff }, /* Pixel 47 */ { 0xcc, 0x99, 0xff, 0xff }, /* Pixel 48 */ { 0xd5, 0xa0, 0xd5, 0xff }, /* Pixel 49 */ { 0xd5, 0xa0, 0xa0, 0xff }, /* Pixel 50 */ { 0xd5, 0xa0, 0x6b, 0xff }, /* Pixel 51 */ { 0xd5, 0xa0, 0x35, 0xff }, /* Pixel 52 */ { 0xd5, 0xa0, 0x00, 0xff }, /* Pixel 53 */ { 0xcc, 0x66, 0xff, 0xff }, /* Pixel 54 */ { 0xd5, 0x6b, 0xd5, 0xff }, /* Pixel 55 */ { 0xd5, 0x6b, 0xa0, 0xff }, /* Pixel 56 */ { 0xd5, 0x6b, 0x6b, 0xff }, /* Pixel 57 */ { 0xd5, 0x6b, 0x35, 0xff }, /* Pixel 58 */ { 0xd5, 0x6b, 0x00, 0xff }, /* Pixel 59 */ { 0xcc, 0x33, 0xff, 0xff }, /* Pixel 60 */ { 0xd5, 0x35, 0xd5, 0xff }, /* Pixel 61 */ { 0xd5, 0x35, 0xa0, 0xff }, /* Pixel 62 */ { 0xd5, 0x35, 0x6a, 0xff }, /* Pixel 63 */ { 0xd5, 0x35, 0x35, 0xff }, /* Pixel 64 */ { 0xd5, 0x35, 0x00, 0xff }, /* Pixel 65 */ { 0xcc, 0x00, 0xff, 0xff }, /* Pixel 66 */ { 0xd5, 0x00, 0xd5, 0xff }, /* Pixel 67 */ { 0xd5, 0x00, 0xa0, 0xff }, /* Pixel 68 */ { 0xd5, 0x00, 0x6b, 0xff }, /* Pixel 69 */ { 0xd5, 0x00, 0x35, 0xff }, /* Pixel 70 */ { 0xd5, 0x00, 0x00, 0xff }, /* Pixel 71 */ { 0x99, 0xff, 0xff, 0xff }, /* Pixel 72 */ { 0x99, 0xff, 0xcc, 0xff }, /* Pixel 73 */ { 0x99, 0xff, 0x99, 0xff }, /* Pixel 74 */ { 0x99, 0xff, 0x66, 0xff }, /* Pixel 75 */ { 0x99, 0xff, 0x33, 0xff }, /* Pixel 76 */ { 0x99, 0xff, 0x00, 0xff }, /* Pixel 77 */ { 0x99, 0xcc, 0xff, 0xff }, /* Pixel 78 */ { 0xa0, 0xd5, 0xd5, 0xff }, /* Pixel 79 */ { 0xa0, 0xd5, 0xa0, 0xff }, /* Pixel 80 */ { 0xa0, 0xd5, 0x6b, 0xff }, /* Pixel 81 */ { 0xa0, 0xd5, 0x35, 0xff }, /* Pixel 82 */ { 0xa0, 0xd5, 0x00, 0xff }, /* Pixel 83 */ { 0x99, 0x99, 0xff, 0xff }, /* Pixel 84 */ { 0xa0, 0xa0, 0xd5, 0xff }, /* Pixel 85 */ { 0xa9, 0xa9, 0xa9, 0xff }, /* Pixel 86 */ { 0xa9, 0xa9, 0x71, 0xff }, /* Pixel 87 */ { 0xa9, 0xa9, 0x38, 0xff }, /* Pixel 88 */ { 0xa9, 0xa9, 0x00, 0xff }, /* Pixel 89 */ { 0x99, 0x66, 0xff, 0xff }, /* Pixel 90 */ { 0xa0, 0x6b, 0xd5, 0xff }, /* Pixel 91 */ { 0xa9, 0x71, 0xa9, 0xff }, /* Pixel 92 */ { 0xa9, 0x71, 0x71, 0xff }, /* Pixel 93 */ { 0xa9, 0x71, 0x38, 0xff }, /* Pixel 94 */ { 0xa9, 0x71, 0x00, 0xff }, /* Pixel 95 */ { 0x99, 0x33, 0xff, 0xff }, /* Pixel 96 */ { 0xa0, 0x35, 0xd5, 0xff }, /* Pixel 97 */ { 0xa9, 0x38, 0xa9, 0xff }, /* Pixel 98 */ { 0xa9, 0x38, 0x71, 0xff }, /* Pixel 99 */ { 0xa9, 0x38, 0x38, 0xff }, /* Pixel 100 */ { 0xa9, 0x38, 0x00, 0xff }, /* Pixel 101 */ { 0x99, 0x00, 0xff, 0xff }, /* Pixel 102 */ { 0xa0, 0x00, 0xd5, 0xff }, /* Pixel 103 */ { 0xa9, 0x00, 0xa9, 0xff }, /* Pixel 104 */ { 0xa9, 0x00, 0x71, 0xff }, /* Pixel 105 */ { 0xa9, 0x00, 0x38, 0xff }, /* Pixel 106 */ { 0xa9, 0x00, 0x00, 0xff }, /* Pixel 107 */ { 0x66, 0xff, 0xff, 0xff }, /* Pixel 108 */ { 0x66, 0xff, 0xcc, 0xff }, /* Pixel 109 */ { 0x66, 0xff, 0x99, 0xff }, /* Pixel 110 */ { 0x66, 0xff, 0x66, 0xff }, /* Pixel 111 */ { 0x66, 0xff, 0x33, 0xff }, /* Pixel 112 */ { 0x66, 0xff, 0x00, 0xff }, /* Pixel 113 */ { 0x66, 0xcc, 0xff, 0xff }, /* Pixel 114 */ { 0x6b, 0xd5, 0xd5, 0xff }, /* Pixel 115 */ { 0x6b, 0xd5, 0xa0, 0xff }, /* Pixel 116 */ { 0x6b, 0xd5, 0x6b, 0xff }, /* Pixel 117 */ { 0x6a, 0xd5, 0x35, 0xff }, /* Pixel 118 */ { 0x6b, 0xd5, 0x00, 0xff }, /* Pixel 119 */ { 0x66, 0x99, 0xff, 0xff }, /* Pixel 120 */ { 0x6b, 0xa0, 0xd5, 0xff }, /* Pixel 121 */ { 0x71, 0xa9, 0xa9, 0xff }, /* Pixel 122 */ { 0x71, 0xa9, 0x71, 0xff }, /* Pixel 123 */ { 0x71, 0xa9, 0x38, 0xff }, /* Pixel 124 */ { 0x71, 0xa9, 0x00, 0xff }, /* Pixel 125 */ { 0x66, 0x66, 0xff, 0xff }, /* Pixel 126 */ { 0x6b, 0x6b, 0xd5, 0xff }, /* Pixel 127 */ { 0x71, 0x71, 0xa9, 0xff }, /* Pixel 128 */ { 0x7b, 0x7b, 0x7b, 0xff }, /* Pixel 129 */ { 0x7b, 0x7b, 0x3e, 0xff }, /* Pixel 130 */ { 0x7b, 0x7b, 0x00, 0xff }, /* Pixel 131 */ { 0x66, 0x33, 0xff, 0xff }, /* Pixel 132 */ { 0x6a, 0x35, 0xd5, 0xff }, /* Pixel 133 */ { 0x71, 0x38, 0xa9, 0xff }, /* Pixel 134 */ { 0x7b, 0x3e, 0x7b, 0xff }, /* Pixel 135 */ { 0x7b, 0x3e, 0x3e, 0xff }, /* Pixel 136 */ { 0x7b, 0x3e, 0x00, 0xff }, /* Pixel 137 */ { 0x66, 0x00, 0xff, 0xff }, /* Pixel 138 */ { 0x6b, 0x00, 0xd5, 0xff }, /* Pixel 139 */ { 0x71, 0x00, 0xa9, 0xff }, /* Pixel 140 */ { 0x7b, 0x00, 0x7b, 0xff }, /* Pixel 141 */ { 0x7b, 0x00, 0x3e, 0xff }, /* Pixel 142 */ { 0x7b, 0x00, 0x00, 0xff }, /* Pixel 143 */ { 0x33, 0xff, 0xff, 0xff }, /* Pixel 144 */ { 0x33, 0xff, 0xcc, 0xff }, /* Pixel 145 */ { 0x33, 0xff, 0x99, 0xff }, /* Pixel 146 */ { 0x33, 0xff, 0x66, 0xff }, /* Pixel 147 */ { 0x33, 0xff, 0x33, 0xff }, /* Pixel 148 */ { 0x33, 0xff, 0x00, 0xff }, /* Pixel 149 */ { 0x33, 0xcc, 0xff, 0xff }, /* Pixel 150 */ { 0x35, 0xd5, 0xd5, 0xff }, /* Pixel 151 */ { 0x35, 0xd5, 0xa0, 0xff }, /* Pixel 152 */ { 0x35, 0xd5, 0x6b, 0xff }, /* Pixel 153 */ { 0x35, 0xd5, 0x35, 0xff }, /* Pixel 154 */ { 0x35, 0xd5, 0x00, 0xff }, /* Pixel 155 */ { 0x33, 0x99, 0xff, 0xff }, /* Pixel 156 */ { 0x35, 0xa0, 0xd5, 0xff }, /* Pixel 157 */ { 0x38, 0xa9, 0xa9, 0xff }, /* Pixel 158 */ { 0x38, 0xa9, 0x71, 0xff }, /* Pixel 159 */ { 0x38, 0xa9, 0x38, 0xff }, /* Pixel 160 */ { 0x38, 0xa9, 0x00, 0xff }, /* Pixel 161 */ { 0x33, 0x66, 0xff, 0xff }, /* Pixel 162 */ { 0x35, 0x6b, 0xd5, 0xff }, /* Pixel 163 */ { 0x38, 0x71, 0xa9, 0xff }, /* Pixel 164 */ { 0x3e, 0x7b, 0x7b, 0xff }, /* Pixel 165 */ { 0x3e, 0x7b, 0x3e, 0xff }, /* Pixel 166 */ { 0x3e, 0x7b, 0x00, 0xff }, /* Pixel 167 */ { 0x33, 0x33, 0xff, 0xff }, /* Pixel 168 */ { 0x35, 0x35, 0xd5, 0xff }, /* Pixel 169 */ { 0x38, 0x38, 0xa9, 0xff }, /* Pixel 170 */ { 0x3e, 0x3e, 0x7b, 0xff }, /* Pixel 171 */ { 0x46, 0x46, 0x46, 0xff }, /* Pixel 172 */ { 0x46, 0x46, 0x00, 0xff }, /* Pixel 173 */ { 0x33, 0x00, 0xff, 0xff }, /* Pixel 174 */ { 0x35, 0x00, 0xd5, 0xff }, /* Pixel 175 */ { 0x38, 0x00, 0xa9, 0xff }, /* Pixel 176 */ { 0x3e, 0x00, 0x7b, 0xff }, /* Pixel 177 */ { 0x46, 0x00, 0x46, 0xff }, /* Pixel 178 */ { 0x46, 0x00, 0x00, 0xff }, /* Pixel 179 */ { 0x00, 0xff, 0xff, 0xff }, /* Pixel 180 */ { 0x00, 0xff, 0xcc, 0xff }, /* Pixel 181 */ { 0x00, 0xff, 0x99, 0xff }, /* Pixel 182 */ { 0x00, 0xff, 0x66, 0xff }, /* Pixel 183 */ { 0x00, 0xff, 0x33, 0xff }, /* Pixel 184 */ { 0x00, 0xff, 0x00, 0xff }, /* Pixel 185 */ { 0x00, 0xcc, 0xff, 0xff }, /* Pixel 186 */ { 0x00, 0xd5, 0xd5, 0xff }, /* Pixel 187 */ { 0x00, 0xd5, 0xa0, 0xff }, /* Pixel 188 */ { 0x00, 0xd5, 0x6b, 0xff }, /* Pixel 189 */ { 0x00, 0xd5, 0x35, 0xff }, /* Pixel 190 */ { 0x00, 0xd5, 0x00, 0xff }, /* Pixel 191 */ { 0x00, 0x99, 0xff, 0xff }, /* Pixel 192 */ { 0x00, 0xa0, 0xd5, 0xff }, /* Pixel 193 */ { 0x00, 0xa9, 0xa9, 0xff }, /* Pixel 194 */ { 0x00, 0xa9, 0x71, 0xff }, /* Pixel 195 */ { 0x00, 0xa9, 0x38, 0xff }, /* Pixel 196 */ { 0x00, 0xa9, 0x00, 0xff }, /* Pixel 197 */ { 0x00, 0x66, 0xff, 0xff }, /* Pixel 198 */ { 0x00, 0x6b, 0xd5, 0xff }, /* Pixel 199 */ { 0x00, 0x71, 0xa9, 0xff }, /* Pixel 200 */ { 0x00, 0x7b, 0x7b, 0xff }, /* Pixel 201 */ { 0x00, 0x7b, 0x3e, 0xff }, /* Pixel 202 */ { 0x00, 0x7b, 0x00, 0xff }, /* Pixel 203 */ { 0x00, 0x33, 0xff, 0xff }, /* Pixel 204 */ { 0x00, 0x35, 0xd5, 0xff }, /* Pixel 205 */ { 0x00, 0x38, 0xa9, 0xff }, /* Pixel 206 */ { 0x00, 0x3e, 0x7b, 0xff }, /* Pixel 207 */ { 0x00, 0x46, 0x46, 0xff }, /* Pixel 208 */ { 0x00, 0x46, 0x00, 0xff }, /* Pixel 209 */ { 0x00, 0x00, 0xff, 0xff }, /* Pixel 210 */ { 0x00, 0x00, 0xd5, 0xff }, /* Pixel 211 */ { 0x00, 0x00, 0xa9, 0xff }, /* Pixel 212 */ { 0x00, 0x00, 0x7b, 0xff }, /* Pixel 213 */ { 0x00, 0x00, 0x46, 0xff }, /* Pixel 214 */ { 0xf1, 0x00, 0x00, 0xff }, /* Pixel 215 */ { 0xe3, 0x00, 0x00, 0xff }, /* Pixel 216 */ { 0xc7, 0x00, 0x00, 0xff }, /* Pixel 217 */ { 0xb8, 0x00, 0x00, 0xff }, /* Pixel 218 */ { 0x9a, 0x00, 0x00, 0xff }, /* Pixel 219 */ { 0x8b, 0x00, 0x00, 0xff }, /* Pixel 220 */ { 0x6a, 0x00, 0x00, 0xff }, /* Pixel 221 */ { 0x59, 0x00, 0x00, 0xff }, /* Pixel 222 */ { 0x33, 0x00, 0x00, 0xff }, /* Pixel 223 */ { 0x1d, 0x00, 0x00, 0xff }, /* Pixel 224 */ { 0x00, 0xf1, 0x00, 0xff }, /* Pixel 225 */ { 0x00, 0xe3, 0x00, 0xff }, /* Pixel 226 */ { 0x00, 0xc7, 0x00, 0xff }, /* Pixel 227 */ { 0x00, 0xb8, 0x00, 0xff }, /* Pixel 228 */ { 0x00, 0x9a, 0x00, 0xff }, /* Pixel 229 */ { 0x00, 0x8b, 0x00, 0xff }, /* Pixel 230 */ { 0x00, 0x6a, 0x00, 0xff }, /* Pixel 231 */ { 0x00, 0x59, 0x00, 0xff }, /* Pixel 232 */ { 0x00, 0x33, 0x00, 0xff }, /* Pixel 233 */ { 0x00, 0x1d, 0x00, 0xff }, /* Pixel 234 */ { 0x00, 0x00, 0xf1, 0xff }, /* Pixel 235 */ { 0x00, 0x00, 0xe3, 0xff }, /* Pixel 236 */ { 0x00, 0x00, 0xc7, 0xff }, /* Pixel 237 */ { 0x00, 0x00, 0xb8, 0xff }, /* Pixel 238 */ { 0x00, 0x00, 0x9a, 0xff }, /* Pixel 239 */ { 0x00, 0x00, 0x8b, 0xff }, /* Pixel 240 */ { 0x00, 0x00, 0x6a, 0xff }, /* Pixel 241 */ { 0x00, 0x00, 0x59, 0xff }, /* Pixel 242 */ { 0x00, 0x00, 0x33, 0xff }, /* Pixel 243 */ { 0x00, 0x00, 0x1d, 0xff }, /* Pixel 244 */ { 0xf1, 0xf1, 0xf1, 0xff }, /* Pixel 245 */ { 0xe3, 0xe3, 0xe3, 0xff }, /* Pixel 246 */ { 0xc7, 0xc7, 0xc7, 0xff }, /* Pixel 247 */ { 0xb8, 0xb8, 0xb8, 0xff }, /* Pixel 248 */ { 0x9a, 0x9a, 0x9a, 0xff }, /* Pixel 249 */ { 0x8b, 0x8b, 0x8b, 0xff }, /* Pixel 250 */ { 0x6a, 0x6a, 0x6a, 0xff }, /* Pixel 251 */ { 0x59, 0x59, 0x59, 0xff }, /* Pixel 252 */ { 0x33, 0x33, 0x33, 0xff }, /* Pixel 253 */ { 0x1d, 0x1d, 0x1d, 0xff }, /* Pixel 254 */ { 0x00, 0x00, 0x00, 0xff }, /* Pixel 255 */ }, /* Gamma level 2 */ { { 0xff, 0xff, 0xff, 0xff }, /* Pixel 0 */ { 0xff, 0xff, 0xcc, 0xff }, /* Pixel 1 */ { 0xff, 0xff, 0x99, 0xff }, /* Pixel 2 */ { 0xff, 0xff, 0x66, 0xff }, /* Pixel 3 */ { 0xff, 0xff, 0x33, 0xff }, /* Pixel 4 */ { 0xff, 0xff, 0x00, 0xff }, /* Pixel 5 */ { 0xff, 0xcc, 0xff, 0xff }, /* Pixel 6 */ { 0xff, 0xcc, 0xcc, 0xff }, /* Pixel 7 */ { 0xff, 0xcc, 0x99, 0xff }, /* Pixel 8 */ { 0xff, 0xcc, 0x66, 0xff }, /* Pixel 9 */ { 0xff, 0xcc, 0x33, 0xff }, /* Pixel 10 */ { 0xff, 0xcc, 0x00, 0xff }, /* Pixel 11 */ { 0xff, 0x99, 0xff, 0xff }, /* Pixel 12 */ { 0xff, 0x99, 0xcc, 0xff }, /* Pixel 13 */ { 0xff, 0x99, 0x99, 0xff }, /* Pixel 14 */ { 0xff, 0x99, 0x66, 0xff }, /* Pixel 15 */ { 0xff, 0x99, 0x33, 0xff }, /* Pixel 16 */ { 0xff, 0x99, 0x00, 0xff }, /* Pixel 17 */ { 0xff, 0x66, 0xff, 0xff }, /* Pixel 18 */ { 0xff, 0x66, 0xcc, 0xff }, /* Pixel 19 */ { 0xff, 0x66, 0x99, 0xff }, /* Pixel 20 */ { 0xff, 0x66, 0x66, 0xff }, /* Pixel 21 */ { 0xff, 0x66, 0x33, 0xff }, /* Pixel 22 */ { 0xff, 0x66, 0x00, 0xff }, /* Pixel 23 */ { 0xff, 0x33, 0xff, 0xff }, /* Pixel 24 */ { 0xff, 0x33, 0xcc, 0xff }, /* Pixel 25 */ { 0xff, 0x33, 0x99, 0xff }, /* Pixel 26 */ { 0xff, 0x33, 0x66, 0xff }, /* Pixel 27 */ { 0xff, 0x33, 0x33, 0xff }, /* Pixel 28 */ { 0xff, 0x33, 0x00, 0xff }, /* Pixel 29 */ { 0xff, 0x00, 0xff, 0xff }, /* Pixel 30 */ { 0xff, 0x00, 0xcc, 0xff }, /* Pixel 31 */ { 0xff, 0x00, 0x99, 0xff }, /* Pixel 32 */ { 0xff, 0x00, 0x66, 0xff }, /* Pixel 33 */ { 0xff, 0x00, 0x33, 0xff }, /* Pixel 34 */ { 0xff, 0x00, 0x00, 0xff }, /* Pixel 35 */ { 0xcc, 0xff, 0xff, 0xff }, /* Pixel 36 */ { 0xcc, 0xff, 0xcc, 0xff }, /* Pixel 37 */ { 0xcc, 0xff, 0x99, 0xff }, /* Pixel 38 */ { 0xcc, 0xff, 0x66, 0xff }, /* Pixel 39 */ { 0xcc, 0xff, 0x33, 0xff }, /* Pixel 40 */ { 0xcc, 0xff, 0x00, 0xff }, /* Pixel 41 */ { 0xcc, 0xcc, 0xff, 0xff }, /* Pixel 42 */ { 0xdc, 0xdc, 0xdc, 0xff }, /* Pixel 43 */ { 0xdc, 0xdc, 0xa5, 0xff }, /* Pixel 44 */ { 0xdc, 0xdc, 0x6e, 0xff }, /* Pixel 45 */ { 0xdc, 0xdc, 0x37, 0xff }, /* Pixel 46 */ { 0xdc, 0xdc, 0x00, 0xff }, /* Pixel 47 */ { 0xcc, 0x99, 0xff, 0xff }, /* Pixel 48 */ { 0xdc, 0xa5, 0xdc, 0xff }, /* Pixel 49 */ { 0xdc, 0xa5, 0xa5, 0xff }, /* Pixel 50 */ { 0xdc, 0xa5, 0x6e, 0xff }, /* Pixel 51 */ { 0xdc, 0xa5, 0x37, 0xff }, /* Pixel 52 */ { 0xdc, 0xa5, 0x00, 0xff }, /* Pixel 53 */ { 0xcc, 0x66, 0xff, 0xff }, /* Pixel 54 */ { 0xdc, 0x6e, 0xdc, 0xff }, /* Pixel 55 */ { 0xdc, 0x6e, 0xa5, 0xff }, /* Pixel 56 */ { 0xdc, 0x6e, 0x6e, 0xff }, /* Pixel 57 */ { 0xdc, 0x6e, 0x37, 0xff }, /* Pixel 58 */ { 0xdc, 0x6e, 0x00, 0xff }, /* Pixel 59 */ { 0xcc, 0x33, 0xff, 0xff }, /* Pixel 60 */ { 0xdc, 0x37, 0xdc, 0xff }, /* Pixel 61 */ { 0xdc, 0x37, 0xa5, 0xff }, /* Pixel 62 */ { 0xdc, 0x37, 0x6e, 0xff }, /* Pixel 63 */ { 0xdc, 0x37, 0x37, 0xff }, /* Pixel 64 */ { 0xdc, 0x37, 0x00, 0xff }, /* Pixel 65 */ { 0xcc, 0x00, 0xff, 0xff }, /* Pixel 66 */ { 0xdc, 0x00, 0xdc, 0xff }, /* Pixel 67 */ { 0xdc, 0x00, 0xa5, 0xff }, /* Pixel 68 */ { 0xdc, 0x00, 0x6e, 0xff }, /* Pixel 69 */ { 0xdc, 0x00, 0x37, 0xff }, /* Pixel 70 */ { 0xdc, 0x00, 0x00, 0xff }, /* Pixel 71 */ { 0x99, 0xff, 0xff, 0xff }, /* Pixel 72 */ { 0x99, 0xff, 0xcc, 0xff }, /* Pixel 73 */ { 0x99, 0xff, 0x99, 0xff }, /* Pixel 74 */ { 0x99, 0xff, 0x66, 0xff }, /* Pixel 75 */ { 0x99, 0xff, 0x33, 0xff }, /* Pixel 76 */ { 0x99, 0xff, 0x00, 0xff }, /* Pixel 77 */ { 0x99, 0xcc, 0xff, 0xff }, /* Pixel 78 */ { 0xa5, 0xdc, 0xdc, 0xff }, /* Pixel 79 */ { 0xa5, 0xdc, 0xa5, 0xff }, /* Pixel 80 */ { 0xa5, 0xdc, 0x6e, 0xff }, /* Pixel 81 */ { 0xa5, 0xdc, 0x37, 0xff }, /* Pixel 82 */ { 0xa5, 0xdc, 0x00, 0xff }, /* Pixel 83 */ { 0x99, 0x99, 0xff, 0xff }, /* Pixel 84 */ { 0xa5, 0xa5, 0xdc, 0xff }, /* Pixel 85 */ { 0xb5, 0xb5, 0xb5, 0xff }, /* Pixel 86 */ { 0xb5, 0xb5, 0x79, 0xff }, /* Pixel 87 */ { 0xb5, 0xb5, 0x3c, 0xff }, /* Pixel 88 */ { 0xb5, 0xb5, 0x00, 0xff }, /* Pixel 89 */ { 0x99, 0x66, 0xff, 0xff }, /* Pixel 90 */ { 0xa5, 0x6e, 0xdc, 0xff }, /* Pixel 91 */ { 0xb5, 0x79, 0xb5, 0xff }, /* Pixel 92 */ { 0xb5, 0x79, 0x79, 0xff }, /* Pixel 93 */ { 0xb5, 0x79, 0x3c, 0xff }, /* Pixel 94 */ { 0xb5, 0x79, 0x00, 0xff }, /* Pixel 95 */ { 0x99, 0x33, 0xff, 0xff }, /* Pixel 96 */ { 0xa5, 0x37, 0xdc, 0xff }, /* Pixel 97 */ { 0xb5, 0x3c, 0xb5, 0xff }, /* Pixel 98 */ { 0xb5, 0x3c, 0x79, 0xff }, /* Pixel 99 */ { 0xb5, 0x3c, 0x3c, 0xff }, /* Pixel 100 */ { 0xb5, 0x3c, 0x00, 0xff }, /* Pixel 101 */ { 0x99, 0x00, 0xff, 0xff }, /* Pixel 102 */ { 0xa5, 0x00, 0xdc, 0xff }, /* Pixel 103 */ { 0xb5, 0x00, 0xb5, 0xff }, /* Pixel 104 */ { 0xb5, 0x00, 0x79, 0xff }, /* Pixel 105 */ { 0xb5, 0x00, 0x3c, 0xff }, /* Pixel 106 */ { 0xb5, 0x00, 0x00, 0xff }, /* Pixel 107 */ { 0x66, 0xff, 0xff, 0xff }, /* Pixel 108 */ { 0x66, 0xff, 0xcc, 0xff }, /* Pixel 109 */ { 0x66, 0xff, 0x99, 0xff }, /* Pixel 110 */ { 0x66, 0xff, 0x66, 0xff }, /* Pixel 111 */ { 0x66, 0xff, 0x33, 0xff }, /* Pixel 112 */ { 0x66, 0xff, 0x00, 0xff }, /* Pixel 113 */ { 0x66, 0xcc, 0xff, 0xff }, /* Pixel 114 */ { 0x6e, 0xdc, 0xdc, 0xff }, /* Pixel 115 */ { 0x6e, 0xdc, 0xa5, 0xff }, /* Pixel 116 */ { 0x6e, 0xdc, 0x6e, 0xff }, /* Pixel 117 */ { 0x6e, 0xdc, 0x37, 0xff }, /* Pixel 118 */ { 0x6e, 0xdc, 0x00, 0xff }, /* Pixel 119 */ { 0x66, 0x99, 0xff, 0xff }, /* Pixel 120 */ { 0x6e, 0xa5, 0xdc, 0xff }, /* Pixel 121 */ { 0x79, 0xb5, 0xb5, 0xff }, /* Pixel 122 */ { 0x79, 0xb5, 0x79, 0xff }, /* Pixel 123 */ { 0x79, 0xb5, 0x3c, 0xff }, /* Pixel 124 */ { 0x79, 0xb5, 0x00, 0xff }, /* Pixel 125 */ { 0x66, 0x66, 0xff, 0xff }, /* Pixel 126 */ { 0x6e, 0x6e, 0xdc, 0xff }, /* Pixel 127 */ { 0x79, 0x79, 0xb5, 0xff }, /* Pixel 128 */ { 0x8a, 0x8a, 0x8a, 0xff }, /* Pixel 129 */ { 0x8a, 0x8a, 0x45, 0xff }, /* Pixel 130 */ { 0x8a, 0x8a, 0x00, 0xff }, /* Pixel 131 */ { 0x66, 0x33, 0xff, 0xff }, /* Pixel 132 */ { 0x6e, 0x37, 0xdc, 0xff }, /* Pixel 133 */ { 0x79, 0x3c, 0xb5, 0xff }, /* Pixel 134 */ { 0x8a, 0x45, 0x8a, 0xff }, /* Pixel 135 */ { 0x8a, 0x45, 0x45, 0xff }, /* Pixel 136 */ { 0x8a, 0x45, 0x00, 0xff }, /* Pixel 137 */ { 0x66, 0x00, 0xff, 0xff }, /* Pixel 138 */ { 0x6e, 0x00, 0xdc, 0xff }, /* Pixel 139 */ { 0x79, 0x00, 0xb5, 0xff }, /* Pixel 140 */ { 0x8a, 0x00, 0x8a, 0xff }, /* Pixel 141 */ { 0x8a, 0x00, 0x45, 0xff }, /* Pixel 142 */ { 0x8a, 0x00, 0x00, 0xff }, /* Pixel 143 */ { 0x33, 0xff, 0xff, 0xff }, /* Pixel 144 */ { 0x33, 0xff, 0xcc, 0xff }, /* Pixel 145 */ { 0x33, 0xff, 0x99, 0xff }, /* Pixel 146 */ { 0x33, 0xff, 0x66, 0xff }, /* Pixel 147 */ { 0x33, 0xff, 0x33, 0xff }, /* Pixel 148 */ { 0x33, 0xff, 0x00, 0xff }, /* Pixel 149 */ { 0x33, 0xcc, 0xff, 0xff }, /* Pixel 150 */ { 0x37, 0xdc, 0xdc, 0xff }, /* Pixel 151 */ { 0x37, 0xdc, 0xa5, 0xff }, /* Pixel 152 */ { 0x37, 0xdc, 0x6e, 0xff }, /* Pixel 153 */ { 0x37, 0xdc, 0x37, 0xff }, /* Pixel 154 */ { 0x37, 0xdc, 0x00, 0xff }, /* Pixel 155 */ { 0x33, 0x99, 0xff, 0xff }, /* Pixel 156 */ { 0x37, 0xa5, 0xdc, 0xff }, /* Pixel 157 */ { 0x3c, 0xb5, 0xb5, 0xff }, /* Pixel 158 */ { 0x3c, 0xb5, 0x79, 0xff }, /* Pixel 159 */ { 0x3c, 0xb5, 0x3c, 0xff }, /* Pixel 160 */ { 0x3c, 0xb5, 0x00, 0xff }, /* Pixel 161 */ { 0x33, 0x66, 0xff, 0xff }, /* Pixel 162 */ { 0x37, 0x6e, 0xdc, 0xff }, /* Pixel 163 */ { 0x3c, 0x79, 0xb5, 0xff }, /* Pixel 164 */ { 0x45, 0x8a, 0x8a, 0xff }, /* Pixel 165 */ { 0x45, 0x8a, 0x45, 0xff }, /* Pixel 166 */ { 0x45, 0x8a, 0x00, 0xff }, /* Pixel 167 */ { 0x33, 0x33, 0xff, 0xff }, /* Pixel 168 */ { 0x37, 0x37, 0xdc, 0xff }, /* Pixel 169 */ { 0x3c, 0x3c, 0xb5, 0xff }, /* Pixel 170 */ { 0x45, 0x45, 0x8a, 0xff }, /* Pixel 171 */ { 0x57, 0x57, 0x57, 0xff }, /* Pixel 172 */ { 0x57, 0x57, 0x00, 0xff }, /* Pixel 173 */ { 0x33, 0x00, 0xff, 0xff }, /* Pixel 174 */ { 0x37, 0x00, 0xdc, 0xff }, /* Pixel 175 */ { 0x3c, 0x00, 0xb5, 0xff }, /* Pixel 176 */ { 0x45, 0x00, 0x8a, 0xff }, /* Pixel 177 */ { 0x57, 0x00, 0x57, 0xff }, /* Pixel 178 */ { 0x57, 0x00, 0x00, 0xff }, /* Pixel 179 */ { 0x00, 0xff, 0xff, 0xff }, /* Pixel 180 */ { 0x00, 0xff, 0xcc, 0xff }, /* Pixel 181 */ { 0x00, 0xff, 0x99, 0xff }, /* Pixel 182 */ { 0x00, 0xff, 0x66, 0xff }, /* Pixel 183 */ { 0x00, 0xff, 0x33, 0xff }, /* Pixel 184 */ { 0x00, 0xff, 0x00, 0xff }, /* Pixel 185 */ { 0x00, 0xcc, 0xff, 0xff }, /* Pixel 186 */ { 0x00, 0xdc, 0xdc, 0xff }, /* Pixel 187 */ { 0x00, 0xdc, 0xa5, 0xff }, /* Pixel 188 */ { 0x00, 0xdc, 0x6e, 0xff }, /* Pixel 189 */ { 0x00, 0xdc, 0x37, 0xff }, /* Pixel 190 */ { 0x00, 0xdc, 0x00, 0xff }, /* Pixel 191 */ { 0x00, 0x99, 0xff, 0xff }, /* Pixel 192 */ { 0x00, 0xa5, 0xdc, 0xff }, /* Pixel 193 */ { 0x00, 0xb5, 0xb5, 0xff }, /* Pixel 194 */ { 0x00, 0xb5, 0x79, 0xff }, /* Pixel 195 */ { 0x00, 0xb5, 0x3c, 0xff }, /* Pixel 196 */ { 0x00, 0xb5, 0x00, 0xff }, /* Pixel 197 */ { 0x00, 0x66, 0xff, 0xff }, /* Pixel 198 */ { 0x00, 0x6e, 0xdc, 0xff }, /* Pixel 199 */ { 0x00, 0x79, 0xb5, 0xff }, /* Pixel 200 */ { 0x00, 0x8a, 0x8a, 0xff }, /* Pixel 201 */ { 0x00, 0x8a, 0x45, 0xff }, /* Pixel 202 */ { 0x00, 0x8a, 0x00, 0xff }, /* Pixel 203 */ { 0x00, 0x33, 0xff, 0xff }, /* Pixel 204 */ { 0x00, 0x37, 0xdc, 0xff }, /* Pixel 205 */ { 0x00, 0x3c, 0xb5, 0xff }, /* Pixel 206 */ { 0x00, 0x45, 0x8a, 0xff }, /* Pixel 207 */ { 0x00, 0x57, 0x57, 0xff }, /* Pixel 208 */ { 0x00, 0x57, 0x00, 0xff }, /* Pixel 209 */ { 0x00, 0x00, 0xff, 0xff }, /* Pixel 210 */ { 0x00, 0x00, 0xdc, 0xff }, /* Pixel 211 */ { 0x00, 0x00, 0xb5, 0xff }, /* Pixel 212 */ { 0x00, 0x00, 0x8a, 0xff }, /* Pixel 213 */ { 0x00, 0x00, 0x57, 0xff }, /* Pixel 214 */ { 0xf4, 0x00, 0x00, 0xff }, /* Pixel 215 */ { 0xe8, 0x00, 0x00, 0xff }, /* Pixel 216 */ { 0xcf, 0x00, 0x00, 0xff }, /* Pixel 217 */ { 0xc3, 0x00, 0x00, 0xff }, /* Pixel 218 */ { 0xa8, 0x00, 0x00, 0xff }, /* Pixel 219 */ { 0x99, 0x00, 0x00, 0xff }, /* Pixel 220 */ { 0x7b, 0x00, 0x00, 0xff }, /* Pixel 221 */ { 0x6a, 0x00, 0x00, 0xff }, /* Pixel 222 */ { 0x43, 0x00, 0x00, 0xff }, /* Pixel 223 */ { 0x2a, 0x00, 0x00, 0xff }, /* Pixel 224 */ { 0x00, 0xf4, 0x00, 0xff }, /* Pixel 225 */ { 0x00, 0xe8, 0x00, 0xff }, /* Pixel 226 */ { 0x00, 0xcf, 0x00, 0xff }, /* Pixel 227 */ { 0x00, 0xc3, 0x00, 0xff }, /* Pixel 228 */ { 0x00, 0xa8, 0x00, 0xff }, /* Pixel 229 */ { 0x00, 0x99, 0x00, 0xff }, /* Pixel 230 */ { 0x00, 0x7b, 0x00, 0xff }, /* Pixel 231 */ { 0x00, 0x6a, 0x00, 0xff }, /* Pixel 232 */ { 0x00, 0x43, 0x00, 0xff }, /* Pixel 233 */ { 0x00, 0x2a, 0x00, 0xff }, /* Pixel 234 */ { 0x00, 0x00, 0xf4, 0xff }, /* Pixel 235 */ { 0x00, 0x00, 0xe8, 0xff }, /* Pixel 236 */ { 0x00, 0x00, 0xcf, 0xff }, /* Pixel 237 */ { 0x00, 0x00, 0xc3, 0xff }, /* Pixel 238 */ { 0x00, 0x00, 0xa8, 0xff }, /* Pixel 239 */ { 0x00, 0x00, 0x99, 0xff }, /* Pixel 240 */ { 0x00, 0x00, 0x7b, 0xff }, /* Pixel 241 */ { 0x00, 0x00, 0x6a, 0xff }, /* Pixel 242 */ { 0x00, 0x00, 0x43, 0xff }, /* Pixel 243 */ { 0x00, 0x00, 0x2a, 0xff }, /* Pixel 244 */ { 0xf4, 0xf4, 0xf4, 0xff }, /* Pixel 245 */ { 0xe8, 0xe8, 0xe8, 0xff }, /* Pixel 246 */ { 0xcf, 0xcf, 0xcf, 0xff }, /* Pixel 247 */ { 0xc3, 0xc3, 0xc3, 0xff }, /* Pixel 248 */ { 0xa8, 0xa8, 0xa8, 0xff }, /* Pixel 249 */ { 0x99, 0x99, 0x99, 0xff }, /* Pixel 250 */ { 0x7b, 0x7b, 0x7b, 0xff }, /* Pixel 251 */ { 0x6a, 0x6a, 0x6a, 0xff }, /* Pixel 252 */ { 0x43, 0x43, 0x43, 0xff }, /* Pixel 253 */ { 0x2a, 0x2a, 0x2a, 0xff }, /* Pixel 254 */ { 0x00, 0x00, 0x00, 0xff }, /* Pixel 255 */ }, /* Gamma level 3 */ { { 0xff, 0xff, 0xff, 0xff }, /* Pixel 0 */ { 0xff, 0xff, 0xcc, 0xff }, /* Pixel 1 */ { 0xff, 0xff, 0x99, 0xff }, /* Pixel 2 */ { 0xff, 0xff, 0x66, 0xff }, /* Pixel 3 */ { 0xff, 0xff, 0x33, 0xff }, /* Pixel 4 */ { 0xff, 0xff, 0x00, 0xff }, /* Pixel 5 */ { 0xff, 0xcc, 0xff, 0xff }, /* Pixel 6 */ { 0xff, 0xcc, 0xcc, 0xff }, /* Pixel 7 */ { 0xff, 0xcc, 0x99, 0xff }, /* Pixel 8 */ { 0xff, 0xcc, 0x66, 0xff }, /* Pixel 9 */ { 0xff, 0xcc, 0x33, 0xff }, /* Pixel 10 */ { 0xff, 0xcc, 0x00, 0xff }, /* Pixel 11 */ { 0xff, 0x99, 0xff, 0xff }, /* Pixel 12 */ { 0xff, 0x99, 0xcc, 0xff }, /* Pixel 13 */ { 0xff, 0x99, 0x99, 0xff }, /* Pixel 14 */ { 0xff, 0x99, 0x66, 0xff }, /* Pixel 15 */ { 0xff, 0x99, 0x33, 0xff }, /* Pixel 16 */ { 0xff, 0x99, 0x00, 0xff }, /* Pixel 17 */ { 0xff, 0x66, 0xff, 0xff }, /* Pixel 18 */ { 0xff, 0x66, 0xcc, 0xff }, /* Pixel 19 */ { 0xff, 0x66, 0x99, 0xff }, /* Pixel 20 */ { 0xff, 0x66, 0x66, 0xff }, /* Pixel 21 */ { 0xff, 0x66, 0x33, 0xff }, /* Pixel 22 */ { 0xff, 0x66, 0x00, 0xff }, /* Pixel 23 */ { 0xff, 0x33, 0xff, 0xff }, /* Pixel 24 */ { 0xff, 0x33, 0xcc, 0xff }, /* Pixel 25 */ { 0xff, 0x33, 0x99, 0xff }, /* Pixel 26 */ { 0xff, 0x33, 0x66, 0xff }, /* Pixel 27 */ { 0xff, 0x33, 0x33, 0xff }, /* Pixel 28 */ { 0xff, 0x33, 0x00, 0xff }, /* Pixel 29 */ { 0xff, 0x00, 0xff, 0xff }, /* Pixel 30 */ { 0xff, 0x00, 0xcc, 0xff }, /* Pixel 31 */ { 0xff, 0x00, 0x99, 0xff }, /* Pixel 32 */ { 0xff, 0x00, 0x66, 0xff }, /* Pixel 33 */ { 0xff, 0x00, 0x33, 0xff }, /* Pixel 34 */ { 0xff, 0x00, 0x00, 0xff }, /* Pixel 35 */ { 0xcc, 0xff, 0xff, 0xff }, /* Pixel 36 */ { 0xcc, 0xff, 0xcc, 0xff }, /* Pixel 37 */ { 0xcc, 0xff, 0x99, 0xff }, /* Pixel 38 */ { 0xcc, 0xff, 0x66, 0xff }, /* Pixel 39 */ { 0xcc, 0xff, 0x33, 0xff }, /* Pixel 40 */ { 0xcc, 0xff, 0x00, 0xff }, /* Pixel 41 */ { 0xcc, 0xcc, 0xff, 0xff }, /* Pixel 42 */ { 0xe0, 0xe0, 0xe0, 0xff }, /* Pixel 43 */ { 0xe0, 0xe0, 0xa8, 0xff }, /* Pixel 44 */ { 0xe0, 0xe0, 0x70, 0xff }, /* Pixel 45 */ { 0xe0, 0xe0, 0x38, 0xff }, /* Pixel 46 */ { 0xe0, 0xe0, 0x00, 0xff }, /* Pixel 47 */ { 0xcc, 0x99, 0xff, 0xff }, /* Pixel 48 */ { 0xe0, 0xa8, 0xe0, 0xff }, /* Pixel 49 */ { 0xe0, 0xa8, 0xa8, 0xff }, /* Pixel 50 */ { 0xe0, 0xa8, 0x70, 0xff }, /* Pixel 51 */ { 0xe0, 0xa8, 0x38, 0xff }, /* Pixel 52 */ { 0xe0, 0xa8, 0x00, 0xff }, /* Pixel 53 */ { 0xcc, 0x66, 0xff, 0xff }, /* Pixel 54 */ { 0xe0, 0x70, 0xe0, 0xff }, /* Pixel 55 */ { 0xe0, 0x70, 0xa8, 0xff }, /* Pixel 56 */ { 0xe0, 0x70, 0x70, 0xff }, /* Pixel 57 */ { 0xe0, 0x70, 0x38, 0xff }, /* Pixel 58 */ { 0xe0, 0x70, 0x00, 0xff }, /* Pixel 59 */ { 0xcc, 0x33, 0xff, 0xff }, /* Pixel 60 */ { 0xe0, 0x38, 0xe0, 0xff }, /* Pixel 61 */ { 0xe0, 0x38, 0xa8, 0xff }, /* Pixel 62 */ { 0xe0, 0x38, 0x70, 0xff }, /* Pixel 63 */ { 0xe0, 0x38, 0x38, 0xff }, /* Pixel 64 */ { 0xe0, 0x38, 0x00, 0xff }, /* Pixel 65 */ { 0xcc, 0x00, 0xff, 0xff }, /* Pixel 66 */ { 0xe0, 0x00, 0xe0, 0xff }, /* Pixel 67 */ { 0xe0, 0x00, 0xa8, 0xff }, /* Pixel 68 */ { 0xe0, 0x00, 0x70, 0xff }, /* Pixel 69 */ { 0xe0, 0x00, 0x38, 0xff }, /* Pixel 70 */ { 0xe0, 0x00, 0x00, 0xff }, /* Pixel 71 */ { 0x99, 0xff, 0xff, 0xff }, /* Pixel 72 */ { 0x99, 0xff, 0xcc, 0xff }, /* Pixel 73 */ { 0x99, 0xff, 0x99, 0xff }, /* Pixel 74 */ { 0x99, 0xff, 0x66, 0xff }, /* Pixel 75 */ { 0x99, 0xff, 0x33, 0xff }, /* Pixel 76 */ { 0x99, 0xff, 0x00, 0xff }, /* Pixel 77 */ { 0x99, 0xcc, 0xff, 0xff }, /* Pixel 78 */ { 0xa8, 0xe0, 0xe0, 0xff }, /* Pixel 79 */ { 0xa8, 0xe0, 0xa8, 0xff }, /* Pixel 80 */ { 0xa8, 0xe0, 0x70, 0xff }, /* Pixel 81 */ { 0xa8, 0xe0, 0x38, 0xff }, /* Pixel 82 */ { 0xa8, 0xe0, 0x00, 0xff }, /* Pixel 83 */ { 0x99, 0x99, 0xff, 0xff }, /* Pixel 84 */ { 0xa8, 0xa8, 0xe0, 0xff }, /* Pixel 85 */ { 0xbe, 0xbe, 0xbe, 0xff }, /* Pixel 86 */ { 0xbe, 0xbe, 0x7f, 0xff }, /* Pixel 87 */ { 0xbe, 0xbe, 0x3f, 0xff }, /* Pixel 88 */ { 0xbe, 0xbe, 0x00, 0xff }, /* Pixel 89 */ { 0x99, 0x66, 0xff, 0xff }, /* Pixel 90 */ { 0xa8, 0x70, 0xe0, 0xff }, /* Pixel 91 */ { 0xbe, 0x7f, 0xbe, 0xff }, /* Pixel 92 */ { 0xbe, 0x7f, 0x7f, 0xff }, /* Pixel 93 */ { 0xbe, 0x7f, 0x3f, 0xff }, /* Pixel 94 */ { 0xbe, 0x7f, 0x00, 0xff }, /* Pixel 95 */ { 0x99, 0x33, 0xff, 0xff }, /* Pixel 96 */ { 0xa8, 0x38, 0xe0, 0xff }, /* Pixel 97 */ { 0xbe, 0x3f, 0xbe, 0xff }, /* Pixel 98 */ { 0xbe, 0x3f, 0x7f, 0xff }, /* Pixel 99 */ { 0xbe, 0x3f, 0x3f, 0xff }, /* Pixel 100 */ { 0xbe, 0x3f, 0x00, 0xff }, /* Pixel 101 */ { 0x99, 0x00, 0xff, 0xff }, /* Pixel 102 */ { 0xa8, 0x00, 0xe0, 0xff }, /* Pixel 103 */ { 0xbe, 0x00, 0xbe, 0xff }, /* Pixel 104 */ { 0xbe, 0x00, 0x7f, 0xff }, /* Pixel 105 */ { 0xbe, 0x00, 0x3f, 0xff }, /* Pixel 106 */ { 0xbe, 0x00, 0x00, 0xff }, /* Pixel 107 */ { 0x66, 0xff, 0xff, 0xff }, /* Pixel 108 */ { 0x66, 0xff, 0xcc, 0xff }, /* Pixel 109 */ { 0x66, 0xff, 0x99, 0xff }, /* Pixel 110 */ { 0x66, 0xff, 0x66, 0xff }, /* Pixel 111 */ { 0x66, 0xff, 0x33, 0xff }, /* Pixel 112 */ { 0x66, 0xff, 0x00, 0xff }, /* Pixel 113 */ { 0x66, 0xcc, 0xff, 0xff }, /* Pixel 114 */ { 0x70, 0xe0, 0xe0, 0xff }, /* Pixel 115 */ { 0x70, 0xe0, 0xa8, 0xff }, /* Pixel 116 */ { 0x70, 0xe0, 0x70, 0xff }, /* Pixel 117 */ { 0x70, 0xe0, 0x38, 0xff }, /* Pixel 118 */ { 0x70, 0xe0, 0x00, 0xff }, /* Pixel 119 */ { 0x66, 0x99, 0xff, 0xff }, /* Pixel 120 */ { 0x70, 0xa8, 0xe0, 0xff }, /* Pixel 121 */ { 0x7f, 0xbe, 0xbe, 0xff }, /* Pixel 122 */ { 0x7f, 0xbe, 0x7f, 0xff }, /* Pixel 123 */ { 0x7f, 0xbe, 0x3f, 0xff }, /* Pixel 124 */ { 0x7f, 0xbe, 0x00, 0xff }, /* Pixel 125 */ { 0x66, 0x66, 0xff, 0xff }, /* Pixel 126 */ { 0x70, 0x70, 0xe0, 0xff }, /* Pixel 127 */ { 0x7f, 0x7f, 0xbe, 0xff }, /* Pixel 128 */ { 0x97, 0x97, 0x97, 0xff }, /* Pixel 129 */ { 0x97, 0x97, 0x4c, 0xff }, /* Pixel 130 */ { 0x97, 0x97, 0x00, 0xff }, /* Pixel 131 */ { 0x66, 0x33, 0xff, 0xff }, /* Pixel 132 */ { 0x70, 0x38, 0xe0, 0xff }, /* Pixel 133 */ { 0x7f, 0x3f, 0xbe, 0xff }, /* Pixel 134 */ { 0x97, 0x4c, 0x97, 0xff }, /* Pixel 135 */ { 0x97, 0x4c, 0x4c, 0xff }, /* Pixel 136 */ { 0x97, 0x4c, 0x00, 0xff }, /* Pixel 137 */ { 0x66, 0x00, 0xff, 0xff }, /* Pixel 138 */ { 0x70, 0x00, 0xe0, 0xff }, /* Pixel 139 */ { 0x7f, 0x00, 0xbe, 0xff }, /* Pixel 140 */ { 0x97, 0x00, 0x97, 0xff }, /* Pixel 141 */ { 0x97, 0x00, 0x4c, 0xff }, /* Pixel 142 */ { 0x97, 0x00, 0x00, 0xff }, /* Pixel 143 */ { 0x33, 0xff, 0xff, 0xff }, /* Pixel 144 */ { 0x33, 0xff, 0xcc, 0xff }, /* Pixel 145 */ { 0x33, 0xff, 0x99, 0xff }, /* Pixel 146 */ { 0x33, 0xff, 0x66, 0xff }, /* Pixel 147 */ { 0x33, 0xff, 0x33, 0xff }, /* Pixel 148 */ { 0x33, 0xff, 0x00, 0xff }, /* Pixel 149 */ { 0x33, 0xcc, 0xff, 0xff }, /* Pixel 150 */ { 0x38, 0xe0, 0xe0, 0xff }, /* Pixel 151 */ { 0x38, 0xe0, 0xa8, 0xff }, /* Pixel 152 */ { 0x38, 0xe0, 0x70, 0xff }, /* Pixel 153 */ { 0x38, 0xe0, 0x38, 0xff }, /* Pixel 154 */ { 0x38, 0xe0, 0x00, 0xff }, /* Pixel 155 */ { 0x33, 0x99, 0xff, 0xff }, /* Pixel 156 */ { 0x38, 0xa8, 0xe0, 0xff }, /* Pixel 157 */ { 0x3f, 0xbe, 0xbe, 0xff }, /* Pixel 158 */ { 0x3f, 0xbe, 0x7f, 0xff }, /* Pixel 159 */ { 0x3f, 0xbe, 0x3f, 0xff }, /* Pixel 160 */ { 0x3f, 0xbe, 0x00, 0xff }, /* Pixel 161 */ { 0x33, 0x66, 0xff, 0xff }, /* Pixel 162 */ { 0x38, 0x70, 0xe0, 0xff }, /* Pixel 163 */ { 0x3f, 0x7f, 0xbe, 0xff }, /* Pixel 164 */ { 0x4c, 0x97, 0x97, 0xff }, /* Pixel 165 */ { 0x4c, 0x97, 0x4c, 0xff }, /* Pixel 166 */ { 0x4c, 0x97, 0x00, 0xff }, /* Pixel 167 */ { 0x33, 0x33, 0xff, 0xff }, /* Pixel 168 */ { 0x38, 0x38, 0xe0, 0xff }, /* Pixel 169 */ { 0x3f, 0x3f, 0xbe, 0xff }, /* Pixel 170 */ { 0x4c, 0x4c, 0x97, 0xff }, /* Pixel 171 */ { 0x66, 0x66, 0x66, 0xff }, /* Pixel 172 */ { 0x66, 0x66, 0x00, 0xff }, /* Pixel 173 */ { 0x33, 0x00, 0xff, 0xff }, /* Pixel 174 */ { 0x38, 0x00, 0xe0, 0xff }, /* Pixel 175 */ { 0x3f, 0x00, 0xbe, 0xff }, /* Pixel 176 */ { 0x4c, 0x00, 0x97, 0xff }, /* Pixel 177 */ { 0x66, 0x00, 0x66, 0xff }, /* Pixel 178 */ { 0x66, 0x00, 0x00, 0xff }, /* Pixel 179 */ { 0x00, 0xff, 0xff, 0xff }, /* Pixel 180 */ { 0x00, 0xff, 0xcc, 0xff }, /* Pixel 181 */ { 0x00, 0xff, 0x99, 0xff }, /* Pixel 182 */ { 0x00, 0xff, 0x66, 0xff }, /* Pixel 183 */ { 0x00, 0xff, 0x33, 0xff }, /* Pixel 184 */ { 0x00, 0xff, 0x00, 0xff }, /* Pixel 185 */ { 0x00, 0xcc, 0xff, 0xff }, /* Pixel 186 */ { 0x00, 0xe0, 0xe0, 0xff }, /* Pixel 187 */ { 0x00, 0xe0, 0xa8, 0xff }, /* Pixel 188 */ { 0x00, 0xe0, 0x70, 0xff }, /* Pixel 189 */ { 0x00, 0xe0, 0x38, 0xff }, /* Pixel 190 */ { 0x00, 0xe0, 0x00, 0xff }, /* Pixel 191 */ { 0x00, 0x99, 0xff, 0xff }, /* Pixel 192 */ { 0x00, 0xa8, 0xe0, 0xff }, /* Pixel 193 */ { 0x00, 0xbe, 0xbe, 0xff }, /* Pixel 194 */ { 0x00, 0xbe, 0x7f, 0xff }, /* Pixel 195 */ { 0x00, 0xbe, 0x3f, 0xff }, /* Pixel 196 */ { 0x00, 0xbe, 0x00, 0xff }, /* Pixel 197 */ { 0x00, 0x66, 0xff, 0xff }, /* Pixel 198 */ { 0x00, 0x70, 0xe0, 0xff }, /* Pixel 199 */ { 0x00, 0x7f, 0xbe, 0xff }, /* Pixel 200 */ { 0x00, 0x97, 0x97, 0xff }, /* Pixel 201 */ { 0x00, 0x97, 0x4c, 0xff }, /* Pixel 202 */ { 0x00, 0x97, 0x00, 0xff }, /* Pixel 203 */ { 0x00, 0x33, 0xff, 0xff }, /* Pixel 204 */ { 0x00, 0x38, 0xe0, 0xff }, /* Pixel 205 */ { 0x00, 0x3f, 0xbe, 0xff }, /* Pixel 206 */ { 0x00, 0x4c, 0x97, 0xff }, /* Pixel 207 */ { 0x00, 0x66, 0x66, 0xff }, /* Pixel 208 */ { 0x00, 0x66, 0x00, 0xff }, /* Pixel 209 */ { 0x00, 0x00, 0xff, 0xff }, /* Pixel 210 */ { 0x00, 0x00, 0xe0, 0xff }, /* Pixel 211 */ { 0x00, 0x00, 0xbe, 0xff }, /* Pixel 212 */ { 0x00, 0x00, 0x97, 0xff }, /* Pixel 213 */ { 0x00, 0x00, 0x66, 0xff }, /* Pixel 214 */ { 0xf5, 0x00, 0x00, 0xff }, /* Pixel 215 */ { 0xeb, 0x00, 0x00, 0xff }, /* Pixel 216 */ { 0xd6, 0x00, 0x00, 0xff }, /* Pixel 217 */ { 0xca, 0x00, 0x00, 0xff }, /* Pixel 218 */ { 0xb2, 0x00, 0x00, 0xff }, /* Pixel 219 */ { 0xa5, 0x00, 0x00, 0xff }, /* Pixel 220 */ { 0x88, 0x00, 0x00, 0xff }, /* Pixel 221 */ { 0x78, 0x00, 0x00, 0xff }, /* Pixel 222 */ { 0x51, 0x00, 0x00, 0xff }, /* Pixel 223 */ { 0x36, 0x00, 0x00, 0xff }, /* Pixel 224 */ { 0x00, 0xf5, 0x00, 0xff }, /* Pixel 225 */ { 0x00, 0xeb, 0x00, 0xff }, /* Pixel 226 */ { 0x00, 0xd6, 0x00, 0xff }, /* Pixel 227 */ { 0x00, 0xca, 0x00, 0xff }, /* Pixel 228 */ { 0x00, 0xb2, 0x00, 0xff }, /* Pixel 229 */ { 0x00, 0xa5, 0x00, 0xff }, /* Pixel 230 */ { 0x00, 0x88, 0x00, 0xff }, /* Pixel 231 */ { 0x00, 0x78, 0x00, 0xff }, /* Pixel 232 */ { 0x00, 0x51, 0x00, 0xff }, /* Pixel 233 */ { 0x00, 0x36, 0x00, 0xff }, /* Pixel 234 */ { 0x00, 0x00, 0xf5, 0xff }, /* Pixel 235 */ { 0x00, 0x00, 0xeb, 0xff }, /* Pixel 236 */ { 0x00, 0x00, 0xd6, 0xff }, /* Pixel 237 */ { 0x00, 0x00, 0xca, 0xff }, /* Pixel 238 */ { 0x00, 0x00, 0xb2, 0xff }, /* Pixel 239 */ { 0x00, 0x00, 0xa5, 0xff }, /* Pixel 240 */ { 0x00, 0x00, 0x88, 0xff }, /* Pixel 241 */ { 0x00, 0x00, 0x78, 0xff }, /* Pixel 242 */ { 0x00, 0x00, 0x51, 0xff }, /* Pixel 243 */ { 0x00, 0x00, 0x36, 0xff }, /* Pixel 244 */ { 0xf5, 0xf5, 0xf5, 0xff }, /* Pixel 245 */ { 0xeb, 0xeb, 0xeb, 0xff }, /* Pixel 246 */ { 0xd6, 0xd6, 0xd6, 0xff }, /* Pixel 247 */ { 0xca, 0xca, 0xca, 0xff }, /* Pixel 248 */ { 0xb2, 0xb2, 0xb2, 0xff }, /* Pixel 249 */ { 0xa5, 0xa5, 0xa5, 0xff }, /* Pixel 250 */ { 0x88, 0x88, 0x88, 0xff }, /* Pixel 251 */ { 0x78, 0x78, 0x78, 0xff }, /* Pixel 252 */ { 0x51, 0x51, 0x51, 0xff }, /* Pixel 253 */ { 0x36, 0x36, 0x36, 0xff }, /* Pixel 254 */ { 0x00, 0x00, 0x00, 0xff }, /* Pixel 255 */ }, /* Gamma level 4 */ { { 0xff, 0xff, 0xff, 0xff }, /* Pixel 0 */ { 0xff, 0xff, 0xcc, 0xff }, /* Pixel 1 */ { 0xff, 0xff, 0x99, 0xff }, /* Pixel 2 */ { 0xff, 0xff, 0x66, 0xff }, /* Pixel 3 */ { 0xff, 0xff, 0x33, 0xff }, /* Pixel 4 */ { 0xff, 0xff, 0x00, 0xff }, /* Pixel 5 */ { 0xff, 0xcc, 0xff, 0xff }, /* Pixel 6 */ { 0xff, 0xcc, 0xcc, 0xff }, /* Pixel 7 */ { 0xff, 0xcc, 0x99, 0xff }, /* Pixel 8 */ { 0xff, 0xcc, 0x66, 0xff }, /* Pixel 9 */ { 0xff, 0xcc, 0x33, 0xff }, /* Pixel 10 */ { 0xff, 0xcc, 0x00, 0xff }, /* Pixel 11 */ { 0xff, 0x99, 0xff, 0xff }, /* Pixel 12 */ { 0xff, 0x99, 0xcc, 0xff }, /* Pixel 13 */ { 0xff, 0x99, 0x99, 0xff }, /* Pixel 14 */ { 0xff, 0x99, 0x66, 0xff }, /* Pixel 15 */ { 0xff, 0x99, 0x33, 0xff }, /* Pixel 16 */ { 0xff, 0x99, 0x00, 0xff }, /* Pixel 17 */ { 0xff, 0x66, 0xff, 0xff }, /* Pixel 18 */ { 0xff, 0x66, 0xcc, 0xff }, /* Pixel 19 */ { 0xff, 0x66, 0x99, 0xff }, /* Pixel 20 */ { 0xff, 0x66, 0x66, 0xff }, /* Pixel 21 */ { 0xff, 0x66, 0x33, 0xff }, /* Pixel 22 */ { 0xff, 0x66, 0x00, 0xff }, /* Pixel 23 */ { 0xff, 0x33, 0xff, 0xff }, /* Pixel 24 */ { 0xff, 0x33, 0xcc, 0xff }, /* Pixel 25 */ { 0xff, 0x33, 0x99, 0xff }, /* Pixel 26 */ { 0xff, 0x33, 0x66, 0xff }, /* Pixel 27 */ { 0xff, 0x33, 0x33, 0xff }, /* Pixel 28 */ { 0xff, 0x33, 0x00, 0xff }, /* Pixel 29 */ { 0xff, 0x00, 0xff, 0xff }, /* Pixel 30 */ { 0xff, 0x00, 0xcc, 0xff }, /* Pixel 31 */ { 0xff, 0x00, 0x99, 0xff }, /* Pixel 32 */ { 0xff, 0x00, 0x66, 0xff }, /* Pixel 33 */ { 0xff, 0x00, 0x33, 0xff }, /* Pixel 34 */ { 0xff, 0x00, 0x00, 0xff }, /* Pixel 35 */ { 0xcc, 0xff, 0xff, 0xff }, /* Pixel 36 */ { 0xcc, 0xff, 0xcc, 0xff }, /* Pixel 37 */ { 0xcc, 0xff, 0x99, 0xff }, /* Pixel 38 */ { 0xcc, 0xff, 0x66, 0xff }, /* Pixel 39 */ { 0xcc, 0xff, 0x33, 0xff }, /* Pixel 40 */ { 0xcc, 0xff, 0x00, 0xff }, /* Pixel 41 */ { 0xcc, 0xcc, 0xff, 0xff }, /* Pixel 42 */ { 0xe4, 0xe4, 0xe4, 0xff }, /* Pixel 43 */ { 0xe4, 0xe4, 0xab, 0xff }, /* Pixel 44 */ { 0xe4, 0xe4, 0x72, 0xff }, /* Pixel 45 */ { 0xe4, 0xe4, 0x39, 0xff }, /* Pixel 46 */ { 0xe4, 0xe4, 0x00, 0xff }, /* Pixel 47 */ { 0xcc, 0x99, 0xff, 0xff }, /* Pixel 48 */ { 0xe4, 0xab, 0xe4, 0xff }, /* Pixel 49 */ { 0xe4, 0xab, 0xab, 0xff }, /* Pixel 50 */ { 0xe4, 0xab, 0x72, 0xff }, /* Pixel 51 */ { 0xe4, 0xab, 0x39, 0xff }, /* Pixel 52 */ { 0xe4, 0xab, 0x00, 0xff }, /* Pixel 53 */ { 0xcc, 0x66, 0xff, 0xff }, /* Pixel 54 */ { 0xe4, 0x72, 0xe4, 0xff }, /* Pixel 55 */ { 0xe4, 0x72, 0xab, 0xff }, /* Pixel 56 */ { 0xe4, 0x72, 0x72, 0xff }, /* Pixel 57 */ { 0xe4, 0x72, 0x39, 0xff }, /* Pixel 58 */ { 0xe4, 0x72, 0x00, 0xff }, /* Pixel 59 */ { 0xcc, 0x33, 0xff, 0xff }, /* Pixel 60 */ { 0xe4, 0x39, 0xe4, 0xff }, /* Pixel 61 */ { 0xe4, 0x39, 0xab, 0xff }, /* Pixel 62 */ { 0xe4, 0x39, 0x72, 0xff }, /* Pixel 63 */ { 0xe4, 0x39, 0x39, 0xff }, /* Pixel 64 */ { 0xe4, 0x39, 0x00, 0xff }, /* Pixel 65 */ { 0xcc, 0x00, 0xff, 0xff }, /* Pixel 66 */ { 0xe4, 0x00, 0xe4, 0xff }, /* Pixel 67 */ { 0xe4, 0x00, 0xab, 0xff }, /* Pixel 68 */ { 0xe4, 0x00, 0x72, 0xff }, /* Pixel 69 */ { 0xe4, 0x00, 0x39, 0xff }, /* Pixel 70 */ { 0xe4, 0x00, 0x00, 0xff }, /* Pixel 71 */ { 0x99, 0xff, 0xff, 0xff }, /* Pixel 72 */ { 0x99, 0xff, 0xcc, 0xff }, /* Pixel 73 */ { 0x99, 0xff, 0x99, 0xff }, /* Pixel 74 */ { 0x99, 0xff, 0x66, 0xff }, /* Pixel 75 */ { 0x99, 0xff, 0x33, 0xff }, /* Pixel 76 */ { 0x99, 0xff, 0x00, 0xff }, /* Pixel 77 */ { 0x99, 0xcc, 0xff, 0xff }, /* Pixel 78 */ { 0xab, 0xe4, 0xe4, 0xff }, /* Pixel 79 */ { 0xab, 0xe4, 0xab, 0xff }, /* Pixel 80 */ { 0xab, 0xe4, 0x72, 0xff }, /* Pixel 81 */ { 0xab, 0xe4, 0x39, 0xff }, /* Pixel 82 */ { 0xab, 0xe4, 0x00, 0xff }, /* Pixel 83 */ { 0x99, 0x99, 0xff, 0xff }, /* Pixel 84 */ { 0xab, 0xab, 0xe4, 0xff }, /* Pixel 85 */ { 0xc6, 0xc6, 0xc6, 0xff }, /* Pixel 86 */ { 0xc6, 0xc6, 0x84, 0xff }, /* Pixel 87 */ { 0xc6, 0xc6, 0x42, 0xff }, /* Pixel 88 */ { 0xc6, 0xc6, 0x00, 0xff }, /* Pixel 89 */ { 0x99, 0x66, 0xff, 0xff }, /* Pixel 90 */ { 0xab, 0x72, 0xe4, 0xff }, /* Pixel 91 */ { 0xc6, 0x84, 0xc6, 0xff }, /* Pixel 92 */ { 0xc6, 0x84, 0x84, 0xff }, /* Pixel 93 */ { 0xc6, 0x84, 0x42, 0xff }, /* Pixel 94 */ { 0xc6, 0x84, 0x00, 0xff }, /* Pixel 95 */ { 0x99, 0x33, 0xff, 0xff }, /* Pixel 96 */ { 0xab, 0x39, 0xe4, 0xff }, /* Pixel 97 */ { 0xc6, 0x42, 0xc6, 0xff }, /* Pixel 98 */ { 0xc6, 0x42, 0x84, 0xff }, /* Pixel 99 */ { 0xc6, 0x42, 0x42, 0xff }, /* Pixel 100 */ { 0xc6, 0x42, 0x00, 0xff }, /* Pixel 101 */ { 0x99, 0x00, 0xff, 0xff }, /* Pixel 102 */ { 0xab, 0x00, 0xe4, 0xff }, /* Pixel 103 */ { 0xc6, 0x00, 0xc6, 0xff }, /* Pixel 104 */ { 0xc6, 0x00, 0x84, 0xff }, /* Pixel 105 */ { 0xc6, 0x00, 0x42, 0xff }, /* Pixel 106 */ { 0xc6, 0x00, 0x00, 0xff }, /* Pixel 107 */ { 0x66, 0xff, 0xff, 0xff }, /* Pixel 108 */ { 0x66, 0xff, 0xcc, 0xff }, /* Pixel 109 */ { 0x66, 0xff, 0x99, 0xff }, /* Pixel 110 */ { 0x66, 0xff, 0x66, 0xff }, /* Pixel 111 */ { 0x66, 0xff, 0x33, 0xff }, /* Pixel 112 */ { 0x66, 0xff, 0x00, 0xff }, /* Pixel 113 */ { 0x66, 0xcc, 0xff, 0xff }, /* Pixel 114 */ { 0x72, 0xe4, 0xe4, 0xff }, /* Pixel 115 */ { 0x72, 0xe4, 0xab, 0xff }, /* Pixel 116 */ { 0x72, 0xe4, 0x72, 0xff }, /* Pixel 117 */ { 0x72, 0xe4, 0x39, 0xff }, /* Pixel 118 */ { 0x72, 0xe4, 0x00, 0xff }, /* Pixel 119 */ { 0x66, 0x99, 0xff, 0xff }, /* Pixel 120 */ { 0x72, 0xab, 0xe4, 0xff }, /* Pixel 121 */ { 0x84, 0xc6, 0xc6, 0xff }, /* Pixel 122 */ { 0x84, 0xc6, 0x84, 0xff }, /* Pixel 123 */ { 0x84, 0xc6, 0x42, 0xff }, /* Pixel 124 */ { 0x84, 0xc6, 0x00, 0xff }, /* Pixel 125 */ { 0x66, 0x66, 0xff, 0xff }, /* Pixel 126 */ { 0x72, 0x72, 0xe4, 0xff }, /* Pixel 127 */ { 0x84, 0x84, 0xc6, 0xff }, /* Pixel 128 */ { 0xa1, 0xa1, 0xa1, 0xff }, /* Pixel 129 */ { 0xa1, 0xa1, 0x51, 0xff }, /* Pixel 130 */ { 0xa1, 0xa1, 0x00, 0xff }, /* Pixel 131 */ { 0x66, 0x33, 0xff, 0xff }, /* Pixel 132 */ { 0x72, 0x39, 0xe4, 0xff }, /* Pixel 133 */ { 0x84, 0x42, 0xc6, 0xff }, /* Pixel 134 */ { 0xa1, 0x51, 0xa1, 0xff }, /* Pixel 135 */ { 0xa1, 0x51, 0x51, 0xff }, /* Pixel 136 */ { 0xa1, 0x51, 0x00, 0xff }, /* Pixel 137 */ { 0x66, 0x00, 0xff, 0xff }, /* Pixel 138 */ { 0x72, 0x00, 0xe4, 0xff }, /* Pixel 139 */ { 0x84, 0x00, 0xc6, 0xff }, /* Pixel 140 */ { 0xa1, 0x00, 0xa1, 0xff }, /* Pixel 141 */ { 0xa1, 0x00, 0x51, 0xff }, /* Pixel 142 */ { 0xa1, 0x00, 0x00, 0xff }, /* Pixel 143 */ { 0x33, 0xff, 0xff, 0xff }, /* Pixel 144 */ { 0x33, 0xff, 0xcc, 0xff }, /* Pixel 145 */ { 0x33, 0xff, 0x99, 0xff }, /* Pixel 146 */ { 0x33, 0xff, 0x66, 0xff }, /* Pixel 147 */ { 0x33, 0xff, 0x33, 0xff }, /* Pixel 148 */ { 0x33, 0xff, 0x00, 0xff }, /* Pixel 149 */ { 0x33, 0xcc, 0xff, 0xff }, /* Pixel 150 */ { 0x39, 0xe4, 0xe4, 0xff }, /* Pixel 151 */ { 0x39, 0xe4, 0xab, 0xff }, /* Pixel 152 */ { 0x39, 0xe4, 0x72, 0xff }, /* Pixel 153 */ { 0x39, 0xe4, 0x39, 0xff }, /* Pixel 154 */ { 0x39, 0xe4, 0x00, 0xff }, /* Pixel 155 */ { 0x33, 0x99, 0xff, 0xff }, /* Pixel 156 */ { 0x39, 0xab, 0xe4, 0xff }, /* Pixel 157 */ { 0x42, 0xc6, 0xc6, 0xff }, /* Pixel 158 */ { 0x42, 0xc6, 0x84, 0xff }, /* Pixel 159 */ { 0x42, 0xc6, 0x42, 0xff }, /* Pixel 160 */ { 0x42, 0xc6, 0x00, 0xff }, /* Pixel 161 */ { 0x33, 0x66, 0xff, 0xff }, /* Pixel 162 */ { 0x39, 0x72, 0xe4, 0xff }, /* Pixel 163 */ { 0x42, 0x84, 0xc6, 0xff }, /* Pixel 164 */ { 0x51, 0xa1, 0xa1, 0xff }, /* Pixel 165 */ { 0x51, 0xa1, 0x51, 0xff }, /* Pixel 166 */ { 0x51, 0xa1, 0x00, 0xff }, /* Pixel 167 */ { 0x33, 0x33, 0xff, 0xff }, /* Pixel 168 */ { 0x39, 0x39, 0xe4, 0xff }, /* Pixel 169 */ { 0x42, 0x42, 0xc6, 0xff }, /* Pixel 170 */ { 0x51, 0x51, 0xa1, 0xff }, /* Pixel 171 */ { 0x72, 0x72, 0x72, 0xff }, /* Pixel 172 */ { 0x72, 0x72, 0x00, 0xff }, /* Pixel 173 */ { 0x33, 0x00, 0xff, 0xff }, /* Pixel 174 */ { 0x39, 0x00, 0xe4, 0xff }, /* Pixel 175 */ { 0x42, 0x00, 0xc6, 0xff }, /* Pixel 176 */ { 0x51, 0x00, 0xa1, 0xff }, /* Pixel 177 */ { 0x72, 0x00, 0x72, 0xff }, /* Pixel 178 */ { 0x72, 0x00, 0x00, 0xff }, /* Pixel 179 */ { 0x00, 0xff, 0xff, 0xff }, /* Pixel 180 */ { 0x00, 0xff, 0xcc, 0xff }, /* Pixel 181 */ { 0x00, 0xff, 0x99, 0xff }, /* Pixel 182 */ { 0x00, 0xff, 0x66, 0xff }, /* Pixel 183 */ { 0x00, 0xff, 0x33, 0xff }, /* Pixel 184 */ { 0x00, 0xff, 0x00, 0xff }, /* Pixel 185 */ { 0x00, 0xcc, 0xff, 0xff }, /* Pixel 186 */ { 0x00, 0xe4, 0xe4, 0xff }, /* Pixel 187 */ { 0x00, 0xe4, 0xab, 0xff }, /* Pixel 188 */ { 0x00, 0xe4, 0x72, 0xff }, /* Pixel 189 */ { 0x00, 0xe4, 0x39, 0xff }, /* Pixel 190 */ { 0x00, 0xe4, 0x00, 0xff }, /* Pixel 191 */ { 0x00, 0x99, 0xff, 0xff }, /* Pixel 192 */ { 0x00, 0xab, 0xe4, 0xff }, /* Pixel 193 */ { 0x00, 0xc6, 0xc6, 0xff }, /* Pixel 194 */ { 0x00, 0xc6, 0x84, 0xff }, /* Pixel 195 */ { 0x00, 0xc6, 0x42, 0xff }, /* Pixel 196 */ { 0x00, 0xc6, 0x00, 0xff }, /* Pixel 197 */ { 0x00, 0x66, 0xff, 0xff }, /* Pixel 198 */ { 0x00, 0x72, 0xe4, 0xff }, /* Pixel 199 */ { 0x00, 0x84, 0xc6, 0xff }, /* Pixel 200 */ { 0x00, 0xa1, 0xa1, 0xff }, /* Pixel 201 */ { 0x00, 0xa1, 0x51, 0xff }, /* Pixel 202 */ { 0x00, 0xa1, 0x00, 0xff }, /* Pixel 203 */ { 0x00, 0x33, 0xff, 0xff }, /* Pixel 204 */ { 0x00, 0x39, 0xe4, 0xff }, /* Pixel 205 */ { 0x00, 0x42, 0xc6, 0xff }, /* Pixel 206 */ { 0x00, 0x51, 0xa1, 0xff }, /* Pixel 207 */ { 0x00, 0x72, 0x72, 0xff }, /* Pixel 208 */ { 0x00, 0x72, 0x00, 0xff }, /* Pixel 209 */ { 0x00, 0x00, 0xff, 0xff }, /* Pixel 210 */ { 0x00, 0x00, 0xe4, 0xff }, /* Pixel 211 */ { 0x00, 0x00, 0xc6, 0xff }, /* Pixel 212 */ { 0x00, 0x00, 0xa1, 0xff }, /* Pixel 213 */ { 0x00, 0x00, 0x72, 0xff }, /* Pixel 214 */ { 0xf6, 0x00, 0x00, 0xff }, /* Pixel 215 */ { 0xed, 0x00, 0x00, 0xff }, /* Pixel 216 */ { 0xda, 0x00, 0x00, 0xff }, /* Pixel 217 */ { 0xd0, 0x00, 0x00, 0xff }, /* Pixel 218 */ { 0xba, 0x00, 0x00, 0xff }, /* Pixel 219 */ { 0xae, 0x00, 0x00, 0xff }, /* Pixel 220 */ { 0x93, 0x00, 0x00, 0xff }, /* Pixel 221 */ { 0x84, 0x00, 0x00, 0xff }, /* Pixel 222 */ { 0x5d, 0x00, 0x00, 0xff }, /* Pixel 223 */ { 0x42, 0x00, 0x00, 0xff }, /* Pixel 224 */ { 0x00, 0xf6, 0x00, 0xff }, /* Pixel 225 */ { 0x00, 0xed, 0x00, 0xff }, /* Pixel 226 */ { 0x00, 0xda, 0x00, 0xff }, /* Pixel 227 */ { 0x00, 0xd0, 0x00, 0xff }, /* Pixel 228 */ { 0x00, 0xba, 0x00, 0xff }, /* Pixel 229 */ { 0x00, 0xae, 0x00, 0xff }, /* Pixel 230 */ { 0x00, 0x93, 0x00, 0xff }, /* Pixel 231 */ { 0x00, 0x84, 0x00, 0xff }, /* Pixel 232 */ { 0x00, 0x5d, 0x00, 0xff }, /* Pixel 233 */ { 0x00, 0x42, 0x00, 0xff }, /* Pixel 234 */ { 0x00, 0x00, 0xf6, 0xff }, /* Pixel 235 */ { 0x00, 0x00, 0xed, 0xff }, /* Pixel 236 */ { 0x00, 0x00, 0xda, 0xff }, /* Pixel 237 */ { 0x00, 0x00, 0xd0, 0xff }, /* Pixel 238 */ { 0x00, 0x00, 0xba, 0xff }, /* Pixel 239 */ { 0x00, 0x00, 0xae, 0xff }, /* Pixel 240 */ { 0x00, 0x00, 0x93, 0xff }, /* Pixel 241 */ { 0x00, 0x00, 0x84, 0xff }, /* Pixel 242 */ { 0x00, 0x00, 0x5d, 0xff }, /* Pixel 243 */ { 0x00, 0x00, 0x42, 0xff }, /* Pixel 244 */ { 0xf6, 0xf6, 0xf6, 0xff }, /* Pixel 245 */ { 0xed, 0xed, 0xed, 0xff }, /* Pixel 246 */ { 0xda, 0xda, 0xda, 0xff }, /* Pixel 247 */ { 0xd0, 0xd0, 0xd0, 0xff }, /* Pixel 248 */ { 0xba, 0xba, 0xba, 0xff }, /* Pixel 249 */ { 0xae, 0xae, 0xae, 0xff }, /* Pixel 250 */ { 0x93, 0x93, 0x93, 0xff }, /* Pixel 251 */ { 0x84, 0x84, 0x84, 0xff }, /* Pixel 252 */ { 0x5d, 0x5d, 0x5d, 0xff }, /* Pixel 253 */ { 0x42, 0x42, 0x42, 0xff }, /* Pixel 254 */ { 0x00, 0x00, 0x00, 0xff }, /* Pixel 255 */ }, /* Gamma level 5 */ { { 0xff, 0xff, 0xff, 0xff }, /* Pixel 0 */ { 0xff, 0xff, 0xcc, 0xff }, /* Pixel 1 */ { 0xff, 0xff, 0x99, 0xff }, /* Pixel 2 */ { 0xff, 0xff, 0x66, 0xff }, /* Pixel 3 */ { 0xff, 0xff, 0x33, 0xff }, /* Pixel 4 */ { 0xff, 0xff, 0x00, 0xff }, /* Pixel 5 */ { 0xff, 0xcc, 0xff, 0xff }, /* Pixel 6 */ { 0xff, 0xcc, 0xcc, 0xff }, /* Pixel 7 */ { 0xff, 0xcc, 0x99, 0xff }, /* Pixel 8 */ { 0xff, 0xcc, 0x66, 0xff }, /* Pixel 9 */ { 0xff, 0xcc, 0x33, 0xff }, /* Pixel 10 */ { 0xff, 0xcc, 0x00, 0xff }, /* Pixel 11 */ { 0xff, 0x99, 0xff, 0xff }, /* Pixel 12 */ { 0xff, 0x99, 0xcc, 0xff }, /* Pixel 13 */ { 0xff, 0x99, 0x99, 0xff }, /* Pixel 14 */ { 0xff, 0x99, 0x66, 0xff }, /* Pixel 15 */ { 0xff, 0x99, 0x33, 0xff }, /* Pixel 16 */ { 0xff, 0x99, 0x00, 0xff }, /* Pixel 17 */ { 0xff, 0x66, 0xff, 0xff }, /* Pixel 18 */ { 0xff, 0x66, 0xcc, 0xff }, /* Pixel 19 */ { 0xff, 0x66, 0x99, 0xff }, /* Pixel 20 */ { 0xff, 0x66, 0x66, 0xff }, /* Pixel 21 */ { 0xff, 0x66, 0x33, 0xff }, /* Pixel 22 */ { 0xff, 0x66, 0x00, 0xff }, /* Pixel 23 */ { 0xff, 0x33, 0xff, 0xff }, /* Pixel 24 */ { 0xff, 0x33, 0xcc, 0xff }, /* Pixel 25 */ { 0xff, 0x33, 0x99, 0xff }, /* Pixel 26 */ { 0xff, 0x33, 0x66, 0xff }, /* Pixel 27 */ { 0xff, 0x33, 0x33, 0xff }, /* Pixel 28 */ { 0xff, 0x33, 0x00, 0xff }, /* Pixel 29 */ { 0xff, 0x00, 0xff, 0xff }, /* Pixel 30 */ { 0xff, 0x00, 0xcc, 0xff }, /* Pixel 31 */ { 0xff, 0x00, 0x99, 0xff }, /* Pixel 32 */ { 0xff, 0x00, 0x66, 0xff }, /* Pixel 33 */ { 0xff, 0x00, 0x33, 0xff }, /* Pixel 34 */ { 0xff, 0x00, 0x00, 0xff }, /* Pixel 35 */ { 0xcc, 0xff, 0xff, 0xff }, /* Pixel 36 */ { 0xcc, 0xff, 0xcc, 0xff }, /* Pixel 37 */ { 0xcc, 0xff, 0x99, 0xff }, /* Pixel 38 */ { 0xcc, 0xff, 0x66, 0xff }, /* Pixel 39 */ { 0xcc, 0xff, 0x33, 0xff }, /* Pixel 40 */ { 0xcc, 0xff, 0x00, 0xff }, /* Pixel 41 */ { 0xcc, 0xcc, 0xff, 0xff }, /* Pixel 42 */ { 0xe7, 0xe7, 0xe7, 0xff }, /* Pixel 43 */ { 0xe7, 0xe7, 0xad, 0xff }, /* Pixel 44 */ { 0xe7, 0xe7, 0x74, 0xff }, /* Pixel 45 */ { 0xe7, 0xe7, 0x3a, 0xff }, /* Pixel 46 */ { 0xe7, 0xe7, 0x00, 0xff }, /* Pixel 47 */ { 0xcc, 0x99, 0xff, 0xff }, /* Pixel 48 */ { 0xe7, 0xad, 0xe7, 0xff }, /* Pixel 49 */ { 0xe7, 0xad, 0xad, 0xff }, /* Pixel 50 */ { 0xe7, 0xad, 0x74, 0xff }, /* Pixel 51 */ { 0xe7, 0xad, 0x3a, 0xff }, /* Pixel 52 */ { 0xe7, 0xad, 0x00, 0xff }, /* Pixel 53 */ { 0xcc, 0x66, 0xff, 0xff }, /* Pixel 54 */ { 0xe7, 0x74, 0xe7, 0xff }, /* Pixel 55 */ { 0xe7, 0x74, 0xad, 0xff }, /* Pixel 56 */ { 0xe7, 0x74, 0x74, 0xff }, /* Pixel 57 */ { 0xe7, 0x74, 0x3a, 0xff }, /* Pixel 58 */ { 0xe7, 0x74, 0x00, 0xff }, /* Pixel 59 */ { 0xcc, 0x33, 0xff, 0xff }, /* Pixel 60 */ { 0xe7, 0x3a, 0xe7, 0xff }, /* Pixel 61 */ { 0xe7, 0x3a, 0xad, 0xff }, /* Pixel 62 */ { 0xe7, 0x3a, 0x73, 0xff }, /* Pixel 63 */ { 0xe7, 0x3a, 0x3a, 0xff }, /* Pixel 64 */ { 0xe7, 0x3a, 0x00, 0xff }, /* Pixel 65 */ { 0xcc, 0x00, 0xff, 0xff }, /* Pixel 66 */ { 0xe7, 0x00, 0xe7, 0xff }, /* Pixel 67 */ { 0xe7, 0x00, 0xad, 0xff }, /* Pixel 68 */ { 0xe7, 0x00, 0x74, 0xff }, /* Pixel 69 */ { 0xe7, 0x00, 0x3a, 0xff }, /* Pixel 70 */ { 0xe7, 0x00, 0x00, 0xff }, /* Pixel 71 */ { 0x99, 0xff, 0xff, 0xff }, /* Pixel 72 */ { 0x99, 0xff, 0xcc, 0xff }, /* Pixel 73 */ { 0x99, 0xff, 0x99, 0xff }, /* Pixel 74 */ { 0x99, 0xff, 0x66, 0xff }, /* Pixel 75 */ { 0x99, 0xff, 0x33, 0xff }, /* Pixel 76 */ { 0x99, 0xff, 0x00, 0xff }, /* Pixel 77 */ { 0x99, 0xcc, 0xff, 0xff }, /* Pixel 78 */ { 0xad, 0xe7, 0xe7, 0xff }, /* Pixel 79 */ { 0xad, 0xe7, 0xad, 0xff }, /* Pixel 80 */ { 0xad, 0xe7, 0x74, 0xff }, /* Pixel 81 */ { 0xad, 0xe7, 0x3a, 0xff }, /* Pixel 82 */ { 0xad, 0xe7, 0x00, 0xff }, /* Pixel 83 */ { 0x99, 0x99, 0xff, 0xff }, /* Pixel 84 */ { 0xad, 0xad, 0xe7, 0xff }, /* Pixel 85 */ { 0xcb, 0xcb, 0xcb, 0xff }, /* Pixel 86 */ { 0xcb, 0xcb, 0x87, 0xff }, /* Pixel 87 */ { 0xcb, 0xcb, 0x44, 0xff }, /* Pixel 88 */ { 0xcb, 0xcb, 0x00, 0xff }, /* Pixel 89 */ { 0x99, 0x66, 0xff, 0xff }, /* Pixel 90 */ { 0xad, 0x74, 0xe7, 0xff }, /* Pixel 91 */ { 0xcb, 0x87, 0xcb, 0xff }, /* Pixel 92 */ { 0xcb, 0x87, 0x87, 0xff }, /* Pixel 93 */ { 0xcb, 0x87, 0x44, 0xff }, /* Pixel 94 */ { 0xcb, 0x87, 0x00, 0xff }, /* Pixel 95 */ { 0x99, 0x33, 0xff, 0xff }, /* Pixel 96 */ { 0xad, 0x3a, 0xe7, 0xff }, /* Pixel 97 */ { 0xcb, 0x44, 0xcb, 0xff }, /* Pixel 98 */ { 0xcb, 0x44, 0x87, 0xff }, /* Pixel 99 */ { 0xcb, 0x44, 0x44, 0xff }, /* Pixel 100 */ { 0xcb, 0x44, 0x00, 0xff }, /* Pixel 101 */ { 0x99, 0x00, 0xff, 0xff }, /* Pixel 102 */ { 0xad, 0x00, 0xe7, 0xff }, /* Pixel 103 */ { 0xcb, 0x00, 0xcb, 0xff }, /* Pixel 104 */ { 0xcb, 0x00, 0x87, 0xff }, /* Pixel 105 */ { 0xcb, 0x00, 0x44, 0xff }, /* Pixel 106 */ { 0xcb, 0x00, 0x00, 0xff }, /* Pixel 107 */ { 0x66, 0xff, 0xff, 0xff }, /* Pixel 108 */ { 0x66, 0xff, 0xcc, 0xff }, /* Pixel 109 */ { 0x66, 0xff, 0x99, 0xff }, /* Pixel 110 */ { 0x66, 0xff, 0x66, 0xff }, /* Pixel 111 */ { 0x66, 0xff, 0x33, 0xff }, /* Pixel 112 */ { 0x66, 0xff, 0x00, 0xff }, /* Pixel 113 */ { 0x66, 0xcc, 0xff, 0xff }, /* Pixel 114 */ { 0x74, 0xe7, 0xe7, 0xff }, /* Pixel 115 */ { 0x74, 0xe7, 0xad, 0xff }, /* Pixel 116 */ { 0x74, 0xe7, 0x74, 0xff }, /* Pixel 117 */ { 0x73, 0xe7, 0x3a, 0xff }, /* Pixel 118 */ { 0x74, 0xe7, 0x00, 0xff }, /* Pixel 119 */ { 0x66, 0x99, 0xff, 0xff }, /* Pixel 120 */ { 0x74, 0xad, 0xe7, 0xff }, /* Pixel 121 */ { 0x87, 0xcb, 0xcb, 0xff }, /* Pixel 122 */ { 0x87, 0xcb, 0x87, 0xff }, /* Pixel 123 */ { 0x87, 0xcb, 0x44, 0xff }, /* Pixel 124 */ { 0x87, 0xcb, 0x00, 0xff }, /* Pixel 125 */ { 0x66, 0x66, 0xff, 0xff }, /* Pixel 126 */ { 0x74, 0x74, 0xe7, 0xff }, /* Pixel 127 */ { 0x87, 0x87, 0xcb, 0xff }, /* Pixel 128 */ { 0xaa, 0xaa, 0xaa, 0xff }, /* Pixel 129 */ { 0xaa, 0xaa, 0x55, 0xff }, /* Pixel 130 */ { 0xaa, 0xaa, 0x00, 0xff }, /* Pixel 131 */ { 0x66, 0x33, 0xff, 0xff }, /* Pixel 132 */ { 0x73, 0x3a, 0xe7, 0xff }, /* Pixel 133 */ { 0x87, 0x44, 0xcb, 0xff }, /* Pixel 134 */ { 0xaa, 0x55, 0xaa, 0xff }, /* Pixel 135 */ { 0xaa, 0x55, 0x55, 0xff }, /* Pixel 136 */ { 0xaa, 0x55, 0x00, 0xff }, /* Pixel 137 */ { 0x66, 0x00, 0xff, 0xff }, /* Pixel 138 */ { 0x74, 0x00, 0xe7, 0xff }, /* Pixel 139 */ { 0x87, 0x00, 0xcb, 0xff }, /* Pixel 140 */ { 0xaa, 0x00, 0xaa, 0xff }, /* Pixel 141 */ { 0xaa, 0x00, 0x55, 0xff }, /* Pixel 142 */ { 0xaa, 0x00, 0x00, 0xff }, /* Pixel 143 */ { 0x33, 0xff, 0xff, 0xff }, /* Pixel 144 */ { 0x33, 0xff, 0xcc, 0xff }, /* Pixel 145 */ { 0x33, 0xff, 0x99, 0xff }, /* Pixel 146 */ { 0x33, 0xff, 0x66, 0xff }, /* Pixel 147 */ { 0x33, 0xff, 0x33, 0xff }, /* Pixel 148 */ { 0x33, 0xff, 0x00, 0xff }, /* Pixel 149 */ { 0x33, 0xcc, 0xff, 0xff }, /* Pixel 150 */ { 0x3a, 0xe7, 0xe7, 0xff }, /* Pixel 151 */ { 0x3a, 0xe7, 0xad, 0xff }, /* Pixel 152 */ { 0x3a, 0xe7, 0x74, 0xff }, /* Pixel 153 */ { 0x3a, 0xe7, 0x3a, 0xff }, /* Pixel 154 */ { 0x3a, 0xe7, 0x00, 0xff }, /* Pixel 155 */ { 0x33, 0x99, 0xff, 0xff }, /* Pixel 156 */ { 0x3a, 0xad, 0xe7, 0xff }, /* Pixel 157 */ { 0x44, 0xcb, 0xcb, 0xff }, /* Pixel 158 */ { 0x44, 0xcb, 0x87, 0xff }, /* Pixel 159 */ { 0x44, 0xcb, 0x44, 0xff }, /* Pixel 160 */ { 0x44, 0xcb, 0x00, 0xff }, /* Pixel 161 */ { 0x33, 0x66, 0xff, 0xff }, /* Pixel 162 */ { 0x3a, 0x74, 0xe7, 0xff }, /* Pixel 163 */ { 0x44, 0x87, 0xcb, 0xff }, /* Pixel 164 */ { 0x55, 0xaa, 0xaa, 0xff }, /* Pixel 165 */ { 0x55, 0xaa, 0x55, 0xff }, /* Pixel 166 */ { 0x55, 0xaa, 0x00, 0xff }, /* Pixel 167 */ { 0x33, 0x33, 0xff, 0xff }, /* Pixel 168 */ { 0x3a, 0x3a, 0xe7, 0xff }, /* Pixel 169 */ { 0x44, 0x44, 0xcb, 0xff }, /* Pixel 170 */ { 0x55, 0x55, 0xaa, 0xff }, /* Pixel 171 */ { 0x7d, 0x7d, 0x7d, 0xff }, /* Pixel 172 */ { 0x7d, 0x7d, 0x00, 0xff }, /* Pixel 173 */ { 0x33, 0x00, 0xff, 0xff }, /* Pixel 174 */ { 0x3a, 0x00, 0xe7, 0xff }, /* Pixel 175 */ { 0x44, 0x00, 0xcb, 0xff }, /* Pixel 176 */ { 0x55, 0x00, 0xaa, 0xff }, /* Pixel 177 */ { 0x7d, 0x00, 0x7d, 0xff }, /* Pixel 178 */ { 0x7d, 0x00, 0x00, 0xff }, /* Pixel 179 */ { 0x00, 0xff, 0xff, 0xff }, /* Pixel 180 */ { 0x00, 0xff, 0xcc, 0xff }, /* Pixel 181 */ { 0x00, 0xff, 0x99, 0xff }, /* Pixel 182 */ { 0x00, 0xff, 0x66, 0xff }, /* Pixel 183 */ { 0x00, 0xff, 0x33, 0xff }, /* Pixel 184 */ { 0x00, 0xff, 0x00, 0xff }, /* Pixel 185 */ { 0x00, 0xcc, 0xff, 0xff }, /* Pixel 186 */ { 0x00, 0xe7, 0xe7, 0xff }, /* Pixel 187 */ { 0x00, 0xe7, 0xad, 0xff }, /* Pixel 188 */ { 0x00, 0xe7, 0x74, 0xff }, /* Pixel 189 */ { 0x00, 0xe7, 0x3a, 0xff }, /* Pixel 190 */ { 0x00, 0xe7, 0x00, 0xff }, /* Pixel 191 */ { 0x00, 0x99, 0xff, 0xff }, /* Pixel 192 */ { 0x00, 0xad, 0xe7, 0xff }, /* Pixel 193 */ { 0x00, 0xcb, 0xcb, 0xff }, /* Pixel 194 */ { 0x00, 0xcb, 0x87, 0xff }, /* Pixel 195 */ { 0x00, 0xcb, 0x44, 0xff }, /* Pixel 196 */ { 0x00, 0xcb, 0x00, 0xff }, /* Pixel 197 */ { 0x00, 0x66, 0xff, 0xff }, /* Pixel 198 */ { 0x00, 0x74, 0xe7, 0xff }, /* Pixel 199 */ { 0x00, 0x87, 0xcb, 0xff }, /* Pixel 200 */ { 0x00, 0xaa, 0xaa, 0xff }, /* Pixel 201 */ { 0x00, 0xaa, 0x55, 0xff }, /* Pixel 202 */ { 0x00, 0xaa, 0x00, 0xff }, /* Pixel 203 */ { 0x00, 0x33, 0xff, 0xff }, /* Pixel 204 */ { 0x00, 0x3a, 0xe7, 0xff }, /* Pixel 205 */ { 0x00, 0x44, 0xcb, 0xff }, /* Pixel 206 */ { 0x00, 0x55, 0xaa, 0xff }, /* Pixel 207 */ { 0x00, 0x7d, 0x7d, 0xff }, /* Pixel 208 */ { 0x00, 0x7d, 0x00, 0xff }, /* Pixel 209 */ { 0x00, 0x00, 0xff, 0xff }, /* Pixel 210 */ { 0x00, 0x00, 0xe7, 0xff }, /* Pixel 211 */ { 0x00, 0x00, 0xcb, 0xff }, /* Pixel 212 */ { 0x00, 0x00, 0xaa, 0xff }, /* Pixel 213 */ { 0x00, 0x00, 0x7d, 0xff }, /* Pixel 214 */ { 0xf7, 0x00, 0x00, 0xff }, /* Pixel 215 */ { 0xef, 0x00, 0x00, 0xff }, /* Pixel 216 */ { 0xde, 0x00, 0x00, 0xff }, /* Pixel 217 */ { 0xd5, 0x00, 0x00, 0xff }, /* Pixel 218 */ { 0xc1, 0x00, 0x00, 0xff }, /* Pixel 219 */ { 0xb6, 0x00, 0x00, 0xff }, /* Pixel 220 */ { 0x9c, 0x00, 0x00, 0xff }, /* Pixel 221 */ { 0x8e, 0x00, 0x00, 0xff }, /* Pixel 222 */ { 0x68, 0x00, 0x00, 0xff }, /* Pixel 223 */ { 0x4d, 0x00, 0x00, 0xff }, /* Pixel 224 */ { 0x00, 0xf7, 0x00, 0xff }, /* Pixel 225 */ { 0x00, 0xef, 0x00, 0xff }, /* Pixel 226 */ { 0x00, 0xde, 0x00, 0xff }, /* Pixel 227 */ { 0x00, 0xd5, 0x00, 0xff }, /* Pixel 228 */ { 0x00, 0xc1, 0x00, 0xff }, /* Pixel 229 */ { 0x00, 0xb6, 0x00, 0xff }, /* Pixel 230 */ { 0x00, 0x9c, 0x00, 0xff }, /* Pixel 231 */ { 0x00, 0x8e, 0x00, 0xff }, /* Pixel 232 */ { 0x00, 0x68, 0x00, 0xff }, /* Pixel 233 */ { 0x00, 0x4d, 0x00, 0xff }, /* Pixel 234 */ { 0x00, 0x00, 0xf7, 0xff }, /* Pixel 235 */ { 0x00, 0x00, 0xef, 0xff }, /* Pixel 236 */ { 0x00, 0x00, 0xde, 0xff }, /* Pixel 237 */ { 0x00, 0x00, 0xd5, 0xff }, /* Pixel 238 */ { 0x00, 0x00, 0xc1, 0xff }, /* Pixel 239 */ { 0x00, 0x00, 0xb6, 0xff }, /* Pixel 240 */ { 0x00, 0x00, 0x9c, 0xff }, /* Pixel 241 */ { 0x00, 0x00, 0x8e, 0xff }, /* Pixel 242 */ { 0x00, 0x00, 0x68, 0xff }, /* Pixel 243 */ { 0x00, 0x00, 0x4d, 0xff }, /* Pixel 244 */ { 0xf7, 0xf7, 0xf7, 0xff }, /* Pixel 245 */ { 0xef, 0xef, 0xef, 0xff }, /* Pixel 246 */ { 0xde, 0xde, 0xde, 0xff }, /* Pixel 247 */ { 0xd5, 0xd5, 0xd5, 0xff }, /* Pixel 248 */ { 0xc1, 0xc1, 0xc1, 0xff }, /* Pixel 249 */ { 0xb6, 0xb6, 0xb6, 0xff }, /* Pixel 250 */ { 0x9c, 0x9c, 0x9c, 0xff }, /* Pixel 251 */ { 0x8e, 0x8e, 0x8e, 0xff }, /* Pixel 252 */ { 0x68, 0x68, 0x68, 0xff }, /* Pixel 253 */ { 0x4d, 0x4d, 0x4d, 0xff }, /* Pixel 254 */ { 0x00, 0x00, 0x00, 0xff }, /* Pixel 255 */ }, /* Gamma level 6 */ { { 0xff, 0xff, 0xff, 0xff }, /* Pixel 0 */ { 0xff, 0xff, 0xcc, 0xff }, /* Pixel 1 */ { 0xff, 0xff, 0x99, 0xff }, /* Pixel 2 */ { 0xff, 0xff, 0x66, 0xff }, /* Pixel 3 */ { 0xff, 0xff, 0x33, 0xff }, /* Pixel 4 */ { 0xff, 0xff, 0x00, 0xff }, /* Pixel 5 */ { 0xff, 0xcc, 0xff, 0xff }, /* Pixel 6 */ { 0xff, 0xcc, 0xcc, 0xff }, /* Pixel 7 */ { 0xff, 0xcc, 0x99, 0xff }, /* Pixel 8 */ { 0xff, 0xcc, 0x66, 0xff }, /* Pixel 9 */ { 0xff, 0xcc, 0x33, 0xff }, /* Pixel 10 */ { 0xff, 0xcc, 0x00, 0xff }, /* Pixel 11 */ { 0xff, 0x99, 0xff, 0xff }, /* Pixel 12 */ { 0xff, 0x99, 0xcc, 0xff }, /* Pixel 13 */ { 0xff, 0x99, 0x99, 0xff }, /* Pixel 14 */ { 0xff, 0x99, 0x66, 0xff }, /* Pixel 15 */ { 0xff, 0x99, 0x33, 0xff }, /* Pixel 16 */ { 0xff, 0x99, 0x00, 0xff }, /* Pixel 17 */ { 0xff, 0x66, 0xff, 0xff }, /* Pixel 18 */ { 0xff, 0x66, 0xcc, 0xff }, /* Pixel 19 */ { 0xff, 0x66, 0x99, 0xff }, /* Pixel 20 */ { 0xff, 0x66, 0x66, 0xff }, /* Pixel 21 */ { 0xff, 0x66, 0x33, 0xff }, /* Pixel 22 */ { 0xff, 0x66, 0x00, 0xff }, /* Pixel 23 */ { 0xff, 0x33, 0xff, 0xff }, /* Pixel 24 */ { 0xff, 0x33, 0xcc, 0xff }, /* Pixel 25 */ { 0xff, 0x33, 0x99, 0xff }, /* Pixel 26 */ { 0xff, 0x33, 0x66, 0xff }, /* Pixel 27 */ { 0xff, 0x33, 0x33, 0xff }, /* Pixel 28 */ { 0xff, 0x33, 0x00, 0xff }, /* Pixel 29 */ { 0xff, 0x00, 0xff, 0xff }, /* Pixel 30 */ { 0xff, 0x00, 0xcc, 0xff }, /* Pixel 31 */ { 0xff, 0x00, 0x99, 0xff }, /* Pixel 32 */ { 0xff, 0x00, 0x66, 0xff }, /* Pixel 33 */ { 0xff, 0x00, 0x33, 0xff }, /* Pixel 34 */ { 0xff, 0x00, 0x00, 0xff }, /* Pixel 35 */ { 0xcc, 0xff, 0xff, 0xff }, /* Pixel 36 */ { 0xcc, 0xff, 0xcc, 0xff }, /* Pixel 37 */ { 0xcc, 0xff, 0x99, 0xff }, /* Pixel 38 */ { 0xcc, 0xff, 0x66, 0xff }, /* Pixel 39 */ { 0xcc, 0xff, 0x33, 0xff }, /* Pixel 40 */ { 0xcc, 0xff, 0x00, 0xff }, /* Pixel 41 */ { 0xcc, 0xcc, 0xff, 0xff }, /* Pixel 42 */ { 0xe9, 0xe9, 0xe9, 0xff }, /* Pixel 43 */ { 0xe9, 0xe9, 0xaf, 0xff }, /* Pixel 44 */ { 0xe9, 0xe9, 0x75, 0xff }, /* Pixel 45 */ { 0xe9, 0xe9, 0x3a, 0xff }, /* Pixel 46 */ { 0xe9, 0xe9, 0x00, 0xff }, /* Pixel 47 */ { 0xcc, 0x99, 0xff, 0xff }, /* Pixel 48 */ { 0xe9, 0xaf, 0xe9, 0xff }, /* Pixel 49 */ { 0xe9, 0xaf, 0xaf, 0xff }, /* Pixel 50 */ { 0xe9, 0xaf, 0x75, 0xff }, /* Pixel 51 */ { 0xe9, 0xaf, 0x3a, 0xff }, /* Pixel 52 */ { 0xe9, 0xaf, 0x00, 0xff }, /* Pixel 53 */ { 0xcc, 0x66, 0xff, 0xff }, /* Pixel 54 */ { 0xe9, 0x75, 0xe9, 0xff }, /* Pixel 55 */ { 0xe9, 0x75, 0xaf, 0xff }, /* Pixel 56 */ { 0xe9, 0x75, 0x75, 0xff }, /* Pixel 57 */ { 0xe9, 0x75, 0x3a, 0xff }, /* Pixel 58 */ { 0xe9, 0x75, 0x00, 0xff }, /* Pixel 59 */ { 0xcc, 0x33, 0xff, 0xff }, /* Pixel 60 */ { 0xe9, 0x3a, 0xe9, 0xff }, /* Pixel 61 */ { 0xe9, 0x3a, 0xaf, 0xff }, /* Pixel 62 */ { 0xe9, 0x3a, 0x74, 0xff }, /* Pixel 63 */ { 0xe9, 0x3a, 0x3a, 0xff }, /* Pixel 64 */ { 0xe9, 0x3a, 0x00, 0xff }, /* Pixel 65 */ { 0xcc, 0x00, 0xff, 0xff }, /* Pixel 66 */ { 0xe9, 0x00, 0xe9, 0xff }, /* Pixel 67 */ { 0xe9, 0x00, 0xaf, 0xff }, /* Pixel 68 */ { 0xe9, 0x00, 0x75, 0xff }, /* Pixel 69 */ { 0xe9, 0x00, 0x3a, 0xff }, /* Pixel 70 */ { 0xe9, 0x00, 0x00, 0xff }, /* Pixel 71 */ { 0x99, 0xff, 0xff, 0xff }, /* Pixel 72 */ { 0x99, 0xff, 0xcc, 0xff }, /* Pixel 73 */ { 0x99, 0xff, 0x99, 0xff }, /* Pixel 74 */ { 0x99, 0xff, 0x66, 0xff }, /* Pixel 75 */ { 0x99, 0xff, 0x33, 0xff }, /* Pixel 76 */ { 0x99, 0xff, 0x00, 0xff }, /* Pixel 77 */ { 0x99, 0xcc, 0xff, 0xff }, /* Pixel 78 */ { 0xaf, 0xe9, 0xe9, 0xff }, /* Pixel 79 */ { 0xaf, 0xe9, 0xaf, 0xff }, /* Pixel 80 */ { 0xaf, 0xe9, 0x75, 0xff }, /* Pixel 81 */ { 0xaf, 0xe9, 0x3a, 0xff }, /* Pixel 82 */ { 0xaf, 0xe9, 0x00, 0xff }, /* Pixel 83 */ { 0x99, 0x99, 0xff, 0xff }, /* Pixel 84 */ { 0xaf, 0xaf, 0xe9, 0xff }, /* Pixel 85 */ { 0xd0, 0xd0, 0xd0, 0xff }, /* Pixel 86 */ { 0xd0, 0xd0, 0x8b, 0xff }, /* Pixel 87 */ { 0xd0, 0xd0, 0x45, 0xff }, /* Pixel 88 */ { 0xd0, 0xd0, 0x00, 0xff }, /* Pixel 89 */ { 0x99, 0x66, 0xff, 0xff }, /* Pixel 90 */ { 0xaf, 0x75, 0xe9, 0xff }, /* Pixel 91 */ { 0xd0, 0x8b, 0xd0, 0xff }, /* Pixel 92 */ { 0xd0, 0x8b, 0x8b, 0xff }, /* Pixel 93 */ { 0xd0, 0x8b, 0x45, 0xff }, /* Pixel 94 */ { 0xd0, 0x8b, 0x00, 0xff }, /* Pixel 95 */ { 0x99, 0x33, 0xff, 0xff }, /* Pixel 96 */ { 0xaf, 0x3a, 0xe9, 0xff }, /* Pixel 97 */ { 0xd0, 0x45, 0xd0, 0xff }, /* Pixel 98 */ { 0xd0, 0x45, 0x8b, 0xff }, /* Pixel 99 */ { 0xd0, 0x45, 0x45, 0xff }, /* Pixel 100 */ { 0xd0, 0x45, 0x00, 0xff }, /* Pixel 101 */ { 0x99, 0x00, 0xff, 0xff }, /* Pixel 102 */ { 0xaf, 0x00, 0xe9, 0xff }, /* Pixel 103 */ { 0xd0, 0x00, 0xd0, 0xff }, /* Pixel 104 */ { 0xd0, 0x00, 0x8b, 0xff }, /* Pixel 105 */ { 0xd0, 0x00, 0x45, 0xff }, /* Pixel 106 */ { 0xd0, 0x00, 0x00, 0xff }, /* Pixel 107 */ { 0x66, 0xff, 0xff, 0xff }, /* Pixel 108 */ { 0x66, 0xff, 0xcc, 0xff }, /* Pixel 109 */ { 0x66, 0xff, 0x99, 0xff }, /* Pixel 110 */ { 0x66, 0xff, 0x66, 0xff }, /* Pixel 111 */ { 0x66, 0xff, 0x33, 0xff }, /* Pixel 112 */ { 0x66, 0xff, 0x00, 0xff }, /* Pixel 113 */ { 0x66, 0xcc, 0xff, 0xff }, /* Pixel 114 */ { 0x75, 0xe9, 0xe9, 0xff }, /* Pixel 115 */ { 0x75, 0xe9, 0xaf, 0xff }, /* Pixel 116 */ { 0x75, 0xe9, 0x75, 0xff }, /* Pixel 117 */ { 0x74, 0xe9, 0x3a, 0xff }, /* Pixel 118 */ { 0x75, 0xe9, 0x00, 0xff }, /* Pixel 119 */ { 0x66, 0x99, 0xff, 0xff }, /* Pixel 120 */ { 0x75, 0xaf, 0xe9, 0xff }, /* Pixel 121 */ { 0x8b, 0xd0, 0xd0, 0xff }, /* Pixel 122 */ { 0x8b, 0xd0, 0x8b, 0xff }, /* Pixel 123 */ { 0x8b, 0xd0, 0x45, 0xff }, /* Pixel 124 */ { 0x8b, 0xd0, 0x00, 0xff }, /* Pixel 125 */ { 0x66, 0x66, 0xff, 0xff }, /* Pixel 126 */ { 0x75, 0x75, 0xe9, 0xff }, /* Pixel 127 */ { 0x8b, 0x8b, 0xd0, 0xff }, /* Pixel 128 */ { 0xb1, 0xb1, 0xb1, 0xff }, /* Pixel 129 */ { 0xb1, 0xb1, 0x59, 0xff }, /* Pixel 130 */ { 0xb1, 0xb1, 0x00, 0xff }, /* Pixel 131 */ { 0x66, 0x33, 0xff, 0xff }, /* Pixel 132 */ { 0x74, 0x3a, 0xe9, 0xff }, /* Pixel 133 */ { 0x8b, 0x45, 0xd0, 0xff }, /* Pixel 134 */ { 0xb1, 0x59, 0xb1, 0xff }, /* Pixel 135 */ { 0xb1, 0x59, 0x59, 0xff }, /* Pixel 136 */ { 0xb1, 0x59, 0x00, 0xff }, /* Pixel 137 */ { 0x66, 0x00, 0xff, 0xff }, /* Pixel 138 */ { 0x75, 0x00, 0xe9, 0xff }, /* Pixel 139 */ { 0x8b, 0x00, 0xd0, 0xff }, /* Pixel 140 */ { 0xb1, 0x00, 0xb1, 0xff }, /* Pixel 141 */ { 0xb1, 0x00, 0x59, 0xff }, /* Pixel 142 */ { 0xb1, 0x00, 0x00, 0xff }, /* Pixel 143 */ { 0x33, 0xff, 0xff, 0xff }, /* Pixel 144 */ { 0x33, 0xff, 0xcc, 0xff }, /* Pixel 145 */ { 0x33, 0xff, 0x99, 0xff }, /* Pixel 146 */ { 0x33, 0xff, 0x66, 0xff }, /* Pixel 147 */ { 0x33, 0xff, 0x33, 0xff }, /* Pixel 148 */ { 0x33, 0xff, 0x00, 0xff }, /* Pixel 149 */ { 0x33, 0xcc, 0xff, 0xff }, /* Pixel 150 */ { 0x3a, 0xe9, 0xe9, 0xff }, /* Pixel 151 */ { 0x3a, 0xe9, 0xaf, 0xff }, /* Pixel 152 */ { 0x3a, 0xe9, 0x75, 0xff }, /* Pixel 153 */ { 0x3a, 0xe9, 0x3a, 0xff }, /* Pixel 154 */ { 0x3a, 0xe9, 0x00, 0xff }, /* Pixel 155 */ { 0x33, 0x99, 0xff, 0xff }, /* Pixel 156 */ { 0x3a, 0xaf, 0xe9, 0xff }, /* Pixel 157 */ { 0x45, 0xd0, 0xd0, 0xff }, /* Pixel 158 */ { 0x45, 0xd0, 0x8b, 0xff }, /* Pixel 159 */ { 0x45, 0xd0, 0x45, 0xff }, /* Pixel 160 */ { 0x45, 0xd0, 0x00, 0xff }, /* Pixel 161 */ { 0x33, 0x66, 0xff, 0xff }, /* Pixel 162 */ { 0x3a, 0x75, 0xe9, 0xff }, /* Pixel 163 */ { 0x45, 0x8b, 0xd0, 0xff }, /* Pixel 164 */ { 0x59, 0xb1, 0xb1, 0xff }, /* Pixel 165 */ { 0x59, 0xb1, 0x59, 0xff }, /* Pixel 166 */ { 0x59, 0xb1, 0x00, 0xff }, /* Pixel 167 */ { 0x33, 0x33, 0xff, 0xff }, /* Pixel 168 */ { 0x3a, 0x3a, 0xe9, 0xff }, /* Pixel 169 */ { 0x45, 0x45, 0xd0, 0xff }, /* Pixel 170 */ { 0x59, 0x59, 0xb1, 0xff }, /* Pixel 171 */ { 0x86, 0x86, 0x86, 0xff }, /* Pixel 172 */ { 0x86, 0x86, 0x00, 0xff }, /* Pixel 173 */ { 0x33, 0x00, 0xff, 0xff }, /* Pixel 174 */ { 0x3a, 0x00, 0xe9, 0xff }, /* Pixel 175 */ { 0x45, 0x00, 0xd0, 0xff }, /* Pixel 176 */ { 0x59, 0x00, 0xb1, 0xff }, /* Pixel 177 */ { 0x86, 0x00, 0x86, 0xff }, /* Pixel 178 */ { 0x86, 0x00, 0x00, 0xff }, /* Pixel 179 */ { 0x00, 0xff, 0xff, 0xff }, /* Pixel 180 */ { 0x00, 0xff, 0xcc, 0xff }, /* Pixel 181 */ { 0x00, 0xff, 0x99, 0xff }, /* Pixel 182 */ { 0x00, 0xff, 0x66, 0xff }, /* Pixel 183 */ { 0x00, 0xff, 0x33, 0xff }, /* Pixel 184 */ { 0x00, 0xff, 0x00, 0xff }, /* Pixel 185 */ { 0x00, 0xcc, 0xff, 0xff }, /* Pixel 186 */ { 0x00, 0xe9, 0xe9, 0xff }, /* Pixel 187 */ { 0x00, 0xe9, 0xaf, 0xff }, /* Pixel 188 */ { 0x00, 0xe9, 0x75, 0xff }, /* Pixel 189 */ { 0x00, 0xe9, 0x3a, 0xff }, /* Pixel 190 */ { 0x00, 0xe9, 0x00, 0xff }, /* Pixel 191 */ { 0x00, 0x99, 0xff, 0xff }, /* Pixel 192 */ { 0x00, 0xaf, 0xe9, 0xff }, /* Pixel 193 */ { 0x00, 0xd0, 0xd0, 0xff }, /* Pixel 194 */ { 0x00, 0xd0, 0x8b, 0xff }, /* Pixel 195 */ { 0x00, 0xd0, 0x45, 0xff }, /* Pixel 196 */ { 0x00, 0xd0, 0x00, 0xff }, /* Pixel 197 */ { 0x00, 0x66, 0xff, 0xff }, /* Pixel 198 */ { 0x00, 0x75, 0xe9, 0xff }, /* Pixel 199 */ { 0x00, 0x8b, 0xd0, 0xff }, /* Pixel 200 */ { 0x00, 0xb1, 0xb1, 0xff }, /* Pixel 201 */ { 0x00, 0xb1, 0x59, 0xff }, /* Pixel 202 */ { 0x00, 0xb1, 0x00, 0xff }, /* Pixel 203 */ { 0x00, 0x33, 0xff, 0xff }, /* Pixel 204 */ { 0x00, 0x3a, 0xe9, 0xff }, /* Pixel 205 */ { 0x00, 0x45, 0xd0, 0xff }, /* Pixel 206 */ { 0x00, 0x59, 0xb1, 0xff }, /* Pixel 207 */ { 0x00, 0x86, 0x86, 0xff }, /* Pixel 208 */ { 0x00, 0x86, 0x00, 0xff }, /* Pixel 209 */ { 0x00, 0x00, 0xff, 0xff }, /* Pixel 210 */ { 0x00, 0x00, 0xe9, 0xff }, /* Pixel 211 */ { 0x00, 0x00, 0xd0, 0xff }, /* Pixel 212 */ { 0x00, 0x00, 0xb1, 0xff }, /* Pixel 213 */ { 0x00, 0x00, 0x86, 0xff }, /* Pixel 214 */ { 0xf8, 0x00, 0x00, 0xff }, /* Pixel 215 */ { 0xf1, 0x00, 0x00, 0xff }, /* Pixel 216 */ { 0xe1, 0x00, 0x00, 0xff }, /* Pixel 217 */ { 0xd9, 0x00, 0x00, 0xff }, /* Pixel 218 */ { 0xc6, 0x00, 0x00, 0xff }, /* Pixel 219 */ { 0xbc, 0x00, 0x00, 0xff }, /* Pixel 220 */ { 0xa4, 0x00, 0x00, 0xff }, /* Pixel 221 */ { 0x96, 0x00, 0x00, 0xff }, /* Pixel 222 */ { 0x72, 0x00, 0x00, 0xff }, /* Pixel 223 */ { 0x56, 0x00, 0x00, 0xff }, /* Pixel 224 */ { 0x00, 0xf8, 0x00, 0xff }, /* Pixel 225 */ { 0x00, 0xf1, 0x00, 0xff }, /* Pixel 226 */ { 0x00, 0xe1, 0x00, 0xff }, /* Pixel 227 */ { 0x00, 0xd9, 0x00, 0xff }, /* Pixel 228 */ { 0x00, 0xc6, 0x00, 0xff }, /* Pixel 229 */ { 0x00, 0xbc, 0x00, 0xff }, /* Pixel 230 */ { 0x00, 0xa4, 0x00, 0xff }, /* Pixel 231 */ { 0x00, 0x96, 0x00, 0xff }, /* Pixel 232 */ { 0x00, 0x72, 0x00, 0xff }, /* Pixel 233 */ { 0x00, 0x56, 0x00, 0xff }, /* Pixel 234 */ { 0x00, 0x00, 0xf8, 0xff }, /* Pixel 235 */ { 0x00, 0x00, 0xf1, 0xff }, /* Pixel 236 */ { 0x00, 0x00, 0xe1, 0xff }, /* Pixel 237 */ { 0x00, 0x00, 0xd9, 0xff }, /* Pixel 238 */ { 0x00, 0x00, 0xc6, 0xff }, /* Pixel 239 */ { 0x00, 0x00, 0xbc, 0xff }, /* Pixel 240 */ { 0x00, 0x00, 0xa4, 0xff }, /* Pixel 241 */ { 0x00, 0x00, 0x96, 0xff }, /* Pixel 242 */ { 0x00, 0x00, 0x72, 0xff }, /* Pixel 243 */ { 0x00, 0x00, 0x56, 0xff }, /* Pixel 244 */ { 0xf8, 0xf8, 0xf8, 0xff }, /* Pixel 245 */ { 0xf1, 0xf1, 0xf1, 0xff }, /* Pixel 246 */ { 0xe1, 0xe1, 0xe1, 0xff }, /* Pixel 247 */ { 0xd9, 0xd9, 0xd9, 0xff }, /* Pixel 248 */ { 0xc6, 0xc6, 0xc6, 0xff }, /* Pixel 249 */ { 0xbc, 0xbc, 0xbc, 0xff }, /* Pixel 250 */ { 0xa4, 0xa4, 0xa4, 0xff }, /* Pixel 251 */ { 0x96, 0x96, 0x96, 0xff }, /* Pixel 252 */ { 0x72, 0x72, 0x72, 0xff }, /* Pixel 253 */ { 0x56, 0x56, 0x56, 0xff }, /* Pixel 254 */ { 0x00, 0x00, 0x00, 0xff }, /* Pixel 255 */ }, /* Gamma level 7 */ { { 0xff, 0xff, 0xff, 0xff }, /* Pixel 0 */ { 0xff, 0xff, 0xcc, 0xff }, /* Pixel 1 */ { 0xff, 0xff, 0x99, 0xff }, /* Pixel 2 */ { 0xff, 0xff, 0x66, 0xff }, /* Pixel 3 */ { 0xff, 0xff, 0x33, 0xff }, /* Pixel 4 */ { 0xff, 0xff, 0x00, 0xff }, /* Pixel 5 */ { 0xff, 0xcc, 0xff, 0xff }, /* Pixel 6 */ { 0xff, 0xcc, 0xcc, 0xff }, /* Pixel 7 */ { 0xff, 0xcc, 0x99, 0xff }, /* Pixel 8 */ { 0xff, 0xcc, 0x66, 0xff }, /* Pixel 9 */ { 0xff, 0xcc, 0x33, 0xff }, /* Pixel 10 */ { 0xff, 0xcc, 0x00, 0xff }, /* Pixel 11 */ { 0xff, 0x99, 0xff, 0xff }, /* Pixel 12 */ { 0xff, 0x99, 0xcc, 0xff }, /* Pixel 13 */ { 0xff, 0x99, 0x99, 0xff }, /* Pixel 14 */ { 0xff, 0x99, 0x66, 0xff }, /* Pixel 15 */ { 0xff, 0x99, 0x33, 0xff }, /* Pixel 16 */ { 0xff, 0x99, 0x00, 0xff }, /* Pixel 17 */ { 0xff, 0x66, 0xff, 0xff }, /* Pixel 18 */ { 0xff, 0x66, 0xcc, 0xff }, /* Pixel 19 */ { 0xff, 0x66, 0x99, 0xff }, /* Pixel 20 */ { 0xff, 0x66, 0x66, 0xff }, /* Pixel 21 */ { 0xff, 0x66, 0x33, 0xff }, /* Pixel 22 */ { 0xff, 0x66, 0x00, 0xff }, /* Pixel 23 */ { 0xff, 0x33, 0xff, 0xff }, /* Pixel 24 */ { 0xff, 0x33, 0xcc, 0xff }, /* Pixel 25 */ { 0xff, 0x33, 0x99, 0xff }, /* Pixel 26 */ { 0xff, 0x33, 0x66, 0xff }, /* Pixel 27 */ { 0xff, 0x33, 0x33, 0xff }, /* Pixel 28 */ { 0xff, 0x33, 0x00, 0xff }, /* Pixel 29 */ { 0xff, 0x00, 0xff, 0xff }, /* Pixel 30 */ { 0xff, 0x00, 0xcc, 0xff }, /* Pixel 31 */ { 0xff, 0x00, 0x99, 0xff }, /* Pixel 32 */ { 0xff, 0x00, 0x66, 0xff }, /* Pixel 33 */ { 0xff, 0x00, 0x33, 0xff }, /* Pixel 34 */ { 0xff, 0x00, 0x00, 0xff }, /* Pixel 35 */ { 0xcc, 0xff, 0xff, 0xff }, /* Pixel 36 */ { 0xcc, 0xff, 0xcc, 0xff }, /* Pixel 37 */ { 0xcc, 0xff, 0x99, 0xff }, /* Pixel 38 */ { 0xcc, 0xff, 0x66, 0xff }, /* Pixel 39 */ { 0xcc, 0xff, 0x33, 0xff }, /* Pixel 40 */ { 0xcc, 0xff, 0x00, 0xff }, /* Pixel 41 */ { 0xcc, 0xcc, 0xff, 0xff }, /* Pixel 42 */ { 0xeb, 0xeb, 0xeb, 0xff }, /* Pixel 43 */ { 0xeb, 0xeb, 0xb0, 0xff }, /* Pixel 44 */ { 0xeb, 0xeb, 0x76, 0xff }, /* Pixel 45 */ { 0xeb, 0xeb, 0x3b, 0xff }, /* Pixel 46 */ { 0xeb, 0xeb, 0x00, 0xff }, /* Pixel 47 */ { 0xcc, 0x99, 0xff, 0xff }, /* Pixel 48 */ { 0xeb, 0xb0, 0xeb, 0xff }, /* Pixel 49 */ { 0xeb, 0xb0, 0xb0, 0xff }, /* Pixel 50 */ { 0xeb, 0xb0, 0x76, 0xff }, /* Pixel 51 */ { 0xeb, 0xb0, 0x3b, 0xff }, /* Pixel 52 */ { 0xeb, 0xb0, 0x00, 0xff }, /* Pixel 53 */ { 0xcc, 0x66, 0xff, 0xff }, /* Pixel 54 */ { 0xeb, 0x76, 0xeb, 0xff }, /* Pixel 55 */ { 0xeb, 0x76, 0xb0, 0xff }, /* Pixel 56 */ { 0xeb, 0x76, 0x76, 0xff }, /* Pixel 57 */ { 0xeb, 0x76, 0x3b, 0xff }, /* Pixel 58 */ { 0xeb, 0x76, 0x00, 0xff }, /* Pixel 59 */ { 0xcc, 0x33, 0xff, 0xff }, /* Pixel 60 */ { 0xeb, 0x3b, 0xeb, 0xff }, /* Pixel 61 */ { 0xeb, 0x3b, 0xb0, 0xff }, /* Pixel 62 */ { 0xeb, 0x3b, 0x75, 0xff }, /* Pixel 63 */ { 0xeb, 0x3b, 0x3b, 0xff }, /* Pixel 64 */ { 0xeb, 0x3b, 0x00, 0xff }, /* Pixel 65 */ { 0xcc, 0x00, 0xff, 0xff }, /* Pixel 66 */ { 0xeb, 0x00, 0xeb, 0xff }, /* Pixel 67 */ { 0xeb, 0x00, 0xb0, 0xff }, /* Pixel 68 */ { 0xeb, 0x00, 0x76, 0xff }, /* Pixel 69 */ { 0xeb, 0x00, 0x3b, 0xff }, /* Pixel 70 */ { 0xeb, 0x00, 0x00, 0xff }, /* Pixel 71 */ { 0x99, 0xff, 0xff, 0xff }, /* Pixel 72 */ { 0x99, 0xff, 0xcc, 0xff }, /* Pixel 73 */ { 0x99, 0xff, 0x99, 0xff }, /* Pixel 74 */ { 0x99, 0xff, 0x66, 0xff }, /* Pixel 75 */ { 0x99, 0xff, 0x33, 0xff }, /* Pixel 76 */ { 0x99, 0xff, 0x00, 0xff }, /* Pixel 77 */ { 0x99, 0xcc, 0xff, 0xff }, /* Pixel 78 */ { 0xb0, 0xeb, 0xeb, 0xff }, /* Pixel 79 */ { 0xb0, 0xeb, 0xb0, 0xff }, /* Pixel 80 */ { 0xb0, 0xeb, 0x76, 0xff }, /* Pixel 81 */ { 0xb0, 0xeb, 0x3b, 0xff }, /* Pixel 82 */ { 0xb0, 0xeb, 0x00, 0xff }, /* Pixel 83 */ { 0x99, 0x99, 0xff, 0xff }, /* Pixel 84 */ { 0xb0, 0xb0, 0xeb, 0xff }, /* Pixel 85 */ { 0xd4, 0xd4, 0xd4, 0xff }, /* Pixel 86 */ { 0xd4, 0xd4, 0x8d, 0xff }, /* Pixel 87 */ { 0xd4, 0xd4, 0x47, 0xff }, /* Pixel 88 */ { 0xd4, 0xd4, 0x00, 0xff }, /* Pixel 89 */ { 0x99, 0x66, 0xff, 0xff }, /* Pixel 90 */ { 0xb0, 0x76, 0xeb, 0xff }, /* Pixel 91 */ { 0xd4, 0x8d, 0xd4, 0xff }, /* Pixel 92 */ { 0xd4, 0x8d, 0x8d, 0xff }, /* Pixel 93 */ { 0xd4, 0x8d, 0x47, 0xff }, /* Pixel 94 */ { 0xd4, 0x8d, 0x00, 0xff }, /* Pixel 95 */ { 0x99, 0x33, 0xff, 0xff }, /* Pixel 96 */ { 0xb0, 0x3b, 0xeb, 0xff }, /* Pixel 97 */ { 0xd4, 0x47, 0xd4, 0xff }, /* Pixel 98 */ { 0xd4, 0x47, 0x8d, 0xff }, /* Pixel 99 */ { 0xd4, 0x47, 0x47, 0xff }, /* Pixel 100 */ { 0xd4, 0x47, 0x00, 0xff }, /* Pixel 101 */ { 0x99, 0x00, 0xff, 0xff }, /* Pixel 102 */ { 0xb0, 0x00, 0xeb, 0xff }, /* Pixel 103 */ { 0xd4, 0x00, 0xd4, 0xff }, /* Pixel 104 */ { 0xd4, 0x00, 0x8d, 0xff }, /* Pixel 105 */ { 0xd4, 0x00, 0x47, 0xff }, /* Pixel 106 */ { 0xd4, 0x00, 0x00, 0xff }, /* Pixel 107 */ { 0x66, 0xff, 0xff, 0xff }, /* Pixel 108 */ { 0x66, 0xff, 0xcc, 0xff }, /* Pixel 109 */ { 0x66, 0xff, 0x99, 0xff }, /* Pixel 110 */ { 0x66, 0xff, 0x66, 0xff }, /* Pixel 111 */ { 0x66, 0xff, 0x33, 0xff }, /* Pixel 112 */ { 0x66, 0xff, 0x00, 0xff }, /* Pixel 113 */ { 0x66, 0xcc, 0xff, 0xff }, /* Pixel 114 */ { 0x76, 0xeb, 0xeb, 0xff }, /* Pixel 115 */ { 0x76, 0xeb, 0xb0, 0xff }, /* Pixel 116 */ { 0x76, 0xeb, 0x76, 0xff }, /* Pixel 117 */ { 0x75, 0xeb, 0x3b, 0xff }, /* Pixel 118 */ { 0x76, 0xeb, 0x00, 0xff }, /* Pixel 119 */ { 0x66, 0x99, 0xff, 0xff }, /* Pixel 120 */ { 0x76, 0xb0, 0xeb, 0xff }, /* Pixel 121 */ { 0x8d, 0xd4, 0xd4, 0xff }, /* Pixel 122 */ { 0x8d, 0xd4, 0x8d, 0xff }, /* Pixel 123 */ { 0x8d, 0xd4, 0x47, 0xff }, /* Pixel 124 */ { 0x8d, 0xd4, 0x00, 0xff }, /* Pixel 125 */ { 0x66, 0x66, 0xff, 0xff }, /* Pixel 126 */ { 0x76, 0x76, 0xeb, 0xff }, /* Pixel 127 */ { 0x8d, 0x8d, 0xd4, 0xff }, /* Pixel 128 */ { 0xb7, 0xb7, 0xb7, 0xff }, /* Pixel 129 */ { 0xb7, 0xb7, 0x5c, 0xff }, /* Pixel 130 */ { 0xb7, 0xb7, 0x00, 0xff }, /* Pixel 131 */ { 0x66, 0x33, 0xff, 0xff }, /* Pixel 132 */ { 0x75, 0x3b, 0xeb, 0xff }, /* Pixel 133 */ { 0x8d, 0x47, 0xd4, 0xff }, /* Pixel 134 */ { 0xb7, 0x5c, 0xb7, 0xff }, /* Pixel 135 */ { 0xb7, 0x5c, 0x5c, 0xff }, /* Pixel 136 */ { 0xb7, 0x5c, 0x00, 0xff }, /* Pixel 137 */ { 0x66, 0x00, 0xff, 0xff }, /* Pixel 138 */ { 0x76, 0x00, 0xeb, 0xff }, /* Pixel 139 */ { 0x8d, 0x00, 0xd4, 0xff }, /* Pixel 140 */ { 0xb7, 0x00, 0xb7, 0xff }, /* Pixel 141 */ { 0xb7, 0x00, 0x5c, 0xff }, /* Pixel 142 */ { 0xb7, 0x00, 0x00, 0xff }, /* Pixel 143 */ { 0x33, 0xff, 0xff, 0xff }, /* Pixel 144 */ { 0x33, 0xff, 0xcc, 0xff }, /* Pixel 145 */ { 0x33, 0xff, 0x99, 0xff }, /* Pixel 146 */ { 0x33, 0xff, 0x66, 0xff }, /* Pixel 147 */ { 0x33, 0xff, 0x33, 0xff }, /* Pixel 148 */ { 0x33, 0xff, 0x00, 0xff }, /* Pixel 149 */ { 0x33, 0xcc, 0xff, 0xff }, /* Pixel 150 */ { 0x3b, 0xeb, 0xeb, 0xff }, /* Pixel 151 */ { 0x3b, 0xeb, 0xb0, 0xff }, /* Pixel 152 */ { 0x3b, 0xeb, 0x76, 0xff }, /* Pixel 153 */ { 0x3b, 0xeb, 0x3b, 0xff }, /* Pixel 154 */ { 0x3b, 0xeb, 0x00, 0xff }, /* Pixel 155 */ { 0x33, 0x99, 0xff, 0xff }, /* Pixel 156 */ { 0x3b, 0xb0, 0xeb, 0xff }, /* Pixel 157 */ { 0x47, 0xd4, 0xd4, 0xff }, /* Pixel 158 */ { 0x47, 0xd4, 0x8d, 0xff }, /* Pixel 159 */ { 0x47, 0xd4, 0x47, 0xff }, /* Pixel 160 */ { 0x47, 0xd4, 0x00, 0xff }, /* Pixel 161 */ { 0x33, 0x66, 0xff, 0xff }, /* Pixel 162 */ { 0x3b, 0x76, 0xeb, 0xff }, /* Pixel 163 */ { 0x47, 0x8d, 0xd4, 0xff }, /* Pixel 164 */ { 0x5c, 0xb7, 0xb7, 0xff }, /* Pixel 165 */ { 0x5c, 0xb7, 0x5c, 0xff }, /* Pixel 166 */ { 0x5c, 0xb7, 0x00, 0xff }, /* Pixel 167 */ { 0x33, 0x33, 0xff, 0xff }, /* Pixel 168 */ { 0x3b, 0x3b, 0xeb, 0xff }, /* Pixel 169 */ { 0x47, 0x47, 0xd4, 0xff }, /* Pixel 170 */ { 0x5c, 0x5c, 0xb7, 0xff }, /* Pixel 171 */ { 0x8e, 0x8e, 0x8e, 0xff }, /* Pixel 172 */ { 0x8e, 0x8e, 0x00, 0xff }, /* Pixel 173 */ { 0x33, 0x00, 0xff, 0xff }, /* Pixel 174 */ { 0x3b, 0x00, 0xeb, 0xff }, /* Pixel 175 */ { 0x47, 0x00, 0xd4, 0xff }, /* Pixel 176 */ { 0x5c, 0x00, 0xb7, 0xff }, /* Pixel 177 */ { 0x8e, 0x00, 0x8e, 0xff }, /* Pixel 178 */ { 0x8e, 0x00, 0x00, 0xff }, /* Pixel 179 */ { 0x00, 0xff, 0xff, 0xff }, /* Pixel 180 */ { 0x00, 0xff, 0xcc, 0xff }, /* Pixel 181 */ { 0x00, 0xff, 0x99, 0xff }, /* Pixel 182 */ { 0x00, 0xff, 0x66, 0xff }, /* Pixel 183 */ { 0x00, 0xff, 0x33, 0xff }, /* Pixel 184 */ { 0x00, 0xff, 0x00, 0xff }, /* Pixel 185 */ { 0x00, 0xcc, 0xff, 0xff }, /* Pixel 186 */ { 0x00, 0xeb, 0xeb, 0xff }, /* Pixel 187 */ { 0x00, 0xeb, 0xb0, 0xff }, /* Pixel 188 */ { 0x00, 0xeb, 0x76, 0xff }, /* Pixel 189 */ { 0x00, 0xeb, 0x3b, 0xff }, /* Pixel 190 */ { 0x00, 0xeb, 0x00, 0xff }, /* Pixel 191 */ { 0x00, 0x99, 0xff, 0xff }, /* Pixel 192 */ { 0x00, 0xb0, 0xeb, 0xff }, /* Pixel 193 */ { 0x00, 0xd4, 0xd4, 0xff }, /* Pixel 194 */ { 0x00, 0xd4, 0x8d, 0xff }, /* Pixel 195 */ { 0x00, 0xd4, 0x47, 0xff }, /* Pixel 196 */ { 0x00, 0xd4, 0x00, 0xff }, /* Pixel 197 */ { 0x00, 0x66, 0xff, 0xff }, /* Pixel 198 */ { 0x00, 0x76, 0xeb, 0xff }, /* Pixel 199 */ { 0x00, 0x8d, 0xd4, 0xff }, /* Pixel 200 */ { 0x00, 0xb7, 0xb7, 0xff }, /* Pixel 201 */ { 0x00, 0xb7, 0x5c, 0xff }, /* Pixel 202 */ { 0x00, 0xb7, 0x00, 0xff }, /* Pixel 203 */ { 0x00, 0x33, 0xff, 0xff }, /* Pixel 204 */ { 0x00, 0x3b, 0xeb, 0xff }, /* Pixel 205 */ { 0x00, 0x47, 0xd4, 0xff }, /* Pixel 206 */ { 0x00, 0x5c, 0xb7, 0xff }, /* Pixel 207 */ { 0x00, 0x8e, 0x8e, 0xff }, /* Pixel 208 */ { 0x00, 0x8e, 0x00, 0xff }, /* Pixel 209 */ { 0x00, 0x00, 0xff, 0xff }, /* Pixel 210 */ { 0x00, 0x00, 0xeb, 0xff }, /* Pixel 211 */ { 0x00, 0x00, 0xd4, 0xff }, /* Pixel 212 */ { 0x00, 0x00, 0xb7, 0xff }, /* Pixel 213 */ { 0x00, 0x00, 0x8e, 0xff }, /* Pixel 214 */ { 0xf9, 0x00, 0x00, 0xff }, /* Pixel 215 */ { 0xf2, 0x00, 0x00, 0xff }, /* Pixel 216 */ { 0xe4, 0x00, 0x00, 0xff }, /* Pixel 217 */ { 0xdc, 0x00, 0x00, 0xff }, /* Pixel 218 */ { 0xcb, 0x00, 0x00, 0xff }, /* Pixel 219 */ { 0xc1, 0x00, 0x00, 0xff }, /* Pixel 220 */ { 0xab, 0x00, 0x00, 0xff }, /* Pixel 221 */ { 0x9e, 0x00, 0x00, 0xff }, /* Pixel 222 */ { 0x7b, 0x00, 0x00, 0xff }, /* Pixel 223 */ { 0x5f, 0x00, 0x00, 0xff }, /* Pixel 224 */ { 0x00, 0xf9, 0x00, 0xff }, /* Pixel 225 */ { 0x00, 0xf2, 0x00, 0xff }, /* Pixel 226 */ { 0x00, 0xe4, 0x00, 0xff }, /* Pixel 227 */ { 0x00, 0xdc, 0x00, 0xff }, /* Pixel 228 */ { 0x00, 0xcb, 0x00, 0xff }, /* Pixel 229 */ { 0x00, 0xc1, 0x00, 0xff }, /* Pixel 230 */ { 0x00, 0xab, 0x00, 0xff }, /* Pixel 231 */ { 0x00, 0x9e, 0x00, 0xff }, /* Pixel 232 */ { 0x00, 0x7b, 0x00, 0xff }, /* Pixel 233 */ { 0x00, 0x5f, 0x00, 0xff }, /* Pixel 234 */ { 0x00, 0x00, 0xf9, 0xff }, /* Pixel 235 */ { 0x00, 0x00, 0xf2, 0xff }, /* Pixel 236 */ { 0x00, 0x00, 0xe4, 0xff }, /* Pixel 237 */ { 0x00, 0x00, 0xdc, 0xff }, /* Pixel 238 */ { 0x00, 0x00, 0xcb, 0xff }, /* Pixel 239 */ { 0x00, 0x00, 0xc1, 0xff }, /* Pixel 240 */ { 0x00, 0x00, 0xab, 0xff }, /* Pixel 241 */ { 0x00, 0x00, 0x9e, 0xff }, /* Pixel 242 */ { 0x00, 0x00, 0x7b, 0xff }, /* Pixel 243 */ { 0x00, 0x00, 0x5f, 0xff }, /* Pixel 244 */ { 0xf9, 0xf9, 0xf9, 0xff }, /* Pixel 245 */ { 0xf2, 0xf2, 0xf2, 0xff }, /* Pixel 246 */ { 0xe4, 0xe4, 0xe4, 0xff }, /* Pixel 247 */ { 0xdc, 0xdc, 0xdc, 0xff }, /* Pixel 248 */ { 0xcb, 0xcb, 0xcb, 0xff }, /* Pixel 249 */ { 0xc1, 0xc1, 0xc1, 0xff }, /* Pixel 250 */ { 0xab, 0xab, 0xab, 0xff }, /* Pixel 251 */ { 0x9e, 0x9e, 0x9e, 0xff }, /* Pixel 252 */ { 0x7b, 0x7b, 0x7b, 0xff }, /* Pixel 253 */ { 0x5f, 0x5f, 0x5f, 0xff }, /* Pixel 254 */ { 0x00, 0x00, 0x00, 0xff }, /* Pixel 255 */ }, /* Gamma level 8 */ { { 0xff, 0xff, 0xff, 0xff }, /* Pixel 0 */ { 0xff, 0xff, 0xcc, 0xff }, /* Pixel 1 */ { 0xff, 0xff, 0x99, 0xff }, /* Pixel 2 */ { 0xff, 0xff, 0x66, 0xff }, /* Pixel 3 */ { 0xff, 0xff, 0x33, 0xff }, /* Pixel 4 */ { 0xff, 0xff, 0x00, 0xff }, /* Pixel 5 */ { 0xff, 0xcc, 0xff, 0xff }, /* Pixel 6 */ { 0xff, 0xcc, 0xcc, 0xff }, /* Pixel 7 */ { 0xff, 0xcc, 0x99, 0xff }, /* Pixel 8 */ { 0xff, 0xcc, 0x66, 0xff }, /* Pixel 9 */ { 0xff, 0xcc, 0x33, 0xff }, /* Pixel 10 */ { 0xff, 0xcc, 0x00, 0xff }, /* Pixel 11 */ { 0xff, 0x99, 0xff, 0xff }, /* Pixel 12 */ { 0xff, 0x99, 0xcc, 0xff }, /* Pixel 13 */ { 0xff, 0x99, 0x99, 0xff }, /* Pixel 14 */ { 0xff, 0x99, 0x66, 0xff }, /* Pixel 15 */ { 0xff, 0x99, 0x33, 0xff }, /* Pixel 16 */ { 0xff, 0x99, 0x00, 0xff }, /* Pixel 17 */ { 0xff, 0x66, 0xff, 0xff }, /* Pixel 18 */ { 0xff, 0x66, 0xcc, 0xff }, /* Pixel 19 */ { 0xff, 0x66, 0x99, 0xff }, /* Pixel 20 */ { 0xff, 0x66, 0x66, 0xff }, /* Pixel 21 */ { 0xff, 0x66, 0x33, 0xff }, /* Pixel 22 */ { 0xff, 0x66, 0x00, 0xff }, /* Pixel 23 */ { 0xff, 0x33, 0xff, 0xff }, /* Pixel 24 */ { 0xff, 0x33, 0xcc, 0xff }, /* Pixel 25 */ { 0xff, 0x33, 0x99, 0xff }, /* Pixel 26 */ { 0xff, 0x33, 0x66, 0xff }, /* Pixel 27 */ { 0xff, 0x33, 0x33, 0xff }, /* Pixel 28 */ { 0xff, 0x33, 0x00, 0xff }, /* Pixel 29 */ { 0xff, 0x00, 0xff, 0xff }, /* Pixel 30 */ { 0xff, 0x00, 0xcc, 0xff }, /* Pixel 31 */ { 0xff, 0x00, 0x99, 0xff }, /* Pixel 32 */ { 0xff, 0x00, 0x66, 0xff }, /* Pixel 33 */ { 0xff, 0x00, 0x33, 0xff }, /* Pixel 34 */ { 0xff, 0x00, 0x00, 0xff }, /* Pixel 35 */ { 0xcc, 0xff, 0xff, 0xff }, /* Pixel 36 */ { 0xcc, 0xff, 0xcc, 0xff }, /* Pixel 37 */ { 0xcc, 0xff, 0x99, 0xff }, /* Pixel 38 */ { 0xcc, 0xff, 0x66, 0xff }, /* Pixel 39 */ { 0xcc, 0xff, 0x33, 0xff }, /* Pixel 40 */ { 0xcc, 0xff, 0x00, 0xff }, /* Pixel 41 */ { 0xcc, 0xcc, 0xff, 0xff }, /* Pixel 42 */ { 0xed, 0xed, 0xed, 0xff }, /* Pixel 43 */ { 0xed, 0xed, 0xb2, 0xff }, /* Pixel 44 */ { 0xed, 0xed, 0x77, 0xff }, /* Pixel 45 */ { 0xed, 0xed, 0x3b, 0xff }, /* Pixel 46 */ { 0xed, 0xed, 0x00, 0xff }, /* Pixel 47 */ { 0xcc, 0x99, 0xff, 0xff }, /* Pixel 48 */ { 0xed, 0xb2, 0xed, 0xff }, /* Pixel 49 */ { 0xed, 0xb2, 0xb2, 0xff }, /* Pixel 50 */ { 0xed, 0xb2, 0x77, 0xff }, /* Pixel 51 */ { 0xed, 0xb2, 0x3b, 0xff }, /* Pixel 52 */ { 0xed, 0xb2, 0x00, 0xff }, /* Pixel 53 */ { 0xcc, 0x66, 0xff, 0xff }, /* Pixel 54 */ { 0xed, 0x77, 0xed, 0xff }, /* Pixel 55 */ { 0xed, 0x77, 0xb2, 0xff }, /* Pixel 56 */ { 0xed, 0x77, 0x77, 0xff }, /* Pixel 57 */ { 0xed, 0x77, 0x3b, 0xff }, /* Pixel 58 */ { 0xed, 0x77, 0x00, 0xff }, /* Pixel 59 */ { 0xcc, 0x33, 0xff, 0xff }, /* Pixel 60 */ { 0xed, 0x3b, 0xed, 0xff }, /* Pixel 61 */ { 0xed, 0x3b, 0xb2, 0xff }, /* Pixel 62 */ { 0xed, 0x3b, 0x76, 0xff }, /* Pixel 63 */ { 0xed, 0x3b, 0x3b, 0xff }, /* Pixel 64 */ { 0xed, 0x3b, 0x00, 0xff }, /* Pixel 65 */ { 0xcc, 0x00, 0xff, 0xff }, /* Pixel 66 */ { 0xed, 0x00, 0xed, 0xff }, /* Pixel 67 */ { 0xed, 0x00, 0xb2, 0xff }, /* Pixel 68 */ { 0xed, 0x00, 0x77, 0xff }, /* Pixel 69 */ { 0xed, 0x00, 0x3b, 0xff }, /* Pixel 70 */ { 0xed, 0x00, 0x00, 0xff }, /* Pixel 71 */ { 0x99, 0xff, 0xff, 0xff }, /* Pixel 72 */ { 0x99, 0xff, 0xcc, 0xff }, /* Pixel 73 */ { 0x99, 0xff, 0x99, 0xff }, /* Pixel 74 */ { 0x99, 0xff, 0x66, 0xff }, /* Pixel 75 */ { 0x99, 0xff, 0x33, 0xff }, /* Pixel 76 */ { 0x99, 0xff, 0x00, 0xff }, /* Pixel 77 */ { 0x99, 0xcc, 0xff, 0xff }, /* Pixel 78 */ { 0xb2, 0xed, 0xed, 0xff }, /* Pixel 79 */ { 0xb2, 0xed, 0xb2, 0xff }, /* Pixel 80 */ { 0xb2, 0xed, 0x77, 0xff }, /* Pixel 81 */ { 0xb2, 0xed, 0x3b, 0xff }, /* Pixel 82 */ { 0xb2, 0xed, 0x00, 0xff }, /* Pixel 83 */ { 0x99, 0x99, 0xff, 0xff }, /* Pixel 84 */ { 0xb2, 0xb2, 0xed, 0xff }, /* Pixel 85 */ { 0xd7, 0xd7, 0xd7, 0xff }, /* Pixel 86 */ { 0xd7, 0xd7, 0x8f, 0xff }, /* Pixel 87 */ { 0xd7, 0xd7, 0x48, 0xff }, /* Pixel 88 */ { 0xd7, 0xd7, 0x00, 0xff }, /* Pixel 89 */ { 0x99, 0x66, 0xff, 0xff }, /* Pixel 90 */ { 0xb2, 0x77, 0xed, 0xff }, /* Pixel 91 */ { 0xd7, 0x8f, 0xd7, 0xff }, /* Pixel 92 */ { 0xd7, 0x8f, 0x8f, 0xff }, /* Pixel 93 */ { 0xd7, 0x8f, 0x48, 0xff }, /* Pixel 94 */ { 0xd7, 0x8f, 0x00, 0xff }, /* Pixel 95 */ { 0x99, 0x33, 0xff, 0xff }, /* Pixel 96 */ { 0xb2, 0x3b, 0xed, 0xff }, /* Pixel 97 */ { 0xd7, 0x48, 0xd7, 0xff }, /* Pixel 98 */ { 0xd7, 0x48, 0x8f, 0xff }, /* Pixel 99 */ { 0xd7, 0x48, 0x48, 0xff }, /* Pixel 100 */ { 0xd7, 0x48, 0x00, 0xff }, /* Pixel 101 */ { 0x99, 0x00, 0xff, 0xff }, /* Pixel 102 */ { 0xb2, 0x00, 0xed, 0xff }, /* Pixel 103 */ { 0xd7, 0x00, 0xd7, 0xff }, /* Pixel 104 */ { 0xd7, 0x00, 0x8f, 0xff }, /* Pixel 105 */ { 0xd7, 0x00, 0x48, 0xff }, /* Pixel 106 */ { 0xd7, 0x00, 0x00, 0xff }, /* Pixel 107 */ { 0x66, 0xff, 0xff, 0xff }, /* Pixel 108 */ { 0x66, 0xff, 0xcc, 0xff }, /* Pixel 109 */ { 0x66, 0xff, 0x99, 0xff }, /* Pixel 110 */ { 0x66, 0xff, 0x66, 0xff }, /* Pixel 111 */ { 0x66, 0xff, 0x33, 0xff }, /* Pixel 112 */ { 0x66, 0xff, 0x00, 0xff }, /* Pixel 113 */ { 0x66, 0xcc, 0xff, 0xff }, /* Pixel 114 */ { 0x77, 0xed, 0xed, 0xff }, /* Pixel 115 */ { 0x77, 0xed, 0xb2, 0xff }, /* Pixel 116 */ { 0x77, 0xed, 0x77, 0xff }, /* Pixel 117 */ { 0x76, 0xed, 0x3b, 0xff }, /* Pixel 118 */ { 0x77, 0xed, 0x00, 0xff }, /* Pixel 119 */ { 0x66, 0x99, 0xff, 0xff }, /* Pixel 120 */ { 0x77, 0xb2, 0xed, 0xff }, /* Pixel 121 */ { 0x8f, 0xd7, 0xd7, 0xff }, /* Pixel 122 */ { 0x8f, 0xd7, 0x8f, 0xff }, /* Pixel 123 */ { 0x8f, 0xd7, 0x48, 0xff }, /* Pixel 124 */ { 0x8f, 0xd7, 0x00, 0xff }, /* Pixel 125 */ { 0x66, 0x66, 0xff, 0xff }, /* Pixel 126 */ { 0x77, 0x77, 0xed, 0xff }, /* Pixel 127 */ { 0x8f, 0x8f, 0xd7, 0xff }, /* Pixel 128 */ { 0xbc, 0xbc, 0xbc, 0xff }, /* Pixel 129 */ { 0xbc, 0xbc, 0x5e, 0xff }, /* Pixel 130 */ { 0xbc, 0xbc, 0x00, 0xff }, /* Pixel 131 */ { 0x66, 0x33, 0xff, 0xff }, /* Pixel 132 */ { 0x76, 0x3b, 0xed, 0xff }, /* Pixel 133 */ { 0x8f, 0x48, 0xd7, 0xff }, /* Pixel 134 */ { 0xbc, 0x5e, 0xbc, 0xff }, /* Pixel 135 */ { 0xbc, 0x5e, 0x5e, 0xff }, /* Pixel 136 */ { 0xbc, 0x5e, 0x00, 0xff }, /* Pixel 137 */ { 0x66, 0x00, 0xff, 0xff }, /* Pixel 138 */ { 0x77, 0x00, 0xed, 0xff }, /* Pixel 139 */ { 0x8f, 0x00, 0xd7, 0xff }, /* Pixel 140 */ { 0xbc, 0x00, 0xbc, 0xff }, /* Pixel 141 */ { 0xbc, 0x00, 0x5e, 0xff }, /* Pixel 142 */ { 0xbc, 0x00, 0x00, 0xff }, /* Pixel 143 */ { 0x33, 0xff, 0xff, 0xff }, /* Pixel 144 */ { 0x33, 0xff, 0xcc, 0xff }, /* Pixel 145 */ { 0x33, 0xff, 0x99, 0xff }, /* Pixel 146 */ { 0x33, 0xff, 0x66, 0xff }, /* Pixel 147 */ { 0x33, 0xff, 0x33, 0xff }, /* Pixel 148 */ { 0x33, 0xff, 0x00, 0xff }, /* Pixel 149 */ { 0x33, 0xcc, 0xff, 0xff }, /* Pixel 150 */ { 0x3b, 0xed, 0xed, 0xff }, /* Pixel 151 */ { 0x3b, 0xed, 0xb2, 0xff }, /* Pixel 152 */ { 0x3b, 0xed, 0x77, 0xff }, /* Pixel 153 */ { 0x3b, 0xed, 0x3b, 0xff }, /* Pixel 154 */ { 0x3b, 0xed, 0x00, 0xff }, /* Pixel 155 */ { 0x33, 0x99, 0xff, 0xff }, /* Pixel 156 */ { 0x3b, 0xb2, 0xed, 0xff }, /* Pixel 157 */ { 0x48, 0xd7, 0xd7, 0xff }, /* Pixel 158 */ { 0x48, 0xd7, 0x8f, 0xff }, /* Pixel 159 */ { 0x48, 0xd7, 0x48, 0xff }, /* Pixel 160 */ { 0x48, 0xd7, 0x00, 0xff }, /* Pixel 161 */ { 0x33, 0x66, 0xff, 0xff }, /* Pixel 162 */ { 0x3b, 0x77, 0xed, 0xff }, /* Pixel 163 */ { 0x48, 0x8f, 0xd7, 0xff }, /* Pixel 164 */ { 0x5e, 0xbc, 0xbc, 0xff }, /* Pixel 165 */ { 0x5e, 0xbc, 0x5e, 0xff }, /* Pixel 166 */ { 0x5e, 0xbc, 0x00, 0xff }, /* Pixel 167 */ { 0x33, 0x33, 0xff, 0xff }, /* Pixel 168 */ { 0x3b, 0x3b, 0xed, 0xff }, /* Pixel 169 */ { 0x48, 0x48, 0xd7, 0xff }, /* Pixel 170 */ { 0x5e, 0x5e, 0xbc, 0xff }, /* Pixel 171 */ { 0x95, 0x95, 0x95, 0xff }, /* Pixel 172 */ { 0x95, 0x95, 0x00, 0xff }, /* Pixel 173 */ { 0x33, 0x00, 0xff, 0xff }, /* Pixel 174 */ { 0x3b, 0x00, 0xed, 0xff }, /* Pixel 175 */ { 0x48, 0x00, 0xd7, 0xff }, /* Pixel 176 */ { 0x5e, 0x00, 0xbc, 0xff }, /* Pixel 177 */ { 0x95, 0x00, 0x95, 0xff }, /* Pixel 178 */ { 0x95, 0x00, 0x00, 0xff }, /* Pixel 179 */ { 0x00, 0xff, 0xff, 0xff }, /* Pixel 180 */ { 0x00, 0xff, 0xcc, 0xff }, /* Pixel 181 */ { 0x00, 0xff, 0x99, 0xff }, /* Pixel 182 */ { 0x00, 0xff, 0x66, 0xff }, /* Pixel 183 */ { 0x00, 0xff, 0x33, 0xff }, /* Pixel 184 */ { 0x00, 0xff, 0x00, 0xff }, /* Pixel 185 */ { 0x00, 0xcc, 0xff, 0xff }, /* Pixel 186 */ { 0x00, 0xed, 0xed, 0xff }, /* Pixel 187 */ { 0x00, 0xed, 0xb2, 0xff }, /* Pixel 188 */ { 0x00, 0xed, 0x77, 0xff }, /* Pixel 189 */ { 0x00, 0xed, 0x3b, 0xff }, /* Pixel 190 */ { 0x00, 0xed, 0x00, 0xff }, /* Pixel 191 */ { 0x00, 0x99, 0xff, 0xff }, /* Pixel 192 */ { 0x00, 0xb2, 0xed, 0xff }, /* Pixel 193 */ { 0x00, 0xd7, 0xd7, 0xff }, /* Pixel 194 */ { 0x00, 0xd7, 0x8f, 0xff }, /* Pixel 195 */ { 0x00, 0xd7, 0x48, 0xff }, /* Pixel 196 */ { 0x00, 0xd7, 0x00, 0xff }, /* Pixel 197 */ { 0x00, 0x66, 0xff, 0xff }, /* Pixel 198 */ { 0x00, 0x77, 0xed, 0xff }, /* Pixel 199 */ { 0x00, 0x8f, 0xd7, 0xff }, /* Pixel 200 */ { 0x00, 0xbc, 0xbc, 0xff }, /* Pixel 201 */ { 0x00, 0xbc, 0x5e, 0xff }, /* Pixel 202 */ { 0x00, 0xbc, 0x00, 0xff }, /* Pixel 203 */ { 0x00, 0x33, 0xff, 0xff }, /* Pixel 204 */ { 0x00, 0x3b, 0xed, 0xff }, /* Pixel 205 */ { 0x00, 0x48, 0xd7, 0xff }, /* Pixel 206 */ { 0x00, 0x5e, 0xbc, 0xff }, /* Pixel 207 */ { 0x00, 0x95, 0x95, 0xff }, /* Pixel 208 */ { 0x00, 0x95, 0x00, 0xff }, /* Pixel 209 */ { 0x00, 0x00, 0xff, 0xff }, /* Pixel 210 */ { 0x00, 0x00, 0xed, 0xff }, /* Pixel 211 */ { 0x00, 0x00, 0xd7, 0xff }, /* Pixel 212 */ { 0x00, 0x00, 0xbc, 0xff }, /* Pixel 213 */ { 0x00, 0x00, 0x95, 0xff }, /* Pixel 214 */ { 0xf9, 0x00, 0x00, 0xff }, /* Pixel 215 */ { 0xf3, 0x00, 0x00, 0xff }, /* Pixel 216 */ { 0xe6, 0x00, 0x00, 0xff }, /* Pixel 217 */ { 0xdf, 0x00, 0x00, 0xff }, /* Pixel 218 */ { 0xcf, 0x00, 0x00, 0xff }, /* Pixel 219 */ { 0xc6, 0x00, 0x00, 0xff }, /* Pixel 220 */ { 0xb1, 0x00, 0x00, 0xff }, /* Pixel 221 */ { 0xa4, 0x00, 0x00, 0xff }, /* Pixel 222 */ { 0x82, 0x00, 0x00, 0xff }, /* Pixel 223 */ { 0x67, 0x00, 0x00, 0xff }, /* Pixel 224 */ { 0x00, 0xf9, 0x00, 0xff }, /* Pixel 225 */ { 0x00, 0xf3, 0x00, 0xff }, /* Pixel 226 */ { 0x00, 0xe6, 0x00, 0xff }, /* Pixel 227 */ { 0x00, 0xdf, 0x00, 0xff }, /* Pixel 228 */ { 0x00, 0xcf, 0x00, 0xff }, /* Pixel 229 */ { 0x00, 0xc6, 0x00, 0xff }, /* Pixel 230 */ { 0x00, 0xb1, 0x00, 0xff }, /* Pixel 231 */ { 0x00, 0xa4, 0x00, 0xff }, /* Pixel 232 */ { 0x00, 0x82, 0x00, 0xff }, /* Pixel 233 */ { 0x00, 0x67, 0x00, 0xff }, /* Pixel 234 */ { 0x00, 0x00, 0xf9, 0xff }, /* Pixel 235 */ { 0x00, 0x00, 0xf3, 0xff }, /* Pixel 236 */ { 0x00, 0x00, 0xe6, 0xff }, /* Pixel 237 */ { 0x00, 0x00, 0xdf, 0xff }, /* Pixel 238 */ { 0x00, 0x00, 0xcf, 0xff }, /* Pixel 239 */ { 0x00, 0x00, 0xc6, 0xff }, /* Pixel 240 */ { 0x00, 0x00, 0xb1, 0xff }, /* Pixel 241 */ { 0x00, 0x00, 0xa4, 0xff }, /* Pixel 242 */ { 0x00, 0x00, 0x82, 0xff }, /* Pixel 243 */ { 0x00, 0x00, 0x67, 0xff }, /* Pixel 244 */ { 0xf9, 0xf9, 0xf9, 0xff }, /* Pixel 245 */ { 0xf3, 0xf3, 0xf3, 0xff }, /* Pixel 246 */ { 0xe6, 0xe6, 0xe6, 0xff }, /* Pixel 247 */ { 0xdf, 0xdf, 0xdf, 0xff }, /* Pixel 248 */ { 0xcf, 0xcf, 0xcf, 0xff }, /* Pixel 249 */ { 0xc6, 0xc6, 0xc6, 0xff }, /* Pixel 250 */ { 0xb1, 0xb1, 0xb1, 0xff }, /* Pixel 251 */ { 0xa4, 0xa4, 0xa4, 0xff }, /* Pixel 252 */ { 0x82, 0x82, 0x82, 0xff }, /* Pixel 253 */ { 0x67, 0x67, 0x67, 0xff }, /* Pixel 254 */ { 0x00, 0x00, 0x00, 0xff }, /* Pixel 255 */ }, }; Maelstrom-3.0.7/configure000755 000765 000024 00000543475 14007046751 015701 0ustar00valvestaff000000 000000 #! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME= PACKAGE_TARNAME= PACKAGE_VERSION= PACKAGE_STRING= PACKAGE_BUGREPORT= PACKAGE_URL= ac_unique_file="README.txt" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS GAME_INSTALLDIR ICONOBJ SDL2_CONFIG SDL_LIBS SDL_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG INETLIB MATHLIB RANLIB am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE ac_ct_CXX CXXFLAGS CXX am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_os target_vendor target_cpu target host_os host_vendor host_cpu host build_os build_vendor build_cpu build target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking with_sdl_prefix with_sdl_exec_prefix enable_sdltest ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CXX CXXFLAGS CCC PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR SDL_CFLAGS SDL_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures this package to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --disable-sdltest Do not try to compile and run a test SDL program Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-sdl-prefix=PFX Prefix where SDL is installed (optional) --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional) Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CXX C++ compiler command CXXFLAGS C++ compiler flags PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path SDL_CFLAGS C compiler flags for SDL, overriding pkg-config SDL_LIBS linker flags for SDL, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF configure generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_cxx_try_compile LINENO # ---------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_compile # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 $as_echo_n "checking target system type... " >&6; } if ${ac_cv_target+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 $as_echo "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- am__api_version='1.15' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE=Maelstrom VERSION=3.0.7 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } if ${ac_cv_cxx_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if ${ac_cv_prog_cxx_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CXX_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi case "$target" in alpha*-*-linux*) CFLAGS="$CFLAGS -mcpu=ev4 -Wa,-mall" ;; esac case "$target" in *-*-mingw32*) MATHLIB="" INETLIB="-lwsock32" ;; *-*-beos*) MATHLIB="" INETLIB="" ;; *-*-darwin*) MATHLIB="" INETLIB="" ;; *) MATHLIB="-lm" INETLIB="" ;; esac SDL_VERSION=2.0.14 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi # Check whether --with-sdl-prefix was given. if test "${with_sdl_prefix+set}" = set; then : withval=$with_sdl_prefix; sdl_prefix="$withval" else sdl_prefix="" fi # Check whether --with-sdl-exec-prefix was given. if test "${with_sdl_exec_prefix+set}" = set; then : withval=$with_sdl_exec_prefix; sdl_exec_prefix="$withval" else sdl_exec_prefix="" fi # Check whether --enable-sdltest was given. if test "${enable_sdltest+set}" = set; then : enableval=$enable_sdltest; else enable_sdltest=yes fi min_sdl_version=$SDL_VERSION if test "x$sdl_prefix$sdl_exec_prefix" = x ; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SDL" >&5 $as_echo_n "checking for SDL... " >&6; } if test -n "$SDL_CFLAGS"; then pkg_cv_SDL_CFLAGS="$SDL_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sdl2 >= \$min_sdl_version\""; } >&5 ($PKG_CONFIG --exists --print-errors "sdl2 >= $min_sdl_version") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SDL_CFLAGS=`$PKG_CONFIG --cflags "sdl2 >= $min_sdl_version" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$SDL_LIBS"; then pkg_cv_SDL_LIBS="$SDL_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sdl2 >= \$min_sdl_version\""; } >&5 ($PKG_CONFIG --exists --print-errors "sdl2 >= $min_sdl_version") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SDL_LIBS=`$PKG_CONFIG --libs "sdl2 >= $min_sdl_version" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then SDL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "sdl2 >= $min_sdl_version" 2>&1` else SDL_PKG_ERRORS=`$PKG_CONFIG --print-errors "sdl2 >= $min_sdl_version" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$SDL_PKG_ERRORS" >&5 sdl_pc=no elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } sdl_pc=no else SDL_CFLAGS=$pkg_cv_SDL_CFLAGS SDL_LIBS=$pkg_cv_SDL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } sdl_pc=yes fi else sdl_pc=no if test x$sdl_exec_prefix != x ; then sdl_config_args="$sdl_config_args --exec-prefix=$sdl_exec_prefix" if test x${SDL2_CONFIG+set} != xset ; then SDL2_CONFIG=$sdl_exec_prefix/bin/sdl2-config fi fi if test x$sdl_prefix != x ; then sdl_config_args="$sdl_config_args --prefix=$sdl_prefix" if test x${SDL2_CONFIG+set} != xset ; then SDL2_CONFIG=$sdl_prefix/bin/sdl2-config fi fi fi if test "x$sdl_pc" = xyes ; then no_sdl="" SDL2_CONFIG="pkg-config sdl2" else as_save_PATH="$PATH" if test "x$prefix" != xNONE && test "$cross_compiling" != yes; then PATH="$prefix/bin:$prefix/usr/bin:$PATH" fi # Extract the first word of "sdl2-config", so it can be a program name with args. set dummy sdl2-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_SDL2_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $SDL2_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_SDL2_CONFIG="$SDL2_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_SDL2_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_SDL2_CONFIG" && ac_cv_path_SDL2_CONFIG="no" ;; esac fi SDL2_CONFIG=$ac_cv_path_SDL2_CONFIG if test -n "$SDL2_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SDL2_CONFIG" >&5 $as_echo "$SDL2_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi PATH="$as_save_PATH" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SDL - version >= $min_sdl_version" >&5 $as_echo_n "checking for SDL - version >= $min_sdl_version... " >&6; } no_sdl="" if test "$SDL2_CONFIG" = "no" ; then no_sdl=yes else SDL_CFLAGS=`$SDL2_CONFIG $sdl_config_args --cflags` SDL_LIBS=`$SDL2_CONFIG $sdl_config_args --libs` sdl_major_version=`$SDL2_CONFIG $sdl_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` sdl_minor_version=`$SDL2_CONFIG $sdl_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` sdl_micro_version=`$SDL2_CONFIG $sdl_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` if test "x$enable_sdltest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_CXXFLAGS="$CXXFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $SDL_CFLAGS" CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" rm -f conf.sdltest if test "$cross_compiling" = yes; then : echo $ac_n "cross compiling; assumed OK... $ac_c" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include "SDL.h" int main (int argc, char *argv[]) { int major, minor, micro; FILE *fp = fopen("conf.sdltest", "w"); if (fp) fclose(fp); if (sscanf("$min_sdl_version", "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_sdl_version"); exit(1); } if (($sdl_major_version > major) || (($sdl_major_version == major) && ($sdl_minor_version > minor)) || (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro))) { return 0; } else { printf("\n*** 'sdl2-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version); printf("*** of SDL required is %d.%d.%d. If sdl2-config is correct, then it is\n", major, minor, micro); printf("*** best to upgrade to the required version.\n"); printf("*** If sdl2-config was wrong, set the environment variable SDL2_CONFIG\n"); printf("*** to point to the correct copy of sdl2-config, and remove the file\n"); printf("*** config.cache before re-running configure\n"); return 1; } } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else no_sdl=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CFLAGS="$ac_save_CFLAGS" CXXFLAGS="$ac_save_CXXFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_sdl" = x ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test "x$no_sdl" = x ; then : else if test "$SDL2_CONFIG" = "no" ; then echo "*** The sdl2-config script installed by SDL could not be found" echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in" echo "*** your path, or set the SDL2_CONFIG environment variable to the" echo "*** full path to sdl2-config." else if test -f conf.sdltest ; then : else echo "*** Could not run SDL test program, checking why..." CFLAGS="$CFLAGS $SDL_CFLAGS" CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include "SDL.h" int main(int argc, char *argv[]) { return 0; } #undef main #define main K_and_R_C_main int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding SDL or finding the wrong" echo "*** version of SDL. If it is not finding SDL, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" else echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means SDL was incorrectly installed" echo "*** or that you have moved SDL since it was installed. In the latter case, you" echo "*** may want to edit the sdl2-config script: $SDL2_CONFIG" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext CFLAGS="$ac_save_CFLAGS" CXXFLAGS="$ac_save_CXXFLAGS" LIBS="$ac_save_LIBS" fi fi SDL_CFLAGS="" SDL_LIBS="" as_fn_error $? "*** SDL version $SDL_VERSION not found!" "$LINENO" 5 fi rm -f conf.sdltest CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SDLNet_Init in -lSDL2_net" >&5 $as_echo_n "checking for SDLNet_Init in -lSDL2_net... " >&6; } if ${ac_cv_lib_SDL2_net_SDLNet_Init+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lSDL2_net $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char SDLNet_Init (); int main () { return SDLNet_Init (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_SDL2_net_SDLNet_Init=yes else ac_cv_lib_SDL2_net_SDLNet_Init=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_SDL2_net_SDLNet_Init" >&5 $as_echo "$ac_cv_lib_SDL2_net_SDLNet_Init" >&6; } if test "x$ac_cv_lib_SDL2_net_SDLNet_Init" = xyes; then : have_SDL_net=yes fi if test x$have_SDL_net = xyes; then LIBS="$LIBS -lSDL2_net" else as_fn_error $? "*** Can't find the SDL_net library The SDL_net library can be found at: http://www.libsdl.org/projects/SDL_net/ " "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RSA checksum authentication" >&5 $as_echo_n "checking for RSA checksum authentication... " >&6; } if test -d $HOME/RSA; then CFLAGS="$CFLAGS -DUSE_CHECKSUM -I$HOME/RSA/source" LIBS="$LIBS $HOME/RSA/install/rsaref.a" use_checksum=yes else use_checksum=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $use_checksum" >&5 $as_echo "$use_checksum" >&6; } CFLAGS="$CFLAGS -I\$(top_srcdir)" CFLAGS="$CFLAGS -I\$(top_srcdir)/netlogic" CFLAGS="$CFLAGS -I\$(top_srcdir)/screenlib" CFLAGS="$CFLAGS -I\$(top_srcdir)/maclib" case "$target" in *-*-mingw32*) cp ico_o ico.o ICONOBJ="ico.o" ;; *) ICONOBJ="" ;; esac case "$target" in *-*-mingw32*) GAME_INSTALLDIR="." ICONOBJ="ico.o" ;; *-*-beos*) ac_default_prefix=/boot/beos GAME_INSTALLDIR="\$(prefix)/games/$PACKAGE" ;; *) GAME_INSTALLDIR="\$(prefix)/games/$PACKAGE" ;; esac CFLAGS="$CFLAGS -DLIBDIR=\\\"$GAME_INSTALLDIR\\\"" CXXFLAGS="$CXXFLAGS $CFLAGS" # Finally create all the generated files ac_config_files="$ac_config_files Makefile netlogic/Makefile screenlib/Makefile maclib/Makefile Images/Makefile Docs/Makefile Maelstrom.spec" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # Transform confdefs.h into DEFS. # Protect against shell expansion while executing Makefile rules. # Protect against Makefile macro expansion. # # If the first sed substitution is executed (which looks for macros that # take arguments), then branch to the quote section. Otherwise, # look for a macro that doesn't take arguments. ac_script=' :mline /\\$/{ N s,\\\n,, b mline } t clear :clear s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g t quote s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g t quote b any :quote s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g s/\[/\\&/g s/\]/\\&/g s/\$/$$/g H :any ${ g s/^\n// s/\n/ /g p } ' DEFS=`sed -n "$ac_script" confdefs.h` ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by $as_me, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE Configuration files: $config_files Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --he | --h | --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "netlogic/Makefile") CONFIG_FILES="$CONFIG_FILES netlogic/Makefile" ;; "screenlib/Makefile") CONFIG_FILES="$CONFIG_FILES screenlib/Makefile" ;; "maclib/Makefile") CONFIG_FILES="$CONFIG_FILES maclib/Makefile" ;; "Images/Makefile") CONFIG_FILES="$CONFIG_FILES Images/Makefile" ;; "Docs/Makefile") CONFIG_FILES="$CONFIG_FILES Docs/Makefile" ;; "Maelstrom.spec") CONFIG_FILES="$CONFIG_FILES Maelstrom.spec" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" eval set X " :F $CONFIG_FILES :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi Maelstrom-3.0.7/checksum.cpp000644 000765 000024 00000016476 14006020070 016255 0ustar00valvestaff000000 000000 /* Okay, here is a method of doing checksumming on ourselves. We calculate a checksum over the text segment from the address of main() to the end of the text segment (etext), and then encrypt it and ascii armour it (base64) for transport. Note, this is NOT foolproof, so don't rely on it for critical software! It is pretty slick though. :) The md5 checksum is xor'd with a random value, which is stored in the authentication packet. This gives relatively random input to the RSA encryption engine which encrypts the packet with the server's public key. The result is ascii armoured and sent to the server where the md5 checksum is extracted. Each time the packet is sent, it is a different ascii text, but decodes to a known checksum. This method should be resistant to cracking by snooping, spoofing, and code tampering, as long as the private key remains private. */ /* These checksum routines are activated by -DUSE_CHECKSUM */ #if defined(WIN32) || defined(__BEOS__) /* How do we get the end of the text segment with this OS? */ #undef USE_CHECKSUM #endif #ifdef USE_CHECKSUM #include #include #include #include #include #ifdef WIN32 #include #endif #include "checksum.h" #include "myerror.h" /* RSA MD5 checksum, public key routines */ #include "global.h" #include "rsaref.h" extern "C" { extern int RSAPublicEncrypt ( unsigned char *output, /* output block */ unsigned int *outputLen,/* length of output block */ unsigned char *input, /* input block */ unsigned int inputLen, /* length of input block */ R_RSA_PUBLIC_KEY *publicKey, /* RSA public key */ R_RANDOM_STRUCT *randomStruct /* random structure */ ); }; #include "public_key.h" /* Encrypt and ascii armour a message */ static char *armour_encrypt(unsigned char *buf, unsigned int len); /* Here is where we save the checksum and encrypted checksum */ #define MD5LEN 16 static unsigned char our_checksum[MD5LEN]; static unsigned char weak_encoder; /* How many times do you see this? :) */ extern "C" int main(int argc, char *argv[]); /* Call this to calculate the checksum -- first thing in main()! */ void checksum(void) { struct timeval now; /* These are the end of the text and data segments. */ extern int etext, edata; #ifdef PRINT_CHECKSUM error("Main = 0x%x, etext = 0x%x, edata = 0x%x\n",main,&etext,&edata); #endif /* Local variables */ void *mem_end=NULL; int i; MD5_CTX *ctx; /* Find the end of our code segment */ mem_end = &etext; if ( (caddr_t)mem_end < (caddr_t)main ) { // Uh oh... error("Warning: unexpected environment -- no checksum!!\n"); return; } /* Allocate and calculate our checksum */ ctx = new MD5_CTX; MD5Init(ctx); MD5Update(ctx, (unsigned char *)main, (caddr_t)mem_end-(caddr_t)main); MD5Final(our_checksum, ctx); /* ERASE THIS!! */ #ifdef PRINT_CHECKSUM error("Real checksum: "); for ( i=0; i 0; --bytesleft ) { randbyte = (rand()%256); R_RandomUpdate(&weewee, &randbyte, 1); } /* Get down to business! */ if (RSAPublicEncrypt(cbuf, &clen, tmp, len, pkey, &weewee)) { /* Uh oh... what do we do? */ error("Warning! RSA encryption failed!\n"); clen = 0; } } /* Clear out the original buffer, just in case */ for ( i=0; i static inline void Unused(...) { } /* For eliminating compiler warnings */ void checksum(void) { return; } char *get_checksum(unsigned char *key, int keylen) { Unused(key); Unused(keylen); const char *err = "Checksum Not Enabled"; size_t errlen = strlen(err); char *foo = new char[errlen+1]; memcpy(foo, err, errlen+1); return(foo); } #endif /* USE_CHECKSUM */ Maelstrom-3.0.7/Changelog000644 000765 000024 00000027071 14006427433 015570 0ustar00valvestaff000000 000000 Maelstrom 3.0.7 -- Public GPL version Version 3.0.7: Sam Lantinga - Tue Feb 2 21:04:21 PST 2021 * Updated for SDL 2.0 Version 3.0.6: Sam Lantinga - Sat Oct 19 19:09:57 PDT 2002 * Added support for MacBinary resource files * Updated README.joystick to reflect joystick support * Fixed volume lockup bug on MacOS X Dean Larman-Moore - May 2002 00:20:43 +0100 * Fixed network bug with more than one player Version 3.0.5: Sam Lantinga - Fri Jul 20 08:09:14 PDT 2001 * Fixed some bugs in the mac dialog entry widgets Version 3.0.4: Sam Lantinga - Sat Mar 24 09:45:41 PST 2001 * Ported to MacOS X * Added gamma fading algorithm Version 3.0.3: Sam Lantinga - Sat Mar 24 09:45:41 PST 2001 * Updated for SDL 1.2 Version 3.0.2: Sam Lantinga - Sat Feb 19 01:31:20 PST 2000 * Fixed the multiplayer color dot blitting * Ported to the SDL_net network library * Added ALT-ENTER fullscreen toggle (X11) * Pressing a key escapes the splash screen Sam Lantinga - Sat Feb 12 02:16:32 PST 2000 * Added joystick support, using SDL 1.1 Michael Vanece - Tue, 25 Jan 2000 13:54:04 -0600 * Fixed a desktop menu installation bug in the RPM Torbjrn Andersson - Thu, 13 Jan 2000 11:03:19 +0100 * Fixed a crash in the font class when using international characters Version 3.0.1: * Source code released under the GPL 11/18/1999 * Added full autoconf support and made RPM package Version 3.0.0: * Ported to Simple DirectMedia Layer library (http://www.libsdl.org/) Version 2.0.7: * Added a netscore environment variable: MAELSTROM_SCORESERVER * Fixed long-standing 24/32 bpp X display detection problem * Fixed minor compilation problems with modern Linux systems * Moved error routines into separate file - fixed PPC Linux Version 2.0.6: * Maelstrom no longer eats CPU while paused -- Oops. :) * Added interlaced pixel doubling for faster doubled display * Added pixel doubling to Win95 framebuffer code * Ported to SunOS and Sparc Linux * Fixed infinite recursion on sound callbacks. Version 2.0.5b: * Fixed silly 16 bpp blit code bug * Fixed 'make install' -- uses "install" by default * Fixed segmentation fault in the SVGAlib framebuf driver * Enhanced the DGA code for HiColor and TrueColor depths * GREATLY increased DGA speed for linear video cards! Version 2.0.5: * Added PIXEL_DOUBLING back in the X11 display driver * The DISPLAY environment variable overrides Linux console * Steel asteroids really aren't supposed to last forever. :) * Saucer shots don't kill when saucer is destroyed (netlogic) * Optimized framebuffer blitting code * Fixed completely white screen on big-endian systems (Sun/SGI) * Fixed bug in right edge clipping * GIF format screendumps from high bit-depths okay (slow!) * Linux sound defaults to 8 bit again -- sounds better. Version 2.0.4: * Added 32 bit TrueColor X11 display support * FrameBuf now supports video memory locking and pitch * FrameBuf::ReColor() maps image pixels to screen pixels * Optimized the compiled sprite engine * Speeded up truecolor video, slightly slowed 256 color video * Removed pixel doubling support * Removed background pixmap shared memory support (not needed) * Stars!! Lots and lots of Stars!!! * Ported to Windows 95 (unreleased) Version 2.0.3b: * Fixed bug in which VGA keys must be pressed twice to start. * Added crappy VGA 16 color mode - yuck. LOW_RES is better. Version 2.0.3a: * Fixed segmentation fault in mixer-dma.cc * Added error checking to X_image creation. * Added native support for FreeBSD and SVR4.2 (Thanks to Stephen Hocking ) Version 2.0.3: * Fixed silly full-screen window bug * Bonuses, comets and gravity don't shake and shimmy no mo' * Very slightly improved NAS support .. yech, don't use it. * Added experimental DMA audio support for Linux - nice. :) * New life accounting during bonus screen works now. * Cleaned up the Makefile logic Version 2.0.2: * Kjetil Torgrim Homme added compiler-specific cleanup. * Multiplayer scores are now updated properly. * Fixed asteroid counting problem after an explosion. * Set default fading to pixellated, added -realfade option. Version 2.0.0: Beta! * Added a network address server for multi-player games * Cleaned up my code some, gcc -Wall is a bit cleaner. :-) * Fixed problem on SGI where make would always recompile. * Ported to AIX 3.2 with gcc 2.7.2 (No sound) (Thanks to C. Chan ) * Updated some documentation. :) * Added slower smoother double-buffering for SVGA graphics * Added cheap, slow, low resolution SVGA mode (320x240x256) (Inspired by Scott Stone ) * Added experimental 8-bit XFree86 3.1.2E DGA support. * Added "-displaytype" option to query current display. Version 2.0.0: Alpha! * New!! Multi-player mode! Up to 3 players! Has Bugs!! :) * Added some basic joystick support for Linux. * Added a network-based score registration server. * Added a '-printscores' command line option. * Added a '-netscores' command line option. * Added the ability to display on remote X terminals. * Added a '-display ' command line option. * Fixed a minor high score name entering bug. * Fixed endian compile problems on HPUX. * More robust data file searching (files can contain '_') * Time bug fix -- by Warwick Allinson (warwick@cs.uq.oz.au) * Added better fading code for the -nofade option This is slow on 16-24 bit displays. Comments? * Maelstrom now understands AppleDouble resource forks * Finally fixed "press Enter after switching consoles" bug Inspired by Tessa Lau (tlau@cs.washington.edu) * Finally fixed "stuck keys between levels" SVGA problem. * Hopefully sped up SVGAlib refresh (removed a mem copy) * A few code cleanups. * Never seeded random number generator in prior versions. * NEW! Now using the original FastRandom() function, for more Macintosh fidelity. :-) * Finally fixed SGI sound! Thanks to great work by Tom Anderson (tom@proximity.com.au) and original code boost by Alain Schmidt (alainrd@trix.be) * Sound server enhancements by Tom Anderson: Mellowed out sound volume for less clipping. Added 16 bit sound for SGI's Added POSIX signal support to the sound server. Created a portable usleep() function (select() based) * Added Screen capture during game - triggered by hitting F3 Saves to XPM or GIF format (compile time option) * Added the pixel fade feature to SVGA mode. * Added a Configure script that autodetects your system. * Fixed some timing bugs in Delay() * Optimized some of the sprite blitting. Version 1.1.4: * Fixed a time related bug in "long" v.s. "unsigned long" !!?? * Removed an offending "#include " from main.cc * Improved SVGA refresh algorithm (Thanks ARDI!) (too slow on my machine -- #ifdef'd out) * Fixed a bug in shots not wrapping vertically (Thanks to Dave Ljung for finding that) Version 1.1.3: * Fourth Public Release: 12/10/95 * Fixed asynchronous I/O problem on Solaris. * Finished port of Maelstrom to Solaris 2.4 * Finished port of Maelstrom to SGI (IRIX 5.3 * Ported Maelstrom to ULTRIX 4.4 (No sound) * Ported Maelstrom to HPUX 9.01 (No sound) * Added a '-version' command line option. * Added a '-fullscreen' command line option for X11. * Added a '-nofade' command line option. * If just '-gamma' is given, we print the current gamma level. * Fixed a problem with '-privatecmap' where the mouse had to leave and re-enter the window to update the colormap. * Added pixel doubling support -- compile-time option. * Maelstrom pauses while iconified under X11. * If Maelstrom is on a Linux console, it will run in SVGA mode. * Oops, fixing Trident SVGA broke Mach32 SVGA. Fixed. * Added /dev/audio sound support. Thanks to 'rockndiamonds' and 'snd2au.c' - Thanks! :) Copyright for snd2au.c: /************************************************************************/ /* Copyright 1989 by Rich Gopstein and Harris Corporation */ /* */ /* Permission to use, copy, modify, and distribute this software */ /* and its documentation for any purpose and without fee is */ /* hereby granted, provided that the above copyright notice */ /* appears in all copies and that both that copyright notice and */ /* this permission notice appear in supporting documentation, and */ /* that the name of Rich Gopstein and Harris Corporation not be */ /* used in advertising or publicity pertaining to distribution */ /* of the software without specific, written prior permission. */ /* Rich Gopstein and Harris Corporation make no representations */ /* about the suitability of this software for any purpose. It */ /* provided "as is" without express or implied warranty. */ /************************************************************************/ Version 1.1.2: * Third Public Release: 10/17/95 * Fixed a compiler warning on vga_frambuf.cc * Changed installation directory to /usr/local/bin * Beautified the 'install' target in the Makefile * Added 'uninstall' target to Makefile * Bugs known in Linux X11 version: Iconifying Maelstrom doesn't put it in pause mode. * Bugs known in Linux SVGA version: (unknown causes) Keys can get "stuck" between levels. Console switching doesn't always pause the game After switching consoles, keystrokes cause SIGQUIT ?? * Sort-of ported Maelstrom to Solaris 2.4 Known bugs: (unknown causes) Setting asynchronous I/O in Sound Server returns EINVAL Sound support not tested * Sort-of ported Maelstrom to the SGI Known bugs: (unknown causes) Fading doesn't work, and neither does -privatecmap Some scores are reported as low negative numbers No sound support * Sort-of ported Maelstrom to HPUX 10.0 Known bugs: Not tested with X11 No sound support Version 1.1.1: * Fixed a slight slowdown bug in mixer.cc (Thanks to John Seng for catching it.) * Fixed the "white border" problem on some vga cards (trident) (Thanks to Antti J Tanskanen ) * Fixed a bug in the cheat code, when you enter zero lives. * Fixed a problem with Maelstrom_sound exiting with signal 11. * Added Makefile variable toggling compiling SVGA support. * Added "all-time high" Maelstrom-Scores file. Version 1.1.0: * Second Public Release: 9/1/95 * Made Maelstrom code more portable, using bytecopy macros and using shared memory XImages instead of BG pixmaps. * Discovered that shared memory XImages are truly faster than shared background pixmaps. Default to use XImage. (Thanks to Peter Mattis ) * Added -speedtest option to test the speed of Maelstrom graphics blitting. SVGA is about 30% faster than shared memory XImages in X11, on my system. * Added -gamma N option, allowing gamma correction levels from 0 through 8. * Fixed a sound race condition on slow machines. * Added 24 bit color support. Version 1.0.1: * Added the "NewSounds" directory, filled with sound patches for Maelstrom collected from the Internet. * Fixed Maelstrom so it would play the Simpsons sound patch. * BUG: Bonus stage sound can break up during the screen fade on slow systems. The fix is to use a larger sound fragment size, but this negatively impacts synchronization of the Maelstrom process and the sound server. Not fixed. * Fixed a coding issue so Maelstrom could be compiled with g++ 2.7.0 * Defined true and false for compiling with X11R5. * Added 15/16-bit color support. (Thanks to Peter Mattis) * Fixed problem with Maelstrom leaving shared memory around. Version 1.0: * First Public Release: 8/1/95 Maelstrom-3.0.7/Maelstrom_Globals.h000644 000765 000024 00000006250 14006016150 017517 0ustar00valvestaff000000 000000 #include #include "SDL_FrameBuf.h" #include "Mac_FontServ.h" #include "Mac_Sound.h" #include "Mac_Compat.h" #include "Maelstrom.h" #include "myerror.h" #include "fastrand.h" #include "logic.h" #include "scores.h" #include "controls.h" // The Font Server :) extern FontServ *fontserv; // The Sound Server *grin* extern Sound *sound; // The SCREEN!! :) extern FrameBuf *screen; /* Boolean type */ typedef Uint8 Bool; #define true 1 #define false 0 // Functions from main.cc extern void PrintUsage(void); extern int DrawText(int x, int y, const char *text, MFont *font, Uint8 style, Uint8 R, Uint8 G, Uint8 B); extern void Message(const char *message); // Functions from init.cc extern void SetStar(int which); // Functions from netscore.cc extern void RegisterHighScore(Scores high); extern int NetLoadScores(void); // External variables... // in main.cc : extern Bool gUpdateBuffer; extern Bool gRunning; extern int gNoDelay; // in init.cc : extern Sint32 gLastHigh; extern Rect gScrnRect; extern SDL_Rect gClipRect; extern int gStatusLine; extern int gTop, gLeft, gBottom, gRight; extern MPoint gShotOrigins[SHIP_FRAMES]; extern MPoint gThrustOrigins[SHIP_FRAMES]; extern MPoint gVelocityTable[SHIP_FRAMES]; extern StarPtr gTheStars[MAX_STARS]; extern Uint32 gStarColors[]; // in controls.cc : extern Controls controls; extern Uint8 gSoundLevel; extern Uint8 gGammaCorrect; // int scores.cc : extern Scores hScores[]; // -- Variables specific to each game // in main.cc : extern int gStartLives; extern int gStartLevel; // in init.cc : extern Uint32 gLastDrawn; extern int gNumSprites; // in scores.cc : extern Bool gNetScores; // Sound resource definitions... #define gShotSound 100 #define gMultiplier 101 #define gExplosionSound 102 #define gShipHitSound 103 #define gBoom1 104 #define gBoom2 105 #define gMultiplierGone 106 #define gMultShotSound 107 #define gSteelHit 108 #define gBonk 109 #define gRiff 110 #define gPrizeAppears 111 #define gGotPrize 112 #define gGameOver 113 #define gNewLife 114 #define gBonusAppears 115 #define gBonusShot 116 #define gNoBonus 117 #define gGravAppears 118 #define gHomingAppears 119 #define gShieldOnSound 120 #define gNoShieldSound 121 #define gNovaAppears 122 #define gNovaBoom 123 #define gLuckySound 124 #define gDamagedAppears 125 #define gSavedShipSound 126 #define gFunk 127 #define gEnemyAppears 128 #define gPrettyGood 131 #define gThrusterSound 132 #define gEnemyFire 133 #define gFreezeSound 134 #define gIdiotSound 135 #define gPauseSound 136 /* -- The blit'ers we use */ extern BlitPtr gRock1R, gRock2R, gRock3R, gDamagedShip; extern BlitPtr gRock1L, gRock2L, gRock3L, gShipExplosion; extern BlitPtr gPlayerShip, gExplosion, gNova, gEnemyShip, gEnemyShip2; extern BlitPtr gMult[], gSteelRoidL; extern BlitPtr gSteelRoidR, gPrize, gBonusBlit, gPointBlit; extern BlitPtr gVortexBlit, gMineBlitL, gMineBlitR, gShieldBlit; extern BlitPtr gThrust1, gThrust2, gShrapnel1, gShrapnel2; /* -- The prize CICN's */ extern SDL_Surface *gAutoFireIcon, *gAirBrakesIcon, *gMult2Icon, *gMult3Icon; extern SDL_Surface *gMult4Icon, *gMult5Icon, *gLuckOfTheIrishIcon; extern SDL_Surface *gLongFireIcon, *gTripleFireIcon, *gKeyIcon, *gShieldIcon; Maelstrom-3.0.7/myerror.cpp000644 000765 000024 00000001357 14007022723 016152 0ustar00valvestaff000000 000000 #ifndef _myerror_h #define _myerror_h /* Generic error message routines */ #include #include #include #include #include "SDL.h" void error(const char *fmt, ...) { char mesg[BUFSIZ]; va_list ap; va_start(ap, fmt); SDL_vsnprintf(mesg, sizeof(mesg), fmt, ap); fputs(mesg, stderr); va_end(ap); } void mesg(const char *fmt, ...) { char mesg[BUFSIZ]; va_list ap; va_start(ap, fmt); SDL_vsnprintf(mesg, sizeof(mesg), fmt, ap); fputs(mesg, stdout); va_end(ap); } void myperror(const char *msg) { char buffer[BUFSIZ]; if ( *msg ) { SDL_snprintf(buffer, sizeof(buffer), "%s: %s\n", msg, strerror(errno)); error(buffer); } else error((char *)strerror(errno)); } #endif /* _myerror_h */ Maelstrom-3.0.7/Images/000755 000765 000024 00000000000 14007426743 015160 5ustar00valvestaff000000 000000 Maelstrom-3.0.7/load.h000644 000765 000024 00000006557 14007021616 015046 0ustar00valvestaff000000 000000 #ifndef _load_h #define _load_h #include #include #ifdef WIN32 // For access() prototype #include #define F_OK 0 #define access _access #else #ifdef macintosh static inline char *strdup(const char *str) { char *newstr; newstr = (char *)malloc(strlen(str)+1); if ( newstr ) { strcpy(newstr, str); } return(newstr); } #endif #if defined(unix) || defined(__MACH__) || defined(__BEOS__) #include #endif #endif /* WIN32 */ #include "SDL_FrameBuf.h" /* Pathing stuff for the different operating systems */ #if defined(unix) || defined(__MACH__) #define DIR_SEP "/" #define CUR_DIR "." #elif defined(WIN32) #define DIR_SEP "/" #define CUR_DIR "." #elif defined(__BEOS__) #define DIR_SEP "/" #define CUR_DIR "." #elif defined(macintosh) #define DIR_SEP ":" #define CUR_DIR ":" #else #error Unspecified platform! #endif /* Choose your platform */ #ifndef LIBDIR #if defined(unix) || defined(__MACH__) #define LIBDIR "/usr/local/lib/Maelstrom" #else #define LIBDIR CUR_DIR #endif #endif /* !defined(LIBDIR) */ class LibPath { private: static char *exepath; public: static void SetExePath(const char *exe) { char *exep; exepath = SDL_strdup(exe); for ( exep = exepath+strlen(exe); exep > exepath; --exep ) { if ( (*exep == *DIR_SEP) || (*exep == '\\') ) { break; } } if ( exep > exepath ) { *exep = '\0'; } else { SDL_strlcpy(exepath, CUR_DIR, sizeof(exepath)); } } public: LibPath() { path = NULL; } LibPath(const char *file) { path = NULL; Path(file); } ~LibPath() { if ( path ) delete[] path; } const char *Path(const char *filename) { const char *directory; size_t pathlen; directory = SDL_getenv("MAELSTROM_LIB"); if ( directory == NULL ) { directory = LIBDIR; #ifndef macintosh if ( access(directory, F_OK) < 0 ) { directory = exepath; } #endif } if ( path != NULL ) delete[] path; #ifdef __MACOSX__ pathlen = strlen(directory)+strlen("/../Resources/")+strlen(filename)+1; path = new char[pathlen]; SDL_snprintf(path, pathlen, "%s/../Resources/%s", directory, filename); if ( access(path, F_OK) == 0 ) { return(path); } delete[] path; #endif pathlen = strlen(directory)+1+strlen(filename)+1; path = new char[pathlen]; if (SDL_strcmp(directory, DIR_SEP) == 0) { SDL_snprintf(path, pathlen, DIR_SEP "%s", filename); } else { SDL_snprintf(path, pathlen, "%s" DIR_SEP "%s", directory, filename); } return(path); } const char *Path(void) { return(path); } private: char *path; }; class SavePath { public: SavePath() { path = NULL; } SavePath(const char *file) { path = NULL; Path(file); } ~SavePath() { if ( path ) delete[] path; } const char *Path(const char *filename) { char *directory = SDL_GetPrefPath("Ambrosia Software", "Maelstrom"); if (!directory) { directory = SDL_strdup(CUR_DIR); } if ( path != NULL ) delete[] path; size_t pathlen = strlen(directory)+1+strlen(filename)+1; path = new char[pathlen]; SDL_snprintf(path, pathlen, "%s" DIR_SEP "%s", directory, filename); SDL_free(directory); return(path); } const char *Path(void) { return(path); } private: char *path; }; /* Functions exported from load.cc */ extern SDL_Surface *Load_Icon(char **xpm); extern SDL_Surface *Load_Title(FrameBuf *screen, int title_id); extern SDL_Surface *GetCIcon(FrameBuf *screen, short cicn_id); #endif /* _load_h */ Maelstrom-3.0.7/dialog.cpp000644 000765 000024 00000017057 14006020376 015717 0ustar00valvestaff000000 000000 #include "dialog.h" int Mac_Dialog::text_enabled = 0; Mac_Dialog::Mac_Dialog(int x, int y) { Screen = NULL; X = x; Y = y; button_callback = NULL; key_callback = NULL; errstr = NULL; } Mac_Button::Mac_Button(int x, int y, int width, int height, const char *text, MFont *font, FontServ *fontserv, int (*callback)(void)) : Mac_Dialog(x, y) { SDL_Surface *textb; SDL_Rect dstrect; /* Set private variables */ Width = width; Height = height; /* Build image of the button */ button = SDL_CreateRGBSurface(SDL_SWSURFACE, Width, Height, 8, 0, 0, 0, 0); if ( button == NULL ) { SetError("%s", SDL_GetError()); return; } button->format->palette->colors[0].r = 0xFF; button->format->palette->colors[0].g = 0xFF; button->format->palette->colors[0].b = 0xFF; button->format->palette->colors[1].r = 0x00; button->format->palette->colors[1].g = 0x00; button->format->palette->colors[1].b = 0x00; textb = fontserv->TextImage(text, font, STYLE_NORM, 0x00, 0x00, 0x00); if ( textb != NULL ) { if ( (textb->w <= button->w) && (textb->h <= button->h) ) { dstrect.x = (button->w-textb->w)/2; dstrect.y = (button->h-textb->h)/2; dstrect.w = textb->w; dstrect.h = textb->h; SDL_BlitSurface(textb, NULL, button, &dstrect); } fontserv->FreeText(textb); } Bevel_Button(button); /* Set the callback */ Callback = callback; } Mac_DefaultButton::Mac_DefaultButton(int x, int y, int width, int height, const char *text, MFont *font, FontServ *fontserv, int (*callback)(void)) : Mac_Button(x, y, width, height, text, font, fontserv, callback) { return; } Mac_CheckBox::Mac_CheckBox(int *toggle, int x, int y, const char *text, MFont *font, FontServ *fontserv) : Mac_Dialog(x, y) { /* Create the text label */ Fontserv = fontserv; label = Fontserv->TextImage(text, font, STYLE_NORM, 0, 0, 0); /* Set the checkbox variable */ checkval = toggle; } Mac_RadioList::Mac_RadioList(int *variable, int x, int y, MFont *font, FontServ *fontserv) : Mac_Dialog(x, y) { Fontserv = fontserv; Font = font; radiovar = variable; *radiovar = 0; radio_list.next = NULL; } Mac_TextEntry::Mac_TextEntry(int x, int y, MFont *font, FontServ *fontserv) : Mac_Dialog(x, y) { Fontserv = fontserv; Font = font; Cwidth = Fontserv->TextWidth("0", Font, STYLE_NORM); Cheight = Fontserv->TextHeight(font); entry_list.next = NULL; current = &entry_list; EnableText(); } Mac_NumericEntry::Mac_NumericEntry(int x, int y, MFont *font, FontServ *fontserv) : Mac_Dialog(x, y) { Fontserv = fontserv; Font = font; Cwidth = Fontserv->TextWidth("0", Font, STYLE_NORM); Cheight = Fontserv->TextHeight(font); entry_list.next = NULL; current = &entry_list; } Maclike_Dialog:: Maclike_Dialog(int x, int y, int width, int height, FrameBuf *screen) { Screen = screen; X = x; Y = y; Width = width; Height = height; rect_list.next = NULL; image_list.next = NULL; dialog_list.next = NULL; } Maclike_Dialog:: ~Maclike_Dialog() { struct rect_elem *rect, *rtemp; struct image_elem *image, *itemp; struct dialog_elem *dialog, *dtemp; /* Clean out the lists */ for ( rect = rect_list.next; rect; ) { rtemp = rect; rect = rect->next; delete rtemp; } for ( image = image_list.next; image; ) { itemp = image; image = image->next; delete itemp; } for ( dialog = dialog_list.next; dialog; ) { dtemp = dialog; dialog = dialog->next; delete dtemp->dialog; delete dtemp; } } void Maclike_Dialog:: Add_Rectangle(int x, int y, int w, int h, Uint32 color) { struct rect_elem *relem; for ( relem = &rect_list; relem->next; relem = relem->next ); relem->next = new rect_elem; relem = relem->next; relem->x = x; relem->y = y; relem->w = w; relem->h = h; relem->color = color; relem->next = NULL; } void Maclike_Dialog:: Add_Image(SDL_Surface *image, int x, int y) { struct image_elem *ielem; for ( ielem = &image_list; ielem->next; ielem = ielem->next ); ielem->next = new image_elem; ielem = ielem->next; ielem->image = image; ielem->x = x; ielem->y = y; ielem->next = NULL; } void Maclike_Dialog:: Add_Dialog(Mac_Dialog *dialog) { struct dialog_elem *delem; for ( delem = &dialog_list; delem->next; delem = delem->next ); delem->next = new dialog_elem; delem = delem->next; delem->dialog = dialog; delem->next = NULL; } /* The big Kahones */ void Maclike_Dialog:: Run(int expand_steps) { SDL_Surface *savedfg; SDL_Surface *savedbg; SDL_Event event; struct rect_elem *relem; struct image_elem *ielem; struct dialog_elem *delem; Uint32 black, dark, medium, light, white; int i, done; int maxX, maxY; double XX, YY, H, Hstep, V, Vstep; /* Save the area behind the dialog box */ savedfg = Screen->GrabArea(X, Y, Width, Height); Screen->FocusBG(); savedbg = Screen->GrabArea(X, Y, Width, Height); /* Show the dialog box with the nice Mac border */ black = Screen->MapRGB(0x00, 0x00, 0x00); dark = Screen->MapRGB(0x66, 0x66, 0x99); medium = Screen->MapRGB(0xBB, 0xBB, 0xBB); light = Screen->MapRGB(0xCC, 0xCC, 0xFF); white = Screen->MapRGB(0xFF, 0xFF, 0xFF); maxX = X+Width-1; maxY = Y+Height-1; Screen->DrawLine(X, Y, maxX, Y, light); Screen->DrawLine(X, Y, X, maxY, light); Screen->DrawLine(X, maxY, maxX, maxY, dark); Screen->DrawLine(maxX, Y, maxX, maxY, dark); Screen->DrawRect(X+1, Y+1, Width-2, Height-2, medium); Screen->DrawLine(X+2, Y+2, maxX-2, Y+2, dark); Screen->DrawLine(X+2, Y+2, X+2, maxY-2, dark); Screen->DrawLine(X+3, maxY-2, maxX-2, maxY-2, light); Screen->DrawLine(maxX-2, Y+3, maxX-2, maxY-2, light); Screen->DrawRect(X+3, Y+3, Width-6, Height-6, black); Screen->FillRect(X+4, Y+4, Width-8, Height-8, white); Screen->FocusFG(); /* Allow the dialog to expand slowly */ XX = (double)(X+Width/2); YY = (double)(Y+Height/2); Hstep = (double)(Width/expand_steps); Vstep = (double)(Height/expand_steps); for ( H=0, V=0, i=0; i Width ) { H = Width; } if ( V > Height ) { V = Height; } Screen->Clear((Uint16)XX, (Uint16)YY, (Uint16)H, (Uint16)V); Screen->Update(); } Screen->Clear((Uint16)X, (Uint16)Y, (Uint16)Width, (Uint16)Height); Screen->Update(); /* Draw the dialog elements (after the slow expand) */ for ( relem = rect_list.next; relem; relem = relem->next ) { Screen->DrawRect(X+4+relem->x, Y+4+relem->y, relem->w, relem->h, relem->color); } for ( ielem = image_list.next; ielem; ielem = ielem->next ) { Screen->QueueBlit(X+4+ielem->x, Y+4+ielem->y, ielem->image, NOCLIP); } for ( delem = dialog_list.next; delem; delem = delem->next ) { delem->dialog->Map(X+4, Y+4, Screen, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00); delem->dialog->Show(); } Screen->Update(); /* Wait until the dialog box is done */ for ( done = 0; !done; ) { Screen->WaitEvent(&event); switch (event.type) { /* -- Handle mouse clicks */ case SDL_MOUSEBUTTONDOWN: for ( delem = dialog_list.next; delem; delem = delem->next ) (delem->dialog)->HandleButtonPress(event.button.x, event.button.y, event.button.button, &done); break; /* -- Handle key presses */ case SDL_KEYDOWN: for ( delem = dialog_list.next; delem; delem = delem->next ) (delem->dialog)->HandleKeyPress(event.key.keysym, &done); break; } } /* Replace the old section of screen */ if ( savedbg ) { Screen->FocusBG(); Screen->QueueBlit(X, Y, savedbg, NOCLIP); Screen->Update(); Screen->FocusFG(); Screen->FreeImage(savedbg); } if ( savedfg ) { Screen->QueueBlit(X, Y, savedfg, NOCLIP); Screen->Update(); Screen->FreeImage(savedfg); } } Maelstrom-3.0.7/fastrand.cpp000644 000765 000024 00000003311 14007022723 016245 0ustar00valvestaff000000 000000 /* -- Return a random value between 0 and range - 1 */ #include #include #include #include "SDL_types.h" static Uint32 randomSeed; void SeedRandom(Uint32 Seed) { #ifdef SERIOUS_DEBUG fprintf(stderr, "SeedRandom(%lu)\n", Seed); #endif if ( ! Seed ) { srand((unsigned int)time(NULL)); Seed = (((rand()%0xFFFF)<<16)|(rand()%0xFFFF)); } randomSeed = Seed; } Uint32 GetRandSeed(void) { return(randomSeed); } /* This magic is wholly the result of Andrew Welch, not me. :-) */ Uint16 FastRandom(Uint16 range) { Uint16 result; register Uint32 calc; register Uint32 regD0; register Uint32 regD1; register Uint32 regD2; #ifdef SERIOUS_DEBUG fprintf(stderr, "FastRandom(%hd) Seed in: %lu ", range, randomSeed); #endif calc = randomSeed; regD0 = 0x41A7; regD2 = regD0; regD0 *= calc & 0x0000FFFF; regD1 = regD0; regD1 = regD1 >> 16; regD2 *= calc >> 16; regD2 += regD1; regD1 = regD2; regD1 += regD1; regD1 = regD1 >> 16; regD0 &= 0x0000FFFF; regD0 -= 0x7FFFFFFF; regD2 &= 0x00007FFF; regD2 = (regD2 << 16) + (regD2 >> 16); regD2 += regD1; regD0 += regD2; /* An unsigned value < 0 is always 0 */ /************************************* Not compiled: if (regD0 < 0) regD0 += 0x7FFFFFFF; *************************************/ randomSeed = regD0; #ifdef SERIOUS_DEBUG fprintf(stderr, "Seed out: %lu ", randomSeed); #endif if ((regD0 & 0x0000FFFF) == 0x8000) regD0 &= 0xFFFF0000; /* -- Now that we have our pseudo random number, pin it to the range we want */ regD1 = range; regD1 *= (regD0 & 0x0000FFFF); regD1 = (regD1 >> 16); result = regD1; #ifdef SERIOUS_DEBUG fprintf(stderr, "Result: %hu\n", result); #endif return result; } Maelstrom-3.0.7/COPYING.GPL.txt000644 000765 000024 00000036101 14007025737 016244 0ustar00valvestaff000000 000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Maelstrom-3.0.7/config.guess000755 000765 000024 00000114404 07554415277 016310 0ustar00valvestaff000000 000000 #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-03-16' # 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 # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Written by Per Bothner . # Please send patches to . # # 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. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99, 2000 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." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit 0 ;; --version | -v ) echo "$version" ; exit 0 ;; --help | --h* | -h ) echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi dummy=dummy-$$ trap 'rm -f $dummy.c $dummy.o $dummy.rel $dummy; exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int dummy(){}" > $dummy.c for c in cc gcc c89 ; do ($c $dummy.c -c -o $dummy.o) >/dev/null 2>&1 if test $? = 0 ; then CC_FOR_BUILD="$c"; break fi done rm -f $dummy.c $dummy.o $dummy.rel if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 8/24/94.) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # Netbsd (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # Determine the machine/vendor (is the vendor relevant). case "${UNAME_MACHINE}" in amiga) machine=m68k-unknown ;; arm32) machine=arm-unknown ;; atari*) machine=m68k-atari ;; sun3*) machine=m68k-sun ;; mac68k) machine=m68k-apple ;; macppc) machine=powerpc-apple ;; hp3[0-9][05]) machine=m68k-hp ;; ibmrt|romp-ibm) machine=romp-ibm ;; *) machine=${UNAME_MACHINE}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE}" in i386|sparc|amiga|arm*|hp300|mvme68k|vax|atari|luna68k|mac68k|news68k|next68k|pc532|sun3*|x68k) if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit 0 ;; alpha:OSF1:*:*) if test $UNAME_RELEASE = "V4.0"; then UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` fi # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. cat <$dummy.s .data \$Lformat: .byte 37,100,45,37,120,10,0 # "%d-%x\n" .text .globl main .align 4 .ent main main: .frame \$30,16,\$26,0 ldgp \$29,0(\$27) .prologue 1 .long 0x47e03d80 # implver \$0 lda \$2,-1 .long 0x47e20c21 # amask \$2,\$1 lda \$16,\$Lformat mov \$0,\$17 not \$1,\$18 jsr \$26,printf ldgp \$29,0(\$26) mov 0,\$16 jsr \$26,exit .end main EOF $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null if test "$?" = 0 ; then case `./$dummy` in 0-0) UNAME_MACHINE="alpha" ;; 1-0) UNAME_MACHINE="alphaev5" ;; 1-1) UNAME_MACHINE="alphaev56" ;; 1-101) UNAME_MACHINE="alphapca56" ;; 2-303) UNAME_MACHINE="alphaev6" ;; 2-307) UNAME_MACHINE="alphaev67" ;; esac fi rm -f $dummy.s $dummy echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit 0 ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit 0 ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit 0 ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit 0;; amiga:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit 0 ;; arc64:OpenBSD:*:*) echo mips64el-unknown-openbsd${UNAME_RELEASE} exit 0 ;; arc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; hkmips:OpenBSD:*:*) echo mips-unknown-openbsd${UNAME_RELEASE} exit 0 ;; pmax:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; sgi:OpenBSD:*:*) echo mips-unknown-openbsd${UNAME_RELEASE} exit 0 ;; wgrisc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; *:OS/390:*:*) echo i370-ibm-openedition exit 0 ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit 0;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit 0;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit 0 ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit 0 ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; i86pc:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit 0 ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit 0 ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit 0 ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit 0 ;; atari*:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit 0 ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit 0 ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit 0 ;; sun3*:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mac68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvme68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvme88k:OpenBSD:*:*) echo m88k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit 0 ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit 0 ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit 0 ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit 0 ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit 0 ;; mips:*:*:UMIPS | mips:*:*:RISCos) sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD $dummy.c -o $dummy \ && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy echo mips-mips-riscos${UNAME_RELEASE} exit 0 ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit 0 ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit 0 ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit 0 ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit 0 ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit 0 ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit 0 ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit 0 ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit 0 ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit 0 ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit 0 ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i?86:AIX:*:*) echo i386-ibm-aix exit 0 ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit 0 ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy echo rs6000-ibm-aix3.2.5 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit 0 ;; *:AIX:*:[45]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit 0 ;; *:AIX:*:*) echo rs6000-ibm-aix exit 0 ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit 0 ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit 0 ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit 0 ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit 0 ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit 0 ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit 0 ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) case "${HPUX_REV}" in 11.[0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; esac ;; esac fi ;; esac if [ "${HP_ARCH}" = "" ]; then sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy` if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi rm -f $dummy.c $dummy fi ;; esac echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit 0 ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit 0 ;; 3050*:HI-UX:*:*) sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy echo unknown-hitachi-hiuxwe2 exit 0 ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit 0 ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit 0 ;; *9??*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit 0 ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit 0 ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit 0 ;; i?86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit 0 ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit 0 ;; hppa*:OpenBSD:*:*) echo hppa-unknown-openbsd exit 0 ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit 0 ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit 0 ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit 0 ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit 0 ;; CRAY*X-MP:*:*:*) echo xmp-cray-unicos exit 0 ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} exit 0 ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ exit 0 ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*T3D:*:*:*) echo alpha-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY-2:*:*:*) echo cray2-cray-unicos exit 0 ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit 0 ;; hp300:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; i?86:BSD/386:*:* | i?86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit 0 ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit 0 ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit 0 ;; *:FreeBSD:*:*) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit 0 ;; *:OpenBSD:*:*) echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` exit 0 ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit 0 ;; i*:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit 0 ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit 0 ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i386-pc-interix exit 0 ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit 0 ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit 0 ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; *:GNU:*:*) echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit 0 ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux exit 0 ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; mips:Linux:*:*) cat >$dummy.c < /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #ifdef __MIPSEB__ printf ("%s-unknown-linux-gnu\n", argv[1]); #endif #ifdef __MIPSEL__ printf ("%sel-unknown-linux-gnu\n", argv[1]); #endif return 0; } EOF $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy ;; ppc:Linux:*:*) # Determine Lib Version cat >$dummy.c < #if defined(__GLIBC__) extern char __libc_version[]; extern char __libc_release[]; #endif main(argc, argv) int argc; char *argv[]; { #if defined(__GLIBC__) printf("%s %s\n", __libc_version, __libc_release); #else printf("unknown\n"); #endif return 0; } EOF LIBC="" $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null if test "$?" = 0 ; then ./$dummy | grep 1\.99 > /dev/null if test "$?" = 0 ; then LIBC="libc1" ; fi fi rm -f $dummy.c $dummy echo powerpc-unknown-linux-gnu${LIBC} exit 0 ;; alpha:Linux:*:*) cat <$dummy.s .data \$Lformat: .byte 37,100,45,37,120,10,0 # "%d-%x\n" .text .globl main .align 4 .ent main main: .frame \$30,16,\$26,0 ldgp \$29,0(\$27) .prologue 1 .long 0x47e03d80 # implver \$0 lda \$2,-1 .long 0x47e20c21 # amask \$2,\$1 lda \$16,\$Lformat mov \$0,\$17 not \$1,\$18 jsr \$26,printf ldgp \$29,0(\$26) mov 0,\$16 jsr \$26,exit .end main EOF LIBC="" $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null if test "$?" = 0 ; then case `./$dummy` in 0-0) UNAME_MACHINE="alpha" ;; 1-0) UNAME_MACHINE="alphaev5" ;; 1-1) UNAME_MACHINE="alphaev56" ;; 1-101) UNAME_MACHINE="alphapca56" ;; 2-303) UNAME_MACHINE="alphaev6" ;; 2-307) UNAME_MACHINE="alphaev67" ;; esac objdump --private-headers $dummy | \ grep ld.so.1 > /dev/null if test "$?" = 0 ; then LIBC="libc1" fi fi rm -f $dummy.s $dummy echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit 0 ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit 0 ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit 0 ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit 0 ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit 0 ;; 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. ld_supported_emulations=`cd /; ld --help 2>&1 \ | sed -ne '/supported emulations:/!d s/[ ][ ]*/ /g s/.*supported emulations: *// s/ .*// p'` case "$ld_supported_emulations" in i?86linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit 0 ;; elf_i?86) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; i?86coff) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit 0 ;; esac # Either a pre-BFD a.out linker (linux-gnuoldld) # or one that does not give us useful --help. # GCC wants to distinguish between linux-gnuoldld and linux-gnuaout. # If ld does not provide *any* "supported emulations:" # that means it is gnuoldld. test -z "$ld_supported_emulations" && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0 case "${UNAME_MACHINE}" in i?86) VENDOR=pc; ;; *) VENDOR=unknown; ;; esac # Determine whether the default compiler is a.out or elf cat >$dummy.c < #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 printf ("%s-${VENDOR}-linux-gnu\n", argv[1]); # else printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]); # endif # else printf ("%s-${VENDOR}-linux-gnulibc1\n", argv[1]); # endif #else printf ("%s-${VENDOR}-linux-gnuaout\n", argv[1]); #endif return 0; } EOF $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 ;; # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions # are messed up and put the nodename in both sysname and nodename. i?86:DYNIX/ptx:4*:*) echo i386-sequent-sysv4 exit 0 ;; i?86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit 0 ;; i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit 0 ;; i?86:*:5:7*) # Fixed at (any) Pentium or better UNAME_MACHINE=i586 if [ ${UNAME_SYSTEM} = "UnixWare" ] ; then echo ${UNAME_MACHINE}-sco-sysv${UNAME_RELEASE}uw${UNAME_VERSION} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE} fi exit 0 ;; i?86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|egrep '^Machine.*Pent ?II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit 0 ;; i?86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit 0 ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit 0 ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit 0 ;; paragon:*:*:*) echo i860-intel-osf1 exit 0 ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit 0 ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit 0 ;; M68*:*:R3V[567]*:*) test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; 3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4.3${OS_REL} && exit 0 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4 && exit 0 ;; m68*:LynxOS:2.*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit 0 ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit 0 ;; i?86:LynxOS:2.*:* | i?86:LynxOS:3.[01]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit 0 ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit 0 ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit 0 ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit 0 ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit 0 ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit 0 ;; PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit 0 ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit 0 ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit 0 ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit 0 ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit 0 ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit 0 ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit 0 ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit 0 ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit 0 ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit 0 ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit 0 ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit 0 ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit 0 ;; *:Darwin:*:*) echo `uname -p`-apple-darwin${UNAME_RELEASE} exit 0 ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) if test "${UNAME_MACHINE}" = "x86pc"; then UNAME_MACHINE=pc fi echo `uname -p`-${UNAME_MACHINE}-nto-qnx exit 0 ;; *:QNX:*:4*) echo i386-pc-qnx exit 0 ;; NSR-[KW]:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit 0 ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit 0 ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit 0 ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit 0 ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit 0 ;; i?86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit 0 ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit 0 ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit 0 ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit 0 ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit 0 ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit 0 ;; *:ITS:*:*) echo pdp10-unknown-its exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm -f $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit 0 ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; c34*) echo c34-convex-bsd exit 0 ;; c38*) echo c38-convex-bsd exit 0 ;; c4*) echo c4-convex-bsd exit 0 ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: Maelstrom-3.0.7/Maelstrom.spec000644 000765 000024 00000004703 14007424445 016573 0ustar00valvestaff000000 000000 # Note that this is NOT a relocatable package %define name Maelstrom %define version 3.0.7 %define release 1 %define prefix /usr Summary: Simple DirectMedia Layer Name: %{name} Version: %{version} Release: %{release} Source0: %{name}-%{version}.tar.gz URL: http://www.libsdl.org/projects/Maelstrom Copyright: GPL Group: Games BuildRoot: /var/tmp/%{name}-buildroot %description Maelstrom is a rockin' asteroids game ported from the Macintosh Originally written by Andrew Welch of Ambrosia Software, and ported to UNIX and then SDL by Sam Lantinga %prep rm -rf ${RPM_BUILD_ROOT} %setup -q %build # Needed for snapshot releases. if [ ! -f configure ]; then CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%prefix else CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix fi if [ "$SMP" != "" ]; then (make "MAKE=make -k -j $SMP"; exit 0) make else make fi %install rm -rf $RPM_BUILD_ROOT make install prefix=$RPM_BUILD_ROOT/%{prefix} %clean rm -rf $RPM_BUILD_ROOT %post # Add desktop menu bar items function Add_DeskTop_MenuItem { desktop=$1; deskfile=$2 if [ -d "$desktop" ]; then desktop="$desktop/Games" if [ ! -d "$desktop" ]; then mkdir "$desktop" 2>/dev/null fi if [ -w "$desktop" ]; then echo "Creating $desktop/$deskfile" cat >"$desktop/$deskfile" <<__EOF__ # KDE Config File [KDE Desktop Entry] Name=Maelstrom Comment=Maelstrom Exec=/usr/bin/Maelstrom Icon=/usr/games/Maelstrom/icon.xpm Terminal=0 Type=Application __EOF__ fi fi } echo "=============================================================" echo "Adding desktop menu items ..." for gnomedir in "/opt/gnome" "/usr/share/gnome" "$HOME/.gnome" do Add_DeskTop_MenuItem "$gnomedir/apps" "maelstrom.desktop" done for kdedir in "/opt/kde" "/usr/share/kde" "$HOME/.kde" do Add_DeskTop_MenuItem "$kdedir/share/applnk" "maelstrom.kdelnk" done %postun echo "=============================================================" echo "Removing desktop menu items ..." for gnomedir in "/opt/gnome" "/usr/share/gnome" "$HOME/.gnome" do rm -f "$gnomedir/apps/Games/maelstrom.desktop" done for kdedir in "/opt/kde" "/usr/share/kde" "$HOME/.kde" do rm -f "$kdedir/share/applnk/Games/maelstrom.kdelnk" done %files %defattr(-, root, root) %doc COPYING* CREDITS* README* Changelog Docs %{prefix}/bin/Maelstrom %{prefix}/games/Maelstrom %changelog * Tue Sep 21 1999 Sam Lantinga - first attempt at a spec file Maelstrom-3.0.7/depcomp000755 000765 000024 00000056020 13336702040 015322 0ustar00valvestaff000000 000000 #! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2017-09-16.17; # UTC # Copyright (C) 1999-2018 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: Maelstrom-3.0.7/netlogic/000755 000765 000024 00000000000 14007426743 015557 5ustar00valvestaff000000 000000 Maelstrom-3.0.7/Docs/000755 000765 000024 00000000000 14007424445 014640 5ustar00valvestaff000000 000000 Maelstrom-3.0.7/missing000755 000765 000024 00000014213 07015153223 015342 0ustar00valvestaff000000 000000 #! /bin/sh # Common stub for a few missing GNU programs while installing. # Copyright (C) 1996, 1997 Free Software Foundation, Inc. # Franc,ois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi case "$1" in -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file yacc create \`y.tab.[ch]', if possible, from existing .[ch]" ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing - GNU libit 0.0" ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; aclocal) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acinclude.m4' or \`configure.in'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`configure.in'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acconfig.h' or \`configure.in'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' configure.in` test -z "$files" && files="config.h" touch_files= for f in $files; do case "$f" in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi if [ ! -f y.tab.h ]; then echo >y.tab.h fi if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` fi touch $file ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and you do not seem to have it handy on your system. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequirements for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 Maelstrom-3.0.7/fastrand.h000644 000765 000024 00000000244 06552534531 015727 0ustar00valvestaff000000 000000 /* Declarations for the fast random functions */ extern void SeedRandom(Uint32 seed); extern Uint16 FastRandom(Uint16 range); extern Uint32 GetRandSeed(void); Maelstrom-3.0.7/configure.in000644 000765 000024 00000005223 14007026103 016250 0ustar00valvestaff000000 000000 dnl Process this file with autoconf to produce a configure script. AC_INIT(README.txt) dnl Detect the canonical target build environment AC_CANONICAL_HOST AC_CANONICAL_TARGET dnl Setup for automake AM_INIT_AUTOMAKE(Maelstrom, 3.0.7) dnl Check for tools AC_PROG_MAKE_SET AC_PROG_CC AC_PROG_CXX AC_PROG_RANLIB AC_PROG_INSTALL dnl The alpha architecture needs special flags for binary portability case "$target" in alpha*-*-linux*) CFLAGS="$CFLAGS -mcpu=ev4 -Wa,-mall" ;; esac dnl Figure out which math and networking libraries to use case "$target" in *-*-mingw32*) MATHLIB="" INETLIB="-lwsock32" ;; *-*-beos*) MATHLIB="" INETLIB="" ;; *-*-darwin*) MATHLIB="" INETLIB="" ;; *) MATHLIB="-lm" INETLIB="" ;; esac AC_SUBST(MATHLIB) AC_SUBST(INETLIB) dnl Check for SDL SDL_VERSION=2.0.14 AM_PATH_SDL2($SDL_VERSION, :, AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]) ) CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" dnl Check for SDL_net AC_CHECK_LIB(SDL2_net, SDLNet_Init, have_SDL_net=yes) if test x$have_SDL_net = xyes; then LIBS="$LIBS -lSDL2_net" else AC_MSG_ERROR([*** Can't find the SDL_net library The SDL_net library can be found at: http://www.libsdl.org/projects/SDL_net/ ]) fi dnl Check for RSA checksum authentication AC_MSG_CHECKING(for RSA checksum authentication) if test -d $HOME/RSA; then CFLAGS="$CFLAGS -DUSE_CHECKSUM -I$HOME/RSA/source" LIBS="$LIBS $HOME/RSA/install/rsaref.a" use_checksum=yes else use_checksum=no fi AC_MSG_RESULT($use_checksum) dnl Add the include directories for the object libraries CFLAGS="$CFLAGS -I\$(top_srcdir)" CFLAGS="$CFLAGS -I\$(top_srcdir)/netlogic" CFLAGS="$CFLAGS -I\$(top_srcdir)/screenlib" CFLAGS="$CFLAGS -I\$(top_srcdir)/maclib" dnl Set up the icon object file, for Mingw32 case "$target" in *-*-mingw32*) cp ico_o ico.o ICONOBJ="ico.o" ;; *) ICONOBJ="" ;; esac AC_SUBST(ICONOBJ) dnl Set up the game data install directory case "$target" in *-*-mingw32*) GAME_INSTALLDIR="." ICONOBJ="ico.o" ;; *-*-beos*) ac_default_prefix=/boot/beos GAME_INSTALLDIR="\$(prefix)/games/$PACKAGE" ;; *) GAME_INSTALLDIR="\$(prefix)/games/$PACKAGE" ;; esac AC_SUBST(GAME_INSTALLDIR) CFLAGS="$CFLAGS -DLIBDIR=\\\"$GAME_INSTALLDIR\\\"" dnl C++ flags are the same as the C flags CXXFLAGS="$CXXFLAGS $CFLAGS" # Finally create all the generated files AC_OUTPUT([ Makefile netlogic/Makefile screenlib/Makefile maclib/Makefile Images/Makefile Docs/Makefile Maelstrom.spec ]) Maelstrom-3.0.7/CREDITS.txt000644 000765 000024 00000000612 14007026240 015574 0ustar00valvestaff000000 000000 The original version of this game was written for the Macintosh by Andrew Welch, of Ambrosia Software. It was ported to Linux and then to the Simple DirectMedia Layer library by Sam Lantinga. This would have never come about without the help and encouragement of many people, too numerous to mention here. Thank you everybody, you know who you are! :) 11/18/1999 Sam Lantinga Maelstrom-3.0.7/Makefile.am000644 000765 000024 00000003672 14007047502 016007 0ustar00valvestaff000000 000000 bin_PROGRAMS = Maelstrom Maelstrom-netd Maelstrom_SOURCES = \ Maelstrom.h \ Maelstrom_Globals.h \ buttonlist.h \ checksum.cpp \ checksum.h \ colortable.h \ controls.cpp \ controls.h \ dialog.cpp \ dialog.h \ fastrand.cpp \ fastrand.h \ init.cpp \ load.cpp \ load.h \ logic.h \ main.cpp \ myerror.cpp \ myerror.h \ netscore.cpp \ netscore.h \ public_key.h \ rect.cpp \ rect.h \ scores.cpp \ scores.h LOGIC = netlogic Maelstrom_LDADD = \ $(LOGIC)/liblogic.a \ screenlib/libSDLscreen.a \ maclib/libSDLmac.a \ @MATHLIB@ @INETLIB@ @ICONOBJ@ SUBDIRS = $(LOGIC) screenlib maclib EXTRA_DIST = \ autogen.sh \ VisualC.zip \ CREDITS.txt \ Changelog \ README.txt \ README.joystick.txt \ README.network.txt \ README.options.txt \ COPYING.txt \ COPYING.GPL \ COPYING.GPL.txt \ Maelstrom_Fonts \ Maelstrom_Sounds \ Maelstrom_Sprites \ ico_o \ icon.bmp icon.xpm \ Maelstrom.entitlements \ Maelstrom.spec DIST_SUBDIRS = $(SUBDIRS) Images Docs # Special install rule for the game install: sh mkinstalldirs $(DESTDIR)@GAME_INSTALLDIR@ install -m 755 Maelstrom $(DESTDIR)@GAME_INSTALLDIR@/Maelstrom make install_gamedata target=$(DESTDIR)@GAME_INSTALLDIR@ make install_gamedocs target=$(DESTDIR)@GAME_INSTALLDIR@ install_gamedata: sh mkinstalldirs $(target)/ sh mkinstalldirs $(target)/Images cp -v Images/*.bmp $(target)/Images cp -v Images/*.cicn $(target)/Images cp -v Maelstrom_Fonts \ Maelstrom_Sounds \ Maelstrom_Sprites \ icon.bmp icon.xpm $(target)/ install_gamedocs: sh mkinstalldirs $(target)/ sh mkinstalldirs $(target)/Docs cp -v Docs/*.txt $(target)/Docs cp -v README* $(target)/ cp -v COPYING.txt $(target)/COPYING cp -v COPYING.GPL $(target)/ # Rule to build tar-gzipped distribution package $(PACKAGE)-$(VERSION).tar.gz: dist # Rule to build RPM distribution package rpm: $(PACKAGE)-$(VERSION).tar.gz rpm -ta $(PACKAGE)-$(VERSION).tar.gz Maelstrom-3.0.7/netscore.cpp000644 000765 000024 00000011673 14007022766 016306 0ustar00valvestaff000000 000000 /* This module registers a high score with the official Maelstrom score server */ #include #include "SDL_net.h" #include "Maelstrom_Globals.h" #include "netscore.h" #include "checksum.h" #define NUM_SCORES 10 // Copied from scores.cc static TCPsocket Goto_ScoreServer(const char *server, int port); static void Leave_ScoreServer(TCPsocket remote); /* This function actually registers the high scores */ void RegisterHighScore(Scores high) { TCPsocket remote; int i, n; unsigned char key[KEY_LEN]; unsigned int keynums[KEY_LEN]; char netbuf[1024], *crc; remote = Goto_ScoreServer(SCORE_HOST, SCORE_PORT); if ( remote == NULL ) { error( "Warning: Couldn't connect to Maelstrom Score Server.\r\n"); error("-- High Score not registered.\r\n"); return; } /* Read the welcome banner */ SDLNet_TCP_Recv(remote, netbuf, 1024); /* Get the key... */ SDL_strlcpy(netbuf, "SHOWKEY\n", sizeof(netbuf)); SDLNet_TCP_Send(remote, netbuf, strlen(netbuf)); if ( SDLNet_TCP_Recv(remote, netbuf, 1024) <= 0 ) { error("Warning: Score Server protocol error.\r\n"); error("-- High Score not registered.\r\n"); return; } for ( i=0, n=0, crc=netbuf; i < KEY_LEN; ++i, ++n ) { key[i] = 0xFF; if ( ! (crc=strchr(++crc, ':')) || (SDL_sscanf(crc, ": 0x%x", &keynums[i]) <= 0) ) break; } /*error("%d items read:\n", n);*/ if ( n != KEY_LEN ) error("Warning: short authentication key.\n"); for ( i=0; i 0 ) { netbuf[n] = '\0'; if ( strncmp(netbuf, "Accepted!", 9) != 0 ) { error("New high score was rejected: %s", netbuf); } } else perror("Read error on socket"); Leave_ScoreServer(remote); } /* This function is just a hack */ int GetLine(TCPsocket remote, char *buffer, int maxlen) { int packed = 0; static int lenleft, len; static char netbuf[1024], *ptr=NULL; if ( buffer == NULL ) { lenleft = 0; return(0); } if ( lenleft <= 0 ) { len = SDLNet_TCP_Recv(remote, netbuf, 1024); if ( len <= 0 ) return(-1); lenleft = len; ptr = netbuf; } while ( (*ptr != '\n') && (*ptr != '\r') ) { if ( lenleft <= 0 ) { len = SDLNet_TCP_Recv(remote, netbuf, 1024); if ( len <= 0 ) { *buffer = '\0'; return(packed); } lenleft = len; ptr = netbuf; } if ( maxlen == 0 ) { *buffer = '\0'; return(packed); } *(buffer++) = *(ptr++); ++packed; --maxlen; --lenleft; } ++ptr; --lenleft; *buffer = '\0'; return(packed); } /* Load the scores from the network score server */ int NetLoadScores(void) { TCPsocket remote; int i; char netbuf[1024], *ptr; remote = Goto_ScoreServer(SCORE_HOST, SCORE_PORT); if ( remote == NULL ) { error( "Warning: Couldn't connect to Maelstrom Score Server.\r\n"); return(-1); } /* Read the welcome banner */ SDLNet_TCP_Recv(remote, netbuf, 1024); /* Send our request */ SDL_strlcpy(netbuf, "SHOWSCORES\n", sizeof(netbuf)); SDLNet_TCP_Send(remote, netbuf, strlen(netbuf)); /* Read the response */ GetLine(remote, NULL, 0); GetLine(remote, netbuf, 1024-1); memset(&hScores, 0, NUM_SCORES*sizeof(Scores)); for ( i=0; i= netbuf) && isspace(*tail) ) *(tail--) = '\0'; SDL_strlcpy(hScores[i].name, netbuf, sizeof(hScores[i].name)); if ( (len=strlen(netbuf)) > (int)(sizeof(hScores[i].name)-1) ) len = (sizeof(hScores[i].name)-1); hScores[i].name[len] = '\0'; *ptr = '\t'; break; } } if ( SDL_sscanf(ptr, "%u %u", &hScores[i].score, &hScores[i].wave) != 2 ) { error( "Warning: Couldn't read complete score list!\r\n"); error("Line was: %s", netbuf); break; } } Leave_ScoreServer(remote); return(0); } static TCPsocket Goto_ScoreServer(const char *server, int port) { TCPsocket remote; IPaddress remote_address; if ( SDLNet_Init() < 0 ) { return(NULL); } /* * Fill in the structure "serv_addr" with the address of the * server that we want to connect with. */ SDLNet_ResolveHost(&remote_address, server, port); if ( remote_address.host == INADDR_NONE ) { /*error("%s: host name error.\n", server);*/ return(NULL); } /* * Open a TCP socket (an Internet stream socket). */ remote = SDLNet_TCP_Open(&remote_address); return(remote); } static void Leave_ScoreServer(TCPsocket remote) { SDLNet_TCP_Close(remote); SDLNet_Quit(); } Maelstrom-3.0.7/Maelstrom.entitlements000644 000765 000024 00000000712 14006435551 020347 0ustar00valvestaff000000 000000 com.apple.security.app-sandbox com.apple.security.device.bluetooth com.apple.security.device.usb com.apple.security.network.client com.apple.security.network.server Maelstrom-3.0.7/COPYING.GPL000644 000765 000024 00000035451 07015173545 015437 0ustar00valvestaff000000 000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Maelstrom-3.0.7/ico_o000644 000765 000024 00000004726 07022376062 014774 0ustar00valvestaff000000 000000 L .rsrcp < @PH8 PH88H8H8hH8 MAELSTROM\ ( @{{{ssskkkcccZZZRRRJJJBBB999111)))!!!ss{{{kkscckRRZJJRBBJ99B119))1!!)!{{s{sskkkcZZRccZRRJJJBs{{kBB999111)ccRs))!ssZJJ9cccJBB1{{ZZZB!!99)kkJRR9ccBJJ1BB)kkBRR1cc9ssBZZ1kk9RR)BB!cc1ZZ)99RR!)) (  "U. =     P3    *   =V + 3 /M$ 2 J 4  ES'#R0   !&X8 Q5[E= &32+U9 R2=5%4 /$U$2R&*4O#4 .rsrcMaelstrom-3.0.7/config.sub000755 000765 000024 00000065567 07554415302 015757 0ustar00valvestaff000000 000000 #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. timestamp='2001-03-19' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # 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 # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . # # 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. # 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. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 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." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit 0 ;; --version | -v ) echo "$version" ; exit 0 ;; --help | --h* | -h ) echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit 0;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | storm-chaos* | os2-emx*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -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) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. tahoe | i860 | ia64 | m32r | m68k | m68000 | m88k | ns32k | arc \ | arm | arme[lb] | arm[bl]e | armv[2345] | armv[345][lb] | strongarm | xscale \ | pyramid | mn10200 | mn10300 | tron | a29k \ | 580 | i960 | h8300 \ | x86 | ppcbe | mipsbe | mipsle | shbe | shle \ | hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \ | hppa64 \ | alpha | alphaev[4-8] | alphaev56 | alphapca5[67] \ | alphaev6[78] \ | we32k | ns16k | clipper | i370 | sh | sh[34] \ | powerpc | powerpcle \ | 1750a | dsp16xx | pdp10 | pdp11 \ | mips16 | mips64 | mipsel | mips64el \ | mips64orion | mips64orionel | mipstx39 | mipstx39el \ | mips64vr4300 | mips64vr4300el | mips64vr4100 | mips64vr4100el \ | mips64vr5000 | miprs64vr5000el | mcore | s390 | s390x \ | sparc | sparclet | sparclite | sparc64 | sparcv9 | v850 | c4x \ | thumb | d10v | d30v | fr30 | avr | openrisc | tic80 \ | pj | pjl | h8500) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | z8k | v70 | w65) ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i[234567]86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. # FIXME: clean up the formatting here. vax-* | tahoe-* | i[234567]86-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \ | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | c[123]* \ | arm-* | armbe-* | armle-* | armv*-* | strongarm-* | xscale-* \ | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \ | power-* | none-* | 580-* | cray2-* | h8300-* | h8500-* | i960-* \ | xmp-* | ymp-* \ | x86-* | ppcbe-* | mipsbe-* | mipsle-* | shbe-* | shle-* \ | hppa-* | hppa1.0-* | hppa1.1-* | hppa2.0-* | hppa2.0w-* \ | hppa2.0n-* | hppa64-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphapca5[67]-* \ | alphaev6[78]-* \ | we32k-* | cydra-* | ns16k-* | pn-* | np1-* | xps100-* \ | clipper-* | orion-* \ | sparclite-* | pdp10-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \ | sparc64-* | sparcv9-* | sparc86x-* | mips16-* | mips64-* | mipsel-* \ | mips64el-* | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \ | mipstx39-* | mipstx39el-* | mcore-* \ | f30[01]-* | f700-* | s390-* | s390x-* | sv1-* | t3e-* \ | [cjt]90-* \ | m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \ | thumb-* | v850-* | d30v-* | tic30-* | tic80-* | c30-* | fr30-* \ | bs2000-* | tic54x-* | c54x-* | x86_64-* | pj-* | pjl-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | ymp) basic_machine=ymp-cray os=-unicos ;; cray2) basic_machine=cray2-cray os=-unicos ;; [cjt]90) basic_machine=${basic_machine}-cray os=-unicos ;; crds | unos) basic_machine=m68k-crds ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i[34567]86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i[34567]86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i[34567]86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i[34567]86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mipsel*-linux*) basic_machine=mipsel-unknown os=-linux-gnu ;; mips*-linux*) basic_machine=mips-unknown os=-linux-gnu ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; mmix*) basic_machine=mmix-knuth os=-mmixware ;; monitor) basic_machine=m68k-rom68k os=-coff ;; msdos) basic_machine=i386-pc os=-msdos ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5 | k5 | k6 | nexgen) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon) basic_machine=i686-pc ;; pentiumii | pentium2) basic_machine=i686-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sparclite-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=t3e-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; tower | tower-32) basic_machine=m68k-ncr ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xmp) basic_machine=xmp-cray os=-unicos ;; xps | xps100) basic_machine=xps100-honeywell ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; mips) if [ x$os = x-linux-gnu ]; then basic_machine=mips-unknown else basic_machine=mips-mips fi ;; romp) basic_machine=romp-ibm ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh3 | sh4) basic_machine=sh-unknown ;; sparc | sparcv9) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; c4x*) basic_machine=c4x-none os=-coff ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then 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. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* | -os2*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i[34567]86-*) ;; *) os=-nto$os ;; esac ;; -nto*) os=-nto-qnx ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-ibm) os=-aix ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -ptx*) vendor=sequent ;; -vxsim* | -vxworks*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: Maelstrom-3.0.7/rect.h000644 000765 000024 00000001015 07163440033 015047 0ustar00valvestaff000000 000000 #ifndef _rect_h #define _rect_h /* Avoid collisions with Mac data structures */ #define Rect MaelstromRect #define SetRect SetMaelstromRect #define OffsetRect OffsetMaelstromRect #define InsetRect InsetMaelstromRect typedef struct { short top; short left; short bottom; short right; } Rect; /* Functions exported from rect.cpp */ extern void SetRect(Rect *R, int left, int top, int right, int bottom); extern void OffsetRect(Rect *R, int x, int y); extern void InsetRect(Rect *R, int x, int y); #endif /* _rect_h */ Maelstrom-3.0.7/compile000755 000765 000024 00000016327 13336702040 015331 0ustar00valvestaff000000 000000 #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2017-09-16.17; # UTC # Copyright (C) 1999-2018 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: Maelstrom-3.0.7/scores.cpp000644 000765 000024 00000014705 14007425262 015757 0ustar00valvestaff000000 000000 /* This file handles the cheat dialogs and the high score file */ #ifdef unix #include #include #endif #include #include "SDL_endian.h" #include "Maelstrom_Globals.h" #include "load.h" #include "dialog.h" #define MAELSTROM_SCORES "Maelstrom-Scores" #define NUM_SCORES 10 // Do not change this! /* Everyone can write to scores file if defined to 0 */ #define SCORES_PERMMASK 022 #define CLR_DIALOG_WIDTH 281 #define CLR_DIALOG_HEIGHT 111 Bool gNetScores = 0; Scores hScores[NUM_SCORES]; void LoadScores(void) { SavePath path; SDL_RWops *scores_src; int i; /* Try to load network scores, if we can */ if ( gNetScores ) { if ( NetLoadScores() == 0 ) return; else { mesg("Using local score file\n\n"); gNetScores = 0; } } memset(&hScores, 0, sizeof(hScores)); scores_src = SDL_RWFromFile(path.Path(MAELSTROM_SCORES), "rb"); if ( scores_src != NULL ) { for ( i=0; iNewFont("Chicago", 12)) == NULL ) { error("Can't use Chicago font!\n"); return(0); } if ( (splash = Load_Title(screen, 102)) == NULL ) { error("Can't load score zapping splash!\n"); delete chicago; return(0); } dialog = new Maclike_Dialog(X, Y, CLR_DIALOG_WIDTH, CLR_DIALOG_HEIGHT, screen); dialog->Add_Image(splash, 4, 4); do_clear = 0; clear = new Mac_Button(99, 74, BUTTON_WIDTH, BUTTON_HEIGHT, "Clear", chicago, fontserv, Clear_callback); dialog->Add_Dialog(clear); cancel = new Mac_DefaultButton(99+BUTTON_WIDTH+14, 74, BUTTON_WIDTH, BUTTON_HEIGHT, "Cancel", chicago, fontserv, Cancel_callback); dialog->Add_Dialog(cancel); /* Run the dialog box */ dialog->Run(); /* Clean up and return */ screen->FreeImage(splash); delete chicago; delete dialog; if ( do_clear ) { memset(hScores, 0, sizeof(hScores)); SaveScores(); gLastHigh = -1; } return(do_clear); } #define LVL_DIALOG_WIDTH 346 #define LVL_DIALOG_HEIGHT 136 static int do_level; static int Level_callback(void) { do_level = 1; return(1); } static int Cancel2_callback(void) { do_level = 0; return(1); } int GetStartLevel(void) { static const char *Ltext1 = "Enter the level to start from (1-40). This"; static const char *Ltext2 = "disqualifies you from a high score..."; static const char *Ltext3 = "Level:"; static const char *Ltext4 = "Lives:"; MFont *chicago; Maclike_Dialog *dialog; SDL_Surface *splash; SDL_Surface *text1, *text2, *text3, *text4; static const char *turbotext = "Turbofunk On"; int x, y, X, Y; Mac_Button *doit; Mac_Button *cancel; Mac_NumericEntry *numeric_entry; Mac_CheckBox *checkbox; int startlevel=10, startlives=5, turbofunk=0; /* Set up all the components of the dialog box */ if ( (chicago = fontserv->NewFont("Chicago", 12)) == NULL ) { error("Can't use Chicago font!\n"); return(0); } if ( (splash = GetCIcon(screen, 103)) == NULL ) { error("Can't load alien level splash!\n"); delete chicago; return(0); } X=(SCREEN_WIDTH-LVL_DIALOG_WIDTH)/2; Y=(SCREEN_HEIGHT-LVL_DIALOG_HEIGHT)/2; dialog = new Maclike_Dialog(X, Y, LVL_DIALOG_WIDTH, LVL_DIALOG_HEIGHT, screen); x = y = 14; dialog->Add_Image(splash, x, y); x += (splash->w+14); text1 = fontserv->TextImage(Ltext1,chicago,STYLE_NORM,0x00,0x00,0x00); dialog->Add_Image(text1, x, y); y += (text1->h+2); text2 = fontserv->TextImage(Ltext2, chicago, STYLE_NORM, 0x00, 0x00, 0x00); dialog->Add_Image(text2, x, y); do_level = 0; cancel = new Mac_Button(166, 96, 73, BUTTON_HEIGHT, "Cancel", chicago, fontserv, Cancel2_callback); dialog->Add_Dialog(cancel); doit = new Mac_DefaultButton(166+73+14, 96, BUTTON_WIDTH, BUTTON_HEIGHT, "Do it!", chicago, fontserv, Level_callback); dialog->Add_Dialog(doit); numeric_entry = new Mac_NumericEntry(X, Y, chicago, fontserv); numeric_entry->Add_Entry(78, 60, 3, 1, &startlevel); text3 = fontserv->TextImage(Ltext3,chicago,STYLE_NORM,0x00,0x00,0x00); dialog->Add_Image(text3, 78-text3->w-2, 60+3); numeric_entry->Add_Entry(78, 86, 3, 0, &startlives); text4 = fontserv->TextImage(Ltext4,chicago,STYLE_NORM,0x00,0x00,0x00); dialog->Add_Image(text4, 78-text3->w-2, 86+3); dialog->Add_Dialog(numeric_entry); checkbox = new Mac_CheckBox(&turbofunk, 136, 64, turbotext, chicago, fontserv); dialog->Add_Dialog(checkbox); /* Run the dialog box */ dialog->Run(EXPAND_STEPS); /* Clean up and return */ screen->FreeImage(splash); fontserv->FreeText(text1); fontserv->FreeText(text2); fontserv->FreeText(text3); fontserv->FreeText(text4); delete chicago; delete dialog; if ( do_level ) { if ( ! startlives || (startlives > 40) ) startlives = 3; gStartLives = startlives; if ( startlevel > 40 ) startlevel = 0; gStartLevel = startlevel; gNoDelay = turbofunk; return(gStartLevel); } return(0); } Maelstrom-3.0.7/README.options.txt000644 000765 000024 00000004571 14007026161 017140 0ustar00valvestaff000000 000000 Over the course of developing Maelstrom, it has accumulated quite a few command line and compile-time options. Multiplayer Commmand Line Options: -- Only supported if network play is compiled in. -player N[@host][:port] This tells Maelstrom that it is playing a network game, and that player N is at host "host" -server N@host[:port] This option tells Maelstrom to use a network address server at host "host" for a multiplayer game with N players. -deathmatch [N] A multiplayer game continues until someone gets N frags. A frag is 3 shots at a player. Command Line Options: -netscores This option tells Maelstrom to use the Internet Maelstrom Score Server for the high score list. -printscores This option prints out a list of the current high scores. If used with the -netscores option, it will will connect to the Internet Maelstrom Score Server and print out the world-wide Maelstrom high scores. -display This option runs Maelstrom on the given X11 display. It is disabled if Maelstrom is compiled with -DFORCE_XSHM -privatecmap Runs Maelstrom with a private (custom) colormap. This prevents Maelstrom from locking up all of the colors on your display. It is only useful on 256 color (pseudo-color) displays. -nofade This option prevents Maelstrom from doing the screen fading. This is useful if you find screen fading annoying. -gamma [0-8] Sets the gamma correction level for Maelstrom. The higher the gamma correction, the brighter Maelstrom will appear on your monitor. If no gamma level is given, Maelstrom will print the current gamma level saved in your custom configuration. Once this option is used, the gamma correction level is saved, and this option doesn't need to be used later unless you want to change it again. -fullscreen This option puts a big black border around the Maelstrom screen, and centers Maelstrom within it. This help create a "full screen" effect on large displays. -version This option prints the version of the Maelstrom binary. -speedtest This option will run Maelstrom in a graphics test mode. It prints the number of milliseconds it takes for your graphics display to display a full 48-frame, 360 degree rotation of your ship. It is for comparative information only. Maelstrom-3.0.7/public_key.h000644 000765 000024 00000003173 06234116032 016244 0ustar00valvestaff000000 000000 /* RSA Public Key */ static R_RSA_PUBLIC_KEY public_key = { /* bits */ 512, /* modulus */ { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x68, 0x99, 0xB7, 0x4E, 0x93, 0xE1, 0x51, 0x26, 0x1A, 0x15, 0xB6, 0xF7, 0xE4, 0x12, 0xF8, 0xFE, 0x0F, 0x41, 0x5C, 0x31, 0x0B, 0xD1, 0x7B, 0x20, 0x10, 0x0D, 0x73, 0xD8, 0x05, 0xAE, 0x96, 0x32, 0x49, 0x54, 0x57, 0xD0, 0x15, 0x77, 0xD2, 0x33, 0x90, 0xF9, 0x44, 0x30, 0xCB, 0xE3, 0x3E, 0xF0, 0x63, 0xF7, 0x49, 0x23, 0xC1, 0xF2, 0x27, 0x66, 0x13, 0xCB, 0xCC, 0x54, 0x1B, 0x1E, 0xB9, }, /* exponent */ { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, }, }; Maelstrom-3.0.7/rect.cpp000644 000765 000024 00000000563 06552534531 015421 0ustar00valvestaff000000 000000 #include "rect.h" void SetRect(Rect *R, int left, int top, int right, int bottom) { R->left = left; R->top = top; R->right = right; R->bottom = bottom; } void OffsetRect(Rect *R, int x, int y) { R->left += x; R->top += y; R->right += x; R->bottom += y; } void InsetRect(Rect *R, int x, int y) { R->left += x; R->top += y; R->right -= x; R->bottom -= y; } Maelstrom-3.0.7/logic.h000644 000765 000024 00000001322 14006022350 015200 0ustar00valvestaff000000 000000 /* Game Logic interface routines and variables */ #include "netlogic.h" /* From logic.cpp */ extern void LogicUsage(void); extern int InitLogicData(void); extern int LogicParseArgs(char ***argvptr, int *argcptr); extern int InitLogic(void); extern int InitPlayerSprites(void); extern void HaltLogic(void); extern void SetControl(unsigned char which, int toggle); extern int SpecialKey(SDL_Keysym key); extern int GetScore(void); /* From game.cpp */ extern void NewGame(void); /* From about.cpp */ extern void DoAbout(void); /* From blit.cpp (fastlogic) player.cpp (netlogic) */ extern Uint8 gPlayerShotColors[]; extern SDL_Surface *gPlayerShot; extern Uint8 gEnemyShotColors[]; extern SDL_Surface *gEnemyShot; Maelstrom-3.0.7/Maelstrom_Sounds000644 000765 000024 00001447063 06552534531 017214 0ustar00valvestaff000000 000000 JIn01Ě3Maelstrom SoundseSndzMaelSndzMael4hN3  ͘ ΜE6 : ~ Q+wE<~~}~}}z||}}wrpypssqtpstlgafrctjksfhggrwase]YlsZsv[jkaulash`|tWh~\Zw]`vafvgj|w]]lvZ]j}pddcvz`cdp{pXYp{iQDUt̪uR6'G}ӾT1 QɇA-UDzeF1;OZyz[VVPV_hvx\LE=?L[t³oQGGDSoiHKbTbwzhN\dY{jcN@HSYftŹzbMDCDJOMRbqĮraPGEB<5+.>Ri˿lUG=4015BSfv}tlbYSOJFDDFJOZk~zreXPLGECCGP[hucV_\\d^\hs}|~}slgfipxxpigghkib_bchkjh_hxsqust~ssojryvncYY_kpmunSO`nttyyzty}twtnp\YPQdr{|g]OTs{cYlƤcCfȷnL7CjǟiG/8]H426bùlC2:VŰnM8Hff]SCPocQSLLcvc]_eujSOO[znR>:Fcl[LCPn½iJCLjeF5@bnaXV[g}wYJMWowfY]i{|odbdl~rs}wlouhZ`hzxylXTT^s|yzbZ^cw{wllru~txulXW^dw|type\]cj||yuokfnyqegnpu{twync\j{un|xj_PVvucXcxyoxxhWWZ^mxyo`X[^`kw|fXTTUYdpsv}jYTQNQ]fjruj\Vexxruvv|oZK>Edzv|a?>B>X{yiI?A@QvzjXHDIRe|xunfe_UU\bnqcXNHKV`_`ny|hXKCCHWnudRDADJYmse[SNIKVdp}l_UNOSW\`ektzj]YWVY\[W\iw|i\QJKNQZfpw}vk`VGBSegn|}tqwyrdSSTJMVW_mviQEHKKHCV}yxy}vf^YNHHIQetqnp{tiffb[VY]gq_^`cmw~yg[ZZ\gxi[[]]gs|xi^\\^dp}jYURUcsyqg\RQT\i{n\OOX`n}}ulaUU^clzufTIKRYgy|si^W^hp|kUGHLTboxocfiku}}oYQbppx|srzzzz|{xtrrsrrv|}{{zuqvxx{vv}}vvxvwxtmkkhku}~z{}zutstx|}zqha]_gq{yvxwtwwrmdacgmsuuvx}~{{rnrolrx}}unlnprqle\TSau~meZV_l{}wuy{pe`^_dlt}wpnz}{{rpnlotzwsplq|yqjeglt}{gWRRRPPV`my{rke_\[\bkur`a_WY^_cc^[[cqwmirvsutle_YX]hs|}sk]PNPYafs}|tf]VV^^Y^dksy~zsonlieeged`]clw~}|qg_]\Z\akqe_^[YXYg|~xn^SXhljls|rknzzl[WZ]itwuzxuysc`coxw|~zz}{x|~o`]\erujcbhnqsxzww~oeZUZkvlhimsxz|{z|k_Y[i{|ohfgnu|~zsru~qhcfovypggjhm{~|ywvvy~tjb\_l|~upllnqrojfhmv}i`agoz~|{ywvrmfcdhqzd]_bjx~ztof_^_etylccjqy{wuqtyunqx|}skgcagq|qfdcgpy~}|yxupkg`\ew~yvvwvssph`cq~|~~yy|{qhc__gs~yrpqtuzxrj_akqx|yurmeeikqz}qqu|sijnt{}qfba^`hruigkmt|uwxwztfabbdnz{rhdddhu}pjjkr}wkjjhlu}}sigjms}}pgeddjs|umkjlry~ztlfegiozwneekqw~ugcabm{wvuqsyzz~pc]]akwshecbelw}xrmklmpzyslknsz~ujb^]coxomjgn|unnqy~}ztka\\\fu}~wtolquw|}rjd`_abbbgqwysuz~}vphdfjou}tib_`bdghhlsyzlimtxwvvtqonikt}wojdbbbdnwxy~nedejlrwyxurqruz}ysmjgfgmqsz{sjddfkotwzzzz{}~~}wspmlmptvy{}~ukfgmsz}}yvuyzvsqppppqsuxxwy~{upqsvxvvz|zyy{~zvromllnqtwz{z|~ztpkjlpv{}|}{wwz|}zwtrsuwz|}}}~sjijiku~yutrsuw{wtsuxy{~}{wuvy|}xspoptx|~xvxz~xrqrrtz~|uruy|xusstx|}~xtpns||vrqrv{~xtrqrv{}xxwx{~zwtstuwy{}~zvvw{}{zywvy||~{utqqtz~}{zwwx{~{yxwvvx{|~yvsqsx~zxwxxyz{}}}}xsqqsvz~~}{zz{}}{zyz{|{zz|}wuttw{~}|{zyxwwxy{~|xustwxz|}}||}~~}|{{{zywwwy|}||{|~}{yxvuvwy{}}zxwwwxz}~}}||{{{{{{{{||}~~|zzyyyyz{~}zyxxz|~}zxwwxz}~~~~~|{yy{|~|{zz|}~|{yxz}~}{{{|~~|{zz{|~~|{{z|~~}{|}}~}{zz{|~}|{||}~~~|{zz|~}|}}~~|{{{|~}||||}~}{z{{}~~}}~~~~~~|||||}~}}|}~~~~|{{|}~~~~~~~}~~~~~~}}}}}~~}}}}~~~}}}~~~~~~~~~~~~~~~~~~~&JQ& +wE&&QE&T~eW8<\©il6 !hY~8VY8)T͋_{< 6i{M5f-$G~`#85MQhbGh/5M MiTK&]] !_fMQwlbB ',_K !f\ -w`#,YVQS'tZ*{e,A}23͏H/D{8 c-0ft 2{{'9ob-#GWG9nH*5\G QŹ,5lW5Ȇ);;2ġM P&5\!h DB$Mz QG3Ml2EStA5Wů_0\Q'`l 5?Nq~< ?x!W}i-zڿ_-Wq_#5wԲh Nft9;{h,nKBT<EicP-NlG2,bܛo\\iP&\wBEk)-hwB>\xl$ 9fbĀKSJfxD#b`>,8eb*-8ql5VToH2xhtPki> 'Hnk5,fA*SѲwHeW-E#*#JŚߔkkW2˾ĵbh5Pbk*\WHx8qJZnxzӶB>  wAD\ѝcBȂKbGlA`bŚڞk9\xJrJыMnZf{t*H8qr? -k򑘻``Z2 &GiP!T־e!hӛ?iИZ \AB]bBbN0֌8wb]ˤiio0 ?_#rc?ڑluکγ?'ંMun>΂G5BWhB}GY뤅q԰zH⃩/hٵהNbiݚb'zĭ匋Zf`Tw 03G}fcݔiz#-{붋cw$Mztnr\iӯ0Wf~˗Noq}eQ z~A'_o{i*_Ŷq͗wSܪ K˻fcӤ9$ȾG*P;zS'bzoGĹ͔K'ċ6;'l{zWf-лlo͉WȿߡfȦJ#Mwٹ{PB㳲z 3TPAEfVD_}r9)ߠzʃVˑΏZ-`߹zĪx?#M~luߵ\8kzlkqʭM\ʲڶbQ#-Mwε{M2Tu͈f鿅*ut-*JbWSc]~{te<MGZBJii G]Kru_8!3qͦTT?2N{?!EMMYʠ{oeM**Bequ찣EB;M~݌iqӣ2){įuui 3_z͞qoΤ_ M}γΘ_GTAJTBVi{ĒuJ/ZZ~줆~nZ,!2TtµqqzSTQ;M}ʞlx5-*;br㣩bP5! Tlȩ0 #83\iwfYunk~q>*3 2/Jwb]Jto)'Kk˹q¼V')5VcӸf55G\uu͚wiW86>'l¶}Q~ȩb_luwzrk?#fw~olo`t}hS0!Vζ³k_cTlcNq}ŬrqfQ<J`McxZq~Ļ˵\>6Vwoku}οiV\Tt}zubt{qwi?22*5W`tl`YTt{x{twi}nJ?82Zkl{wkikfeu~otbcwq~xپnJSPbu~t~xqS\zwTQ`o¶ȩlG9G\fceWMTT_{x{Ĭqb}ok\QYn{cVNW_bcorlqqflz¤{Wetw{QA?G]˻_W_bwowefnhultʕt_efTKWqw\QM_~˝oKf{fDGS_i{kx~}uZM8# *AAMWS\\l{~tiS885Ki{onڸk\otM85]l{u{ྔi`bnx\-5f{iof68\i/'fٰM?YttZ* Zzto{QSfoxrK/->hӿ~tqtztG)!GothĎzfll-'?btexеoWZnni_D5!-Hnwnq{{iJ*'?qttܩ{bctt{u8 3\nu{hei\K<)0$$ANf{;bK<*3\Ӓ~}J2]WNW_MGM_utW< Slw¹~lM,'3`࿞tTJ85Plʳ}fnilzqi`?3;Dh{uаfMA>;NWb_K>/-Sotqln`QB-)?\rqw˩z_Z\lw`<,**3NkʹiST\i{w\B?;>V{Ѿӹ{bT\nwrfQKENlӹ˼nYPM`nrztqqwt_JJMWbVM<&$9Nct嬉}zT86JqȶȿtB  #8KEAB5,5)/;'#6AAM\foqilibiqxtlfkkzz~wqqfl~iYl{`foww{lĹflhllZlθoktιWB`Ωwfq}~kTQe~wcWZt{k__rckqt}obit{eb_f{`QQkwqzxlct{f_z{tqkq{zikxwltttouw_\\o~n~rw{\Se{fitztkfVTWwwlZS\wc`WQ\c{~i_ez~qkqzqu~k`l~kYZqqefko__tzzutqzuuw{~{tTWZf{uiJ8G\kqk_V\cfiewtf_Zwn\PcnnwutuoWJTtl\SWblwcZcqlb_h{nf\eunW\lqkrwwu~weVktqw}zi_bo\b_lwkYYhx~}oi`_i{ont~i]etwqwwtfl~qferzkox}wqnn~tqqu~lbel{z{qel~hqtnzwqff}_MQqtrww~w~}}tu{{xrolowuofW]hlotqnkecltuwwtffcbu~{wnqnlqw~{unt{}wuz}xrxt}wl{{{{wwu{qh{{tt{woo~wku{{otzx{~rlwwkl{wlfbktqf]bqttqlntw~oiqx~~}~{x{ult}~{{~ukb_r{tkflq{wf]V_ox{{}{rnlnx~zttibbbl{}utw{wlebtte]kuqw~}~{{}{oow~{}xw}rw{{{tt}{wtt}~leix{qt}~tow}}zx{x{~ztnonq{wqqw~~tqzxoqwwlq{}{~~~z{}tltxuz}{tz{}}{~~~~{}{xxz}}~{z{}~wtqtz{wuz}{{{www{xrru{~{{}~{{{}~{ww{~{z{{ux~{wwwx}{z{~~zx{~{tx~~{xqrwz~~~~}{{}z{}{wtu{~}{zz}~}xw~~z}}{{~~}~~~~z{{~~~}wz{{~{}~~~}{xwwz~~{utx}{}~{utz}toow{{}}}}{{}~~}}z{~~~{{wz~~~~{~}}}{}}~{~~}~~{zzz~~~~}}~~zxz~zww}{}~~~{}}ww{~}{}~~~~~~~{~~{{~}}}~~~}~~{{~~}~~}{}~~{{z{~{~~}}{}{~}{~zx{~~{xxz~~~}{}~~~}~~}{~~~}{}~~{z{~{zx{~~~}}}~}~'JQ' +wE''<~~~~~~|||z|||||||zzzz||~~~~~|||~~~~~~|zz|~~~~|zxxxz~~|xvttvxzzzxxxxxzzzxxxvz||~||z||~|||zz||~~|zzzzzzz|zzzzzz||~~~~|||~~||zzzzxxxxvvvvvttvvxz|~~~~~~~~|zxvvxxxzzzxxvxxvvvvvttrttttvvvvvvvvxxzzz||||||~~|~~~~~~~~~~~~~||||~~~~~~~~|zxxxz|~|zxvtrtx|xnhfjpx~tjdbfnxvhdflxrhddjv~trrvx~zrnlnpx~xpllnrvxxvpjd^\\\`fjllhffhlrxzxrjb\X\dnxxrpnrx|~xnf^XZdr~~vprzzz||z|~zl`^frzxplnv~vrl^ND@@FNZfhd^XV^fpxຒxlpbD:BTpxfZ\jzp\J>DN`z~rhhvr`PHDDJH>8448>@L\dhjjlnr|ưԶvnn~zjTDDLXfjj^L4& ".>LZbfhffhlt~zfN:*$,>Xp||r^H:2Ъp,J~Z0 2htL(6RlzxfVJ@H\p~~n\NHNZh~vLLZhȮtV< @d<>Ndt|~rljhlvvnp|j`lptxrh@ $BD>8>L`tļp`RLNTZ`bhvzj^XVVTPPTZ^dflv|ljlh\LDFP\bddfpƲvb`hbL2(:`phh`L4(,>Tfv̾nVD<8648Hbx~zf\\`ZNFNdxzn^^pˆXJRR:4`|Ҳ~jJ((>LPZprbbf^@ ,ZxzfXZjvpZHFTdtشT `tbL\ZDLX,(J~̔l:8hJ"Nv$ JftZ"8@("@fzԨ&BЊTPb`J>TpxrTRZTLFNZ`btڢL0VbV@DpʪvZlZ<*8$&VzzV(.JjH :Ę~rdJ.8`zrllbnp\B>Ppt\L>4:BLdn(:DlƸjTRRNXnjVPJDRfx~xrlf^\Z\nȦ|ZNDJbvbP@26Rt~:8DZҶ`D@JLNXppZJJHFTfx~zlXPP\frƪhHBJPbx\.&HzĴhJNd` 6RȨbDFTPL`xx^VTTNP^lx~ztlhhhjpxƼvf^f|İvh^XNNZfnV>&*h~ƶvZD>L^bjhTPRPLP^pzvdZVV^jxv|d.&^lnnpВpxV4DhJF0$fΰ~jXF::JnʴzxrZFFVr~nhjnld\Zbrƨjbh|zjfr~lVTbt|tnr~jPJhĸn:@PTNJJVnxf``dhnvzt`TV^lpnb^flndVJJTfzv:"@ztVXxV&4\xrbjئzTLdlfZXZl~xfdp~~zph\VXfpzztf`dhlprzؠV$Xv> Z|`XfؒL$*8<>DNhlhlrvrllvzpr|~xtrj^VRV^hlrvz~|tlnzζ\:6J`h^PVtzNmxi}xq\SbiRSd{qpzpglvcK& C?1ߢ4x}ihOӞD\vXI_h?Ŷg&7np ]Οqp}n5KmmY(?rΜhRg]7DcZYc>s/ rzihbY_qdlʲk|a_^HcT6,?vq79|Ŷxgz*+TsaMhԱuP26\mf^qr}quI 4u޵hDpn]nZ!!Kѓs{zlJsd;rԺ|ЎE/Nu]? #\drsD;'Mx˻_,'"cs^{T7 -Ě|ʽƮvbO/4iĸ}rS Ticb*mx]}ޮ0F³k^qh]9+sʶv''pĭwkkb< !9a˼qqۺN "gʈTinU> _յul|!5zσSszNJvi_2cZudZ+ +TuYi0&:\p|]}h?,MƝzk}˟M66HmnYcq}kH*:@pqˀ,"?ڜkr^ :JFsqqIϙzi2+qmcϭx02*OƅpZi{TD+2n˿sk hxsl@0}ΤzwCJըmvR' %slcfάK *HnɕsgP In*Tdϝg]gRD?1D|zU-#+EpĨvg1+WqڔdJ#/Ynl25|h^PnS"#5hS/2;dTZ\'DؼW+ OxʰpMS—kzĎZDJF0*WpudAKaiwn5/2?IXN2*A{xI49@RmqWSZgn}sH-(KxruZXhzwlfWSiiWUddU\ƮxhfvaH@OkpEA_rkiuвnXUkz|xrphizqciphfp|fRObxxplllilu{}upqzf\gppz}d\d{{qills|sx}{idkgZ]rs_Xczl^hsffuvhck}zcTSf|kainOK\xpfsdNCPgiPHRk}xhUKWqwrnifbbcpqlmpnkddm|z{uigglxvbYYalu{{rprwxwvw}zng_aiu}|phku|z}sqpmnnnv{z{zqmnpqx|}}rkmpmqvwwlign{zuv{vmqw{{vvxzxlkmlmu{ldmux}wrwvlabmrx}nbbrxwx|i\U^qzvv|qc^d|xzp_XXgz{sv{xa]^m}}xg_aix|suzn^^fs{kcbgwxxqbagsuhcdm}{}nackz}vlbcisznhlp}xridgmx{{|nlpu|wrnkkpu|}zqprwxvrnmmrx{}{|wvw{}uppqruwzz||zz{}|zz}spqux{|{xz{{zvuzxw{xsuw}|zww{}}{vrsz}w{}|{|||{wxxz||{wrrx{vwzz|}|{xuuv||wsuw}|xxzzwxxw{}xrqv|xuu|xru{{{xwxrnqw|xzuqsx{}}rlkq|zwz}sppv}}{}slkp{{vv{xrlmrz}|{kknxwvx{|{wspmr{}{|wnsxvsrw{{xuprw}|vrw{xurrz|zzvqs{}{}uruzwsrv|}}{spu{{{skmr|{uuu{||{slnw}skkp{}zx{|{wrnnu}}}vplqx|zz{{zvppu}}{wqmqw}{{||wrqv}zuqnqv}|{{}|xsrv}xsqnqw}zw{zurqv|}urrpqx}zxzwqppv|{wrpqrrz{wvurrsx}|wrmmruw||wuusw{|vplpuxz|zwwvx}zqmnsx{|{wxz}zurqvxz{}{zz{||zxxzzz{}|{{{}}{zzz{|||}}}||}{{zzz{|}}}}}{zxx{|}}}{{|}}}}}}||}}|||}}}||||}}|zzz{|}}}}|zz{||{|}}|{{|}|{{|}{{{}}}||}|{{|}}}||||}|zz{|}}}{z||zz{}}{z{}{z{}|{{|{{|}{{}}||||||}}}}}}||}}}}}}}}}}}}}}}}zZQ0+wE./<~~~~~~v^F. "Db~¼|ztrnjfb`ZVRNJHFBB@>:8640,**(&&&$$"  ""$(@nN4  "(.04:>BFLPV\bfjntx|ִb84:@Jf~zvrnjfd`^ZVPNLJHDB><<:864248VҸjH.  $*04:>@DJPTX\bhlnrtx~`0$(2FZjľ|xvrljfb`\VRNLJJFB><:8862000048Nڼzv|\>$ "&,04:>BFHNRVZ^dhlptx~ĺ^0,2>X|ztpnljfb`^XTRPNLHFDB@>><<><<@TʦfTRxvT8& "(,28:@FJPTX\`fjptxz|~p4&*6Rv~|zvtplhdb^ZXVRPNLLLJHFFDH^ШfR@28ZjJ2  "&(,26DHJNPTZ\`bfhnrxz|r8 "(6Vz¼zvrnlhd`^ZVTPNLLJHHHHRx޺vZD4*""B~rR:&  $(,.26:<@DLPRTX\`dhjlptx|v@"$(4NrȾ~zvrnjjf`\ZZXVTRPNLLRlʠ~fRB4( 8r~\B,  $&*.4:>BFJNTX\`fjlnrtx|N*"&.B`ľ|zvtpljfb^\ZZXXXZfš~fRB6*"(nlP:& $*.26<@FJNRV\bdhjlpvz~l0$.Hl¾~zxvrnlhhfd```bzฒv^L>0$  .v^@*  $&*06:>BFLPTX\`dhlptvz~V ".Jj~|xtplhddddf|ڰr\J:,"  6vX<(  &,046:@DJNRVXZ^dhlptxz~xD ,Dhв¾zvtrnjhffjجlVF8." VrR8" "&(,06<@DHJNPTVZ`dhjnrvz|~pB(Bb¾~zxtppnjjn֮t^L<0$ ZzZ@.  "&(*.48<>BFHLNRXZ^`dhlprvx|~~|j> 8XxƬ~zvtppnrถzbPB4& l¢~^D.   "&*,048<@DFJNPTVZ^bfhlnprtr^(0Np踤~zvttx辚jVF:0("  `¦fJ6(  &(,026:>@DHLPTXZZ^bfhjjhZ.  (Fd欖¼|||԰v`PB8.&   TθrZD2$  "&*.048<>BFHLPRVX\^`bb\B.Jf¢r`PB80*$  PҪfN>.   "(*.248<>BFHLPTVXZ\XF:Xt֞¾ںp`RF<4,&" 6|ؼx^H6(  "(*,046:>BDHJNRTVVL2 >^xܤҲp`TH>60*& &dҮjR@0$   $(*.28:<@DFJLNPL>,Lf|tnʬ~nbVLD>82,&" "@Ĝ|`H8,"   $&*.046:>BFHJLNF,4Nj֖hp̲vh\RJD<62.,($" $&@޾vZB0"  $&(,04:>BDHJLPTX\bfjnrvxz~~|||zzxxxvvtttrrrppppnnnllllljjjjjjhhhhhhfffffffffffffffffffffffffffffffhhhhhhhhhhhhhhhjjjjjjjjjjjlllllllllllllnnnnnnnnnnppppppprrrrrrrrttttttttvvvvvvvxxxxxxxxxxzzzzzzzz|||||||||~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~||||~|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||LjQL@+wEL>L? OuYɜl\AHuub{pTWqJ /ǎhJII'E:>sh;_FSŅDv¶mE"(?*?^} Rla|W,5\TZiJ#'}ؿziz]@"0fsKHʚiWlDDW!Ac'H_\wпθsFWq۽ݩ^/*+0CbkuMIW-}ɷp,':IPU\mwXF:,6gغ:+HPKrZ%,( g{ -HWd}βr<4E s²x!N㼓n< Ipݸ% #HEJid #XcM^ؚ}%,vɸn;!-@^J0ffvǽФxb97Ezd¦H 2Wx}% Aս^;1ɗqrA_*hέpq˷z2Xbި26,fŗ¤d/&(4_I4d JˉTr90rڵXw?bc9ݽD &̞Tu;*;"({ϸrO1'΁&!?;?巉f OѦ߷9(+'lؽS ʦ60ѶY ^ӷD +;Y—K bձS ,;Dr˸#Dskۺ2 '7#7n RwuI?_40v_N<%^ڿJ2zS5ݿ(SdUsɼmzDX؝č Dc\zf:XmCaS ?{X6fρsxݼ; dF*r7FS\ 9b&@̱9cďEs̩D |0Kšz1 FxbU٩2 lzH0fʩ2 TM: CK,gѽ""f>څ q75ŠC0PXِ0kRۿz1(9"sǀEu #֚]mNIA*\r 0pKs -wf4 %amTFЭ' d|޿+ R{pdְwO2|7?aZ/Pӆ7v\ʐRq+T̏U'TF/RX!N&AƮR }NP Or01ٕ\2%ĝX] ڨ7S\7Y__۶' >ʺg,TΟ|# *^:O\N޻q2 7WC/ YgTCv޻H ;O:%c#7ǩ#@c:c@ 6x61WЁX:?vEsk"դW5UԅK;(ԝPq 7uWk6 0լ{7 NxDmΓJ "ٻ* x:@dխb q}DvlɝF*RЮZ"m2+ZϚS7X֮]S2/˒-0vm6w/EɃJ #ٶXY@ -q/Wf7wպnrݿ-(ɄwجA77gTُ gֲn",&#k_T< HkM/!֟:I6!r!6ʆH-کA]޵ K #\ՙMPhRݚRС?,_WF"Uq,Y\"?RԬXT@!@,6lrl+]2DچFdϰ_IT+ՋƻN^ճZ7aۅ&!#ݵv{2/h9U\;]Y1&kO­w݃ CYWֳ7:fDgcӍ"AبD'ٗ, m޿Y/ZvMO#J2Di-ߘAv7u1lZԧ-cl1((O a %>Dr<|W qEXǏ!7#ݙ:ث+1Ʉ'n} Y%ψXfΰbӔ|5ճ64Էn*gm>ݐ Nӄ0ր%:%,\rݼ!-۲'&ڦ*"Hݲ5Ku Nu*vI Y*-JKX2ٝRu 6ج*"h|_2Nڅ]}#"# uA"M9A&NHK!9-U2*?ڕ-޻Eہ!Tlǔ]kޭ1Oݘ*s^٨E7wѻz ^K4ֆJaجAJݜ|+وC߱ ۬/&h۫4;ٞ&JXf_#&۟!#!]> A1՗N<,CK,0EڟY1'+!:#^۞<Wި/1h-#2!^Ў6vn7>޻*!hۜ"ޅ2ݜ&*?O߽-#":%4քE@1,575fn04(-""k^Ehސ#2%(Y#,!!;Cߤ5;4:9%n#n{-:66An>ߜE, *(ք0kh#447*U!bSOۋKxޭ#79 6(mUTޔ'41X@'>!Fށ%U'/D"E {x'hJm5Hk'#Zߐ(5 dA߬7+fխ]F%w4-\0č!#-&q_}Y0l&2#z޲+Y!Zzvن6FaU0ݿF+/g&!ڙEiۚ!5޶%"qݿ!#6cNx^E݀D5!H,7:ټ"w}"9ިzq@4lָZ4mR(+K+l!F]D؉Oށ(>dڊ A۶%ڈ"Ӄ7rc&I'|f1zhڭ'0%f٦Mu؎(>2ߡ4я>J“+1T6 wwnŚ"ߓ'Z|u}nfzۉ-Xݬ6Nݦ/1&K\Wںikx;%aK*ԨzabSި#"]ۭ#1F0ڢdؼR@шK٨%9۷4Xk;ݢ;ٵTb٨'5۸T\ݗE˝ӽr#Rϒ0 ™< bڸ09мrYYD!ʣ]#PlAb:(ˣϧ9#50Nؚzh/,9<76dĺNgiXuu7!"U·O*(*5drYrœS4Dchk/'IwY,0AE4Ei{vlF@gڢm\|{pdECC^|lkkw}blʺְd'_|bc|i}S0(D{ǃ6%JԬ}uSHEHs{Zcrhka%9xagadzwihƜiPN_|OF4Ek}bxFZѺInqqcCC:AqZpxvzZ;EN:Ad6 1gn? !Oĉ_ʁ7(,k̩U&/PA:_D @ֱ\%:ʃU?2(&4UɬzO:2+&2vೢR,,llPpd?+'I̗v5-gx(iƐָu4 CƮk9,zڝ< cМ/ }ػc  >ղ; vƸ9 ʁ,c }kՃ%gvKٻX7OO1ڭ5  9m #f ؈ S߲; J%  5 J-  q 6ӧ9%b  < ?{ z  Wz;Z1J aԈ5_ы+ /h !\| "X"ug !Xѿ 29xK2஭ݩ&{ӊ}-f0!hx 1};߉lNU޼%'mΎi1Kĭ¶A KŽl #ߺ̿A a޿޵"  v #UքWuտTfګsmAi˱O-˼ز( %ּُ  n؎pƭ(T</ǻޏ;գօ*м_'c>!n'P<_ &r J޵' wѻ7&wյڎ h0mH&+_r(IګIXHп̭-a۟f ?ڕwўu nIEwϵյ'A٧%5_%mӮuX<4gMn̚n YΤS /Ӕʲ4!TƨfK4ئ1(ޢ ߷A&M|zi C̐ݱ+FФm(rφT ShNۙUz@Z#Eϒޏ(ʁ>6ߎKcP޶ދ*6I}-lkC#fZ<%/MN--h4T%YTuU?sС6W1;൘XTUO䦀gDݜߩ,?Ю"&}ɡ\IhSD\pԈ@c߽ݚ ]ۗ&;^Sn:252u:Ա/*w㲫N%Ʀچ E޳ڸ% "|6mqM^|iĨ]^ݣ #vϫW!^}2 Rd Tխ4 Isۄ +r̐w>xڶ^ٚ(2fR 6p 7|/g߼/%5Wc-iօ&X] :ʫ؍?ۼ؋ Aϻw 1ٷ4PөӈD+1a 6аُ*MC؄'#Xx<ɧ؍0ں/MT %ַֻ1;ڭ#&r½^ Fիp&"fٺ2?J!֨2ks#C۫+mHHl <ӆPпg RZT_ ]ЧNj@aθ?  f{ !ŏӻ56p̿a'CJczuڨ1ӻӢ!!\̸]-|ձ6 1|cc/ċհ-/s|xhx2F5+ئѱ,,ډ ώc0آcİ*!WNhhּ9*mJ:7 -ɟ٧!ZښZY:ZǼzlЃx՞47w<ϗw&qw  ѱ·KI_XΰlmAz;iA<ݫR& کu#|ɘYEʙ" }żq^C>ٶ\Jr1F۬gA%Aճl6ѺszIKYdl+/ڳbSH &ݞ>@fd-!7,0a2/l+'_ٰI/2#Ri0qcT@D(gdsq%^ژ:Eө>Eݒ7֫J2h%uNJY*zUߝ ]޻2F}zD(@ZpJSOAfm 7xU\ 5TF\}EHO<֝7Cq7ޮPPu7T೅h #΅ެ# ,lݟ5sWZ]ޏ0˒%_ڙ!Ax9u&nn (݄fޮ(zS(m4+h/MXq#vɽIkIH qߡU}يr%ߗ6qqM*z"iR'!l̢':m6kbX̓O,ljޅ#g:ZEN'v7sڈNޕ IS>rHv|AOzцݤ"Zӱg+4ǺR^Rޚ"iѶD5>_DkEJuD7>X¦TK޲-Wٰ+P_%ڈ7EPS*|E(rAWIؓ%luza۵qg!>sII]#ԅu*iN!h¨C(J%-x /kW9P]۝,Yޕ@]ݫhIHs&YkzJIn&i/0]Δ4gF2Tz/ %s䩮I"Ըv0IĮY!?S<FWID, 9dJHH0!@bN_@#fmC HNj_}9%!DU(W%W6zC(*Hf}N0جw6DŽ#/1,{|T?݆",}z+_*!Ru:WMg*ỶC* SN9 zuw!Y|!XsqOlZJZ(@%-MN9{Z<;-p(>zc2*bOKzI{K?c,s?EdK2}J;xc6nߦ{|u5"wSq*z"*nn0ݒ߽x2J UPFwmY 5hH۷zPTλ\J6'TbK4PbuΞ7 &  x?2^ڦ# ]Dz̈4 p؎# #zYFv 'ߧ,&6 {0JΎ+fۊ &a]1(EǷ? +۱݆  l+1ߚ TвƲl {zNN7#/l޲5 r{W /ߡ%HSP%n@I5('C\?zб7'1,#!%bֽ;kAk 5"O6\JcXKH ӲwEA4&!-^}mmmM,hӱS+5!݈&%Z*/ٿd'rߤuF%/MK>SբՕ'4|Yssv\Y7*WFp^-%z˱F'"6KCMʭـ%@_ʁ/9շg'9P/X",5+(&|H+(i̍2:E<?z4ZN}֝Wk- r|u^gݳ;<ڦuFI;J۷Ɣ<;NDHrT%{'!sf Ew,^%"9ZZd%dKf}?0I֨zx^OaE%'Xwbpb"\0k5,RձI :ֽ¸N >zˋ((A,d\>"N7 sջS-ZE xbg|"2ۈMºb K\,i"1>vU Sݵ W΢֡1  ԻK z̈ĬpU\0 S°k*5P4+_Z5JTċ0:Y MiNӁ< FN&'zJ>l-JYPC1;AYiD!%kڼmOZZ7:°u*"?F2d4 TϿm0լlm޸< %ֱMSʮp/ /Ԕwq<>Ѐ!&pُ>:Xr!*gq%JԽK 0iǨYY}_D;ASzN?ӼZ*1OF;ZxbbHOvMmګI,zˏRTl ,R2ΎR00xދǁ\Smݵp@ 'UiPW݋0J̨YPi@'Yagǃ%SښK@;' 5b}ŗhzm5&dӲYƊp+ CWSbai{ưi 6ν^0MՆ'S֩³7 EDŽN("CT 9Ǩuxr/YؼrPA!aݳlK2 EP?s{"&du(@|lj>5T|wY^*1P<%NϓqC2prq_mۻF*nn?H7Oq%pըwd /ѲhpƜI 2£rA6mCZ۫qP;?SrD7;aٿ2 @s֤|ٻM 1#21!J}Ē@NbZT 7{*Sֶf\Ԁ!+Tŋkwz!1Ǐi9Mx^Нf6c67d-dٓpxK++]ݽn-,K|A /KkٳpRbn/a}'KMfR(Ww՟R*Wɍ77lU&##}Ɏ<Pun];M;Dưi^W\ν}+ (Xݏ(7ZM@g|uqazM+Dmid{7bFʋR-,Ŀ{P]u>0fYdl-9ݻvZA""hΎ]Yu7*Prʺx1 +fɩm0CgaKc-YXhۮb/9lxP>Sh{5A]#wKW-(նmMzz:'EP,7p /F**7,;ũP!CXYWOJz˱S Jrmߨd?6%&خ}^AAM65qu|5d@ &'7Xzm-?cH%Ӭlh}E" 0TʷSDJJ*U\Ek˅>!NU >}]lĨdJfgka":n|p]fl>FʼǍE+(9SRDKR_?'Cgrwu\69bѧrlrMMJ>5>i%#@?&A{cYd¨lDDYXPiwŚ>-Z_HcsX@@?cI "vŀpɰm&&6J}ߧfvYRgөpM*<߭K 9֫rWCںvǶU0C;Kƞ{+vέklf,hf70H]\fZ6vοNH^cD1d9 7Ʃ/,Rl Mۿ]gU(XqӱX7]l2hsSSS^xx/@^>|Հ0bvD91C%+EESǓWvim˸c7nw/&RӦ{> &XxưC 'h߳wƵO/di/5οIdl-#h޺KkɤvI]ԐF %Խ٬H2̻qTUdp\;T˻S#&?Uzʘ\KHO®X+4KWɟ:J{Њkx*%Sisح7*ۋ27{٨c|}bF:RʰԶ-6ENqO-4 Rɤul ^ް@"u̘Op|?/an|Şم*uI^Tc1FxvS^{l֍#;pmY2\Y:p˺XEwSlg9F˼*&sZHM<ذxDWߔ 4KsۍFN"JU+N㫤p;FY_rvޝr\( %P-FF @!#޼w㺗w4#MxD0nh,?d?gb߼pC2CĿ7wH+JchD-uZSJar%@Y17|gW5ipNWgwhYu!,DYpPwαT+ED"m4#AaI6Xh9ԡf22MTnވ>fqmA 4zcgŃSPA>\i{٢T>70(U<+Sla¸s1JќgXO˜{SRabc\Ypps\<9dΐ^\lN%Oˬp"mDPpg|zX>Pv>hS+A|C"W|aYrl19a^Kms\Pwޘc>'JSJ{mSmzH'wĵ}0-M]pikmsqI;Kru#+_lKDżwC CaabϮmYw»ufKTXpg>EP+Dszdlr˗]mn/6P_¿C6i_Eu㽙S fzfUai|z^OFD_^0uxTf_+#Di|r}˚xh:%+cաz1*5J_("N}ǭ}xzfP?27pཀྵA FwщOMREHf}mv߭_YxxZOO?DfTK1ax^-,p̽Fƅ_sR\w-;{;OH2aSkűN,Pz%??Nfh؎6,JbabuhPmNNTYlH&̧bzM 6qIY{EW}u7MPMU7c7P|{Yx_%1W0alpJsJ̎Xd--cwASZWb?5mzsKՒ!&D;!,x?ԼvZIJИ617;օiԆ>1 NC7F'#Cdx٨cpb¸f5&Olޭ|7/I1-px#/lx41u7HآnˍXΝSESx;7wvԷgӚ,''%FSMr]%%D\Jhֵʈ^XMSECnx{]P\gr%F֞:X,"/2*bԽزE,H>YkHmŋS\ɲrPsH*mըRDnl<*&&F֧;#EnF2mkJkc΀/A}l&zs:CP#&%2"2mgDcFIi;bΫfM_k5+dʦuDqw25JC@˲ĸ]2lc7b˱YARbiv4!WĬX?b]E9+?η]2Y|ŨM]N@JFOغWEpW/p{bHc54>U֮c*RpФgE6KJM{hCgMMFIa@ISsh;b̢5%Fv9EP7?lzūH(EbEYqSi{vu̺N Eӕ4;ZN9TuRkիhѬ;"2dwcsYMMOkϧA':иb-7afZ]l_kDzrE**KPh}<7@iwinxЧECvpZ9EuhmP:IMAR{\H|XZ]C7Jlwʼz9-4Rpibhrb\dr2;ʩU6D^M@MdǸfSpvN99iʫpci}F-4FiɸDH^ʱnPbw<4NɣYUZ;629Tl_HMC>Z{u:Sf:Mq_gZbſsTKTTJKxnZDwº9?\pRSgdp|hHR_\cFE_rZ57Du^F^E;S|qsapmcwk:Ci_KpzJCNXb}>9DZXf}dxSDNaa|uYw;;?PqkSK;Ahp|gOMMc|iH]gOMhu^Xdx^iWCN}zXEFFKvuAMvpTp_vn\r_^kw|isibmKADXvMOUaahfpxrpUk}qrh_gfs{uunpzsmXavSFWE1F]uiFFi}r}pcONv{^XszOUmR֦_YriqfqI175CZ]^pmH|ϭ{slpH7EPZ/wap}zP/sbMbRk|uK;RR-@0m˲}k{uwD2h/!PĀq]Hs-f߃#1څ>PiDfg;9M@ޗ#Fwl1D]AʗZ9}C(ߺvW:aus@-џيOUbb;]n7NC|s0ˉW|\0{: 7]-gU{W7{Y,hHc4rԋ 0gmpJSCx՚DZO{㞄|uxwIf޵PI2*r9ݝmwr{!4HkW!MhPMuv{0Sw+c,cdda AՔM}pW̺R!dIs rڦNZݽ^F󵐵WuDN; ]CT*Wۮُacx'# F{&5d½z]qmM''g@/\Զ̎}S+ 7mż齎aSA 5Ĩ^+XK -"XƻqMKvsM{ %ݷCZr^PF5DF5@NWwz-!>_vqIf\9ԩ62>|_N2T'k9UvfRpuzRC,*rޟة]!{qYc7/gfzdCh2UR2ipnl{{nS&>*;̞sr"K_0\S{ɮ@P{J",m#+wݻXHm5K^/^0>Fkf:pZw*Tqxʻz/KZ/h}Rq՘HC#"Y6&vӜpI5i^ RmD?ʡ^ PC' *^݉spўF%\ЮdR5D\fm90%R{<2-'ӕaD r\77{"cߩ@Uu6TH>cKFW:ZƐm< 1\TӒKu: ^i5 Ff %v{#0NJW6|gԟCK:EXC{]xլX ?ӣiwNlH7%5h 7ݮa#'P٣] h̘N<}, A&(hϮ4 %>&'kpm]SXHz>7Cֲc +zw΃ 1z{@:P 1fC>qk JhW֗H!qO+Wpa+bՎd^,Hǫ1wdzZ bO|]c}2(cc- ]5"\߷l,P5W{+4EJ|ih?IPA5{ANhmxRC>^ӎ "v05>bڊ2&R9\*";]6vEaЋ>-@\ug-qg#>}5?Y*-wՍFKb:4K|a4hU5x(*pibamʰu<;՗!>։+"x㿆F@qf|{f|AUdv^6zv9HʢqD \Шf1l{@UN'i|2!sk5g2sD YDvNTzrzR70wsun&۽\0AFq†wP2x{mu@bɅ/1{FH;#av{m;Rc69}֚d/r}&lބY7;X/!աW1S{_54b^xrDDP̀7(Uz::<۵cizTRph}pKbϨx]mѱ^<_Mn<iJWSZ٩bXPSdٝ^Pg|ήbTu &m@(uw@Wz*DӞ2l#AcO;iY-RDޗUXU0(ֳT\˗HzRq{&v!%՜D/c}S@&@c*_ݐ:JZ(f̀5:Y6EzN9J%_rW0;]@N&7ĝA>^OA&wƊ@x-2ƆTD9ѩuXcю fݰO,^##,Fm! ]N\6ߞ4Ps__ĺd2Š24T%Tm&|ݍ"bIդM7M|ԋpnAZ--_MvfSW<ʆ!Ѳi2KЏ91lAYM4ƐzʵDDMUSDaD K߰E>7O{+6{6դOHlRg&%Tu%Uxӳc( +?1rYޒ(E|'Rk{َ>pz v˄6(Wa>aN٢F%Ifpߓ*2h,Юb00gs/S<؟^H-OJ0cǀPS۟JYu20H\Hu6ZųCEY%#U{1<1šmTUUUۆ1aD?P2ɮq-5ǐCRi#YݻnZhg5lXlΒ*<*&{7qօgl!bn2Rp6ɏʬ@\ձd1NCJ݀@gĵb5+YɞHDK7ĐCCO"S̬ZD]cqSHpЁ&KǞd!kM1/54#}sDP6\(va:ǁxI6ɏ5DiPKbJfl#hs1HdRn,SЭd6WN4ZTcF6'qٕPݒ -̒JXƲY ;ėPrFӓC1|̩Du^/ض^f:7x&HsF?Tn4֨Z&Wn\l5}Y:Z2Duķq/-۟<&Kڃ@؁'p6Iq-'|ʉAS/sԒwY@u/iˢ@]u&D|,-k]]AђA4ի{*Mh:;Xچ:RTOR]̢?5ƀhE/znĊ,&Ϗ*;;^́sm+5ѺY1rg1&JzY2̽sW1k}a2PԢK*RdCM_+Xă- mPMgm̃KNw9ٳNI7(Mx;\7d51{ʶa"9fPF!qωYXՐ;PTXЊ-WʬR"Tb!?bM6dލ@+ZA7@fސ17̤fmDH7U(vR-b}</Xd% vcWPxKSq+kvahKrvnM9p UAPYrcCv5<յdkާuWFFkcS|:0{<IbJ9E}TT,vfPwD^ŵaDqmT<حZFgWhxxxwfmA6fkv&KqK-_'M?fTfzCw"5c1_15maT߄hYCp{uamu(ZXlл@#uA1N0FTUzCmNNƟb91ZaY֞IWPτ;,zh^Wq峚}SӦFbvaՋ^Sl̄n-!UǓvDaޭN!fzY9X"!*JMk}gШp+^ "lk*cW6lpց_dbƩsdĝqm_ʮ_:i05X?("7WK(Ng0@ػ_D+nqʝwɰ]xwTzƤXkKMˀ0;^u0?x_*; &vvE1FНkSWiʬnaY߲dXݸvprO}ɆUvr+ D}Ԛ>W9?p\ Mm\ޗ4lK%զYHffb{ƓW1Dv4,zħS(_q ]ذX+Ɂ#OMW], S*Rж^9h5s^֏Nm¸9J4?_ K^>w&iJ1hkOY:ݨPgƐ^OznNֈ1JiMqa4c^RaڲFr^-ngC/˝]DDbJ<:#wS*0^|,]d%nv;rʬ]NM}̽U;DTԈ4*Kx-K*vfmNT-Y홗s]K­Y!O:!XMlŝ0?c9uJH:UmgkMKu"hڍ2wխbE??ʓnN,]^Da!zǫTll<+/Ӷw'5O#YOHd6Dְ_4JZ^ۏ?̀%>q&*anϺuCam@ΫJA|knUagFPژ:<-2ʲ> XںS1YY̺ʧ;'M{Չ6+S؎PէE?Ӊ?IˡKNɗci:Z}"0iEx΅0-}w#4sӎgvUfFxp62}WF̿D (uT&wؚan9Rz4:KMߤYks9Y+|vIT5SWߔ>WZ6>f̞zTpcJʉ41Z-@Pi% nd-?ӬXz4lZ^'(mmAݓIc̅?ݞ;XiJ!sڮDN|Iu7;?<ݝ2bݨ90@};?ߡOFHzߏ4:̻_RU%a˜>>4rʎRۈ%]lm1O4Eڞ_;'\HbW2N,{q U]-Yq]ǷJ&WՅlІ/5ߍ/k}P|ŏT4kNFHM^vʝ@%D‹0,ӝ90f@-ە;2Ѷv]5_Σ56̿9@Z4U+YѲM0NFa/Kr2kɁ;0\|-¼9S@Kŀ@Iƽ]Mdfh΢;DR1ANXiʁ/5]n(kmݰDP֕JA_KiԮ9SŜ,6R9MS%#ʤ}Y"|x(cwO;Jߊ,?DHlb}g:ϜFI{_lhS%fN@6vʏX]sMY}JX\h&(mr2nJxum•5_w +rbhv^XxW0{Ǖ^E@H\ۡinUTǷZOxnqkdlam{vɼ^,s1;cFA9Rm]nIx6Pd/*ZsFbisOYğfTpz˕TZZZɸamp\iDOwD9PiCxPJJ*9\qa>FrpZErTs\@k_nOYaggZIM|lNR}RlRRTAlwugMkkWWDd{qfWrgW\wbOH}}W;^bamNskUx|kzufZPnJH|vUmvZhsbUpf\fdXgsdhlhwa\^gs@Fu{MXxzJPqR\z]xUKfhggvrwq\licwuwbg]TnrX{qYcmgklRUwx]]uidixsbzlrqxv\xhiYglU]v]]|vihaUpqfuvYgwhmvvszicuhruzrcqbx_Zw|_Tdk]Zgl^]kxdfrkd}v_gkiux_rzdar{mhUZi]hvi]p{dgskll\vhfvp|rdwrmgqlhgfrpZbwhUZa\vvcplxzii||gkka{cbxwdxmkkukfmmucw}nhn{gmibspbhuk}{{ssdiscipkrzl{x|psxz|gmzqrivwpqw}slp|vkqqfgw{slxplszuurzzs||up{zqwws{zwzz|vznzxqvn{v{zlp|s|zxwuxrw{z}srqrs}uw|vrzv}xsvzvwz}x{{vuz||vxuz|wwzux|{}w{}w{zx}q=Q=`+wE=^=_<}̵p\ZhrqdXPROMMOW_iv|{smnqmbK7/4Faν}U@:><0#9IX_^RA0 ''EĘum|zM44JadYIDFIFDDHOYfrvvusunaO<46F^zźX<2-*!+@TgppgYD&&,:mڳwu}º\A@SkupbYTNF>>FSdugK99Ea|·wK2%!?T_c_UD2%9p̦khuǬ]CASipfTID@9/*/:K]mxzx|mR:-0;Sl³ʻ̳I,&&%?]pun_J9"'<@Cr⸋qwwwf>1>Wd_OEIOOH?>DPax}sbUSa{Ľ˭uR'01!DfzzrbR>5?Wmm\]ջ¢}rYZ|fC>ISOD>CNUTK?54@W|xdfvsgfuƨ^Wkk@%0, 4^ppbSFCOh}{fS^ϻ_IS}wdaggaXNFDDA<2'&7d\?Jkrglż}X?AWkhM%1?6#Nlsh]RPUblhZNMs㶭ϱd]p|cW^pxkN9:ITK5 /U}ihr|ԺzrhS6+>qg;%+((9DWrmbdhaICc󷏞ΙU10RzrW9,/1+*UwPD\ٶnhmsw}R2F^khS<59&'^kIIp¦lhu嵞̶i\buv]@  PvǬǵ\D;>DKU^ffaWMJKJC0#@^kg_al}²|skaX\qfXSPI@<<<>CRiսrWJMXf}ƳfA06Ng}zsiZE/! +Il{qq{Ӱ|umdag|hREEJPSOHDI]wrXNR]i|zbC/0D^vg]^YI4##+259Kddz|wvsph^\bidUIIT\O5(7HRZbgp}|rrzϷx]E44>NZam|R9562&#0>CHZsּzfYYdrsdPHTmvbA'(7D@5/4?JPP]u}}ɽY;/6DJE>@Pr^KHKKHDIPTU_rzmkq|з|hY\kriP;?Z{nN;sԽvmmwǶiM2,5I\bZNKYn}zdJ( 'Mʶvcan˺q_J, 9cwi_J0:qϼgRNY{ӿwqdP@?Pixklw{pX9 K¶zdTRZm±xcSF>2! "An^>+>cǫp]cxŬubYK:#4Sgrx{|ufTIIME6+7Yս}wl]RNI?1 -If}w_C&!0?Oiɻvck|sZ>4;RfqwzxxwuniklfWIMczZIFMTYZXTSRMECKX^\SNRbx}|}kfluul\SXk{xnnuucI:>SiulZOOYflhdb_YSSZqz}usxqcXPKC97?IKJD><:9?NZ\URXdllgabpī}^C:CUciihihcZTTYUI9&(9DNRUWUXbqucZTPWgw|znfddfccgmxrdbiu|pmxxmiiiif^\\adbXOKKMJEAHWdmnkc]Z\^ck{umkhhlrvvnbYXZ_cgimuz{p_PINZhnw}upswwqkinrvwuplhgfcbfmvwpd^]]^]^ckx|upnlcUKHMYgnqkb\]gu}pddn}ĺ|x|}}xkb]am|}nb_]YO>|µ̬r^D7EqZKZuhJ:CY}ƺĺrH45IauµkY]kng]]gqsppɮkb]M6 &Mku_J5/C应vfT?6ClkE-,27:;@DD9(-Kif]bwƭ{iO2 &/49EWdknmha\SOWmǧxxīphg^O?229?@?CKXnkUSPD0 'CmmagzxA *IqvcK6!9Ugzٶ{|zbJ@92( &(*/6CPd}rhks{zsnp˲wwuDDf{pbRJTiwxʦwzdan|x^9 *51"'&! &1?UxˮrRFSfb9 !Dbsqh_ZM:2Ac}곧nZ_srP62@OO@10;FF>659ATx}w|ѱkWXm}qH1YxbMFZz¼ssuZDF_zqZKOWYSE:9>@>:7:>Ppοɼ}mkquhN'+E]b\UZbcXH<;@HKOSY_guݻŸnks{xlYMMSN>-2Khwg<  !Hu}^UgӭwuxwbE2:Sdmlmnnk_UKFFFFHP]fk}Գvqv}}q\OMRWRKKWglZ1+Hqs^Xkްļ|fISdhkifaTHCEIIIJPZbablvzɼp]RKKOPRWbnshK,0?Ysx^Yp㷡p]C01A\rzaOIJ?/#*:DIOisxǼrllsԽzpdO:('NNEDFF;*H^ѩiZJ5"+?JA'?CJUclnvŵ«vU;' *14@TfiZ<+Hcqvķn_^gl^D( ,@D4 #7JOICCIJD:>Yɵq\I>964/1@Yvw\A0% !4JWZ_lʿu]TSN>+*AmzvvulYH:2107Kmʼshdmv^A/+-101:R{iMA<6/-5@KU]mxqrwxzŸnmxxbOSr}qqxxiTF?>;>Idѵp^ON\{¶sU?401005KscMHFDCDN\dhiv¿|{Ӭldlld_hxuZKRgwsaOMYgi\JCAA::JldzpdlmWF>Ul|ukhmpia\]a_cpIJvqrvzuUP^nnhdlur\?2@Zlnmpvkc]SNYxqR4+5Mcw}fXI>74/+2Kg}usqkb\XXXX]iƽsmr}ӷ{gMFUkwvpsnU@9416M|ѽ|}}wiR@9CUh|}qgZOHCDNd}upnnld\X\hw˽}rnsfOO\impxsZD?K\c_Zh|]KECCJgնxrmkfWD1+7Kdu}lXI:246-(*;RflcXOOWdqzlaZ\ZYXUSRT^hpvzxsk]M@:A:4Fprh{Ѯsrvvnfadp\/"T{īT9+-?\ۮbC1%*AipaM6'&2E]{usz{qcZ^pɿļkbgmsx|pJ"Px˸nWF>5>^˵i5%In}rfR2-Yvkp|˷slifdgr_*-YT(#@quM,&Anxk_P69Oi|{mb]^fpw{ɼwri_Z_qziM,Jiϵ^FEۤc2/Hlɜc4(6Rfqurpliif_Y^prrwpX5?dпUAcrlbSJEJRRA+ 9@-/W忞¦rFCdГDF}w^K<9AYrmcbd^H,*W\EMhŞdD9MmkI'!/7<4" #JaU:5cš{xsX]{vm\F, 5TknbO9' 6Txh^gv_YXZanpU:'&]wqZMTl{mfbdh꽐xkkxŷvpllfUD>J_qhJ(-EdƷb;19NfʮpUMR_imllvzdF+ /NpzZM\zb?2?fw}{vm]M;+'2FTXM9#/UaKHUmϸvbY^ksh_\WI77KTY\XOIOhq^WhpprdXcvvaNEEKTYXY_dZI@JppbXSYnƼcJObuvsټfC-0EU]XOIJOPMIEC;2/5Orź{sxijxfWU]rvpsvwsk\M>&2HdwwhXS^r˸qhc]WUPH<7>KTN<%%(+-9M]hvӻǺkO;:DWhz{nfdaZM:,! +Rkum_Zg|Կsd]]_bdgf]NHNWUI2"&7HPMEEO\hqˮ{aE65?Od|phdZH7244('EcuwplzʸwibflnlmppdRDFT^YH;;JZc\M@DWp罔raUXwʲhK77AKR_svfM:2,# 7Xq|xu{rwvcXW^kvxru}s^TYddTA9AWhhW@:Kc}ݷpaSKMfոdM9*&*4AUsngcWH>AMTSMMYp{q}ǧiSFEOav{bK@EPOA51;ISSMMUgԽqaUUkٽaH2+/6?FZvwZOC5("'0762;Ru{bXdxǨv_PO]uwvz_KJPRJ@>DMSTRaϼmbXSThָ_D' 6Rblu|pUD9212>N]c]Xawpkw⸉pinvvxaHCKX]___]\^hr{|r_PUsupvnYJC9+%-DYdhggbZRNRZbchwlhvxv|z{gI607H^r}gblz|x}}zwcYYbhbYX_kphT@0*-0/-;^}xux˻}wvvvvvz}xfRN\hhaXYfv{pYF>AOc¦vnwviUEEPfrlcciqsrfTHDJSZ\d˿uidiwƷwpg]XY^^UC649@CAAHYlxqY>1?Zػ|T76FXZWOIFC??FTbf_RIKRY_]Z\alx¬Ǽ}n\H0'1?N\hnlggmĵvmmplaUF;+"9JPOID?<95206CRgzµ²{l]RORX\^XMHFHPYO("Yig|§꫁zh74]z|qfagswdA9MUXizs½Ϸvp}aC+#0F]cP2#2HF"6ɸ֤|i^YRF7,/@a}xY@"%7:,?}տ̫s]I<656FavrT<774' 7Sfhk{rlaO5#?TXOA6(0kŭ{uԷsu{}{nW7#'RcrzxcM2! 1E]ikdaiƱ}wdSC9/%%1@FE@6%JWZOC?DF>!#fŧ˨zmZHCN]r{qfa_UH<;DXklbWYruhf^RE;4+!4FK@56EPJ+@ACFIcIJ§wlmvxmYE90lԫkZUYw򿝎vfWPF95?TflaK5;Yp{rR,*9TzڶºмubUM>/#%0:@:& /Ok}ح|fJ5#A_hXA-,?YcU4 -PsԸIJlWI:!;E;( @gifu{kH& +\rndgw}R5-;OlϷxbPJF7! 0JM<  ,@T_iǸ̰vnk\D( _|qpɺ{xwsnllid\NA1"5HPSOMOZgsqirԽskgilkbXOOXbifXA0*4H_}ųx{}{ķu]KCFT]fnwxgWC55@Wl|xplllkhhkigfk}̸}}shb^WNDDOalk^PKO\is|zmc__gvοud\\agklnu}whTHERfv|riaXOD>CKSTU]n}}xmbWWbquiXORY__afrxi_UWd{ƽqrxswr]@(*>RZ^adhcUFFSaf^W^sƺqrxpdYX]ZN:,-7FPTYdxiRDI]{mdl}}uvʻlH--E\diprlZH<>FKF>9HfvcX_x}wqpqspdYX_mvvrqvsUA44Dd˺}ruzwdF20@Wh{vW<%&Hd{|nlibWPUd}ĵz_]qzk^PHA5('7Pbkigmwu^H40:Wv}fRJTimR2-F_vpM1%!#%*6Mr˺pXWnzcR@,!+AXd_SIK]r{{nZI4'*>Z{˰lWS]xħxb@#/RhzdJ6% (;SgķvǼr^C, %6K]_YNHNYahh]E&-JkѼ}vw}DZd? *H]lx|kU@1-+*+2Hbx||dD'"0@KXbdb_^]TH>>I_Ŷ|wwz{lZJ9#%9Pgqwxupkhf_YU]lļvrx}wrrwhUF?@EOZgvzla\]gwǽ}uifiqx}{qg\TOKJKUbqvg\RJC<>K\kw}zqkc^YOF@@HWq}v{{pg^WSPPPSX\_]TJ>62224>Pm¿{aPIFIOSUXYXXXWTMD;42:Pismq{ļ}vmfb]Z]chklg^PA7/-49;@CDFIOSPKIEC@>945>IWk}м}vmcZUOID?;741/-/4DHHHE@+ 4U{ihv˨sd\YUONUbihaXSPRPJA<>CIPUX]bhs²zn_Y]iplhg]C& 5Y}k]Yc|ѩv_JADDDJTbig]TPRTSMC:;ENTX^abn|}Żzqd]_hqqqpdK4 2HhxaMEN_{β}snnnnpv{xsg\WUUWTPMKOPZhmqvĽvrqqrsssrqnidfhggdaU@-,F^xmYOTfǮ|nhhkkgdgkmnmifa\YRHA?DOW_dhkkkvź||||}}{wqllprqmg]J6%#2Fbq\JHOd¤{qf_^_dqshcb_\XUUTX^dnv}zxz{|}{wrmlkhgfdb]O?/&&&(1CczfTNPavī{pkiikr|slkigd_ZXX]dkrw|{uqrsurmf_]_glihih]K7+,2:>JXbgghkmpu|n_Y\bfkpuwvqkd^WSSZad_WRXfr|sga\UOMR]ksqgXMD???HWfquvx||}|n\OIKT]gmrrpkc^ZYZ^fklhb_clw}smg]UPNOSZaa\WPJFFKT\_bchms{skc\WUUUUUWXZ\^dpz}ukbbhv{z{}slf^WROPTY^cdcbchnswzxspmns}{wsnmmnpqqpnkihinu|zriddhq||{}|wsngbadkquvvsnifdddffghinu|}wqnmnprvxzzxwvsux|{rliilr|}||}xsqmhdaadkqx}{vqnmnppqqrsx{z|}zwuuw{|xvv{|vnkikns{{wvvx|zvvusqnmnrvz||{xuqnmprsuuvwz}}|zxwvvx{{xvw{|xvvvxz}zwvvw{{zzzxwvvwz}}|zzz{|{{{{|}|{zxxxxxz{|}|{zvssuwz|{xvvvvx{}{zzz|}|{zzz|}}|xwwwxxzxxxxz{}}||{zzxx{|}}}|zxxz{}}|{zzzz|}||}}|{{zzz{|}}{zxxxzz{{|||}}}||}}}}|{{{{||}}}}}}}}}TQ*+wE()!)Q)+wE)).\`D\P`dL6X|xXN:ЀxltxdxNdpdVVhxX^|fftx^txxpHHlfpjTBjx2XFTlPbLtpxlltN\n|||bJnfxbT|fTt^fVtR|xx:r*fn^dL|T|dth|txhnZ|rTRnXrr^lr\hrrnnrlnfvvhfVplhr||hjxbjbxvvlppx`|Vrr|vbvtz|Xnpnzt|tzvpnb||zjXj|||R`t|zzhhlzznvhZ|fhzlrf|trlXn|z|vzvffttznf^z|zvlf|zjt||v||zn|ttx|nthft||hprfx|xxxxp|v\bxzxnzvnxzjdzz|ptvjdfz|zz|nnn|tx||prhnrzxvzxv|nvz|v\fvzrxvjvzfx|vjpxxx|xxzvlv|z|vdnzlh|z||||zjt~tt~zx~tfp~~|~xtz|~tnx~|lp~vrz|tx||||~|x|z||pl||~x~xx|xrp~vvz||z~|~xt~vfrzvv~~~~|~zrv||~~||zx~z||~zvz|z~|z~||vz~~~vjxzvtxxpxzz|z||zzrxzvvvtpx|t|tv~|zx||~||z~|z|~zv||~~~||||||~|zxz~~~~~|~||xx~v|~z~~||||||~~~~|zz||z|~~~~||~~~|~~|z~~~~~||z~z~~z|~z~||~|~z~|xx~|~|x~|||zz|~z|~||z~~~~~|~~~~~|~~~||~~~~|~~~||~~|~|~|~|~|~|~~~~~~~~~~~~~~~~~~~|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Q+wE<~~~~~~~~~~~~~~~{rqokhhilqtuwz~}wrqoooqtx}{wtolkkklnrw{}{wtolihilotx}~{oqukQ?ENKHSbklr}wniknnlnt}{~}zxwtrzxnkoxwciw{uotzutzxlioriZZcc\Z`ecbYDKlzro~ȹtncZK?<;0#*6<<8AVbferͲ~cQSVM>/!  0AK\oŧoc]YQB52530# 3JZoµtibWKHG?;GJHJKG8$$--   !;N\n͹r\bokZNBHVPAGJ>''?b¶VQTK5,,9GTVVSP<)#$#AeųZQZN9,6>AKT]ux\GKVM0  )9Y˭e<3920QPNix`>Hf\9/0* $$2E\xгV5096  /39JVKAH\cWG>6336DQ]oӼ_ED;')5HWTPS\hbVSNE?AP\`iwݾiG>>0 #-2HVSNYluibZVTTZchu͸`ME>/ $)2?JKP_lqnhehkor{Ÿl`SG>5) #'0?KPPTZ]`bcbbeiq}ȸk]QE;2''/;GNNPW_bceeefkq}ζt`QG>5*#,8DNSTZ`hnoqruz­~iZPE6)#-9BHNY`flqw}xl_QE;/$!&,5?JT_fnw{»xnbYPG>52026;AHQZckqw}xne\VQJEBBDHNSW_ekrwz}~wnkifb\\]]__beilot{}}{wtrqonnllnoqrtwxxz~~}zwutrtrrrrtwxzz{~~{zxutuxxwxzzx{~}zxwuuuuuuwzz{}~~}}{zzxwuwwxxz{{}~~~}{}{{}}{zzzzzzxwxxxwuuuuuwzzz{{}}}}}~~}}~~}}{zz{{zzzxxxxwwwwwuuuuuuuuuuwwwxxzzzz{zxxxxxxxxwxxzz{{{z{"Q"`+wE"^"_<|~~|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|||zzzzxzzxzxzxxzxzzxxxzxxxzxzzz|zzzx|xzzxzvxxvxvxxxzxxzzxzxxzx|z|z|~~~~~~~~|||~~||~~~~~|~~~~z~~~~~~~~~|~|~||~~||~|~~|~|~|z~z~||~|~~~~||~||||zzzzz~z||x|x~x|~z~z~xzzx|x|zz|~|~|||z~z||z~z|~||~z|z~x~z|~x~zx|vzzx|z||z~|~~~~~|~~~|~|~~~~~|z~~||~~~~~~~~|~|~|z||~||~~~~|~||~|z~~|~~~~~|~~~|z~~vtxxrz~|x~v|zz|x|||z~~|xv~~zzz|z||~z~||z||||~~~~~~|zz|~|~||~xz|~~~~~~~~~||~||~~~~z~~~||~~|~z~|||zz|~x||x~||x~xx||vvz|v~zzzv|xx~x~|zz~~|z||z|zz|z~~||~||z~z|xzxzx|~|~z|zz~x||z||~||z~z~z~z|z|x|~~~z~vx|z~|~~||~|~~~~||~|||~~z~~|z|vzz~xzz||||zx~z|||x|~xv|vr~|rvx~t~|vrznn|xtpzp~r|trvt~~tzxrj|xnhtrnvv~pvxr~vz~x|~xz~z~zx~t~xp|xpv~vzzt~~p~x|z~|~|~~z||v|x|zzxtvz|z~|rxzztrvv|z~x|~z||~zttr~|tz||z|z|~~~zz~z|||~z|~~vt|xvtv|z|~|~~~z|~zz|z~~z||z|~~zz~~tr~r|rtjvttz|x~zv|||v|zvx~xvvpvxv~|v~~z~z~~||~~~zzxv|zz~|zxz|~z||~xx|~x~~z~z~v|v|~z~~xzxxtz|vtx~v~x|zrxx~xv||v|vx~x~|z||v||xzz|vz|~z|~zx|xz~~~z~~z~~~z~~~~|~|||~xzv|~xv~tv~txx|tvx|zv||v~~|xx~vxtx~|x~~||zzt~|vv||pt|vv|vx~rrrtx~zvzxt|nnztdnrl|zz~~~x|~z~|xzz|xx~~zzz~~~~~~||x~~~~||~~~x~~~|~|~~zp||t|||ztv~~zz~~~~~~x|~~~|z||~|~~~||~~zz|~~xz||~||z|~~|zvxzv|~zvxxv~||||zvz~|~~|zx~|~||~zxxtrrtvtrppptz|z~|z|zz|~|~zzzvxvzvvvvtvtxxzzz~~~~~~|~~~~|z|zz~~|z|x|~||zzzz|zvtrttvz|||zxz|~~~zzzvtvz|~~~~~xxzxxzxrrrrrtvxxxvvvvtxxxxzzzzxxxzxxxxxzzz|~~|xtrlpjffbfdhlhrptxt|xz||~~~~|~zz|x|x|||~~~||~~zxxzx|zz|~~~~~~||z||~~~~~~|~|~|zzx~zzzzzzz|~||~|~~|~~~~~||x|||~z|||z~~~~|~~~~|~||~~~~|~~~~~~~~~~~~~~~~~~~~~~~~|~~|~|~~|~~~~||~~~|~~|~~~~~~~|~|xxz|zz|xzzzzvzxxzxzz|||~~||~||~~|||x|zzxx|vzzz|z~~~~~|~|~|~|~x~~z~|~z~~|~||~~||~~~z~~|~zzzxxvzvztvvtztxxvxxzxxzx|z~~~~~~~||~~|~~~~~~~~~~~~~~|~~z||z~x||zzx||zzzzzzzzz||~~|~|~z~||~x~||~|||||xzzxxxzxvzzzzzz||~|~|~~z~z||x~xz|z|z||z||||||~~~~~~z|~z|~~~~~|~z|zz~x||z~~~zz~|zz|xz||||~~~~|zxzzzxtxvvvtvvttrz{{{{|}}~~}}~~~~~~~~~}}||||{{{{{{||}~~{xuqomkjiijkmprtvx{}}~~}|{zyxyxxyzy{||}~yuolifeddehjmpsw|~~~|zxwtrqpppqrstuvwyyz|||}~vnf_[WTTTTTW[`flqvz}~|||||{{|}~~}zxvtsqqqrrtuvxxxz{{{{zzzzzz{||~xk`YQJHHGGLQV\dlrwyzz{zxxxyxxz{|~|yuqmhc`_`befgilnqtx|ǰnUB8," "#(4>HR]ejnqstvyzz~zpe\TJFIOUZ`b`binrvyz~ϮqO8( ,37@KMLMPPSYagnuy{yqgZH9,!%5I]kpqsx۪lG(+>ACM[[Zalps}~~{lXJ6 $?]wόgQ.  &!"5JR\u}Y>*1Rk}mM2  9bwlaX=!-/.=Uclݭ{jA-" *4Ho|xvedqi`k{nVVbbdΧͩa* 12Cvsjqg_mkbqzT.1;&)QjߖL='%5nлsUic[u꽊t7 ) 'B 8bixw^vsaӝ:Bi+/M I{OFXFPwhSw SS 5XIMd;:B:;06R}|ks:\xĶ̦pI,%-!*6paTUWJDKi{b:I±ŕ}qJ2-!E}dYKWiZPUuzl}m,\ӿ{lxxX4#5CX_lr]MIX_d]l}xR4fǫxq_5 !<\^mŰ}|hWA6AZ\_aquuiuhHKοxYA(:Yx|qllfXMPcla^qvYA2l޼rk@5@}sffl{vdKN_uibYwWF4{ⳄxA2Of_|ar}{cHSgzdZa{u{W@\}xĔuZ6Xkas^rlKTh|hZa}k{N5˶hެ}{IMv\^zl^YK^pkYNaulN:\cZڡzTCvEOql\\JgzmUI_pasY7NfdɺwfKU^raf^mzp]YZ{whsY7dfѵc]pZ\mrk}giqxiXYb}zph{rO2UʨxZv}a_cz\garvpWT]wzkikrS,g_{џĶfpdPYvUuiWm{vTNXs|i\mR6SW{ĦĵisgZrzhwldxzkYS_szb^|cR7aPˊЧpWZ|shnnhXOkrl]fwuSP>d\ķvYX|w}r}vmk^Xhnla]suraCHXaƫrTU}vzmikvc^XkifbbpriaHASmʩTanrsdi}lfallghip{mXYFwdSXdhkur}u}plmkdfllhlraaNKTϘœpNz^nvpx|vlnnibhigcrfc^JSqSºfadWpfqxxsnqmbclmklclidJWmcrgmTkpmwx}vvwmgnpikuqg_h]R{_ğ̭k}YTmfglhrwz{ggvkfhqrmakpnSpwlĸznZhcb^^vsb{wrrinsgklpnqpvqsz^qukzcbffKKcmTbpwh]nxiamzvlqu}{zzqlf^bb\\bdd^uxrn}}xwxwrrvvusqswvruxzzz}|||}||}{zxwwwvsvvvvwwxx{||{}|{xxwwvvvwx{|}|{zxvuusqqqqprsuvx{}}}}|{xz{zzz{|||}|{||zwxwwwwwx{|}}}}}}}|}|z{{zzz{{z{|}|{{||zzzxxvuussssssvwxzz|}}}||}||{{{||}}}}||||{{|{{{||||}}}}}||||{{z{zzzz{||||}}|{zzzxwwxxxzzxz{||||||}}}}}}}}}}|||{{{xxzzzz{}||}}}{{zz{{|{|}}}}}}}||{zxxxxxzzxxxxxzz{||}}}}}}||{{||{{{{zxxzxxzz{{zzz{{zz{|}}}}|{{{||{z{{{{zz{z{|||}}}}}}}|{}}||}}}|{{{{zz{zxxxzxzzxzzzzzz{z{zz{{||||||||}}}}}||||}||}}|{||}}}}}}}}}}}}}}}|}}||}}}}}}}}}|xukidf}}|vis{^wil{|_bkE>6}ƨvC7UZRi}rlif^TUXZhsld¨qK/%+6HUhzunnlkaPMT^nznqƽ|b?&" 2;Nax|vrhhkbXOMZgnndĩhH*!#1?Sq}||vpibUKKYivpbǧk@(#4FX|{zxshYUSMNbfhN_ӱkR6::*":TqrbUX_XTY_\JhǟudYT@((JgwrggifaYKHOX_Ppٺzm_N6 &>Xlnp}pv{|q\JFIanWWvļݷznfK24JS]^i}xcONMbk^@]wX@1#5IDA?Nr}l_caZ]X?bzν^N@>SWRWhrquqƨƫgphNKYO<>IJ@@JRT\gnwz|{Ƴ¶k^plN7EM;16@:7?PPUbmuzru]nmO7>I>/4?>{K<ExkBBPWh͵nqtuο}urnW,*cS뵌z{`>kfǧc6rʹ¬_;PbbVܲn3xڭ` DȑQYY#5bȬwWPctoH]V˪l# H¡_fůo*NuǰxZPbhJ_{GoDzn8,_zKMquVN306e಩G0Vڼn2 0Wz¸wG -n?&_Ĭz\oBz濦ZxYHtθZ&ԈEoŭ]WT-PţqMtN'PuݸoJ6~ AhлnQ}K/JtֵWAStt&*PtĪ`BBJti KrεZZB&6M{ͲP*9f-!M}h #_\ Mtάx*6MJJ2Jǭ;&hD&Vb*u A]߹T>Te<*f׹{6!V~zǹu>6q_JZڹn$$WhZʼ>&T_x鲡qJA_ KWuħN Dnwb! *BftS5E\DVܾo'!`uwzįh52VůP,x 3Hzǩ2JȳW_c3Jrгn0bw 3>nͯK6e軃`{fwDAh๞l-EuKE-;`׾r$Dk׬`,n›S/VW;Y˳V/K{ŭ`TM&JYPw⻪e2;MxپB6Qͻ{c;3GJZȳQ2<\еl$AbǸlVQ~׼roQPB0VG Boٻ~H 5Qʳ~zlV>-P}G&!JwڻT /N~˳lho6!HlԾN2;i澣W -Kn£}nrn<9l{\T#Qt˰_-Nwӵoix_QJYfqE &WѲl*Eu›~q]}eJSW6bԸuDA]§G2TͩuK5k~])-\xΧe 3]⬑AJŞqTJJw׭;'Qiʸl-;_ȩk!JhĩleE}Ŕ-8Ylȳn-;ZȪnVcǛtqhSĚ,;Qkλt<2TwӯqSbР~wZAȰq JVqdzl'8V~Ѷz-;`}ڵtSZZ G\Z?_Ųi&$PeʸiTr)>NuѹP&Bb鿧D?oŗw]0{uf}f,~9׸˵xK*YzWtH/ubQkŅ-6nǚšr6Dou}h`5QeoN2SK`٘ΧJ#BicrcoN{wn_t&TJcnjǪ_DDuZTN}_obzG;KZšoV?*J}nb`-Mz{t}rcobQY-NnBqw\b]i~ʰ{q~~`WxYV~xqkNHeYnhcwielqerce{~zfqkNh\Tlfzci{~fZzxb_tri_0Zkw]>orJxSMqt$NԏĔ{nbzz{zwQJT`ZZ`A6SuE?cMNknxԬlooqŹ~r}kNiJ;izouz{_ouwnn_P}}oxWGnz}nhiizltitet~zMJĪ{WxuoQJ~zkbA_tJBQBA]_TefĠ~kSPk~cc{kTcl~{Vh{}{]/\oK0$No?5_xuʭ_l{rlq~ѳ~wutunq\qoQotr_AKqG$;VQ-A]hxle_hutrtl]b_KHoo]wbH$3Yco}SVo}{rwtc`M8HQ9b~qM5S~}rrqehl\Wnuhcou{wxtf69e_PJlx`x}],0K9Hb滤tt{~}}wfT~}ZSB>`oӞ}n\AJ_f`_lz}outffuA$Pi{z{K2Pfq~`luokHZwbowqei;9Zȯ~nM)E]{tt]DGGV}kl}{o_#Kxk;Htqxc9;_w{xeQV\Y]wJ5Zz{zxV>JbzzZ;Kiz~lnhGZ}?J_}xq`K\`txqKllZTfc >lio}x_83PWĪek~eeGDtǰ{]tQGhzrih~e'&BVh]nt]6BequkYPqqbxq\HA>KbocT`uuQYhkz}xTNVu}MErּcT`WYzxcSWkzhBEPbtY0<\of$0Tce׶eSn{{rǵWwoTK\}}f-5Q`xwc8Dkh6Gli{¹winzKQkcnukW3&>\rYTfnl{r_]VAl}5 5&!0BGiľڻĿoJPVTrxkeQ2>9;cwhBW˜nq{xqcN* tMNYG& 8_rĿשe~`EEMMNYu]A_T#A]ntn}ĕڹwicbZWuǡk_> ,]8>HKBMcwoQT{q\}rZZPQxuV,$kc&6>$6_ʲȻ԰xe]\HAntbc_BMuN0B__fzk9/`ߝ<;fYooNHKH3Gt>') $Sůȸǝ˹wh9;`hl{uz{H2\N\uceeZ]ZhʬVY}c{r56NZrlDz)?WfETcӪQPrT/iڸ]8G#65$JzzﹹǻڿeDͰZf8QTVDA95e}/D漩}B,`kN~cڦM&΅$Zߤb}QSΡZ r$ʛ02zߕ##ԯAS3ozVx/V{N*b -{k~,Mrwq3TuK/q6HcWEc2܀wrnPrYӛP*w}'$~˕{kfq}_PwnP>xxKJ$`ʩ]9;Bn#Dʆ\zȵZ)wh Z8k tET}<*ܳ,Tُ*5ȰW_ю9MђZ{z˒Ye!TH,PǛǤxDBZ5SѯJ; n٘{]h<$B/ih\/]ඏB\r{l~NG>Tλ6)qq#E9&oуAhhΕKDYe\VY/?]_b#G~HocԤگ`*?M-o-A Q}ScP2,J5~eYԏ8h/'k_hMѿG<~K\;9]\)HĸeBhz&E&_k~QJE_9&J}x ohͳrNʰJ-nM\9#ˬםMfqMGEec9uţnwT&zP N SK{EK V0nD]ocʏ}Q}YStE&{H5qמi]2zb kMx}Aiߤch{B,Yx?D}ZekʕZQoڰWnŒ\88ȌBZ`>~ʸ{u` ]]9S\682DqhhYwSKeΑE?ΠbP_cl2&TZ 5J_qe8Q-Ke$xBBΑWJ׭utGHw]ZA t{ S>f]~f53qWTn<ֻfK˲c2ӰfYܝ/ nW~i`qJ/PcN2Gxԩof\n9HĉkinVuzJ`o*}2rq<99ikЬu_\Yot}N?z{V\k? &,'c;&iM )`Wί~$VѼcYlu#2{f]NiMM*eV5kGP8k֗`kׯn6ˠo-$nft~q&0?׭z 0,_l*cJfe5`򿚌J`o/?8BZ2qJ9Qͧ,ZʘneЕ~?\r`ooqe~~K>n D*6E5wq3VKK2YΝQ]]c2΀$*{>0׭noͧ`~E!`5_ulzwZ02˪PEPJB#w²Z?H~e~ȩWDxN?*Jx`quwiH9_׬ ~-†cYMA]€'-~zKGڔeVAutM;uwbDSK}{qz_2` ˃E>BNuPѣP0lЅ?c~zMQ`JZbe~]?NJln`z;SrJ*t9/?rܘKnȶh8ST$0thK*0˹ijkSڦlx_$JȀJ}kAwK-~3e}Z§{kJZWb-?)'f֞rn_5G_*}qVS]쵬q0ZW;_~&r㻘i,JhQ$ce<;ZWhbࡂݡYhc~K *r)2J {3$fbc񪛏ЌBTYE>Q?6ĵZTSMZ3Sc,GJi*ր{GJ¯B xDAk__}ЎE bQwzxnBqJ#Wڲ{W2n\8_ f 6]ou<-Y͆Ttnx믃_W}}M)?Y3`hY5D~noYc~x~G?iquEV~qȪSYܲJM>l]рTǿoiZx}kIJ}WPk~hVqΝP#W~uNVfN2Bz{xZk{fW§x\erlcr9Y{zwhzlh?AV{~TSǦ~utx~oh{wh_!H}}feS9qo]]bwQbn}nT{tEn͌N\uPEHĦzc3k~_AVVKkVZlo]6fJNΝn~}lr;QkBeVMh}bbnZAieŦ]Gw~Kot_GSDbWutnWobnz~whc_Jk\TxJlWAH`ooqQGcMMex9rqV`fWx;Wˌ`Pi˩~irhYGVeZDrl\fcN_fn]]onT3erbt}ScSou?Aʀ?ieco]SJe~}BGxtzheWwfn?B]QftxKfc9crr]{w{kS}hGhGEi>f~cfPkDYwbGoxr~i~lizcS~?MeZxuoY}qHEufP}~`urt~bVl}`b~nrH3unixlwn\\bnq_~{qPoo]in\<\YbxttlPK{ifrc`qhoNrwYSknPGZeoxr\iWAfrGS}bble{zce{on9`P6z~Ei_to9HtZZxǚlkw_tfrYtlWEwKluqNxeJWhrhYc}xtnw]euuwKGkH{}eqxV~YJzx_]]uu{onlxz~h`}~knu`HGSVTr]SufETqlSkrlw{QY~toh;uH8ffVrk;ZuKch\uquw\xWSwtzxBSY&`}GYVowVrNetrZqeqxW`\b_xcqAe9-z}W~SS]bYi\w{iSu]Prwrz{qtf;}A_nYxe]iVQqZo{w}{nYG0ǎirVceӪ~˗cebP}b`uoo~cPqi{}}wb<6xeQl~lYwn+?<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{w~totwxrlw{lbr{xf`i~{wurzt~{qooxl\o}xebt{NTckMQfnZ_wwM?TZ;Nwi`r}q`QcnM5PŝZAAlPb}c]\wq60\NP_r]JZ~qetĬe98Q}xuhlwtizrrqoeYl~tihh{~wzrnhr~\9Yw}`>?B-JxZ]3Txtf8J>;u֣fK9N~PG>GbklVrаrA8]wKzurWcֶ~Q8Nc}qT9'V{ikwr~߾P<_w}nwn`?8Kixino/8ut`oYH0Sk_wP?noqtV8E\nŠn8J{}iZ~ibxoWoSKlrTxwGhuw~xuZcnz~N9H­{ǭk_A$iirfYfz{Ͷ}Z80 TN,#cu_kѝP,QqSMi~\`]E>Zn{WZǏik_G6Ecq}zc),{W2֧}wʼh/,6xq9Mxeww3AZkЏueq׃>$Ǿz/>ݪ]ut6w‹G&{ܬ~l~օ9N_*bДleN?e;hݸu{ѤV8*0t]B, rǤʪxPE]i~zi,!#?ʵzћ`/Bkq9>ħ~НW GceH5&V˸ʒW3<]w}w92\YtqD,3eko>5rzʸ\9#?VM8B}ĸNQNHV?&tʲܶiNiZ{boΡюYhowe2#n͵n~fhk`>$HȬ~Njr6!K`h &`ʸu~߶lez99ԡxڬ]HbwNeаWEEk~n/ ,)N}ŗiZENHPSKB;ZzwƒeZ]86?BTeuZlλW0 8kq{znݞr_PwqA\tobh_&ZYTʠn,KwTVnPNx)cr8&Eq?MQ EŻ_VHz\]h}9)uoSD9-<{ǭ~ectb53wkooVDwS!T~ԔcKrV#$NbwڪoSkw`e0Qwq~lHWcYT-8M~ӡnKEBS00NKӃ`rڛW!&8T`oмQ;qWB2hđHM6;,0අ_n`K? $hYʭwZxl> ,lq]Ĉxe)0x_'EuwwGxeui;YߘY\YuY& ?zqW}iA $WݲkSqcw2`w{fߏlb&KTE55iu}ǩrA/NNBQbw{e\EH˧GHurZoGoHDӿr)$br]{n{wK5Sٹu-#Vq]S~;389}cAuM$Hw~]qeq0EZ*<{ZK5izDE`0Kcxh>`w`_AQzxuʌD__BQB\\lu\l鬿V_e*;Gk]BV`oݒNr;,fh;KWΈYlZ'/z80bڡ~Q0l93l棦otT'*lwz\20uǛo_K)HSWeY06uԉq5AͰ{xuQ6cfZ\H>xڣ~{rSEPJcfi_Vʒ~unTBPu}kPuqTDEYo{cBzY?$6}z}t;2tA*Dlq]6Er5$KWoo_ڛG8KάfDBif}KPK)}Ѽi>hwqEb#u~berZDce~tqzn,{ԅ*TuZAwPVK&;K2ZxiH\;;c/GwoeEn9Jl_G_N8};;{nQtcSAr-9neKDȬn-5rwlĩwM6ԑW3>`VNkN>څ6$G}Y}Կc6AT{qB5Ⱦk'JWekׂc?zŧW'2]Nh֛o8),hcH˶?8PZhPĪ38it_ĕDzh& ,f`Yĭf Gl``eh͸SEnqeeHrп8'3!SV{TSв˻l#9DBkVYG鸼Ş6>AqwnVtпˉ!fxk\Wknqq`QΩ; q}ocr$Pq~}wZ 'r~tW\hG>PS`e]>$nf]eEME-*rlP<ٗ?9&K{zxM_˼bE&hwucM2BPq}Z,->unt}wuT*!-Pxlo_* >BYtw0 'GDx貃qėe !\;G}lzu͒#VTB]ֻ_ȪT/]McnكBΉz56YEoVS⹋S&0MZ0riqn־w6bB_cMe]xeǭVQqhhi{xVi]wrYiirkw]`]N]ֹlextxYSYMVe~ruQB`W\_i\x_VNfcZt`_ʻ~iS~cEkibwݸxrwG;J`t`ٞhqc}h)/Dhԩ{zEZĦT')$Nwh/xZ56krAJH#QӀthWS}H&wߦt`ih9D~extqn#w⹃txro~E!fkڼolxwh~E0eǯS͋c{chix/b]_hzflurcWŗn`\cqzV0}oqTfoq;&вfZkxe$#ԹZkkel> Zijne}]kqwb z¶đn`t~W $_K}B\tnkn'rW~ʔ>WPcktbJQPqŸDGf>J<Џ0xtAAEl'_2?zV_ˀ**c2G/{`)5ĆB\k89Wѯr25u?>b³KGJ)&ktoZi8`fwtHBb5qqM8;x,8rxſ>?SANŗ!<˛Q*~ʻ}26wE$)fũq2$bH9#;йw?AnP,2wk2 MwT5PhYcӻ}PQnhW&Qٸxb{PB0>Z¶oWȯcK2lV;ݧiEoͧqE,W-r]Z8zV#xP]DfZ*;ښ]\TPo<QEPeKz;eȵl&EYJw9hl<_Yn8 qi!Eheʿo5lV#?lѼi9Ņ!#H`_3l6qS-S,;Q9u##QMT3V$G?GEr PGq89˜Gfq)Ar02ٗ2ȣPhپW\t0-֘<ٯN hb2 ?;2{$_# {*!n'-KNYih&*‰#Vhݎ5 e9!K5i]l9 T#w'>5YGk5E'9Qi0-٬K*&ǎ93ёW5)lN'!kP>*hn5,GY9)Yӕ* 2o'#DѼD$f/>c 'BM#nʼn5n'WĪA8ȃ?N͝T*ȅD!N§tB<˦M#8H-ʪV*—Q$Ν\!-V<ߤW/&M;A<A/)}͠KbN Vڳn?i Jٻ~&5;˳z02*)z9A5GH݅D2u}E YqB*W\N$$h22h_?b'~tEb'Ń>i#};P i*H*h!{N&{'hW!К2Yh,֠>Qx6ͣJV}> {Ρ6QkA8 6VT;\n_zKEkV uݏ???)`39r)Dڃ? ?ȼh Hq3 >ʾk>u, 3ʿk6{-,˾u;*,ĻnS}$f*{rH6YJׅZ;_u _ԸWH-k9eʚP?K]efDQq'`n3E}9Sz<WM>Ӫ_Eu'){{; 5 ٧9HAit`)0wz-wk)PٵN#3גQi,)ש]#`֌>&eq2 BӬY3DЋ? 6uB3ڕW)ˈGD֗]#,HBњ]05r>EΡ_3;V59xܲ]62E/6ozA/D#3tͅJ92)o}G8•3 cыQ6ʤ<]ԕ\2u˹QP˒_-rt$ Dțb)i֒> -ȡe,QסM2YWӞT#9EV֩],/»~BAЬi;$ĉG3ʩqH*ȆDAǝhK6ăKHľ{_QD͉DWȹ_TN;ܘBM`/?A;M_*!AA 9w-5Q#ӕB e!qˡVx0'kŘY)&څ33Q0֋<3uE3щE/uK<}߳zB0wS9ݭT5}uHB軈l;}toNAȎfKrqwGGٌ]\n~o5 JԂ`_fr<Bz]hWwG,B߂leMwT;3tzlKrTG6l}HhND?q򛌆HflB5k쏒>kA#bݎ~/`M P}⣠qZr,6r媭nAV΅H$JE_zJ0Mx\qh9>Wii{tS2B`rņnwc͒`8KZxȈtuPˎn;SJЕtfDΏ~VP-ўzS5lWJ$őJ6Zf5λ?8_r)#ģu-Mtl3Եf-BʠxeDZ/<§}P_J*A}*Qe-5z96nKSnA6~/#lݯkEBx-0rxGQn~lG˶wKZwkQnラeVco_wD&onuqbfk*AЅho`l<fٿrbr\$`Ӽr_nE!wӲew,!ʬee D}rD uxļN&9kμw?Q~ׯ_)-u{wܦV Wwfzڔ;;bVł6l~9lŦ_0NbfJ!ݯ}9?KDSͰ] ixE#˗r6-٤YA PoW,ltD'ٌWzT}Ά?2zeq_!!qxtAQ}Z-;x~;&ew{W$K{lqi06c{q?']z}t\&lbbuĕh ]…clzoi/B`qni?9{hw{P*t\o}]*fiqt}k9Do`uwN*fbiq2r_bwn]liZ{rzxnw]i}lx}zif{woz}zl_}wqzwq`ttzon~}tehunoo}tncloktkql}lkllekt}}cqfutTo]ekizPl~e]qeGYuWqrKNw{\uzb?kYrx9P`rBDc`}H6wZPu`9oV?boWihEZru\rnN`onS{iQftVnrNfw`fV]thi_Zo~okcS_uuz~]EZfuwinwbf68{oQįe6<{nSc?>zlY]ED{{l_KNQxxhkDJZ~ukww5fhB$KenD,Q`uD/V]u<;`Txz9f`_ŵxANw_o¬b5Y}_{N0cxbB6nuhGEqnlNMnwlq~NYo~xiutH`q~}nwlKiuuz]No{zSZ{wzzYe}xtncx}ukzbu~ocr\{zqfhP}{nf]T}zqqxYc{zzlzxNnx{xi~lK}w~te{lPxqurk~`Wut~llrefwzxhu}q`xq{uoufettzrhutt}txki~ww{uwnor}{wtk{u~w}zoox}uxqu{{{w}wrz{}z}zuu~}{}{~{wwz{}~zxz~{}~~zxz~{{{z}}}~~{{{}~~}}~{}}}~~}~} zQ P+wE N O<}zzz}~{z}~{zzzzz{{}{}~~}}}{{}}{xwz}zxzzzz}~~}{}~~{{}~{{}}}}z}{zwx}~zriekx~~{wtqnliirz}zxz{xqlnt{~qb_ituz{qecc`bhnlkqxŵlcnеnl}{klxxT$ $98!&SzǹпlerueM8*3PwfN>DqӠ~qN&*2) Qirikwutuxwqf`ZWSNWerutnihquk_\hunVESkokotfTKKKMV`_]bn{ʩx}µroz{kkrzxiH* &3DH<'*Gbw¶xlq}u`PB?PixoZMK\ӭtlc?#$00-)A]_P_u٧שмH3c~wkflxͶ{nooTGKZhkiixiVNNPMD2$)fzi\fЦ鼔zqxrxq< /]uui`fr~n`co{iQEJWeiikrfTPQVTNA8HNNNG5#$Bkxڳ{z׼r`]kz{ob_fu~W0?exukioz}{h`cr~weTNVcnqrwk]\_cb]TPWk}z}}tz~~{ttttolqz}wtrtz}~~}zzzxwrrw}zttrrqqoqtrqtz~}{}{ww{zwuwx{}trw{~{}zx{}}}~}wxxoou{xrqtx}xlbbkx{zzzxz~zulefrzzz{zrnnrtw}~tkltwkflt{{wnhinqroe\Y]fqwtlhkow~{wwx{{xtokhkqokecelx}xqoqzrlkh`Z]ehkkh_WZkzruxibclrrkhhoxt`NDDSiz}xx}xrqw}xoikrz}}{rqquwuqoox{{~jQ@+wE>?<}x{utOk/0cnbQ%\wL(T)ۀ&]a ilH:_? A}Q,/RtT&-^<`)+ߺP!sV%֭@7t$~ܔ$gr~<0)H_٫ֱܟx8Qb9"AfVLϗ 9O u.Dp_{c$s*}֡;>Ԉ,Aݠ8#yօ$ sF.]Kw,]۠]"Fױu: DwۼU1 8aӰQ&,W‰O$Auܱj*Jܮh'0mܪ]!JެS!s])|ߡ8UGXݚ9$|o&LӒ6<ӓ6>ג3C̎5Ph)rȳX,{ҺU+mw'G׳ESݹH:΍/PߣZaq-(Y٥i*Hrܿ]; %RvҮRA* ?RϳwH7." !%=[kǪoR@4!!,G]qƵsM1,1Lmг{T@*%EW˔g9%,SΞtA% 5xȑS,&-gA%Mь'2qѩP+,Kz0 ?ze+HpϼJ*G~ϼL,6Vq׮s`?&TnɪffI2&(#CgxǾ}XD8&!!""&5Q[huɹsp`a@=B20%-#"6DWgotvmE;F@/-(:HNSj|Ժ]3)"0)8]sк͵j]H1,15X›~`.(;YxϬlK:$)?bѷl:" L|ҺbC)'27Fh~dz{M=4+F]ɾlVK9B-!&#?8.BEMbn{}̽̿]bhjfcZOETIPC45H)/3#:>EBM]R\ilyvv÷öɷxlk`WVC413/1.+2FXdïjU@IR>FJ76Jaqݻf`zcLDFL85?02@NGZjrŨü|~zcMBL\YT::=2D2>XMLGVV>@( 4PRtsof~ͻkkt{r jQ @+wE > ?<~RF~nX@~bb\FVzX>D\LX^Nd|BNR4NL6.z~^\r8FЊZD`¾(Dr\h X֖8Pxrж8HtfN$JX&.v:2lȬVjb ֆbn>,zش~*6^X.J`&dbTfhd~dX@>@ bĶrhfbln$\.2܀LLhT 8d ȼ68< xPX6ά|dJrnl:.8rRZp8`tҠb$ֈ,8jjFNh@&rȪd@NvШL <܈L>Nltr\\|HF:|D VbNd`TFP(TD>d˜|x>>0JھrR0lxZhP^ĺ~ d,ZČNRFf ~ΐXHZxL@r~4&.X6*̰f4Xvn*4Ծz*4|NNXĢ||МlJNtx`,Hf6Ȓ*(fȆb`Tr":ΜR8FhҬ~<>\8V`VPBr<@|fDXx|NR^xАP*@V@>~LX~rtF6pv.@f֚ld>d|RF^2^ҤjPX84~ Β$(bdj`tFZb,D~bNbz`6V޴jPԂ4DVʜzh8jRRl~XP^xRJXHHv8ZbVdX֊XLJZTt`F`x$<̘TLj~np`|\$JȲ8>hNxnt8@JJ~pbh~x@4pڒ@k>VwqD\kˀDP>tJJ\PtY}zVPA_}\zhG8J\hPΉ,)n\beteAzJtY\z}tSzSezDݳ85w);V>wYY}bnzz\JhbP׀D5tzG\hw_}GqznkqJPMγ)}MV>hnD,8PqY}YD>ezk}kVYkkttn}h_nbtzwkhPtkzkqtVwbMntMtY_\qVzt_qVMJkbhz}tzenkY\bwwwttYbPkk\h\ehSwqwbYzqnbzh}q\ezGnVzbqwewe_neG}MteShetw}wbP_Get}n_betYbwweJnntqhenntkeSAP}\SwYY_wtknS_tY>nVe_qSb}kkzeebSYMhYktqVtYh‰hn\qbtqt_hebtqPh}eYYGtPYkqMtkbP8}khneqtD}ԡ/,2nSAn)\>S_³\>ezk_}q>kh5tŪM8ڒ>JbMwh\kG;/JYh} _ AMh8_YJ׳P2\2ݪDGn,eȰMMzYz8qѰJ8/YAqqV bSbȌ,J8#P)wMbV#_P8tG>ww2MDJM&wtVSAzAYh;ԶGhA>Y,w&zz8}tMbb\kJ\\Jk5};nª\V˜YhwA,\DDG&e&;ŤekhtVtȳVV_>wJz_PzVSz)wS&#AM &>_,zJGhtkhwbzhGhz>MŤS>k}GYw_wteq_>eˆ22AM 8;}8_\V)G>hqwz}wnn_MzzASPDwYqzwte}ŌJ\Y)zw,)ht_),S_JAtkknbVGSƒGk_V}nzzhYˌGnY/>hk8GVnΧM>eVwVek8hY>>Y_D}\wtSzz5SP/ DJt}JGzԛD5SS_JŰVDJP;k°M>}>kShSYkDΏ88tAbD\>AMȼMV\ D};AY/k\ bq_b eJ#;5ђAStPJetAݰG>8Aq 8#Jq&;J8qh/Pz)D//eJPVDeDGwGtP_q;qV8D>>>/5ݪMGbDk’MM˒/AJ>hzJ/w&GJP\V\M8eS5ȞDMk;btVkPJŞ>;5_Pt,}DJ }/A_>z_wzb}StVJ}DebDtb\n_SG>/MSq#zD/t2b YYV}\tbJśPYYqqkkGt¹Y,},5MD#nȃ)8}MVwheVYGVȆJhnYtVhq2zJ,&# 5\S5t&w€25D8hwJYz8Vw;\tDnGGtMqbnSYq5qѼS2#5M_b2 wJ2˛G5tԛΕMnVPS8P/t\;nYPJVDS);>,Gtq/\PGwJVnS8YDJSDeD€P}\qqh}ȪYq˿\S΀PȆSqeYbqAԡAb˹88V8h5ŀDwzVqkeqVbeYbJVwhVw_VŃ;wפ;_GMS&n,GVt)>˜PJwtewwtnqYY\AbqAP\MhwVVktebbktJSM)_ڀ )APDJ5en#AΛM8ktVeqw}tbwzY_\GkzP_b\}}}wwqq_ehDn}/DAh,A e&585z8bnMw}nn}n\zhb\knSwekkwt\tMPq5kD)8_eڭ2)׀,GqGen\q\_S\SqbS_wqnqqkY>__/݉#J\q,)w An8YbGhkDbw>eb;qD;}GnSPtYYwM_eJԡAG)>#Gq#S};VђJSSJqqG_};Sр)A΃5PbVb&\VA}zDV\SwDeV5}ΪD2ק;2מ/5я8AšYSkSqYY¡PDԞ5;52); >}5_wJzP\eSzMek;kY5tY8wJ8zSAnqP\\S_8ԳD>#Yb/2;5ePPtV}k_wY_PnVAzPV__}bSwS5ˡ55wP;qژ/eeȧ>8wDenn}qzkzkbbqw\}tqbSԧDMhkA A\ kڧ,/b&SYPqwqzw}}\hbM}Ybw\qzwt_w_>ݹJA,GS_\ڼ8 ׌&2Ώ>VwVeqekzS\zJ\hGnYMwzYk}tet\_e>w˧D2,5}D\tA&ћAD˒PY__q\tYtt>hqVSYwV}ew_eqGwG8ԉ#;heJt,#ڕ88JSewžnwkYtDnwSt\}}bqk_\kY_Aq>}>e_YwVtn_P_PMnJnD}}MkwY}wekke_kYzM}}Mnehew}bYzP_hV΀SŌV_}nttehbek\\z\_}_heJttAhAMJ2\5t2JȏA>_Gh_nntqn}th}_tbbw_qkk}ttwkkhPeG8t_&Dņ&#qŶ\ G׏,&}ѰJSz/;V>htS_kn}zzw}nkqbzbhzk}tzq_w}PVŧV8hz/>ڧD \}&8׭Ahb)eG>Sbt_hwnwzhznheqt}}bbeʼnJnS;׏;Yb2zšJAJ\qYnzhhb\S_qPn_Vq_w}hweqbeqPzVJΆ;_\2w›GJMe}b}hqhqYtkSV\qSzYhhekewPtbM>;ŏ;;ʼn8Mt8SwDVYYnYn}Yh}GYƒGbŃJbzMnkSwhk}eknVqhJP8zMDJJMJz\MntS_SMVDJ>ŕAA‰>DASqMhqbhwqn_nzPqnMtqP}kSwq\qb_hPknJ8;q/_S8ʼn8MkAhYennnnwh\ez_ehhqwqt_bS•J\k5wγP5ˆ5Mh;zMSkYqwhqzqkw_q_YtM_h_ttqtn_z_VD\h5}ѭGAу8_VAΛPYz_zqt}}hzqhhqwkwnwqSk\DA;я2AnS\,zȡG;JS_hzwknekhz}ettzwq}\thPJD˃/Gt,\S,qžG;zGJVYkbtqYhtShhPqh\_qtkwhbzqYPVȀ8bqAѭPAΡVVY_\\eYh_eh\bb}}bkwbtqStzJhM_VSkV_tqhhnt\Vq_nhhtnzzwnbz\hb\k\z\kqbze_nMtwGkMeVYeYtqq}k}_zbweknktn}nk}VPzJnYh}JM\Szt_kzhqtntqkzq_qt\be\kt\h}qhttqnztnz_hYMwzGYΤSAwŀASΞMAzqA\VMzkPbekz}ttzwqw}zkk}kbwt\be\twhq}tqwz}kk}w_nb\hDhŏMJ˼k;b˒AG˪\>qeS\ewhzztwwn}nhhqthzqttwzne_YzVJGbkDwSVVnqe}twznww_}tqhttnqnntZtZTnBeQABNtKe]Hkb]wnctqZwfW}citZwkq}ttlic\cPfPitMftTiwVfff}obqoTfqQctNioQriZzbfzllot_i_b]]`Ze`hklulhokfY\QYN\rNhhQkfc}ufuknr_qfZzb\b__bllrl}lqnq_quZebVnthlutuuutl}eto`xchzcozou}ihehzWhhS]ZzNlf__quqx}wttnxwowtw{onhlxYn`QVQoKhZTZin]wqqx{}{ww{trntw}wqlbl_rqW}eZ]ewYkxewwow{urx{orwnwqk{uu{zzzzqnkcqt\woZ`_en}brzl{uz{u{zqtqnn{lxrq}un}tkziiz\ho\w`Z\`{\ixeuznx}{rwuwxwzxz}wr}kukunnuk{{ltwr}ttukz}kurrtoutxzxur{rxzt{wz}{{{tq{tuxu}w{wx}~u{}rznurq~wr{{tw~zrwqoxi{krnrrquiuqtwu{~{~{z}x}wz}x}zz~{xz~~xtwtow{llohtzflofwzfnqiwxouxu~z~~}}}zz}{z}~~~~{zz~ut{zqwon{wiqnl}uirnl}uqtux}}~}}{{}}}{zw}wrru{q}ur~ru}w{}{}{{~xz}x}xw{}}}}}}}x~zww{{uwxw}}w}}z~}z}}x{zw}wx{uzxx{x{{x}}x{xw~~uu}ux}uz{u}{w{~x{{}~{{~~x}~x~}z~}{}}~}{}}z~zzxx~xz~x{}x{~z{{{~}{}}z{~x{x{~z}}z}{}}}}~~{}{{{~z{~zz~{}~~}{}}{{~zz~xz{x~zz~z}}{}~~~~~~~~~~~~~~~}}}~}{~}}~{}}{~}}~}~~~~~~~~~~~~~~~~~~~~~~~~~~}~~}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Q+wEO<|vqkhfdcca^[WSNJB>;98867;?FQ]l|ƽqga`dhnswz{{zzyxwusqomljigffeeeefimrv{v^I7.-4@O]jruslcZQH@;631//3;J_wðkVJHRe|ɾp^OE@<95336>IUbny}pe^[Z\_bejr{ǿȴp\NIMXgv~tkdaaflt{kZONWi˻nb\\_djotx|scRA0%#.DaíjYLC?=;;BEIMT]iykUC6.)&$! !'/:FQ\djllkihggjou}lVC3+.:Me~}sj`WOJHJMRW\biq{s_L:-''-3:AFKNQTVXYYWSNIC?=?GVitmmvƸ|pgb_^^]^_aejpv|~kXF849FZnlVA/#!(3=FMQRPMIFDELXhzÿxk^RF<2) #2DYn{xurommr|ʼtfXI;/&! "$(,2;GUevysokheb_\ZXWVUTV\hz̾~xsolmr{ypg^VQPT\hužŹ{iWF91/4=GR\fpy˼zdRJM[pɽp_QGBABDEEEDA?<98:BRgɷ|l^SJB;50./28>EKRZbjs|{rfWF6'!4Omʽy`H5& !&+/2479<>?@@@@@@?=:73/,($  1KgŻ˿ʴkZPOU^it}}seVF7+&'0>L[isvrj^SG<3-*))***+-/269>CKVcqytrsw|˿ytuywlbYTWbs˿xfWJA;62.*'#!!*:OhoT?1-3?Oap{|reWI<413;DOYcimmljhggkst[B+  +9IYiyͿp_TRYgxžo_PD>>FR_mzseVG9.(&(+/37?KZl|xvutspkcXL?2' (3@MV\]XPF<2)%$'-4;BGLORTVX\bm{ʴz\?)'6FUbmsvutrqrv~̾lP9,,:Rpʳ~dN>67>IT_fif]RE8,#"'+17?HR]it˵udWPLJHFFJS_o}obXQNMNPRUZajuƷm`[`npWA0'&)/5;AIQ[fq|~yuplgc_]]afnvuaK9-,7LhǶzgXPR[iwscUIBBHTbo|{tnkkq|ûkYKA:50/,+,/4:AFKPW]flry¿{x{ <Q +wE  C}~}}zusrsu{~yxzxrkhggeb_\YXVVUTW_gmqpkgffgiifgkmokhlszĿ{th_VQLEB=?DILMG=7778402:@A?;:?KXadfo|¾ztld`\WPKJOV]^WMGFHHC@BKRTUWVYix{wqh]SLE>5//1375,$"%(,.2?BCJU`kqzźxma]VLA755795-$  )7BKR\jxȽyslbVNJIKNI@6.,*& &(,,,09FS]dlyǹvke^TG>87872'  #/ELS[dnx}|tlb[XYZYRIB=80*'%&'(('(,4:657851049=EJPV^glqty{urtuslfb\UNGC@?>><88;@FJMRY`glmot{yutvvtmhd^YRMIFFEEB?@CGLORW]cilopv||{~~ztolg`ZUSPOPNJHGHLORTX^cgjkmrw{~|wtpke`[WWVVSPONPSVXZ\bgklmpux|~~zxtoie`]\[ZXUTSTVYZ]`dgjkmosvxz}~|ytplgdbaa`]ZYZ[]_abejmpopsuxz|}zxsokihgedb`_`abdegjlopqrtvxz{|~|yvromlkkiffeefhhikmprrstvxz{{}~{xtrponmljjijjkllnprssstvxyzz||ywutsrqpmmlmmnnoqrttuuvwyz{|}~|yxvuutsqpppppqrstuvvvwyyzz{|}~}{yxxwwuttsssttuvvwwwxxxzz{||~}|{zzzywwvvvvvwwwyyyyyyz{{||}~~}|{{{zyyxxxxyyyzzzzzz{||||}~~~}}|||{{z{{{{||||||}}}}}~~~~~~~}}}}}}}~~~~~~~ Q +wE C}~}|wtsrty~yxzxrkgggda^[XWVUTU]flqpkgffhihfhkoniiqw~zpd\SOHC>>CHKNH>8778404:;ES^cdlz~xrib_ZTMJMT\^YOGFHHB@DLTUWWW`r}{vofYPJB:1.0267/&"%)-/5BP\biużwnf_XOIHJLPLE?:85/,.8>>?BDLXenuɾxl`]UJ>655882(   ,:ENUbqyrkaUMJJMLE;1-+( %),,,0:HV_ep~˿xke^SE=8785.!  $1>HQ^l|ɾvmaVMIIHD=1($  $)4AMW_l|̾vnf[MB;8861' &3@HTaq~ƺzrgYOFDDD?4)$!!)4CNVan|ʽsjbWI?8665-#  +:FNYfwŷwmaVMGEEC<3*%" %.75/(" !$')((-6CJS[eq{Ǽyqj`VNKLLIB94/("!""#(1EKT]hqw|ʿ~tkfegf_UOKE=50..//.,*08@GMT]gqty~xogaacb[RLF?70.**--,)).5>=:7:?EIMRY`glmpv~zutvvsmhc]XPLHFEED@?BFKNQV\dimoqw~|{}~ztokf_YURPOOLHGHJNRTW]cgjlnsw|~~}wtpkd_[XWVUROOOQUWY\agklmpuy|~{yuoid`]\[ZWTTSUXZ\_cfjkmosvxz}}yuplgdbaa`\ZYZ\^`bdhloppsuxz|~{xtpkihgfdb`_`bcdfiknpqrtvxz{|}zwsomlkkiffeffhhjlnqrrsuxz{{}|yvrqonmljjijjklmoqssstuxxzz|~zxvtsrqpnmlmmnooqstuuvvxz{|}}{xwvuusqpppppqrstvvvvxyzz{{}}|zxxwwuttsssttuvwwwwxxyzz{|~~|{zzzyxwvvvvvwwwyyyyyzz{{|}~~|{{{zzyxxxxyyyzzzzzz{|||}~~~~~}}||{{{{{{{||||||}}}}~~~~~~~~}}}}}}~~~~~~~0JQ0 +wE00<~~~~~~~~~}}}~~~~~~~~~~}}}}}}}~~~~~~~~~~~~~~}~yzztrnlhba_ZYXWVW[\`gkr{Ǻ{njc[XOLJDB@<=89:688;?>FHOYZdor{ÑxHg3+*($ &#&+.48AHMY]amrx;vx_QI=2$#  $06=NNZdnxyɵ|qgOF<,!  -8J[jz¾ϱpsS>6#'AS\kҳ`UPB1 "(9L^r}ӵvkhbM-*    -52AWioo¸}qkaRE=4,2-!!%*.29@COUSYdmr|udYZTF;63..685;GIQ]gmr}¾̻}keaVH:40+.0..07>ELUaeku»wof[QI=10122268=:>@EMQVZ_djpx}||{xz»yqf_UQOLHHJKJOUY[^chmprnhhimrxvppmgdhkklqsss{tqme`dkns{pnnhbbcfhiorqv~{zyu~}|rnmhf^[]W^efhghhnwz~~}|{~vqkgc\_^^cejjgjloqvwvplnnilonllt{ynghddgfcb_`bcklkpnjjkkkrroptrs{uulijhe`^\^abgjnnnsux|~|~{zwnii`[\]_abfjjn{~|y{{|{z|}{xwutrsvtsvtz{}~ytomjc```^_dechnnosx}|}zysohgd[_[VZV[\Xa^`hhlotz{|wsmif`^^[XYYZ]bffkttw{}|wykmk[d]]c[``^c`fljnvw||~zzwvsopjikeeecechklrtsx{~}{z|{|yw|{y{{zz|{yz|z{|}~{|}z{}~z|{y{xz|yyz{{}{wuusrqnmqspsuuwy|~}zwytonlhhmjfijjjlrqsy}~|}|{xwvvuqurmqrnkmnmmmmnnpqvw|~~~xvsqnkkihfiihjlkjkrsu{}~zrpqmhedc`afeellosy}~~{srsnedgfgihioqqtwzz}}}yursqmmmlnoorutvy|}}}|~~|yy{ywwxywvyxw{~}~{~zvy{wtxywvxyz|~}}||{{{{|}||}|{{||{{yvttuttvxxxy{~~~~}|}}|yy{{{{|}}}}~}|}|zxxxwuwzzz}~~~~}}}~}}~~~}~}||{{{|||}~~~~}{zyy{|}}}{|}~~}}}{}~~~{{|}}}|}}}}}}|{|}}~}|||{||{{}~~~~}z~}|{|}|{|~~|}xzt~|m{p}v|wv~sy|wuwwyx~~sw~nvuw{|||t}zo|kr|x}rynwpyqv}x|sxqvjsdu~nxqtz|z|~yz}}}~{|x~vumksrvgwjtkmxrxx|{~i{cu_pgl|x~twxtmzvs|s|ntyv{{wpko~qm|uczmutqr~tjijglbs|_enmstnsqrqo_ilcdspp}ua{Ax8j`uqSfa$VZJ;Oupn͗ӢXb^ *X. &A7(6T[`}Қi^]X,2 8@!8Yf]}㸵ɥue{N.4)39(Mcrs~żʡƁKgb.9/9< =`VR᮱fWZ8) :-2Scnw͸UbV=*"6;1=arƨȸ{XQi*/%800P_h߸뛴ڹT{D ;C ,).F?Dk~ǻ_gb4/' @3,ElknѺҒq9@NcenzѺw^h># #9@CObikuWBIB'!1 3,'HDAB`nvqpx{VavvnضvSIVN39=B@@MRjvrxТ{dMR?A?;:CSOUm~zĵwweMCI?3>HDI\bb~ȶܷl]iJ.<=82BAKNT\isz~y|~xxvqeffeTSZXTSX[^bbirusu}{|wsoxpkntvkszz{~|zyminf`]_XT[`Z^iokuùŶ}n^c\QOTNRUX[doopw}xlgjc^[ab_fotzƼzgfcUHOHBINPQUd]elpsu|{}|~zy~|{wzqblfUS`[QW_XZkh`fnxhjwxqoywow}xz{||uwptrgjmxneqzutuy{{w{~wslqi`eaaa]abigdjrxtyuxultxqjqyqnvxuz{z{wwz~sqywusxzyzu}|{}vrsoruxyv~}zzsrptmorust{}vspnnxrsw||ssrmgddca_ennnt}{x~xwysmljmstolryuotwwwtrsvwrlpxrkmpkgcdfbecekqrqx~vvzjp{zvqpuuy{row{romlklmhdjsmhmrrnjoqoprsryz{z~y}|}ztvnm||{w~||{y{yyyz~z|{uuxz}~z|~|}}}|yxyyxuu||}~ylgkmiabcfkllnptunijjgfdfflrvv|}~|xuw|xuwvwxyx|z}~|xuvxunmopoqnorvvrqtsqqpnqtrprx|z{~}~~~xwvqnmmihehhhlljmosrsvyttwzxywyz{|}}yx}y|{yzxtuqqqqttrvvuwxvvwxxvwxz{~xwxuqrqmnuuru|~~{wuyvustrrttpprrlqtqorrpoqqoorsqsttwyuuy|}~~{|{{zz|zw|}zz||wwywrtwsprtqqusqrvwsuwuvwvvw{zz|||~|}~~~|}{zyyvsvursuwuwyzz{~}~}}}~}~~{{}}{|}|}}~|wxwuuvwvvz|yx{~zz{}|{|}||}}~~{y{zxxyzyyzzzzzzyxxxxxvvxxvuxyyy|{}~~~}{yxvtsrponkjjhedd`]\[YVXVTTVVSSVVVY\]^bdfhlnoqrssvwtuvvrrtroqrppruuvyzz{}~|{xxsqolljggedcbdbbcefeghikmmnprssvwvx{||}{{|yxyzy{|z|}}{|}||||zzzyvvtsppomlmnlmprrtvwx{zzz}}ywzzttwusrtssststuxuwz{}~~~~~|xwwurqomkkhgggfccfedfhhhjllmpqruvx{~}}~|zy{}~}|~~~~}~~~~~~}~}{~zzzyxwstwsssptuussxxxy{{{z}z~~||}}~~~~~}~}|xxzzzyxxyzyxvy{ywwwz|zy{y}|zy{zzxzwxz|wvuywvvytrx{uwyxyz|{uvz}yyxz|~}z~}~~{wtvzvtsttuwvrquwwuqstusupprtrqoorrrqoptsrpqquutpqsxtspqqwtsrrtvutttwywuxz{{zwvwxyvtttuutrrqrrpomorsqqsstwuvrrsuuutruxxwvuwyyyxwz~||{{}~~|~~~~}~~|~}}}~|}~~}~|||}~~}~~}~}}~~||}~}}~~||}~~~~~~~}~~~~~}}}}}}|||||{zzzzzyyyyyyyxxyyzzzzzzzzzzzz{{{{{|||||||}~~~~~~~~~~~~~~~~}||}}}}}}}}~~~~~~~~~~~~~~}}}}|{{{{{{zzzzzzzzzzz{{{{{{|{{||}}}}~~~~~}}||{{{zzyyyyxxxxxxxxwxxxwwxxxxwwwxxwwwwwwwvvwwwwxxyyzz{{||}}}}~~~}~~~~}}}}~~}}}}}}}}}}}}}}|||||||||||||{{|||{{{|||{{||}}}}~~~~~~~~~~~~~~~~~~~}}~~}}}||}||{|||||||}}}}}}|}}||||||||||}}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}~~~~~}~~~~}}~~~~~}}^Q}4+wE}2}3<~~|xttvz~~~~|z||z~~z||zz|~~~z||z|~xv|||~|xxzxtzxrpttpnpzxllllt|~vv~pVPX`fr|^J@BVl~tnzԮvD  8dƘzhN6:X~p4.FV`xbPftlnXFjPJ<*&HЮ|R.Pr\ntRRnԸx84N@2XpNdzPH`|t66J2.^hZvpHLlƂ>0LT>Bz`jzVPv†.lt,8Ұj^h|nJDnF"BnR.n~rjr|fLjֶp*.`jRZ~txxjn~jd@(bTLbf`xpL`~bpвR>r^VdVbČl@rȲvT`xzlpndŽTDTplf\Xt~txlp, PjpԪjZppX\t,T¬~XJR^j|^Xz4D|jJZzzx:<^bxംTBJR\vX>B^ڶn>Dd~~lZ^nt|d:$">xhfvhjzҘLJ\L2RƲf6Fnn`f~ҰT$b|`&.XҰtH@Vθj$rb4,@XtNBTnxV>^вz`T\jtx(4rp|vfZRjfpĎJ $BV\zΘh^vȈ< @xܢvpj>*lzf,>ܺpdTBVhjbd|ڰnZtlDXĠL.n\jV*N~^",rlPF*PzȲX0flFDr¬>BttRx°d>`P^|~ДD j<"Lnκ~bNH`^@fz $V\4N|RX\N^¶~J>`^B(&d^Vbjj|x>ȈLHb^B.zȞnTRL6@vĸ^ rhf°f6PvvjzZXbj®fF,,RJ4F^pƀPNL.Bغtr^@Bnξz|B.XrtVN`hnzjbR@^D,H(D讄~XFjn~ZzĜzrjRT’nP,"JҼd@ԾnXdV4FlntT<6>Rl|d @fȶl64fjPưpBXΜ`,2hF .bڂ\аh&$RvxrrjvT@6@dļd`Ҩd&<`tzT>N|ȜhNNnX"*R^f~p`\ΒH,8Fxl^XZhҴh**Fr̆fnlRZ~$2ZXƞndz|Z0PƚxT*$ZX&`b "v^ ,`d^jzj<hĖ\>>BFbZ NԠN*>PfඎrL dL2r̀6|"D~PdjdxX\trR$\Ȇ0@fb,>,DƔZ>J>2 dܲfJh̖4HڌR(*hغ`*Tдv6<`bhV`زNFj|h@(@~`t~b<@tlVHNbvȮ:(~֢f:$.Llδ`22R|~~n<8P^bv|~ƪb Nz侊pb>"f`&^p~L8P\RXv~ndV 8ζt:0LhxƢ8 Țt2 0~|ƀJ.*NĬN,4^lRBB`v >xjzzrzzl~PfҀ> 0^fZpl$TƶtR.$DzH^ҀNZDh|h^l|rzz^X\N6^zLB^D,^pj\z~X2@š~b:,dȢzt|d<0T˜`JTj|ʰ\ 8lzЮzdjnrhPX|F@~ʬT8TV8Hv̚jTZк\,:"4~촊bFTvlDD<@HLzdNJ^ڂ$J|`B8`J8аnHPfjhʺz:4Z~n`rzlf|L@fھX2DvlPTjzxjXx>8|̤~$*Bxb*(D^vBLhxtzJ8RPPnƀNBRf~0`X.(@NhΞ0@r@B|>,J~Ġl"p‚dL*:dt8$`LBjΌnHFfTRtV6иd*$^޶h2hzxXFںrR`d ,~fH8.Dl|B0vR.Fx؄2:\pʺvN Hβ^TfrvvxPzr:8HLXج|b8*RnhxжĆdj8$FPBXhvN2H|ƾHxh&$:Zj\j΢rZPBLҦV(vT0NršhjȆH*2DVzȎZJPPPhĴvHptb~hLFVvv\\l0ZFJdlʚJ@lČ&FЎL.$2n̺r,&HdxȞTDTt zz6 jήj44H^tʲx8ઊnD"$$2v謀fXr jĚ\,".8FzЮ^0lВH0Lt֞4 JrجxN42bfVflfvĸxj~޼\Jtz(TR,8ԊH*N\tҚbhdHPhʪl48\hVdvlr`dD `~ `Ʈjjf(.Vlx¼\PzhzdZp",|tЖHZ>J$Nrx|zbDN^`pʴf&ưL6`ƴlXdvnN:JlplrD@h&*²r:`Қj48vf>2JlҸ~VJ>4RT$t|b`lV2`V*: VH֜2@X:J^dfV6(Xܾhbrxxf22d\PުjF:8Hrh6$hh>>jRJPl~x~|nTPt:.TXnR L~vvxZDdv8Ht8*TzԶzDD~`>LpvJ@^L"(HhtZXbt̼T`2 :l`8J؈ @vvvtlF*Lv^\znVHJ^vаb6,>< zж(d`00Rpzn:*JtƺV>:FTX\j~b62f¨xn~DxJ,lZVtv`nȲn~>~֐N:~ؠfF:PzV Xz̸`z0ZȦppF8tвP Bd\"^l0 >lҬV4dԼz (r0Hl6~$n΄*~ʮx>2PPjڬV:Pbbx8"DrtnnvR,>vdVlx~zP>LvضD>Ȯh>"\~lx|hHZp~Rhn^4vJ$:\\Pn~|pttz~xvTVH,DjƜ\*:ҎT>HdβR^n44ζN,**8`ļT&,2VªzZFF`^@B~ʲp6$¼\0Zl6*vrNP\P64lrRrtB &\~"NdPX@( :ȲĘJhJ&"d̦bF\x:*jƀdRR||@FТzNHj*fb,&zڸbdrvrfRDdj`ZN*&ZҌ<,HvdTD0FzP.Fp|LNtP6Nzڬ6$\vL. ^꺀hF 8xj &H`~nJ2Bn~DNb@Z\4Xh `¦p>(>p|fpj`t\Rּf:RnffĬt820L6rpV`^H8NȮ`@26fB.|tPVt\:FTfzZD^~L".jfXpd><\lXZbjhl@ 8tXxJ> 2XRnf. $6lʮxXB@dppb@&6d̺pb2 $tdD24:BPhF @l԰T(b(>|ĎbL@4P¤thhB$@tZlzxlZbpB^D,T|fBR~&6rPThn`HRnddj|zZ`X>L~28n4,0Bbp`LNԄB LԦ..l,4Vprn^Vl`dhtPdv00žj\ZL^pX|TntJ0|t@$*L|ʜH&(6Vzf&"Txnfn\X^jؠP pЊ`VTNF\°z^( <:h|jf`|zZRZdzpBBPRHʐjzxPFbV",FN\rzR6(8bТN4h˜h4 ZnZTlzH"h|PX\PdzzzĢfNX`\\`nfZfnP2Td(2NZp~LTެr>8f` BjⰄ`DB\~rrbĞn@&(DnxrĘZL`prdJ2RȊF*8Rd~ppvT~L6~|J.6Rbh|h@8\j:&&X܌4 B¾r2 2NfܺvT\b\\vtx`.(Bb~jTd|lx|fXbZ00`Δ`B$8rƶ~RBT|\2&2Tl`lxnZT\nb *jҤ^(4Rln~vPD,HМN:txZnbXtj8(Fh~|`J<@dtL&.lbNH@llx^. rh:,6LhXBTn0$4@ZƨtH@,8ĢP*H^t~J0&4VtvRNhԺ^\ذ~\NFLn|Nd~,PtxvvrZV\fxXZ8 ,LnҨd2 4bnXZntTjh" 6zx`H>R2\|X>.8^nXjfXp|P>LnvNH`t|xpF@L^rƬ^"bPFl|dfpx`DFj–> ḫlL64V|jJFD^xB*Xtx\<:T^ Nv|ºV:Ztj*:l~|zl^Z\rl,&8Zؾ^XlrZ\~^>`znD(n( @Lrܰ>Hڨ~zd$6hr|xx`4 6vD\lPBfȼdJNdrlbnz`F\P\Ʈf>*,DlŽhR>6P|~p^Xv~fB:`vr~R6Rdr|HHftnpLDhΈB8`xbDJj~PN^fdZD8Jzئpb\R^> bFHVTX\bvV4NxdFPdlrxbZlTXtܬLDx^NZbrhF6PthLDDL`~~lR8.V~rxD&.btlZ( \¦j"Fhœ^FZpVz^40Bb@ Lt̸`BBN\jtrrn\`rnzX0X|`Tb|d0JކJ6"&@rؼR"4b~hLHnpXZ~jJ\\6.Fl|*vĦ~`F& dȰV&,fʸ~xvfP4 .\кH8jԶ^B~dHRtv*P^NxʨZ"BlʌL4.4\~`XrjRtx\TblhxpBHXZ`rj`D0Lz~hblnjp~xtT,2>@^Ҳ\HPhjhlZjppvvzzB"rvTNTPTxz$(xެr`\RB@JT^Զv4*RrzfNPlrP^zzlNDR``xxZ^~XLLHXbft( .jʖdB(,^@.zP Ltzn^\TFF`l>8Z~vvvnnx|b(:tlPFVxrFF86ll*&`zffdbvrZRbhD8`ʼ^0(Ldh~B.Flt@2:TrZLXztX@8R~dPZVNlzndjzznhpx~~zxZJTVdb(:ƪzZTVZ^lb:0TtzbZ`vr\PFLfr^V^tlTfzj\^X^tȦ`( ZʸdTZZPXrrdvbRVjV6@jļJ$&D`x~X`Z<<\t>*DdxnR<8^v\Vhppn`RJ\pz|P4Bh|txp\NPZdlTBƴt8$Dl|~N$nrnxtnjf~x|TD<<^zN.2V~f:0LtrZBHh~j8.TʤtBHlrt|pdrpLD\vtnH2H|z`D4F~|bJ6:bĶj64LdrnhbpplxRNlrfxjnzhRVrfR^~vhZXpd>B^pnTTjrR4hlVXp||X>Fb֠FNŒN>TVXjzzvbBJbprznTX~~fjhjpp~ljbD0>fxF(VjzvP4LvZ\pxzx^Z\X\bZZtb.2Z\. :p~\>:H^~|f`jԴl28jpFLd^HZvdfxtltvldnrL8,$DNnxT8Bj|v|V\rxv~njfb^jB"B|lnnllppfZdzz: &b–nZXVL>@^Ĩ`0lN4@jxlbftX*>zd>0D\pT&0T¢^8*B`~j`rfBHtz~pfp~vjnzxldnzdXPNt~hRThn|~rlddxlPDLl||tnjt~t^`x^N\xpZVhzzl`ZfbDBXjv~vf^\Z^p~njz`LJ\jzh^ZNLl~lhzxhffbhlz~rxzn``r|rd^Zdrjt~z~tVBZjZ^ftȾN.0@Rnlbhnlr|xztdlvnbf|b\fppr|vhhdhtztfbvpb^^jv:Bt~J0Bf|npvx~`X^jx~rX`d`t~nxzhdvvllzz^Rhr`V`rNDJVtrZZZZnxb^hx|tprxvpnt|hB0:^zrttptzfbtfDLjvtx`Z`ddjbXh|X>4L|rdfphp~phLH\~~vjfvzhVNf~rlpjb^Zj~rtj\XbnLHZtT8lX>Tnt~xlrhZbllr~~~nZldjzxv|v\LbthXXlp<,Llx<F|thd^NPt~dPDBPjfTbhXP`||NfΜ^6Bdhjn``z|nffnvrN2$*H|z~~zxvZF>@PnxhZXbz~tv|xfTVrn\PVdnrtz||tvl\djdfnxR\|vN:B`xdj|~xZBJdz~rxx~hX^jt|jhljdhtpXHXzb>DJPv~tzzl`brz\<0Dpx`fxvbTVftzl^PDLdv|fLFXt~fRPZVRbrfTJ`z|zF(*DnlLJhzlhjpvrXJHRrrN2$,Lx|lddhjdXXhxzxtjtjPV^RFVzp`RNXdpp`RR\dnxttjVR^vv`Zfz|d\`jprt~ztfdjZJRnz|r^^`Z`~nh|vh^^dft~|bLR\`jxbNZhv|bRHTnhRRZ`fxnr~znlprnnnlx~rdntZJbrXRZ\h~ppz~b@D\dnphjfXT`rlXZfjrpVLHRptfp||zphlx|xv~tj`TXbt\4((Bn|njrr`PR`fnvlrrf^h||lVTj|lx|pf`bdn|~p`btznf`hv|f^bjtljnhpznpphbfb^r|||hbjpf`z`\```pxr`LHZpxrt|nf`^hrz~vllnlh`bv~hjrfL@Pn~ndbnzplpphlvr|p`\ZZnh^`dtz`XJ>Rz`bvzxvxxpfhvxnttlrhTTj~~|rnxthb^`lz~n\\fd\l|rlbZbv|ndvxxlDPt~j`hprprxzpv|vvrplfn||zzxzzjdvlb^XTdz`^r|hPRfx~xrrvvnlvhVV^rtnx|vt~pn~xjrtjblv||v~pvtZ\nxxx~~~pNBLjvdbn|pRZptprxxzljrzv^PXh|tllhffhn|xlpvv||h`^dn~xV@HbxbNNZn~^N\pVVl~~x|zrv|xxn\^jnffz~~|trxvh^hrtnTR\^lz`\lzvjbfhbdt~zxthX^nx~~rnrldhz|zvxxrprt~zvtttpr~lX`zvhZ\ntpvdZVVjhPRfnZbtzzxbPRjn\RNXlp|tlz|nlprljpz|xrvjpr`htjZZrtjhjptnpz|~pXXbhnpvzvnpz|xxzxn^Xhldfnnfdpzpxt\LRh|l^ZVZl|xxjb\drtv~hZ`dflxzlhfbrr^TPZnzhfb^`fz~nvpnppr~jXh~xjlv^Vtxhlvp\Rf~|z\HTfn~|rpf\Z^htnh^Vd|nttfbnxhfnrt||zxtprzt^NLRZt`R@:X~v``jlb^lxx~zjp~~pjrtlnztnt||z|zrdTRdv|rv~~tltpbr|z|thbjlXX`rzllnjhhhnx~||zxpfdpzx~jfhffjtrXNXdjn|znbjz~tnvxlhjnntxtxtZXl|nrxllnprxvnrzz|zndhp|x`T`lx|nf^ZhvRFb|xfbflt~v\Xdpxvlpvldlz~h\jlXVdt||ldhrxzxpfdx|llh^`pzTHb~vN:Jlztnltxrf^l~zxxlZ^vzl`fxphhfddjz||vnr~~ttxtpn^XZbnvtlrxvprzxtljpx~|z~tjn~~rppjfv~fNN`ttf`j|xXRh|zr|xhdfnjZV^nztnhfltzpjp|l\\^brhLDVl|~p`\fxvhfhjpx|tztjpx||zxxzzx~tlnnb^l~rpv|~xljv~vr|xdbjnrrTFXv|tnhdbnv`\ltptrnjnv|lhr|~|vnvvntz^T`nxlflnnrtv|~zz~|xvz|rjbfrdHLn|hRL\rn^dt~zz~pZ\lzxrvtjhxp^Vdzph\XtxjZVjrb`p|xtjfnr^\dr~~|~vjfvxtzvf^jzljhbbhrztvzz~dPPf~|f\\VRh~tljpxvx~zphfn~bXVZj~j^bhrvZTX`jpnrl`^ntdj~pfptnzvhtpZ^v|lhxv^\tldpth`nx~|||znZNVjv`V^r|tv|zvttzztldbfpx~vxxnbbnvtnvzhZNVpzl`XV^t~tjrrlnnlpznr~|v|pVBLhphdjx|jdp~~xxlflzhbbj|zx~xjdlnp|ffpxxnnzvzxlpv||rffvhZ^flrrb\dtvl`fv|xx~~xx|~r^Xdrx~|`V^hr~|xxzxt~~tnjlxvb^hr|zttpnt|nX`tzx||td^fvvllpz~h^jxzv~~zfT`zrXNZn~rhdhnxlZZp~vrh`l|pxxfbnhRPdzxpljhp|pjr|vf^nzr|~xtj^bz~fTZnxzznfjpv~~vtx~|p^RPb~hVb|vzzfXXh~p^^p~vzj^dzxtx|zrlnx|x|jfr~zvxvzztvzvplhfdtthhlnt~tb\fv~tl`Xbt~vrpjp|rnjhtxjfhlpx~nVVj|zd\nznfhtrjlxrdjrpnxznrtjdlv~l^Z`lx|xl\b|vb\h|lRLXphV\n~vdftxhbhp|xpnpv|~jhvxnht|j\^lv|hNdxfbjt||pjnzvXN`t|vfbjvzvxjZ`rr^V^vn`Zh~nbbhpxzvvvv|znjp~~phlnjlzzphbbr~zvnjllnx||xv||n`\j~|bPVhlp~lXRbxfZ`pxlpnr|~vtzvtvzjdflr|zzt\P`z~~||l`jzzxjl~zlbjvxrnt~nlx~xxzlr~|pnxxljt~~td\bpz|~~xnhd`hx~~~nlptxxzxppxxxzpjjjhl~pjjjnvzrz|j``jvzvrlxvhbdp~pnv~tt~~XFRh|zrljlt~vtxvr|vjhxtllnztjjpxrbZl~~~||r`Xf|j^dp|~tjn|vfdjpztjr~vjfnx~ztxxnfhnxr`Zbnx|fbjrxxx~~xvphbft|tjbj|xttrvxnppnzzpxtfhxzhjxjbhr||hht|~ztxn`dt|lbblt~vhfv~|p\TXhzvx~zrph`pxhjr~~nhlrvxz~~xtrxznl`Xdz~zlxpnxzj\h~|fbjllpv~rnv||njnrttxnfdp|~|lhxtr~~vb`pzb\l~xxx|ztv~|rrz~~h^dr~xljtvrzzlbdp~xrjfv~ttz~tpxjNNdv~n`bp~~|p\Tj|tlflx|rlrlN~zwxzzxwwwx{{{ztrrppswz}{wuuwyzzwtqpt{{xx}}{yyxtrrsty}{zxuswwpou~}tmjjmry|srzvsx}|~{tqtz~~zsmlr|~wrprwxunf_\^cimnoprtx|~~~{z{~xsu|znc]\^^_aejrz¿W@AMYfxwuwwurme][]_cimia\[\_irphabhq|{tsw~{rkdYIBBAQyõT5:N_n}sej|tqtwwtjYG>>@@>>?CKT_ikgdjz~k`acYJ?:Hrž`EEFGVq}tir|id_USYTH@CC?ACCA@ADN]jqpfVHDGOXWJAMvƿüvJNWRGCA@CJPTSNF<9DWhopeL:>TĿɾV84>L]eeſqmkkgXE<@DFIKKIIJMPNMUVLB><@rºX.,2;^cXqqz_UUF,6lv-  I͙bSq_1Kt}}=&jQ c̿7.ưu]G e`  4p೮xB?BMۊ[ZC-*$,}̣r=  :blmp}y|}il|_<3>ҠhXwn?8D?9ͿCE? yǦta]RHRcfֽo@7p¡ydP:3883[ʿ\ԉ]Mam/ Kb+ Fض~XJ>DVZZjpOYufBM\_㶄mmS( OÿǴS#XL:=  *ct[^bbT?8Ecm[QUgl^F:>=/ ER",J17w^(Q{wtўf2.QmjUFCHVw}~Ȳr\C77699% 8̈́4!4xپy4LⴃaOB::BO[c{Üq\S?4IrkYfwqsplrk`WYjfLAJ`w|kWKY̽tWp漉lmysgjֹ_<1AABRlseZSLKR[\RD@@>?AA?IoǿƼ\dZHCD>@fĽpXI@@AP}¿½jEAB?Jr_C?BA@BBC\|ofTA>B@DBC?B_zN@A>@@@BBGnĶq`[dsÿ]QV\^gnadz~{okeTBBAWʺZ9BD?AE;Bxhb_^`W]ù{n^VZWdȾnIK[\Xgxf@AGJVlqbW[diuvZBBBFXo~zhbn~}UBJT|zfznBX¿ºXCBBDok]WTPE@CIdwWHNY_jyut|wxpXIOw˻zz|c^VC>jd\\N>^sqhXXQESx{`KCB@>CYt}{~}z{soxwgaqqyvjjlknýmb^SKKIBM|qhlfcgghuqU<15>BD^zdN. HݛiYQ;#  RɘzgD! F|gB=^kcozrt}tZ>-,7=4:QVF/%9|x! (990 q8,/342"~ĻqQPH:4Dgο<+<=>E[a- 0ptkq[)$[4!" R}'8ot@69CPP<=afWRQWiqN6-7ThjeL'pm1;( GˡL$?%/4Uu)86/8BJ`~tkqmB29<+j \( &e`#0CE2&RYE- 1ge"%?b{^QcT5mC_iN35G(gp\/  b\ ,HG:1VI PS [`[|Q]Բw:]riH/1O;'%&0}X$)..I`>{wfhȑC#aȫ\kőj[`kgL)g)h gD&V?% hnIO,3GDE8KoB*27:]ڴwA'&OuydCe(]O'#m_YM&"0ts.ZO6Obfp7WoI 2}N:htjxբqRPg~eTYixLt*/{3@x[ wNSX6179Pl7.|ҊI)$661CyɘoJ"4KcV! 2v $p] 8? 3?B^">S&CoՀ26MR^ߚyޤ[#:ayjXB*Cu$%;G7]DD/ k] !6n;Ok#>PVWTSeϳ|dRRVRPZrǐbMJhpls{r6 <128-B& ZK7%[o*&/>Voؾe< =㴝X0!4^׶bJGR\_[N*ZCTQ.2$)JoY W{ɇQ/!Dmt`[juzzeR`ty}~tnrxs_WRQayxRH¸ũN*JRX}uPU^VLVZMGTxµxVNUWWbijv{yeivoamrqذuVXcj}}rygZg]Mmtpxqc\ke_I?[z\CKtǶz]INfy}rbQD>BMOM\rt}\e|zwxnkigt}~qg^KIbzy}{{|pobKFRVUe¸}eVPWqwSFXl}Ľ|yvnaTIJ]svgZVTT[fpspkdXZw||t]V[_c~sa`dgpp]_gmxoghjorof`ex|uncYW[`_hxdhmjkmmpuc]Z\^^_qta[`dfjttjiikmnmqyzwv{zmcaedeuqjjeba_Zhoeea_^]\f{zrmowtmllnrtqr}|vuqid`brj_`babdcc|zusnonkp}{rokjx|dfppmr}sb`dipz}unpru{{lc]`ytb`ipsstopr_cebbhjmuhghefhpw`bcdfehpyn``cemy}urxmbhp|yzvhacd`ki]ae`gn`a`exxqpnjfbafrnfjopu}~}||~yoci}~rrlacxuqoher|zuomldj~rfcca`do{}}zz}|wrx{x}ruxtuvtniihggl}|vvsquut|yl^X[_aeq~sgWShvoi]TNIJgzfMFEJbucJAACPbqxwyz{yncWW^_[]hlcZPXSFU`\WMBIx]X[[^ZPS}{oid^]araGSb__dorZE?FZv|xwmTB@D??Lvÿ\9CGGKOOVsľnDFMSYah}—U?GTiodXPXvtTLTbr|ohrgMB8[ɽqFeqlm`ShŽ[Pqvm]DHnlo}`LEG>BxūuYpZ9@C8>mĿ_Rm`OVXOWlMXVHDOZfm@@?F`}~uvaHDUuryyqrvraVODRNMHCOF?NzƿjBWj[PPOEMxEHehYXdbfbACAKj{dYY\^ndVPLUj|u_NB9kǼ_FpnGPXCA_˰sLNZPFN`o¿°Q=DJNWf}wUHFLWaciu{mRJOZkyrme[QJ=/W؜ywnoYDf[VuvUHJE=_V@S`RCHZh¶w=1?LQ[jv|iR>:EMT[`t绂M9KfcJCCMvwC'$'1Ll,&% '(=tw-&!"7AU~<(,0>Wp|u<7f\nc;$(KUdQMM>'4o>-61,.(;}ٲx#&Mlá<'$*;Ljѭq;($"-Nu{^PrίlVH?5..>užtorcUIIn¾twxdC,"&?h̽fbwlopP`z`I1'?spisz`l~pptpQX؜eF<7437FaѹiJ?=ER^zۡYM}vmeRAGdtjlvwmaUPSUSONW]O8:mݓXE0%.>BHqۡ[)!*2Cbu{ѭ|L+!)8KdѻwW<17G[vkT7!.IX\g~Z<8DZ{vnmmowxrt|yqh]WYbqwqibU?+>ⳁljYFAA@LvӶT@DOSRRV\hѼvS94>G[vҿ}cI9AXlwî{WEJU[avnPGUl~tlpw}vvvtszr`XSMLVXF>f{]\imbXUU_zë[HIYgggmqytWFDVmxxmp{pP;3=Woz{tkhdj{_E;GbzbTXjpbSLTduyl\M@[̊\Zcut_SRfݿ]95OgorojlxĽ`EBYg\bjkfa[Zipgdgmqsuxx{bHDYr~{iJBXw{kamv_QPTVdx^I?AJUlxjfe\U[k|tlged`_ivsiktrb]bly{nhkvtggo{umlljkpobQHSsb[PILTVZtcLPX[\`fmysZPT]dkvn]RQ`tjMBLYevqb_eq{uuuvy{zy}|o]PKMf~n[KDDCSuvhfe]OINYiuib_]ZZaoyia`cfkx²nPB=Jcz~xsh_bqyx|~{vokllihimng\\xļlb[SYabg}jRLRW[fs{}~fVQU_kw~pd^ahq|sj^UYgprvo_\et|zxxyz|}{{|wsnklpw||xsoeZa|wwskgedi{iadknnkijpm_[^bhuqc[^jrxqfhnmnxzlgnw}vw|~{ustx~ztqqopuwjbvttwwsoonnyn`blsttzrdaisz~}zx{~qgelw|zrg`co}}vsv|}tnmpuzxpg^^iuul`RGNmsd):T]YSKCIqӗS;Vu}sg\RSlѿuSBIaruw~eLAM`jkmpidl{yttxxpkouts||voktйpZG@DOay|m_aw~rhnzjdiwuqqw{rlmsx{~rnqyrcZSOPPP[xϴ}pcUKC@G]~ɾtngYKGLPYowjYKIUew}vsqpoprpox~oT=5=NeqcawΉO?MpbF;De˘bB@OcogR=4@`βqYD88CVm{skaTJJRbyxxxxyuiZRWezvihq|r]G7Sx~dSQZlmXIGOZm|qleYS[jyyoikomnwxnf_fwne^[]k{uvz~yxxy~ztstvvutwz}|rmow~}{xwz|~}ysnlms}uifipzzrj_QHK\{ule\\biukacffgjpx{snopmmpu|~vmjlpuzjVRZfpzxh\X^jzveYW^jx{}zwohd`_fzzrqpkc_ciqqjhimppos{~rlzǨuB-BivbRHL_{l[SUavzl^Y]fttkp|}rkseV\jtwxyvtxyh]]gurgbfoy{pggkory|topv~|{zywsnmnopszkWLMZkw}}}xmgp~ndfq~|}|smmpu{na\^iv}zrnoqv~sjiox|||{ulgecgpΧzL1<[t}|oR@9AXqo^SPVf{~sjedbbjyxsollqtv|tnnrx|rkghp|zurs{~{wv{{vtv|zrljmt|~xphcgsrz[Ih^Wdxjd{jTP]q{qvtggt|rt}~vj``jw}vrrpoqrokp|{~|ztmihhlvwjfo|}unnwxogjzʬlYPTfy~~l_]bnm[RS[hvzolmptwwwz~wuurqtyzz~xpkjpv|{z{|{yyzyuuzyl`^clwuqsofjt|xh[X`pm\VX^hu|~yniq{lehptkny}|z~q`X\fqz{m\SXjzfUG@FXpuf_YTV]ht|{upnuėW 7e࿇L"/]z_D8Da{xxuleb`fs|k[QXr|eQJO^wjYPPZqxkb_bjv~}|xror|{uoideku|xspqtttz}uokjjklnsz~skhjnpqsw}{rjcajuui``jyxoe`dp}xwqe[UW`mxèbLAKczu[JFOe|~}ufcfluxj]V[fr~oa\]`k}~wka`ehnzvvylabrzrs}ynhfjs|{topxtf^]drna_chp}of_]epzzwupgbmŦeXYcq{}y{qZRZl}|vvsptyxrnr{~}~}zvuvw|we][brxpkhmyl`XT\n}tga]^fsoggls~voknu~tcZ\k~y~tos{vmqy}}touzkdjt{ypmptxuf_[amx~n`[`grs]KGZwwh_]dr~vsy|wx{rjims||xvwyz}yrory~zwuuwz~zsoot|kUTdt{||{}}smijuzqmns}|tnhir}{tmfeo}~|xttx}{tqsz|vuwz~|uojgfhp}t`RPZeoyteZTU^m}tjb`dmxzphkv{ytrnkrztwzxyywvy|qqwz{}~{z~xsvvuw|{tpoonnot{|zk[[ix|yx{}j]W_o|rhgip{zrpsw{}try}ww~vnnooqwyojffnz{qiccjvxv||xtlej|w`Zev|wxlb_`k}sljmwvkeehnwzytnlqx~~yvwxww}|xtqu~yuroou~{}~}~{z{{{{{{}zxy|~~}{ywx{|vuvy~}yuohcem|}xsoptx}xstvutvy{}zxxxwwy||xuwz~vmknsy}|tnlnu}|smlpw}|xusqpt}~yxyvrqruzyvuvwxxxz~zv~{bWau{rjefqvnjkq{}volntzzvy~~yvzslnuz|||{z}|toot{yursx}}yttvxz}~zxy|~~|{zxwxxyz}vmggnv||wuyxsty~zwwy{}xqopu|}yxxy|yvux|~~{wtsrsy|fY^nzxja]alyxpjhks}zusrqrv}}{xvvx{|~zwxz}~zvtux}}{yz~}||}}{z|~}zwvw{|xtrt{z}lgtols|us~wjhoy~y{zttzzz~|uqqu|{zyxxzzwvx}~}{xuttv{|usx{wx|}xuv}wmhjt}vpoqxwnijnu|~xvwyz|||~|{{yy{}~~|xuvx{~~}~~~}}}}{{~}wqorw|{y{xsu{~|unlpyvollpu{~|xuy}vtuyzvx}~~yqlnty~~xojmv}tkdaclx{tomklotz~zxx|lQK[rfSJKXn}pb]cq}}|{wsqqsz~unily~siehq|umhhny}vrqru{~|zxy~~|xursv|~|zyyyzz}~{xvuuuvwz~zvtuwxxz|~yurru{zuppu}|xtprx||ysnkkqw|qfafr}{necis~{sqtw{|volntzwpoopv~|vqpsuw}||}vqrz}yz}xtsvz~zxy|zsporzxpprty~xsppsx~}{|ytrvsmmrx~~}~yninw|{zxy}}zxy}}{z{}|spnpy}xutw|vplknw{tqppsyxutv{|xvw|zqnou}~zw{~{wy}{x{}vsvz~~xvxz}{spoqw|xqnptyzofen{{upory{z~||~zvvwz}||}}}zxy}~|{{|}}ywx{ujjr{~~~~~~ywuuz}ywwz~zwuuy~~zwssx~|zz}~{yz}|{|}~{wutsty{piimrw}{snkkpw~{urqrw}}yuuz}{yxwy}{|}}}}|{}~yy|}~~}}z{|z|~~zxxxwwx{~~~vnnu|}|~~uolow~zttvx}}yxz|~zy}|}|xxxxx|}xuttw}~yurrv||{~|zvsu~zqns{~|}wqpqv~zwvw{|vrsux|}|{xwx|}{||||~~|zyz~{yxx{~~}}~~~}~}|}~||}~|{|}}{wtrsw~~|zyyz|}zz{{{|}~~}|||||~~|{|~{wvwz}~zwvx{~~zwwy|~|{zyy{}||{zyy{}}{z{||||}}|}qlq{~yussx{wuvy~|xvxz}~|}}|}yvw{~~~~~~zxxz~}zyz|}{z|}~}|}~~}|||}~{wttw{~~|{}|z{}}||}~|yxx{~~||}}{{}~|zzzz}smpx~|upoqw|}xvuv{}{zyyy{~}|{|}~~~||}}|{{}~}~~~~~~}{{|~~|{zz}}~vs{xvz~{z{vux}~~}{{}}~~{yy{~~}}||}~|{}}|{{z|~~{z|~||~~|{|{wuv{|yxz|{wuuwz~|||}~~~~~}}~~|{{|~~~~~|yxy|~}~}{{~~zxwx}{xvvx{~|{||z{}}||}xwxz}|xvw{~zvsqrw}~zxwvvx{~~}|~vifnzsiefmxxrory}|{zyz}{wuw|zustx~{wutw}|yxy{~}|}~|{zz{}~||}}~~|{{{{||}}{z{||}~}{yy{~}{yy|~|zyz}~~}zwvvy|~ytrty~}wsrtz~zyz|~~{xvwz~}xxxx|~|yyyz}~~{yz}}}~|{z{}}||~~zxxz}|yxyz}}zxxz|~~~}zy|zvwz}}wux|~}}}}}~~~~~zxxz}}{z}{ywux|~zxxxz}|zz{}~}||~~zwx{~|}~|}~}~{z{}}|}~~}zxxy|~|yxxz}}xssx~~zxwz}~~}{{|}~}}~~~~~}||~{vvz~}|{|~}||}~|{{}~|zz}~}}~}~~}|{{zz}}yutwz|~~zwvvy|~{yxz}}{{~~}||}~~~}}~~~~~}||||}~{ww{~|xvx|}{z{}}}~~}~~|||||~}{zz||{zz{~~}{z{~~xwz~|yxy{~||}~~{zz{|~}||~~~~~~~}~~~}|~~~~|{zz}}||~~}~~~~~~~~~~~~~|{|~}|||~}||}~~}}}}~~}|}~~~~~~~yvy~}{zz|~|{{}~|||}~||~}||~~}~~~~~~~~~~~{zz|~~~~~~~~||}~~~~~~}}}~~{wx|~{yxy|}{{{}~}}}}~~~~~~~}}~~~~}~|z~}|}~}|{}~~~}}~~~~~~~~}}~~~~|{|~~}}}~~|{{|}~~~~~~}}}~}}~||}~|{|}~~~~~~}||}~}||~}{zyz|}||{|}~~{tsx}zussv|}yxy}~~}}~~|{|~{z{}~|zz|~}}}~~~~~}~~~~~~~~~~~~~~~}~~||~~}}~}|{{|~}{y{~|zy{~}}~~~|{|~}||}~~||}~~}}}}~~}||~~}}}~~}}~~~}~}||}|{|~}||}~~~}||}~~}||~~~~~}||~~~}~~}}||~~||}~}zz|~}|}~~~~~~|{}~~~~~}}~}}~~~}}~}{{|}}|{{|~~}}}~~~~~~Q+wEMMJShkWB5;Vr}xwzuŪnixw_PPV_ilZMJB>BMWf}rncSVte\k}uѿ{oeT?8BQNHMQ\io_KP]qȿtkuZ2 *6DB852,-Jownqʤ¾xk_VMTZJ?MZJ//8?NTV\S9,Gtwoxo\biitohȼ԰qfWJMSG,)>A/!5HPE9BJNcȹtk}tTQE&'H\fnlkbQ]_fм־rtoWYVSTWbk`G>WhZNS\]lwbr{{uz{c`tkYb~ΰll{whWHMVH6Qxtlqrŭ~bE9AM>$)96 )?WhkbVQeǘofV<;AENG0&9TTMKE?EWl{oezlQZ~}kit~~}rǼİ{WKNG8;5&')/K_M#'Gktqtoqοxhbbfh\DDZ]K5,2Ei~zqw~qDzĤlhnqqrzzrli`VT\bcZHEYocGGNNVklEPHVqwo׻~V/MKJ;)8h׹{x`S\t{qu~~qV6/ANKB<-$DVD9QocBQnľ~{hTD5-'! )2,*0*6Z~㾎ofYHE,-J<,JoucNEZ˻rxfTn~krw}P6>55HW]ckikxt_\i]fxbiznhchtoѤ_<9<*AKMZhhbbetǸʳn`T3$*$2P> 6kooֶf}zkfq}~}o\YTK0 9WceoxhMeȳ˶tb`n~ukȡ͸qTTZNGH8 ,Kinx}zľԡr_K>?JD/*?ezG5Kn{ˤxfk}xil}}zkZWE'!2<09\q~c`ŬrqoieYHJer]rͻԾͻ]A-&BfYB2>YQ;;-*8BBBKYfxŸoeqx~``u{¹ŤzY'!0,5\h`ec_x²lol```]_WB05Nkurkb\etw]fuYWxijfDB>)&5'#>Ze_\bnk\fb\xZVT9Kkw~¯reb`PGH?6GSh¯ܼȞ~}z]ADYZSKDMbnf\h{xeM63?`lcŵʵeQ]xu~˧ufhrk/*;3,AYbn}Ԧk]ffJ6Ytohnx_KJDB]r~ӻol{ulrrH08Nx}_Z]_ZN0/ 5Nfȵͭ}qz}ezzt{eftnY]k]>,9VwiWer]0#599GZch{ǼѸwE#$0K]WGK\]cӻ{cW\lzt_ibN?>\kx}nlooql\BNnfWkȩ{iVV`in\HTlunhrzbVWSAKrwZNVnǡhE?EQcS;V~roʯ{iZN3 8;Jlnh~oY>&,G]\PWqnh}ŭİ¿tb\S829'!9MehVPNVZZ`l}Œfbuztxzlcn~zk\KN`lbWhr{͹qZSTQB6>V{k_J*!?kxnhrxʹ}{uTHE>3-089;Ncuruqebowt~Ѳ{MATl{{ktoJ6DY`]WN??SiofeqԳb?69Swxnfcih\S]rʶrP-2Z{tk{{kk~okqnfhklqncZ]ecfi_QN\`_rͿlo}Q809HTTSew}u`Zfzw`MDNZcuŶ}ubSYlk_kn\MP]fuoft}wtqr}Ƞxn`ZVB,*Gfw}{xzqPTr~{woo`PGMbrtot~uf_ezu~lK6Dblfixxrw]Zoh]hnknxǤwcbliS93>KVZ`ih]]hqrkfotu׾Ьk`bikb`bY]uqexqcW\uz`HBNbuweZQJB>Z~ļulzoZE>H_eWJM]irxwcJJlk\cqw~ѳ}hc]SWhlTEVkooob]WW`nZ9?Vouh`r~ti`]cok]]er{ohqo_Z\kwiPBJNJNJ?Hbz{qqrononk{ȯrQH?>Nkqbftzxutqwzolhi{qorf\_ee``chqhnzxo`NASxxcSNSbwuo}wh`fktwiTJVln\NY`\eh__l~}hlut}ǿth\SE;9>MVSWfux~{l`cow~{`A6JfqbQV]fz}nehu{o`]VPYrhZVTVNGQclkqulncYcnw}wwxkY?8DJ<39ABESequz~~}qkiqrrkP?Mk~whbiw~xoo~}rnxrkooilnki{wl`Y\cfccho{}uYN`r{{uzwoo~wlkq}ȻnZD5;JPPPNT`io{zqx}{wkZMJMVeuwf`ozw{uwrilnlr{~~rc\YSQ]ke_eok_ewuf`et~wztrz{e]YD*),/BV\YYbkqtwtr{{lowteZSWn}zwtqt}olwxnhrxurlo{f_it{tqiYWetxtnkqx{x~rlfb`erzqiq{wr{nqǹzeWTW_`M65JZ_fqtnt~tow~qi_V_txeQ\ntx~{oolbbr{}zickztknoieih_\_ektxrrx}}}nlrl_`wz~bD5,,?Y_M9>P]fq}~{x}}{xk_WZftuloze_flfZT]utow{wtkbbkwww}~wnolbf{{lnof\\ekib\_n{μ{fT>*0H`hkhWVfrnk{{}~{tnhefhcl}znfbllbxxt}}}zu~rTGQckntwuu{{rnwtquqfhieetw{~wk`ZTB/,8J\_Z\fr~{xztrwukcquq~qhb\_`]co{{tt~xo~~{}}fc`\l{~{{~}}obWSSVVV\fnt{~{{c\`bZTPGAJbkber~~}t~{tuzxk`WWf~~zwkbfokcrzonxnnqrzlfuxffkhefkt}o_Y\``hnb`t~wbPMQWWWVNJMV_fl{~wz{o\Ybqxf\TQS\hqqlutt}~ww~}uuxoblxqtuzfTQKEKYcehkoz{zwe]ZTQY\TV_hnuzqtxqx}z{}tirxnrwqkiruoke`ckorxrelokqrlozxnilw~{qoz~wur_NMT\cnrrxzohbYQPVZWW]_bl~xw}{xztwxuttz~xn`PP]ehkrx~zxrhhr}~}qfnuutz~qf`\\VGBPelnqrtwke`ZSV]ZW\enwthillr{wqxrnz{qr~}xtuq`Yctzz~i`_`itukhqz}~{ulfl{~zle``ff_YYbo~~te\YTMS\chnrqt}nklknz}rr}xuxuqoonnrtnfbchr{ur}}uibhoqr}~utqlo~{k__\KGWkohbbccl}wi`__ZVW_iquz{~wh]WZbioz~wz~~rhenz}wokl{~~{khlfZZ`cirznir{}}nheWKNbu}uf`o~xkfcYT]eehuxxzxtnluzwzx}zrotxwrt~n]YY_quoxulklnu{wnnz}xx}~}}xzxqffe]TMJM`xzno{}oikkihfbeotw{}xqc`ceflx~zx{}~{zwtt{~}obY\hwxz{th]Z_iuzwttx{zuolkkkleWT\fo}}~z{xokoqnqwuolt{~{uonkhfqxoqonroin{zqt}~xn`Y_n{}rlq}q_`oz{{~{xuuxzww}}ticb]\`fe]\erztqlhefoz{utuqkoxxkekkffkoonow~xzzrnuwquurx~{uolin~woi`_ix~wkber}~x~}~{z}~tnh_Z_hkoqikxtqx}wuwwqkoz~}zuoox{lb`kutu~{x{qkfcefhlu{uffklox~xl`coz~}wnnz}xz~xxtlqz{rottqnihf`YYcqz}rw{xokebfqxqiiioxzkYV]it{~zurqotzwzwronrz~ztuurkb_`k{xuz{{~zqkih``luofkqu~w{xzukecfnuxurwwifeeq}{rrrnouohiqtt{{{~xtrtzwz}xwoecoxz}wlt~}wuuru~~zqhecbceit}~{z~xrz}uolqul]W\`couninuwrkbcltzuoonotutu{{rnqwwz~zuxwrtuqiflqxuu}~xw~uhfe]\bkuztruw~nfkqroicckw}xqlou{}tlq{~{qrofhoqkiqw}uqqw~ttwz{{zuonr}uoqrx~zqo{}tt{~unkfitunfo~{~~q_VVW]fiknqtwti`eouuuxwrtuuuuurqr~{xru~z~{uwwqlnuuotz{~}zz~~z}{tw~zrolko}~qilwxrz~zxxxwqe\_hloxxtrk`co{~uqtuleitxwuuuu{{tqnnqux{}}wz~}xzxrtz}wrt{~tooquwutw}wr{~z~zlfhfhif`\`ehnqtxzunfeel{{~zrnnt}xt{}xx{}}}~}xwz{wonrtw}zokq{xw~urqquzzwuwz{xqotx{{xu{{wl_\cihiouuuz{uqoonnoox~x{zqlw~xohekx~~~}wqqtwxwu}{unikou}}uu}{rrwz}~wrxzw~}xlilkc\YZ`hntxxqqutnlu}}}~}uqquznlou~zz}}zzzwu}~{zuwxuw}{tt{{uu}}{~}wttuz}wnhfkrzxxxwwxzrnilqne_ekoz{trqqru}~}zwqiiq{~zuu}{u{~}zz}}}zz}{z}zrtxutw{~~zxxzz}}xuuurooot{tntwqoqqkccfhillihlruwz{z{~}{~xkfnw{}}~{uqoqw}{xx{rrwz{~{xx~{z~zqlntqikiefq}~~{trx{urtz}theilnorrrtwwwxx{~~{{xz}}{xoinxwwzzxxx{{xwz~~{ux~xtuwwwutw~xokkkloqqt}xnehquqi`\`nww{~{xxzwuzxuxxx{~{x~{rllr{xqt{~{}z~~{wz}}~zx~~z{zqiiic`fknrx{~~{~}{}{rlntwunebfow~zuuw{z{~zuu{}xw{{tot{~z{~}{ww{}}}~uruuwzz{}~~{wtuz}zqihklotz}}zzzuqrqheinieiqw}xrt~{uzzx}}zuw{{uruxz{}{zxqrx~zrruztiffcfqtkfinotz~{}{wrnkkloqqqt{}~}z}{rnquz{zzwwz{}zuw{~}}~~}{~~zqllq{~worx{~}uqnlnqrrtuuux{~~~}}{wuxwohhkow{{~}xz{~~}zx{~zz}~~}}~~}wrqrtw~}{~~~{{zz}~{z}~{wx{{z~}urqnlnoonnqw{}{{}}zwutqoqx~~~}wrrwz}}zw{~}z{}{{zxx{~~zutux{{}{wx~~~}xwwxxwuuuuuuttx{xxwuw{}zwwxxz~~~{{zww{}~~~~~zz}}zxxz{}~~~~~zux{~}xwz~{xwwxxwuwwwwuuuwz~~~}{zxz{{{{{~~~{xxzzz{{{{{}~~~~~~~~}~~}}}~~}}}~~}}}{{{}}}}}}}~~~~~}}~~}}~~}}}{{}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~.Q-+wE--<~~~}}}||||{zzzzzzyyyxwwwwwwwwvvvvuuuttttttssstttuuuttttttttttttttsrrrrrrrrrrrrrrsssttttttuuuvvvwxxxxxxxxyyyz{{|||||||}}}}}~~~~|{zzyxwrbB.Ecu̺~si`ZTOLIGGGHIKMPTWZ^chlqw{}|ywuroljhec`]YA!1MaqӸr_N@3)!!%,,&*Hjqs|yvtrpnljhfeca_^^\[ZXWUTTSQQOMK:#*9GUet̰uZB/ &-68).Puѽvmf`\ZXWXXY[^`cfilpsvx{~{vtwyz{||ywspnligeca_\YWUTSRPOJ='"4EXl}Ю~t_B[|~qdXNF@<988;?CHNNA')NrѨdH1!Ba}רwL' (Ul8%A]uЭlQ=- %)"DxĹzuqnljiijkmqyƥhP;)*3;GT`m{تįp\I7%IiJ"5).>M^pĻyof\J0 1Mdwʚ\%.5;AFJMQVZ]__[WTQPQTWZ^bfjmquz~ػsgc_\\]biqw}ǺŮ{J *@TeyˣyP+  'AXkzөhM7# $:9$;νqrغZ' "?PJ@IW_gouy|~~|xvvv}vLT1BGJc=>?$UoQIG9) %8FNU[`gr}xlY3 5Oe|׍sv;)>O\hs}̨; BU2,P¬~ײh  )RucD#  *S]UH8""%&&#(8IZjy|L >ɴN7Qq⻀^nsN4#:UerĦ_9$1M< 5lͽƢǠiS7  '1;HT[abbdfdaemqw~{trlO(/[ά̢~jaWXbgltwvspmm|ѡnL<2)&),/2232-..#$,*4<=DQap̪ѹjI) -):L#@A"8Pg}ؼzJdʻ}uld]ULB9557;98669<==>Gaf?#  '6?HYjtw}oqznP//J]gpz}xoe_WNJNE(0_x[$ "Jv͡|aN>2' =yظweWLB92---,,+'")XǧoXC0# -DXhw] &-.:b{T3 "Gqͷymj~Ǭܩx{ta̲fA!! 3K_s|X>/&"$%   *_ԺsVizxQ#1Vt¨nD% 1SrǜvT3 Gj˵k:/K_ֲw\F7* *;FRtĮtWF:, $/=D<*#6bg>   ll=;JQU\ehfb^`wpR;'&AZodc߼]7 3BJD(#O{ռifyyurs{~hE4FmzC!T|vnbUG9-" "'+//)Arƶuic_YQI?6*!+,&&%#->JLE>CMPH2 )JqےH& $2Jf޳؟qD.@dɱt3 $-33/*)>Y_zşͰkaּza3PŻiN7%  (&5l׺zpf[QIC>98?FMZehfbbgifb^Q?M|ːD PƹskgeqX[W="  #(,+1ASdr{scM)GsojK3&$*0/) "0=EA2 6¹šo0'H\o|}{{߸^=*! +01:Ng~Ё4 ! TɽѬhH'MgVKGFOala]fcbkwkʏH*Mߞ|plf^]R6+E/ !]|+ #GoԽaIGIIHFB=80)" ",6@IRX^kuw}~_[sڪE%35:IWclrx}tfUB1!70 5.<72QSH7 %H^m~ϒd@0/1464+Jdg?-;SlxPLZ]VMHKWwǷНoqnQ?$  !-5;Oz͵yaH1 !4;0'=v˽~gsǮµ}eQ<"  (17<@ELRSROJEB>43Fjܵ|iXH:47@GLK?=A=WگسvV. =IH__OkӤoB"%FlҢvyeby[6?TI9/18?EKOQQLA65@MPIDHR]]gr|qbB -PrǷI %-,&'*/6=>:FgոvpqM+#")6Zu[Uпp\sʯ|дρC0:?BGE9*"#$ :_|ŏgN=58;77Ur^+8@"":P`m}és]6!'*($%=sʬpaWKMfu[&  -KtxW8*A\kf_ۼtS2  %!6e׆[LI[o{{uyX ! "P}øX* 4qŵyhU?'(,--27537<;412ClmJ-a޸~ϕ\>EX_VJE@;876541(0ONB?;1!  &08Onϭt31JDOߦeB@JPV_ckuskaVK@4'"(/.+*( 3gЭzR(  9`¹ºT* ).8FLLV~ԸϵP5M]lxwY2%:cاrA    %CR[X>>l׹pN(?o¦ı{MADEE<,*=Rgyy\`ۮv$ .TqåqU;0102>NRMVenpmfW7!7dשY%,IE%;h̯pQ=/#"&(1Jq|vq\LX}s0 +Ig}b@@]wjSF==NXH(  %/2101Ekչx[B547:<98>IWg{ŎaE7  0Eg|h;.[U(/C/"221?Qvںxqrw༏sTB^\OƷujbUD5) !'+0.,.357@KTWO9%H[YYkЛWPdW( *6@Mln[OEBHNNKMSXaxv{||upmeXYp~j?    !8KSSXftusuwwvz{yvobWejH.$  $;Vqݱɭyl¼pFX̩tfV% #!&T溨ܭu>  1I_~̵ʨgVIFWik_I73MdQ?NmоqXIFD6 &UO 2aݸqfv^' &2OzursY=7=B;)$8KZi{omեqD&%,29>2  -:FR]fyóÿw]abYRZdb]XVUL?70%"%&%(--&$.9>?>941-'%0QokYM@63:>AQch`\ftŵpQ9+'%"#(-37:>ENWYRD3 5kǼqg]UQPLGA<:<;2$ `εjJ96BZnzyC !:=! !$'%   +`x^ProaWPIA;>GQY]]ZSR_e``gh_ieNC@SŽz}u]MKLXyepmG,!#-6:92'"1N]WrêxL+ /HH>50/29??6) #%##&6SbbcsɶdOGRkx]OF>@:Bsý»ývȠfVRQTY^gja\^\TLJHB97@Pcs}{yy{~ndgjd^_cwָoP7  $;GLOSTQVkԾɳ~Z41{iOtypxaF6733433441+&" "+?O_syi[QI>2+-//146:<<::<>NdhhlopYO^sujt˧th{wvronkb[\_\UPLGJZtȰwi^UNIEAAJZmy|r]buaTPNI@4*)23*&'*/466@PUYagf_ZVQJGJMSWNN_ngRGJT\chjouwvuupjnz}m]^hrywt}{}˻x\A2*!&;RhxxiWHBGS_l{lUGEHE@?CO[bfgfefijhhieZQNI?4+-9+#6/"%:q_=0Bo{qnpt{}xurnlmnjegpz~|votxdH?Nh|ž}smurR- !!""!"%-;DEGGFFJOSTV[afifcdc]XRUm~zy{~qQ:B]yд|tutv|}qgcb`\]kʸ|tokiov|uxzmYP[aTB8;GLD:1++3>HHI\u}rns|tu{z{zwvtojgec^YZZUPUaijktoWJGGJLIDELSSOG?@CCBBB@?DNU]lvyywȷiZUQWofMH[fj{tntŶwe_kw}zrfZND;3.-/4=HMOXafji_M;0,174:M]n~}zº~rkfjtxskaTMRL;;WyiUe}ontmlrl_XVWVPZouneafotl^URPJB<=<9FLIA?@ENVVKGMP\nsu~tkfdb^VSX[cq|ĿlVS\`YMDBDFED>9>HScr||nropr^Zhpw~toqxyn\PRXXPIJOQRVXXY[^bfhfdddb_]YTSQMNMQbeO;F`f_\\UHDSinkjib_kuyϿyvbMHNRPNRXZUOLGACLXerydXZa`_dky}ng`XQMKIE=4-(&%$$'))-27AN\i{vnjc\^koeYROMNOONNOOOPPOPQOJHN]l|zmfc_WQRSSUOD=?EGIR^hou}Ž}tmjhimruxwnghllf``ehnvyut~ǽ{vqi_VQPTWQKLOOOOOPW]gywv}sjinstqlgefheci|vt|{umaUOQUTSUTSRSV]ipt{}vqt~{la]aedcefjmjhkjf`XRTblopojeba``bhkmrsqolmv}xlflw~||yuvyywvxyy{|vpjgda``__]]`aaeikklq{|xtty{wvupnpsrnigeddglrttutqopv}{xvy{y}}|{{zyyyxwvuuvwyz|~|yvsrqppqsuwz}*Q+wE<}urruz~}wqnllnnoqrqnlkkkkkkkkkhhhhhfhiklifc_YTTTVYZ_bbb________]ZYYZ]____]\YWY\]_`cehihhhfcbbcefffffecccefhhklnnlllnnqtz~~}}{{~~~}~}}~}zxutqrqqklnooknih``bccZYZY\\\__bkikkkqnhkliZTWYY\ccb_`ichkkefeoqwbf]icknccfrlnw~olt~~lnu`lttturo{ucbtwtkut{o~}ozx}}}{nnqt~{n}}qu{trxS}{o}kchw~lrNn~t~Stqfxf`]_qe{PWKlwq]rWzY_ke;Nq`lrtt{};PenuoexH}liwn]lxwEqbrT]Z5M`Z~\\`9hS{_P_zbnornur\HinlxDΎ_W}erAettZAVGAt&BnDnq}qYlVr_QGcqt]fƒ쎿wףZ\iBw3JQ}Qtc`fG QYbuVW uK]\3q`6ihWz{xqxSWc\;*Giw2P5KznnWc89DDž,V͞DreHk~uxzYl\đkT>>ܗ/h`,~J>˃,;Ph)}u9NZii<_oWkec9MN~#0˚?hȭ`/͘V?P\qcfuԳz˜㩀t†lhoPerJ2<ݸ!;Զ_6԰i& BV53i]NZ}ww}{wnuxx{ne_lqeSDchPSwߩz`J]~D'!;zΩt92l˩~8,]˛S0,nǹ\9& ;NqxM'5';l}li`Zlx~xn_JK\H# ;Twi]G#9H}͹tP##?uԶnBG ZG3>#GB9>ZW_qVQkr\SHHP_?)\J#>_BZW٪ r]qzqVeoJGtiKV{xΪxxiwkN]eQHPWJHQihShľȳwflVB>2D92#0*/>0-;?ASb`uǼwhh``JA;2*)#!B&2NK>62332/;>2EA>HYV`hle{¾}~o]NVT>A)'# !/68JEYQQfn{ʾx{qrlihcfE`TE?G82<2/6, $),**2*38HJENWhbnonru»ſĵz{rotbcieS_N;AM658,88!#5,,'-36839;2JNBPTQTcfo{uǭĶzttkih]h`TbVEBMKJA63HHDDG699>>?28B,2BE,35-66;3;2DE<<8?GVccUNYhg\\dhdcjrhHBGLYioaU]mpfgpvssy϶rKBDDK[eZLQfmb]dlkimuɺrMADGLZgcTQale[_jkgiuŪ}SDIOTbrp_Xgtna`jnlozɴ|TBGNPZjobXdrodcnsomv~оYCENPXhpeYaprfajqols{ì\BBNRYismaeqrd]emmltҼfGCQVZhurfhwsks}|ǴpMFSVXdsshdoyqfisvruҽyRFT[\drtkgsznny~|İWIXbdjx~vnu~qox~ι[GR^`cnuofm{ymhpwvu}οfU\imnxvw{v|̸lVWchiq||uu|sxʷqZYfmmt~yv}wmovwuyǵoSLYa`fquomu}xoqwzy{Ͼy[P\editzvrw~yontwuv~ʸwXJU``douqlpxthdimmlq{yaQXbcemtrmoutkhmqqqu}y`MPY\_fnoklrslhkppnq{gSU^bekqrnlpphbcggehrz|bLLV\^dlokjqskdekljjqygPMV]_dloljosngglmklt|pWQYacgnrolqvrjhlljjowr`Y]dehpuspswuompqopv}tc\^behnqqprvuqoruuuyqgipru{~{}{vwxwvyoa`gijottqsxxqmoqposzrcahjmu{zvw}{wx{{z}}mimorx~}x{{XRlaBXw~wsoefvztŦsTVsÍPBe}orгhkNJPGd{|yr}ͭy^fMHbtrsrlkwǥpWaʵwIKfurqkban}{w}ŠkR^åd=Igwurjacq|vqwǣnVdß`>MixvslekzxosŸkVjY;Mgrni`[fv|tot~^MeO7Niuqh]Yfvyrpw`QkQ?Ys}yqgesyu|ƚfVr~H=Xpxtja`ozwmjr^Qpm:3Nfni_Y^q{ukjq~ZQupB=Vmunc^fxysu|ƿ_X~jBB[quk^Zctzsnpx^[{`DH_qumb_htumkow_dYBI_oph^^ivvlkqz|_mZEPgutkbdp|{ttw~v_oVGVmxujacpzytvztcxzQGYoxrf]cqyuosyqewRNav{pip~}x}uosRQfyyplt|wwt\^o{}vonw~|otnZ_ozzsnow{yupaiz|uv{i]gxvps~{{{p{_Wcszxrnr|{}{ugcq{x~|y|dcr}urw~ztuoadowwtpou||wu{xsgju{zvtw~}||ulciswtpory~}xx}mjxv_YdnnifegotrmmtwdeulWUclkfcbdlqnjjrufl}jXZipokjiksuojluj`i{{_Qimp}f:0HNCHfjPKdxn_l].?`bVdziZlfhµ[E]ocZslfwqi~p;5TgZ\qk[`y|km|[?RqnYfupiwzluĪ|SIcxie{rhyqpzb?Ceqelyvjurq{ĶpK;Srmdo}{vzt|eB=\k`bt~suyw~rL4Ehk_aones}tihs÷~aE>Wh`\iwst|spxɵ`FNmzuty~ϷrRH`wujn{{~{rw~~\ELgtmhv~{|{pMASjphjvz~ڼbKRk|zrxӪ{XKVhplkrux}|tvuu`HJ\lnikorx~wsuuxVKWhmhejqw}ztwww·mTSduytw~ѷhV]q~{vy~}}ŽqTP_rvonv~ʵgSWhvvrtz~Ʀ|\Tat|wtxϾrZYixysrx}zwvv{x^U]lspmotw{~zusstgTR^jmiinsuywqmmmnnTJO]gigiosx||xvwyt`\fsywsvz~xtuzaRUakmigkotwupllnwmSJSahfbeimqrniggizaNO\iligkotxxtprt|dZaoyxssw{~wsss|na_fnpnmprtvvsnnpuwe\_iqrpswzxtvysfaeousquz}zztt~wmpz{z|y|ykgoyytx~zz}pq|}syúpS[v}ijs~í~WASpujn{{r_J]|qmzūcSgywƮ~_UivxˮoOMbw{sqz͵iPRetullv|˷`JRgvtkimrzǰZGQdmkhkqz̴OASclonmoxкNDTbfdbcfo~εyHBVfgea^_k{̰rDD\fdcdaao|ȫg49T_`__YYeu~ƨa4=W`[]_[Zkկb8Ggmhih_]q۵kASmmfhj``sԫ[6NikchgZWk}֨S1Heb[bcWSk||ףQ1Okf`deUVpפT;]sldnm\\s}١I4Wslfqn]Zw|͗QA`shdll\]u~ÉG@fwmfniY_vzŌKIiuhfrl_d}|GJjuilsl^h}IOntloxpao|JWuxmpxjapʺtI[utiqvi_p̰dBWtrjqvj`tЮhH^wtnuzhdx˥_Ge{vmxxhf|ѧ_Nj~uq}{ljŚe]vzwrsc]xxt~zjo\]v}ss}wmr]by}ru|wjr_fx|r}ʿdo}~t~{[j~t{ulxpUe|yrysizérYlyrzrk|kXp{tpl~Ģi]t|ywsni{|x|}tsgdv|tpyyno|fj{~ww}xps}fm{}vx|xqwwen|zvy}wpxyir}zvy|vrxnbmvtorrlipy|h^hrpnstpnw~lgszvuxxsrykgrwutvvstyjhrwv~n~^Rjo``~}}s||ZLal^Yzu`JbxiZ}{|pS^xo\{vSYzsVnvSSwwZh^Pqy`ezaPlwa_|dNi}m_wiM`|ygv|iO\vxetmQYwkquWUpqr~nTOevhi{jTNd|slyt]Rbz|vxs]R^t{wxŲwaYcv~zŹeZbs~v|»x^TWdvyrsw|[QXfw}xuvbSWduzyƻhW]iuznW[kw|ǥqSUdm{sxvWS_ep}qptTQ^bk{~sp[R`fnz~to[P\ckywo]Q_gnz{phT^hpzs~dNT]cn|xjqdJN[bhtukqjNOZckyxkopMIW`eswli}sPGR^fswom~}XKVagu{tp~`QX`epvrny|\MT\^hpnhqaLQ\ckrrnsePQX^irqkrjSU^cjtwruqUT^fnvyuyzZV_fmvzsszZQYagntpo{xWMU^clurrbTZeiqzxt~iY]gmu|yu}kWZflrzytyqb`gmt{{y~rcafhnvywyp`\chlptx|sd`dipuuu{zibfmty{|~mfhnty{~qihowzy|tkhmw{y|sjfjtzx{ujdjv|x{|rilw}y|~ulnyy|t`^vywtU`stc]aw\pe[sbmOgoL\rvoQv|}g~XrbwUWn_HixtMbxymk^TufeJmq}yJV~}u`RpptqLjz|wowQR{nu|~TFfyquuzgIXxkkp{pMOm|k|wvt[Idys{|{dOWuvl~u\Xmwpw|r_Sczst{m]NUhqkr^MK^jhq~iZU\hhhmYU^jppyv[RWahjt_KR^eiorUTbeekvVN^jjlvcIXhefo}uNOcjeo{bWkqihukQ_tpmw~|RVjmgl~_Pcngn{x]kzvo{bd}{nat{|^k}{zji|~rzm[q}xuwZf}yt_^u}wzxcw{{hs~fc|wyp^m|vs~bk{xqtjdu}vyqcr~}yjm~~rpq~pvqk}wgs|x~bhy{wxfas|uwp]jxzw}ch{{uyjdu{zr]jyvtx{dervoqwhdquqot}mbisspszsceorqqxwe`fmopt}}ldhnoor|wmkqxyytqtzyomszz}{rlmtwt{~yrigqvsx|tpgbhttp~yuskbeqss|z{vifr}x|~rhs~}~{wjmz~|jgw}tny{qt}{rs}|utwxy}|wv{}xuwwwyzwtxzwttvwwwvvvvvvvwxxxwwxz}%Q$+wE$$<}}~~}}{zzxuttuz{xtttttuz~~}}}}}}}}~~}~}{zz{~}{zz{~}zz}~{wuttz~}}}}~}}~}zutx{}{xttuw{~}}}~~}}~~{wtuz{~}wtrw}~{zz{}}~~}xwwtuz~}ztnlqw{~}zz}}}}}}~}z}~}{xtonquxwronnotu{}}zxwwz}}}}~z{}wrokiozuqqrtx}~zwx}~{wwxz}~~wqnow~~zwqkoz}zwwz}}}}}}~{wtwzqlkklt}{z}qhkqx}wqnu{}~}xwz}~}}~}xwuqklwxnhiqz~zz~}}~~{tniebk}}rkfen}~}tqttuwx}~zx{zohhn}zi_bhnx~{z}xutt{}}}th_`l}}ncbhowxqqz{zxutttw~zqf_cwtfb_bq~}{xwx{zwx}~znb]bq}nhflzzx{}}}{z}{{zriel{l\YW_n{}~~{wuoe\VVe}l\VWkz}}wx}zx}~trneektl\Ybu}wtw{~}{xwz~}xwtnhe__ot_TVbt}}uoqot~~{zzqntwoe`]bzePHM\u~{}zuwz}wrokc\YZfhZW\rztouwnoz~~uhbcolVTW_tzw}wtwtoke`_fxkVJHVr{{zwz{~}}}zq`]hr{cPVbn}oqz~~}ocbhlnxk\VTbrkkr{}t}xb`he`iz}\B>Jhktzqz{uwrq}lYKBAK\qiQM]q}}xuqhlz}wtrz{qihhfchw~eSYhl}wwlboztooncVVkoelq_JDSl~z~hhu~thecYJQqwebht}rbSWq}wzz{wkbeuw]SQNMV`k{eWenwtlqnZKP`wtk\MZlhYZwuoz{twzzzfVH82Kztikxz}wnqtrttnz~{}oVAKq`A9Nn~ncbb\hte\VJ8,2Qqhkrz{fJHbw`W_o~~zkM32D]zxhehx}xlbo{zurtz}z~oSDAPreHAVtttz}{k_oqf\KADPc}w_Ykkhuni}}leo}hf`Ycqwz~xzz{~zobYZetzu~w~qechhtnN2)5Vxx}wicqwJ*,AVo~eYi]?DYxt\PVcrwQ>AQ`n~}}wifq~ztq{q]YbkonktzcWVV`q{nTA8Mk}xkZ_wk\bzP'&;TwlPAG\z}weht}Z,!3SzlS>>Vu~teZbqooz{qwzT2/5MtkbK2>f~eVc}t_\htP#N}bDS£tSQWVZe}troekM2&8o}iN52bǿnc\P?DrȶxtrwbK?DetN8/Bq~{kSAPtb_{M)ib>28V}x`ho_GJ]wzwxoD*&5Y{zhZMDMqxbYMKb~lhlf_i_H;AezhK,6kζ}eYVJMkwhnx~P;A_wW?;VVJ\he\Zew~zD&)H]hhQNV_o{J5HeoqbclwlY>*/QxZ2A{ͼhYJK\itwi]hžhS<,;ofG>ZtzlVMEDPfxzqV2*GfukeNBVzt{uW>A\tz~b]oh;2V`EGiwG,8QQGbnewkB#*enV6-Pthz}knqnurhrzYB& __D_ªeNGDMQYtzS),NwoG*;qڿwhQMSYH8K{ѿW\zT&Ez\2$D}ǹ~kWSSG8>fѼrltbH,/Ze`hb\zݰ~ze\\VEAVuqSNeqK$YcDQ׿zzfNA60/0?YqͳorzkY/#o¤}bH' TȦ}_YYPWh`etcNY¼²hqhQA#)n}bVHM~ĩoJDPZVHV}ߪ}cbqiV]oqhxN$qѰzW>MښnwD3PhW) 8cά}ew`/2qfeE'>྆eifPHKMNSM8GȭxqeD$-_efDGr٧}ZA_ihkQNPoԪoKA6;PV5,Y{˪rSh~V3-M{{ewwi`_kȔcSB/)?]qx`AJirqxNPfV#A_xqZTV\rԹ\<'#Ahwqzݠfe\3/&&5Gbn\rӰP,/>8$5hn>/>\unQEPWnʡW5AecJG>)$Kz\YݳǸJ 8ezu_D,_߳l\kttw}lVTo˪wenb8!b˦ѣ~ŎY;  5GVtʗkiTPŰo_<>nztibV2 AzzuˌtkS;<0 0q>#<_Ρ~uK>QzʹNM{Z, *h͏P)>ڝwz~oP5',AW_QGDAfbMnr_hinΰeKĶqkJ>J_T, ;oˏbzȘB //eoZG>APhfYz{bxnw}qo徛ǹP;Ghh)#Qܡ]3/KĹl)0_n85uhl~ǤН\*;ŗrk`TPSZtԸhGVnM-28&J~}Ūt/$29GeQ  T׻whl}Y,D!2DQ_kzڰxkΑbTQSe{ζ` 5ЉQGSQJJKPVZE),`¼γxkS)$8Yt}wlTAM\_kĿWWn{otei³W$#)!8{P8K֧kS9)8i5;nŰĹ\2#2nǵb/`f5]ż~Ρb'Guz`B, -JWY_t~i,!)>~Ѫh'3ڹ~Y85DKWebK/ -S hV*#Dcl\>#&NtweMD\߳}S2ArxfqԤqK,~tHAxͦ{eJ<_2ioB&'->x˧lA3Dh׼wWAA\ut]50P~ݿz> /EJ>boP<-2_˳bct\A-;l춒nZw\/쿒ˤkG9?Snf0 'Auwizʆ2>o, $tԦ~z~S-SVPZh]l׶Ѿ`;#>S\VMZtuf_bYhqD6EVTMMWhڧxwӘDbăY]⿆WDBPnV#9n9 6qt_MAK{wxhJHhzl_<#/V{֪l)/)__N͵obncctqV5&DqӧZ )i}¯eKBMir8'nΏS- TD xӭ~b5)DVk{hkȹȡfJ$Px}lE,MnqxԹnMBGKHM`knЧ}btȃ)0΋NM͝h;$2\xznQ/)\xhTir5&\~_EN}wtiSPMJ\W5&9_xȼˬb>V~8JʶkkfVSlzkV>;_}׾S AwСof}’Z>A]zxQ&&5;VutžΛQ8ok;T˵x];)-GzżžnktnbE ;WltD5VʭhPDN_bebKNeh~ߧw_eЭn' 8澀bzέwZMAAYtoeV/,Df{׿ʡb,SfeYN>D~Y6 /NY\nѼЪnqe0 8q}r_Piݿn_M23Tn_Vht{Ȼu]\TboM* 6³ٿ{52btK,9Pb{wJ 2$&AMEAJ]eZ_¾}wrG#/MbncPQcznQVP<)#6MMZz˻ǿoYJ_x}eD0*,5Jh}zȾ~q`]e]NGMYkȻh`fzeNYhY<2;NYWbѻhVWVH52DKM`iYJQenuʭwutbNGEJMDKkٯzeVDAA;5226Kqோ{}W#;tnJ&#E}ųiYYckwnZc}ŹŘ_GSbT<8Hfu_W\kšubeWDPc\?3D_~nw~l}kE &_ȸoee\KDKTVSKM_eeȗnbY> MzY#;}{_`]D5Qq]YWMA?Tnr`J9;JbʹtD6A>EY_Z\feYTbʡtltwzwqq`M]kJ,0Q}ȸwbJEMJNY\f}zʿ}qe`_YB5PnqnhbWPPZuȭw`PQuhVV_cern]K86HhuK2)3S˲nPB>K\nwŻuYBEYcfn}zZ<5Eb}ӳ}_DNi{u}zV?LQay~vopqyyzssxsvvhalv|{~tqrrqnf^[cp{~v~zwwnlmvzuwxuvqswrifor{qt{tgcgt}~~|r{yv}|pfaZZdv~}wtolwxsrpnnt}x{{rotqu~zplmp{{vvwv{megirzssy{vywyvms~unqpsz}~~{srr~xsi_cmqt||z||{}~zvv~ndcir||yw{}vvtmnwy{z{yrjgo|~zwppvxy~z|xnlhdglsz}{vz{z|}{|xnmv~}zwvv|~xgbcfpxyw{xyppptzpnjhikr||~vg\`q|~z{~megu{tt{yuropw}~|~ytpnsy~|{}{uux~}}wwwy~xrvw{~~zvtvx{~zt{{wuutt|w|~}{}~|{usoq{{qls{{uyzythen{sjlpx~|smou}{snnjiknywttyyw||}~}tqor||ukegr{~{||xsoswx{xrpqqpqrswuyuppq}urz~xw{zywustvy||{|}|sihnz}zy}{usvvokt}}yvy}~|vuw{}zuvzzqnnopv}~wlls{}|}~|}~}ztrv}~~zxz~|}|zz{wqikrx~||~wsz{umhehrzvrrz|tw~|~}~zwz}|tnrvz|}}~{ywsrw{zyww{~}|{{|xsuz|}{tv{}yttw|xpoqsrsx|{}~{~|}{|~z|~~xuuw||{|~}|~|zyvrqsxyty~yuwxz~yux|uoqmu~v\cqleṟu~mYVisg_GHP@8BJUds|֫~XDRp}~zo`dhbVG>BX}fR]m{~{~ljxzm\USZV^yugkruaNIUn~uİQ8?X|}z}uj[Qdj_XOBH]p~wef~rvsPEFUuysl\R[f`m|yzsohZZi~ǮoSGJUaot{uquvywi\etUNfutzrvutwopodn|mboxcZUST^ryu{ysqmpncjujenhWblogl~wwz^Ziuvpy~zj^h|z[S`oqrsz|{qnomh|uwtotws\LMVWbwtouv{tv|qt~|}zicotxtxxwwwxwqiflw~{os|}tprnqu~xvzyvysuytmjswqv}vlgjwyouqozxokjden~}utpomo~wstvvuxzvrxytt|}wolmp{wsw{{xleehr}rqw~}zvxxxvyqqyyqlqpqu~{rqr}xnegosw}{xyyy{~}zzzsprv{~{x}}{wliqz}tuuvvsmkr~y}wsv}|~|plgacho{zspw~{wx}~us|~vqovxe]\]is}{y}}tqpq|{ttrnmmsz||~|odfv}xru~tkkwyqry{{|wqlkry{xxrmkry}}~yuw|yxwt|{twy|~zzuvvw{~~{xu|ztttuxy|{}zxqpnpyvpty||~xsw{|ymhqtklntyxqpsz|toniimpx~|z{zv}xvwzztqpr{{pfdmx{zysmgmtw|{ussrqtvxzvw{srpyuqx}xwzyxxwuttv{{~||tjioz}yx{yrptvpkt~}wsuy|}yx{}}{xy|{qmmoot~~wllsz~{z~}tqu~~ywtx}zxy|umdgns~~|}z{}xog_ap}ukoy~vy|z~~z|~y|tqvuv{ytz{vxxsrx~}|zty}|}z|}x}}xyyvvy{{|~}pq}~wwyvuzvolqwtuzy|~~|{}{}~}y|xYG^|hZoz|vWZ|wuqrhfjGHimgiwrPgzouvZevpsz{jTt|~pVpnhw|z|rfgu|hsr_bsumpan˧qWKHkwiKYJ8LKDJRdwid|sug9'Eewx}|prmf{Ŷfwjhge|]QJ;8ZmCNd<3QIbiHMdUj\E@kyoknsgU>1CWfvı|xjmnuus|leigqjs}u[xhiWPIAPH@D@D5+5,HY[loxtzpj{|p{vtxqvmw}Ȼͼ}rwtzip|xmNGK^eajbx|q}jX]OSjahlal]HJI?5AUQUj{x~tz}uwvmtocszmyummspyp{wh^KS[VQZ`MQkk~yxyw}y||wxxlbaeZ^X_YLLKVUCB>4/'452)8/38.@*$;TXfkcjqrku{x~wt{}yvqgebYU\Zd_lnivkimlahjg`_bW^XVVRKBGMW`tzx|Ծ}|~}~vvzxzwxuovzwmqnhalfdbafgeknyuivrmjfSLVcsx|xvywt|rqtwy|xtwu{~w|wocf_VZXW\XXZXV[[ae^ZHJReltwū}~|orgbdfmx~}ztuxyutslsriwwquvxyt{}zwztpprbg]R66COT_dmmvzt~|~xut{yz~}sqiibdeWUcYbuovnjcfcbW[LCM\bjqxvq}~·|z}wz}xsgh_djiahcumggq~~{{|sxqvpkbVLLWejhpx~{|uyosuskjmjeaj_py~{uznl^eQSRSPQQJSS[Xf_eigdUIVhhv{׼}z}}opa``f`dmmpmx|u}vxnxjnsnjxy{}r~xkpqrglql\nNBEOV^nohp|s|~zt}wxwekk_kkhfmop|}|}zlstnhle_K:/9RIPXggs~y|{lhqemc`_cbmdvw|}~{wyirfovmhbfgfgfjntu}zzwsqppjjhmlmoss{r|~||{}ol~uk}utpN]G89Stn\nonumnbKH<5ID>NQ[hwvkr{|}oc]`baWC;G_}e]hs{{\kld^bqfdsogKPange]juw~ztzwuƺkE>Kx~wyrs~mdZOkynxzjrneh|vxfaXAM_a^mvmpiXewvtpgvvnxm{Wakqf|rbq{xxjxxlzxuj``elsm|x}`i{p\d{}ozqdSWPXiss}zyvtttWSpqp}z|lelmk[lwz}lPM_hberuys[`uqssyoQSV_i~~~|yxy|~zZVUTQ[^bwxflytytqzakyadwnntfVexlt|oak{ituW[afniNbvz|iqu}~w{zng\fq{rd[URTWKYa`opvyuttw}quumssxu{{trdf~}f`lty}rlZX][`cg{zbalaikWTf[`otto}hhwfq{uzvv}tpfdkgqp_UR[b\fgr{quuqko||of}vxw|qqunxvu{wn]p}~tivqu|zgfjeeloq{|{rfY_jwrjmu|m^ku~xrilpspnogktq}zvtrgTDCRWZjpwwy{zwy}pswqnq^Wbrzzkwlhvxvmxuuvdizmcidmurvs`lrtqe||tormz}uywmZTgmknvu{}pxw{{~ddvy}wwndrqqzvw{suhdcYanpz}youxskddUM]lv|x|||`XenxuaKKYcmw}~zuspvsruppmz}qu{zmwwfl}yrv~rquw~hisjjqxwt{xuvnw|yv}{rmzqj\kqpsorqppusuwpqmpmkushTN`eky}pkw{ninfW[bghjgothotv}}}oZbsvqfcfosvz~s_Saqsvpxvvrr}rirmu}zxsel{xyzyslZCTdcu{~|p}~WVcW`b^hkqqmjm{|fcy~n_QYpwllnu|{~tpx~ln}|}to~tvu}z|znricieZVfsv|}{~zqphovxomuw|us|}sjjhhntqp\UVSapzz~}vdTanr~~~~vbU`chv{tg^agjs|yltywwuwlXaru}~x|~yy||}zsl[faqtX^kp~|s`]ftp~z|mpx}yocs|z~~zuunlgZVhnmqwxwun^Ulqu{v}zzkcp}kq{~z~|zz|~yt_KViryxnV`omswliis}{y|~r[^jrw|tsgvys{par}ng{x}zo\ar|~}~y}{vq}vyzzupefh]\yvqmo|{vuolxuz{h_Teol|}m`zw~|~~smsmak|tpsmbeqjjzv{q`qru|qfrst{jgrvs}|{zxr^JZaakzz{~}xsukZ_i}mmt`Zcqw||zs|yow~vxyuqrYcpp{v~||}|rup[ksxwz|~~tgThu~||{wvpkgswkhnmj[`pt|uwtsrez~pYkrs|zlWK`jlwvywjm}{{qosrui]akrxyvej}x}~xp\Xr~zuwqomneT^us~rw|zrkecVLXbjryy}}q^_mjsxy{z{}|xbl}|}zxqsk_muxx}|sa[jy~yxthXktsrtsnfbRSguofsybrzyvopUXxntzy}znNPenqw}}z}~wxrqpcSGaigqyy}~lk}oZ]os|ytyvy||}{kmm_QShrsusyqmmhdcggloul`j~~{zyz_asv|y|x}wolfdd_KTcgrx||}|wxk_bt{~}uaeqox~{xu~xvurl]cpqxt`mwt~zv{wWOgknzy{~xnpjUUahntru|r|~z}{sv~z|{~xuytm^Qbv|xqxuvn[j|x}wjzunnhea^NVfu~|{eftx|~|v~|~klz{~u\XqlilorxzxvkkihiicPZpuxwxnU_nokjz}v~~~}ztsq]Padhxvy}s^lpnptuyzzzywt{xf`krzri[gx{~zyyvxz|ywzwql_EFZbix~x{wplhoeZ`uv{~vbm{{|uv~}~y~p^aq|~wvnUapuvwuz~tj{eo~vwzqgZPamt|}sz|{zs||xvz}txyumg\S\vv|xvlPMgkt~ousbiopzzpWUdq{ldhtej{qyodywuondgbgcZaaO3RW`tjvoo`^z}Ɲkfbav}wof{dinrvmfoxxy{zwmfwvmtkLKPNTWaounjnxiPdyi~g]j~lo}xwzer]30=AGGJLRVX[Yc}~}vsspfi~nfpss~|usxuibab`acffbS@>DIHNR`ghuwpstx}|zxwhhjhlkfeYMQ]r{}upmjaKGST[]]hkdjodblkaipuxnhb_[ZXNIGHBCD?DSXQOOQ[fqx~~xyyq\_uz˽yywvtuzy|{~|yqnoqrja`^_aef^YabegfdbaZ]ghmmlf_ZPOIC<==/&39BMV[bknuy{z}z}}}|xwxtxwwz{}xxskjd`YRPMD58BLT\aagptxy{{zyyxsu}wztkljdVHLRU]adhlpprpx|}|sleeaa]`c`b]\\^cccinou~||zyzxx{}}ulhijfYQ]jpx{yummjjnlkjeikmotvvw{}zyssvstposrtuuyxz}yvwuqhYZfrw~Ƶ{z{~}~||tqlfdeceecdefhegigfbdea]XMKIIGC74:HNW_dintwz~{slied^SIHQY`fknsuuw}~|yuropnnmkigeiippty{ywxwywxvz}|{wrtrkhd_YUVWaeiotw}~}xusqnpopqprruw|}{zuqtrrruz~}{xxyzwqofcaaajory{~}{~~}z}|~}zxsommhjea_bb^YVSLIHKQU\cdhlqwz{{}~~|yyyzusvrrlsto}ynpu}}|ux}|nf^IKPK[TGKUKRUX`Z``Vbdcfonl]Zbfd_^^fhpv{}zyqkjabbZWIJOLGE@>@550=AFPMTT[VS]]afdenuyyrlqe_fmsxcT\hptrɷĺðopuerAhk0;TZCAqhQVQ<0)EKC>:50#!5=Oftg`Zfysa_emƮ{saJ>Tdlspihjm{~{}}xniijmgny|uqpcLSVUJWdmqt{klyt}xtr}yslz}qc_\SUNG2)96:BFOZdfghllpnoqu{{yyxx}x}ü}sie`_dikeU@ABCKS]cbbhdghqqmnkhbZXURIE969>FINKKKHMONUYV[`jnyz|{yuuwy{|}zpmkky}{uwyyuyyzwxujmkgfc_]_Y^\]bca_fh]^cefijrrv}vwmbaa][_cfjoiZQ`lu~wtpgfehg^`gbZVPLDBA?BDNIAA?<@C@?=AFEHIBIYciox~vu{}~yqlvx|~~~tookihhkiikpnigd`ZWZZY^_``hipruyrsqsrrqnoqqmifikhhjc`^\XWWZ\be`bekkqplmquvxslsºzqhffjmnpmnpqsutwuzy{}}~{wsrtvv{ywrqlkmotsqmklpopttsuuxwyxlghtyĺzww{{xxoijikhdb^\QPRQRV\USWWXVWYX^_]_\PH]kp´~}}|~}{wurnnqssswrvz{{{zzyvk[^puttpnlmlhjmqtzyy}}||z|{z{~~~zwomqxxqpuywsutz{|{}zxurfi{ʺzywqjkgfeccbcced`ZVQIICFLJRV[]`b`fjnpusoqnoopoprqqsz|xpnruu{zpqƵ~~}~|zunkd_\[\[ZVJIRUWUUUST[[^_\WLIQex˹|{||{vokmkhmnmnnpxzx|~{yropsw{ywwurpsqrqmh`fmw|zwuy~~xzyy}ywwwwvz~{vutnnokhcdhhonpmjlkpmjic`br~̼{qrrpsvxwxuttmeda_`__YZ[V[`cglpqqpmnqsrxyvxzwolkkiglmouttswrryy|{uqllpt}ջ{wa`p|qkZWaRJOVam}ǥzW7;Tdnxq_d_htunajec]J>AOXSI@_se]h_TN?CJIVnlm~f^uìdgyּwq]GTiou~zd[k]O\fe]=9C99GTiostye`qxzqqljus`pœ{w{k}fZxqƶ||qbjvujn~{xoWFNe`_elmnwLGTVXsrtnZpqQfzr{~mj_Ygntt{ɷxqxbetfsmrUkknro~xqi\Za\aZ`P@dpeiqmuux~~~}iqabkplu}~ӺzoiwjK[qns}|suwyylW\OQVW_pwpg_RLgegzuk`Xgvcmxjuzt}~n\dpwuv}vpturuibibfovysq~{zyjouze]hsvphlus_NPi~otyfUXelms}rz{~no~e^yaX|s~piqkdie`twtwvurswxi`pzvto[e{jluy~}{zpT\`iqlmklw{~wwpmse[kts|yv|vwx|svoloqoukQNV\kwwzv}xqkqu]kysu~vlkq~}viVBM^hnp~~xuxzy{z_Tciuzvmtuut\fzfQ^}}}~{{b[ejsz|qryweS]_cil}yuhkyl`][aip~ujV`oqnphhu}hGH[emuvnljkghuuswxxv{~tcbz|not{}z~|}}|hgslophdtx}q}uy|zzyrs|~~ykRQ_`eopmt{yokmt{plwij~w~|zzynYY{tlirvr}uwwv{|xoqsbcsWZusmyqemjjoqhbdwwqxh\ja_kqw~|vquyzhx{wwyzrdLKX]drw|zwe\llotsy|of`NI_mnolk|owxtot}zvuyzrq}nebNRegmyyw{napzfUfkv|vstskVSsur|mrf}uf_]TH^v}kqtyslcV`hpwsmq|icnutywtxyy}}~yp[[jpsv}s|qhlbVfkkw}xz~~wbesww{{}~p^Rcillwkjsql{gUes~}{~k]iyxy~ygZ^\S[^fS>O[RQ93HWY_hfuynwǾojjof\PK96FJMOZ[^`hxyu}tjqg]T?4"0GLNZ\Xdw~sni_JKdpvtoirwĦչlcnrgknifihm{~kfe^]RD%-2*/9=DHHGNeq`Ye\_\UA6IUfw{pqppy||pi|ünq~usulrljeidN@O[[gllquv}~{~ywzr^DWVJaq{|ɰ{olgYB7LQY_`_`iggfgwpce[VNF@)')69=GZtpn|xr~{rajzx|y~ĺũӷ~ly}~|qvtlZKOD><0280,",4R^E?DFBDHLBAYeejjlpk{pne^`bVH?R\ahflnnmr}{qoe`aUHR__k|mc{qqsio|uxy|aUekz˶yd[_qowzvzzqlzyyzoeejtvtpxzwqpmka[J8TmeXHLXaoz{}{ttrpljWAPb^db_aipr|q`eje\ZYailpjjzox~ovzuqqs}yrdTjpje[SHA9.8;7%-FHN[RHNNUl~opfgpneda\O70EEM\ttz|v{̿mYeyzxwtunhO-5IFPY[h|xu{zdr{xwotoWelǹvcYdlnrqstynjuspnfb]]]Z]`g{{wsm`hynpjhif`YJAXcmyyoh_ovOSj{sbRFFQWQQ;/CL]cjnkrqzz|~hbrtrwlqtnmcG=QZ[aely}z~}x||vvsvwpeO7=LECIFEXsslqsvsfwĽ˽nYfvrspf`gm{|sonrr_BFOJA=9473112:;LbbW]ZW^[Z[_aZW[^\cdWJ[glvmm|yvvwqnnk^L[nuvuqrsnq|yia]G>MTVZ]oysurwp{į|v_Xjorspu{z|~}{zw{snfE4ED=@@CWvzqw|sbysmszz}juƶytjNNfkmleipy`crjhga^XUPQY]jsqqt|{upkmjgbdhjpjNJaouɾ¾}mVatx]YWZ\VHI=&5EBGMOUdfcZ_hw~}vutsk`]U\aWml]dfdlquyȲ|jaj}~lXJNZTWRL[nlbnlzzsnckuyz~~}xtuyqlu{sezͺtchpjpo[]do~vrtpy|znk]^`[XYPLKRWUV[begjkssy}y}}vx|~xyujcnտpf{i}vsffb`WZ\:1FHGPlnLCYmk}_MaglkmtYFV_ggaasiNdjvĹ}c[`^]H8GRNMafSd{]Njf`proqk^mmmt{rjrxvvz|zmZow{rxypXQUa^\\dowxxuvrz}nlmkpkfcfe]dlnpmp|oxtnhbdaXQD1275:?DOalstqtsihmrrstyvpjmut}zo~uq~qkibMACJMURZajjq{ywp{utsqryxnghfgmpvx{}{zov}~wvvuwnptqjd[WSLB2+9GL[_dkhgljltu{|rsrrw~ugq{}~|z|~wrojc[SG9=EPUZc`hnpopvtzv~|qssrvvrrx{}of{}~yrneb_YYNDJOW_[bgiqoqttvxz}}xy}{~|}||{zursprpqqxuk^fry}}|~zwqnqgd^\_d_]_`gkmqmnpqwy{~|~~yz|zzyz~z|{}}ywq[`oyzxwtsmmigf`Z\[VXX]`dmqpsuvy~~zyuvstxuwvvusti^Zeot}~}}vrpojfbbed`dabgntsrrxvzwx}y{wwzuurunnnnj]Xaouy|z{xtrqonmkgjikkoohnsruwxz{|{yuroqoqolklojkgYT\dltx{~~~|yvxvslonfjjjljgjoqpsuwtwz}|zsrropomkmmnqlgZX`ipux{}}xwtrrnnmllnooojhjlptsuvxwystljiijghgiijbVPUagoty}~}wuutrlolkjouqomihknonqtx~}yvpolgjkggjjjnkbYW^fkrvz}{wrrqnjgihginnkihfhijmntwzuqnijkfiijg_ZQT]bipvwy~|wsqqolmnnnortqomlkkjjqww}zxxqmhhfcaadea\TUX^ensru{~}~wpnomjlinnlowtrhligegmqzy}{{p`\cnw}ynxz}tzmcmmL[`\ga[czqgc^WVXVVY^^`_[VSZ`lyxy{ľ{uxlJ?SM?CPcW>2"9EQ]bsrfb^]YVOJLUCBVM?ADN[bju{{}zvqzұȴpdmnnkffbaehg`_hpgcb\TMPSZQ7A[N8$"&,5=BOeeXVKIYchmqnvavyĺv_hy||y~{{ymha[UXXVW\a``bbgnopsqidflrwwwttz|xf_q~Ÿysv|wkcaPJY\YW\\\`cd`_b_\QSZTRQOQRTQOSY]_\hrnknqsrsz{z¼Ǿ|e\eiddjs|{|zrh_`_]XX\ZRB:<>@A@EJIJLJE?9679?ILFJQTXRIHKNSUX[agmstnbm}}~|yxvvvuwz|zwsrsqlgca^aacfjf^YYZZ[ZXY\bghcPRaejt}yqr|{zussqqnpuuj`^YXVVUVXY\]]ZJ=KYZ^bdinqtuxz||}zwvuwyxyxrhYPU\binqsx|~zvun~Űytmf[PPV[`cddghd^]dhknpprponljhggfntokiffhfdccefjnuvj`\^``ccfiloqtl[^pxŰ{lgnuz}zwvurqux}}sjc_ccdefhiijj]N[kqx}}wkcgpw|~|zz}vnfa`bb``deegdSL\ejrw{~}|xwx{}zz{xtokc[[dkqvtqt{|y}}yuqprqrsrqsjX`nv~~ywwxvsrsrolh`VSW`fhginrurrx|}{{wvz}}|~|lbp}°||zxuqnjcZZ]``begikkhkprsuz||}}zz|xspprxvpnmlkgikostrlgfbaa_\\_`ab`RK[gmv|±{zzz}wrnigfb_]\^^^YIDS]cmruy}}{yyywvvxyvvvvokjghosvy|}|~~xspmlliecded^OJXbgpuw{~{yxwutssrpoqqmifdfkmrty|yy{yxwtromkkh]T_kpx~~}{{{zyxxuogfjnstuvyxx|~~|xuuvwvttsokgfedcba`][YOFO[biosw~zfbtxmz˸nkjsrd`rkIG[SKUbmwӸY>DcU'0N_gkuaT[GQ{vedZSWljvsfgg~˸dLPVy{u̪ul^>KQ8BFAK`lx{|o\MO[~nVSbz{x[V6Z|rj]S]YKu~uwk_ci}w^ZmdOV|oM21?S_||gyfAOezk_t{kkogz{btbr|zqov̪^NZgftlzqYgjglnbESacai~spqh{fvg9.ALUpv~fdxbWVYpy[hθ¹{xt_enum\LJLDDRhn{qukrs{o]hmVRbeO@eS@jy}xtbef}é~u{ҺkQYa^b[fy{vdDIVX`]_gufUVENpqyiO95EVX_gn~ym^peuĴ~kjkmzyɪ|ynzytwplmtrgfulofX@-;EHXlvze`_TIBPnxl_wixqk`to]}q\`edjqtiuzRQd_]bZRYfuujffdegolghjs|~hexqqopy~r|wlrz[_c`ghlhpu^gigky}wmbS?:HDBIENasr~w|zj_]cbbaTJMIZwuf\`hhyy{}nWSmlQbm\iqaUk~xu|trppzj[fno~u~lj`Zfi_ehTJegTpsP\cSZwzqyzlmfVf}w|nfrrtt]gqntt}vZFS_X[^ajp|zlhaRPfgpvyuppvrkjeQTotrxrmYdwxyz~{k|s]]o|uNEWSRR^psg\W?4CO\flnne[S\sjnfRKZiqvƴ|jXPVab[JJUNKRjiWZYYhu~{~fVO?=_srvqnn}mao~tjzv}ҷ~pvrx~{rfcf`ZO>7DOWZX`lvxij_W\XN\nvxcKPdntưmi|piXL]chjf`_iovpd_km\dsvz}yzqZZlp|m\EUrmu|~tp~hWaciwrkf`jpurhvnklc]bN=KNdnUICXfis{{y{vjckqaaw{{vwcf}P?Z]azrndNJ\_Zaquxx}~xkhjVPVPX`fkqqsyywz}w_dqv|}}|z}}{vq~tzvruxeF>S^ctkblifeR6=M`zmrwo`JNdlzVVmwk̹~bcoa_bbfqtyn]hnnqmllf`ZUBT[VYTRXgn\PZdlnfluhdtw{uº}wob_OAKOFHHNNEO^F&"+.=PdlZOVdfa\OJL:!6\XS[\jo_iİuqljibc\F@QMGLDFbu]PIELLLKMF3,ETJGFIVcn~y|pqwlbP@KVYahkwhcƬînju{}{rgT^russtvqmwqggb`ltkjgQIW\hwxrq{xrvupggeR:FO??FHR_g{{fc\ROF#:Wd^R7:`pQ2>KSm~yqp~|{Ʒ÷Ÿts^cb^]XUY\]ZWbs|jgf\XK0.0(&-4CXK5/076/-'%?`nWTfw|nnnu{y|ezּǫqwerytz{xz{rjVHZ`ertm~wtoinplkkfd`YSG/1OYY_fr~|x~||~||v[Vmwysv{|}ufc}|wzzzyx|{hQYcdfhgks||xyzvqbaorw{VYifuln|~~th`FD\gnghq~o^\cWQVZ]`\YWFA_khrzo±|l~zvbJJUUY`bejmll}va_ZTUXQO>*379P]1 9=BTf]]jnjindOXknprop}o|ɹqlSV\\`bbejkqwyytckqlkmuqa\TR^fgaQ\tyQWnzwa^qóxjgmtg|wjjjwrmn]CGSPW_Zf|qqqkkkhotnokgf^LVy~¶xp}mwxpph`YZ[VT^rkcjligikfZJSrxkgkwqhv{gLXnu{~xxcoyfsztoiiiltvnryvqmh]RD?CFCC<&(;GKMNT__\guk\pü~md`T@29CDKNPSVZ[^brmi]SUVRF88>;8FKA3.BN^{jRc|auiZdlt|ðs~wrkVIX`\`be_]_qzzwvwuokf\]^\istx{yyfd}³qY[g`\ceelt]BS^\flq~}zvtul_\KF]b]`hvt_Xgut^jx{s{~{x|Ž~p}}no{dYgrwxx{|~~xwohkaA6EJJJO]bRU^aitsebdjmns{Ľõpjrnjg`aca`^]]bmuoWjzikocT@AWONYg~tb_YUXWXdnjV[wmXc{xjinn{~x~~lqƻljv{pz~u|}{`]V_LASR_[UTRhpdecwtnm{sesmru~x}uum\Tch`X\T`dypWXQXU`NFXdl^guw~~ywvpzmvfyek~nlTI\eeijm|z{oTj~oqttwlUD[`[hklszxswvsk`NWwqy`^|}nl`\]]N7#1JER_dd^^ZVR_gi|{wz}~tmuyutufEGZZmqqz²|cliavy{~wa`\_ZWM98ALOUYVZ[cn||~yvylWPMHO[_fojkljxxzttukeibcSFP]cbhjlgsƽytznkk^VGD?@D<-%7@=AN[X[cdihhjhim{naUO[VRJNPMMMPQTS]chheknqqw{~¾wg\\glnojmvrmkhfhffffntnc]QJHGFE>@DBJPRRSNMRZ]cjnica[_^`bklrw{úµ|||md]VQJE=:;766431/3333777990**,5<@HMW`gmy~}z{y{yyutpsy|}{skgekov||w||}zqmmhge_YXXWSKC?DLW`forqvwzx||roije\WVSUSTUSRT__bkouvxyzzronoprw|~oeadmszxvsxrpqnopppsvux~|pe^_[VUOOMKLKKPOTS\_dmruvzvuuyvv{~zztpkkvx}qgb`YZSQMHE?@A@>@CAFKONRNQPOIMTUXYckpv~{zvwst~zussnkjkmjfggbccegnrv{yzwrturrqx}{yy||zxtjfb][XVUXZ`mv|~~z}|yvvwsqjkmnow~|vujg_[RLGBA?AEIKKQSUSYYXXY[`einpk`WRNMLOMPTWX]ZX[^dhow|¿ÿ}~xohpsrptx||~||vmeb]YZXVXYWURMPPOSVZ\cffe\[`eebdoy}ywurxzvv|yvsljjklnotzzqxtmonlgkjhefgdd`baWUZdjjmt}{zyzyyzvx|~xuutpe[YYYX`gprvzwrrolljhd_adkqv}{xylknibehca_YQLKKOSW^iogfjejq|uni^a\d~riefddace^Ygzzko|rhie~uqqqzrs|wojig`YpsmoeYaVTOIRSLNUOVZTWWZ[g~qqpva[V_PVeurBD\r|S]qlsٷ~ljcaV9"L`4YzRVqyyl~ɵxrrxtnvd}~}viG.Ml?/H@LWP@EJLR`wtfPBxzlxlPXb\R4DaoxŷھκmfchfLEoh2CmsXXa^cfju{@QR=et_efZctf_]0JTW^XZ]dn{kOZeix|{|̵~kwYk|wȯag|lV:1JY_eggr~ypZ@Mahmklqv|oTYhmz|y}tVb~uUIaqulfguǶonkVE[gm|sj\kx}kjrxr^LQWSL9+3HkaLFJfz|߹{rnmpy|{wzq9!*9I?NaR\{y[R^eT4+ETPPNNTW\[i{yneysc`gų{rvͽtbboqg_Zrsldm{tbG1>YtzoQ35CRURihIDVYcqzpp}uhc_\YVQ`mvlagu}pbuibyso}uskaDF?Lgejr}wa\ushaep|~l]/'HLANNRVYe|}xoWX]][T`mtvjltkZ`ot}rrYboyurxuid~t^kYUrutgoz{}gY\_^MMZjs}ti}zzwdbmirx{|sx{wz~ulyqkbh~}yij~unkmzzvploquvo}sjjl{z~bhrnnsx{r~~}}{syvqk_htrhkibhmlpzzrxpf}k_b{{y}|oXf}|zvsbuaVqrirsub][]OMfjkqhbjqhsqmppzyvlUUZYWS^zjr|us{ewwh}y~~{vp{{{mitqkksrmveXunJ\xWNfde}upaG:BJQ_hfipszzpph]l|vtzqdrnqpv{{}~vv~kpzynhxfI[bT`~trzsn~lulkzvv|yypXQ[`gntojp}perwvkr{x{{xxy~}}op^_Ye_ixqywh_dmtwkxwtl_f{mc|mO^eac\T_o|x|kj{}psr|{~|w~vywy}|mhxXrn]{r}b_x\Q`bcfmt{}{mJ@OT[b`agmy~qsvtedqkiut]jpsw_ouiYp}qt|g^pw{}~|sxvuy|mZAHXXaqy|}~uzkWbdruNGhvw}wbYiv|~n}~hs}wfih{q_vucalt}uk{tag_][lpotwzxzzyznlw}zsm{{sskhfm|lTThlm}zqja\Vi}|qN^ihwx}{tzqSSmqwo`iuwxk{sw{trgyqqlecev}}tpi`_^loT`w_Tiuv}zoYdrvksuk`XLLguhgpuzyw~w{q~xzvwkk{wtkcPESWSSXZgzn[]WSo~sxuqsqgcd_PN_c`^abm~~w|}vdt~zli}|}~suss|]L]ilp~vi|xgznp~|tnkpfUO\fe``gmqx~{fvwvvsx|wvli`\{v|h~|yodxtywxo[fqqwyuxrnyrwvzxli~xxpomUVostqtff{{v{{cXltlw}~~|}viTesWL\XUslMe{qvjhwrimnnq}yytnf\eou|z{{n~m]wlw|vfjs}~{}yvvwsbN89JOVbegotqmlkt~~hRfrv}xwvz}nTdzuv~yx~|~xy}uoy~{of_feCCTQXcaflswq}iWjlgw|hba]`fili_kyy|zz~er{}ltkxxgtz~rvu[R^^ahe`dlojl{z~~sXXealmmphimSC]sz|}~}ypk}uqu}plprtvy}xi`PZV8GXYd}}wp^k{ci|uwvhqomp[Uglsyy|xz{qoi]^dkzxm}´wz~wxyzqX``\b_ZUX^bhzxmuxwqbSUcgk~zrrojV[osvsrrz}{}źnl}yqphcrurvxxy~ukeMHYQOTXgwce|u{\jppvstzuutvq[N]efgfivzuyyxj~xra[{}­xguyeeikfhgdhhipw{xsul]K:Ocd{zsog`\[PDNfr{voxr~k]lru{xvzmpaH\a`gch}uon_xgSgppwyzv}zvu`O^eiqx|}{w}ttqYXmv|xuwj{v_dncceejnuu}w{wvm`W]np|xwpfhnon^Xlux{k|wq}zeYbjsvw~|yspyzmdrztqw{vstwxycn{pz}xwsl]IUhlprw~vyuonyo\tyo|ur~}h\nsxnkuw~yq}vluo\]dcimp|w{}n`Zestw{|~{g^nrjr{rmaUajfelstns}}vsolb\hln~}yoktz|}wttvruo_bjmr~{{}~uqspv|z~zrw|~{{zvjemnpuz{x|~}~{zue]jtoooqy~mhnjluolu}|~xljnooprtz|rtxxqvy}}}{simpqrpms{xtuxvussw}}yrswzzzz|yv|}~{rrrptzz{}|}yrrrqrppqnr{||~~~zsmlssuzww{~|xu|~{upqtx}}}}|yxz{{|}}~~yyzz{xv{{xvsuxwwxz}}~z|{z{|~||z{{{}~~|wutuvvwzz{|}~{{x{|}~yz~y~}~z~||~|}~{}{}|{~}~~}~}~~~}~||~~||~|~{|}~~~|}|~}~~|~~yzy{|~~{z}}|}}~}}~~~{{|}~}|}}}}}}}}|z}}~~}|}|}~~}}~}~|~}z|~}}|{~~~}||{|||~}}~~}}}}{{~~~}}~~}~}}}~||~~~~}}}~~~~~~~~~}}~~|{}~~~~}|~~~~~~~~~}}~}}~~}}}~~~~~}}}~~~~~~~~~}}~~~}}}}||}~~~}|||}}}}~~}||||}~~~~~~~~~}}}~~~~~~}}}~~~~~~}}}~~~~~}}}}}}}}~~~~~~~~~~~~~~}}}}}}~!Q!+wE!!<~~~~~~~~~~~~~}~~}~}~~~~~~~~~~}~||~}|~~~~|~~}~}~~~}}~~}|}}}~~~{|}}~z}}|{}||}}}|{~}~||~||~{{~~{}{{~|~||~|}}~~}{|~|z|{y}|w{{x{|x{~~wz~vx~~{{~|x|}{~}||{||z|}~zz~~z{{zx{|~x~{}}|}{}}}}z{zyy~xz|{yz}z|{~~~|~~~~~}~x}}yvuyzvsx~q{vtsv~uy{s|ywrs}r}{ry|uyuy{v~v{xsz~ys}}{xr}{y~v|{w|y|wy|w}uu{{}u{{z}zz||v}~~}|{wwrp||utst}}{~ppqkk{|w}}vvu~|w~~qpwxuoziz{g}nujkvorhxgRg}hr{sq{{xy~}xuz}|{|yzuuyvre[Zjq^[wg^n|wilvzyupqz{{}|~vx||~{x|xwwz|y~|}|}xxzu{~tstmrnku~|zwys{uzxv|kespo}mcrxvnury{lv}tgnxqjkr~uoos||yvvy|ysnnsrԯ{hcH=lxTknb~vTbiWs}qvwu}yms{yxssxjouiW[gM\>kL8|ױTWl?n{{HQwvtrxady~v{tis{x}zs}|l\Fb[fC ]jT1-vKN.Пrk*RkVTbvujltl}~fitumulQSن`rX'-lc$eƨ[n}8Uz\;lxdk}vhtzwu}yt{rzvjc_m|HYM%8d2/fEUFڥkg2Ser|}]]|y{cVdpw}pWmzNQ55|dM[UowlvĶjxl93yr`nz[mh\O,0Uz[!%`JE{T߽niwH[z{z~Q8,Dm.j:wMyQb_afi|ZeLJ2#)6:'Q*4I\2u:o{9SIRc<ĊMpJhbRd|x\p|bn~dfsg~kTcͰK)oN,h+tL9|v٘1_ȭ6.Vߑ1\Xg`]fvrvynlucqpj{us{|rjjnm¼Z)I޸5/A%s#cSNnX[8~{3c^ad^pBoch}vuxhbr{sqqj`xoiydm\%kY&s4v&[92n>PoArK]gf\PuRiimnbz{e`|thz}t\oXFg~b-8P'Bs hBG_FX-q/JgUt=xNWui|kx\z|\k{cmnkrltgs}n`мS+;7O4M~چ,`Ʋ\YbQa7sEN{d{KsWUs{|erx`fz}ki~}w~}yqlr~ogҮJE[ա%Jª,,W(6_KBb5~Ê7dǹVRxF~Li_bu]xWw`m}lvtg|mp}tos}a~_'7#k4b,|ˌ0VcKt[qFyJL|SYpZZp`ummh[wmsy}}uutoxmdkvcGݨEJ_PEeXaxhypubrlfo~psi^xnys~lswcjnc{pt~j{kf|yu{xngO̘KYeXiTd{woxpyzlg{lwzvjzpWueq{k\n`d}nslqsuybeu]oPtǼS,Eh[uhlmsvmyi_sipjT|sQq\\hzlpw^dscuu{zqffsf|oymqxbvtVtkkvjsw|szuw{u|tzvou}|ryvtnq|um|~cjcssi}tl|qm~huun}zqttx~qoyt~pl~{hm{~y{ply~~wtvep{nv~wuz{ujvxkp|wvfwoWe|vZucksyo]weluuwrpt}w}xhm{or{{~{vrrjorxrgy_}nXglsvi`{|mxx|rhs}ih|~{no{~xywypztjoxluugmj}rxvx~~vvz{yszs}wyzspw{}}|rg{uaur|}xul~_osn}lycwnqyqp|knygwvpzsnxvjoxt{onmVucr|~mqkV~u^ynqt}k|~qz~zy~~vz~vx~}sr{{tp~vn{wr{shnqn~xvzvuny{{~sp~~yuz}rr{xx~xrtjt|~z||jlorzs|ztvpzpmwwowfwzcmyvtlwzs{mvxt}inontrqyxo}}vvxzwtsoiwl|qt|qx{{|wtyx}ytx}~}|xsx}xlswt}us|}xxziq~kvzuyqkrxr~vzyw}~yzxtzzv{|vvu}z{u{vt}yt{|s}}}rorxx~nxxm~p}ynxvw}z|{}w{vqx{}wvm}}ksyu{yxq}~sxw|upmsrrqp|}v}{oswv}x~zxxt|yx~t|}{}|~{x||}~zxws}s|twvwsm}~uy|zyyywswxr}|vo||rz|{|}wy}~~{x~z}xstwzx{t~xwxz|wv~wv}x|s{w}}uz}y|uy~xx{xuz{y~}{~zxz}}{wxtt~tw|y~~~{xz}}{zywtx{wwp}vy{z|x{|z}zz~{{||{zw{}xu{}~|vx~~{{|~~}zvxzy}yz|}~z|}{z~~}zz{yxz~~{z||x{~{~{}{xz}|xvz}|{zyy{z}~zw~}}|~{{{w{}}|{{xz|~|~{~~{z}~~{z}~|{}~||}~}~~y||y{yx|}{{~}{|~}~~~|x{~}|}~~}{z{}~~||z}~~{|~~~~}yz~|z~}}|}}{{}}}~{{}}}|~}||}~}}}{|}||~~~}}zz}~~~~}~~}}~}}~}~~~}|z|~|}|}~||~~~}}||}}}}~{{|~~}~}~}{||~}~{z~~}~}}~}|}~}|~~~~~~~~~~~~||~~~}~~~~~~~~|||~~~~}}~~}~~~~~~~~~~~~~~~~~~~~~LQL+wELL<~~~~~~~~~~~~~~~~~~~~~~~~~~}}~~~}}|~~}}~|}|x||zwyz}~|{||~~~|~tnx~xxvvz|xrtz|}}~{xv~}wyu{~{vsu{|x~{||}|zxvz~~~|~~}~~}}{{{z}|}}z{}~~|wr{_`nnz~~~yvxpiu{dXbmv}wtsqpzww}}vkIGZn~{|xrpy|pornimtrprxNFGdӭx\w}`[bPZұY7FTTvygaJ8RtuXT^dmy|whkƜ? ,E[ʚv{}vwncfpzrTMgpe~߁Zg9%mĻ|yy^]LBـ9Gy|wY@6de˷Z5PfVqwnWWn{67;6³jkM<1Z˦oZa``}jU{qXcP.FSb_"@ećS# >ʻMrxL9d|~yxln_00MąXdG$&rnglJ-P~}v\?^o#6:dŤ|Ju[?1+cy_hH(=qhfquݔC6GE]kuw^\XJ__eaEHs}XcM4>Fazo~÷m@Okc_u|شlMRIGksSY&.MMi\ttװ]8RxxkyhgѓSIX\ludNO}+G`V|rL\`eص_Ln}mj\HTƄRYy~lKABaz8\ugCͰ1l]f|euis`i|x_t|ftyTjZdXdt]|;Bޫ DiZlrl|`YI(fJxlhLj{@LjPzyyAC&UZv[}agSif~usiffkwusV}YTDn{|z'z\գGGO]UWNHVVyfrbjQk|kcZrT&4JOoo/\׽ ^G]TT1s)~ʔZc}atfsdtqq[}hbDM;hғPzt^{ɡ(LS4ȒVjm^qK}_bHW3lrIkzcPNAWwacWEbvgwrorxisYM`ڊ41:n~a]Zx_Ez~f}%|^w|z}~k|p|~rnYby>'CrrwrlV=Lh\z~fhrXgcdmmnvRgfxdy~^xehEY]e\sM32}]gshoJbDe_a{+>\z\ˆqtfeTBN9DvSr? PĽrRuשWh…C|[6az^SR)ڣi>kN`Huf:фYwIl+ -Y1{RUWypWpQ`iDnͺ2oϼZ<\}{tu|tZaz>:ʬEt٠Erwbc[rp}ykwrmxh{}n{yjblzts{vt{w{zih||tnag{abxbrkq|x~urnm}fZy|njiz{quw}qmv}~ltqkxmvyngklf{~xx||yehw~puhdw{lrvmw~qvv{}rw|}|}~xv||nnfkkgzw|z{~w|~qxvo{wy~{v~{s|~y|~x|}~~zvw}}yvw~{wz~|z{~{{~{vx{{wvyyyy}|yz~{~}}~{~|}w}~~|z~|~~~~~~{}{||}~~|wy|}yvy}{z~~zy}|wx}}|~zz}|||}{{}}~|}z}~}~}x~|}|}}~~||{~}~}{~~}||}~~}~~}|}|y~z|~}}~|y}x{|||~~}}~z~|{~~~~~{~yy~{yx{~}|spunjirxx~uw~nfp}}tteYZtxVy{{dgjqixnj}pgchmvwgVeş\gk{{d\rs^~wkysljiafol_R͹ZZ[|Ȥgodfn[yVw}^azhP_vX=nm@svŵwsc[kRrPpdXHV_0SVWnϞofbVuxSh{p_K^HliLQhч oՕltigu¼a]b`yWl{tO~`L_lQNhacoihMmc`c;vsi^|b8uVGj˅TʓPw`n`kUeQv}u{Tf_RZJpg\xgrv]uoqjxhfoRxss_VyoTag~{ogbx{ypcus}tq{r|~~{z~}||wzz~{yyxq~}~zzzvz|tv{uz{zv}~u|oks|xpp|xmx}v|{|~|{~zx}vystxn~|qzrs{~uz|x|{{~{yz~{sxwuytwyxs|y||}}~|t~zry~yx{~|~|~y{v}~z~}{{|{{|{~~~~|}|}}~}}~|{|~~~~|}}}~~~{~}~}}~|}~~~~{|~|{}}y|}|}z{{zz}}~~{}}|~||}}}~}~{}}}~|~}~~|{~~~~~~~}~~}~~|~~}~~~|~~~~~~|{{{{z~|}~||}~~}~~tsv}|}yy}w~|uz}{}z{}xz}{~xus|w}{|zx{~|uxx~yy~yxy}{~x~~}{|zutv{rnilksjo{~igv{xslslv{ojo|upqinz{g[\nkkd|KctGnoQnyiJzzursgWnbZ|Z]}sJ_ܒdgkVBCvNxs`to_ajt|phqAtslgzaK~KsYj˜JɟNFAm=duqOplzBouu_CƋgz`pn^nnHCD|"qWKmGŁJ`_laUQMYY}RS\]֙VpDَOySM}Ze-zsXyYl~e^wrask_|obx~NKcbi)'}S|sC`xXtp|d~{r|gkpaiuvtupUtH_q2Tpgp9]-ybgdnOn^cguvqvwxp~lajyn|ZOizal6v}Oxjtjkybs~{x{`ljqwkfp`]|udtptragu}rXoMxjci|Yhouyu~fnvziesytkn~zpyhhghxsj^o_xiu^i{eyxxr{l{rwpn}{ngp}~zz{}wnxlip|roktwr{}bpwYsyeu~w||qhstgqnwmqxk~vypovpuxut{lvwlzs{}y}}viisyli{rlo|ymr{z{wr~v~s{uuxsxw{}}zrjn{yowwqgYsk]~yynlpmnjjjmt|wls~qfyulomdjwmh|~yrwzxutmlilty}zejyrnuxm]l{gZ}v}{}v}l|pfzkfv{rwt^by|gfmqihxz~|{s_urmoz~}jfmhbq|sdbaewz~{}yrjehonv}sicjojhx~ryX_pxyvxdj~qWi}tw_UfgZasn]pdriy|pnY{gT{fYv~ueGbqPBbstynwtof]n|cTvdr~jnmYP[]Wa}fbdlŰp{]coIQbafykooJL[enJ_-~ʫ{~Td~*3uukvFfuH-zjE@EP- Fɕ}U|GrUt~Wpx@nX7v&8@gTÓ6Reh{E>*>V{k=z1f9oSRi[-PW M"r\,3xext$ZH_3bbYѓZ QbhLaa^ZzO}єS>ҨIIRl[w^gV-|klbmv8a}=эPIiCi%|)qm7VWCf_^S[l.cЩZQBv y9{c_PX{llZ`[=zƺ^:HNokXRrWdLU~m4fW=أ:kMfne~Km`f_gyCTwTQq1DS|toz^`{[j}r5Aju{μ+v,Oپeb_KrCIy3\F^/dȳnvuY~LMPAn?mhaظd5xQHv8\G 7m-,òoBx1FW (5M^f-0UŋQ~h{ȫ,:Yeܚ31@K_Ijnp\̇hJ0jX{CS>IK?bnra iEGq٪44PPka}}*}Սe~Ł*Rt|pxOe]`~7r؝YŁ=}XspvO; `͇.W]Zb3Y}8J o»T0ppcHq9vz/BP,q]-}ax_GNSA`$]X-7hdqZ]zStNjU?So qf^joCUo^Q~GT[GXq,v{nUDCR~w|{>BAZmШ?+䩍eMV>PkehV56KZ޷BD^>uZnbCZ­MhwhYS^D{XkÃr^nU{dbzf7Adbkhz[zdTzNsT{c4:^el}ǎKẌ́eI|h_{vYƯ{uW"?onO͑<r`JxevnkfƬn]#2`{jUpȩnfZ\wrh[¶yeE3[rCחnuXMhzriƪqX-7\١gbtД\A@xp}pěyX&lrȣnbHᯫ`$B]`{K?(9IåW^p9Q:gnšlwQ@QY\g}srNdXbZtkV6G9gmäxvL[@e\[dI>OKnksthmQR^mlYL(CC{nzwj[`Mc]ͤ~]O$4F]mǟb{ee:[WcZ8$3Jw}ǬncllIHYgaP/,,crjnif=RRwpY<,*>h}üoc~MAH[pƼoI(#%Ngңs\o{\C?Nn˿yQ-"';\Ҿ^VxxP?9YjƺvB!%Deκ[YprR>;Ygɻk6"$B[ںuZZga_F7UTƤM+:Hؒa`^Jo\I>KHЭH0BHl`K>qϦlWJ3GyֶX3 AI뜅b53jئpX%BhؾoH:K]p9+Ulsֱi3FPlƩZ""GKʸ?(FNYŶIOCRhu=1K]ӥc3;5CsãnhG>Rg.EkԮnMA2:kwSGWjyvO5:DZ’n`C9Uvke]`jdTDROuŨz}hIOnzwibnoXUG]^ľuWSn}{|nfwz|vi\HVej}vd^g}{yvts{l`_^hn}~|uji}~x}{y{rqphqv}zpqxyz|w|~zxww|xtyxuy}|}|z|wyxvw|}{|xw|wx~yw{}}~z|{vx{{{~|z{|~~{{}{|{yttz}|}~~wxuwx}~~{|}~zxyz{}ywvxz~|{{||~ywwvx|~}z}~}|z{zz}zxyxy~~{{~~{yy{yx}|~|}|~|||}{|{yz{{{~~~{|{~|{~z{xyy|~}~}|}||~|{}}{}{~~~~|{z}{z|zy{~~}~|}~|~~{z{yzy{}~}}|||{|~}~~z{y|z}~|{}}|~~~||{{zz}|}}}z}|~~}}||{{x}~~}{}}zwx{}}z~}z}~{xyxy||~y{|||{|{xrtrt{x~usqmu|{uqtij{|wr`aogz{ux|imkjfa_lq}{wa]jgl~zxf[MLPR[϶ujdVSfl~~wwjXJLIOlɺmdJ?V[g|}{rd_NEHJjӹaZN8FYl}twgVEECDQͶbOK>/L\{vlkUB>ABKr|DA<-3WkahXF2@GN_ҤT;HA/Kf}gR]>43OQaú죝s1FI88enm=NA32Q_m~¸񴊙C=PG-Ph}ǀU">86Abw̽䤈BCN@'Ob|ŭҒuyO$A=MmܲI;U8!?brిИTkHPF\{ӻ}R.P4BOvΫYHY3;YdqӉx&=D$>Ofʡ@8O2Giv{x?C8+MS뭑!,EPÉENR(HnxkK@CT̆o\Cb4;p{mEIDT~^Y:aE=z~fLQG\ΎYit%Z]7~v~eARPXŰjDvA7_[GxcsB6QRPDzrFU[/N]UĤ~jV^.QRPڼU/_> IS[dԸJR~! OSSfK&P=MT_aěԙPRV ,RRQ5F*0QR\ʢoKY(KOQZ̵{0NCRUZǬ|иVOD/QPO񶴲+DA-NTsllʧh]MOPNrD<:OPrqkWjMOPb8BAOjnR]K6OOPԵcMFMQ؜bwZNJOOr"LNOYÍ}fM(BNOWŲWFNNOٞxhRZJMN^𶲰7 KMMNΌmH]1;NML[JLMMѠnIaI/LMKfDLNK֕ǏZ9NS+OPMeEMNL|k&7;>POi벴eZMc@L`up /5JO\ճud;#_k4WMaqz׫d;'*PQwĶ0n\$OIYsrϽt8>*SSɳy&wU2)gğ:Np푳Y;GUxᴠ*/Ub:j0bÐWTRR`귳NXaBCVGKuOTTS㻵z6,[c>rf?iܕ)8TRTqĴ4~a!56D9H}TRTW۹\i;F3uL*eKRT_Ů2@ĽK9R.jPTTWĻPJZjFlq8JfLTTSs }%TތPTPF^IRTVª%8=˜dVkL`ESTTϲvABeTg[z HSTXʶklrJRo\\_zNQSbͷW6qWjpe|dER^Ȩq]@`u2fgfun RVqkZCrOMŠmRn$T(N~pSYѽσq3 :bT|9BS<6N^ԋw;UqǪӵ{cGUpe<;LFQlΗ}C S^ͼF $Swʧ_=rlH*^Szqd0gFq Bp?\sUXtcw$v B{<$jv|~}mmZ}#e4w!h[i ffٴ*oNDn\)gڹup )eܸ IטBonkBoom2Boom1 ExplosionFunk Game OverPause Photon Shot Nova BoomShip Exlposion Comet Appears Got CometDamaged Appears Enemy Appears Enemy FireFreeze Got CanisterVortex Appears Mine AppearsMultiplier AppearsMissed Multiplier Got LuckyIdiotJetsMultiplier ShotNew Life No Shield Nova Appears Saved Damaged Shield OnSteel Prize Appears Level RiffHot DamnAsleep at the WheelMaelstrom-3.0.7/icon.xpm000644 000765 000024 00000014434 07015305720 015427 0ustar00valvestaff000000 000000 /* XPM */ static char *Maelstrom_icon[] = { /* width height num_colors chars_per_pixel */ " 48 48 92 2", /* colors */ ".. c #dedede", ".# c #d6d6d6", ".a c #cecece", ".b c #c6c6c6", ".c c #bdbdbd", ".d c #b5b5b5", ".e c #adadad", ".f c #a5a5a5", ".g c #9c9c9c", ".h c #949494", ".i c #8c8c8c", ".j c #848484", ".k c #7b7b7b", ".l c #737373", ".m c #6b6b6b", ".n c #636363", ".o c #5a5a5a", ".p c #525252", ".q c #4a4a4a", ".r c #424242", ".s c #393939", ".t c #313131", ".u c #292929", ".v c #212121", ".w c #181818", ".x c #101010", ".y c #080808", ".z c #ada5a5", ".A c #948c8c", ".B c #8c8484", ".C c #7b7373", ".D c #847b7b", ".E c #736b6b", ".F c #6b6363", ".G c #5a5252", ".H c #524a4a", ".I c #4a4242", ".J c #423939", ".K c #393131", ".L c #312929", ".M c #292121", ".N c #211818", ".O c #181010", ".P c #100808", ".Q c #080000", ".R c #737b7b", ".S c #7b8484", ".T c #6b7373", ".U c #636b6b", ".V c #525a5a", ".W c #5a6363", ".X c #4a5252", ".Y c #424a4a", ".Z c #738484", ".0 c #6b7b7b", ".1 c #394242", ".2 c #313939", ".3 c #293131", ".4 c #526363", ".5 c #738c8c", ".6 c #212929", ".7 c #5a7373", ".8 c #394a4a", ".9 c #638484", "#. c #4a6363", "## c #314242", "#a c #5a7b7b", "#b c #425a5a", "#c c #182121", "#d c #293939", "#e c #4a6b6b", "#f c #395252", "#g c #426363", "#h c #101818", "#i c #314a4a", "#j c #294242", "#k c #426b6b", "#l c #315252", "#m c #396363", "#n c #427373", "#o c #315a5a", "#p c #396b6b", "#q c #295252", "#r c #214242", "#s c #316363", "#t c #295a5a", "#u c #183939", "#v c #215252", "#w c #081818", "#x c #082929", "#y c #000808", "#z c #000000", /* pixels */ "#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z", "#z.u.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.u#z", "#z.m...c.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.c...m#z", "#z.m.c.t.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.t.c.m#z", "#z.l.d.y#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z.y.d.l#z", "#z.m.d.w#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z.x.y#z#z#z#z#z#z.y#z#z#z#z#z#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z.x.w.v.x.y.y.y.x.u.s.v.y#z#z#z#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z.x.v.v.w.w.w.t.r.u.w.w.t.r.r.u.v.w#z#z#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z#z#z#z#z.y.y.y.w.s.p.X.2.v.v.r.o.p.t.v.r.q.s.v.s.r.x#z#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z.y.y.P.N.t.2.r.m.F.X#m#f.r.r.r.q.G.s.v.r.q.s.w.s.p.r.v#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z.w.t.u#d#l.X.p.o.m.n.q#f##.t.u.s.X#.#j.v.s.r.s.t.r.q.q.s.u.u.w#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z.x.t.q.r#l#s.p.p.p.p.q.r.H.K.x.y.L.V#p#r.v.J.q.p.o.p.r.r.r.r.o.s.y#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z.t.q.r.u#c.6.Y.K.u.p.q.I.l.q.x.y.u.p.X.3.v.r.m.j.S.F.H.r.u.u.p.s#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z.w.r.p.r.t.u.L.t.6.v.K.8#g.n.n.r.x.x.u.M.N.u.n.k.l.G#b#g.X.s.t.q.r.v#z#z.w.d.m#z", "#z.m.d.w#z#z#z.x.u.s.r.r.r.q.r.v.w.w.O#r#s.2.F.k.v#z.y.y.x.u.m.m.r.w#u#p.V.H.r.s.q.r.y#z.w.d.m#z", "#z.m.d.w#z#z.y.x.v.v.s.q.r.q.r.w#z#z.y#c.6.v.o.k.u.y.x.w.w.u.q.p.J.x.3.W.V.s.v.v.s.r.y#z.w.d.m#z", "#z.m.d.w#z#z.v.s.s.w.v.t.r.s.v.y.x.v.x.y.Q#z.v.t.v.y#z.w.x.y.v.t.v#z.x.r.n.p.u.w.v.u#z#z.w.d.m#z", "#z.m.d.w#z.y.s.o.p.t.w.u.r.u#z.x.t.r.w#z#z.y#z#z.v#h#y.v.w.y.v.u.v.y.y.t.l.m.t.x#h#c.y#z.w.d.m#z", "#z.m.d.w#z#z.v.Y.o.p.r.r.q.w#z.s.t.x.y.N.J.r.s.t.r#l#v.1.o.n.q.o.m.q.s.p.i.p#z#z#x#o.Y.P.x.d.m#z", "#z.m.d.w#z#z.y.v.Y#..4.I.L.x.x.u.x#z.M#i#g.T.m.n.j.Z.9.j.A.i.l.k.j.l.l.k.l.u.y.t.7.9.1.y.x.d.m#z", "#z.m.d.w#z#z#z.Q#c#q#f.K.x.w.v.y.y.u.G#.#p.T.C.j.e.f.A.e.f.j.l.m.l.l.j.k.q.u.t.m.A.E.w#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#h.w.w.w.v.w.y.r.k.l.W.X.p.n.j.e.f.i.h.i.l.p.r.q.q.o.o.p.q.q.p.I.u.y#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z.x.v.x.w.p.h.d.g.E.q.H.p.n.j.k.n.n.n.o.r.q.q.t.t.q.m.k.o.v.x#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z.x.w.v.q.f.a.c.c.j.p.V.q.r.q.r.s.s.s.s.s.q.q.w.v.p.j.h.m.y#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z.x.y.o.d.c.c.c.c.z.S#k#b.H.u.v.u.u.u.v.x.w.w#z.x.p.j.g.l.v#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z.y.y#z.y.r.g.#.b.c.b.a.h.X#j#f.q.w.y.y.y.y.w.v.r.p.r.u.s.C.h.j.n.u#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z.w.u.w#z.x.k.e.c.c.c.d.f.p.y.O.t.s.x#z#z#z.x.s.o.k.h.j.r.v.W.j.B.j.r#z#z#z.w.d.m#z", "#z.m.d.w#z#z.x.s.q.w.w.r.l.i.g.d.d.i.q.x#z.y.w.x.y.y.w.u.o.j.j.i.k.o.L.6#t#a.C.m.u#z#z#z.w.d.m#z", "#z.m.d.w#z#z.w.r.o.p.n.m.q.p.m.m.o.s.y#z#z.y.y#z.w.u.r.o.j.h.k.m.p.t.x#c#b.5.k.q.x#z#z#z.w.d.m#z", "#z.m.d.w#z#z.w.s.n.i.g.k.u.v.t.w.y#z#z#z#z.y.x.v.q.o.n.k.l.n.q.r.t.x#z.N.m.h.l.u#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z.w.p.j.j.i.k.q.u.x#z#z.x.x#z#z#z.t.l.k.j.j.i.q.w.v.u.v#z#z.u.l.l.r.y#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z.y.t.q.s.s.r.t.x#z#z#z#z.x.y.x.t.m.h.i.h.j.o.v#z.x.x.y#z#w#i.U.I.x#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z.y.v.u.x#z.y.y#z.y.x.s.k.h.i.i.j.o.v.x.x.x.x.w.x#j#n.W.M#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z.x.t.o.l.r#z#z.x.w.y.v.o.g.f.i.h.o.v.v.w.w.x.t.q.t.W.j.n.v#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z.w.r.o.p.r.v#z.Q.N.y.s.j.f.f.i.l.s.x.w.u.s.q.o.m.n.D.B.o.v#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z.w.t.s.v.t.r.x#h.6.u.o.i.k.j.l.r.u.v.v.u.p.l.j.k.k.l.n.q.w#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z.x.u.s.r.q.F#g#s.R.l.o.p.s.u.v.t.r.v.u.q.m.j.j.m.s.v.u.x#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z.y.u.r.r.p.B.0#e.R.F.r.s.w.y.x.u.s.v.u.p.i.g.k.r.r.q.v#z#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z.y.v.s.s.r.n.n.q.q.p.o.o.t.y.y.x.w.w.s.m.e.g.o.v.q.m.w#z#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z.y.w.u.v.w.w.v.L.r.o.j.f.n.x.x#z#z.x.p.h.g.n.v.v.u.u.y#z#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z.y.y.y#z#z#z.x.u.q.k.e.k.u.v.y.y.w.p.k.n.u#z.x.y#z#z#z#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z#z#z#z#z#z#z#z.x.t.o.k.n.t.v.x.x.w.t.r.w#z#z#z#z#z#z#z#z#z#z#z#z#z.w.d.m#z", "#z.m.d.w#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z.u.p.o.u.y#z#z#z#z.y.y#z#z#z#z#z#z#z#z#z#z#z#z#z#z.w.d.m#z", "#z.l.d.y#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z.x.y#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z.y.d.l#z", "#z.m.c.t.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.x.x.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.w.t.c.m#z", "#z.m...c.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.d.c...m#z", "#z.u.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.m.u#z", "#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z#z" }; Maelstrom-3.0.7/icon.bmp000644 000765 000024 00000005254 07015302506 015400 0ustar00valvestaff000000 000000 BM (00  ]]{{{ssskkkcccZZZRRRJJJBBB999111)))!!!ss{{{kkscckRRZJJRBBJ99B119))1!!)!{{s{sskkkcZZRccZRRJJJBs{{kBB999111)ccRs))!ssZJJ9cccJBB1{{ZZZB!!99)kkJRR9ccBJJ1BB)kkBRR1cc9ssBZZ1kk9RR)BB!cc1ZZ)99RR!))\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\\\\\\\\\\   \\\\\\\\\\\\\\\\\\( \\ \\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\7G." \\\\\\\\\\\\\\\"IU. \\\\\\\\\\\\\J=  \\\\\\\\\\\\\\-*   \\\\\\\\\\\\\\\  3 \\\\\\\\\\\\\\\\ LP3)\\\\\\\\\\\\\\ \\YK1%\\\\\\\\\ \\\\\ \\\\\\\\\\ \\\\ \* \\\\\\\\\\\ ED< \\\\\\\  \ (=VC\\\\\\\\\ +\\\ 3  \\\\\\\\\\  4LH \\\\\\\\\\\\/MD$\ \\\\\\\\\\\\\ 2 \\\\\\\\\\\\\  !$  \\\\\\\\\\J 34  %\\\\\\-ESH'#AR0   !\\\\\5A;%(\)KI0 6@    >@8\\\\5\*&NX8 \\ZQ5,\\\\\\\\J[JE\\\\\-\\\\\\\\\\\E= &:32\\\\\\+TU9" \WR2$\\\\\\\(='?I)* #DI4\\\\\\\\\E=5'%4: /"$\\\\\\\\\\NU$'(2RT&\\\\\\\\\\FN4HB4AL\\\\\\\\\\\\,*9"4OH#\\\\\\\\\\\\\\\\\\\49\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\Maelstrom-3.0.7/VisualC.zip000744 000765 000024 00003564723 14007030332 016053 0ustar00valvestaff000000 000000 PKJDRVisualC/external/PK2@DR.ɺVisualC/external/COPYING.txtmn0 uҠCa] ldHGI#,hݜ6>Ng:oY枦0xsn_n7h`STehgԗ0|OL'>_`eZĘ3:F:Y-{OeD0U9C0bp$K/*L41쳸)5#P/,ۦm~"G. %/}x7U(m|:i)FdM3I,k4l$.ojbmzF r~zA*/Ȥޮ6{x*%Ě, M2*vԘazyW1x%f63\lBUH=Wm`1 QW**{G+,rMI(ʥz{N&M 8bL- Ywt|`), ̈jm+_R9;]fh#DBlp=I="PKF@DRVisualC/external/include/PK2@DRFO3%VisualC/external/include/begin_code.hXaoF_1F lq^+NԜQI6$]Ҫ{\R$9er͛73!MH*#|"c%h,vUQuNݠG~oWW4ؤJWa]<_Z8kkeeF>gF?XV eߞVk]$?3#%m )G D7)LsKגDci!i-%e ƌF0ʂ--޸ gwlJyA9 Sɟl`0+L<Jg7i"%"Dt{%pK `sEr-lR'2>dÁȁ~>!>CTz%m C˜UCF;tQ~D(L\:%<壛9ҧDEQRMdpVq:*S@~ :Z@)d q܇U,,,.L$YN-DBKmy"ZyiTl+ Ꟗg>+D7rE) \"~N;\wD/*|!0t,k27o+ĐJZjbCa'CmOw+ RGaWFZ?1^^ӧO=`9|OYs-1LQ`pq/>M2U&L-*{uL a[LZvΜXSƞpt7Ѱs_R7 L0I="h$|]tQUz>k$)#B ڮ( EFv1jc2Τ Պa0q xKC.E=~t繳t#CnMSXGx~7 bf* {_o_pvvb!Tw,u$)ٵ>86-+p3%_?/?VIj(3ݣ￧V @#>c.T] lEozo>pp5XTڔ7rq0o~k5;RnAG;x`{4zbCٴNDq_V1( pWGX\uڷ9 bo3?dCnPs4HD"N6 =86|3pwΊK{T5/Gf=(bcƒ<% jh-E̫m "۵ִP+LrG,'zK")0,?%­>F j҅-A~p+m2f7y~Ux0:gM<.?\~USbco(Vn^x\<&#=+l_bx@xp mZa 92hXOv®Uwu~ldlO'K9ko騝SBrMc t 4r/~/ۆpe}p{8x(mfW#ej\uQnW_ǽWr; F'S\%Ei2Kns5u9`<ꭵ‰d+v< ]|2fҰu5%l 2=cts^׬D{A9(<~(5Jc؏2= 7}(wܣ _u_MA,!V9@wy9 ^?&"+]H#=YGPK2@DR%VisualC/external/include/close_code.hmTn6W ClÑ-$Ma+V)RJl$s8o{ח+{7n-[g胙XPZq3/˗/P{}SL$2-ygD1̎IjgIL Fi2\ yA9GK{i<1p\h}::ɌP֚ tg\, eqےaZP'~TcCڡ}<(>lCC[AT yX ߩ /j<̟hXZoZfr-$ffx:Gz;f$p1[ڬɴ!<ݠ[E]qdc[EXVgt5pJ7)mp릡j,nXeڳZ,GH ~.m?ĤyN-[ a`/ q BRp=ju}zIW#f6ZnzJVªS%]$As*SغULUv.Wf] 5csc M#+D1 3m3B$? m.2Gk[G`aI∠)"],Xބvf6p[^ D[l(Q#);Zs)ٖ-H ؐ//XTsKx) :/' ˗>;ؘɜ朽J"{ƪ6Oi3F09dK]8Ƴk6 "Sve,L,DO)xcTD)ɧeŒyia-L0Kf_ Jk9&@ z[ɵYΌt IY!vT 8XgpCfdv3^>† }E.w|ɬ%K KGQFPX HqI!/.vPéuhuZ` "ȑG^*S* ` h.i 8Z% R)rȈ q܅I)а0` a(rp-S%KETyi:r;R<p(yjHrt#RMmKun9:@0y&Qӳn^t7z>1ʉ*L"bj) c9b12X$t7y#Za\@t*ChGJSMX {D *& &m9ז։6穈t :O0 EݶW -LA 9bpK@;ː[ ʗ:[G%4dLہ8PF\A 6S޾tՏX8VlVdyo#Y3;[&),Sj>u Xqأ#xFvVPu12h*@`(Rh/l4[b49X1 p5] JQ|naOWD>.O`y%{g5Uto  BӴ ~ %odt>fOW}n貭{ ~'1ͮf5؍xqx1mx2}kc5} {vL?7ppy1<;C+ݓ^͖AkSC&n"lxx1-{qyտ W>+1b娣TҕცE3M3}_]c{s|vn5U}|kۏ`lڐ䤱Rq}G߷O"kDŕmڪ% V%U໳l|5%ن>@ڵ!F6(jl6U<#f"]@v]0B:@=޾gmAK+HzReElIbum1+<[TALp]Ѹ㹢\$qAV v~Wp!ٸ,EJp˸Q䅖)xѕkmowѨ-8RV%Fd*2;ơ׮5}۟hMpEHzwA5,푴2 3ݝq.g:HDIqGzd¨d ,j#L22S,֡ }ihs+:&E.d&͔1"1UXaEOXĉP*α.D>UB 1RbPDZ Df(gr Lp+Y2㕅Q"k}6F'1A$5L<8ϒ\1<*'hq3]aE0v)n)|re8lw'GuvvioOxaR2NQP☕ALrM$Lo* 7䒡 (S4\GȰ1!L2gqRJӆ].T^#c 5,_C$.<)#N\yY ;qoG*R!9bְx߮* hH{-sȅ^Ӝ4sh\x? 7 impHƓrv\?ko'4-ڷdWpI;D ?ZQySTRT;ퟞWOe6E[gr1'ٕ$L쟽&*G^3O JX@@~$#l|wwwYe%1_Oޑ-n'A[)mf,>lvћjnX{s'( [ImT \ퟶ]&0d(樭v m^j7,()|J'/88ϏNrמ/>y4hOQ@4pHy $D,dW jLxyܿr2h8P,mW-S^j>hpHrAAJFQ[7m+H@)<~Ѧ23[90Ly\ e6BŔjîfCh.FS0."3űe( /d4Qʐ-:3[ лP1P(tTFn6ˊm !(YLʜԍxr98@v6SL\ C; %JtF06(w dL];]6B3GiS0SY 1@Z)ph7@dQ-?N8}'hmE@{&xq| f 0PyNSoJׇI(&"l+w$RsDWG:Ud.)vm*jĆmSA¸1Eqx#NCcB,g("8 ou}d#-ILlmmN1!pSar+<Ճ*[uQPap~z_U51LQa|~秮?N=97wf% %,3Q*D213e" [uʔ5{ȬBR~sA* %f_53j'k'>}7&-iBrVEhVt ڛzܤ6xOvAS9HhzV 1XHL<, B?q$۶T}LKv[J)&7p(Ǿ\|Aj$glj9ߘ0=~X[N.[nuO{+l$fھبV.an%hnOۋMy]wNXP{g&6 Uɭn?Yr}^N<.&§_tk(KDyg ZEqӸbMn5r=ޭn}BOc뇙ġ?×!S7)& 7/NS#\Xb˧(ZkX1 c@B7br7'tUXQ`nMs{N*|_ nHiMuyl4rIߏO.`Keu14XBذROSa;#r˾g<'1t Dwk&+`JC]j_'`:{aHE >r[ wwcYDm㓩s$_T-ruk9j"B=6X/Dxm)eh gvd$x ^yUeoqtw {=ިVZg6 Dԗ(cϮj.3zrI\Y@ ItjsJ_eTi8N2]9_Ҵ>KjM**pՀ"5o^ <9JE=1t| -i9H+1`x`{|j[IV4dՊV\RK8paΨ>9\f}WR Ft*ib$eqhN/&*:`jlwmO|dj޿G3u<"++Qͺug!nvWݐ6y֙*~fsg/] lYt ^Bx&qtz06iUClr3t/#bƄrsf#uLo vuPjIF֐(򲸞6(Sy bz2B+\Gb{R!\d͌*ԝ-HoLxDe4\,4[^KsV~^%Fo魼2}Z?ld0sOݤH=9PK2@DRώ W*%VisualC/external/include/SDL_atomic.hZ{w۶{sH-n&ΒSUv2Int 8մ}{AR3v9qBqq/#D/P(/P~ Ź)Nf&SQ˗Z'# IGV߆aCћlVX=L(I+_< 4H:KgB%FY+P|Vsf !bk&*N/ E:VBf`(1V/@@@/#9R ,C#ޙY%$2Q`mcyDT@+z $ڪ} b/|:QPy2tp*ljAi) Rl_l/HvCzJ6l1pAD+T()x@QxEd3/L<95:UJ!YᏃ\$)y)/wiQDRB[IHRDQΠ~M 3)1Qj >iq84X&p捝\*LrG.rq=+3 pz$gӍ0HirY/Ir\K%Nsƺ'~Py_: 4We~5򉳋196 O澧c/3dj6$s4`QRy$& Ȕ >8xsCPOg.0:q M% [VNdy JFA]20,Nl U]+jKn 3zZj8\7|{]5\>Q0 tfɤA"|#G@ O 'KSEOhl+oB;2͛`T3bqY?nIphMd o5zz֗G/&'ٗG/&wsBVԒFZP8q:z.ۈUH5r2qd+H O46G_ac}x93g&`vbMyPsbq⇱" ( 3oo(|tV=& 8GW=mygV\{˝2"'29PWxaը+c!|'|a*ssy= wa((sTb&l 74睒LejO4R%; >:1ebJ|vE-&2T6]igUF!ƌu攔XCoy{һ~NN;罫ohC}~^ ob@Wr_*k7.}؎oש/) g<ل7#gXk D L!+6;|] JnQ'v'r*8Zᯝ_W~zڭx#Z-\Gs.?9*j4 F\]kuK .śעu d$II9tEF̱!!儢^I1:F>hyKmwW]( }yAGt ]>O, Hfwk׽8FH`r?"D(]?|Xp΢F ^-h^έm9XL8ص rkZ56(G-eQL-mqeO<^r%Sm: vޥ,gqH8r9 V|G[;X+Fh 4*d BJE;6HPlu*}MQG1BLr'/b]1N s]KSI0^g+(9Ae'V!mBy ,P\b89~ZRiKx"kxHN' F2o1Wf$0rR:ʕmT,eUDHi|*ogIrUKi\(Zp/ndb[tyFYi;,jDDOI<@bZ67N,8M0sB> RP;xO)jh^6e&b%3g7?}y}vB㮺8 cjh)X؂7HEְ@~d(fOHLlF'љ4ZQy(ܡS('<b[,QaqEEAB`QkLNS L4--BnPyZVlk=ς$5J#>@ն^GufIr\e7䏨^1~sXf)Gذ%U j^7[N̝^ln۶yEۯ#!V}B|/^f)e{ O\WMcWb~tDj޺ٰ˗C-¶=7h#S5)߀W&Z$JfyH┻j,RfvijEܙC_ߘ&]qҭᢤ;jP8`{g`MUbvC#zUZHe4sX1}_;W.Kҳ6koZMl /v{*Jzb'jx32b$59g^˲Mb`*Ny*8ɫG3u4~2s*g+>B@4VZaMߛggwV0BrfI^^źg :Q0n D}*vlD!uDJ LpiaBcBm uffDs_]EF鹷nowoN(߶s0oֻUJoNcn~0o_Mxj<;x1祄$8&}}T)qU*ǔ6PK2@DRT2(̋$VisualC/external/include/SDL_audio.h 6$ay (٣Rl /s)dB2_]Z|XF2ӏY+BQ}b5{aHD% G n>VjRY!4(9qKܧwa@A[#NL}(@:!2V%TbL Ғx'62e.5cY.^(~3+`ϓYgj T"%j) ;:~|tX4|v6KP0~zd^@\%j*Zv,mLB,AoICXJʭ7\AoMʲ4kxIo@Lpyvn5>/aE%GbY$d$hGkOAb̘σm\hzY%7o'E!ۀ,c=+0I 4{4&XDFGh9 ,MCT^`n_F^Mei}!}ђ?kJjZCܸV,^}K@8ʛ>{ A@o <oއ<bD N` }!?gTDO{?J;g, TN,1 ~(TCDfw[ y%9MM]^zȍz H;gÛɛpl_cCzp~>lx=~we?xzpl2,ŵgחgM VA Lf7OA6x5yY0M xE3C /j0tQPS F@}@;=/iL-eƦWb1*UÇݜZ}N([S;/ ϼgmJ"vD GON$|fi=i|5Z?N% xLZkdGzw=~lV=Nƽ+WY4k\䤺Iڣ4fYâ}5`F8y=$!V"XduČe6(N*AoAtc8u~vrn>Uϟmo^ =px:7mOn /ʮrmwU ({(z NJ~PA(ȭ!Y"Q*j;e.d+36A0#]S\5QBSr><j" l7ө;Z#>42ۢEk6t9,Ѿ0ց/}%QEL"`s47굪B\-v0j.,5KT\aRmgހz+2oPҤmZ-{~\|@eij*^PH[z>jZMK#`+==l*f޾3#хT(OI9eSTw:}_jTzGBj}_R$K1~'-CYfKlvE ;:ݢRA Q7 /KXPjvU\heYyl*#; 0QFJfhAnn@7Lrb<<ͱYjxF<[b?! [2QOfREY`#Y0$}U7zT߯_~ڿGn+낻K{1^_ohqcIXTQٓmHQhp<,:8ډN4,1hG&9.Hhf ڽdN_ s~>^ K 7!аNVLVqf⸋YK]du'(-4fs`=)6ڪ [0N&\q\aL05Cȕ WJ'߹Kl2 fk]bj-@Y@I,! 2eB]~ Ӯ2D9#6ѕ vf-%a|I8ЋC1Sxʍ,^_ތs篫)qdy*Y%Eqm/ W9)&zAP(^Ah2x;-$Q0};cA7?EɑulLY!\ GSdny]vzGr42oP`nSÃB6jQ꼺Zf+@ioXGIT޷8.R4d`8/5*edrdM]AҏU8s9ᾄt|#Yn˰خZy=p( {2 Am6 &`8<ozC}ı!XخAelaP?nf)$`}~2W3 C TpENR(,Y &CڞbLzb4Q7g 5l<ή#bM*䞘Di!ѩjjv x[ݫACŜoZk b%bk*bȂBScWMtax%E>Gx- ,\'|zSe4]Dj7BF>6Fj[m{a6+ _ .4HΑ y/1ޗSfIͩ*XtI 1qMWXTk.fW9C䱓PP''o?Γ%Ow ,^ ] y (* moeNę@\B2❳0SOjV~XKD#Esy1-E( u.#9L*n !eRB# Y S.-R kwlEƎubobFL"eޠ+=ێ1.,]k l˸~Bu3f&ymenmO(:~+쵒1uh \&wSBsҁsTpCZ\%k`:Mmc A668!LN/ #j 3:-?^6nPdg3tр 2%$[?JgK5Tdls;Zɻ&h\4H}LzU~ #Y}-`$hDi\Jl"Ss[3[@`KWGO0")&_#7]Nȋ ftEpdbw:ƨAH2t.ltݻ" Q9fCiRO-,jHXP?S>x4GPS7%r*\diV{)etJ~:]gQ3EfjɩAI0i9r g|B O5y|Cm_SSRN.~\fni( n&}!E$u@~3ƾǭsgsismh'"L×EYwung)$fր3BKҤo~ԑA+SØ}#%6: ZiY$>o'%'u9W :=yrB31^n_EF\ \ ZO:|>oR鯭S^o(~wMHtI5EjaD ͛RQneI.R6~b!Wd`s(^Czw\g=P׬] ȪcIejδDF0eC}-ŢJ6z_J `h&h|ڮ(1IЌe+5=k5ɯ+sERDWyqGnsB$ LX DK>-ҺR z\5$m:fg%S+ں=$@/+!6%#7Er[9Ekkm\a$E -znSΦ[0(D-IYC{|23$eJh9gn~# )tS?"rE] rz|#Wg R}‡z0*f+s")D! 3p5p4YC2]UۃTiB%鶎)SR ގng h838|[~34:%Ml?ZAoVIY(t4w^|pjt| CZKe2DhBғxJ38ئ;%OXJH d9dBHxP:pFIh%v¤0RdVQ&L 5:5r:a:֖;R ~mx۟*@zힰ$IOu'c?de<`H~# 5(gpb>!ZD_l~g(L\mK|č]Py;\^ n-;7Z8kڞـPγq?u\7; &Jܒ(.(s2#$13Q% !ՔǂT6ؒs0s9u6{e#'[R *lgX{re0*?]TXHRVǛHWLz>Bc!>h>bzCnzu/]qUl Y03G,iOwĩ1w,I/+Q %]1ikH#:ID`w 薝H#C`g#QQEPā=Hcʵ<*nTE%Cf?eho};܋0ݼ>[$\7*fNMko7jUr=eHwYX#ro`KnM? jDOķ"iU:5]O0 DrgqS~_1ކ:\REg{:SR&ȖN;nyŒqCEQ*HEbP271埋CV6"q~! Rg #s|e: Dx $,&g=iK?,^eώi,0V>KǩI*:.r+iUuhzoi}G޼7N߼̞CېPKjt3~yca^䮊>/98q7c0'tJe=%/tg -Ԓ &DyDx wh5ʔ-Pl pF.5:ɉ# <-rsoGܦAM 5}\@MUhC7։lθ#Y_N#ADUuʲI[66j7/%(-JV(لJDIFK7:ipp\\G4 'ҒOaj)Pe!r-^S*paZQT/>Фಠh^W1|)cX;V,n{6E,ꈚ6=zj!SuSyu.Jjg$./^>qR+\6]kUBdpvtu<ȴ, {G *"tr3#s@1%za K&Lkh *!fo܎{2 qXqE8M*r@;71ދzviNi.9 zǴ2:t{*[LmK3굇DV?#}pr-GK$RP[WjܚnKaMa׳l/F}%S[~t]Y f12.eĶ$M'|J@lҡK6'cxH(i$oI&E }B۠Ia9! ijG,Xqt2&mzMm)]L MWQd/*4n}4k8v?*n6~^NZ%`LKU^R &VGdT7YxvFw`6U|ggyvҩNY3(Ab!-zfj<իQի;E ̫l,&.ё &ʑ3#?VާܨD&Lr4S~brO"[Ot%vH0gd72ӚD` %MNH+1D,#0f"R1@*oidM,s'Ɍdn"mS&c|=\M&m.vjGe36i*m&1Ed@wuXK pުaAJurwd-8 {B;S٣()͝YCV2s k2/uX_\Zp pZo0׋YM{8qNmLEnԉvyS]47ښOYev7n+kNӻ5K_j};-t4A&jxV=ydќȳu&[7ЬfT$? 4+c/Q>2J+NJD=iY7ѣv&d{c,NI詬/oNZ?[y*պs/un^֩E"a1TJ?C}KgK˼FqԗJzwΟ9=Oo=)[j lct8 $*$`2M)Gڵ 1ǣ'J:8rx-%:7K2̻k\[em{n9^n Fz1 PK2@DRPx(VisualC/external/include/SDL_blendmode.hXaS8_C?hHBۛ3IJ Issәb+DWr%ql'`z@v,ۧJPEI(ݹ KUm̍:n۽}N7>PdG6[WSeꉛ #oU x.잲ϛ0SnS"K"dՠy ,X~an*A`,%Le@} a"7"0"[qJ|,lKi"e1q!HiԱ'[XLRh+b?L(W"gpn#D685Nhb Mo!ALtlgcr᠅{8t*^:ґj誑$$7\E="Bdqh'@Nل۬!!AA#Ab= epѨb=- ~JY-wCJРR4R䐑S 㠅[na|"aa3SKIdU)jFq@XÕ0I q̂"u8dV!359⎦3|bZ]8%l%z?t&<+0IcM`$>MdMHyb_ "ȃhF~%a?ϐ)ܙ= ‰H4ɶwxd#x$WX7O$&m?xY^stG.|jr` >g+npz!5>?!秲ELۙ}Txy.l˝ǃy9WF[ש8zɜAxU=[ eg^u3#6 1=rI/rWvЩ$?r}(WOz{ ]b;ˆjp;Lo2{{,qwi}3v[G5hs"oj~~O+V8cZ|pm.J4Qw2f nabg3/r$|8PM<Ƶ3Iq7h3/.+/ч'W}UA?,:;:GM*I?ioq17~$s}"sggU^/E*hlݝ5&\~ hqra>bm"h"|P*1lGA :"+1G~?AczryV͌h%sA@gM\)2&*,&joK]˓g-Yf|?'^<*+X.$%K^xNƶWʃ|РUyyިffQ^dk" q\۴gIg3[M]}mfŢVζJ%쮥Rn] _RɚpcJx4+'j$UoLM iz^]n\7?U%91秪N^v۵!j{}ZX7[[s T{Jh,~>JjI q`7v8/?,!^a!8* *H~| vKp81>PK2@DR؂(VisualC/external/include/SDL_clipboard.hU]oF|ׯXNmh ;0*-p$;>E{fO*E.PԀI;73;K]N'D F{\kEs5׫6yۋWi:بJ'PՏ4?:PpM(τwk]sM/T9mtl]@9OBHs z3Dw#^3bˤ|eSѪ YN8Hyܙkvd!w:p^:Nzw.9pLuJ+CJEstlMdBLE5 R&$"qƸ64TZ$)`>at./xipiw$UFiL|.r&}t#H$u'U=Z1\:*wUIn%̷#ҪNɤD?b\*ea+{HfNG)NU˞I+@bѸSÓ;fs) Bdz9\NSh|q3_VFS.Z]@ʨ.(ީnl!Բ]NN||9 鮊dd\rp9GJ}f3&SWq di%z% AP-UoR [Nf'm1>>";š@^Aw9),gt<΍$nngLp|a>m*TTn>{53ܴl1ãUK<Wnoy(8v>fNVΏ6L}Ox:%'Y=w^pMDJḰ_Tx^_ߒSY` 9]Nk*5$! ~VT|PK2@DRy [%VisualC/external/include/SDL_config.hYmsH_1TmlH/q@6g$I}Fbd)BRORZ D˄pldW8 C`B~Fz>QKD L1jj0 㬔,B1d4]LӃSe:L` "Ex]Ȃ5f[h ^dh]A~SL D 3%?q0!,Y0e Up- dMGP`pXy)4RELv R9& =gFeyZ*`C`mr;n>~uBPtU^FtӲ 5ԥw D#. >6%43V .M^۹Q ^@{]5ڰa*xP*?+Ѧoy(ЂWemd]B| o>{_9gW+Lnd-}a:Xwηoц2Q[0-|%) Yq_=iYp*m>8Obgbv Uci m|sF$Y^g[<&#` <(< aі'q$#?7?:Ek/"x -K:9pϡ|ݞ:d3lT6wj\'\-\Һ.=a;Lqëf$rKgP2vA·o-g敔74 S``@;d0G 7EbU_2y,f, ER"/Q3γdQcR|$"J,:e9Cx6C;Y)K3?i 咕E Ee=B_`m΢U`(ʓe<[qfU,dž0WIQ$Y>?ar,r[m*_gE$tYͰiZ4,ZCϦQ ֋e .PyX 8^~`E/2l^> Sn؅S>tR{d(!%F {ͪ-2J0dQ<+c0چYsa |fմγh5^iYlM+h>֦ PIHaCy xv ZLFU4fqi-DkZ|e( j8\M"/ &ۑBO8N# ^7AU 6hjy]bվn>=yM2OgNt< ʶ{K߅o >rd5쬩HEw#rT(ة_)Չ62,|N*NvɍsQXP3Bs6+~u#kTH\6=ZSX`Wv.΅Hk4%q%%&|:CY~_m Uc71nSvEҝB5@$FΎ'V}/t~ـ5PraG`(žm:RH4Id"k !Yk1[C3"6zR̾11`E#{-m]T`/FjI#) \[h,./AўAhA-p-MWLQ|SuTdG9tgƾ3 hte葊9.=iEMN'ΎlK@ӝ׶#voHн3kdjt"YL)dvsyAci޹ Hƒiz`j} fqa2%ݟ$ՃGhv %lݘxsSSt%[K6:[>P盃`k CM=bؘQ-"El{rji/,rO 8q2 zE1@-8՗!TU7p)݅Dag|R(E@/}4N*z҄L95\AzQB5dWd T@z15ѧgpȿvKپtځQg_ruҿ8#.?G 56rd@}&5_Z-g0(#׿!w!IJ.DTe[hb{;j <$$p 6$]ؘ2IJa 6h^ZcoT$˽Mq4:< HnTu_!짅Mb2BAߜvYmJF9QM¥F}Drd"-o նEdeGT cymҔ qRre(rý[ZF\qo뻰NLo pGo(0'F&7݊`[FG0YŹ:zx\6ʤ!kRv"E7;$qokehU !|j5/#jȆ\_ tRkrW9>r4(׀`k3mv]iql5'0 rh wr#vӽ7 (q›+gM^ oU\˻8`hFQXø'wW;-lu{38(A(r@0#gy}f&ggQjG '$P[*G/ua8xڀZ`)#M2je}G]tYZT;GdzGbZ]Gb\B 9dԥrDԪ?] h0K0jPUf:V0sp旃Q1 e 8]bY}HCpAYV3 FmՄC|\"vore`f}':Si/Mymv\Ky`N:Ngb5jEH vNU('QGIO'}{M:*?0} 0:g$Z6_#Wxdi,^rKaS<Һi. qH[-2c[MиIjEWh3a0mB*fQA J@tjb:+UV]մV9nIF|8r|eyVIJŊvz( qn:Օm|*2|3?·󨌕~5Khn 07ލJ w'ok!wy[y,6v/ƪH@jeE8,ۂ54]D94-Ub$ Sh8Al(2\,}i`S(!.sTm? K |,z%;g|05w,7ؼ%ut( 1ؗkrM a- |wݰ!VZj\V/>TTFCZ3\ӹn6 hs 6A솁7L`FUPaA\^MJn]:KuZN =(Sw98)h~ؾ!%Cʉ|]|ĊH"yUOɧ׻|x~%(kɶd]roc[4>)$'\LrTg? x^P@Ozk$NI|q *N+NWsPVEXW m R֏:4A6X7J.|{uI6벂XV5pxn&NCW Ro hՃSs j[bLMydK7O{UQoA6Fz-װ*#dk@pС4-0Que 8ײHqb0^}]R2?r: =$gЁIә%fPg9 ۛon%l÷Vγmw@J +EpmmҀuW&3evAg8Lhd3^ Ol6Y8P ߵGАFf%ȱ5*N,_~i5n1hAw( +Ƚr$JQgdG6@;$fqqTC8诛PHY S 8܀vZ61IwEK#ԝF 4`$ݬ/o:xK|/L'ȑSG΁\VBg͒ *{sb9@BʚI$+dS w`YǜBd:k/V9Yc5$WԧTwE.XbX BձUɾw57;F&#I_f(eH3)B;s@ta"fDwX$>ٞ@zЙEIд@ڐ$kkh6 i>] hhփH3C*rܗI*Wmp@qZCR("CbOPA4\L6rG5TkxfLѦ;UT;d5g@)+RNM1xKD&?Mj0\WD˝ Ϟ jD:Y w(!Ad[0u=|"$A4=0]Lm 7)OqQ){V nXmMU?0%h6gn@u1t}.PwEٸ(\cp#4x@K M<ˁ" &OĠlZ}wk&s ⲄGϲ>r"^V'`- *#"F Z rgXV|_JڦzqM,jP] ѽS)iQ%]Qs F,\ %CE}%fDL_ -Lׂ2z %<øM4k^=E0כ$'"y'.йЭ1"x,M}1|q?`+. qжW(yozkG5da4dPM/㹪o(MCU[rL.e|\B]IW|psie[4vWCtl{]6Ow d0kt _}rWQT -ǡ?#{oeAH&\AɭQ[NϷ袬Hr}џqk8]*@v[LASU ~ɐ:q==g9{dɞcb{1<-y:rH`~5MtM#(j`:ʠ"춀ŵW CrC}~_Dg֛y1^ѫڶJ6:yjOF1_fo_*EɸFEpu }jQ'Ze6+I uk)߽>5E84&W%*oF]80SD#w=zKH0 +޾%gfbU/0^C( 3Ƌ1a,RqOW:XƏ<~\hN0ZG ~绳bz֡b0*^w~']=lfiRҕ!16Rlf-G r.)Sk>W^u#{WXֽlה틝AݒI [!0hZj-uG#EQV6ho䦭 kRĬʵ)C{_#)j~["Yckn"+Xf==:!1oYO֤1)Y'Qm[+jle䳲t PK2@DRJ-VisualC/external/include/SDL_config_android.hW{oH)FG:Mw&6-r: aַ@r7Nj{U-Gsg@$Ma$O)mB-7[%V^oÇo](S5Z1XXY1j㵨y|( 2+V xZ j u R9$xvVPIjP(Ys`-ּȠlB+يĔ[ȕ,;Ͷ s|srHnϸ*E] Y+2.7et nZ5@QET%W` F 聋cM[aFe`v+D@.B>> W jtҢeCYPs 7HI &(e阏J6sǠnhFMiCK+XlURUO; d<Aa[`R`QbQJ9 [vsNI stAgAK5N4cww{ENp,w4_qT[lj=RBm0sekNw(tNX(DCh>v`KTܧNEa3f(p7X׌odݢ\o놗U/F:3?ج.Je gO˗'|s3Nwi W[6[t 8O{}{ӷƱ98ebgwhtPK2@DR:+A. .VisualC/external/include/SDL_config_iphoneos.hXko6_@Aj7Y׮0Le[^k,6I()w(9m1EQs/ˎ䔌imӌ%JT@Vպ&o.^| ARYJoUΛ[ZEC.VYE*A 7߱feRasr5oj[B6VȀ̀WuCB̒;ZsR)I,(Y<#9Ke %E*DKgSQ—<r((XU1^ʘWry\s K*~M#6ae7\3EAEʒ$d&5ЫsxtyMt[U-آAZ 4ߞY|EL`K|Ep1Hce/KR4U .kRTOe-oz '&)KVy/xM:x$֦OXY2y%i*dU; -rwVҀ)Y)4hl!$x#RJeYt値ncJTa°zlIwM KAXM`-ˌ.I0┗KfUϡchWC жK)y&F'v=\[wNk=9+VrWϴOu=B6@zq,յxFcmpg6B=o:Dc:RuPKelHѬ`tFta -Y6e %9-F'4 /?NpR/~{q|\?Gw*z7}  v熪l=EXJpeY5H|+Q𫐆FOjVҌ{u ]S[;Q"vXmS>j<t͙ŎNu=e^ T0+Z*j@`wmS~OjSmMGUrjt+*\syq渁e^&v &n6HwpӲ='/YC_:̥a$ \^Z$oo Uĉ-ѡ!#kbU%Q+g7Ǒmg zU7 N6U;ѷgמ0o+blO?7ܯc{b{G%{@X[|.y'$g^{aM|+B#quk>#?0 { ybMLst`224#Rrj#PcKVlJZ 3V~e؛7-–P1nmGnx^kMF#i7 <2zBOߡi䊀u{jv?mW]ٹ/꘸OD\Lj+W'C8yqqM K}辱+2y$嫒 $iJs/Z#dsq_v\^ƀڅ9F l!z^)-CNBe @׊D =; P@TC]CgHT k1hMJlWZoPAW#`p=_yyvH)Uׇtc[@^6| h:Tٺ+0|8 ޳Em7rӂ̹.{0(2 MRN1 Tqa, Zi%!34I:Q~9~/#'¶a f Ɍxd.4AC*2jmqIhAI%Wާ^|J&';ǜ:{Kz\[4$]9$htn1NM ,3EpO48n Z-6mV'rFv):~ӱ6Ln5H΍oLAl^&FA}jC N?#uwҽA% i?p > X BMyQ\L{÷n# !kQ࣡&\= cZzy3tq['!l亿eVڜ:2-CQ70KWt|rEm:&׹1.>'~}il:N^M}3{qQQ"؞øl5tc}%G`;K]H];v] G"<5'e;z^byQ+Xg0ǺKI׸5C`nyG咨oITˍh[ L; 1j)(-N}.\j"Șؚ f9y;Ǵt4cO2n{\w d60S[cw@.NQPø0 <{H:DDUor|m1|+$zķi`̄q68bIV6֢}[\^W"N+\52$$F%؊WHiuX wk8twuH'iRCuvciE \4;ig&̸T"gw'0#6c{|%Al*$:&=,|]W?IDȦBAL<Vj%/-!1tPPyx$~I .8IC9-Lۆ+tͦfqa4q5J 7X^ p uh[1zA1_rN: ~&s84B(պ$Ȧ'[eӇDƿ/Q+%0MNt!`(+*`K9AlC RLOgk$kN@#e%`*uBnjȆA.Ђ) TR_0 \"s*Zj5A[3# evDxEV6?d zR _3Ayj͜U9%k,ht$lsH. A䄔3$ CJC9de> W؀{:ZDU#$RЖ5{> _^bBe|LրڇVf l&y5{,IP_`ym#k  JJ DJeJ9ɟ qaԅLX9AUZE 8r*̿|Y%#DE_ mzsR `MlRUPo`c|4HuA(,g>dΙGP(η2 mA1 2VFOD &M+ lM8q o7vl0`Z-8Lߟ@ბ RfgP5Y$$XozYE_1NxMC׎#)9-.[&,\@u~:wL -3C̓,GN sS 9@;Ǵ!Z n[#4NRZ|3 H*: -;`! Rc# gHLuR'R: zߒ0Nv\um|Zp !.A G@GUr,3sߺ5ԖE:( 3iY:=S*J->"9gM2!9`7-oUͩ*o2>za^x"zXnu].M#:⺷…58tf&DCyb:N]wgh1ME;mk721 n,uuر w5쁔&eGZ;as{7=^Ό+:$u%mS-Bjvf{a劓Q;EՇ\Ԭ tE1.٩5)'s}$pOidƧ<˸Hs7 lU쮅>7%4(ЯFX*1gLE1Ԥ($̈혽^Ip5l0?C+bjg0h4Pɦ=`WXTٜ I^/uzxMc!HpHZaS$ͳ8p}zgiL/kMӧwbod_PK2@DRF h; -VisualC/external/include/SDL_config_minimal.hVoHO1jR)m8 wT1 #fMJ.Jٙ}3uZG HU.LHJP,AQ!?|x"Q t dseg&6͛h`8S0\R+a(e;HkI↔LuMAI& K}yN.$<L)JL0 B̤0ʢ[]JS<5䶿HS(k.GN3.%?ލ78LrrD49 %cG ;]n uFMi@S#e8&'ߠ:A6$wҩrkJ*u1kH&^i*$$PLp!87@ V`rЋ`>q<<\UEqz`C <­J4`⁌a㴉&uXdXM"Ab a&аOZ5꒛LqD2Dz!Y`i-_LVqe*q˩Ņ*U!8)G QI/86|\4FWשw63CF2Hu7t; c/oq te7^uhw.{q/.kkVXihQ39 FZ;l*]`w3=w :?ozaqOo?.+]4` 5W%2Ql@O໡-ZʵH+Ӌ22xW9`k,%}௳ o ҾǃQ:{g9ae95:_FF}u>֪<PK2@DRWː -VisualC/external/include/SDL_config_pandora.hVas6_spm&w^tJ@b{~ad@q2~ |fS3dE7c%rf'jw0?L>CJi;ޮ(j?/UY\6l(Qu[*d%W/`˻;?ɔ!A7YX*oYa]]Cf@{$ ֬.tZ*$ќ%m)$+*)}e ߾hrێlR\>[&-tQM/7B mQ>Mdi t !%@u/M됨ջ P/*Qb6,(?k 1pt5TBӫk(U2m<2qd¿\[F}p+E (`>g`^^/:-hЊmUq(z݂q'*S=tJOJ ׸c18XPG&X oPZ[(6a./Lyziu5?C?~ed= /|iQdV8vB/JkJBBO6Ij&=GqX_PK2@DRr,m:)VisualC/external/include/SDL_config_psp.hWQ6~P47>dvr $Lg *6xv+!FWBBQT9'P<<xlYj?~|Z[F~ӹlyg.6:͇Rm@ph{8Jeo^;ԄךHE0!SP%)%!.I5@4pyJr6PK$șm"lIdF6ICL{U!Ĝ<\K$%'= |ZjT%5Q&y⚉, r*,a5kCuZMSh5epMt, y.A@Ғ~Cʃ։W%)]5*s,Wr͓Ldn{%k&CQO7k}ztL !H KKy-`GޣIe ުEnT#L`P ;)ocfH,}y5Fe[pc6 GQ΍;pl;4٪O5Qa_+ŢIiZOblJ\x?Q8,S]S} ; #Tۥj;o //j՞#;BS..v5Հ[cK=p{ȷŪvYC${dxVcժp7-Nj-?ZǪtkc&9qFw:* 8:iV{[ڬFtᛑbb=GE F5|0}@!ʞ38D 9<L7`D;z }-f؄ ZC5`7&nj઎|v@-B@uHP7kChO o]_iX!Tao:4UIX=$>P7Bwnj!{{|;M78܏n_ {y@I{9Yuv^bcpOm.1ui{xdz4}nk'fr> iq@Eеn9Izp;о~'5ئGKBZØSla,d p(ۯVJn*}F&c'8re-ǥax@zZ7J _od _9I&Rxgf,xJLl/d}vָz*5c;b/D7G߸`'rG-Sd 2/ A߄Ϋ[6^j."K]kN=D#FUt[PK2@DRE>+VisualC/external/include/SDL_config_winrt.hXmsHl~E{S'&uH@ZH܌d=2ŽEAw3Ow狄=h:b%tYڿVW9ڤ9O|IV<_ 8ifb I3Y o#˷,+rI r1pyVM;4% 3QBˆ%1$<a,!8GS&(\0\,$l_wls.%RyJӣyFYXM("qx:Ng9c%-0q#%p3 :W&@悏Ih"KV _!AL$ɖေBh7| SS-J2G.sb CgʊJH7N"NER.E3@ AU=Q6?%Q8!?2atNYE=- [ h S?r,|ڛ]xI8#,ԕ >M*,b=[Rd8C"{O [׭-kai'vKnHIn@,GJ"L&sڄE9"8]Ssi.<Jqg[N}pr+4{:W1dwj3ɧ0i #E/ vkPТLv >\<fkpq(*MCd aV[&HT=_[BD2 ʲ]nUse b_pgPCa=WԆӮvB6M(; Ϊ/оj*|pfo+vu@mdKF{):1dg8^J{Z%rjTvcUum&xnmjԷcmdiZ$)SJ\~vs8.*s{fT!f&9v{6=ze{(٤Hv g%~kmU8a#~ޝ۷B!}o Ԏ}!ծvY;n=ѳtqtiq@mpa~$"I[8RV:j݁eʔq(wfzqԳz=H{(%//5󀊓K\ӽxNGi.U)h!5dEyӹxD3v"xzgю'19 ՈQ?SN ;ttJz{Skdݚӯ>")@ЭJ91 {W>ɮlͰzhƮ־(ִ9bV{{(܇pieki5C9S_H:^-뛍r=R x(b92NCT́n]:i71mۋaxROxC={Ҍv|#o>+myS܉: tp =o>I$vk|j.SL'* БxB|oQs3SNoʟ-M@[;XalTy9.1GH ҋѢMH%gJ{]ˇ+$Gxg T[z4Jp׳*+{u'l! goRv[@ERG-Wev`-)U8p Hd"+rNOgduiBHSջ%a'[7g5?PK2@DR M`I )VisualC/external/include/SDL_config_wiz.hVao6_qh>t RgI݆adId$esD⹿G+b)޻#@mCcjF+F ${*0^Fpw?|)֭ &?dՌX>|$H^VGV ɷWcj{w+Kt#5 #M #+R#HKT"LbP *{IEcvBEˤd=ز⚐wTҵ'rIueW̒-%# -*+Bvyq(V@*VBՂf_Z@͛4?چ-f< RJRS-WG&*´eD;=40У}ԇß {!z TZ<㻆VVO)*^?;|WOT#n+#z4蔞$?=q5Ƭ18X̐%G*X oQZ%6ܗa./L;tdY.m`_(1؂JG"v85%#O: ?fh*V7PK2@DRuFY&VisualC/external/include/SDL_copying.hmSn@W-m6BpRm;3j{Y%J|{חG& w[g軙YpuY0zsvwwW7vhjbqq0)Txf$ F)0p,yOed2e[δ҃D9 f "#.C-‚)8>٨,RT̓䒔0E֓b *SʼV{v)Of-+/ ey qm-f?o)7&5'QBA-{/\R ˢj#ͩid,GI+=L㣇~y-F֮y2>g;*TA6uU/i1U̷=Q!Gl3:$RC*6itLk^ kQf v:'!-'-kGf@=!KsnIy \^oPK2@DR9ʎ %&VisualC/external/include/SDL_cpuinfo.hZ}s۶ߟM)U[v$msser|Vd[v<%,$emwyRdnk"x_<9beąUXLTkckh\ ٳG#1)dR`S~P=Q7_/JJ27:Rx,{b) !Pw\Y+L.!"h:LdF[KQ,%V̔X$3 d*̵"MʐU`Ol_'P>ăt"-m]5+R"1kS?a"5LMB| Hr ^CfV)Yן KZgm)aߙG=[$@Sd)(W-Q}qN k|9_#A6++rЦ'JJLlhrϷR'tsTv/FhHQ_^2_Tء)skt>/*pvU]ue@%.5T#XJm;./ԁ{C2jǓ BŪL[`s rk}szJt|疩Ki|p-oTX]U>OQ{G~ m@Aʬx iރ8)r?GO|?~8}}t~桡>TdݏǃE'FxX}8+jnpB۳3r3!,{0·NC ,e)*7yI5?Yk[G]| mNr&F-M^8=xƟ Si??&yad_e莨gԊ=K~)бQK Z4sШVG-,OgT<;I^ea@rIrb2PbK3wEG#LȰ[TQC07tOG{SŠ-}(a@z7q2ZǙ) hG$ 3Vu{$$O)S~ew 2)VBTG dw;_'<%GGLdKnKfW =wk7'Yc/3@QqMuQЕvl_L*Աjq,U6*5Ĩ6V zKj%vCNm8PHQO*ׅ&)bPUTX](<=Vw nj\ЁIhފd.bI;v 5%1BؔL-*W ֶ~3@uVqeszpcWCbDT.yY?c "Nv½KՊ?]+$]87li5$z{7sO}p4+I8>;{eΦUtr2i:`Έ8ؙ`&SKމs]x ~ٮdT,/Ǹ~}ExݥѭTo8B236hƅwj $u8RGIx Gjʫp3[LȫP-d{~^]je mDT I?āǵhFT,Bĵt稍O&>j Ijҵ_Q|4+uK~puDQ3shͷJ| CDE,"ns.TRwKhxfe~Ts?6*Eƻ16\PK2@DR^=S7"VisualC/external/include/SDL_egl.h\sFbNIEE-r6u IU$eYWW!p)e/'GL{{z>=>`l7g7䳸ú3lCwQZ??9k5Yca?E^dF, r7a՝9{D'nΞx$1sgƿmBE,19p4c܏y,^q$@Flي{s,pΝ9[L"΂~0 <\Q>$`9as`s)Mnׁg^2'`uh;l$TH8 4(Yۙb ?)!lFWIRC |!qŔaM %gMnM3&2cfL6 >[1ƇuvoMnwvoFF?_~G21v-SgVݽXv`ºVϚd *l k3G[WVך<ٵ5k5M]h8`}=!g'$hc;ݮ hA=> t;&Lg\uMI jװzu1zƍ)@43Ik' LI }o:4mI9ף(v4x7%"<.ԓZ H;h ec]MuNI'jX߉%=p ^؏ cnfZ//[dG=ZVc? |<U)-]( ahc E9R*UfT,^W5u|Fll !$-/9O϶nvU'/3K`mpm*{2jS*_@TMdƓbB(i*"USJ]?`,D ԍID+*o]R j EB柟p~VMR(\PH)T`&)A(0%or.yxvWJB+%7+P\'o7&Pcwm?T*ZN`TYbپ^}m՛mxATA%}bLз9lB?#Ͱ|-„Sʫ48mѷA?{"#DH%6 xM, %4 Yd:]'0勲,U#$>54TdfYu T4T#hA4QiV-rD%DɆR1uV\lTIN,O{e3 ^Ҽ| QQϏJd20:EIqR*F)JH 4>"k45-[0V-'Uş^x>E_@<C)WQQW嫊FPPO(m[bCh>}kжoAEہ=OFk~ T]St۞GN&Qh#+;Ԉڃ;dZUm}3XifW%~ee4$0Ѫ: C{ק V6ECZ28Ȥ^J-ɦ͆ȗ vpc rSQ=ƨh?ZOƨnr5ո,F}?H (BtsIG4֠B\qW:luk. &=(ݍmVkv'LJAO30zU"z O)@վ( 6F>O qT|u`,~YAҭ vJޥJ"ʓ5>Q [nmR_H#siG_ swƎU8iGՑYRa[dYo;l5X/R^U˺/@V^$ j$"DLZ23~SYyC؝Qnӡy;Aq/Bx YA6Hf{Sg=Yd-%8$;8!NXRQFgؕ~IqgޕAO $:!su)ՍΔ"vB1Z*[+iɳ7P&醑lMF J_tNH-8)\Ӻ%DpTSkD"-!m^-k,2-XVeH)HReT~ %)S "e(ZaB]Q#ô~4ODD OLLMLPz9{L4\鲕hoID-ϱ<# -ty\ff񣔦tX.>#>y[7 50yND ~Zr4@`l73EXTUtjedx M(8z-{Kj4HN#kb/S ?RJZ g.Q0 ;6wR/XkiWbϢS;+AD\uS3LuȑȈ&jH}MAqO5YF(Q=G_YlWA4B `64Km?sWą̍6o^7ھh~6|M6qN+/%.Λ m5?^k]}),aHbھ mK4LA"b6ZoﳱlǿBlݾ mм&nryTid?J]'y(u,<>흷]etsiht֕5oQ_eQeHZ*>E%eog?^dE+{ߵ1v ʾ^m ''ϞF~޶@eFe;8.vXRUO*-k{.+Y&i BV+^3Ca'_1ad|ң_P9| +*ENeQ!evޣ&SeCM ȽfJ,6wĆ896Keߚv۞E1(+G˝w'MbW|UN U/HM gʋ@< ;D),X|~"XTQtQ#lUzMT( ֊Y/ Ii8hkRGwż Y!2ZlurE:K5*QDz|I߇oҋaKlDr%ztsFͯ@0]xQ7ԗuN=UqGH*I%u /tPL=.ў'5Ynɵ(;/ut$*}Ñ3K/ͧrm-L|zwQj5;i^˷G' B+4j.4=MY7rEB9+h%kP%mϺ =!d+o;9DYȗ3td\$yxf)_')ȷ.--fǑ:uv]7ô+YTUW wYb gVW-›c{NOa' uy(QW;"ڧFwxksኧy\h)hAj8/oKBM `b~(܍Fntm %5ƶa%mt7&gZ_U0v#W%d1g"6#%vr<@{ tw}mvnaϦQx_`u*+jo~3xWkNnv੐`T#9jy7q= S۹Qv=yC܌L_|5E(*-T={( o.*n%v pW]Q+N,RӬ pou&h KN9BQ:U-0L%> B(e7 |$k莡5A*Tg{½\A*֚"0.!U %JEHWVuvjœ| #Өo 7 qZ:A>% l@[*@^qwp; hֶ;2ng ޥE8W{FWؗ`ۘ']ZֲKCD;K.X"Mlb`ɏU$dHsr b»{rF5x@'Z$赘:׽H9[*Ė3ru4Ɲelg$2!ĎhlvK H lGhl0I+j+:T=߻uF{ aٷw)_GUX96=95: 'Tu5,je]B@Y|hY>:O;oAۭMťMc1 V/x6͏%jF;r/ۣl0h7Utʏҷ t ei@Q!z+}<{z.E2QN8RH STCJGkOay.prQw"|`1ۇZۻkϋl_W/mLٷC}t̰a%Ɔٶũ(YYUq]!ˊ2JOtmZb)r0cվ7`z _|o)gW&Yf߉joRv/5F *F)l 瓄軨^`Ԯ3[{}{ DhZ mBa EU Vs>J׀s%ݜuvS. @ӰR;B0z$,`V(Zi jއ{c~6H5ftNZQYjs2&Z`2dž=(Οlr2t+a6Z~TmszPp6{NWg@D !t= l4X{PGd:@xc0!.OY WUyV̗鴍SR#hSio:g= ؀\,Za;a^sLqXgFd(JՅ1W S4*G˭,K}Wis:NڳtQW8$Ϊ 1a,!ׯ$ dd˅C5Vrݼ3f?k̇7ѽy{G8Wt"WkTueSpK؍en7sHW%GnL,3Mdъ*-[wϺ\ˬMBhGI QT^.:G1[g9fb@cf-y%\F@6I߉lvns>y<.<3 '7!UQ:YA9׀f!@dRO .ߡ:y+Vʧ.m"SWn \3Y@Jn,(/beސ[.s]0{ڛ=6Su1a=nOFݾthU-t#Ln~W,b/ќ%@Z$b Lj-[INs(6W*kYuWv;^/Y IZsCG>() 椓$r2jͧ,4%]:N΀jh0lg(JD Q`Z]0'_S 4 };nhU6 6N ;o> ApY뼕lH:>g{l?&,M>6*Kҩio` GԪȐ1/%YD2 *P;~@:-֍l@nEop]ˡ0"0f}BsNm3-fՀ 8}?HD1LzMqVhݿGtMYvmPu)]hm'tZWs\Ouq[ c&PmFd{2#%HH^ae[ͺ8,2VrA5IO2$CLQwJ2EM8@g#0MɆ kB";:e*^I%-X2SM2xcz-;ϦB oY;+u$^0q\f]f6*rO65[o} ĭumdMCkx\A7姓6 `|!Gȱ]BGĬVG="蚰'"ŞԇcCX&TrL;hl/4bMѓ #ųd2Cn! B>9?-_)$cM~RV%g8roӇw&UDDŅ#8 jƕ(}80fVps;jdz ҖW p4t"- GvrN#Ez6/SbTwV2"CHs LnLhLaeP/K蕟b^oҥieg94Qݙn-=[H7U6@%͠LVa(KA=nSM?2I H0do){lm˦جKH7As=|x$ӳD ĤʼP*\Hp.M2*Z~њTzU)p ,ZE0T<<(*pƝ7p%M_3#" 0BLzx[HSG)itbP̍2dQn|Iɝ7]; cR\z4:ma|8t~({@3NMuJ 㳟/ r x\x|[X < >xiUwJ V%}<A|[6jJ9C lR X3zCO?LCɋ"w w&wsXl%Ú$Bo91C t'z[R|II#I7-(V`Ǖytz>]}~YKy,'`! ~\3caʍre>L:oJgLYk\?-rp5&$ ]μ-]xRDw!)Р LL E M$@{~@r;=!&ͻf#FwuSU) [tXy-vp-qCd?W!P8,<&,ח6'I'hjʶ)kMh L\ kϹЖ39[qVNb@OşDsaSUU_5IIsZVm㢑e'xocj>M'PW ˗ƍXnv; pZ? O>CW!kj3=;lo m=WcPIړx6v|NNo͓zUD9rnJU ΉO٧Q+H2bhdHGD2ӧէoAZ~waof9;TFB(qb$ݓ]:^@Tf($^@˵>CJ5[j.m;AQ"((fi_7p'|nñFLD_bNY 2̈ejE Y]ryĕЎ+R5V,p ru4+B2m 4-^SKᆅi>2fFU>Z/'V>7^TPz.3hi޼kY~'CTI:}Rg ^MO XyOVbs @RrP%yІ.qP79GR -i`o#KG㯥YPE|RfNܼr[ +;LF`mZQl_'=UdaSn*D@*Zm{(u5[1 -#w>]K<ىlo&Z24,b]bg65EXB&-3pK;4\O2sY:U ;Om.L7L`0ꀫ!s5c}tY.CcɎ~Ry:[.Hpf< {yٓ,V#9wWkkz;^WjNM@ dtAj"5-ɂK)l wy_WojL[4]~rќeq9_{~`q{&?6 c, Qg,إbxz%/x({ ?u EP#xz-_ẃ36jKf6jk•-h%ˈ[@nʻ5+Ae$P5ahUXycx^ؘĆ +ǜ<C5e٦5"'1tJx%3m{˽ٮ\%4IL7A2h@x]~(wD'2RքbP v2Vw?ߞʏi3Jg@a>yciOfmG Tƙm#@KAQmVpcVq-΃\<ס5@偫ëbX{Y˔Gp(rbv^i٘mU8^ZsrvF靄V_~~ؓʞ^^&D㾶g5 %}Sݩ}Y'cx@lp]d.a={hܞ cE\k"*wy[j7zyMw9+U5W./rX`+엏{`N9hU !/@7cJm0.X=}N'J.\ޜOd+ N+NyZJ9Wߜl7Ŝ> e,Ip/>qZWqO}U7oŞ>?_H##I1f#QumK Fʛ3ͱ鼥3 \C'ϮY.@{ ;EFu- Ekಔ.9R%͉N}fO$)#_+ pZ|kg__9WO/% m_mC[] } }ٽ8+4w荦6_T[)s %J#θ%v2' 0(׋#͉c8u,CZEU\޳ @/@C4֑OnWjoq<<(/HVk_ (&VA?S4Hm)nii`;*eCId{N|U`>MPDQP}RzFupmF.R(K'2BӞƄ(`CIE=0I>y7VBߔw`'BwxSȀ[Ar Uao ܚ@F";Тw'ћ+~ )is>>_н^bFhU(c{ў1>l>}-`Ir ]-WǶcyJx^AgeHowR}VPY,unFCVE9$_g%8 јH=I> x|[8YMZPO_tI}Fv̽CMiaI#Fp}|;Lޥ+8b*t\s>דI2jk+aquQ|dg[#Z w*y6KFQU@f0LWCnZTW-[LGD1$|0 Cf4L2݃*5i.ͿY Lt8ӷ}T rQ|"d/#e3Til^ւbKkKɰ=@=`( @uUOFV)l[,]f'zqp+&6@^bkw%Qy;5} 49 !yGї#K_` X1PlG2m_lrDgu2&w88tD*̲g>r7t3wF}3<%%Jd~#7Ld}AɃb,dz(U9I .a:U=87tI3Y32JXY̛ yDrzȇ7Ӭ4/n,KVg MqB@d88aZou}W?+Ƿr*g W~A&06Vp8[PW]Y!m ;l=EeK^{>IT`J>/D|A/`x_B*>j}YUj­xb`(#T9Ez2PXr[hU1j@_@cdESP K5P, pZ#,]ws .Y,SJ#j:K|pv%B"^F^h0v)6R/U,@yޟLzsܾQZourj6YEEf5PMaoqFI)xCʗaf PK2@DRyt%VisualC/external/include/SDL_endian.hXo۸ANu|di6slE@KW]$H )ɒK#à PxRHn7 l%p.؉ۇ֛7n7M2uXcg$+F69~[AI`",nO,z-0$10|JEH @[hJ\gO<ׅ4 #qpk+}ٴa9`sza" u#|M,Z cLPX2ͣSyV:+і "3&灙`rkQVq`fBr- w8b FHQ!?'XV xGE(Ha%5!sj 'R^)RqPNCY% ڠI! JEJ-‡ث~AJ|]%gșԫgB-L07 {-n,QCUus@JféP )<6cEGz(.3wXQi|n)O+\}jb14Ÿ`,+df ?ϲ`-YcCU+la܅ܿ^ט,8+uE>] yOP&q,Ɍ{lzeak CsiUø-oZ#QȤ">*KufPn_TyUsBя8;ũQ}cHBw=>>i炩~Trf&U 9j T[IwS \ϡMTps}{o~hdխi +yQLg{+K}jO?Gݣ,O|<>:cɯ4r| KD%O0Fe0+GNp s \)'>T^XmiJBFK~ֳ-e?l*9MS::T9'?pt7Bz$@Iɀ`6LUI}r>G_?onvg戥M݀y8警dۛDǨ'"Cr_ӗuBDsGfȫ;Z>x<*"dW5 6]h,]勘';}5c1, c*W> H-z!k4BmBt+W2r @nmsQҁQU)}+pKN ".l~)!x qt~,DtPK2@DRpi $VisualC/external/include/SDL_error.hWn7}W y$mA ܾ] w"E =]jpR$p̙YE4VBKPVVfJЍXKYNm:ׯ^(q i>V3/-O șܯ k* wqV&x՚煕Α)*Cr)+;Du4THVbXr0f&J1@*o)I299CiK2<7 h*p{"؅q U:d|gjRT MbRg8o,x[)K.@؂ȍf i}!' !uz%yp5j%/9w6a$Z(L@ uK b!,i\d5nEV:X;Dr/nZcqJ%J 'RtQ0c BU&̴^`gq4 Y;IIq1~LYSX;*j"jυL!fK _ioK~EK녬234 3v4ͬ gvW`-+VlC+}]>U7/=:tl%["x8CԞ nn"ph8'0]M.d: BX%*%I67ꍮwG1_51kcX7z=Y?4uu℡HR)3t$\eP:B.vDX$5eq(<3v%+ {T_^W*殀+.:Z񒨤 N8&KK/8EM@h3sŒX? |{i)>kģϩ?.7.Թhb'sz,S uzPDZ oZcgXQDoBxb̫έ\ @|ZĤmcchuƨ.3Ħ7Xo1ڮ!oʅ)',h284 W 9hF8lGÍ;w^նG]j-^HL eKkR;=_Gדx0un7 FQn|}떀6!o)1vz|/PK2@DRk4%VisualC/external/include/SDL_events.h]s7IKіqkjilFP{8ÝC2}0\$}$ڍ5n4<b, T'NLq\%<{=x#1P&ʂK8'u8<HYv%RI|_{A~wA6LxJD @;HD2ʠ^l.@k)2ExЗ -)P+fIy*E<ZDv ,4 i,F8/T4 .d8A4 sۜƋL o =za&, ,2\uD_ a ,mPaJϰ ]`>tDD^Ef ]M$2^b7*{@4d˻$$)>1Q  hP |a7}wo(Uxiω[.A x(J ;~J=2JqL 5Bе(\bO,Iܤ),|-:O<$J3=0PiAV@pwg}B6 @+ iw͐44#PC 3.@-ЅX_ȗ3 j~< "Yz |fAL8>WKE S}6^w77BN(K`< @#Z0f򤦡,k ҽ>/2x|,fyDcO5n9_ydt)oGă;_f(mRF2ҼzH) iEFAo<>r\c|qh$rZdLXyOa^ckap+y`AkX{!|ob8O?&4`~:ho2}j#m2WFM?]VhOer md0ΫϽ[`Rm^H/BI?R 'y2!wqq5NgeGH!kc7p؂Ȋw&c4WtU-_8Ȼ{"?A㨏JČקÊff /@pS`&`2MѻkI_g?S z|JŽA6)q`wY&$qIH]aI<׶Luj3ip~\x07(q?ocj#}|qI6`ႅ\K~nZݠ2|4O>Ĕtѯ)mҠB0|Oh H6E5|$hNǯzg/chn^>|M!nOLɸ?_蹞&ot=T}D> zx?m<}lxU ߌa֤#EcpgY0UNEҏǪ! L!QO QPOP s\^t`D+U ~ CDž+1bD.(Lg%fa2Jğ. *]xK.) Dfb]1 !@cX}^xB,\d'W\dr zzx\B Fp2XV `pR\ kLv?TTÄ2k6 &z{Uy+;d*g`V]iGx՛TJhHFU$efZ[N4<<oHމE_h03'rЩ\@30 K pX%Ǣktl2:gbTQoJQ4jLY@e:95Չ['2V+7.Ʀ,Q cTo^Dqҧhqr~yXR1oe )A|¤?a:s} \5 |tyMlHeIzMݚ&w'p} T:VzxX k_fБ`< TMp|/^LVq,ި좆7)EĻx \e]?F/'! V>rS78CQ!#$R*Hn2Y2)zr&({vyrB$FL{eӋwq$X1A0k^r?<Ζa~SexnYEfv_y[LgcPy!C,1}N9ȘY`{2(Xh#hp&8&cs<@V2/:B 2H$%\:KeqVkU^FпB[4i"Kg$#97sze \HԀMs$D@Xg- pѺ061<%ZB 4SqD,q WiK۹wDdG _2S訇K4 '*viYx#UKcʯ9X-o<JkXa~yHEl&Or^ԆLPCOҿ>5uM5MuU(y|[xi U_+̨Vuqͳ'lA%DâEclRp]j*;*"_BvJi %r juOj*ݗTQqC]TNs &$eOQ 44,hݑ8>R'O@N^,~I>tUVԋ9V rݱ#gzp5@>yרgN:AuMb4gIH"}Blmg;uÞm?mТ!9xdXk z^SHK d5Mt+}€*Wtk2gK!0-.0u`{ choeaTe_0:~ˣ*G~"I9RdiI^X'>*8!+ʹq]-I1JZ(WS@u*s}s+ԺXUlJ^USv&Anފm`޸0:פ]ϩԶ] Yo jb͏u7!2iCy@;1oV̦ZЉbAy_MÀ<F\7^cm-y>P `)b'qy!Ue[1<>DYHxPncUILKyw㟔#_Otf̲$nBq?mgP}މ+Ӯx}_ qIza.So5PŲ+N0 ؖvFաQp0Fb1X=(q|1Hn*=7Jb-%wMvЯjEb]SքpMP>cGHi-ulh ,Ӯϡv:Qlbuݦ>b| `>EۢIu[r ʶ+om쪒3jܳ3*ՊȿrCQ6idb^yc4| ^o hyL;ma+n I!E'A0x#pq3f2FG}Y[S{0vm4vX6WDn/vt5\oK Q׆"o \j~uTf;;l;5>샖m3,@ `q2Ĝ&jOi0I\HۦLxmKvǎ]jre(s95r@t9/Zڪ-Fyu'[ 6b0QܚI`v( 6B׿4j݆T:OӍ4R޸IºF2$e{ow}m%HC32qkf958ř1Nqd7MGQ=\#u\AP]},0K6:mZ3\?"Rk3oxAc82󢬑;\cgUN3&X=n'?m%yF$u+^ܤ5 Kxuzem+R[}R,OM geQ2߮}FG3}<*dSÚ5ml%Xo[ I$= O^ֽUWkRp1sFl6o>jYGUy O}QTJd~?H3W}5=8|*|\MBiU%%}HA6zp 4> EɌPME#EaY&,7lsT#X =,q6`(sQ;jUI%!NJ1#“ytj T|xtl/Ȋ[Ds%{]1u^WҝMl졶Lj*C`}^}DyI'dpۺ/(8 a:7៻(gчӊ9bDP˪6Z:FC"6ۄc`p(4`&|z>.+x..փ̶f}h>U!ޙ[B:tgʽKLgc1vi"&]g:EaVeP][$kO=O os{&F5LM[r zxw־s [Mݕy mWE ayT/K% C73}K&һES&z'F`G2k ؋h$+-TEyK@BK>;G)DP9:4wز⦇5 SukiuG:md)#|`NGm'6jڽ8ZNYks%X.wιQs\:,G1Dt=s-P[*8shUIaS>VF*$Q;qLQZ,kI:[rֿk˼[ e({۫xFp̖fv>Vzk3R/ nz3aLX0Bm3jSAyB"<>QMZoM"W^_\,phZxTgoka 'dnQ+bR! rhjr:+m|mwwtqvŝ|_gr.եO<-q6kl~?u֚G8"NҥV0';CÕ`:? &Uo qd@wxV<?qI_PX&q#5EXEFQq$ƥ.J:p!2k;lT0-$:)7h*ġ InY@-=p̸ r՗P`q$'nce>€t yr1XzrRG|㹄P ԭMPoVVכ ) G5W N/(Ir'8ũfѶɂ-m 3Kj5tAA,򅺃=,}aI> cx.iA~Y=Zߛ߸ek^D%uY:|H/ӑhji^iAFAFrwI1TDumGM~! A {{hӇLySdx%˝,}+*C=q:L{ӿk ꦻkgzyJ/1ntJM%l@/'T\s-'01Md1 DgQ^x= KdZM8ei:oh [&iR4EPBpx6NKmDXURVI1l95s3`fQ`PusH)T=j3QݡYŸU.UM3*oaKyx쟻'ߙ7%usML4;P?vF=ciT ? 蔦}}E_z K^¦R zC,a:)qN Fe^P7 >m%9Zm}@t9 թ' Z2:4w%YkH{x3_Bb^ZL޼ËEUu+r!lPѥ5a-]T0;. ig vn)9r;s`zv-o+Tf(s;@ud<"zΡOQ#̸h|lDVTSi@+U~n.q{V8=Yan)JjV6u͔hCrG'~]UԾ ?8t_;"pq9~_}<8WrK 5߭b#ĭ_ͯTTX]*;?~ ȼgX?PK2@DR5#)VisualC/external/include/SDL_filesystem.hXmo_1U>HI]ZwA8' XKikr}fh;9[QFby}Y'Dn*My| ZҕklwWgwq_ӭFc*klBQeo2;(2ׄƻ)tA3&t0qHIj'62pC1#zg:{m#Uŝ&BѴUAQRB,T:@&Z*d4##36Fڄ`e&Gg6o\ 16ڂu殮ύH5,W'*j8#!zi#!ZWvdO*w`"]&CRg/nCD,#G źttI+e8d*ŀ$N wy$ (A摝'[wt9Xg*\-:tG(N "řb ^ftɁŎZkki A85[V n](HIH>8,hձ׵C3Qpl@j2YXω֥o__C8lF(@bj8ty& 0-p>6N^NєCl7/l4BsBnu+H2ïVꫯH&M?џ@Kӫ)kB”C`>;~G%f YtB:7풉PY:[+)Ԃv&u,I匱!JÍBrP,Pz/=i{"F{[smZ$E ifk0PFhl @gV3 \u{N6A3Y/U|L1ЭT24g#G #q~ƺHٮ` X J@0Q$ߟ̥j5RT*8]k NԄ䈳(c'GC> 31->BvYVv>ԑ[}63rPHŚA"TK/gB=j9dY&~J>^_fҺ69N#~Z=fbAI2Qu7^7E(+ooo\QC0ϱROgђY"nРw&3Gs&FmdFlDJX W@Y"9:g2|[`-uΒ!᥵V1 yÃLd9Gw&K눭o{=*~U7 *B꘭C@&=pS.uFw+r὾ӫ#gi޸z}4UTON#fߺAC02^OO:m?=Cj^A*PV,#ѫ*o.krԋnۦq>~Qκ_r.ѵ =$v8KLS? r. \5y1| ; wG?z br6_J&BƭNj1dVۊnt. fj:dPY"^|:YhIpl)mviK F8o)l~Y1ճ_5=lmoOu-PGHkU3P@" ;% >Z#p#3"Y Q` F5OYvgc:Sdz#B  x \&+ӷ?Wqs7eUvMNC[ OUS/P/nf5A]ss}5\ǣəW?>_XHΓ,늃i݌5 iԀ"ă,1Jp@AΕ6}}|r|Xߙ].)ήRHjt&ӐUZG{uV?>:ބ׏_3 l?``,K\-lE-pG!ޒǹA|ɐ G؀JXgYc1gAx!s]N  6\1 A6NԲg43 5Ed ɾr{HCo8731^pɹ*q<ˍl\g3!-ρ3= 0o B錢]VY~ d`컮@ 6`pZ{:[͢ Y(5`U @6߲ >ip!P =0u& hhvd<_žP0x5}+$-#H9:UBM!CR5:&  ?`BZ 0?H.PF ?(Vc T*jSC4[+*B*,~T9zfC88WġgϏ)#ر˘U(Y( 5_|o_M LlƁo:W*"kq iB~Ȏڣܗ!3:mq*ZA c Uq[;eʙ*4; %fEIUj ˟0]u.R7Tc*֐E pOP:f@ܦDc2cT07WZĠOUű/Lbxx(ԧ %_iuUy1W˰1f(ଊOc}՞Gƴ^;o=S[?Ϊ$!UJ|PJ]럧4ulS7xvN 1QJ6嚪G*@ >/ Prԉ3VAo$XQ+?E-HgSC4-ۤnPhZ)3ADEmjdGd=]^@ N=AR&jQ/Q^GHj M;`ЖIqK@59%_:K%$jض)F}iD-uݢw'J(OОrQeՍMȂϖkQH;XBf*"^3SPOna&Zjl2 03qҺ;DmXqu|P>+@ 4֔cSi2ǬnO5lA,EF߱37lӱ"Kajy*CCA* -r=Pܣw)Kɽߕ\@aW U\Fgw a] qPuEJeQ=_;w@ HK༈OsZkOV `ۓox%(u*J2Ձ ݜ,6 O(C?f !fS4"buQn>uocyok>q>0Zz5֚aȭwdh8³wuvҢkITA[[O)d6mXӀHmC+8%ue}`Tˢ1t+bhNoB ;V :5kVO&¬P= K\?uI_$6RmG맅$xig% )ڐm$BƟK١\u˜dlj#cb u "}739ȔugLL&ƗT;N[ h\tRҤ졝/E!y&PH쮣z4TQЄ-Bk8JnUuC#0 Nu4Tn56ؼr'(esZu~^4a=\e+*gh5Bu璜s`k@7+yK>lw:έACB 6ij7Qh26R\QA.#QZq}JB7p&gkkJOR5IyP=!H5lvZJ%0bϾ{=2GKj>TVs5̢̣D"ڛ%Ѕ K~?S[SK9GV\X&u#kn4`~<7h7VI 4{a^` V(BێmrxwSPaVLgE oVqݏG +D+$s-9S.y6T$PAB/ u[>yyF mׁ1 p{ZfY2 p7woOPơYS@PJzEUͅ0D̽_uzFј5ISuN^S(5TC;OfgLF[k% [[ߗgJmNp i׽Xo 7S Y~1x2DvwjcCNI+U<'Y6vB_UmD~]1PRw[tY!>[}iݓ{$2=NB*iXQHp Nw%njwGNNPq_. {) Xdg4ш&Kc25cA;Z,)kNOҫ ywFbLzr*\fQ 6:*<_bi9&_*|#i<"J|T InһøM!+TU֬hXΪ.WS/քq-8uY%0%lx5Wq22TH S`ɅĮ RWƱ/a})rHJ xJI&mhIx,,uXF҉ݚK[xכ,x2[a<^%u ^ @Gee/2xrI™&d|0C$'ԙLK]ֲÙ2Q,"y:Ii .;~.$=S݀H Ys1:w.eE\󳴈Z7oDA'~`H6c;>-׀cO4?KKwi*)]ݛYȲ} wg՟ RU`AK7z8%z] zjh~b4l?Z64bqEJMZk-|E3k&&Wkӭ.в%ѷUXBN_)n?rz;5;zw,"%NC,XrNG PK2@DRam&VisualC/external/include/SDL_gesture.hU]oF|ׯXYݠE춨+9"}) ɥxއR%9bٙŀh0M<΅V4Svv t6>~ywFLtT76>qљ/Ⱥ~'o˰V ϭ+]pAo͐:T6R͆K{8g3"6X7猡P1)cdʠ`VKRN{:ɖx#9ڟ{mἔچI%lk!ptXH5\+C\!Nt&0Dߡ>8Jl6C1 "ص6H|CtL%x5Hu,Ƴȼ} 2@Q;hZgtHࢤ O*jp> GYOnF7#U+) J Gq1B͈XDx]δb'e@o!1{BW]]LR:%_gu#lMw\0iz/z&j0^Yjt|2[CD ikZ@QTf@TM>ܢZ N>^FxDv|@{h̾`azZ.r[\]М6Sx~D!+4oE$4"oMrSr0 ߿OO'w?}ܦE+J9 _;}ܺ4jWuoѻNJj̳󮦩J=x60Ɯa7.SLVh:9yt10V<Ţx1Ϳ!=n>߽@)!oK4-YӜՋ6k~rH{{zw;`n*`O2B?ҷ1?x *PK2@DR--Io %%VisualC/external/include/SDL_haptic.h=kSGe94 ȶ,6E!hk^t.~gw0wzTUVVfV>61LTI!G;'8ndE{H.'͗/_m bMNV%e$/Ӽ$?Eyqh|:IJQ:*gE~2Or-)uRMQv#Y!R@ hZ@?7Bd"˅YTT)b"XItcGR(*"R˺"Ï,IY&y8_br#<gu1K8I6Jө,FIh#E@/ЂAW{ ("+ ZƅM_߀C04F@6h0"8u > XdQi]V@ C-$^0wM^rQ%H"$!aP|`LuZaHKBף /ѧ,Ne|9EB9U5Dj%{@AZYBN 8^Z[b 5ʼ.FR\Za3ZވiT|j \&HܥO)|!aR@<HOMBN+BP$D R!Wml}g?yӀUuq.Gl:J[-z %#JWPsZFߴ y)Cn`+|J_jY(V04χG^ ,9LU- #n k@cTTNK S?[UpR`^{1(12gթ֫,c+d1i|/"/__ J 9"@V`G{b\g4!P Jq=jbW_``,8,K"?Ǟ'{O@~ # }8UQw? EW; BصDف ,淢7>eA1u(/%L.3o@1K(v")drnB!Ǐ(6>NqalU%>0pb\N Хȍk"~zIVop1L y;5m g78^F7;+4`!GtG`Z M#W`b2 o9R{8M.0B1;ZzމŔ$RI $-&`3Q2j8+_>L MiBQlgE]&jΠث3!׆vȊh8J0MO.|VdeWU&A",/*ZAiZ^]|GݣSP%o4^]7Nh8BR8aL@ md8eNl=~a,#W0pm5Y9ͫB{uTdl@%]Ei#/ld_4$C2A^S74tGB `7Lq(8.;GoNO~x{jIE_|Vz%6/גqG\PuiP ^BsTsv>UF!=p_y`DUWΏx] '>p۳cFnXeP_p=qE%Vdݱ| qVo!L %Ox!sV) 旼v],i'G?ؑh5 tܑ^4%Ͳ#vP[},9;C=dQ%FDل;-Clڀ?d\G}bɱ99;=xdwt>ոNK} =#&alxMXğ~X mpbȸN8=c7SK/"JeXQU԰KW=T?@i~=8rV@8Fup_@vNgNA0,mL.#0[ܸcxf Vෟ  ,pdiMFgLq==r6\#Qkf)qP$[X5Wv 4<_'θ8"% {'C; #P& 6 =b+T9?8{zA SPI6 J@0u`Og`.:X"/Kgec8| rB{ t⹧UwCňȻ)c23 ]cKMv@k|RdBPL_pe:pO _o/^~sЬ!7ySzbPAnD1ҹ l&NWg _Jʙ%cT7T\NmpmͶRY>0kNm3ԽJ-JM5%7hIζAvS49AA#0$0-JƔ 48.hJ M6̖W$+Y_[[o{{~~E Z\a6Ps>OC<]=Oi\wgV*PCS7证c. `6U!>8KG7KsQ4F4:u~/ 0\Z|u}oT|8Xm}wUSVgb.ՄcDbyi-ftZypAN9uae8)kI3M̳00LƙQ$yb|P Eb[}v1o7Ark@i[/VK]Q)\MZ1Iz?_=xruI_垚D.Ae^G`(` ,~fj5[(\5ȆHZSVj]GcE%Ji)~JNL{8"֪"v跃ꋯWGB_%D QVY}?*]bEs2P(I5x|@mOr}\k7`Lyy*Q+MئTC}Ϥ/K%*r%芎fӛ%uyÔr8&058/s'@xãjFuJQ˘hy@Qo,ÄeQ "Jv90l`3޹ Nor%n40ŁtUܪx#\bxNϿmT4MA uQJ9E,䪐%6ؚ9?+l+7JK_ZqKs ձ;x(|Ww|Ww}w7Fp}uU#x,6}syQ&@_v*{X-]BwWļOȋ%y bz_O7R>;5Ύ KGkN6';K <+ 9\8kUE g9IU|<.ebOv;="1{ſ}?{y[ n7Gn5ʽl7tÎn.ch l׹pZvV9TmCTY}.KSX7$5JFfxBkRe>Wp6WZK JM8+#{Wx:ꁀy}rlZw{+"۸']c(A bNEb(ѽמZ91m'>T2*Q"*xOf~.<çOhU m*V|jݒ Wb>b?o1@XD༌*X3:㜕*:\@]^G.( Ƹ]QGY@\ֻa4{hK__ 3k/rFy`V׊(L6? aޜ" !],ATNឍJHgS7nsfӴ;ƾ=T@K)V*>{Psn # kxH E⨊Э)pZj2DY&]iXʿ8aTJ=+M:`\m z_M4yrE9&Az$=]$>FDnMRdn3ln0 'eiL)SNޮ0]p.,[K=͞h1lh3jB3gf&Zݴ` Gܠr)3Ll8gMǍ 6z@L?{L5^]Lu2O<ӷ=ӯA3YT6!:wuW>X# !ǫd] 雹e<*~7P܂uh*)VLbt~t; |V(ᢿ9꾴6ӊ̹N5;;Ç=v*Q5 j^^⎠'k]wRU|t_ ȷXѫMx3hV @wzb{P6U~cC5*z-Em{ں@7-ՉmVA֘x92iwֶs8hl] Zæ0T 8_}_1o*6Zީ VV 캩Y,x25Px\6q?U%+ YɶenIҷg[7k+ϫ=~mJ3< 1P'A#Z[G2+K˵ÝUG/︀Z^kZa e~^Y+LIK"-8w#fgE^iߣ8 e^S}soNPurF{=tp<{x+ Uī͎X@? VC_SͰ_A.wʡ73jMK}r8ULo4t9ٽӆk\Î}9aFc?Hi,= au!l6a9` ^ [6MfR9Iz#⒞^i=$qR]C&?r59iB/b$~CJ:WejI'^ײyFVݹ[ve߹XF8pP NȻd[~ᛤ,P]2Z |K4mٶBM/}, { aNi УDнx!)bNCf{`]unlxҁED sJVtRo="+rfgm0k|la1)$cE$ĥDT0 HVEJMEl_K*Nt>Ux{8W!*{T]Hx陞Cj }yG@O[^Fyxv }!X*3>cdagnTAhi;d[@ܴ2BPg(,B€[te#P¾/co衟tPV9Rɔ TORj{1%u]iℙZ Z Gsps]D%s&` ]F[gz6&ԷSd"(5K J?(#Z@ERnX>7R=.uTyɗϜ@¬AO7ڃhFQ=U@zUz0F}YHhXEshtGmV+wHJVl@%Sp8H >C7p:)[&#(5U^eJoxr)3WOI"yy 9q_vmVcQNajӲ_ 5'-E7u赱܄}+ju?RCh.3Ƈ%QP'љ-aKY2:!>Q?Roeog= C|%h;_,t @0H"FXC05~HWkEI (,v)1XZ]{GG{>|恙tV(2%ZM\0?@^0 peJ˯P\!$T^* ޸8Kţ#$x.6&pVe]9 x:W"L4Gsx-bVAP1RR.hE!Ʒ!+dYElM7˧lIG8o4ʆ+c_D1QDw a2\K|׵w7Ppz\L*; .W+ݼDWTGV-c<(KDKbD(R/( Pc g ͢U YQ fG؏0rO> jK/8Ȓcg!v >Fv-@(M!C{HRRSKrWGM"# 2$}Ab~Dg#T+ sN(?Nr  uvppyQvΝqb' Hehcb"]MDi8Oٝ 針8Y dLw< o>p.ol8KL lx"׀D lgy;@YSj%q*%GA\8*y)ϸwŻP J9q РGPRHP"úX!, U*-{tp歕\,&)˜ ofQ&@}FHzq͕xvrr#돌2 u0^.R2P57ha VYރAH3P%1,RJ*'-"4`7={k kN17͊m0Gl.52G-h$(I2zm 2z8~+QX,LslѬD$N.TY!;*|m{*`[Ȗ lTKX<WPʗ6)0AR|^m H #A27!~Œ' .NvPe(kOHBWroZ 2Gu-a!&^ l8MAu-˕@{Dt(hD~ 1ۆ' 'b^"e#$[ju. Z :f#x#=p6YrOBvI+{MX Wj2p- H YP|LJDvl'>S2l|X,3+W&v][Qy XKpc-> J4>DMۚ~4"(Or}-Ҋr4[,?TtV)ڬo!|ykuC937L2 XP61FaIпũ2:ۼ}tOd3r#3vUќX.Pv;~,d&e˅Ay;T}<{.'XN_@>yھE``=~2} %]Hp=W[ 㜐}[ѡ2 $-+&M$G=rFs~M.*{ Sq(,['f|Uϊ)ҽqgK.a 8=A$Zy8_57؟>On䔭IŚbT~@ 踉kN 2Hm9_؂KMYazNJ@۴."R;?aQZXCHHs6eto2 ^a&4K{fV(RE^^̟IH.<8f(+VjVK6s& (j`XR2:+X!W'|Ue>mts Z~T[tǙ}G-Z M%HpF+["dcEL' Ht# +r>U8-Pڃ1ܝ~P43`Oយ< 2{3mF$)Ù;pg_$VjͶ>yi$ѐɵ01uGuGTm_6e|1$) 7h=bsM$JT5 !w7ӯ+lQQE ^z5Yk-wj2բuPoܾ3w㌦]Q,}CW B'xJ*`وe-y`0=M!oVE;j lhQ3P+$&9B'y`B}0A725- xum}]їiy,յ(Xuu}`8 &1Tp) HF]d2ǔb-USRkFd! 6 ⤭kX8 b;]AWsR6X 8"*. b\V>%ߣ&Μx46Gݞƾ "+*#ņZTúճVV e'HK%ՊJ _'sWzE5șt݃ 8ɟ[gMAOc;-hςQd;5*8/{ƕrЛXbG,+(Z_QwnJk|_+wt{Oiš =aͨ:jwv_U]oz#CtFt-W/P.ƕ{=-˰KH1u!iDhZYB ptgE+֙$T՗LQ=X}y|5DeEܤLVKK[.^uSX[W;OuT AyE=c*uhSx_K j+6~9ʁ8kw ]$'n E8̑ 򆗹@m˄hA _Y 럁դwR=x\{S8>Oחm[o?in ;>Nii:T̞ ir>4cf׽Z΍3E)atX4<_M4C{hJsjK!_7:'@ ]s]ɉS0=Q7J "zS]b 6~u!u(Jz$уCt@0)wX_ѤN4PaYG(v!=PK?tw53sd_އo1tla\g~l3QWὠPM"JrC<Itj{7Q!ƜwĒ>AszFE\I"glãwT}3VY yX}gM~WT@ԥNV߷SfȲ5y ;׮OHvm / ?%Z%[[Bv^UWNΆuSx誸*~_0bA͔q֭TfS\|+󓍮xr$N)Iʀ&l?@mf;bp=ynj^j&Evjo"?ЫKzlN-{w;Px<ق](PF<綜C'Q lBǞμȫ=s7 2x5p>"Wyk2<3t4Q? 4Z%I`0Uzl~e7nsb;ax9O0wN|c P//Sav?|(]M?Z[} y$+ WbZ)FܨŹzЗ;_vNКr+}Ϸ 2H2,=-KIemf}V!)+ =zyX$*} 0@1:\uDNګqk褚lj8vVAܭ!P}r/Z#_N{贘KFi coD?"?FõA rHJtdM])KG&GWE+UG:}3¸z~M(їvtf2|z_}4-%G\>9EGJM*_F^-a̱PGi'D: q_f?tv${9Oy߹q{δI. "v1XOz.N8tkJG mWb4U+:mTs\͞ 7yp" $:_(R-UPډz ]`P~:B~E~"[GF7_my~U}h^=Bu&' TY`@1kfUz~5\f?I(VTPݳn&R^HѧŰRHx̔6D弒!WӔl<Πz='P)2h){}sI!ŞLs20 w߿Vۧuu?5CXWÉɏT5}J_t{]Nף~i^6q$i~ׯąH I<|HH™o@ٞFhmh,Ž~Kkβn2ݩz7f\)9ir;O?qw܎|>z*ߣGO߁[Ϟj~~S)1BSѱ\O%?9slbMַsO_~=ffzm߳Q @$JΑ9jݗ l,'xYkFc(&czp_N aQ!n5f޲G~zb~mO8Ԁ ,x {"$" dyΛk H^tW!b(P6˽Dு4YF AdS "^%qLSR{JD#bq8 Z.8Yǧgǧ#p{U`~05f_^_7MCw*y*zZ]wX\(1%Qc :F>/0u,]9;FY&C\Ίk,vUE/^b<)U&|7/^^Heϳ6][:hcD8Vv)63^qw$妎CFWG Ӭ؜sPH~\͐$i'>90tgE;f޸'3/]:`BnS Q9iaz{Htۄ915(~3&Ȃ~1Li{uË,BA$41E8Eрץ!별* ayM%S4$l%d#vJǏ7Z|4^ =b=ՕeZՌ4-c3l+^y)-~1~v~wr(%O*r}E#|;K%.-[WΌ?5e8ƹ(:RHj.4]!mI4zD'c΀Rl7Hr}Ѿ,aSŶ9%.zsLRnc⃛oe zF]vWXFE l eѐCryŬ!>}uā,dTGHpmNPB$v~:δij\^nCA-J]f\IbΖ;Vi]aBqA +-js՚&Wm11(7:7r O1Xހ@2`^f6+1>4T.C$H83GTRIXzh F7PG a2sDO `mrնѸ4I*"%ywB,p]0Q)rwr6m7ڪp7TvlźLQD&Vҥs]NGC (_QBꏥ\V|X{ƔՐޢJF${5y}WX8U?/局seKKN}/n=rjմMI$e/yqV^LJLcI)fp|{>++rO PaGyK0[狔t"V[1{)s~R+*a9Ӧ|jgX/ ޹aԩ? 6Knq?1g:leSd([ +ǽHk:l7AIUaV6Ao>CDzL ɻ#&ܖ;\r0چP;@G_[<6}SHNs&5/Zbm_N aAJFʴaOtDJxY.ihN=DOF{;X7P1V@[E(- ~35Hҝf,C:m_c_34uJWFrI Tګm~d?#k"d@,C-_8Ctvn}ޓ 5}{:. /~DlMٴmtײ#*ᳯ 7ʱI[+M41s-%Ҕ1Hwh>ߑ Z1sC zr5*i[1q;&|/ $JxĮ70 T4InR"ܝZWt*Jĉ~-NuZ"!ZäͭLuh}yF>_r )qj)6Lz m'Cji.F{D^.J?n1琱O.H?HJ 2Qﺯ3%9h܅vI [*a(*ؑnQ_͙9KA& |/"4noŚ꬘: 'Ɉc\\EJҖY `Q>Zal~BnczL^88>rpg7wzQ#gƩYnn͎QGmWc(ӆ"0&1&vous+G8iXSN0.ȫ9?NWa:g:3N#B,>+C; Fxv1OlKˉ6 GUEVE8mрKkC$!G mEޯrv(FFۢs#ȵdV'hv,W\w,]l+Om"=h|(xw$m뫮Gq/$DZˆlqΆ[ n\L3DRO@u=nS7hEJ=T0BE%r؂\Ƅ.lOvrgw4K ~`P0)Nf}ߓrILq>r(ٗ}ƎX|@bz>.)W_J9r"bxdȮ^j\cȒfm]0L !VBb!zyRIתcFEPLEKY2y^ܔhSD@p6~P=|G#FY؜$2RTĠΗJIA Q#/6%M4JXˮ9VbR2QP#TF"KXP]ҟô"z>c zH F%W{.q^E BVu.rfo$M(,!r$T{ڂJksYI 9.oh_Jt%;f{U3Ve^NLq.*ŸʣBϼDYv S6ٱSe3f-?6%X4A$ؓ eM֠pOu[Q!H؍R93&HE8ɽ޼oBׄBr9Fo MYGsFPJ,C9yh5,^TUE%@Ntw@(kl0\ 9UDpoAVW8=K!)nw 9zo<>4$sZ䂘P+(F֑͉͢x@_a6~&.j*"1+t%}#u}  |Tx-!;b4 v?Pxb3t(JL觐'F4~k gOz'Yo|N/>@:i_R :@?W|gW%(cayX= "dZi.S7m*aq΍\BbVbLeS4+SqN)ʥ+\[HkǽIiW_xi,濏6i",0z!y[bhY1@ pʭi?MH>TfFhg7Hݐ LGb̀HXŜ`d/l-D;`qx; @۞FbEDo,-V> 6_*h]iI +3LG-WUz]iOcEQ;tZ_|k5% rP_E}4cvgi|r4GM}Rx6R1Zs=m%q6DJ4ь hx*q8#AuLIBS( ooh QKm*goTϬutxBVb|fƃYvEoUd?YWŸɫO^Gi`^7&~s/oЯۖ\]7a!EHIԈ\l6^j~YFs9 ,רȌ/w݀<5|eE:J'ޅ_O@TKRH::N:HidOJU6mZ+k+]" >["UyՒq: ~SR׋zuzl5GF-? g>Iioxx?O|m{^iYHR33Āj&&afkʻ+RpIo/t7|/.Y--xgY*rwʍ1kQuhajtnO06vY*Ry5At UMۆi6Q݁CCeX/h8m;_i'q?eV5n MkէTRk8VQ FGd|'2@!ua֏qhvH6PrrzfmYBÑm{ûԋ @ɽo_GQFO'fxdDiiؖ820KǍ>4'*v_SG@).#t4x{KRhhyRazEӃb٠x//;JX ךKV{y0y v8e6W 8sVŤ'R g$]:N/6wXjR(R;!qej$ZG`A-T.2"((A9D0T¸1-Vs7pFFMMv<Im)T5 %Tű]' f@qwp|L9p'!4+ WWtDr|e|bvVcUw*؎v(%jʈE"[ƀ0W#E|0 NeRN&j 9*^]‚A[O@)iuLɡbbVήQf@ 6߉9:cXDݮӴ5Iت\O:YWN&ߒUI=|sal7]unIg)m.$lQ{_ո9kH`z9u~3E|#bn]WG9Ȉ50vo #{r~J0~% rvÀUe07>72L 3y U;>;rZa[8죐<3wOG-)("_tUPC1rעDO^M-d7QO\2tv3rVhVE02$= F_:Nv`Gr4wEۋbӊd8q4C;T{Ѳܑbzݛ|vwCﵫxzKAU̗nS,J{iwr.%Ŧ:GresbT\k' +Ʉ\~K.J!jɒt+V(R?$+J ,3}TK>g;\8KOkډ83˷y;ɕ(:C;Hy 4enVVJ=[ /N, }Vс m5.I"pTq)o&6ktfLzQMaC^˘ƐHb/nRS&BE7taD q0 Po}F]M>)I%BaJhUC~TB-fBTZԧgs:Bn= J4S=v>Y^H[S MykAt:]W6AKEUV"^fXK"W)w_eKj:fiofU~}Ke)eB?5}8ZBZI/y=W'!nCq`T˰oT4&.g3AI u[vw>>8?;DWk5[˳/%#bߺG#NwߟQdt: -~̊W,{D׬kT7!/K~Wb840XuCy!RZ<I>NI 5ڸ+x!b$4.j&hSOO[bҭ'4h(~Z"4ĩ΁r+xרÂtA"i*-TB!1f"j`ptl-ߪs ۳BUqGXQT ]`Xm)ZF̰?w4/qB d5Fcrok(e-;l|NɛpKL$Ե8W.bbwP%pH=9g9Dmq(i}):Z d8/$~|A97& -Jl͙D S O-"ZSTK"Zꁆ4^װC^hxӒ|: {"zj i%rTmg-;LޔAg&M|O[Ƕ`tv\Bvߠ6m}$Z$c-ˆHRF%b/Cճͬv_ZAtXNnқ&s|TJF11(HL@26̻4)ڸ*[mFe%!^0ST(,@_o(ex.JE(惚5R@mi~aRjHwO@i"lZPK݅R,;9!T̗9JcZ G!I$5,+{zRp+u}M vfvZ>Xfq+c1cíZ}uCh{W?}F v:hQ?5<؉Y|N$Jc) ̾YL.pmFEQeo!jg4y>KW#>mB/'äeZ,tTGݛ,da /j>|x0qr/+/Ɲv;Yϭ?Mh&9PaڍWgP_H;?Bdc~<38?/͍dݥ97PDGso2Bp-*a5VfI MbO41I&ݚA Q' 7d~5^LjUh w-}SD;i)OF>>7FgwYQ;8X0ߘ#hWWLO}֦>/E:x|ۃTC"ȖE󋮯'EbK#na+zeYyZ@XXoW+uNob+.>mnSE@+?׎+jw/|ƫ9b6cS}/zlf3HJTe/Gt-> ] _O7me ֝id&m҇5ۺbn1᯾w~jVu[m _E FN?e/D푖epΝp vo)ϓ&.8狛 >ߋ 뤼uÂuz=PK2@DR mC'VisualC/external/include/SDL_joystick.h[{sF_bʩ+=zXMji)HI]X 8$g  w_  NH3<=@ |c剮Zbt֡x?w|~v~&0a©'QY ('f*q4I=->/ttr,X qY& B>,ciA )9,ՠ<0N HfRx)X`, H؛{SU nDGs^RD|tœ"Ջ( QcGԾ- %7  a8j&PZD-el8$$ CmX3$(t*\R8.DՒ/I7b{`ŸxT%^Gd zOt&  xOHx>霬Bq%YT#Uydh,Ein<>hbG!R=`N$C)I~*Չ  Q>ҵGwANcYd$NONNGB2QEwh^|C l ]r0/|U8/=Q2~5@Q N-,c5Hɽ8ct7 hgu00X>e8ˆ픴 ug 'X!bih 8B7~A^B<¼Kq0*U1yC ͡0% ky R'H2~lҚJp8k_|Hd,7 ^:kzsA\{(S 6[?] ۽A85R%ϗ% qp1$YK ISVAAUdth3Ax^V-=*J)qAvc!PeN*1eQ #92 E&DURe%:l5SIsZHs)T'3!oer֘/Y-'B< B}hyI 1d9=ػkԼ~n]7Wnv[yj^y~k͋Z^o;f-7?v[܀j0Wx5OLj;_~/v ,2 Afg?/:w/oFFOv,O+Z"4h{TP 1ъb_ߗLĒO(=Mg | sȣ.AFVa4'l̡VW6<|wyuj?1M*ⱛ˻IPAJ3jk}T=6I噥yݱ9nnwp#sSۄ1UfVlA^;$ u / ӍiqLӁB!qYM>5"dE9b[MYuɐaJnw@ߧS/ZJVe@ńiNB-q)KZز ȔUaP./Z(5$FOjl V2a,h+9eXg s^53[ba^hTi ¬O" 3z- Vzb-ܠSm X7f77NVJh<$nPѦ;ozSBv兑L.kfrP7?CC^]e(M7 D;V 8Wy)]kZTv>2u R_\ ׆Nj#RGCo'P9Ʃ,A$D6ZspdvCצ)[KcBoo+Җ,wvW /8z#o;-zɬ@G2h3K~QB>h`UelqMu"J0) 3%*TwrԊ3Bnvy*׬X4>yoT(Çp"yrWdM&sv2X(g <6=SD]Ҋ:pX*}jub𮩮i؎ENR/(͢IٝI;0:eَV+ C %rrj)d,4Ih*hb27ª\QS?7D|p< 34OL]OQvM$@'fig(:Мz93st;UDJ:J9! MҾ-O6n)+4|x,y& }Ti߃ i5}^\7hX\9|fnڦ͂t'ᓧ>Psz)+E៑u$iM|Pq) ̐ ^SVTrlYv:o97R2߰sz%WTܷ^RGWʵHSgt.Ť)6ig0p6Zw[.fg1+Xa9δM5~T*+)e\' T?WpNk q2 #w~w%W1 IB'j4n]jT~rsd!n>Xr{i#l؄D\gl1x)Z7ʼnC,"tt!Dz%FDq8xu]-rR ^jAkӰp}Yy#NJ_}.=`; \[-S_hu=hV nnkf|NB'=E G\/~8?aQu5.J<ᓭP9f~L1n>kfKlU0tD$fGhL*8%9B*EtWS|G89`1a-K ׭ [Py.%$GʟyOoG$oZ]80}+3]46O1]ͫ&&7!GK^jQ0bV(2@-Cv=2X\]!n!BRLV Gv;wt,Ɏ3I{˜1+t^rVt*-+imܰ_ڽnwu~p'zse.^=H2YWjd;䡬$O3-M &7s>y}wls;IWoI[Po&+֤ sg;ȭTۤl~7VŦYs3gJE=}x/2mgƟTCnJ:h}XV"M]!-$ +JcëP 5i{|ds2z -Ѵ0p2DjYBI`n] XQܩq\X~'C9 RHC@NÌwnJ(=\%4Sَ%w8Ckj.Ƈ)d3+W+(<$ж+44N~fn87?7O TyUV=X$iIm;9|uo`s#bs񘿜=LJTGeeT|t%boUӤ4B驠.5Hil%ʑ3b.$|έXV#viĔ [Kl1d`EB6$gRؗT$D XR"ӘR%e!,3JA*kibMwNcYL9f&-](K't1LI)Y$ Hw]B+@+ hbL]r`&&M͜6lv]=N5/)+], F ZKvl! ?Q*C& ?9ހ N5įY'H-IQΓ2fU̳j&*yܣEsS"Jp[);d%h}XpV9\2aL2JB\Z Hd7C=?B @L,jЭ 24̠ֆ09u^"# ur]\=bK$s|,a$4FpKpw'OE(G^wlgscY:V] 1$()[ۤ׻7Ux#e&^(<*e`Rn=CsK5aP_ @1 $ f.(5T$&&P.Ajy"KBeόN7!iUq@Pe=ԁ9.3f. >DR;LI-J[smáxL ^!68}DL(aSߌb9^TBHKJ1 #';/"wYt'M|?ovf08_J-O>_CςW CŨl[[l:ⴅ_ql#4c*?ʔ-<΄V)`ld8QT.bd,&uLR1ݒdl?Ö?-U@)V.7ڷnU5U|} V mJTSp.8R-\L δstuo<v@Ҹj!tl¤^0dq(TKajGV24οjhRnq[ q Ksܹ i6$ YCqVƖ"f=bUP]Eҥ>VJߠ;.tf_||%~u@ݬt;:?`0ą<\5ZfMs_ӒYiM_CR*m}pYXke,%qOJΗ.連=c..ϥ"F[p9?ЭV^jҺ4-?%>r$~2ύ-d^n 킕ݚE3u# 7.*hR{vQv&WHg9ܴl7R3=69 $6G~lLDžk!$4T>ŁNT,_lcDʯh9S.\q `o¥Հuh&y*"Uy9ٯv XU^^ AF7l޸!3iBԅ'`pDchUw͸L _^^UI$pgqXv-+3%4)av^=0xGxoX OR~ҟ)@m3i[x^[ӦL @ncowQjl y:0f O>BOxPK2@DR 3 ;&VisualC/external/include/SDL_keycode.h[aw۶_{"NbiWmΔRes) KJRu}]>$Ž(o rY'I1/Z tY^uvvdaNR}>t(iv8gy:-3x'l?ʿ#tU(Y3x4cءO\g`MX2ȓt9+fE+0r6l6e &9=(z˦YUY: vg84>Eij%a}*[9?8W8],x690qT{~x^pt!EVi|}+*pt>O0Ch5 0<8%[bY``swlvp?ycȢB4>eiEJ{T>Ng'>%$E$}gѷbI:^!.Ş免8BN D g _VƓ fa`l#pZr0% -"AWY9/$H%H!y1/4Ǎr I W_DM3HK̠u@{ob=d4 ;_ oM>C%yyY<1XtVkQeL'4@*d§nvDX0Es [}ܘRq=}E1b&*pc+ :Q9jx Fb,Q-Sƹ74^e y#xh`X^l3a6p})pn$U4'llյqu]jew(1Z[j{Z5V E{ lEot;3wmRBz+'&B^]ZfչGj"W?9-2#dn?k@]s{]3W<~Z ]q0s/8lw8ťt~70F80c22:ɮ1Y( gSdIN9KQ7 MuNK3*0(H=+=ȩ(.=L^ժY \*Zۜ[2)>L=&ȴ[^x<lIoyjJˡ.&QFvF:PF:(Gw}ʁ\Il ;sn^ hOF.(q1ųD-q1Pq-oÉ::Uj/ R-l3k|nhpTBl`-P\L~%S 6p@p7V}*Ԉ{a}8*Ԙu T#sGvEYM;m@5ԫX1wH:w\v瘎XVkj^ҏVA}CAsc*ZeiKV80 `BxvfJR AN=X^oP2x4_3?Ǘy1ف yw=87@Mshi@jiSMuÆjS* tr3'2O%7 %_-WCiuONG6bVD72jⲉ*G13aFfÂTwx2͡ϱ>`9/X'?/dRDPK2@DRmo2 %VisualC/external/include/SDL_loadso.hVao6_qH?$q] Maҵ@t8SFRva}HEvn $EݻwX.uss]=֮nHgszwO?}U=6j(>7ld&Tpqÿ:Ppu+τ޻Sp");=@Γ\G=;KF3bˤ@MEF r"T@T{ץC`r5HB#N΍Y'9{|miJbؗZR=2+UzXD6tL= כ!B3qEa IvƸC6(襤HA !B(!U"@f(^>3j+hvNJqi 2aV*#ĎY9r5OCj}- rM+Um9 jg{T\[NEBklhy4ms`#. qfTEbxʸ/W$ HHV!r(*S6g Cd Ȃ.ϱyk>2M{xef:ᘲhOgG7 Hpk4I#zrI,`Pc!|sSfK'kas0FZ8{>H{d9]; oemr@BJ?kS JUVR]J2S >8z&>Kdt#ͱ` 65%,!8WC:v„.-sajL$,qnT*Iۧ %h\ ,$!m N$jh5)Or;?z<;SϱۃfJ#]{LNts4zcѳ_י[Y 9XK o ?|Ka*RPK2@DR:%VisualC/external/include/SDL_locale.hWkoG_qe>$Hڪh*7 *EY{ݙ<츈sm?4ȞǙ8ǣ4mx]_uiV{lM]ft:}HO^ӯ~Ms.}j6P? p 5sڔp2+")%}z9Ol%0pڒuFܫk+M*ZhZ麤ڨ|˜jR)oʻFnUx`~}cB0βK~&Gǀjw.lo]c[ԩ7 4FդZxV0ƍ \G |H@,RD"*uSH?!T݆6\(]x2ARg^RBD,#G ź9m] E LEx.|t]ə/ⓑ`b<κMeY>v'tEum\B~ũA8S&и ]p`q" Mk9!;[f-5ᘂX)?y)><Aqk`0i:̠ `d0z<<XGDW _nkWZOVXkaa!ʇ(h(z`*[n0,0x;!Nu|ЈmJG4בR+MJV8Kj 6+`_}&b1h㍮o.n=zO{Dp:G7@T n[p13퟉D*VӨVv"DHwtA Y14j;6a5>*\oHB~1. P MQ$L?z~@7nV\]!1WǕ*BLc(D얕b)zK{Mq"Xq n,d g1+\XIIy!9+H Z AW7F]͵ð5{(tAh;(-&#BA"w].@du/MHN3E~r"X~ cP *,-3eLRWh=ʢb0v |2ax`˳'ϟ,3z1{\Ck5>^=O37F :nNXz Z&S* 5sbr]0r{`}I+*7? vG?a쟲j!6^}[n<Xu:)ojl*w 4Z7JlNwt هyPp,2n.ߣ;_qkyM^| h_RJ:gB@Aui_T,{ĪYr/JzJgi; 9H5>99bú!͐6,x/.ӽ W;/Ce^J~K_ǘ; BjDM<<}SuozW/rߥM/7"-Q/L_ kgʇ2H/C> ?vCbx <ڜqR CaɍjqgPK2@DR7Ks"VisualC/external/include/SDL_log.hXksFίI>Ħ.销2ctYl#iʄf{0pәF}g8n6seu _rvBCQB̰!;yoO>g.O9) U^ĿraK f2e ̜k;^gxL43-Ҕ)>|TcE^bĽ `<`3,|X8!>TpĵLZE2KS~@БLSb<(rbAvŰ0tRq?2̧1=EB{'#XC#-'i-D8bi63D@P?hgQ'-0u2^EYj!D0Bex!D7V8 w*X/:k䞀Sg(xƽŸF4BeU#Ur0E3EiW4[:m6 Te^h4'-,=8g,ILD͋V^p"1z%ZD>(i 6/) Up-euzmm_:WoDb| g.Z*/3lֻ,G֋5MS(W +fpk*Kv \'״ZDIe봯r,Yب v#r0|7n\n\mpppEsGNm7"umsu]nC3r\ 2D3H\dfv1-= 1!C;?Cj7; ?_%c[> hVi˚ f7ztz븃s^ܺA>CŊNUAtږ59Ƨr |\zwvB5{Fys{EFnцVQ_*=]Ssf/W:Z?.WӹroN#U9Ҧrjy%\cӖ\-CuR:XɻGrš<AT[ڀZ3z:u#' 4o4IcTh-&#ymAG^.a=#^hc+09 †r|q{98y\0p쿉_`tUT@}Ui[ ]й_.{С^FA QO:Xծ wKihm}/gPq=x|=c/auS]-%Z\v8h~ec+S혗i{kg6ĚpQY[칪K&NɩFM$^~W|xmr`ȕ1LgG7hN[5T^-ꚮӉ w^1Kf ?PK2@DR.ud#VisualC/external/include/SDL_main.hXmo_A$YNKڢS+ˆ$Bv)]rKrj%ٗ $噙g:b"SbJJcS[}[^_~7b&s1A-K>ͺ֭|ˏk텷˰N g7:U8Z갶ep{a J!WB0V2LBRi/K!JyN{X+|J%-#dr^[C6H=LZhEw.6 ֫hdeJ:%ZfB,}7,(8w -@):—!A,m-l.{6'^XB :E+rٲه$I2 2xslPl@hgN`$H$B&On3r*InuB6);%D|(lՒB(RS)inGℷK(GaA8_5D.I\&HQ!RtxwX=tr JDKʠ& `p^T-l0{lA<%^gIw ~%Ŀ:OU%>_\ m0$xN񌉠Df#Yʻh27Q|z1M痰IYn=ݪY;6J#2k@m=EɄtgd $D,I9sג ף0*Խ5Y|ų&FRŽcPIR) +`S͹: |)hjϤ8I֓3كGډD#Y@U9w LZF<=q©~ ʤd܄/UHLo |AqCɐIl]w9P2  ðOͶ^9{(7\QB}f)৲ủ8i$!샲$%`"?9l8MfI8}Oj]%SVL#+of $D^I_T27Զ/Tgg=EfY-|VMFx#l1_V z[A^ `-ah}=y4ް|5);,m]MHn8&꼂;|Y/ pF꿊 DMEh"#ߗ|ר w+u&}"p)~t.9+BaZqr =c B5a8)"h.1\ׇڔ§ oF d5j(cn=6`xYϢuU=>0F l׭Sձa4t4ZHtNkM(YXJ_sOeF;|egxb1 {1C:S)ewAd%8~lilXp9,5 lcɊa予pn!jGN\GhIkm|lȭqy[tp;ox΂CGFI5XT}^^zA,C鸷|hx:}#LhM95wLB{Yl!o,WTMm_ȯ vk8`p7?< Ϳ3>"آhB=%mjIKM*-"r#REma_ɏPEyz#|}؎ r߳~mF%8sG +^Gy#g?A-~`LExOgPK2@DRP)VisualC/external/include/SDL_messagebox.hXao7_1H>4qEv \jʲ3*[$9ڥlv*ɵ,ܕWʵHyfǓDeTҕ22rw2Vb# z1j8zO?gݳ.MD=SRЏ6Wӎ6px(KV/ZI}eeLAoڴV.х#oH>!vH8j`g!)$ep.M%Dci.)iLsIJc"Ki$Fgda%~9a?K)k%N3%gwn V(-b,&R"%Bdp@m$:i@ #ei- C|X4km8ysR()+YCF2ü.@'Jbʄkxn~? A\D'}:2bq=[;/#ԪLq8 #, 㸃]g1aua"IpZmZn(+ 8\DIK`r)<~38]'@gbSnd)]dnE;[cpP ~%[|*Nf{J}/X)N%bE:XӢȽ;Js:—ao1qHYJ Z jy-A:F ܅8/-R^{X 7HpEJuY/du=+oQhSWc=}wTي-x\\bz(Bb62I  ]=JA梄azS͋ǩbHm|sIqvL0B6Jd&_f6-48ggGxvr3=_oL_X.x9_ Ư`8O/}ifa #O϶^k-OCc^H&>㇅U‚o3(Qʥ/en,Oc)avB}[Ζ;8];[m?AwE XYvݵIT1v`RvcX&Únj&m!DAE͗60fF0Ю}6=a^לZwB!l7c{d{݄w5=^ۑ\AxFZٱMOߓ]|ZG81? PK2@DRT<%$VisualC/external/include/SDL_metal.hWoH_1J ^O j -x5ߛ1B;͛!e1_qMԆ-XH=u'N_xj=B.3gfzl`ߥڑ3_+˄υ5+sLʝjwܧ)=|CPXv%9 s ssYF>eR% XGs2%Z!eZJYc2 >@-ۥvN\0/= {#MIl->NT3ڇ pyA2g>r72$'$dY}ІQ0rR(iY:.P- ,a)uX+ʔʔkk<yG$9৲,JDIEs8^,%XMTMkSjJR$S/%dՀ΅XpӊU"ن~6eVyiTgJ6Y uPhx_͖tK M 1RTcmDN9X{D§l^eO%: ˢǤ+Mb"JʕeR.ҼFbf_\>Iss6KggxsALG\ ң9YdbMSY,.vZx+C?`%fJ'~9 kNZͭsJpJX'fzWx8}K! G2)H&m ckT17K+c clxӂ% seQwI vۯ*ԡ3ʳ:4р^ESݸFMN~UaG=pCi8j&#^ׇbiCiAAB-CU$/ =q/ β/mhu^[yýL<XRɵ#Ȅ >ir4{>,t½)jK(\X4|]]ܝO(bgƩtunQ] 'ۋ! J 'J *Խɛ9XD$$;1njeGZ@tjFW,+}ɣpWڨ DnJY/}vf%)!7-ڻ!J|dB5sV_Ώ))t:Y\hikZȟwa  VǨ>4}ml:LT lJ}8^% ݿU. b!ji0\TGU4ʝlÀزr S_3:[:&~;%6|]Lڎҟqrʓl #q%"ExB*`{"c+PJKtt;c[Qf in~j5( w0#}Z-LA.[/=/wW GPG'X%f7#-P>rvvv^az=n;g^oH zwW_~IGn}Kl2 Y9qͿu:Ppmgn3t8[ҨcR$eğ!$47ȁWD#ޱg ŎI%$*MCF H"9ի-$R^ֻ>Lɵzr%?uY9:I,7l!^"IYg_keH V;JbEрRiZlK )uƸQ6lsk) .R= ,eKudOmT̋w3E6|O,JDФ:JGFͶb]NԸ:.Ք ŲN NԙgLzea0ZIgE.L0`a5QM@])91Ӄ٘kU=c6n)V S@}2x{[0U7bnr!2^\ZJ ^S2Z'z~swʋ⨛=H^#՝t/f|o"yNbOFOaLRǨkPK2@DRDݓ *$VisualC/external/include/SDL_mouse.hZmoF_H?re9vz6J"/9ˆCcEm(.KZ{fvI-+݇G"wf}Y`oGg'ڪ(?ST.ŭɖVOgwO?} 1sIsNxS|Q?=vq3vvW33|!Ysck+:"2] uY0V@ZR}=!HPw*A$")! 0N$c2˹*FjiĚ9SN 3ך=s6)jisi`E4~oٴ-+~)@SL4veit<(hAA* pog`g`ɺ'į ݛ*r!0t&d z%$dvvT5/biaf\W~rn#+q'F*EbŤH9 Cb1ßS -no,)Q0j*?vSi';;2Sv"uNkv~#TW \Ȇ5O:bJBl.Ws`^b~] nחˋ.s .}|?VЏ9^~eׯ[Ljy{AD\ g:yhh bddFs?7(H'$tclQŖ7fЭζt GO1cWmfw|z-ٽGl0z]ڟ_ ;f`i%T0EDa4FGusx|~RԏqmYbgS˼3v1JUR1fnJٳ`9..ώOW­"Ԙ?~48y$"ya=?UIIڋeEEs͍׷Te> +bbe)'ghzLЛ/h؞ O>qG{OwFǝk\*=;dz]Ֆ[PѯyR߫eywt_r2e>9}s@ﮯ.w?wп)b}ߥ 4T ɘOrܽ JNrV 6(\^ehfTB YA\IkX 4=Բ#Gv55-^)qqВk+%7Wp/NF*_T4.C: c725Kق 'EüCy腸I2 ΉJ!{!ktU.}1haETZ(3r:8Age=*H(i$Iz\^[|$ Q1YDJ;?кyY1Jwy{ \VBnn"< y@,gxpqBWQDĩ'SEVs`{ 1C*Oj@ZGQ@K .[uj%㕧2iV)-Dw-_Ԡҫ[y`"V+K8n(x!hZIVcZ%he գkN >ø\/5!ڦFªiR8CarwU- F4XCӥfZuݻuVyׅif_>VPLU,wDAxi30pmB[_!7o~3a)'"a`;.Z/w ̍RBPQ0n D+6K:B"*AdVzU*=TJCv,0$,ߩUEj1h+ ,[% CZh 2=LDZ Uj΀dx~!]!.䯶=֤H{ۂs $uLjcPIR?+)z|5F5!hrN|g>ѩJlF?5lvN2.ӻ1~cwKW TjIe߱4x).sA1'sX3\#1JLGyFxTC3sE0NU0jzbX{pRzxU= W'fMLbA#$4* iNk%3섐kD)ڪ>U ]`:Tu61\r+mTMw2)j)ZW#``U{$1ab%+U !Yf.[ m~LWZ[Ɵ?]]_P`.nnk= 8uآ  8[BMNN;Q%&'HH_&(eu>4+QH;+S+UU]|/\pk$ 8:'3MBGtA+f&' 7y+_'˿ROQQ*د9&?17,裴h߱yeeJjݛ)>2 ybBh1 vD= 뭉rPyaYޣa5Ҕ%"h44c)_|#* ?X& ܈mFY5{ϧZv&ށVa'Ş_Q/Ug+ y0?2Q4ۨvAVQx #n+8immR8=j5j"QauOy;ZZAhHYNu"m׏84mjvvv2i*QiaQ~{CꤴFEcS ~Z2`-"1@{~LlF` y~!vvq/7~~DžuaOJR~/WBs`֜ADmZ.yznvś7b;WtGmw/>2˶?= w*g[SЭڜmR^ndU[ ?vχTG:;fW{M[^Ml[^8{NO%?~n?>{EkPK2@DR$J1 $VisualC/external/include/SDL_mutex.hX[o6~8kd{ـa͜ lŒt{(`qDCR7[J,h["s΅|z4!VYJ:SFFJJХ.*GCz_x] kr;AToe2UK3m`M,Yra$saZ2'+dJ]:yE]a BJV9Ռ"\\a_K$RR"ӘR%eƌE&0B[ZWSrj&S*w,*;̀:nml)S܆ =a|Щ|`%eucT#*](]&1I@Qb `ex\oReUgz:*mt.k(lUCOq #(AxU/ftʎ KIZKa@_<(- (\FIKIA䶧xR]=_B DAz&Ffz &M%3ֵ%MN&*劮.n,&D['OGDoV*%x_X.L:-aΪ(1:W 2ZZ̖􈑭ǣYh4F~{"ұOZ:* =sZJI9 OJ?g- vbiiD+sz4DNq*y+HL"E3Uium$"HH{+TGo}CPسy秗Q{.}oMgSf<7:mΈAVv8jA7[ʎ:ڮ~ T6O?aaΉ{᫴6Pk[WId| -+Q|=hkc572ui[ 2kuoh_w x}ZWfn׻ħ;|\L> X6 Ѻ*Ch:.Ֆ~ S89V6Zurƣت"ىjaBݢ Ni߭K aQ+m /u^mk:.6{Gk.rcB{fxl7~oh63߆*mp%POOjznbF~x@qh7&ՂMi COHhUafYS;pEܵÙ׫|L!|7*M x G ۣ*΢͔tCJv!Gȣ9I)sޭpS<2_[4-7mZ7|3b^q˵r3VHMO@P>+F!<㹲;TW߬# &|nl_}2>?8_I`#Qw{r6^&pnlwN}$p&as{&z#M&#Cc;I/q:{">wǕ} p(C#Q׼]kif|kA?y0/|D|znCs]FLjdLZku~% ~w PK2@DR!}#VisualC/external/include/SDL_name.hmSj@}W !qpK %酆@CJ;Y{+ 9sΙQA47mgnL:ݳ6TW׾Y^O)U[*/[SEmK ?L蛴Q .Ѭ@cf1is"z?]B50PЧ/n9OfPg-*[M֨ ZVZr &-5CeLqd)9&Fp^J{PN^c9I].GǸf-=k߶j,jgmbN{b %53 Ih~# z)JyqTRcI\b<~UF,Six 0C>mwHd t'U8L ,-V[(m5JFdR"(5%Kc}5Ӛ5!4g{jUxA\ƹ4|$W, |(O [3=pRR6hu \G'E11ΩE1J$ư>\,O7׋Ŕ^_ugsgCx`?v8Y1aMSZ<\8|&Έ%EƯ)n'U]J_PKF@DRE@hPD"VisualC/external/include/SDL_net.h&*Ra"{/#%,5p|f4{'"=d0( ĽЌ*ӷ\tG=1~xrqz'/5NT>eI4{>yxvTE`` 1 3 FgJB-qƌ%xii/V(*Fb^$t`MC@&y~hYi `7x6zb&WXBx_ayv 5|Ojx3zu1~;@sNߎ___N@+'+xmE!1 TB '_37^T@Z6.X(4fd-ScL0(h_EB|CDKΝHeJrbKls5/2QFUAW]^ Es"@5q7r 1+V|(Z X6#&:X5 v\{Pg?y]aX|W SФ;P~*rY|O*"3ARDp9Nm||zP;*HXausМi.2;[xFn*kPȊKdsUdzUq٭ҝ@p8j:Nۀ;AeAs=VHwPC&TTYѮ801Ev"2'ǘ@b{?kZ:djsXKWAyGG`)7cB㌽~Ŏﷲɾ) J]|1k2E'RI2"eSFwtk7 ;}1DDXv(8QRDAt!@Sb֨w_ 1 J  +%AQlxrE52*)V A, 2kX>v@At fԅO|>(zŽXu96/ /4[J6HquLՏ6Ie^] 5uyr i ZmYC[Sqh}s-7 y븈1/EGI\ Iߦ`j8/ԜM|UBݼ&l=yGcE{ÛU/l(4-4qkmL jv&W-&MXkTf (L 3Bα1XAg*D2ړ:G: WYQZ)bDld#l0WG{Wn ii4 hK9Ms6CIzx&hKZ:T+ePoma _!op=ށO12BqӣLb2Yu(-%m zd3켰r8)h 1 ڦ.fJD֗5 -GW3V3u@<9,t=z Jg\\>5cR,";Vu3}+쳥^ wVʃ**hj&@OOi 6)=ˇ [7rL(-B&\S+eF]5p6AAb̯5tNUX7ˈ4 /D"5 C i[B+k3 ^nø q 2Rޓ1> 7b z% +G&b!9.W0 8y |ֈb:f "i7I? nz/+2GO P]=w-b:pH7-MMry/Wئ$3j{cv=Z63Q輋KSmu7^vqk4$v5 2 \oYkcei܎hSǖ~jяxX;Ԝ.Ũr l<&cvwh&W--F. >vq>˱H;ak>ƜX^MM5FZ][Kas.udlqc>*׳n'./taVhY/ojE_m5Ԉbry3ґ¯_Ut؊&y#1 K7{7q: ug݅=~|~ɼuFWWWt[”*Xз |~( ܣ-p{Tϸ&\ͷpCn1?jfPK%ʧUV6tb%Bm-Zvt|Ca2=RYxs`wՠ?ŹIdik.ǃ8t1qWU}aTSǺ+̯*q ¹+&0U"2co_Kl1H4̰az.6Ã7fjכ Imo_;Ȇ;sk/ACwD.}EQ5IeV"W.!vo6yp5??[KUf?:x'i5nս{{v+e{$"eQv̇bHG9pު䒞&̛rj̮e 3}ۇdʪADn5nyI-llM7Y9S;>ې<y) \?6LY#seif|H I-EoR1%%#n$v-@\'OH'~[;r,C3!oA[](ZU$% X4߷u|r+YGzO(#DkҀpР"#X%ѱ(wboYZ2=]MZ>.^غ4Ħ= 3d[0&}N/TqT*_fBȿrr>>/_k࿔lKS&K]Na%zIWc'8Եb>m9[[ {rc=WE E7(hAq:,i^?-TCK%FL9G`ۮ˗ZJ8~$|Bw G3PYVd𳅙`/J1OEZU.i1!FCq C U"FcT DŽ0. -.Orz8zz 낦 \KZ<8a@7ύ M 97Sa@+?ddؽo!\ܯ)ժ. Bg?߱/D|7쯨ID ~,2;;L=D%q; ztH 3f!<5͑,G)xu ?aoR1u'2[qj0n|_ktn4gaGH:HS=NGVH a/Jw,lNLfvUuNHVl|\a bI+J_;#Ŗsn{K/ mVQpodgU"lcQ8m1җxcǒ!jH~#N='IyX.v6XK.&?=Z[Pj]^ VwbIIQŏJHak;P~W~ժ3G44.HRiVv`ϒ~)B~g27x܃ɽqI(I>}g|>Z0jz4RSYP4e?cJDp uKi\.i%Je谆lXGG8t@go0'²^(D'֛3l%t#bR`?5ֽ%wNO{m!O4@VA9?*gew$*]Fq)o? |q8_ e3^{ؓD̽șz9!mNޱuJ4)3;WIF^CWMHFniC7A˟-05(v :TխWz=ٯpkBšSGѡ}oHvB:)B$u[kRԓԯ厩}'zQoCJlMZÙ* $wP!HAۚC T Dʓ쳭)8է2g|ʢ$rfs~?e~<#I}%KgӀ)Rc7J|q3:EeIkݱ{#.r?r5([Z^%PdtӤbܰӫO.N9TdS2UZ;mr6knw"pnFDKf;8 |Ch?$3ߪJgХDĽs{Z[swE5V|Yh-ץ`~7LCçNH*ScAXmZmd '\MF1+G'zyW-޽c5Tj+o:bN0zߞҦcŪ5=ԙ$&֐+r$l":.45^C8;)b);Y6w`J ;a(Z"'ȦدĹH3%v"V!Ay{*^Q^l˲5L8(a@zf?<9O'Q  L-J;^q EmϾ隲u(: + YG@) z,k*cRh L@*ߛu8Y6n&w;=h&s 8Ohk!+3=sU |ϮB?J/浊6v3ڱĺ$" g"IP49+vhDUie:-V.y2F+k-Kvs<<.|}k2u\x^̎g}WgJb|:Vu$puϮR@I55/n&Z7a nP݄ bq[xYCuӜϠ=xeMg{i&Pd$npK$Mj^U-g_^ݲ"i_o@*n\CC_Xn1eu {) JU)Pi ,>$ Emت%}f>M[:;4ά$)$SD!F;-)Ol}a&F٨b$;J"" 2e aUa{v/Ll0HWw&'cۅ&0,[>ߕY479h}A6/(IZ P!6T.H[ۏBFEI,%1$e!g@HC> M1J HS$ VIkC#1擉6o{]b="([gjNur 5,NwjSUOAHE-ۋMETB3+W}F;j|պ7F^v@be= [wn:v͐݀78m ۠*E뚣y"G-LHMRkె*Gg(֥`䌣7îhy;FAC+kocE_KsD? 8qZ>!CPB4TWj+ ՕJCuv•J]iT~CuJn0TWj+ ՕJCue]ǂvp;Յe"{Ϋvjc;e)W96SKn1Hiiyƶm+qWa7o`^t7$M|I.o[`wx4uke_Zc6v O]D4{ɔ_Ug׏>殽m٪$͘ػuEIr{u-,9z8Tw?A|WCz|V bKdvJ%U eFV<&3N}W8Y9&9,-x^ةxj@Z2v YKA֒ k)p8Ȫ}jZ UW KkBdɜ3H>8ȆwbWc^Iqj/`%$+ Ȩ'JdF}m Wsc\_cD.hjR+8lٽH/:xW#wT.wy#T6{|u U&j!ܑ c ';"lM,Q02JZE8LDj#4BAGɳ1!* 1jf(4Hn9oSrOt]]ᓰџڕ"CwRlF:ȸχo/`6Ѿ$jQ4v3V'ETPT)a4`z&"XQY{y:GBKo!^R)u 7Ʃ^݃̏V@F#D@m$XTbJ.OtW>YNUJ؅QNCȸAx@g0j&2nC'CIOXG#ӪNoy8{Տ'k]Vp]n[Rr 'uBQ GJuq ZHEj$&8\DGPYD;5~%1~%5dI(fY%OR];3}:TS}ħD$P'':WdcЫ3?Kc!n3!@gzB BZ&ePJFx2qlA0r WԊݴ5+g?u͹pq@e)xOzI3"pݲ,jQ|{ã)zSГ9oݦ(Vz/lqĢ7k"%Bdp-w"O6W! !} FNVdӎB`{;٭7o[ѣ~ .Vi\)jE1)/철Z\eՙh+$+l"R q#&1*YHdQ" m"Hn~3T7dcvրbO-r~k-zJ$i_;G^zްG@xՔc*EY͜o{dŗ= t(` )McM3EﴨT 4E%-y|HjeCTlN|?( f`P؀7?2}! Ti~D]qWl dpD=rt%36/Gg& Jm2zmתh2C$`[WRM;.{[9*˽Ĉwb]c}Nz u>]NǴjGMRTQ$zʐT|uWV|F*A3 JvX'}OYO%GBizM3Ujfwp=rz'\wC%Kly(CY|ezT>G^#D!퍽Xr?8xY=2%k~y^fyʔykY%xH wgo!ߤ. Z # t ^7Xw+VxQ xir9s2cd-QP : * :Ɩ ApE|='tf-rtg(EwJJНh-Mz+,m\olN 5GkBML##!"L/}#MQ۫_ 'rOG{Mн*bfe>8`"g2K ,-ُi2g573[{]ZLv/p!gC¾ %׊ٺXCbE`5 A- \X$}YC^,X&%8,cIXQ-%VrZ|כE -/I~ D+>S(s[|򃳙[B&/QOimU+.xѪ]>1h?Q|Wr:m/̀/>ܵZ~m ~ܚ_dAYz Wy\-8+=ES;C-41K$SûR71!+jIvWlm:/:8pN&lh'R?N_>ziz')s5tKu*֙=S]}ӓWAsm 濻~R^XL,mM]rvNiXR,8rv^.E=η2G0Th _=kܮ>/V@{ak(EW:b=DN጗fǽۉdՋ[w{]tLnj'=zq-)~i$opl'vihGX-'RmmP}AXj큦Oy*r!d `0lƓ]BF)MB NWe+mZ`E*&܈H.P"my3v_r厣qd$HTv 8v1_/MAl`kY&k\^GR1y"ϝӄ_w eMK @~n?7딙B1$wys3ȐRʏT!AfÔ!u,uj}qNFdi&v?{ Wy?Qn}l7rL'u-W,b[u] 6@'@F鱼jFNsezuxhysp^˖VҵBMoZqP-gdZN~s5z^KMu ^q *,DB[la|UX@>rR&\OzOͅHq\f֔~ϱ;cA6k_ u(侮pռL48k2q[L B=%w(oYtd~"h7+k|>)`]u_J #6¹bʕkK|5n׶zlz"_gk,eLAT)2>KbPYXBg=S9Bi=SABk=SI'Bk=SQ'Bk=SY'Bk=Sa'Bk=Si'Bk=Sq'Bk=Sy'RkNLH;Z3wKjT-5t!(QػQU>ufgWt%ص02_3|^hX?1fkyֿȺdъbd^U' k(/ >1%| ddnX2ɂ 9\]MRB|5*M8Q@]6hԸ{vT.y6 zՀ: . igtd5!z_ͱd5̰&Hⷉ$5]KIgdAB|פ3ǫ)DA&ue=#=  σ7琿TG2w2) =Vu>xOMh;)m?g/Esm%0Dp]ru Z5N⍠\>ٗpGxʯXTT'Sʩ:O~ a0-mdZ0,S5C h[ϑו W}}W#yP˪g%-K>wP#Kj?v@kK,&C;| <-[~F(CX==BxyPm7Q%$k;^c5vfh`!,s-9|@Ӕ] EDOʕ̭~: 4`fB&bú,Βi aiֽtыMejt+g:Ogu ;g.r} |$?R?X~0"  i[vA>HO3Dx?<ٴZ%8yw54V΁`9IAC1 JAC1JAC1,JAC1Vy"h6Hٛ)Sq¾5?ɃZVb,A,g֖XM>3wPkx?|P>zP{l#5LAmFj*>鶃L?3{@n7aϲ9L"fci H.^ܫ1jC(~%iQ^e_7UP,p97Xn>A'X)lnfł Fƛ8W4t 7ÊAHr#n4qŒuq [v.=9o`0}l7sl< -Nzn\c,?JT (uC> VM~sZ/A|_=)}e7t)r9/bݖxSob_-ET8Q4x#W$rDdf_J oOh6]/аU!.JGiF?bu1?s0^ŀl7Ym 7>}e+p-3gi6h*DXY"Q/jN Z)Nhv,XUg1Fkۚk\fyZ7ےAvu=LS,;W9'B ,:Kpބe06|^~yU G!~szQ]v[ALal2#qTcV)ݒl@O f4, HhyMQb)oI5xf& x7/9Ћ$'ˀZ8;2 OlKQȘr "ƕM ̌2._G4Eр6 "Z_\3&MDŜx&a(wŪ f=̑+/ S@Mˤ(P@#TPG=Hݢn^.A ?;o9l򶼉;d(2e)Nj==Q5JuKl ?bf75Y8jFg3zfh&3hY:ǧѶ@=W?Hj_cPK2@DR?r) +VisualC/external/include/SDL_opengl_glext.hĝ{w8ϧVIWyUs6''8ƍ!+]cﺺJz f鬐e=zN~]BݓUtbw 7]|;=9=ECoON _O6}/"e \ozr|=&pgh;Vhd Oio]{-{ ;O^  ]uAkٍ5?;"8гs@"=1K(x|}G/ Tqq 9#&ْ\|Os!Q$V%z,XaVz_xHv%m?x/$.`#{HlB=8%NΒnKvv l.z>-;,FFSєuEHe4ӵ[E%I4b|:CwyMt'꺨H!QG)/a MGt6Qd )p2uU5MbbZci2 "bޟbDLMe8:f KVucETVM._F->Gƍ8BqCmv+hI2OLHzuu"*3$Sq,aA:xw#%R MESI 5)䏩fJ)|sZ1Ht k ! `T#A$=i)Hz8R$Y`y@)ΐoq1 xK'a8>yOз'tBd3#p_8^p!{ZrYxwjϳO슫cz8 u; (BOAWXص;/.1;..gYINp/Buz߻wҹt;[}A?$E u= _п$pa髖5-xj1 Uo|hx@5EŽnMA1MQ$TmSαo8Hz bѳ~+ Kd'X&.6p0[zO6j$ѩmTr}Vs"5RPf_Zônq&]\S&.'\;z\Ù;[.=k7x'F^#1}bY~G_O܊z?M7;>rp@6q5836޳,"w-ەNrydյ|.oʾ2Veܛtޮ:= 8V?C tiմ?Eι@'PE0ufV'b,7ef)QA׺9*C: :O2+хRJc4H 7nL ]pp†U.lu6.ܺi j@Nl*PvU.@MBVb<0K+! w XPAJZ@ wU+.@5u\,SdiLyQ t>$^Pkjz"  JG5{L#%M{Y;oAWpI;1cˊ"Ò!4#TDȇG0Cq"[OB} nB5$6t :$#H+{Kcr>Cƃܑ #@d%Srh$x:A/Dlt?>'&|&p<OBw03#;Oݣp_E4A)$Zm v]hzmF@f:@>Ѽv^urn:,zuSvAwvtDƃ`$֖f9&1惶yV];}gv.LN9qpsz[Mr8 `LͼI4zǵۯytCvGty<ۏC5ȹW7&ZqKACi2ӣ5jsaJI1du`iE@`*A&3|ǽ3*5.@~ [up =rV)jX.X` jՉr>pV}rV}rV}:>%-PQ>%-PQ>%-PUҬ T4>U%ͪBUICSC@k t>1'A3kz F$+1?r\U&yG G# \y$V VJ&=h9W0V6ˊg5P[~+jd*-kOV`hV`hk CCS,i4 դ.Cm a_PUTy7S Hz7jTXNS4"sj8&]T+Χy ?"S8'śS T}H.ɥiuB܈ TLlY=]T ;{U;,ԕc #z#賁İ8gDu{ Pu:>PSxA}҆9FK \'$Mnа~az8&󩢊0߲ 9] 8kj|'pf61pN?fH. `eQГ\ʝ* W2Эe@&UeRp2 \CF]xDe]&IDp4fTPM`to DIW|~3m"%Fq:(CM5LQ/p9qépIy}Q4ǫ=p!,QqFMLay BߩxZ;X=;@/:[;dfl;lK& |HO`.nᘉ9CZLk,GfÏ̆^U̚t$RЖe\?wz~S Z>[ 5g[[hX mi#?B%ޘ;$D3:[{'49hiU찥Gq\~帹c8qg-M??sr#8vcg->-U{v2Gq~[OZ:߯d-p0D)EO*ķke,*Z/@%+t¦ yvދ&xŞ9YO5Mp,>GZI[@mI~S0>lNPvj"D'ki\ =\'ˊ^ZS/z]MD=:OM$SSoIj"gǰ#i$oIC@P-c~Zw0*<';ljH:QrԤyPMaSX;>9Yvă[ߒz/;lj|h`oaSk45@>oaSS?^m3}[1G%{O3pףzף?QJd2ZNfk`@dk^JHd˼el|D/( ?,?T\"wa Wŗ6zHV5M]t`Y"cU^ژ_[;$k#֫cCuؙ1?\҉ӣ*nfA>sC.`4WEʥSEEupY$,# dMSV"쉕T˪ Oc/赐 =#ml+>P((F8&sF^Pn5Ijht<okf`"(2&*EӉ6R OEF'FE#7)șgu'W=g^?~hw+*p"<ܫYTr.yaX:Z)4C(E\{o!gX(,dhY9T EL@1Xe{ǤTD$wg wRw찅Qo|ԁJ]ށK0\nLvf7Rhn2U챐qv6QYrB +<E߷ߋ; ~lh\l;f [))gHKQ oD[=m$k=ey4c뺃_y;!QCZUȸ\( j6!Ҡ@ j?r0%q 0wg9fSakQApSaͭ7ٙ]9la~OҬ>i w,Jj,MTɯ0Nšftܶ6I/p埜Iė++`o3>JifuuhyN՗ Jʗ2<⟓9<^h bXt٘OXUp,VT&z@="2DIhWOy =dg"ЯӐ() teeQ4u(Ĭ6NWLOp](LٌC6[T,&N"#{8Hڹ@_恦h*j ҤsPi^|bf|)ٚ\cJЇ#bR8jKc7~@e+¢`o%LWD*kɏQY8,8caTeecQTߙeyK+7UK+%{didWJIf{didWJIfeڂùݤS&@p7iMdRML*i9N"g(9U8u+$܋0e$zm;PпqXQiJCA*qԱck᪫D6os@&I}fepEUp!-hJktW~FvUkW]4F@ToBRoxZT.b욕\8 +44b%QHC֏w]gWѰQY;âYI$#+ eG gryt7F ˛% ?vzfu9Wᐝ/Z4M5&"f9W"QY%KU&GwK8B W0 \.Ӝ +iy戩Ok=+i,8zT'+'ŷEdrQ7m6O%;z6YSt1̙Q).;fydX1(ŷK@n 5`MH%~3c܈^̀~msb d:Tpy/WOa_/wF_QO;8&)]RUZ%it)׋Bm푥] Ld;NMOwJIeHKc@ '(KhLp/_^bT7\3*n ;p@@PfTn?t)v% 5@45hj48fx0m?@ {jCLb0(@bs *%8CRq{iZ {"ѯk@"ifEȕj1DN7$ad 68P ٧:<4l- !\զ>9Nk  ӚiG Ik $Onauk0Npm< Ŷ='m{i 4gfYMVղk@ f ț:l ț*o`GF9pHJ|N!ǭ"De?Xb.$Phw0 gbw}uQ1$퇴G4bغE]Tc7-5UBq [H;W.|K(.'R*If/hم3V/O! 2z5p9CPrQv6΃.!H]aRFi4X)M1,\PrwW,OP/Uw)We~{I@ՒPAt (gߑYȕrHJ][l04.w2˫ueA ?ϹEiT%w$)O^ׂ%T+wU2r^1IX)IQ*PvSMBEZOCIG! >e[H)[)(ݧ:"#Fc/eLw;)+o!^~E^)ο:uQ\XǏ#`g.b91_2-ן6M0`.JӦT28Wz\wyy3C4.zj wgrm$ri9&wlϡ|ªߜ9]U dphדO$>EiZ^Fq=~ p5OoZf]{HJ0%IQ\<܈VXns|mO5OxchOuk6'q -??O <Q<`¡~vshJtσI h>h}?$-3ҸeX~_1zQG]'e$7ʫ h\,9f7ˤY .z|&tQE`,7 ЈׇgPFjդ>4-?Ƞ&cOj$Rii3xQ>|*;!b#ZT}8MȞA׎jxϰTj%8<}?j8-U9Fstu; 5nDICeZ˴+R*HP#'2χ廴6hb\ ^q VRT~e Bwy]~ :KRwtEټ%%քmB}caU.qq(Y\[TUSAbQ;6ڱ|DMڈj1Rn%DwW__ٟ7nŻӖ ^8:v$>$C|gpzRk,e LlNbX$s4B|y h7/ml?|. k&(1ea 0EOgBҾ5EBpMXa+L#:[݊n̴&i&&ɨ:$kRR֭Cj+InG3Ysy_lk?xW-EۮXoױzɇ2@$:_(Uf/;A;N'%w=!^8T'f)Vۮ({rac QKk8>Mkh% 2_!980e&[(}:@:պ{VZ h2L@s/1X2XQPDɡrR?IdQCnvtKZFQ഍qIw<OA pmÖr GhHD~>e6ݧTœp`АaBԥp3*b$vb%p`Lzivv#{J dec>4:Qd( }T:.?\Z Lֵk?k y_nl@xW[K^8N4ԒŪnZ psj)HZW+u\P~}^$Y֥Hv&!Z[ 9eufiJMFf9XqM Z-|)n|ks +w`OBhep)_eխ. Ԃ:ԃ4 |nu)$O26{ZkZĨ|/UW> 8ՇZ[$wb@! A DMN[9eh'm ^[O@+u٨&7gY-Y"5Ɍ:al0kh0\~) C]9WreNWʍZSbD!l^bKH3gv*Tx٠DpNM=ӾFBSBk1JL<#s;grh, OH$G @p/Knxڷ5 ${pՁ@(M94(j@7Fz2j+rf)Gx. ]4.dU-) -ZCe/v'f֠QbF>=s,ڕR3j##d>;찝s9 c6Ke5r*9p02gp,j/K`(!Ъ~I@zX^}w/N>kM24 pX$}m,w>,-/75^njtH@AMrtd D~AIK4PY*^v_"-)c2d/1Rpa nyܱv$m8sc+7771|d1djQ@官?ֆF^-:.7BYxv` N82>=$\PkK+>.ovȪG#P ϚFI+t0Kv6AIpIX|Fܫ8@1]OfIpZ @m=&:tLÓ u5#(>xh@jA:{;$hZpe8o5jur&)pao5eBPxNapFQZ>Xҡ*qE\T&}ցLYirޭ!1>,if6~^޽1uDӇ[1U,L5DHFɗ KI֩Fދ˽UrgLu7/[bˑಧ,>}Ю_ۋͧO;6x˯Cd\]yrr2!pa|TĴ>@.c=_XxŴN}Y,?ه AmQ"c=8:IYĵ^9t( @V)A8?`; sIxLcJBDw҂9X_߭Ig$oe X`fTozV(uOɎ[ 1Z, Z"ć?k/ŇݾĈ)rzluE]|Z"lDbUqM󯯫EyrID]A#f5V"JqdV PN.$U29 &Gmgx˔u! j&4hgB ADYr%EcεQH\ 4ž^Zξqm~DЄS)^J,X[DE4Hd;%K$[r=H],^>ΟYвJx!HȷxB,u4_^[>U8qmw$?c\UiNJ\S3C<{7뗥W#XvKAk@G "^5Cxgcxǜͳ-x%=_FIb"5bBrdu?EA:C\*O0 C: OCxjD;I~2Ӑ9M['I u4"t,ىdʃ,F E\ϡ%Xw;ٳ"R{Y F[8]>~*é?Y>*g=7&LuLtg<5PXJ%"GP>DrRI8ma#mV 3Ј4H*ю*"śė絊5e~yFO ddSQ:PPX "_9_21Rfhg;ɳLw#âwbb! kw눓mv.١,i*.+3Zk*pRs?gAa'Oy'۝ !AD?db;/_篱Z-Mop=@?V:$4A}ߓq-m - sJ+a_cSTvT3:߬b|Jqhv Cn}j *tʆ҈:JNԎK琋,v|dєAdQ+,-:"8Wetad + ?ّr8|ENaqwCQ fҭ 0 #+&hO* ja8|7*^+#pu+l,#O^ŁG^;>@_vɉ/C!x}A@5g͓pVA\@ q`k~@!]80t#+n;p ߊNX u,]QT4;4) (va$[20Hm]S%r;Β%+Uz%sЩ𴌊">徟Mp( K&%Y$A Cp}&zok j ev TpТ:idu TSƳgsHB;1wjˊy=`kXَLY0slv͌ !r)&8[tQ?(yJh~K|3i"۔y_-|)b8[^ sLZ>∖-w7ܰ+*)^B@+gnґӽd"o rػ[/:; .BwPgjmޓNџU L5xT;s)'Ż`rXc%%X?UF5t6|+Dh)sVZʯcV0)dM"DbcDW)[EZ;oKb_N0[B=N4C"L[^ |hVsBHCS93styd>J/3S4*VYYIgYZtQ>NYP=v0Hnd y\9AWq#x1u|QG$^{E{vy1p݄x/_BɗNh⣔B|z9kQ+!szZq!+cxoK8&F}&:x?Uw1Oq[9]vJhuXl\ rDP/s&v͝vQq]qayߋe'AT#BDwr?_9"\|ETE7nhF(iUAg(_9"F,!ZȥP[OOb+oU8Sq~}oOźzPdMK}oA7Ki)x}6y]G [oDv,כ9c+Y_R1}yF#;Jzv"8L&Y+Ʉ&',WNm;%6tC|66`:܏D8uo=M{c*f2crV5H0uڑNdldhCFB,m[$sGEO5fpnӉc  n !4<ԩsP`r'uN}]yMQf"$MPTV+-O%M/?51M:Yw K6O?8I& hвxBYJ yoV? RfE`gp* @IًW.@yN>&}0( |I>69O5 2Bv2ݲ2M6rJDl6츛y9Pn1@Ia@Ե2}O0F6zs9&R)7K(0{JzS+&r^~0-j;(U p؍Ɓ_-RAD݁,@&Ik Y<ꪚ.qKm-2>]1T c+N.v%3LPv,taT?!)-d|#R8-g B|b#Ob$uCV8>.*(j|#2$2;2 ]5E)x!'*:b[(J.4yh)ni5# _8PA9ɏrBSp w4@nAR/s1]7vI^J$BV$Ip18(HRJDNyI6qn,9/+!XhꝟQF_xQ{ZmDy(_}B syE'/*_?;ұ ȥ}u&S=\㉐ᜫp ؕ-\:j%66\?G0BT!Q :ײj)|wP9(R`IH Wa#FƔeu7k#vStnd}g} 1/ӥ_ϑ j!'xfuHh-RE' *}ɞ }xE6]#&@A?=f阆 pum0ә܍.NICnΙ .C_ Sn&p-,_~&_^:sohXB 9l@[J2ܷKiß-Pn[]0$Pw,h (}NwjʎmIO=+-MbKmQf60}vby,ީa0*F̈́(t=_ E@ML M8$f0pB-R)-[em]Ol4ʹd-+1\2lGi2bSX? R8l>TDA8OF*23d#dҐCMoG074vAvE2`ttȜzAvEeV`ttȴ~AvE%z`T\KX7 ~ 78 7| ܨ0 X@4Qi$au7INrDC"~ }\?̍8ͳ<}%M tXy8$BgxEB2۔7TK%N&msmyk*= į!|J GJ ?yL1yܑ#Ws./U| h;4`3\`X'S%Gu ̲ #R e V$%V7|" <E4bHAFJgz18}C n(Mq A3D|J O07/ СMdŠ]K+R"5o<pH2|' 8P ' r\Qik4Nd9I%H(&mEnRkm0)|^'GS,֟>zn]PHͮ'A$bL#_4;4ZY?A$GtfbL*kcz:Pfb\w8>z }S wu**N\çdR $ ݷd%un[$#Mu aU*3b$3sp8 O%UcǐZyT]~C]2x>^R=LxIQH9EruXv_4O`L?Jp]i~;_^7)GGWy y4~:h:h M,a=c3{9 P4܊T+/\1$Aξ`UquVNi=Yt=5e xqAC*}ӵeFX2:5_ܽunN@Ǔ>G+&؝P".! cRQFTϋxl/!*fCՎv(|^~ӥ)uYhpT$"D`$(n-Q#)sU/q.PZ}ևv,&RwiSv`mCtP1I1UZWb ŋƵ,co/d g4Aך x ,EV`I<2L-I/RE1k/2ܰNyu/xԈd<;DyU˷>۲L"<~S!vnMj*^|7M;t˪]HEu_q7>Z2;_IՒơS6gmĮ\ QGvUxY<G餓jje=hdS*7VwsR>X?vH'LCUf#v,UYGmxZ_co懪ɢTUzr3|O.UGt}xZ_׿'懪u ;B^>V-*1:^/mRY:z[KXGObSoD7ߴm}z_]ǯ:סX@^I#.KчE7ɕӦL#ܳ$ w?]C;m\u#kD6y)Fb<YDtUg9 U+3*MNw&p]8_7Kr+$Hp1p^ȸG Y >-3ڋXs)"g<(*."6;Fbz-7۷]M[->珛~E `9_Yqe)]Vt-L4-~A/-S:{ٵPv"GϫDS| \_lۛK)_ѯ^nc;{@1}YQa'pм$dZװbmQ[HNeU-Z} uEp k[hpelG.zîz4q}Ok!K'M.{LNCt5%IWXYp1IBSb]Xў>:n!HՆ9v&u_ٳv#٧^b4K`ٽؽpO wmܿRC* tM"OhzI* 94?ԫCt~rW0cty~niD;S=^{]ۣoQ8{E=U0OhzNR5€$M QKv# $D #tCXXY;TTppRѸJZ.(E^.U%fTTTbUU#IP7 >6_oWd/Ňڨ<ΥCQ KP}SPGZjT3ƹdNx udp.8a'oBfRpiJ0j,Q̩q\Me~Z?Yb1xuvu}`T ޼DȊd:Jgt~pB-FY܋*oR&1wB5H sBMVӠ%i &1Htǔ.518Rw{]qeEro!DzEK6[ r&[\p:+< ;Ltu&<>=db3=áT qQIT^!R#m"=.=mY %QKjT-2x eahI%6*0Mrnnhz@@Z4TZ"Z ,W=$22IWGP64l@3ȡ\:0u7Z*2`]D  v$0JySk4`ryҢ.ԋrMJ+eyKO &6\-%Bq9H:lgflrؠJk(lQ0ō[ɬ5DtUݦm0> @:<l iRtʒ En(yjǓDXZ8?y*R\wyQ| "o۽B01"%q$f-U"?O\opwTY ;'=P|rJ:˯A(YCm Ṗ͈O 0MȱEw8^*#| VVC=Xl/c!Y4myZUgHq0d}׏v(6 Л1\Ve*t8WZ?!c\R(?SʐPr@)l'Y1D0QǓQeL(凪3W^Ͼ?/&j" -ffnff+ #vQ#8Oé)97ù|HLI59[3E.*mR]iL|dTm͡,E֖/Js_%\U47n(yQeO^VnU@簭70)4={Y:iױͣ~l}m|~a0Lƹhˏ&JY 9òǣV+ua<6PcK@=u({X3J/ /, jaBѓ \MBZv!4 غrPq,%\b-EpD'*G48f+ #QOj[nPMB~@znAqLšrٽCO6 y0e[y=S>1/5` ,U" ]da"A,#"1A Z`gԳ1Ўt\7./j=x,{ i'wp.fafY> oZfE ދҏ'c ac'8nY!ud&!y0e &֘ Y: ܣFh3N*&!T!y#02yq ⎪, &)w֑8Nn d)v5YpBɗ Ҁ,{#PN6}z@j}LF )NjDЪ1W?e&YCp&$@QRUo/#?"Y;@ꭖl!zI+ឆ.IpgU<۔3VkGJE@X 'dڛ7@Fō 5.8@#P[}3Wq4 /Q^(|pT/ `]t('kZv~1CXv~1#ش(ZQ @7MMhx``Wjep3뷖q f}-vs`̭V Vj!pV4ln7Z4- ;gVM;cC3,Ho02wk"+sx+W$ӽנ8\"7H ?$]P ; FiQn\W. ps0?`k8<$tlc2`mqD266+vɀ}] 4vnZ@(Xqb^2&/";@wDkp2O@,_L"w^8#Dz R̚?g (SEV: ])@Jj.TDR$ @x"ݢTDpl[$ @\rҀsiKNpc>mUoh2k &fMW"a:euN;B' (1i:Njc W6FvmR߱uo}1.B vXyFԴH8듶Yeƚ E)e>XuEu؍ik$rL@=p`sf( qe R(WF8K v n\5!P2PUdvU9W*:߅~7vIC@N(cH~fSޛ&1K@W)Sx)8N)э)8u & @i2:P̫21^d^9׀?#` DP(^r@G)\&hR&!#5p $v#HxWl U8 O`0vФM 8' h ]\ @.r.q#`?t!j29?)H#$ﴴ9nXI }< 5ԫQ `AMdF?v}@2nN݊CU ,"N }[Mq)/gWPqP׫a;g4 u)ld$E_6S- 4cH1._dKT~ E7)M0J{] @_=eUhj\ݸY{)gL0\\\Y uK.]˳1{F6 b^$cԶ>bZr=o^ۋͧO;j4"\DiZOF ;^wڢWd{ku9x[=~Ө]JIQ^~mPx`i<0&xw77U'޴nd^MD4_ͬPP?L1P cnʓŊ.A8'44w9U~^vnoވ8RxxgtmKĎO^o]ϟM2;n^[T VV@BB)3:5Z7\[r6t;ˊ=2DKPe`' $"m!SO5ϙ>͟KAc&KoLNPU|GWJ_4tV_"8CIQsǴ %x﵍1'ŕkFέBUm@o&XN=!h6nEFX?dGI W\mD}!B">?i__W7[h|Z~_(jyb<71b < .Bϛ _bUo+yԒEP~]6Z`(T=`HH[#GU bC>pꦼֲV⍗Bb%C,U"y~!orx;@ƭ={Y~[6e:\U7D:>]S<.IV%egb=ZT,q &QUŋG|K/H_/d始j%C൱%4YFY jc-JfWwy{U,Zz1ߠ2*w[.rMfQ4 a)_ [z4dҠ]?u^GɠNF (o~{/`~m1j~ʄc-AjuѦj&r:?ioe((66HvK$TD3*Rm>l+擅ZQܲ44=)l\Jqx͓F\D&fZlMQAREAQd>cAЏZn`ױv~"NʲPB=xXf(ro5\I$s !YnݢàWHZm_*bLN2xK#ͻRUwJӛt 6`Oۡ*ӆQs_/bw ;.heϪ2|q/ f#gs4oZ.$dqjqa ?D+-TV\Js33wxXb3kXH)-„#uEԯ+ٔGejofUtsJd(mH5CxZe KO)GgUfmJfP2^B0ZWy5ȟwX(hjʭo(^ub:o5#MBEЏ/?|oVBO->ޖaU0jgP[XTq ]-qEp@ l?.} @G*ݠv -1ַ>>0Sll㸗:nsj1eAS|a+&KŊCsBx1\b^JW (#H jm]J/4uk&SīWJ.tj \܏9XmqK~NS )= $ޏhW|Yָ7A}c X°K_o:4W7yC.'?t^ P%(D_~%b_ /үq9EtߌC..ާ|nIh3yɿ-\bvwB?9jm&%hЗɠa\w}qo^>paER.FtJ?+ rE,']]L ދODz Tp;^:*!Df t9@:*6]]24Y(ʧy 2j+/_(=?df1@yxL;@y~UJnK 7tKby%!Z8%V|4\2)9eDY9%} Cş{%1T@L'JM7|dil 1 E[v'͟;O9l @9,`Zn?3)@( @=-V Jrz2 xқr=d!8AT &@l^dH^RF@*̋x 9r/μ^vIUN/06V83 )M4@XA8n<>B_ہPM-Ph~=\Ns`0cbpJ!|[8Mk0Sоt9\e.u.2GД9\]]e.7.2G[@K % !\SE@pM )]5t55PDqM ?}-!C?}-!C?؇@􇺯44ޖ&CD{[ oKm連bܒnW56JH}rz8YC;P$)M7x >{VFhQo/|aT+pP@{r\VmY!-F?)m טEfSkb*3i1E^\_g*fr,i7D38kSmeOFi=2>w99ܿe27FHAGpqcyoF-/{caE}Zv_v2;jr9:J{i2N ջۛejb#ƺ0Mfqe}yN 8(XiD,9.hS ȃ@v.u2z9Ob6]ʌv~Ld2I{ɇtvrPc_lĖk\BoI:A(;u:4@p@BdQ @ Qx)V2 ݑc۬1>spZpN9 U^IɤT$@[J_\t=+H^ Q,DAOĽ  %Q6 6bk(~iY zenX]Yq;49ɗK|Drߠ@[׃aSD7~}zv*g? |i{:bnV8wtwByHz]͚XTVk^ {_tUGK+F!mkHkP*S\(%T @ H~UHf A!5qh Fr%/#@tD&k'4VU2m" f9 p`yFsx0 \-p?J~@ hi T !2e(XQl<5>ğxHj5 zP"t4@+(%X Z-Л>f}|dЦDž:/"@F]@ʣpRN]V?hʅb{ p H+?dHp0Ӻ). Jb`r,x](W11P!BvC%+M @ĀPWLu)50@&0˚-`5;@H81S*j@#?:r?Ic 'z}|a @ *LaJ#"܆ އBy-6b۾خ)r|( ^ ٔ JG\nY%n$3k |?&qO'6zSt4֫nx֞jGLrB* &1Fu*Q,[eZ8}U]#Va 6Q1epS&TNVc#D^le%ѱITw +rE%fxũX%咇ڹm?>oVuaPYN2jB /T9B*,0عvM'c5t}T_﹫bs: j#qT^ӻ!6;Q:t( ;LMN$G=NH Ý6rQKpXrqLe5/oY3z|6M> (92Betr%j։WpȌ~<ǭ~+u:s>>W\ˠh?Xpq=Rv7݃`[E%<%_1xU>~PMDPWv`ytn4ko8ɈتzX)wavg*tq:sjI:KYOT?>-:joEa-DGݸQ<esEʧQǯM܈"^:0}˞Vj4Ck+!ڒ} HTFtQ.wPnÿΦ(3Y'{ƃ"m7Hhlb_)§n=F:E&1n\|JjasDpw(pHuܾ}kIv2r0ʼnY뀥/fGipߠyuo^˞kޡ8ynk7C{z#T~Op13UO0饓̲ P-YAvb;yV*l( ",hR, l8U@6D$&} "ܢ-6t=+\u@Ai&!-#.BU(C՟cHg!Ұ NXMZ;ƾn`X=fk[1> U QӞٺZ^; XEvjN+-=䬖 vZ1]25?']O 9_TنWx>CnuKO֤$,Dޘwf$5r^!g]p fXWʀIK}A߾y%a$ΔtH u&'S" 8 շ9^,f;2 8r9* XLcXЉ1cp G 4{Og[5ú{6qTu m)MU]<8x"07qTu D`nQ5k'sGUO&7H(hQЦLSC@J@0M-?0M ?pa@.:UVTª\XuP ?pa@.:UVTªgd8%8.M'g?g3rFW4ĉI ~RP4 sJ [$ o0E>^oc~FZ[* ^lGT4H [r¶cjWYQqXN[&i=FK/E=,q[RzPyGZ\>V\ ݨs0)\㔻QMNJ87<(yQMNJҟK7Bo<"pqt~P>V,˹D.?T,yFQ>V,HnRH<TdbϜdh8m\[1a B28b}e*7QD"(ؒ(_GSR;ZraE+-2XԨ_1< SbTu2-kcP\dR?5X@Ē>6X=B6ҘcIP7L5!4z%ЍrBmVS!Vn-cVcY^aܬiNg|i:ަ}$ֲ_~&}|\FX,㉃\$d t<{' XgK8Ӿd˗Veh["KlbRT/!Z}wGJ>l9_&Cϑa|YyŞkVac / t_ YE(;qȍ\2@6W^{y;xo ?R$1zCJdV$%s'tĽ^iFxs)Y( PdnoLfOi!W$ @gV hO>vO>vk =pB5ZWѺs1xZ:!nOK#?jjg Brfu55<"$h֞5 =FXBX@q b<`gp`#@Tf=e?\P'b)uW(4@fu@:LCџ *&>γDe`7LOtNĭKRQJH1]I԰!]u)dm爐}(J<50=[/#գϵHʄz$曘ύH8P~RStW"Zf#K ?.&O&cǶnΤA1I~'0' j<ˬʏ{c~9l:S;`ʖlQV,7C6KfXn½B*Nx"*jtm[  :[OMUmFC|celTRnބ@k,|@k u{!/"EID"ڳOH"hV");" ut<{6F=JۃY_"7v\K(K pn ZK{E+%+2gCy;G9r+:J>>yi@<}z~?2m~/WZ8Z{)Oqq|Y^H?ELl똯j )QNGhhΌ5;*IʐM;:7~\/^7Jr^1̳T-LFMHۂLfUr $;6nͲ*vV44u(`މkSĸ) 犞:,w>.pSKW燚)nz݂ȈS`xfYx><=Z)bYyE=]лo ތ XcqlZ#7 L;rhNX_ ]= ɐ.QFbWv$`ڎ:IΥj(Ps//I6WJC[\& gM`AtġzywPzvSɬDg*bSRQ))eQ/[N< ODeLXֺa4U9~fX_-C|e8Е>ヿ|.P:/h? یAI9q)-3N>`Mـc4ҟP2gOnd p nz=+6Ծ7SH> -#mg. 0=z[Fa HlnK5 .(@ԭFC2'|Y"q'RW~iF=Ipj, 5\< {z{H}0M7)Kjޯ ,kqm;Tt)JM\Կqy;PeNk&/k `O2),%{S1Xl>:4Us=9$YA;8໚4mm#bf8tDoH #|FV<Dl+B JmQUU `2@u!ʐT- [*WZR{hhd@ -[jI5x^~`q[i(OshzGضeDXλI'K'd  kZ*R/n˃=Xw'z>0l7O4?ܚXkZUa)RKJ}c+}機1>0J?% 6>0 )d`?Wca^[O,LV/ q+#LmS,Am'!S Nnq5$nen&Kԑ xIM꟠u|p쉟zL&YhB dT@ {道}7sQ0xXoI࿳Q>)8-Hs=N7ZoGYFz_\QN-I?M.8],,+"7DA''4! f![ڪ9!&ydAG :lްDŽB$Î[o|P9Y"ORqL潭y{NtRHH%;nV)\@>qs@a~UX 9>6 OGnf`6Z'U>jT]Ͼ˰Rj0a p_8gF/`; WgcbӔ  "?-^EF=->@dP@ aDijIZkPgdps)ozg9* 0ޟs-[3j\( Bf5 1nPp*hSo hhS qh)fPhS jlnUcKp{[C5ƖP5t Ҹ=T-CҸ=-CmLu1 -^g?!Nיf8H;hXd/a|2E> rLg%5;dJոEZ݋:h7U2iv ޴!\aBHشiqJqA[zא]R#2vJٌ'H(FXX-8Y=A&SR5 Az2>ݦ]:t"Iޢ}2d-0GSj0rJ+$-eaOUhl4lIGri"K 48cc&z3bggBS^o6>8މ `fUFN5dw,x/V'dm6K['`l^70n(Je).m&3/? 92^Sՙ,bK+6/fJw{X6 {,1܍W?z4Vkn`0Q3AvPzQy<=>LDՅ9+. inPjlK:&:V0sH>7,833<ǫ[ HKM@Ƶdqe U,;0ɀH&Vn#V9r#ez&*[ݶYN&f)fzSىYJP&)%_~ 0N cQ[0ϣ@ Ԃ4$ 'fR6xЙen<Oް30,pooח-K+ZOu,{p1x'~Sxf8;C IXGZ ^̨{G_O=0:zK?Sz{0Dп.m`q[Tyi^7>A?wR%9/]b(_cRd E_ ~nBj$nh8CsZ،“L[(2X5br9t,\hϖ׃8xt#`\|+9rj Y:9.;.eY|V%NRfndg8mޢopR(5s>IǨQ0rQF<܍(eO+^)?;[lrdڜ LTokr$9 n"tKv5;72Kp#E*n|Wty(@UX.27쾉Yk)eYv)L.sIuؕ3i1a&]a7"7Fc0I1M3i˴p&%Gq&]Gq&Gq&L%hnUՁ)Zzoau!:Y/++ ɜܐj8$z޵*@SGXCjCcbdd]PJ޽v;^sR,dZ޹XQ-=\# 6nl*:r-tit[IX=tl#IS.vzDl߄~u=/W􆝏5{^HXIY:K'MqQ> +~؛c/jY;zlGicV>;G*&*SzRȝϢB EĶ}.U8tBeYQ/|tkM&ӻp.ۿ{::YE>q8V1p @4 t]]9i/Cj >(&p^Vd}X+{{qV*DS4#M 4Kۊ4?: O4nbBKx~_%''M>|j(#D{̓$,`g' {-hZTN::ͫKZO!͘9BO?|bGR)GKC.Ɋ:YvH1-#O~LFnHrS<(xyNd~)no ~CИ0, 8Nr6SJm)VpiLx&W⩍~D,t.d]\Y' ВD {sR3l&O(+vktÏd4{!2-&v3Ue)'4Wp:inߒ9(U kEPiwvK=”@@Ľ E-6= => , HLbjlUKV2}*z-Hxm>aeօ/bbV9 f= C(}Exdx]-۵oNNC oKwAۃbOX0XaBqD>[= #9#v\`@  py@pάKsV)A@vjy}Rlx\.+'KYV +Ai@⽎Qpt=@pBIN2+`O6_ۭ2uP)k٤) g6^IJךg>" kfy+9IB#d!Ge;BĴ:=EA>8;B)q9t/&DK#?KQy_tso6yaq~^>x>3E竜Dw<9Ϊy=wRbiMw-:8e9E:g.禿VSѸ3CeI%Fjk,':Ӓ:]znOpk>֜Ҡ@Do͊9B)~E5毻qE%Q߻9Mb?/OIM$ ̱(,Eo<&LD7O!aҰ5x!NbRcWɐ/NU]ZčVP(? Q+ Vp5bOC5ڿ%\&Zo:7{wԒF\ o!ȉ@M_IFw/ޫ\OZ9::u|~]>yʊݏ&PXf0 }Y.bSƻOPTh9|X&67|h>zυ@+I.~k&jxQ'rQsJ~&MQibd7 :dwi%ҿ.ÿBe)z<|wF+ 4fj TwWJ3CJd:l-gͮCLz7!e_<'IaF|&%: }'F/M!mQp@o C@rE.u$]sW@?nug}õ))"nt@3Ɲ< tk{i$Hd8f怆06\ۈ.pM na>h9eLإ=u{%V٨UӶӻx,4 \^ԄWx5RSSҗԘA]]-Y2[UK׀V;i@I'"I3hQkǟ^,| !1{ @xE"׷Y% JƛD""u}gZj"*KAj{J83|o)&TSo'c9'Iyf8]w{hk3@+ " V眍lȥI5䇤M4%.[K rE=f˽]F{ؓRlğ-G>I@3|x. $!bi1]"DLsL,Eބ뢛nʄ7o%BVX_5Zmo1GvNrUh+ρ'k;׃/?ȷ-y`A.@[pcf@gB*@,*05PuDx!pBZt,"E("4u 4,hY5`ToDG6;v@]LDGpi"]H{bs)8"Sp4C٠KU}Iz }ӫғ~9ϋsbԥ_#W ^/gM-yeWrW>UX?UefWcSzQaOoC*ۚfE!ՏdVHfa։ M;8Ý*=3r8CY4,ẸM(7 cZ+܅P?/;DtU]K>^u `4wqFP/3K geJM2hC 6)KfE_++ILkΜFՃI)ւ)J́~D/pvYg$_;/yWƦ{9{{QQ|hQcpC|5Ң7s79͠~6y\]LN۝?S?z1"Za2jroɨv2#d[/lzyI~^oڏZ-\뿅СtJ".62x? VO뙐 |ko |M:Z IC^$uxKd$^cYya'vg4T:#nK6\ӌD4좪O6Q$7T}z tNGnepZU>\ 6rp*Ean]@>qEF983ե+Dj8K}M9[pM2˱T %Ai"S@h[w9H>c feՍA[1C9̗DdM#~4Q-N}ťt( QD! l@w׉& VO+C sVsELm1$M~@՝P>^l"I6*hՄSlbzū+FS.Ҽ: Zb` aZ#lf7гSv{#7a*;*@zߊ Ԏ=1 QfgM٠5botlP a"̤ sYfB6XI2|˳1!zyyL/ 9|w HT"i4/00F^/OIj=ȧh.m>'d4c0%V+WO5Thg#Sa>m™g=Y+W7W%s&j@,S t^#=`-aN1P@V%d2#f22ǧ#?8F΍`Bi0)jrx9CJ뫸dA{/~w88OHQXRVl(*fcN٦s|3c*YbfV'NWE<.:UTVMrŚl/yV$ eije>6s$,U)*ÑPe9i,Fg Ry#LRBѥ;3\Fk7˂HTZ UP2ű36_m6rlw1R}Qo~Ogqv*"DMY&.d'_qv39AW(iG5ՃϨ;UuHX~EE|\ɬsizEI<|tf{[ϓ=E\52ê?Y~x|H^ԜWZSXB[da{>e8o}u!*c{rW9M'lZ̖ RsY*bl_}bln魲qƝ.\JA>쀿4tҔӚ$Oc^Z5Pkl=d:QSʍ#z}S4*7l;~9H'3̃ㆬOZ !)0TnYQ#,m . xOs?׋_|}Z/3J^h14y&, X|F ibR~*7u'Y^CzaF3]d:CBMi^5U#G 3 H8[F ; gkH!(,:ǛVnj Pm{H-` -#~7GUjpŒ Yh+qSU($4_WzI.^@:\i$CSI֪ۼB_Kc30z4z Q{~׫UUcG0Nf+GĂKq|t"ntKīesёHŤ䪁y4jVP3PqDnn Sd7ghLMn-Q\HIz-CWY\f}ٸS8(S @ 4G hl8/yC/!]O ,/xc>b: @̧F'Nd>YKft۲&mX)gt53r K(*fU,(§e+t(DЀػ VIs<(iVNl]fHKUJvf6.Nک2,n0t7৏!/ DlD =! rgK!U%|luCuJtm`lֵRQu;E{ , Rg3$ f<<42?MNѨftqaTug(T0ns50D;5#zztZ+ĕ q腸uDB1ErE;9P2飂jiWdu r{NJw*-tf~9SEl{O@~|ղ(x2f_ &ʬj9uo,MyKm>]}/dz8qѫ}qb/c.i"TYXO>bf^2UKl\bͮ$2CwRzJ0~o6cr:́n1rz$Ӯt$Nx68˲Tq4*&P5 pcM[ +a\Mh&@lT@@j&#/9ijTMP3c}D5CT,4,`Ot3b>Ԡi@* `Gǹl) rL# Bk%}ؔ-8hf^axľ0kre)Lea)V\אx7JW3I̋C`) W`0l I@Wg{kr:icݗ4=(42D=3n4ۨ Z_N/xɩN8և:ۖ>DlYrM`3MfmGFO޶CK<*^&%o=IQq)eGv]{nҰowATT6wUD@M`sPWA\l T6w*;`v pT6w `nj45@M 0754{==TmMC5iPtMk=T-]hihihijfo麒d}U5u*?~CF8 prb&h8.ɉХ{zKؽF=v!{׸?\`=8KåfRGpك?\j.5{p=8KåfRGpك?\IV@r$zN|ӬȻ"é?a+`O@I.|5*"@VC,:4BW-9.?&Ԋ,xD ))$aT4DFaFS#O@[b}-\_.;5iF ]xTp$:`4ʵGAp5GP:ex}zE1t,ҫIapmҙġ3&"#@geVbihqSox`7g5hK3+ެ7t IO$#(rW4BVw:2/d1=Sug䕂ձI4")SS& 3S5ćӍ-1ԏCi ZG>dBE'9L^{cB.,>pKLo^o^`=ys?kgMdhd% [~H>U"u3a_x"r#ov\+ҏq*&V@Uq5ZwM|\(4= U`!E ң@Q;P 9ܥ M]&9th:es;7!mm|wmki8|sy2XBwa;W w"!H="19b&MQb8 _ȭL=N]owiNe'R_q#N^z"\g WGի:qNYPrMڙ,6/zCy0|S;/6_=,]yKFB3?:N)8,  9l55^X$/Vkgic8o8)/VJє'61'2BJʥE)paUBK>3RTx>4{d;YyCR `Q)iUGb] b$Dp)mRj >1GfXĪh;eKPs6s̕WqTN^ϢF/ 2JH,Rȵ䘺|8LS]EBOQ PD48MɄ'!A@ޫ5smz =`62 $#gv$AXӕ'6yZٯL\9Z4m71MJ@j'^tkwҌ HΖgxN'8n&* {8)T0l'A-7S ?Mk`:M~!5rS;F-x Jq"}{sf I.ElDg agCy2K"ZɯYQ"Rt(GanNQ3v059!h`,N ZuE(\:#D1Fr}:'A0A$?J_wz:3ȹjXG}]Ɍ\3g)iq]1 5X~4칌!zz++>|MJJƢleDWN1K`dˀBy/՝'OԈ%?em| ngg uAz5 2ĺ"a`o`[0fTЯ1B|$b?f$u[oDaLz~M#@?,5KW2\3~m#@?~C @eԾlDq7 ,vwrO2=}n~_!$[.,0Q**mA\PmDE܉e 6E.nCcG2iT!LiqC0ϩU$?r”;' CSZa8Bu_x+Y^ǟa )l&>|Q/lcXYi&SDx+Q&۸A6,E ~ټ珿G\eEJ6` QK]ƾɬ}{嚹Dm7l{Fh)ݪeZ]݋Ea`"H4axp_FLQטXrJYIჁ$o{\Bk>"VA (_saI5JK\(amU*v!JVMOղ]GOVCā'|?KÚB5o=-[7k)<{J[֋iӓI*[SSru^DwGOVzA5=%/E̍5GlU{гu.CZ8!{If/$v3sa}a]*"v|clEJE0E:{ c)B~#\п_ .o.M0M T@Df4 8@P(%DjfSM[Ve )r-'0/@2RgLfIo7+z0]Xyo ڡi-2pܟDV\U!i@ :*HI7XZ-ʌf MhW8 Fu+wDf}\V - *0HDU\K s6FIjǵHLՠ5"HAOÊqkjrAW\ҷ_jxwEP.*HҶZtͼ έ)kִAɩ"-?>v ȍV̏mmI0 )z:ۮ/P+c^w4fGtGG|rqF&QL_k3G"Bņi҄h0P6yT2!BYᰪhE:Dz:#;@t>Ya{΄ fep~R\rU G ʤ~E ;'LJ)HOZL2 Y{/u$*|,+A2ސ'mD7@s8HGoBA@f"*n6KSgQ=o`X%L#X#MvzCg3CK;D@.b!s:84co 2 r,2@ۣLQ/5BNrgkD2hpܗ@m-mMdfPo[wpAq "@Hh8JzOhZҲB [lV@΂BrFUCA2 *rȀG1d#gj_i^~h"bwBu^j4񪧋~HV?zPqk]cfVӽ'+e8Ǯ'CacВDė`[E*.:T%jI6$ W@6ָ ]#̲ɵL{ڿ.6.I1hZ)n !0h۫5pyOUSI"boGT"ÓEHSo@MCsY(RPpz΁Jt&E ^ƇOR a6Z)5Ap @m)ťYz IځlwՆͥ/ѠCW:$@a%Hl<RN  qh@Yu^̀tm-VYP|EPYp5!(![ pq0Z 88 J}cyyz3( hFd"uHZg! D5AQNRA!\b$}FQD$Ϩ hM2t?@ʟ@AA;E .OOs囓,s8]|Ra`$0n Q]} m-9sAKA4[;0{QBqq|9HȬ3MY>AHf/!TiŒg[\d/)C\B0Ch+\U0:h\40Zh.Jjwļ(#څ:yҮ̺љR}֞sSOo~ԉ?[_V`I rYWKK] s2kV!Ȕ_``1PB)Zm2J"4yVRu)*)[rd)X*_U&ث^*]=rʑ7>B<iOJⱶH*Qd|iOW@wI@4.vu"~Kd|6Ks",}pR&Qep|ZU(rIx!5:uG19ms\z߉ؐW'~S bg̀ʥTw %.pp$EǠzˇZ "wdLH:~} -:7`4Y#"K-+.^ ]Kz (D1b|5&T/yVmK{F]gKRmܾZkIqܓ^;} ;svyc8&iV;?]6X<>&{-{ ޫ鸫H<2Ίq(b ɔ2cQZ\u$`0jI{1QiH-ʙt6OJeɓd֛+$X{wGB4MRlOa5TX uMCҕ@Ώ+prgN,XnϣN*JigN]l}e$p0xnY#잎 y.rw#D:*Y/,hQ!ʤGqf:_ `sd"3/UZV)T݂SwO-0EYwTJnFRzBT(|G%\R3|ZS|MRfnM &trV *k/*uW*v׫]%w'PTb-XQ.z`w.ܽu9^|6>Z 0"je$K߰bzo|"N\ϤnRE,8y?nVB}e% bh1.6gEIWel'禒+ 9"OcXhR'0FrxeZLSm&sq:|$(Cu6n5Rv'n53Xg) d\ROXGq`/"s_bQde h bZp4nGXbm$h06;or  Q.Z_YTe>1>zeIft sθr x˳)U"YjUKpa-Zl6S9 0ޅA m29NeqijFRM؎U~V.UqZ9Š_f1gA.w͏~Lh ;v v)USU?o>U?o?o>s} 3Yy!ݰ0wMt֎YB3V&܏ï*8ƹxJGE:CJ (+w+)+?NOe?NK?`÷ ɫ7rV\ްQOq&: βM`] U.C?Ohu,v S:UcnǬYOn:yݱJ"ItdpJԄ _#eºOߩ~t3>;s:Fѻm-jX:45[aV-خt n*jz+ $킂z/3%2wJk~J@2JTMu #?깫txy]'ԏ}z-Ѱ\zTWӼ@ڴ"EDTZW 'SX/FXJ/#ҟYP,(g 9_RX*hE DX|-att5+3{*E&K;]C։j, G4Ow0GY+FҢšA+PtzKF s:$V,<~8!8%ͼ*Dj/rd?N T;jZ7OGg[qwQtL,^{e= xdodj|uTao8lBŭNE@bgyq?}I<n,gהԞمm;,Y 3Zs:?T4LkC'k\wSDe5Jz~"w'JjQ^&rGD(\d4x &v[8z\j qp 5#Npۼ7)FqDA\\VaeDiVYf/Ƃи+myM>\9|<DjxLՉ^*5 ϯ,}JH:ki,Ogdփd~ l ?y/۾[xvzzH[Ԧ6oe_fٜ Dɒ:씆;dO\kO\olꟸDv cW c^ }IR* Ϡ0a  JypoH<&keq}R hKOdɨ眉[ "4^{aNY\mͳ=|=3@*qȵк8U|H5oմ,\rQB#ri̜muﻓa!_VmN1oO{݈xNiџI9.S%{R :klS+2!1'4QvE6N-g֣\@ V|/jV$le!vm ފq.ڙRJ)#_r|ZcY_Dx!N%5ڂnSr xR0NɯPӰEoL&3U8/VYPo$#,|WZ|_  mE)eU6Cqu2(^U#v[i2"&\b2ZWi_ͥ<6n}(D5gzbH:؅0$MXJKK^+yN! UtQ zCIST>"(A~Ƿ:oa+װU\ԫVtG{q {Y(ȥsf/h9-,DOh|K;xY^k/ 16aNFGyANP`B86(>LtYS!Չt5P(YNOݺwzo~tH mJ+y Rhׯ g6UTN=PBjg//S! Tʤ4&@REU=~>܁m)aZW嚋\H>=Շ8Ѣ+G~^G |e$FFni&{VAINoxIx}\P#`~ܓaETme=>~*U`s