pax_global_header00006660000000000000000000000064133620227110014507gustar00rootroot0000000000000052 comment=c979e8a9d23cfec82dec81be82c3c8f9139fa04a libtelnet-0.23/000077500000000000000000000000001336202271100134155ustar00rootroot00000000000000libtelnet-0.23/.gitignore000066400000000000000000000006231336202271100154060ustar00rootroot00000000000000*.a *.la *.lo *.o .deps .libs INSTALL Makefile Makefile.in aclocal.m4 autom4te.cache config.* configure depcomp install-sh libtelnet-*.tar.gz libtelnet-uninstalled.pc libtelnet.pc libtool ltmain.sh m4/*.m4 missing stamp-h1 compile ar-lib test-driver telnet-client telnet-proxy telnet-chatd msvc2008/Debug/ msvc2008/Release/ msvc2010/Debug/ msvc2010/Release/ *.ncb *.suo *.vcproj.*.user *.opensdf *.sdflibtelnet-0.23/.travis.yml000066400000000000000000000002321336202271100155230ustar00rootroot00000000000000language: cpp compiler: - clang - gcc os: - linux before_install: - libtoolize - aclocal - autoheader - automake --add-missing - autoconf libtelnet-0.23/AUTHORS000066400000000000000000000002321336202271100144620ustar00rootroot00000000000000Sean Middleditch Jack Kelly Katherine Flavel Daniel Loffgren (https://github.com/RyuKojiro) libtelnet-0.23/COPYING000066400000000000000000000007541336202271100144560ustar00rootroot00000000000000libtelnet is released to the public domain: The author or authors of this code dedicate any and all copyright interest in this code to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this code under copyright law. -- Sean Middleditch -- Jack Kelly libtelnet-0.23/ChangeLog000066400000000000000000000000151336202271100151630ustar00rootroot00000000000000See git log. libtelnet-0.23/Doxyfile000066400000000000000000000004551336202271100151270ustar00rootroot00000000000000# only process documented members in our main header EXTRACT_ALL=no INPUT=libtelnet.h # libtelnet is all C OPTIMIZE_OUTPUT_FOR_C=yes # put all output into the doc directory OUTPUT_DIRECTORY=doc # generate HTML and man pages only GENERATE_LATEX=no GENERATE_RTF=no GENERATE_MAN=yes GENERATE_HTML=yes libtelnet-0.23/Makefile.am000066400000000000000000000010001336202271100154400ustar00rootroot00000000000000## Process this file with automake to generate Makefile.in ACLOCAL_AMFLAGS = -I m4 --install AM_CFLAGS = $(zlib_CFLAGS) EXTRA_DIST = Doxyfile libtelnet.pc.in libtelnet-uninstalled.pc.in msvc2008 msvc2010 autogen.sh autogen-clean.sh SUBDIRS = . doc util test include_HEADERS = libtelnet.h lib_LTLIBRARIES = libtelnet.la libtelnet_la_SOURCES = libtelnet.c libtelnet.h libtelnet_la_LDFLAGS = -version-info 2:0:0 libtelnet_la_LIBADD = $(zlib_LIBS) pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libtelnet.pc libtelnet-0.23/NEWS000066400000000000000000000015361336202271100141210ustar00rootroot00000000000000Version 0.23 ============ * Fixed release errors Version 0.22 ============ * EOL handling fixes * allocation fixes to Q option states * portability fixes Version 0.21 ============ * Visual C++ 2008/2010 compatibility, with solution files * va_list versions of the printf helper functions * fixes for ECHO, TTYPE IS, and flushing * improved autotools build Version 0.20 ============ * added basic man pages * major revamp of event API * new APIs for ZMP, TERMINAL-TYPE, NEW-ENVIRON, and MSSP * added a test suite Version 0.12 ============ * added pkg-config file * telnet_t is now a private data structure * telnet_init() allocates memory and returns a pointer * renamed telnet_printf2() to telnet_raw_printf() Version 0.11 ============ * fix autoconf rules to find and use zlib Version 0.10 ============ * use automake/autoconf/libtool for building libtelnet-0.23/README.md000066400000000000000000000627271336202271100147120ustar00rootroot00000000000000[![Build Status](https://travis-ci.org/seanmiddleditch/libtelnet.svg?branch=master)](https://travis-ci.org/seanmiddleditch/libtelnet) libtelnet - TELNET protocol handling library ============================================ http://github.com/seanmiddleditch/libtelnet Sean Middleditch sean@sourcemud.org The author or authors of this code dedicate any and all copyright interest in this code to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this code under copyright law. I. Introduction --------------- libtelnet provides safe and correct handling of the core TELNET protocol. In addition to the base TELNET protocol, libtelnet also implements the Q method of TELNET option negotiation. libtelnet can be used for writing servers, clients, or proxies. For more information on the TELNET standards supported by libtelnet, visit the following websites: * http://www.faqs.org/rfcs/rfc854.html * http://www.faqs.org/rfcs/rfc855.html * http://www.faqs.org/rfcs/rfc1091.html * http://www.faqs.org/rfcs/rfc1143.html * http://www.faqs.org/rfcs/rfc1408.html * http://www.faqs.org/rfcs/rfc1572.html II. API ------- The libtelnet API contains several distinct parts. The first part is the basic initialization and deinitialization routines. The second part is a single function for pushing received data into the telnet processor. The third part is the libtelnet output functions, which generate TELNET commands and ensure data is properly formatted before sending over the wire. The final part is the event handler interface. This document covers only the most basic functions. See the libtelnet manual pages or HTML documentation for a complete reference. #### IIa. Initialization Using libtelnet requires the initialization of a telnet_t structure which stores all current state for a single TELNET connection. Initializing a telnet_t structure requires several pieces of data. One of these is the telopt support table, which specifies which TELNET options your application supports both locally and remotely. This table is comprised of telnet_telopt_t structures, one for each supported option. Each entry specifies the option supported, whether the option is supported locally or remotely. ``` struct telnet_telopt_t { short telopt; unsigned char us; unsigned char him; }; ``` The us field denotes whether your application supports the telopt locally. It should be set to TELNET_WILL if you support it and to TELNET_WONT if you don't. The him field denotes whether the telopt is supported on the remote end, and should be TELNET_DO if yes and TELNET_DONT if not. When definition the telopt table you must include an end marker entry, which is simply an entry with telopt set to -1. For example: ``` static const telnet_telopt_t my_telopts[] = { { TELNET_TELOPT_ECHO, TELNET_WILL, TELNET_DONT }, { TELNET_TELOPT_TTYPE, TELNET_WILL, TELNET_DONT }, { TELNET_TELOPT_COMPRESS2, TELNET_WONT, TELNET_DO }, { TELNET_TELOPT_ZMP, TELNET_WONT, TELNET_DO }, { TELNET_TELOPT_MSSP, TELNET_WONT, TELNET_DO }, { TELNET_TELOPT_BINARY, TELNET_WILL, TELNET_DO }, { TELNET_TELOPT_NAWS, TELNET_WILL, TELNET_DONT }, { -1, 0, 0 } }; ``` If you need to dynamically alter supported options on a per-connection basis then you may use a different table (dynamically allocated if necessary) per call to telnet_init() or you share a single constant table like the above example between all connections if you support a fixed set of options. Most applications will support only a fixed set of options. * `telnet_t *telnet_init(const telnet_telopts_t *telopts, telnet_event_handler_t handler, unsigned char flags, void *user_data);` The telnet_init() function is responsible for allocating memory and initializing the data in a telnet_t structure. It must be called immediately after establishing a connection and before any other libtelnet API calls are made. The telopts field is the telopt support table as described above. The handler parameter must be a function matching the telnet_event_handler_t definition. More information about events can be found in section IId. The user_data parameter is passed to the event handler whenver it is invoked. This will usually be a structure container information about the connection, including a socket descriptor for implementing TELNET_EV_SEND event handling. The flags parameter can be any of the following flag constants bit-or'd together, or 0 to leave all options disabled. TELNET_FLAG_PROXY Operate in proxy mode. This disables the RFC1143 support and enables automatic detection of COMPRESS2 streams. TELNET_FLAG_NVT_EOL Receive data with translation of the TELNET NVT CR NUL and CR LF sequences specified in RFC854 to C carriage return (\r) and C newline (\n), respectively. If telnet_init() fails to allocate the required memory, the returned pointer will be zero. * `void telnet_free(telnet_t *telnet);` Releases any internal memory allocated by libtelnet for the given telnet pointer. This must be called whenever a connection is closed, or you will incur memory leaks. The pointer passed in may no longer be used afterwards. #### IIb. Receiving Data * `void telnet_recv(telnet_t *telnet, const char *buffer, unsigned int size, void *user_data);` When your application receives data over the socket from the remote end, it must pass the received bytes into this function. As the TELNET stream is parsed, events will be generated and passed to the event handler given to telnet_init(). Of particular interest for data receiving is the TELNET_EV_DATA event, which is triggered for any regular data such as user input or server process output. #### IIc. Sending Data All of the output functions will invoke the TELNET_EV_SEND event. Note: it is very important that ALL data sent to the remote end of the connection be passed through libtelnet. All user input or process output that you wish to send over the wire should be given to one of the following functions. Do NOT send or buffer unprocessed output data directly! * `void telnet_iac(telnet_t *telnet, unsigned char cmd);` Sends a single "simple" TELNET command, such as the GO-AHEAD commands (255 249). * `void telnet_negotiate(telnet_t *telnet, unsigned char cmd, unsigned char opt);` Sends a TELNET negotiation command. The cmd parameter must be one of TELNET_WILL, TELNET_WONT, TELNET_DO, or TELNET_DONT. The opt parameter is the option to negotiate. Unless in PROXY mode, the RFC1143 support may delay or ellide the request entirely, as appropriate. It will ignore duplicate invocations, such as asking for WILL NAWS when NAWS is already on or is currently awaiting response from the remote end. * `void telnet_send(telnet_t *telnet, const char *buffer, size_t size);` Sends raw data, which would be either the process output from a server or the user input from a client. For sending regular text it may be more convenient to use telnet_printf(). * `void telnet_send_text(telnet_t *telnet, const char *buffer, size_t size);` Sends text characters with translation of C newlines (\n) into CR LF and C carriage returns (\r) into CR NUL, as required by RFC854, unless transmission in BINARY mode has been negotiated. For sending regular text it may be more convenient to use telnet_printf(). * `void telnet_begin_sb(telnet_t *telnet, unsigned char telopt);` Sends the header for a TELNET sub-negotiation command for the specified option. All send data following this command will be part of the sub-negotiation data until a call is made to telnet_finish_subnegotiation(). You should not use telnet_printf() for sending subnegotiation data as it will perform newline translations that usually do not need to be done for subnegotiation data, and may cause problems. * `void telnet_finish_sb(telnet_t *telnet);` Sends the end marker for a TELNET sub-negotiation command. This must be called after (and only after) a call has been made to telnet_begin_subnegotiation() and any negotiation data has been sent. * `void telnet_subnegotiation(telnet_t *telnet, unsigned char telopt, const char *buffer, unsigned int size);` Sends a TELNET sub-negotiation command. The telopt parameter is the sub-negotiation option. Note that this function is just a shorthand for: ``` telnet_begin_sb(telnet, telopt); telnet_send(telnet, buffer, size); telnet_end_sb(telnet); ``` For some subnegotiations that involve a lot of complex formatted data to be sent, it may be easier to make calls to both telnet_begin_sb() and telnet_finish_sb() and using telnet_send() or telnet_printf2() to format the data. NOTE: telnet_subnegotiation() does have special behavior in PROXY mode, as in that mode this function will automatically detect the COMPRESS2 marker and enable zlib compression. * `int telnet_printf(telnet_t *telnet, const char *fmt, ...);` This functions very similarly to fprintf, except that output is sent through libtelnet for processing. IAC bytes are properly escaped, C newlines (\n) are translated into CR LF, and C carriage returns (\r) are translated into CR NUL, all as required by RFC854. The return code is the length of the formatted text. NOTE: due to an internal implementation detail, the maximum lenth of the formatted text is 4096 characters. #### IId. Event Handling libtelnet relies on an event-handling mechanism for processing the parsed TELNET protocol stream as well as for buffering and sending output data. When you initialize a telnet_t structure with telnet_init() you had to pass in an event handler function. This function must meet the following prototype: `void (telnet_t *telnet, telnet_event_t *event, void *user_data);` The event structure is detailed below. The user_data value is the pointer passed to telnet_init(). The following is a summary of the most important parts of the telnet_event_t data type. Please see the libtelnet manual pages or HTML document for a complete reference. ``` union telnet_event_t { enum telnet_event_type_t type; struct data_t { enum telnet_event_type_t _type; const char *buffer; size_t size; } data; struct error_t { enum telnet_event_type_t _type; const char *file; const char *func; const char *msg; int line; telnet_error_t errcode; } error; struct iac_t { enum telnet_event_type_t _type; unsigned char cmd; } iac; struct negotiate_t { enum telnet_event_type_t _type; unsigned char telopt; } neg; struct subnegotiate_t { enum telnet_event_type_t _type; const char *buffer; size_t size; unsigned char telopt; } sub; }; ``` The enumeration values of telnet_event_type_t are described in detail below. Whenever the the event handler is invoked, the application must look at the event->type value and do any necessary processing. The only event that MUST be implemented is TELNET_EV_SEND. Most applications will also always want to implement the event TELNET_EV_DATA. Here is an example event handler implementation which includes handlers for several important events. ``` void my_event_handler(telnet_t *telnet, telnet_event_t *ev, void *user_data) { struct user_info *user = (struct user_info *)user_data; switch (ev->type) { case TELNET_EV_DATA: process_user_input(user, event->data.buffer, event->data.size); break; case TELNET_EV_SEND: write_to_descriptor(user, event->data.buffer, event->data.size); break; case TELNET_EV_ERROR: fatal_error("TELNET error: %s", event->error.msg); break; } } ``` * TELNET_EV_DATA The DATA event is triggered whenever regular data (not part of any special TELNET command) is received. For a client, this will be process output from the server. For a server, this will be input typed by the user. The event->data.buffer value will contain the bytes received and the event->data.size value will contain the number of bytes received. Note that event->data.buffer is not NUL terminated! NOTE: there is no guarantee that user input or server output will be received in whole lines. If you wish to process data a line at a time, you are responsible for buffering the data and checking for line terminators yourself! * TELNET_EV_SEND This event is sent whenever libtelnet has generated data that must be sent over the wire to the remove end. Generally that means calling send() or adding the data to your application's output buffer. The event->data.buffer value will contain the bytes to send and the event->data.size value will contain the number of bytes to send. Note that event->data.buffer is not NUL terminated, and may include NUL characters in its data, so always use event->data.size! NOTE: Your SEND event handler must send or buffer the data in its raw form as provided by libtelnet. If you wish to perform any kind of preprocessing on data you want to send to the other * TELNET_EV_IAC The IAC event is triggered whenever a simple IAC command is received, such as the IAC EOR (end of record, also called go ahead or GA) command. The command received is in the event->iac.cmd value. The necessary processing depends on the specific commands; see the TELNET RFC for more information. * TELNET_EV_WILL / TELNET_EV_DO The WILL and DO events are sent when a TELNET negotiation command of the same name is received. WILL events are sent by the remote end when they wish to be allowed to turn an option on on their end, or in confirmation after you have sent a DO command to them. DO events are sent by the remote end when they wish for you to turn on an option on your end, or in confirmation after you have sent a WILL command to them. In either case, the TELNET option under negotiation will be in event->neg.telopt field. libtelnet manages most of the pecularities of negotiation for you. For information on libtelnet's negotiation method, see: http://www.faqs.org/rfcs/rfc1143.html Note that in PROXY mode libtelnet will do no processing of its own for you. * TELNET_EV_WONT / TELNET_EV_DONT The WONT and DONT events are sent when the remote end of the connection wishes to disable an option, when they are refusing to a support an option that you have asked for, or in confirmation of an option you have asked to be disabled. Most commonly WONT and DONT events are sent as rejections of features you requested by sending DO or WILL events. Receiving these events means the TELNET option is not or will not be supported by the remote end, so give up. Sometimes WONT or DONT will be sent for TELNET options that are already enabled, but the remote end wishes to stop using. You cannot decline. These events are demands that must be complied with. libtelnet will always send the appropriate response back without consulting your application. These events are sent to allow your application to disable its own use of the features. In either case, the TELNET option under negotiation will be in event->neg.telopt field. Note that in PROXY mode libtelnet will do no processing of its own for you. * TELNET_EV_SUBNEGOTIATION Triggered whenever a TELNET sub-negotiation has been received. Sub-negotiations include the NAWS option for communicating terminal size to a server, the NEW-ENVIRON and TTYPE options for negotiating terminal features, and MUD-centric protocols such as ZMP, MSSP, and MCCP2. The event->sub->telopt value is the option under sub-negotiation. The remaining data (if any) is passed in event->sub.buffer and event->sub.size. Note that most subnegotiation commands can include embedded NUL bytes in the subnegotiation data, and the data event->sub.buffer is not NUL terminated, so always use the event->sub.size value! The meaning and necessary processing for subnegotiations are defined in various TELNET RFCs and other informal specifications. A subnegotiation should never be sent unless the specific option has been enabled through the use of the telnet negotiation feature. TTYPE/ENVIRON/NEW-ENVIRON/MSSP/ZMP SUPPORT: libtelnet parses these subnegotiation commands. A special event will be sent for each, after the SUBNEGOTIATION event is sent. Except in special circumstances, the SUBNEGOTIATION event should be ignored for these options and the special events should be handled explicitly. * TELNET_EV_COMPRESS The COMPRESS event notifies the app that COMPRESS2/MCCP2 compression has begun or ended. Only servers can send compressed data, and hence only clients will receive compressed data. The event->command value will be 1 if compression has started and will be 0 if compression has ended. * TELNET_EV_ZMP The event->zmp.argc field is the number of ZMP parameters, including the command name, that have been received. The event->zmp.argv field is an array of strings, one for each ZMP parameter. The command name will be in event->zmp.argv[0]. * TELNET_EV_TTYPE The event->ttype.cmd field will be either TELNET_TTYPE_SEND, TELNET_TTYPE_IS, TELNET_TTYPE_INFO. The actual terminal type will be in event->ttype.name. * TELNET_EV_ENVIRON The event->environ.cmd field will be either TELNET_ENVIRON_IS, TELNET_ENVIRON_SEND, or TELNET_ENVIRON_INFO. The actual environment variable sent or requested will be sent in the event->environ.values field. This is an array of structures with the following format: ``` struct telnet_environ_t { unsigned char type; const char *var; const char *value; }; ``` The number of entries in the event->environ.values array is stored in event->environ.count. Note that libtelnet does not support the ESC byte for ENVIRON/ NEW-ENVIRON. Data using escaped bytes will not be parsed correctly. * TELNET_EV_MSSP The event->mssp.values field is an array of telnet_environ_t structures. The cmd field in each entry will have an unspecified value, while the var and value fields will always be set to the MSSP variable and value being set. For multi-value MSSP variables, there will be multiple entries in the values array for each value, each with the same variable name set. The number of entries in the event->mssp.values array is stored in event->mssp.count. * TELNET_EV_WARNING The WARNING event is sent whenever something has gone wrong inside of libtelnet (possibly due to malformed data sent by the other end) but which recovery is (likely) possible. It may be safe to continue using the connection, but some data may have been lost or incorrectly interpreted. The event->error.msg field will contain a NUL terminated string explaining the error. * TELNET_EV_ERROR Similar to the WARNING event, the ERROR event is sent whenever something has gone wrong. ERROR events are non-recoverable, however, and the application should immediately close the connection. Whatever has happened is likely going only to result in garbage from libtelnet. This is most likely to happen when a COMPRESS2 stream fails, but other problems can occur. The event->error.msg field will contain a NUL terminated string explaining the error. III. Integrating libtelnet with common muds ------------------------------------------- FIXME: fill in some notes about how to splice in libtelnet with common Diku/Merc/Circle/etc. MUD codebases. IV. Safety and correctness considerations ----------------------------------------- Your existing application may make heavy use of its own output buffering and transmission commands, including hand-made routines for sending TELNET commands and sub-negotiation requests. There are at times subtle issues that need to be handled when communication over the TELNET protocol, not least of which is the need to escape any byte value 0xFF with a special TELNET command. For these reasons, it is very important that applications making use of libtelnet always make use of the libtelnet output functions for all data being sent over the TELNET connection. In particular, if you are writing a client, all user input must be passed through to telnet_send(). This also includes any input generated automatically by scripts, triggers, or macros. For a server, any and all output -- including ANSI/VT100 escape codes, regular text, newlines, and so on -- must be passed through to telnet_send(). Any TELNET commands that are to be sent must be given to one of the following: telnet_iac, telnet_negotiate, or telnet_subnegotiation(). If you are attempting to enable COMPRESS2/MCCP2, you must use the telnet_begin_compress2() function. V. MCCP2 compression -------------------- The MCCP2 (COMPRESS2) TELNET extension allows for the compression of all traffic sent from server to client. For more information: http://www.mudbytes.net/index.php?a=articles&s=mccp In order for libtelnet to support MCCP2, zlib must be installed and enabled when compiling libtelnet. Use -DHAVE_ZLIB to enable zlib when compiling libtelnet.c and pass -lz to the linker to link in the zlib shared library. libtelnet transparently supports MCCP2. For a server to support MCCP2, the application must begin negotiation of the COMPRESS2 option using telnet_negotiate(), for example: `telnet_negotiate(&telnet, TELNET_WILL, TELNET_OPTION_COMPRESS2, user_data);` If a favorable DO COMPRESS2 is sent back from the client then the server application can begin compression at any time by calling telnet_begin_compress2(). If a connection is in PROXY mode and COMPRESS2 support is enabled then libtelnet will automatically detect the start of a COMPRESS2 stream, in either the sending or receiving direction. VI. Zenith MUD Protocol (ZMP) support ------------------------------------- The Zenith MUD Protocol allows applications to send messages across the TELNET connection outside of the normal user input/output data stream. libtelnet offers some limited support for receiving and sending ZMP commands to make implementing a full ZMP stack easier. For more information on ZMP: http://zmp.sourcemud.org/ For a server to enable ZMP, it must send the WILL ZMP negotitaion: `telnet_negotiate(&telnet, TELNET_WILL, TELNET_TELOPT_ZMP);` For a client to support ZMP it must include ZMP in the telopt table passed to telnet_init(), with the him field set to TELNET_DO: `{ TELNET_TELOPT_ZMP, TELNET_WONT, TELNET_DO },` Note that while ZMP is a bi-directional protocol, it is only ever enabled on the server end of the connection. This automatically enables the client to send ZMP commands. The client must never attempt to negotiate ZMP directly using telnet_negotiate(). Once ZMP is enabled, any ZMP commands received will automatically be sent to the event handler function with the TELNET_EV_SUBNEGOTIATION event code. The command will automatically be parsed and the ZMP parameters will be placed in the event->argv array and the number of parameters will be placed in the event->argc field. NOTE: if an error occured while parsing the ZMP command because it was malformed, the event->argc field will be equal to 0 and the event->argv field will be NULL. You should always check for this before attempting to access the parameter array. To send ZMP commands to the remote end, use either telnet_send_zmp() or telnet_send_zmpv(). * `int telnet_send_zmp(telnet_t *telnet, size_t argv, const char **argv);` Sends a ZMP command to the remote end. The argc parameter is the number of ZMP parameters (including the command name!) to be sent. The argv parameter is an array of strings containing the parameters. The element in argv[0] is the command name itself. The argv array must have at least as many elements as the value argc. VII. MUD Server Status Protocol (MSSP) support ---------------------------------------------- MSSP allows for crawlers or other clients to query a MUD server's supported feature list. This allows MUD listing states to automatically stay up to date with the MUD's features, and not require MUD administrators to manually update listing sites for their MUD. For more information on MSSP: http://tintin.sourceforge.net/mssp/ VIII. Telnet proxy utility -------------------------- The telnet-proxy utility is a small application that serves both as a testbed for libtelnet and as a powerful debugging tool for TELNET servers and clients. To use telnet-proxy, you must first compile it using: ``` $ make ``` If you do not have zlib installed and wish to disable MCCP2 support then you must first edit the Makefile and remove the -DHAVE_ZLIB and the -lz from the compile flags. To run telnet-proxy, you simply give it the server's host name or IP address, the server's port number, and the port number that telnet-proxy should listen on. For example, to connect to the server on mud.example.com port 7800 and to listen on port 5000, run: ``` $ ./telnet-proxy mud.example.com 7800 5000 ``` You can then connect to the host telnet-proxy is running on (e.g. 127.0.0.1) on port 5000 and you will automatically be proxied into mud.example.com. telnet-proxy will display status information about the data passing through both ends of the tunnel. telnet-proxy can only support a single tunnel at a time. It will continue running until an error occurs or a terminating signal is sent to the proxy process. libtelnet-0.23/autogen-clean.sh000077500000000000000000000005101336202271100164720ustar00rootroot00000000000000#!/bin/sh if [ -f Makefile ]; then echo "Making make distclean..." make distclean fi echo "Removing autogenned files..." rm -f aclocal.m4 depcomp config.guess config.sub configure install-sh missing mkinstalldirs Makefile.in ltmain.sh stamp-h.in */Makefile.in ltconfig stamp-h config.h.in rm -rf autom4te.cache echo "Done." libtelnet-0.23/autogen.sh000077500000000000000000000000761336202271100154210ustar00rootroot00000000000000#!/bin/sh autoreconf -v --install --symlink --force || exit 1 libtelnet-0.23/configure.ac000066400000000000000000000025551336202271100157120ustar00rootroot00000000000000# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.58]) AC_INIT([libtelnet], [0.23], [http://github.com/elanthis/libtelnet/tree/master]) #AC_CONFIG_AUX_DIR([auxfiles]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([libtelnet.c]) AM_INIT_AUTOMAKE([1.9 foreign -Wall -Werror subdir-objects]) AM_PROG_AR #LT_INIT([win32-dll]) AC_LIBTOOL_WIN32_DLL AC_ARG_ENABLE([util], [AS_HELP_STRING([--disable-util], [disable the building of programs in util/ directory])], [], [enable_util=yes]) AM_CONDITIONAL([BUILD_UTIL], [test "$enable_util" = yes]) # Checks for programs. AC_PROG_CC AC_PROG_LIBTOOL AM_PROG_CC_C_O AC_PATH_PROG([DOXYGEN], [doxygen], [no]) AM_CONDITIONAL([BUILD_DOCS], [test "$DOXYGEN" != no]) # Checks for standard headers. AC_HEADER_STDC # Checks for libraries. PKG_CHECK_MODULES([zlib], [zlib], [AC_DEFINE([HAVE_ZLIB], [1], [Define to 1 if you have zlib.])], [AC_DEFINE([HAVE_ZLIB], [0], [Define to 1 if you have zlib.])]) # Checks for header files. # Checks for typedefs, structures and compiler characteristics. AC_C_INLINE AC_CONFIG_FILES([ Makefile doc/Makefile doc/man/Makefile doc/man/man1/Makefile doc/man/man3/Makefile test/Makefile util/Makefile libtelnet-uninstalled.pc libtelnet.pc ]) AC_OUTPUT libtelnet-0.23/doc/000077500000000000000000000000001336202271100141625ustar00rootroot00000000000000libtelnet-0.23/doc/.gitignore000066400000000000000000000000051336202271100161450ustar00rootroot00000000000000html libtelnet-0.23/doc/Makefile.am000066400000000000000000000000411336202271100162110ustar00rootroot00000000000000SUBDIRS = man CLEANFILES = html libtelnet-0.23/doc/man/000077500000000000000000000000001336202271100147355ustar00rootroot00000000000000libtelnet-0.23/doc/man/Makefile.am000066400000000000000000000000241336202271100167650ustar00rootroot00000000000000SUBDIRS = man1 man3 libtelnet-0.23/doc/man/man1/000077500000000000000000000000001336202271100155715ustar00rootroot00000000000000libtelnet-0.23/doc/man/man1/Makefile.am000066400000000000000000000002111336202271100176170ustar00rootroot00000000000000MANPAGES = \ telnet-chatd.1 \ telnet-client.1 \ telnet-proxy.1 if BUILD_UTIL man1_MANS = $(MANPAGES) endif EXTRA_DIST = $(MANPAGES) libtelnet-0.23/doc/man/man1/telnet-chatd.1000066400000000000000000000007271336202271100202350ustar00rootroot00000000000000.TH telnet-chatd 1 LIBTELNET "" "TELNET Library" .SH NAME telnet-chatd \- simplistic TELNET chat server .SH SYNOPSIS \fBtelnet-chatd\fR <\fBlisten port\fR> .SH DESCRIPTION \fBtelnet-chatd\fR is an extremely simplistic TELNET chat server. It is designed primarily as a test for TELNET clients and proxies. It is not recommended to use \fBtelnet-chatd\fR in any kind of production capacity. .SH SEE ALSO \fBtelnet-client\fR(1), \fBtelnet-proxy\fR(1), \fBtelnet\fR(1) libtelnet-0.23/doc/man/man1/telnet-client.1000066400000000000000000000007541336202271100204300ustar00rootroot00000000000000.TH telnet-client 1 LIBTELNET "" "TELNET Library" .SH NAME telnet-client \- simplistic TELNET client .SH SYNOPSIS \fBtelnet-client\fR <\fBremote address\fR> <\fBremote port\fR> .SH DESCRIPTION \fBtelnet-client\fR is an extremely simplistic TELNET client, designed solely as a test of libtelnet functionality and for testing simple TELNET servers or proxies. \fBtelnet-client\fR should not be used for real work. .SH SEE ALSO \fBtelnet-chatd\fR(1), \fBtelnet-proxy\fR(1), \fBtelnet\fR(1) libtelnet-0.23/doc/man/man1/telnet-proxy.1000066400000000000000000000016131336202271100203260ustar00rootroot00000000000000.TH telnet-proxy 1 LIBTELNET "" "TELNET Library" .SH NAME telnet-proxy \- create a TELNET debugging proxy .SH SYNOPSIS \fBtelnet-proxy\fR <\fBremote address\fR> <\fBremote port\fR> <\fBlocal port\fR> .SH DESCRIPTION \fBtelnet-proxy\fR creates a single-connection proxy listening on \fIlocal port\fR which forwards connections to \fIremote address\fR on port \fIremote port\fR. All TELNET commands will be logged to \fBstdout\fR for debugging purposes. Only a single active connection is allowed at any given time. However, after a client has disconnected, another client may connect through the proxy. \fBtelnet-proxy\fR is capable of transparently decoding and reencoding streams compressed with MCCP2. It also includes specialized decoders and debug output for NEW-ENVIRON, TTYPE, ZMP, and MSSP subnegotiation commands. .SH SEE ALSO \fBtelnet-chatd\fR(1), \fBtelnet-client\fR(1), \fBtelnet\fR(1) libtelnet-0.23/doc/man/man3/000077500000000000000000000000001336202271100155735ustar00rootroot00000000000000libtelnet-0.23/doc/man/man3/.gitignore000066400000000000000000000000201336202271100175530ustar00rootroot00000000000000*.3 build-stamp libtelnet-0.23/doc/man/man3/Makefile.am000066400000000000000000000013771336202271100176370ustar00rootroot00000000000000MANPAGES = \ libtelnet.h.3 \ telnet_environ_t.3 \ telnet_event_t.3 \ telnet_event_t_compress_t.3 \ telnet_event_t_data_t.3 \ telnet_event_t_environ_t.3 \ telnet_event_t_error_t.3 \ telnet_event_t_iac_t.3 \ telnet_event_t_negotiate_t.3 \ telnet_event_t_subnegotiate_t.3 \ telnet_event_t_ttype_t.3 \ telnet_event_t_zmp_t.3 \ telnet_event_t_mssp_t.3 \ telnet_telopt_t.3 $(MANPAGES): build-stamp MAINTAINERCLEANFILES = $(MANPAGES) build-stamp if BUILD_DOCS EXTRA_DIST = $(MANPAGES) build-stamp man3_MANS = $(MANPAGES) build-stamp: ../../../libtelnet.h ../../../Doxyfile ( cd "$(top_srcdir)" ; $(DOXYGEN) ) touch "$@" else build-stamp: ../../../libtelnet.h ../../../Doxyfile @echo 'Warning: Doxygen is missing. Manpages not updated!' touch "$@" endif libtelnet-0.23/libtelnet-uninstalled.pc.in000066400000000000000000000002671336202271100206550ustar00rootroot00000000000000Name: libtelnet (uninstalled) Description: TELNET protocol handling library (uninstalled) Version: @VERSION@ Libs: -L@abs_top_srcdir@/.libs -ltelnet @LIBS@ Cflags: -I@abs_top_srcdir@ libtelnet-0.23/libtelnet.c000066400000000000000000001262651336202271100155570ustar00rootroot00000000000000/* * libtelnet - TELNET protocol handling library * * Sean Middleditch * sean@sourcemud.org * * The author or authors of this code dedicate any and all copyright interest * in this code to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and successors. We * intend this dedication to be an overt act of relinquishment in perpetuity of * all present and future rights to this code under copyright law. */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include #include /* Win32 compatibility */ #if defined(_WIN32) # define vsnprintf _vsnprintf # define __func__ __FUNCTION__ # define ZLIB_WINAPI 1 # if defined(_MSC_VER) /* va_copy() is directly supported starting in Visual Studio 2013 * https://msdn.microsoft.com/en-us/library/kb57fad8(v=vs.110).aspx * https://msdn.microsoft.com/en-us/library/kb57fad8(v=vs.120).aspx */ # if _MSC_VER <= 1700 # define va_copy(dest, src) (dest = src) # endif # endif #endif #if defined(HAVE_ZLIB) # include #endif #include "libtelnet.h" /* inlinable functions */ #if defined(__GNUC__) || __STDC_VERSION__ >= 199901L # define INLINE __inline__ #else # define INLINE #endif /* helper for Q-method option tracking */ #define Q_US(q) ((q).state & 0x0F) #define Q_HIM(q) (((q).state & 0xF0) >> 4) #define Q_MAKE(us,him) ((us) | ((him) << 4)) /* helper for the negotiation routines */ #define NEGOTIATE_EVENT(telnet,cmd,opt) \ ev.type = (cmd); \ ev.neg.telopt = (opt); \ (telnet)->eh((telnet), &ev, (telnet)->ud); /* telnet state codes */ enum telnet_state_t { TELNET_STATE_DATA = 0, TELNET_STATE_EOL, TELNET_STATE_IAC, TELNET_STATE_WILL, TELNET_STATE_WONT, TELNET_STATE_DO, TELNET_STATE_DONT, TELNET_STATE_SB, TELNET_STATE_SB_DATA, TELNET_STATE_SB_DATA_IAC }; typedef enum telnet_state_t telnet_state_t; /* telnet state tracker */ struct telnet_t { /* user data */ void *ud; /* telopt support table */ const telnet_telopt_t *telopts; /* event handler */ telnet_event_handler_t eh; #if defined(HAVE_ZLIB) /* zlib (mccp2) compression */ z_stream *z; #endif /* RFC1143 option negotiation states */ struct telnet_rfc1143_t *q; /* sub-request buffer */ char *buffer; /* current size of the buffer */ size_t buffer_size; /* current buffer write position (also length of buffer data) */ size_t buffer_pos; /* current state */ enum telnet_state_t state; /* option flags */ unsigned char flags; /* current subnegotiation telopt */ unsigned char sb_telopt; /* length of RFC1143 queue */ unsigned int q_size; /* number of entries in RFC1143 queue */ unsigned int q_cnt; }; /* RFC1143 option negotiation state */ typedef struct telnet_rfc1143_t { unsigned char telopt; unsigned char state; } telnet_rfc1143_t; /* RFC1143 state names */ #define Q_NO 0 #define Q_YES 1 #define Q_WANTNO 2 #define Q_WANTYES 3 #define Q_WANTNO_OP 4 #define Q_WANTYES_OP 5 /* telnet NVT EOL sequences */ static const char CRLF[] = { '\r', '\n' }; static const char CRNUL[] = { '\r', '\0' }; /* buffer sizes */ static const size_t _buffer_sizes[] = { 0, 512, 2048, 8192, 16384, }; static const size_t _buffer_sizes_count = sizeof(_buffer_sizes) / sizeof(_buffer_sizes[0]); /* RFC1143 option negotiation state table allocation quantum */ #define Q_BUFFER_GROWTH_QUANTUM 4 /* error generation function */ static telnet_error_t _error(telnet_t *telnet, unsigned line, const char* func, telnet_error_t err, int fatal, const char *fmt, ...) { telnet_event_t ev; char buffer[512]; va_list va; /* format informational text */ va_start(va, fmt); vsnprintf(buffer, sizeof(buffer), fmt, va); va_end(va); /* send error event to the user */ ev.type = fatal ? TELNET_EV_ERROR : TELNET_EV_WARNING; ev.error.file = __FILE__; ev.error.func = func; ev.error.line = line; ev.error.msg = buffer; telnet->eh(telnet, &ev, telnet->ud); return err; } #if defined(HAVE_ZLIB) /* initialize the zlib box for a telnet box; if deflate is non-zero, it * initializes zlib for delating (compression), otherwise for inflating * (decompression). returns TELNET_EOK on success, something else on * failure. */ telnet_error_t _init_zlib(telnet_t *telnet, int deflate, int err_fatal) { z_stream *z; int rs; /* if compression is already enabled, fail loudly */ if (telnet->z != 0) return _error(telnet, __LINE__, __func__, TELNET_EBADVAL, err_fatal, "cannot initialize compression twice"); /* allocate zstream box */ if ((z= (z_stream *)calloc(1, sizeof(z_stream))) == 0) return _error(telnet, __LINE__, __func__, TELNET_ENOMEM, err_fatal, "malloc() failed: %s", strerror(errno)); /* initialize */ if (deflate) { if ((rs = deflateInit(z, Z_DEFAULT_COMPRESSION)) != Z_OK) { free(z); return _error(telnet, __LINE__, __func__, TELNET_ECOMPRESS, err_fatal, "deflateInit() failed: %s", zError(rs)); } telnet->flags |= TELNET_PFLAG_DEFLATE; } else { if ((rs = inflateInit(z)) != Z_OK) { free(z); return _error(telnet, __LINE__, __func__, TELNET_ECOMPRESS, err_fatal, "inflateInit() failed: %s", zError(rs)); } telnet->flags &= ~TELNET_PFLAG_DEFLATE; } telnet->z = z; return TELNET_EOK; } #endif /* defined(HAVE_ZLIB) */ /* push bytes out, compressing them first if need be */ static void _send(telnet_t *telnet, const char *buffer, size_t size) { telnet_event_t ev; #if defined(HAVE_ZLIB) /* if we have a deflate (compression) zlib box, use it */ if (telnet->z != 0 && telnet->flags & TELNET_PFLAG_DEFLATE) { char deflate_buffer[1024]; int rs; /* initialize z state */ telnet->z->next_in = (unsigned char *)buffer; telnet->z->avail_in = (unsigned int)size; telnet->z->next_out = (unsigned char *)deflate_buffer; telnet->z->avail_out = sizeof(deflate_buffer); /* deflate until buffer exhausted and all output is produced */ while (telnet->z->avail_in > 0 || telnet->z->avail_out == 0) { /* compress */ if ((rs = deflate(telnet->z, Z_SYNC_FLUSH)) != Z_OK) { _error(telnet, __LINE__, __func__, TELNET_ECOMPRESS, 1, "deflate() failed: %s", zError(rs)); deflateEnd(telnet->z); free(telnet->z); telnet->z = 0; break; } /* send event */ ev.type = TELNET_EV_SEND; ev.data.buffer = deflate_buffer; ev.data.size = sizeof(deflate_buffer) - telnet->z->avail_out; telnet->eh(telnet, &ev, telnet->ud); /* prepare output buffer for next run */ telnet->z->next_out = (unsigned char *)deflate_buffer; telnet->z->avail_out = sizeof(deflate_buffer); } /* do not continue with remaining code */ return; } #endif /* defined(HAVE_ZLIB) */ ev.type = TELNET_EV_SEND; ev.data.buffer = buffer; ev.data.size = size; telnet->eh(telnet, &ev, telnet->ud); } /* to send bags of unsigned chars */ #define _sendu(t, d, s) _send((t), (const char*)(d), (s)) /* check if we support a particular telopt; if us is non-zero, we * check if we (local) supports it, otherwise we check if he (remote) * supports it. return non-zero if supported, zero if not supported. */ static INLINE int _check_telopt(telnet_t *telnet, unsigned char telopt, int us) { int i; /* if we have no telopts table, we obviously don't support it */ if (telnet->telopts == 0) return 0; /* loop until found or end marker (us and him both 0) */ for (i = 0; telnet->telopts[i].telopt != -1; ++i) { if (telnet->telopts[i].telopt == telopt) { if (us && telnet->telopts[i].us == TELNET_WILL) return 1; else if (!us && telnet->telopts[i].him == TELNET_DO) return 1; else return 0; } } /* not found, so not supported */ return 0; } /* retrieve RFC1143 option state */ static INLINE telnet_rfc1143_t _get_rfc1143(telnet_t *telnet, unsigned char telopt) { telnet_rfc1143_t empty; int i; /* search for entry */ for (i = 0; i != telnet->q_cnt; ++i) { if (telnet->q[i].telopt == telopt) { return telnet->q[i]; } } /* not found, return empty value */ empty.telopt = telopt; empty.state = 0; return empty; } /* save RFC1143 option state */ static INLINE void _set_rfc1143(telnet_t *telnet, unsigned char telopt, char us, char him) { telnet_rfc1143_t *qtmp; int i; /* search for entry */ for (i = 0; i != telnet->q_cnt; ++i) { if (telnet->q[i].telopt == telopt) { telnet->q[i].state = Q_MAKE(us,him); if (telopt != TELNET_TELOPT_BINARY) return; telnet->flags &= ~(TELNET_FLAG_TRANSMIT_BINARY | TELNET_FLAG_RECEIVE_BINARY); if (us == Q_YES) telnet->flags |= TELNET_FLAG_TRANSMIT_BINARY; if (him == Q_YES) telnet->flags |= TELNET_FLAG_RECEIVE_BINARY; return; } } /* we're going to need to track state for it, so grow the queue * by 4 (four) elements and put the telopt into it; bail on allocation * error. we go by four because it seems like a reasonable guess as * to the number of enabled options for most simple code, and it * allows for an acceptable number of reallocations for complex code. */ /* Did we reach the end of the table? */ if (telnet->q_cnt >= telnet->q_size) { /* Expand the size */ if ((qtmp = (telnet_rfc1143_t *)realloc(telnet->q, sizeof(telnet_rfc1143_t) * (telnet->q_size + Q_BUFFER_GROWTH_QUANTUM))) == 0) { _error(telnet, __LINE__, __func__, TELNET_ENOMEM, 0, "realloc() failed: %s", strerror(errno)); return; } memset(&qtmp[telnet->q_size], 0, sizeof(telnet_rfc1143_t) * Q_BUFFER_GROWTH_QUANTUM); telnet->q = qtmp; telnet->q_size += Q_BUFFER_GROWTH_QUANTUM; } /* Add entry to end of table */ telnet->q[telnet->q_cnt].telopt = telopt; telnet->q[telnet->q_cnt].state = Q_MAKE(us, him); ++telnet->q_cnt; } /* send negotiation bytes */ static INLINE void _send_negotiate(telnet_t *telnet, unsigned char cmd, unsigned char telopt) { unsigned char bytes[3]; bytes[0] = TELNET_IAC; bytes[1] = cmd; bytes[2] = telopt; _sendu(telnet, bytes, 3); } /* negotiation handling magic for RFC1143 */ static void _negotiate(telnet_t *telnet, unsigned char telopt) { telnet_event_t ev; telnet_rfc1143_t q; /* in PROXY mode, just pass it thru and do nothing */ if (telnet->flags & TELNET_FLAG_PROXY) { switch ((int)telnet->state) { case TELNET_STATE_WILL: NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt); break; case TELNET_STATE_WONT: NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt); break; case TELNET_STATE_DO: NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt); break; case TELNET_STATE_DONT: NEGOTIATE_EVENT(telnet, TELNET_EV_DONT, telopt); break; } return; } /* lookup the current state of the option */ q = _get_rfc1143(telnet, telopt); /* start processing... */ switch ((int)telnet->state) { /* request to enable option on remote end or confirm DO */ case TELNET_STATE_WILL: switch (Q_HIM(q)) { case Q_NO: if (_check_telopt(telnet, telopt, 0)) { _set_rfc1143(telnet, telopt, Q_US(q), Q_YES); _send_negotiate(telnet, TELNET_DO, telopt); NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt); } else _send_negotiate(telnet, TELNET_DONT, telopt); break; case Q_WANTNO: _set_rfc1143(telnet, telopt, Q_US(q), Q_NO); NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt); _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "DONT answered by WILL"); break; case Q_WANTNO_OP: _set_rfc1143(telnet, telopt, Q_US(q), Q_YES); NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt); _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "DONT answered by WILL"); break; case Q_WANTYES: _set_rfc1143(telnet, telopt, Q_US(q), Q_YES); NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt); break; case Q_WANTYES_OP: _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTNO); _send_negotiate(telnet, TELNET_DONT, telopt); NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt); break; } break; /* request to disable option on remote end, confirm DONT, reject DO */ case TELNET_STATE_WONT: switch (Q_HIM(q)) { case Q_YES: _set_rfc1143(telnet, telopt, Q_US(q), Q_NO); _send_negotiate(telnet, TELNET_DONT, telopt); NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt); break; case Q_WANTNO: _set_rfc1143(telnet, telopt, Q_US(q), Q_NO); NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt); break; case Q_WANTNO_OP: _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTYES); NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt); break; case Q_WANTYES: case Q_WANTYES_OP: _set_rfc1143(telnet, telopt, Q_US(q), Q_NO); break; } break; /* request to enable option on local end or confirm WILL */ case TELNET_STATE_DO: switch (Q_US(q)) { case Q_NO: if (_check_telopt(telnet, telopt, 1)) { _set_rfc1143(telnet, telopt, Q_YES, Q_HIM(q)); _send_negotiate(telnet, TELNET_WILL, telopt); NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt); } else _send_negotiate(telnet, TELNET_WONT, telopt); break; case Q_WANTNO: _set_rfc1143(telnet, telopt, Q_NO, Q_HIM(q)); NEGOTIATE_EVENT(telnet, TELNET_EV_DONT, telopt); _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "WONT answered by DO"); break; case Q_WANTNO_OP: _set_rfc1143(telnet, telopt, Q_YES, Q_HIM(q)); NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt); _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "WONT answered by DO"); break; case Q_WANTYES: _set_rfc1143(telnet, telopt, Q_YES, Q_HIM(q)); NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt); break; case Q_WANTYES_OP: _set_rfc1143(telnet, telopt, Q_WANTNO, Q_HIM(q)); _send_negotiate(telnet, TELNET_WONT, telopt); NEGOTIATE_EVENT(telnet, TELNET_EV_DO, telopt); break; } break; /* request to disable option on local end, confirm WONT, reject WILL */ case TELNET_STATE_DONT: switch (Q_US(q)) { case Q_YES: _set_rfc1143(telnet, telopt, Q_NO, Q_HIM(q)); _send_negotiate(telnet, TELNET_WONT, telopt); NEGOTIATE_EVENT(telnet, TELNET_EV_DONT, telopt); break; case Q_WANTNO: _set_rfc1143(telnet, telopt, Q_NO, Q_HIM(q)); NEGOTIATE_EVENT(telnet, TELNET_EV_WONT, telopt); break; case Q_WANTNO_OP: _set_rfc1143(telnet, telopt, Q_WANTYES, Q_HIM(q)); _send_negotiate(telnet, TELNET_WILL, telopt); NEGOTIATE_EVENT(telnet, TELNET_EV_WILL, telopt); break; case Q_WANTYES: case Q_WANTYES_OP: _set_rfc1143(telnet, telopt, Q_NO, Q_HIM(q)); break; } break; } } /* process an ENVIRON/NEW-ENVIRON subnegotiation buffer * * the algorithm and approach used here is kind of a hack, * but it reduces the number of memory allocations we have * to make. * * we copy the bytes back into the buffer, starting at the very * beginning, which makes it easy to handle the ENVIRON ESC * escape mechanism as well as ensure the variable name and * value strings are NUL-terminated, all while fitting inside * of the original buffer. */ static int _environ_telnet(telnet_t *telnet, unsigned char type, char* buffer, size_t size) { telnet_event_t ev; struct telnet_environ_t *values = 0; char *c, *last, *out; size_t index, count; /* if we have no data, just pass it through */ if (size == 0) { return 0; } /* first byte must be a valid command */ if ((unsigned)buffer[0] != TELNET_ENVIRON_SEND && (unsigned)buffer[0] != TELNET_ENVIRON_IS && (unsigned)buffer[0] != TELNET_ENVIRON_INFO) { _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "telopt %d subneg has invalid command", type); return 0; } /* store ENVIRON command */ ev.environ.cmd = buffer[0]; /* if we have no arguments, send an event with no data end return */ if (size == 1) { /* no list of variables given */ ev.environ.values = 0; ev.environ.size = 0; /* invoke event with our arguments */ ev.type = TELNET_EV_ENVIRON; telnet->eh(telnet, &ev, telnet->ud); return 1; } /* very second byte must be VAR or USERVAR, if present */ if ((unsigned)buffer[1] != TELNET_ENVIRON_VAR && (unsigned)buffer[1] != TELNET_ENVIRON_USERVAR) { _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "telopt %d subneg missing variable type", type); return 0; } /* ensure last byte is not an escape byte (makes parsing later easier) */ if ((unsigned)buffer[size - 1] == TELNET_ENVIRON_ESC) { _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "telopt %d subneg ends with ESC", type); return 0; } /* count arguments; each valid entry starts with VAR or USERVAR */ count = 0; for (c = buffer + 1; c < buffer + size; ++c) { if (*c == TELNET_ENVIRON_VAR || *c == TELNET_ENVIRON_USERVAR) { ++count; } else if (*c == TELNET_ENVIRON_ESC) { /* skip the next byte */ ++c; } } /* allocate argument array, bail on error */ if ((values = (struct telnet_environ_t *)calloc(count, sizeof(struct telnet_environ_t))) == 0) { _error(telnet, __LINE__, __func__, TELNET_ENOMEM, 0, "calloc() failed: %s", strerror(errno)); return 0; } /* parse argument array strings */ out = buffer; c = buffer + 1; for (index = 0; index != count; ++index) { /* remember the variable type (will be VAR or USERVAR) */ values[index].type = *c++; /* scan until we find an end-marker, and buffer up unescaped * bytes into our buffer */ last = out; while (c < buffer + size) { /* stop at the next variable or at the value */ if ((unsigned)*c == TELNET_ENVIRON_VAR || (unsigned)*c == TELNET_ENVIRON_VALUE || (unsigned)*c == TELNET_ENVIRON_USERVAR) { break; } /* buffer next byte (taking into account ESC) */ if (*c == TELNET_ENVIRON_ESC) { ++c; } *out++ = *c++; } *out++ = '\0'; /* store the variable name we have just received */ values[index].var = last; values[index].value = ""; /* if we got a value, find the next end marker and * store the value; otherwise, store empty string */ if (c < buffer + size && *c == TELNET_ENVIRON_VALUE) { ++c; last = out; while (c < buffer + size) { /* stop when we find the start of the next variable */ if ((unsigned)*c == TELNET_ENVIRON_VAR || (unsigned)*c == TELNET_ENVIRON_USERVAR) { break; } /* buffer next byte (taking into account ESC) */ if (*c == TELNET_ENVIRON_ESC) { ++c; } *out++ = *c++; } *out++ = '\0'; /* store the variable value */ values[index].value = last; } } /* pass values array and count to event */ ev.environ.values = values; ev.environ.size = count; /* invoke event with our arguments */ ev.type = TELNET_EV_ENVIRON; telnet->eh(telnet, &ev, telnet->ud); /* clean up */ free(values); return 1; } /* process an MSSP subnegotiation buffer */ static int _mssp_telnet(telnet_t *telnet, char* buffer, size_t size) { telnet_event_t ev; struct telnet_environ_t *values; char *var = 0; char *c, *last, *out; size_t i, count; unsigned char next_type; /* if we have no data, just pass it through */ if (size == 0) { return 0; } /* first byte must be a VAR */ if ((unsigned)buffer[0] != TELNET_MSSP_VAR) { _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "MSSP subnegotiation has invalid data"); return 0; } /* count the arguments, any part that starts with VALUE */ for (count = 0, i = 0; i != size; ++i) { if ((unsigned)buffer[i] == TELNET_MSSP_VAL) { ++count; } } /* allocate argument array, bail on error */ if ((values = (struct telnet_environ_t *)calloc(count, sizeof(struct telnet_environ_t))) == 0) { _error(telnet, __LINE__, __func__, TELNET_ENOMEM, 0, "calloc() failed: %s", strerror(errno)); return 0; } ev.mssp.values = values; ev.mssp.size = count; /* allocate strings in argument array */ out = last = buffer; next_type = buffer[0]; for (i = 0, c = buffer + 1; c < buffer + size;) { /* search for end marker */ while (c < buffer + size && (unsigned)*c != TELNET_MSSP_VAR && (unsigned)*c != TELNET_MSSP_VAL) { *out++ = *c++; } *out++ = '\0'; /* if it's a variable name, just store the name for now */ if (next_type == TELNET_MSSP_VAR) { var = last; } else if (next_type == TELNET_MSSP_VAL && var != 0) { values[i].var = var; values[i].value = last; ++i; } else { _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "invalid MSSP subnegotiation data"); free(values); return 0; } /* remember our next type and increment c for next loop run */ last = out; next_type = *c++; } /* invoke event with our arguments */ ev.type = TELNET_EV_MSSP; telnet->eh(telnet, &ev, telnet->ud); /* clean up */ free(values); return 0; } /* parse ZMP command subnegotiation buffers */ static int _zmp_telnet(telnet_t *telnet, const char* buffer, size_t size) { telnet_event_t ev; char **argv; const char *c; size_t i, argc; /* make sure this is a valid ZMP buffer */ if (size == 0 || buffer[size - 1] != 0) { _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "incomplete ZMP frame"); return 0; } /* count arguments */ for (argc = 0, c = buffer; c != buffer + size; ++argc) c += strlen(c) + 1; /* allocate argument array, bail on error */ if ((argv = (char **)calloc(argc, sizeof(char *))) == 0) { _error(telnet, __LINE__, __func__, TELNET_ENOMEM, 0, "calloc() failed: %s", strerror(errno)); return 0; } /* populate argument array */ for (i = 0, c = buffer; i != argc; ++i) { argv[i] = (char *)c; c += strlen(c) + 1; } /* invoke event with our arguments */ ev.type = TELNET_EV_ZMP; ev.zmp.argv = (const char**)argv; ev.zmp.argc = argc; telnet->eh(telnet, &ev, telnet->ud); /* clean up */ free(argv); return 0; } /* parse TERMINAL-TYPE command subnegotiation buffers */ static int _ttype_telnet(telnet_t *telnet, const char* buffer, size_t size) { telnet_event_t ev; /* make sure request is not empty */ if (size == 0) { _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "incomplete TERMINAL-TYPE request"); return 0; } /* make sure request has valid command type */ if (buffer[0] != TELNET_TTYPE_IS && buffer[0] != TELNET_TTYPE_SEND) { _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "TERMINAL-TYPE request has invalid type"); return 0; } /* send proper event */ if (buffer[0] == TELNET_TTYPE_IS) { char *name; /* allocate space for name */ if ((name = (char *)malloc(size)) == 0) { _error(telnet, __LINE__, __func__, TELNET_ENOMEM, 0, "malloc() failed: %s", strerror(errno)); return 0; } memcpy(name, buffer + 1, size - 1); name[size - 1] = '\0'; ev.type = TELNET_EV_TTYPE; ev.ttype.cmd = TELNET_TTYPE_IS; ev.ttype.name = name; telnet->eh(telnet, &ev, telnet->ud); /* clean up */ free(name); } else { ev.type = TELNET_EV_TTYPE; ev.ttype.cmd = TELNET_TTYPE_SEND; ev.ttype.name = 0; telnet->eh(telnet, &ev, telnet->ud); } return 0; } /* process a subnegotiation buffer; return non-zero if the current buffer * must be aborted and reprocessed due to COMPRESS2 being activated */ static int _subnegotiate(telnet_t *telnet) { telnet_event_t ev; /* standard subnegotiation event */ ev.type = TELNET_EV_SUBNEGOTIATION; ev.sub.telopt = telnet->sb_telopt; ev.sub.buffer = telnet->buffer; ev.sub.size = telnet->buffer_pos; telnet->eh(telnet, &ev, telnet->ud); switch (telnet->sb_telopt) { #if defined(HAVE_ZLIB) /* received COMPRESS2 begin marker, setup our zlib box and * start handling the compressed stream if it's not already. */ case TELNET_TELOPT_COMPRESS2: if (telnet->sb_telopt == TELNET_TELOPT_COMPRESS2) { if (_init_zlib(telnet, 0, 1) != TELNET_EOK) return 0; /* notify app that compression was enabled */ ev.type = TELNET_EV_COMPRESS; ev.compress.state = 1; telnet->eh(telnet, &ev, telnet->ud); return 1; } return 0; #endif /* defined(HAVE_ZLIB) */ /* specially handled subnegotiation telopt types */ case TELNET_TELOPT_ZMP: return _zmp_telnet(telnet, telnet->buffer, telnet->buffer_pos); case TELNET_TELOPT_TTYPE: return _ttype_telnet(telnet, telnet->buffer, telnet->buffer_pos); case TELNET_TELOPT_ENVIRON: case TELNET_TELOPT_NEW_ENVIRON: return _environ_telnet(telnet, telnet->sb_telopt, telnet->buffer, telnet->buffer_pos); case TELNET_TELOPT_MSSP: return _mssp_telnet(telnet, telnet->buffer, telnet->buffer_pos); default: return 0; } } /* initialize a telnet state tracker */ telnet_t *telnet_init(const telnet_telopt_t *telopts, telnet_event_handler_t eh, unsigned char flags, void *user_data) { /* allocate structure */ struct telnet_t *telnet = (telnet_t*)calloc(1, sizeof(telnet_t)); if (telnet == 0) return 0; /* initialize data */ telnet->ud = user_data; telnet->telopts = telopts; telnet->eh = eh; telnet->flags = flags; return telnet; } /* free up any memory allocated by a state tracker */ void telnet_free(telnet_t *telnet) { /* free sub-request buffer */ if (telnet->buffer != 0) { free(telnet->buffer); telnet->buffer = 0; telnet->buffer_size = 0; telnet->buffer_pos = 0; } #if defined(HAVE_ZLIB) /* free zlib box */ if (telnet->z != 0) { if (telnet->flags & TELNET_PFLAG_DEFLATE) deflateEnd(telnet->z); else inflateEnd(telnet->z); free(telnet->z); telnet->z = 0; } #endif /* defined(HAVE_ZLIB) */ /* free RFC1143 queue */ if (telnet->q) { free(telnet->q); telnet->q = NULL; telnet->q_size = 0; telnet->q_cnt = 0; } /* free the telnet structure itself */ free(telnet); } /* push a byte into the telnet buffer */ static telnet_error_t _buffer_byte(telnet_t *telnet, unsigned char byte) { char *new_buffer; size_t i; /* check if we're out of room */ if (telnet->buffer_pos == telnet->buffer_size) { /* find the next buffer size */ for (i = 0; i != _buffer_sizes_count; ++i) { if (_buffer_sizes[i] == telnet->buffer_size) { break; } } /* overflow -- can't grow any more */ if (i >= _buffer_sizes_count - 1) { _error(telnet, __LINE__, __func__, TELNET_EOVERFLOW, 0, "subnegotiation buffer size limit reached"); return TELNET_EOVERFLOW; } /* (re)allocate buffer */ new_buffer = (char *)realloc(telnet->buffer, _buffer_sizes[i + 1]); if (new_buffer == 0) { _error(telnet, __LINE__, __func__, TELNET_ENOMEM, 0, "realloc() failed"); return TELNET_ENOMEM; } telnet->buffer = new_buffer; telnet->buffer_size = _buffer_sizes[i + 1]; } /* push the byte, all set */ telnet->buffer[telnet->buffer_pos++] = byte; return TELNET_EOK; } static void _process(telnet_t *telnet, const char *buffer, size_t size) { telnet_event_t ev; unsigned char byte; size_t i, start; for (i = start = 0; i != size; ++i) { byte = buffer[i]; switch (telnet->state) { /* regular data */ case TELNET_STATE_DATA: /* on an IAC byte, pass through all pending bytes and * switch states */ if (byte == TELNET_IAC) { if (i != start) { ev.type = TELNET_EV_DATA; ev.data.buffer = buffer + start; ev.data.size = i - start; telnet->eh(telnet, &ev, telnet->ud); } telnet->state = TELNET_STATE_IAC; } else if (byte == '\r' && (telnet->flags & TELNET_FLAG_NVT_EOL) && !(telnet->flags & TELNET_FLAG_RECEIVE_BINARY)) { if (i != start) { ev.type = TELNET_EV_DATA; ev.data.buffer = buffer + start; ev.data.size = i - start; telnet->eh(telnet, &ev, telnet->ud); } telnet->state = TELNET_STATE_EOL; } break; /* NVT EOL to be translated */ case TELNET_STATE_EOL: if (byte != '\n') { byte = '\r'; ev.type = TELNET_EV_DATA; ev.data.buffer = (char*)&byte; ev.data.size = 1; telnet->eh(telnet, &ev, telnet->ud); byte = buffer[i]; } // any byte following '\r' other than '\n' or '\0' is invalid, // so pass both \r and the byte start = i; if (byte == '\0') ++start; /* state update */ telnet->state = TELNET_STATE_DATA; break; /* IAC command */ case TELNET_STATE_IAC: switch (byte) { /* subnegotiation */ case TELNET_SB: telnet->state = TELNET_STATE_SB; break; /* negotiation commands */ case TELNET_WILL: telnet->state = TELNET_STATE_WILL; break; case TELNET_WONT: telnet->state = TELNET_STATE_WONT; break; case TELNET_DO: telnet->state = TELNET_STATE_DO; break; case TELNET_DONT: telnet->state = TELNET_STATE_DONT; break; /* IAC escaping */ case TELNET_IAC: /* event */ ev.type = TELNET_EV_DATA; ev.data.buffer = (char*)&byte; ev.data.size = 1; telnet->eh(telnet, &ev, telnet->ud); /* state update */ start = i + 1; telnet->state = TELNET_STATE_DATA; break; /* some other command */ default: /* event */ ev.type = TELNET_EV_IAC; ev.iac.cmd = byte; telnet->eh(telnet, &ev, telnet->ud); /* state update */ start = i + 1; telnet->state = TELNET_STATE_DATA; } break; /* negotiation commands */ case TELNET_STATE_WILL: case TELNET_STATE_WONT: case TELNET_STATE_DO: case TELNET_STATE_DONT: _negotiate(telnet, byte); start = i + 1; telnet->state = TELNET_STATE_DATA; break; /* subnegotiation -- determine subnegotiation telopt */ case TELNET_STATE_SB: telnet->sb_telopt = byte; telnet->buffer_pos = 0; telnet->state = TELNET_STATE_SB_DATA; break; /* subnegotiation -- buffer bytes until end request */ case TELNET_STATE_SB_DATA: /* IAC command in subnegotiation -- either IAC SE or IAC IAC */ if (byte == TELNET_IAC) { telnet->state = TELNET_STATE_SB_DATA_IAC; } else if (telnet->sb_telopt == TELNET_TELOPT_COMPRESS && byte == TELNET_WILL) { /* In 1998 MCCP used TELOPT 85 and the protocol defined an invalid * subnegotiation sequence (IAC SB 85 WILL SE) to start compression. * Subsequently MCCP version 2 was created in 2000 using TELOPT 86 * and a valid subnegotiation (IAC SB 86 IAC SE). libtelnet for now * just captures and discards MCCPv1 sequences. */ start = i + 2; telnet->state = TELNET_STATE_DATA; /* buffer the byte, or bail if we can't */ } else if (_buffer_byte(telnet, byte) != TELNET_EOK) { start = i + 1; telnet->state = TELNET_STATE_DATA; } break; /* IAC escaping inside a subnegotiation */ case TELNET_STATE_SB_DATA_IAC: switch (byte) { /* end subnegotiation */ case TELNET_SE: /* return to default state */ start = i + 1; telnet->state = TELNET_STATE_DATA; /* process subnegotiation */ if (_subnegotiate(telnet) != 0) { /* any remaining bytes in the buffer are compressed. * we have to re-invoke telnet_recv to get those * bytes inflated and abort trying to process the * remaining compressed bytes in the current _process * buffer argument */ telnet_recv(telnet, &buffer[start], size - start); return; } break; /* escaped IAC byte */ case TELNET_IAC: /* push IAC into buffer */ if (_buffer_byte(telnet, TELNET_IAC) != TELNET_EOK) { start = i + 1; telnet->state = TELNET_STATE_DATA; } else { telnet->state = TELNET_STATE_SB_DATA; } break; /* something else -- protocol error. attempt to process * content in subnegotiation buffer, then evaluate the * given command as an IAC code. */ default: _error(telnet, __LINE__, __func__, TELNET_EPROTOCOL, 0, "unexpected byte after IAC inside SB: %d", byte); /* enter IAC state */ start = i + 1; telnet->state = TELNET_STATE_IAC; /* process subnegotiation; see comment in * TELNET_STATE_SB_DATA_IAC about invoking telnet_recv() */ if (_subnegotiate(telnet) != 0) { telnet_recv(telnet, &buffer[start], size - start); return; } else { /* recursive call to get the current input byte processed * as a regular IAC command. we could use a goto, but * that would be gross. */ _process(telnet, (char *)&byte, 1); } break; } break; } } /* pass through any remaining bytes */ if (telnet->state == TELNET_STATE_DATA && i != start) { ev.type = TELNET_EV_DATA; ev.data.buffer = buffer + start; ev.data.size = i - start; telnet->eh(telnet, &ev, telnet->ud); } } /* push a bytes into the state tracker */ void telnet_recv(telnet_t *telnet, const char *buffer, size_t size) { #if defined(HAVE_ZLIB) /* if we have an inflate (decompression) zlib stream, use it */ if (telnet->z != 0 && !(telnet->flags & TELNET_PFLAG_DEFLATE)) { char inflate_buffer[1024]; int rs; /* initialize zlib state */ telnet->z->next_in = (unsigned char*)buffer; telnet->z->avail_in = (unsigned int)size; telnet->z->next_out = (unsigned char *)inflate_buffer; telnet->z->avail_out = sizeof(inflate_buffer); /* inflate until buffer exhausted and all output is produced */ while (telnet->z->avail_in > 0 || telnet->z->avail_out == 0) { /* reset output buffer */ /* decompress */ rs = inflate(telnet->z, Z_SYNC_FLUSH); /* process the decompressed bytes on success */ if (rs == Z_OK || rs == Z_STREAM_END) _process(telnet, inflate_buffer, sizeof(inflate_buffer) - telnet->z->avail_out); else _error(telnet, __LINE__, __func__, TELNET_ECOMPRESS, 1, "inflate() failed: %s", zError(rs)); /* prepare output buffer for next run */ telnet->z->next_out = (unsigned char *)inflate_buffer; telnet->z->avail_out = sizeof(inflate_buffer); /* on error (or on end of stream) disable further inflation */ if (rs != Z_OK) { telnet_event_t ev; /* disable compression */ inflateEnd(telnet->z); free(telnet->z); telnet->z = 0; /* send event */ ev.type = TELNET_EV_COMPRESS; ev.compress.state = 0; telnet->eh(telnet, &ev, telnet->ud); break; } } /* COMPRESS2 is not negotiated, just process */ } else #endif /* defined(HAVE_ZLIB) */ _process(telnet, buffer, size); } /* send an iac command */ void telnet_iac(telnet_t *telnet, unsigned char cmd) { unsigned char bytes[2]; bytes[0] = TELNET_IAC; bytes[1] = cmd; _sendu(telnet, bytes, 2); } /* send negotiation */ void telnet_negotiate(telnet_t *telnet, unsigned char cmd, unsigned char telopt) { telnet_rfc1143_t q; /* if we're in proxy mode, just send it now */ if (telnet->flags & TELNET_FLAG_PROXY) { unsigned char bytes[3]; bytes[0] = TELNET_IAC; bytes[1] = cmd; bytes[2] = telopt; _sendu(telnet, bytes, 3); return; } /* get current option states */ q = _get_rfc1143(telnet, telopt); switch (cmd) { /* advertise willingess to support an option */ case TELNET_WILL: switch (Q_US(q)) { case Q_NO: _set_rfc1143(telnet, telopt, Q_WANTYES, Q_HIM(q)); _send_negotiate(telnet, TELNET_WILL, telopt); break; case Q_WANTNO: _set_rfc1143(telnet, telopt, Q_WANTNO_OP, Q_HIM(q)); break; case Q_WANTYES_OP: _set_rfc1143(telnet, telopt, Q_WANTYES, Q_HIM(q)); break; } break; /* force turn-off of locally enabled option */ case TELNET_WONT: switch (Q_US(q)) { case Q_YES: _set_rfc1143(telnet, telopt, Q_WANTNO, Q_HIM(q)); _send_negotiate(telnet, TELNET_WONT, telopt); break; case Q_WANTYES: _set_rfc1143(telnet, telopt, Q_WANTYES_OP, Q_HIM(q)); break; case Q_WANTNO_OP: _set_rfc1143(telnet, telopt, Q_WANTNO, Q_HIM(q)); break; } break; /* ask remote end to enable an option */ case TELNET_DO: switch (Q_HIM(q)) { case Q_NO: _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTYES); _send_negotiate(telnet, TELNET_DO, telopt); break; case Q_WANTNO: _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTNO_OP); break; case Q_WANTYES_OP: _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTYES); break; } break; /* demand remote end disable an option */ case TELNET_DONT: switch (Q_HIM(q)) { case Q_YES: _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTNO); _send_negotiate(telnet, TELNET_DONT, telopt); break; case Q_WANTYES: _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTYES_OP); break; case Q_WANTNO_OP: _set_rfc1143(telnet, telopt, Q_US(q), Q_WANTNO); break; } break; } } /* send non-command data (escapes IAC bytes) */ void telnet_send(telnet_t *telnet, const char *buffer, size_t size) { size_t i, l; for (l = i = 0; i != size; ++i) { /* dump prior portion of text, send escaped bytes */ if (buffer[i] == (char)TELNET_IAC) { /* dump prior text if any */ if (i != l) { _send(telnet, buffer + l, i - l); } l = i + 1; /* send escape */ telnet_iac(telnet, TELNET_IAC); } } /* send whatever portion of buffer is left */ if (i != l) { _send(telnet, buffer + l, i - l); } } /* send non-command text (escapes IAC bytes and does NVT translation) */ void telnet_send_text(telnet_t *telnet, const char *buffer, size_t size) { size_t i, l; for (l = i = 0; i != size; ++i) { /* dump prior portion of text, send escaped bytes */ if (buffer[i] == (char)TELNET_IAC) { /* dump prior text if any */ if (i != l) { _send(telnet, buffer + l, i - l); } l = i + 1; /* send escape */ telnet_iac(telnet, TELNET_IAC); } /* special characters if not in BINARY mode */ else if (!(telnet->flags & TELNET_FLAG_TRANSMIT_BINARY) && (buffer[i] == '\r' || buffer[i] == '\n')) { /* dump prior portion of text */ if (i != l) { _send(telnet, buffer + l, i - l); } l = i + 1; /* automatic translation of \r -> CRNUL */ if (buffer[i] == '\r') { _send(telnet, CRNUL, 2); } /* automatic translation of \n -> CRLF */ else { _send(telnet, CRLF, 2); } } } /* send whatever portion of buffer is left */ if (i != l) { _send(telnet, buffer + l, i - l); } } /* send subnegotiation header */ void telnet_begin_sb(telnet_t *telnet, unsigned char telopt) { unsigned char sb[3]; sb[0] = TELNET_IAC; sb[1] = TELNET_SB; sb[2] = telopt; _sendu(telnet, sb, 3); } /* send complete subnegotiation */ void telnet_subnegotiation(telnet_t *telnet, unsigned char telopt, const char *buffer, size_t size) { unsigned char bytes[5]; bytes[0] = TELNET_IAC; bytes[1] = TELNET_SB; bytes[2] = telopt; bytes[3] = TELNET_IAC; bytes[4] = TELNET_SE; _sendu(telnet, bytes, 3); telnet_send(telnet, buffer, size); _sendu(telnet, bytes + 3, 2); #if defined(HAVE_ZLIB) /* if we're a proxy and we just sent the COMPRESS2 marker, we must * make sure all further data is compressed if not already. */ if (telnet->flags & TELNET_FLAG_PROXY && telopt == TELNET_TELOPT_COMPRESS2) { telnet_event_t ev; if (_init_zlib(telnet, 1, 1) != TELNET_EOK) return; /* notify app that compression was enabled */ ev.type = TELNET_EV_COMPRESS; ev.compress.state = 1; telnet->eh(telnet, &ev, telnet->ud); } #endif /* defined(HAVE_ZLIB) */ } void telnet_begin_compress2(telnet_t *telnet) { #if defined(HAVE_ZLIB) static const unsigned char compress2[] = { TELNET_IAC, TELNET_SB, TELNET_TELOPT_COMPRESS2, TELNET_IAC, TELNET_SE }; telnet_event_t ev; /* attempt to create output stream first, bail if we can't */ if (_init_zlib(telnet, 1, 0) != TELNET_EOK) return; /* send compression marker. we send directly to the event handler * instead of passing through _send because _send would result in * the compress marker itself being compressed. */ ev.type = TELNET_EV_SEND; ev.data.buffer = (const char*)compress2; ev.data.size = sizeof(compress2); telnet->eh(telnet, &ev, telnet->ud); /* notify app that compression was successfully enabled */ ev.type = TELNET_EV_COMPRESS; ev.compress.state = 1; telnet->eh(telnet, &ev, telnet->ud); #endif /* defined(HAVE_ZLIB) */ } /* send formatted data with \r and \n translation in addition to IAC IAC */ int telnet_vprintf(telnet_t *telnet, const char *fmt, va_list va) { char buffer[1024]; char *output = buffer; int rs, i, l; /* format */ va_list va2; va_copy(va2, va); rs = vsnprintf(buffer, sizeof(buffer), fmt, va); if (rs >= sizeof(buffer)) { output = (char*)malloc(rs + 1); if (output == 0) { _error(telnet, __LINE__, __func__, TELNET_ENOMEM, 0, "malloc() failed: %s", strerror(errno)); return -1; } rs = vsnprintf(output, rs + 1, fmt, va2); } va_end(va2); va_end(va); /* send */ for (l = i = 0; i != rs; ++i) { /* special characters */ if (output[i] == (char)TELNET_IAC || output[i] == '\r' || output[i] == '\n') { /* dump prior portion of text */ if (i != l) _send(telnet, output + l, i - l); l = i + 1; /* IAC -> IAC IAC */ if (output[i] == (char)TELNET_IAC) telnet_iac(telnet, TELNET_IAC); /* automatic translation of \r -> CRNUL */ else if (output[i] == '\r') _send(telnet, CRNUL, 2); /* automatic translation of \n -> CRLF */ else if (output[i] == '\n') _send(telnet, CRLF, 2); } } /* send whatever portion of output is left */ if (i != l) { _send(telnet, output + l, i - l); } /* free allocated memory, if any */ if (output != buffer) { free(output); } return rs; } /* see telnet_vprintf */ int telnet_printf(telnet_t *telnet, const char *fmt, ...) { va_list va; int rs; va_start(va, fmt); rs = telnet_vprintf(telnet, fmt, va); va_end(va); return rs; } /* send formatted data through telnet_send */ int telnet_raw_vprintf(telnet_t *telnet, const char *fmt, va_list va) { char buffer[1024]; char *output = buffer; int rs; /* format; allocate more space if necessary */ va_list va2; va_copy(va2, va); rs = vsnprintf(buffer, sizeof(buffer), fmt, va); if (rs >= sizeof(buffer)) { output = (char*)malloc(rs + 1); if (output == 0) { _error(telnet, __LINE__, __func__, TELNET_ENOMEM, 0, "malloc() failed: %s", strerror(errno)); return -1; } rs = vsnprintf(output, rs + 1, fmt, va2); } va_end(va2); va_end(va); /* send out the formatted data */ telnet_send(telnet, output, rs); /* release allocated memory, if any */ if (output != buffer) { free(output); } return rs; } /* see telnet_raw_vprintf */ int telnet_raw_printf(telnet_t *telnet, const char *fmt, ...) { va_list va; int rs; va_start(va, fmt); rs = telnet_raw_vprintf(telnet, fmt, va); va_end(va); return rs; } /* begin NEW-ENVIRON subnegotation */ void telnet_begin_newenviron(telnet_t *telnet, unsigned char cmd) { telnet_begin_sb(telnet, TELNET_TELOPT_NEW_ENVIRON); telnet_send(telnet, (const char *)&cmd, 1); } /* send a NEW-ENVIRON value */ void telnet_newenviron_value(telnet_t *telnet, unsigned char type, const char *string) { telnet_send(telnet, (const char*)&type, 1); if (string != 0) { telnet_send(telnet, string, strlen(string)); } } /* send TERMINAL-TYPE SEND command */ void telnet_ttype_send(telnet_t *telnet) { static const unsigned char SEND[] = { TELNET_IAC, TELNET_SB, TELNET_TELOPT_TTYPE, TELNET_TTYPE_SEND, TELNET_IAC, TELNET_SE }; _sendu(telnet, SEND, sizeof(SEND)); } /* send TERMINAL-TYPE IS command */ void telnet_ttype_is(telnet_t *telnet, const char* ttype) { static const unsigned char IS[] = { TELNET_IAC, TELNET_SB, TELNET_TELOPT_TTYPE, TELNET_TTYPE_IS }; _sendu(telnet, IS, sizeof(IS)); _send(telnet, ttype, strlen(ttype)); telnet_finish_sb(telnet); } /* send ZMP data */ void telnet_send_zmp(telnet_t *telnet, size_t argc, const char **argv) { size_t i; /* ZMP header */ telnet_begin_zmp(telnet, argv[0]); /* send out each argument, including trailing NUL byte */ for (i = 1; i != argc; ++i) telnet_zmp_arg(telnet, argv[i]); /* ZMP footer */ telnet_finish_zmp(telnet); } /* send ZMP data using varargs */ void telnet_send_vzmpv(telnet_t *telnet, va_list va) { const char* arg; /* ZMP header */ telnet_begin_sb(telnet, TELNET_TELOPT_ZMP); /* send out each argument, including trailing NUL byte */ while ((arg = va_arg(va, const char *)) != 0) telnet_zmp_arg(telnet, arg); /* ZMP footer */ telnet_finish_zmp(telnet); } /* see telnet_send_vzmpv */ void telnet_send_zmpv(telnet_t *telnet, ...) { va_list va; va_start(va, telnet); telnet_send_vzmpv(telnet, va); va_end(va); } /* begin a ZMP command */ void telnet_begin_zmp(telnet_t *telnet, const char *cmd) { telnet_begin_sb(telnet, TELNET_TELOPT_ZMP); telnet_zmp_arg(telnet, cmd); } /* send a ZMP argument */ void telnet_zmp_arg(telnet_t *telnet, const char* arg) { telnet_send(telnet, arg, strlen(arg) + 1); } libtelnet-0.23/libtelnet.h000066400000000000000000000516621336202271100155620ustar00rootroot00000000000000/*! * \brief libtelnet - TELNET protocol handling library * * SUMMARY: * * libtelnet is a library for handling the TELNET protocol. It includes * routines for parsing incoming data from a remote peer as well as formatting * data to send to the remote peer. * * libtelnet uses a callback-oriented API, allowing application-specific * handling of various events. The callback system is also used for buffering * outgoing protocol data, allowing the application to maintain control over * the actual socket connection. * * Features supported include the full TELNET protocol, Q-method option * negotiation, ZMP, MCCP2, MSSP, and NEW-ENVIRON. * * CONFORMS TO: * * RFC854 - http://www.faqs.org/rfcs/rfc854.html * RFC855 - http://www.faqs.org/rfcs/rfc855.html * RFC1091 - http://www.faqs.org/rfcs/rfc1091.html * RFC1143 - http://www.faqs.org/rfcs/rfc1143.html * RFC1408 - http://www.faqs.org/rfcs/rfc1408.html * RFC1572 - http://www.faqs.org/rfcs/rfc1572.html * * LICENSE: * * The author or authors of this code dedicate any and all copyright interest * in this code to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and successors. We * intend this dedication to be an overt act of relinquishment in perpetuity of * all present and future rights to this code under copyright law. * * \file libtelnet.h * * \version 0.23 * * \author Sean Middleditch */ #if !defined(LIBTELNET_INCLUDE) #define LIBTELNET_INCLUDE 1 /* standard C headers necessary for the libtelnet API */ #include #include /* C++ support */ #if defined(__cplusplus) extern "C" { #endif /* printf type checking feature in GCC and some other compilers */ #if __GNUC__ # define TELNET_GNU_PRINTF(f,a) __attribute__((format(printf, f, a))) /*!< internal helper */ # define TELNET_GNU_SENTINEL __attribute__((sentinel)) /*!< internal helper */ #else # define TELNET_GNU_PRINTF(f,a) /*!< internal helper */ # define TELNET_GNU_SENTINEL /*!< internal helper */ #endif /* Disable environ macro for Visual C++ 2015. */ #undef environ /*! Telnet state tracker object type. */ typedef struct telnet_t telnet_t; /*! Telnet event object type. */ typedef union telnet_event_t telnet_event_t; /*! Telnet option table element type. */ typedef struct telnet_telopt_t telnet_telopt_t; /*! \name Telnet commands */ /*@{*/ /*! Telnet commands and special values. */ #define TELNET_IAC 255 #define TELNET_DONT 254 #define TELNET_DO 253 #define TELNET_WONT 252 #define TELNET_WILL 251 #define TELNET_SB 250 #define TELNET_GA 249 #define TELNET_EL 248 #define TELNET_EC 247 #define TELNET_AYT 246 #define TELNET_AO 245 #define TELNET_IP 244 #define TELNET_BREAK 243 #define TELNET_DM 242 #define TELNET_NOP 241 #define TELNET_SE 240 #define TELNET_EOR 239 #define TELNET_ABORT 238 #define TELNET_SUSP 237 #define TELNET_EOF 236 /*@}*/ /*! \name Telnet option values. */ /*@{*/ /*! Telnet options. */ #define TELNET_TELOPT_BINARY 0 #define TELNET_TELOPT_ECHO 1 #define TELNET_TELOPT_RCP 2 #define TELNET_TELOPT_SGA 3 #define TELNET_TELOPT_NAMS 4 #define TELNET_TELOPT_STATUS 5 #define TELNET_TELOPT_TM 6 #define TELNET_TELOPT_RCTE 7 #define TELNET_TELOPT_NAOL 8 #define TELNET_TELOPT_NAOP 9 #define TELNET_TELOPT_NAOCRD 10 #define TELNET_TELOPT_NAOHTS 11 #define TELNET_TELOPT_NAOHTD 12 #define TELNET_TELOPT_NAOFFD 13 #define TELNET_TELOPT_NAOVTS 14 #define TELNET_TELOPT_NAOVTD 15 #define TELNET_TELOPT_NAOLFD 16 #define TELNET_TELOPT_XASCII 17 #define TELNET_TELOPT_LOGOUT 18 #define TELNET_TELOPT_BM 19 #define TELNET_TELOPT_DET 20 #define TELNET_TELOPT_SUPDUP 21 #define TELNET_TELOPT_SUPDUPOUTPUT 22 #define TELNET_TELOPT_SNDLOC 23 #define TELNET_TELOPT_TTYPE 24 #define TELNET_TELOPT_EOR 25 #define TELNET_TELOPT_TUID 26 #define TELNET_TELOPT_OUTMRK 27 #define TELNET_TELOPT_TTYLOC 28 #define TELNET_TELOPT_3270REGIME 29 #define TELNET_TELOPT_X3PAD 30 #define TELNET_TELOPT_NAWS 31 #define TELNET_TELOPT_TSPEED 32 #define TELNET_TELOPT_LFLOW 33 #define TELNET_TELOPT_LINEMODE 34 #define TELNET_TELOPT_XDISPLOC 35 #define TELNET_TELOPT_ENVIRON 36 #define TELNET_TELOPT_AUTHENTICATION 37 #define TELNET_TELOPT_ENCRYPT 38 #define TELNET_TELOPT_NEW_ENVIRON 39 #define TELNET_TELOPT_MSSP 70 #define TELNET_TELOPT_COMPRESS 85 #define TELNET_TELOPT_COMPRESS2 86 #define TELNET_TELOPT_ZMP 93 #define TELNET_TELOPT_EXOPL 255 #define TELNET_TELOPT_MCCP2 86 /*@}*/ /*! \name Protocol codes for TERMINAL-TYPE commands. */ /*@{*/ /*! TERMINAL-TYPE codes. */ #define TELNET_TTYPE_IS 0 #define TELNET_TTYPE_SEND 1 /*@}*/ /*! \name Protocol codes for NEW-ENVIRON/ENVIRON commands. */ /*@{*/ /*! NEW-ENVIRON/ENVIRON codes. */ #define TELNET_ENVIRON_IS 0 #define TELNET_ENVIRON_SEND 1 #define TELNET_ENVIRON_INFO 2 #define TELNET_ENVIRON_VAR 0 #define TELNET_ENVIRON_VALUE 1 #define TELNET_ENVIRON_ESC 2 #define TELNET_ENVIRON_USERVAR 3 /*@}*/ /*! \name Protocol codes for MSSP commands. */ /*@{*/ /*! MSSP codes. */ #define TELNET_MSSP_VAR 1 #define TELNET_MSSP_VAL 2 /*@}*/ /*! \name Telnet state tracker flags. */ /*@{*/ /*! Control behavior of telnet state tracker. */ #define TELNET_FLAG_PROXY (1<<0) #define TELNET_FLAG_NVT_EOL (1<<1) /* Internal-only bits in option flags */ #define TELNET_FLAG_TRANSMIT_BINARY (1<<5) #define TELNET_FLAG_RECEIVE_BINARY (1<<6) #define TELNET_PFLAG_DEFLATE (1<<7) /*@}*/ /*! * error codes */ enum telnet_error_t { TELNET_EOK = 0, /*!< no error */ TELNET_EBADVAL, /*!< invalid parameter, or API misuse */ TELNET_ENOMEM, /*!< memory allocation failure */ TELNET_EOVERFLOW, /*!< data exceeds buffer size */ TELNET_EPROTOCOL, /*!< invalid sequence of special bytes */ TELNET_ECOMPRESS /*!< error handling compressed streams */ }; typedef enum telnet_error_t telnet_error_t; /*!< Error code type. */ /*! * event codes */ enum telnet_event_type_t { TELNET_EV_DATA = 0, /*!< raw text data has been received */ TELNET_EV_SEND, /*!< data needs to be sent to the peer */ TELNET_EV_IAC, /*!< generic IAC code received */ TELNET_EV_WILL, /*!< WILL option negotiation received */ TELNET_EV_WONT, /*!< WONT option neogitation received */ TELNET_EV_DO, /*!< DO option negotiation received */ TELNET_EV_DONT, /*!< DONT option negotiation received */ TELNET_EV_SUBNEGOTIATION, /*!< sub-negotiation data received */ TELNET_EV_COMPRESS, /*!< compression has been enabled */ TELNET_EV_ZMP, /*!< ZMP command has been received */ TELNET_EV_TTYPE, /*!< TTYPE command has been received */ TELNET_EV_ENVIRON, /*!< ENVIRON command has been received */ TELNET_EV_MSSP, /*!< MSSP command has been received */ TELNET_EV_WARNING, /*!< recoverable error has occured */ TELNET_EV_ERROR /*!< non-recoverable error has occured */ }; typedef enum telnet_event_type_t telnet_event_type_t; /*!< Telnet event type. */ /*! * environ/MSSP command information */ struct telnet_environ_t { unsigned char type; /*!< either TELNET_ENVIRON_VAR or TELNET_ENVIRON_USERVAR */ char *var; /*!< name of the variable being set */ char *value; /*!< value of variable being set; empty string if no value */ }; /*! * event information */ union telnet_event_t { /*! * \brief Event type * * The type field will determine which of the other event structure fields * have been filled in. For instance, if the event type is TELNET_EV_ZMP, * then the zmp event field (and ONLY the zmp event field) will be filled * in. */ enum telnet_event_type_t type; /*! * data event: for DATA and SEND events */ struct data_t { enum telnet_event_type_t _type; /*!< alias for type */ const char *buffer; /*!< byte buffer */ size_t size; /*!< number of bytes in buffer */ } data; /*! * WARNING and ERROR events */ struct error_t { enum telnet_event_type_t _type; /*!< alias for type */ const char *file; /*!< file the error occured in */ const char *func; /*!< function the error occured in */ const char *msg; /*!< error message string */ int line; /*!< line of file error occured on */ telnet_error_t errcode; /*!< error code */ } error; /*! * command event: for IAC */ struct iac_t { enum telnet_event_type_t _type; /*!< alias for type */ unsigned char cmd; /*!< telnet command received */ } iac; /*! * negotiation event: WILL, WONT, DO, DONT */ struct negotiate_t { enum telnet_event_type_t _type; /*!< alias for type */ unsigned char telopt; /*!< option being negotiated */ } neg; /*! * subnegotiation event */ struct subnegotiate_t { enum telnet_event_type_t _type; /*!< alias for type */ const char *buffer; /*!< data of sub-negotiation */ size_t size; /*!< number of bytes in buffer */ unsigned char telopt; /*!< option code for negotiation */ } sub; /*! * ZMP event */ struct zmp_t { enum telnet_event_type_t _type; /*!< alias for type */ const char **argv; /*!< array of argument string */ size_t argc; /*!< number of elements in argv */ } zmp; /*! * TTYPE event */ struct ttype_t { enum telnet_event_type_t _type; /*!< alias for type */ unsigned char cmd; /*!< TELNET_TTYPE_IS or TELNET_TTYPE_SEND */ const char* name; /*!< terminal type name (IS only) */ } ttype; /*! * COMPRESS event */ struct compress_t { enum telnet_event_type_t _type; /*!< alias for type */ unsigned char state; /*!< 1 if compression is enabled, 0 if disabled */ } compress; /*! * ENVIRON/NEW-ENVIRON event */ struct environ_t { enum telnet_event_type_t _type; /*!< alias for type */ const struct telnet_environ_t *values; /*!< array of variable values */ size_t size; /*!< number of elements in values */ unsigned char cmd; /*!< SEND, IS, or INFO */ } environ; /*! * MSSP event */ struct mssp_t { enum telnet_event_type_t _type; /*!< alias for type */ const struct telnet_environ_t *values; /*!< array of variable values */ size_t size; /*!< number of elements in values */ } mssp; }; /*! * \brief event handler * * This is the type of function that must be passed to * telnet_init() when creating a new telnet object. The * function will be invoked once for every event generated * by the libtelnet protocol parser. * * \param telnet The telnet object that generated the event * \param event Event structure with details about the event * \param user_data User-supplied pointer */ typedef void (*telnet_event_handler_t)(telnet_t *telnet, telnet_event_t *event, void *user_data); /*! * telopt support table element; use telopt of -1 for end marker */ struct telnet_telopt_t { short telopt; /*!< one of the TELOPT codes or -1 */ unsigned char us; /*!< TELNET_WILL or TELNET_WONT */ unsigned char him; /*!< TELNET_DO or TELNET_DONT */ }; /*! * state tracker -- private data structure */ struct telnet_t; /*! * \brief Initialize a telnet state tracker. * * This function initializes a new state tracker, which is used for all * other libtelnet functions. Each connection must have its own * telnet state tracker object. * * \param telopts Table of TELNET options the application supports. * \param eh Event handler function called for every event. * \param flags 0 or TELNET_FLAG_PROXY. * \param user_data Optional data pointer that will be passsed to eh. * \return Telnet state tracker object. */ extern telnet_t* telnet_init(const telnet_telopt_t *telopts, telnet_event_handler_t eh, unsigned char flags, void *user_data); /*! * \brief Free up any memory allocated by a state tracker. * * This function must be called when a telnet state tracker is no * longer needed (such as after the connection has been closed) to * release any memory resources used by the state tracker. * * \param telnet Telnet state tracker object. */ extern void telnet_free(telnet_t *telnet); /*! * \brief Push a byte buffer into the state tracker. * * Passes one or more bytes to the telnet state tracker for * protocol parsing. The byte buffer is most often going to be * the buffer that recv() was called for while handling the * connection. * * \param telnet Telnet state tracker object. * \param buffer Pointer to byte buffer. * \param size Number of bytes pointed to by buffer. */ extern void telnet_recv(telnet_t *telnet, const char *buffer, size_t size); /*! * \brief Send a telnet command. * * \param telnet Telnet state tracker object. * \param cmd Command to send. */ extern void telnet_iac(telnet_t *telnet, unsigned char cmd); /*! * \brief Send negotiation command. * * Internally, libtelnet uses RFC1143 option negotiation rules. * The negotiation commands sent with this function may be ignored * if they are determined to be redundant. * * \param telnet Telnet state tracker object. * \param cmd TELNET_WILL, TELNET_WONT, TELNET_DO, or TELNET_DONT. * \param opt One of the TELNET_TELOPT_* values. */ extern void telnet_negotiate(telnet_t *telnet, unsigned char cmd, unsigned char opt); /*! * Send non-command data (escapes IAC bytes). * * \param telnet Telnet state tracker object. * \param buffer Buffer of bytes to send. * \param size Number of bytes to send. */ extern void telnet_send(telnet_t *telnet, const char *buffer, size_t size); /*! * Send non-command text (escapes IAC bytes and translates * \\r -> CR-NUL and \\n -> CR-LF unless in BINARY mode. * * \param telnet Telnet state tracker object. * \param buffer Buffer of bytes to send. * \param size Number of bytes to send. */ extern void telnet_send_text(telnet_t *telnet, const char *buffer, size_t size); /*! * \brief Begin a sub-negotiation command. * * Sends IAC SB followed by the telopt code. All following data sent * will be part of the sub-negotiation, until telnet_finish_sb() is * called. * * \param telnet Telnet state tracker object. * \param telopt One of the TELNET_TELOPT_* values. */ extern void telnet_begin_sb(telnet_t *telnet, unsigned char telopt); /*! * \brief Finish a sub-negotiation command. * * This must be called after a call to telnet_begin_sb() to finish a * sub-negotiation command. * * \param telnet Telnet state tracker object. */ #define telnet_finish_sb(telnet) telnet_iac((telnet), TELNET_SE) /*! * \brief Shortcut for sending a complete subnegotiation buffer. * * Equivalent to: * telnet_begin_sb(telnet, telopt); * telnet_send(telnet, buffer, size); * telnet_finish_sb(telnet); * * \param telnet Telnet state tracker format. * \param telopt One of the TELNET_TELOPT_* values. * \param buffer Byte buffer for sub-negotiation data. * \param size Number of bytes to use for sub-negotiation data. */ extern void telnet_subnegotiation(telnet_t *telnet, unsigned char telopt, const char *buffer, size_t size); /*! * \brief Begin sending compressed data. * * This function will begein sending data using the COMPRESS2 option, * which enables the use of zlib to compress data sent to the client. * The client must offer support for COMPRESS2 with option negotiation, * and zlib support must be compiled into libtelnet. * * Only the server may call this command. * * \param telnet Telnet state tracker object. */ extern void telnet_begin_compress2(telnet_t *telnet); /*! * \brief Send formatted data. * * This function is a wrapper around telnet_send(). It allows using * printf-style formatting. * * Additionally, this function will translate \\r to the CR NUL construct and * \\n with CR LF, as well as automatically escaping IAC bytes like * telnet_send(). * * \param telnet Telnet state tracker object. * \param fmt Format string. * \return Number of bytes sent. */ extern int telnet_printf(telnet_t *telnet, const char *fmt, ...) TELNET_GNU_PRINTF(2, 3); /*! * \brief Send formatted data. * * See telnet_printf(). */ extern int telnet_vprintf(telnet_t *telnet, const char *fmt, va_list va); /*! * \brief Send formatted data (no newline escaping). * * This behaves identically to telnet_printf(), except that the \\r and \\n * characters are not translated. The IAC byte is still escaped as normal * with telnet_send(). * * \param telnet Telnet state tracker object. * \param fmt Format string. * \return Number of bytes sent. */ extern int telnet_raw_printf(telnet_t *telnet, const char *fmt, ...) TELNET_GNU_PRINTF(2, 3); /*! * \brief Send formatted data (no newline escaping). * * See telnet_raw_printf(). */ extern int telnet_raw_vprintf(telnet_t *telnet, const char *fmt, va_list va); /*! * \brief Begin a new set of NEW-ENVIRON values to request or send. * * This function will begin the sub-negotiation block for sending or * requesting NEW-ENVIRON values. * * The telnet_finish_newenviron() macro must be called after this * function to terminate the NEW-ENVIRON command. * * \param telnet Telnet state tracker object. * \param type One of TELNET_ENVIRON_SEND, TELNET_ENVIRON_IS, or * TELNET_ENVIRON_INFO. */ extern void telnet_begin_newenviron(telnet_t *telnet, unsigned char type); /*! * \brief Send a NEW-ENVIRON variable name or value. * * This can only be called between calls to telnet_begin_newenviron() and * telnet_finish_newenviron(). * * \param telnet Telnet state tracker object. * \param type One of TELNET_ENVIRON_VAR, TELNET_ENVIRON_USERVAR, or * TELNET_ENVIRON_VALUE. * \param string Variable name or value. */ extern void telnet_newenviron_value(telnet_t* telnet, unsigned char type, const char *string); /*! * \brief Finish a NEW-ENVIRON command. * * This must be called after a call to telnet_begin_newenviron() to finish a * NEW-ENVIRON variable list. * * \param telnet Telnet state tracker object. */ #define telnet_finish_newenviron(telnet) telnet_finish_sb((telnet)) /*! * \brief Send the TERMINAL-TYPE SEND command. * * Sends the sequence IAC TERMINAL-TYPE SEND. * * \param telnet Telnet state tracker object. */ extern void telnet_ttype_send(telnet_t *telnet); /*! * \brief Send the TERMINAL-TYPE IS command. * * Sends the sequence IAC TERMINAL-TYPE IS "string". * * According to the RFC, the recipient of a TERMINAL-TYPE SEND shall * send the next possible terminal-type the client supports. Upon sending * the type, the client should switch modes to begin acting as the terminal * type is just sent. * * The server may continue sending TERMINAL-TYPE IS until it receives a * terminal type is understands. To indicate to the server that it has * reached the end of the available optoins, the client must send the last * terminal type a second time. When the server receives the same terminal * type twice in a row, it knows it has seen all available terminal types. * * After the last terminal type is sent, if the client receives another * TERMINAL-TYPE SEND command, it must begin enumerating the available * terminal types from the very beginning. This allows the server to * scan the available types for a preferred terminal type and, if none * is found, to then ask the client to switch to an acceptable * alternative. * * Note that if the client only supports a single terminal type, then * simply sending that one type in response to every SEND will satisfy * the behavior requirements. * * \param telnet Telnet state tracker object. * \param ttype Name of the terminal-type being sent. */ extern void telnet_ttype_is(telnet_t *telnet, const char* ttype); /*! * \brief Send a ZMP command. * * \param telnet Telnet state tracker object. * \param argc Number of ZMP commands being sent. * \param argv Array of argument strings. */ extern void telnet_send_zmp(telnet_t *telnet, size_t argc, const char **argv); /*! * \brief Send a ZMP command. * * Arguments are listed out in var-args style. After the last argument, a * NULL pointer must be passed in as a sentinel value. * * \param telnet Telnet state tracker object. */ extern void telnet_send_zmpv(telnet_t *telnet, ...) TELNET_GNU_SENTINEL; /*! * \brief Send a ZMP command. * * See telnet_send_zmpv(). */ extern void telnet_send_vzmpv(telnet_t *telnet, va_list va); /*! * \brief Begin sending a ZMP command * * \param telnet Telnet state tracker object. * \param cmd The first argument (command name) for the ZMP command. */ extern void telnet_begin_zmp(telnet_t *telnet, const char *cmd); /*! * \brief Send a ZMP command argument. * * \param telnet Telnet state tracker object. * \param arg Telnet argument string. */ extern void telnet_zmp_arg(telnet_t *telnet, const char *arg); /*! * \brief Finish a ZMP command. * * This must be called after a call to telnet_begin_zmp() to finish a * ZMP argument list. * * \param telnet Telnet state tracker object. */ #define telnet_finish_zmp(telnet) telnet_finish_sb((telnet)) /* C++ support */ #if defined(__cplusplus) } /* extern "C" */ #endif #endif /* !defined(LIBTELNET_INCLUDE) */ libtelnet-0.23/libtelnet.pc.in000066400000000000000000000003431336202271100163300ustar00rootroot00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=${prefix}/include Name: libtelnet Description: TELNET protocol handling library Version: @VERSION@ Libs: -L${libdir} -ltelnet @LIBS@ Cflags: -I${includedir} libtelnet-0.23/m4/000077500000000000000000000000001336202271100137355ustar00rootroot00000000000000libtelnet-0.23/m4/.keep000066400000000000000000000000001336202271100146500ustar00rootroot00000000000000libtelnet-0.23/msvc2008/000077500000000000000000000000001336202271100146775ustar00rootroot00000000000000libtelnet-0.23/msvc2008/libtelnet.sln000066400000000000000000000040351336202271100174010ustar00rootroot00000000000000 Microsoft Visual Studio Solution File, Format Version 10.00 # Visual Studio 2008 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libtelnet", "libtelnet.vcproj", "{1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "telnet-proxy", "telnet-proxy.vcproj", "{20B4F215-FF36-4979-824A-D094B62BD04C}" ProjectSection(ProjectDependencies) = postProject {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D} = {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "telnet-chatd", "telnet-chatd.vcproj", "{838296BF-E876-42CD-9E67-4866EA43DB11}" ProjectSection(ProjectDependencies) = postProject {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D} = {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D} EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}.Debug|Win32.ActiveCfg = Debug|Win32 {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}.Debug|Win32.Build.0 = Debug|Win32 {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}.Release|Win32.ActiveCfg = Release|Win32 {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}.Release|Win32.Build.0 = Release|Win32 {20B4F215-FF36-4979-824A-D094B62BD04C}.Debug|Win32.ActiveCfg = Debug|Win32 {20B4F215-FF36-4979-824A-D094B62BD04C}.Debug|Win32.Build.0 = Debug|Win32 {20B4F215-FF36-4979-824A-D094B62BD04C}.Release|Win32.ActiveCfg = Release|Win32 {20B4F215-FF36-4979-824A-D094B62BD04C}.Release|Win32.Build.0 = Release|Win32 {838296BF-E876-42CD-9E67-4866EA43DB11}.Debug|Win32.ActiveCfg = Debug|Win32 {838296BF-E876-42CD-9E67-4866EA43DB11}.Debug|Win32.Build.0 = Debug|Win32 {838296BF-E876-42CD-9E67-4866EA43DB11}.Release|Win32.ActiveCfg = Release|Win32 {838296BF-E876-42CD-9E67-4866EA43DB11}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal libtelnet-0.23/msvc2008/libtelnet.vcproj000066400000000000000000000066251336202271100201170ustar00rootroot00000000000000 libtelnet-0.23/msvc2008/telnet-chatd.vcproj000066400000000000000000000074111336202271100205030ustar00rootroot00000000000000 libtelnet-0.23/msvc2008/telnet-proxy.vcproj000066400000000000000000000074111336202271100206010ustar00rootroot00000000000000 libtelnet-0.23/msvc2008/zconf.h000066400000000000000000000320771336202271100162000ustar00rootroot00000000000000/* zconf.h -- configuration of the zlib compression library * Copyright (C) 1995-2010 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #ifndef ZCONF_H #define ZCONF_H /* * If you *really* need a unique prefix for all types and library functions, * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. * Even better than compiling with -DZ_PREFIX would be to use configure to set * this permanently in zconf.h using "./configure --zprefix". */ #ifdef Z_PREFIX /* may be set to #if 1 by ./configure */ /* all linked symbols */ # define _dist_code z__dist_code # define _length_code z__length_code # define _tr_align z__tr_align # define _tr_flush_block z__tr_flush_block # define _tr_init z__tr_init # define _tr_stored_block z__tr_stored_block # define _tr_tally z__tr_tally # define adler32 z_adler32 # define adler32_combine z_adler32_combine # define adler32_combine64 z_adler32_combine64 # define compress z_compress # define compress2 z_compress2 # define compressBound z_compressBound # define crc32 z_crc32 # define crc32_combine z_crc32_combine # define crc32_combine64 z_crc32_combine64 # define deflate z_deflate # define deflateBound z_deflateBound # define deflateCopy z_deflateCopy # define deflateEnd z_deflateEnd # define deflateInit2_ z_deflateInit2_ # define deflateInit_ z_deflateInit_ # define deflateParams z_deflateParams # define deflatePrime z_deflatePrime # define deflateReset z_deflateReset # define deflateSetDictionary z_deflateSetDictionary # define deflateSetHeader z_deflateSetHeader # define deflateTune z_deflateTune # define deflate_copyright z_deflate_copyright # define get_crc_table z_get_crc_table # define gz_error z_gz_error # define gz_intmax z_gz_intmax # define gz_strwinerror z_gz_strwinerror # define gzbuffer z_gzbuffer # define gzclearerr z_gzclearerr # define gzclose z_gzclose # define gzclose_r z_gzclose_r # define gzclose_w z_gzclose_w # define gzdirect z_gzdirect # define gzdopen z_gzdopen # define gzeof z_gzeof # define gzerror z_gzerror # define gzflush z_gzflush # define gzgetc z_gzgetc # define gzgets z_gzgets # define gzoffset z_gzoffset # define gzoffset64 z_gzoffset64 # define gzopen z_gzopen # define gzopen64 z_gzopen64 # define gzprintf z_gzprintf # define gzputc z_gzputc # define gzputs z_gzputs # define gzread z_gzread # define gzrewind z_gzrewind # define gzseek z_gzseek # define gzseek64 z_gzseek64 # define gzsetparams z_gzsetparams # define gztell z_gztell # define gztell64 z_gztell64 # define gzungetc z_gzungetc # define gzwrite z_gzwrite # define inflate z_inflate # define inflateBack z_inflateBack # define inflateBackEnd z_inflateBackEnd # define inflateBackInit_ z_inflateBackInit_ # define inflateCopy z_inflateCopy # define inflateEnd z_inflateEnd # define inflateGetHeader z_inflateGetHeader # define inflateInit2_ z_inflateInit2_ # define inflateInit_ z_inflateInit_ # define inflateMark z_inflateMark # define inflatePrime z_inflatePrime # define inflateReset z_inflateReset # define inflateReset2 z_inflateReset2 # define inflateSetDictionary z_inflateSetDictionary # define inflateSync z_inflateSync # define inflateSyncPoint z_inflateSyncPoint # define inflateUndermine z_inflateUndermine # define inflate_copyright z_inflate_copyright # define inflate_fast z_inflate_fast # define inflate_table z_inflate_table # define uncompress z_uncompress # define zError z_zError # define zcalloc z_zcalloc # define zcfree z_zcfree # define zlibCompileFlags z_zlibCompileFlags # define zlibVersion z_zlibVersion /* all zlib typedefs in zlib.h and zconf.h */ # define Byte z_Byte # define Bytef z_Bytef # define alloc_func z_alloc_func # define charf z_charf # define free_func z_free_func # define gzFile z_gzFile # define gz_header z_gz_header # define gz_headerp z_gz_headerp # define in_func z_in_func # define intf z_intf # define out_func z_out_func # define uInt z_uInt # define uIntf z_uIntf # define uLong z_uLong # define uLongf z_uLongf # define voidp z_voidp # define voidpc z_voidpc # define voidpf z_voidpf /* all zlib structs in zlib.h and zconf.h */ # define gz_header_s z_gz_header_s # define internal_state z_internal_state #endif #if defined(__MSDOS__) && !defined(MSDOS) # define MSDOS #endif #if (defined(OS_2) || defined(__OS2__)) && !defined(OS2) # define OS2 #endif #if defined(_WINDOWS) && !defined(WINDOWS) # define WINDOWS #endif #if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__) # ifndef WIN32 # define WIN32 # endif #endif #if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32) # if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__) # ifndef SYS16BIT # define SYS16BIT # endif # endif #endif /* * Compile with -DMAXSEG_64K if the alloc function cannot allocate more * than 64k bytes at a time (needed on systems with 16-bit int). */ #ifdef SYS16BIT # define MAXSEG_64K #endif #ifdef MSDOS # define UNALIGNED_OK #endif #ifdef __STDC_VERSION__ # ifndef STDC # define STDC # endif # if __STDC_VERSION__ >= 199901L # ifndef STDC99 # define STDC99 # endif # endif #endif #if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus)) # define STDC #endif #if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__)) # define STDC #endif #if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32)) # define STDC #endif #if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__)) # define STDC #endif #if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */ # define STDC #endif #ifndef STDC # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */ # define const /* note: need a more gentle solution here */ # endif #endif /* Some Mac compilers merge all .h files incorrectly: */ #if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__) # define NO_DUMMY_DECL #endif /* Maximum value for memLevel in deflateInit2 */ #ifndef MAX_MEM_LEVEL # ifdef MAXSEG_64K # define MAX_MEM_LEVEL 8 # else # define MAX_MEM_LEVEL 9 # endif #endif /* Maximum value for windowBits in deflateInit2 and inflateInit2. * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files * created by gzip. (Files created by minigzip can still be extracted by * gzip.) */ #ifndef MAX_WBITS # define MAX_WBITS 15 /* 32K LZ77 window */ #endif /* The memory requirements for deflate are (in bytes): (1 << (windowBits+2)) + (1 << (memLevel+9)) that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) plus a few kilobytes for small objects. For example, if you want to reduce the default memory requirements from 256K to 128K, compile with make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7" Of course this will generally degrade compression (there's no free lunch). The memory requirements for inflate are (in bytes) 1 << windowBits that is, 32K for windowBits=15 (default value) plus a few kilobytes for small objects. */ /* Type declarations */ #ifndef OF /* function prototypes */ # ifdef STDC # define OF(args) args # else # define OF(args) () # endif #endif /* The following definitions for FAR are needed only for MSDOS mixed * model programming (small or medium model with some far allocations). * This was tested only with MSC; for other MSDOS compilers you may have * to define NO_MEMCPY in zutil.h. If you don't need the mixed model, * just define FAR to be empty. */ #ifdef SYS16BIT # if defined(M_I86SM) || defined(M_I86MM) /* MSC small or medium model */ # define SMALL_MEDIUM # ifdef _MSC_VER # define FAR _far # else # define FAR far # endif # endif # if (defined(__SMALL__) || defined(__MEDIUM__)) /* Turbo C small or medium model */ # define SMALL_MEDIUM # ifdef __BORLANDC__ # define FAR _far # else # define FAR far # endif # endif #endif #if defined(WINDOWS) || defined(WIN32) /* If building or using zlib as a DLL, define ZLIB_DLL. * This is not mandatory, but it offers a little performance increase. */ # ifdef ZLIB_DLL # if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500)) # ifdef ZLIB_INTERNAL # define ZEXTERN extern __declspec(dllexport) # else # define ZEXTERN extern __declspec(dllimport) # endif # endif # endif /* ZLIB_DLL */ /* If building or using zlib with the WINAPI/WINAPIV calling convention, * define ZLIB_WINAPI. * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI. */ # ifdef ZLIB_WINAPI # ifdef FAR # undef FAR # endif # include /* No need for _export, use ZLIB.DEF instead. */ /* For complete Windows compatibility, use WINAPI, not __stdcall. */ # define ZEXPORT WINAPI # ifdef WIN32 # define ZEXPORTVA WINAPIV # else # define ZEXPORTVA FAR CDECL # endif # endif #endif #if defined (__BEOS__) # ifdef ZLIB_DLL # ifdef ZLIB_INTERNAL # define ZEXPORT __declspec(dllexport) # define ZEXPORTVA __declspec(dllexport) # else # define ZEXPORT __declspec(dllimport) # define ZEXPORTVA __declspec(dllimport) # endif # endif #endif #ifndef ZEXTERN # define ZEXTERN extern #endif #ifndef ZEXPORT # define ZEXPORT #endif #ifndef ZEXPORTVA # define ZEXPORTVA #endif #ifndef FAR # define FAR #endif #if !defined(__MACTYPES__) typedef unsigned char Byte; /* 8 bits */ #endif typedef unsigned int uInt; /* 16 bits or more */ typedef unsigned long uLong; /* 32 bits or more */ #ifdef SMALL_MEDIUM /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */ # define Bytef Byte FAR #else typedef Byte FAR Bytef; #endif typedef char FAR charf; typedef int FAR intf; typedef uInt FAR uIntf; typedef uLong FAR uLongf; #ifdef STDC typedef void const *voidpc; typedef void FAR *voidpf; typedef void *voidp; #else typedef Byte const *voidpc; typedef Byte FAR *voidpf; typedef Byte *voidp; #endif #ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */ # define Z_HAVE_UNISTD_H #endif #ifdef STDC # include /* for off_t */ #endif /* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even * though the former does not conform to the LFS document), but considering * both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as * equivalently requesting no 64-bit operations */ #if -_LARGEFILE64_SOURCE - -1 == 1 # undef _LARGEFILE64_SOURCE #endif #if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE) # include /* for SEEK_* and off_t */ # ifdef VMS # include /* for off_t */ # endif # ifndef z_off_t # define z_off_t off_t # endif #endif #ifndef SEEK_SET # define SEEK_SET 0 /* Seek from beginning of file. */ # define SEEK_CUR 1 /* Seek from current position. */ # define SEEK_END 2 /* Set file pointer to EOF plus "offset" */ #endif #ifndef z_off_t # define z_off_t long #endif #if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 # define z_off64_t off64_t #else # define z_off64_t z_off_t #endif #if defined(__OS400__) # define NO_vsnprintf #endif #if defined(__MVS__) # define NO_vsnprintf #endif /* MVS linker does not support external names larger than 8 bytes */ #if defined(__MVS__) #pragma map(deflateInit_,"DEIN") #pragma map(deflateInit2_,"DEIN2") #pragma map(deflateEnd,"DEEND") #pragma map(deflateBound,"DEBND") #pragma map(inflateInit_,"ININ") #pragma map(inflateInit2_,"ININ2") #pragma map(inflateEnd,"INEND") #pragma map(inflateSync,"INSY") #pragma map(inflateSetDictionary,"INSEDI") #pragma map(compressBound,"CMBND") #pragma map(inflate_table,"INTABL") #pragma map(inflate_fast,"INFA") #pragma map(inflate_copyright,"INCOPY") #endif #endif /* ZCONF_H */ libtelnet-0.23/msvc2008/zlib.h000066400000000000000000002333141336202271100160160ustar00rootroot00000000000000/* zlib.h -- interface of the 'zlib' general purpose compression library version 1.2.5, April 19th, 2010 Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Jean-loup Gailly Mark Adler jloup@gzip.org madler@alumni.caltech.edu The data format used by the zlib library is described by RFCs (Request for Comments) 1950 to 1952 in the files http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). */ #ifndef ZLIB_H #define ZLIB_H #include "zconf.h" #ifdef __cplusplus extern "C" { #endif #define ZLIB_VERSION "1.2.5" #define ZLIB_VERNUM 0x1250 #define ZLIB_VER_MAJOR 1 #define ZLIB_VER_MINOR 2 #define ZLIB_VER_REVISION 5 #define ZLIB_VER_SUBREVISION 0 /* The 'zlib' compression library provides in-memory compression and decompression functions, including integrity checks of the uncompressed data. This version of the library supports only one compression method (deflation) but other algorithms will be added later and will have the same stream interface. Compression can be done in a single step if the buffers are large enough, or can be done by repeated calls of the compression function. In the latter case, the application must provide more input and/or consume the output (providing more output space) before each call. The compressed data format used by default by the in-memory functions is the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped around a deflate stream, which is itself documented in RFC 1951. The library also supports reading and writing files in gzip (.gz) format with an interface similar to that of stdio using the functions that start with "gz". The gzip format is different from the zlib format. gzip is a gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. This library can optionally read and write gzip streams in memory as well. The zlib format was designed to be compact and fast for use in memory and on communications channels. The gzip format was designed for single- file compression on file systems, has a larger header than zlib to maintain directory information, and uses a different, slower check method than zlib. The library does not install any signal handler. The decoder checks the consistency of the compressed data, so the library should never crash even in case of corrupted input. */ typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); typedef void (*free_func) OF((voidpf opaque, voidpf address)); struct internal_state; typedef struct z_stream_s { Bytef *next_in; /* next input byte */ uInt avail_in; /* number of bytes available at next_in */ uLong total_in; /* total nb of input bytes read so far */ Bytef *next_out; /* next output byte should be put there */ uInt avail_out; /* remaining free space at next_out */ uLong total_out; /* total nb of bytes output so far */ char *msg; /* last error message, NULL if no error */ struct internal_state FAR *state; /* not visible by applications */ alloc_func zalloc; /* used to allocate the internal state */ free_func zfree; /* used to free the internal state */ voidpf opaque; /* private data object passed to zalloc and zfree */ int data_type; /* best guess about the data type: binary or text */ uLong adler; /* adler32 value of the uncompressed data */ uLong reserved; /* reserved for future use */ } z_stream; typedef z_stream FAR *z_streamp; /* gzip header information passed to and from zlib routines. See RFC 1952 for more details on the meanings of these fields. */ typedef struct gz_header_s { int text; /* true if compressed data believed to be text */ uLong time; /* modification time */ int xflags; /* extra flags (not used when writing a gzip file) */ int os; /* operating system */ Bytef *extra; /* pointer to extra field or Z_NULL if none */ uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ uInt extra_max; /* space at extra (only when reading header) */ Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ uInt name_max; /* space at name (only when reading header) */ Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ uInt comm_max; /* space at comment (only when reading header) */ int hcrc; /* true if there was or will be a header crc */ int done; /* true when done reading gzip header (not used when writing a gzip file) */ } gz_header; typedef gz_header FAR *gz_headerp; /* The application must update next_in and avail_in when avail_in has dropped to zero. It must update next_out and avail_out when avail_out has dropped to zero. The application must initialize zalloc, zfree and opaque before calling the init function. All other fields are set by the compression library and must not be updated by the application. The opaque value provided by the application will be passed as the first parameter for calls of zalloc and zfree. This can be useful for custom memory management. The compression library attaches no meaning to the opaque value. zalloc must return Z_NULL if there is not enough memory for the object. If zlib is used in a multi-threaded application, zalloc and zfree must be thread safe. On 16-bit systems, the functions zalloc and zfree must be able to allocate exactly 65536 bytes, but will not be required to allocate more than this if the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS, pointers returned by zalloc for objects of exactly 65536 bytes *must* have their offset normalized to zero. The default allocation function provided by this library ensures this (see zutil.c). To reduce memory requirements and avoid any allocation of 64K objects, at the expense of compression ratio, compile the library with -DMAX_WBITS=14 (see zconf.h). The fields total_in and total_out can be used for statistics or progress reports. After compression, total_in holds the total size of the uncompressed data and may be saved for use in the decompressor (particularly if the decompressor wants to decompress everything in a single step). */ /* constants */ #define Z_NO_FLUSH 0 #define Z_PARTIAL_FLUSH 1 #define Z_SYNC_FLUSH 2 #define Z_FULL_FLUSH 3 #define Z_FINISH 4 #define Z_BLOCK 5 #define Z_TREES 6 /* Allowed flush values; see deflate() and inflate() below for details */ #define Z_OK 0 #define Z_STREAM_END 1 #define Z_NEED_DICT 2 #define Z_ERRNO (-1) #define Z_STREAM_ERROR (-2) #define Z_DATA_ERROR (-3) #define Z_MEM_ERROR (-4) #define Z_BUF_ERROR (-5) #define Z_VERSION_ERROR (-6) /* Return codes for the compression/decompression functions. Negative values * are errors, positive values are used for special but normal events. */ #define Z_NO_COMPRESSION 0 #define Z_BEST_SPEED 1 #define Z_BEST_COMPRESSION 9 #define Z_DEFAULT_COMPRESSION (-1) /* compression levels */ #define Z_FILTERED 1 #define Z_HUFFMAN_ONLY 2 #define Z_RLE 3 #define Z_FIXED 4 #define Z_DEFAULT_STRATEGY 0 /* compression strategy; see deflateInit2() below for details */ #define Z_BINARY 0 #define Z_TEXT 1 #define Z_ASCII Z_TEXT /* for compatibility with 1.2.2 and earlier */ #define Z_UNKNOWN 2 /* Possible values of the data_type field (though see inflate()) */ #define Z_DEFLATED 8 /* The deflate compression method (the only one supported in this version) */ #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ #define zlib_version zlibVersion() /* for compatibility with versions < 1.0.2 */ /* basic functions */ ZEXTERN const char * ZEXPORT zlibVersion OF((void)); /* The application can compare zlibVersion and ZLIB_VERSION for consistency. If the first character differs, the library code actually used is not compatible with the zlib.h header file used by the application. This check is automatically made by deflateInit and inflateInit. */ /* ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); Initializes the internal stream state for compression. The fields zalloc, zfree and opaque must be initialized before by the caller. If zalloc and zfree are set to Z_NULL, deflateInit updates them to use default allocation functions. The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9: 1 gives best speed, 9 gives best compression, 0 gives no compression at all (the input data is simply copied a block at a time). Z_DEFAULT_COMPRESSION requests a default compromise between speed and compression (currently equivalent to level 6). deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_STREAM_ERROR if level is not a valid compression level, or Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible with the version assumed by the caller (ZLIB_VERSION). msg is set to null if there is no error message. deflateInit does not perform any compression: this will be done by deflate(). */ ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); /* deflate compresses as much data as possible, and stops when the input buffer becomes empty or the output buffer becomes full. It may introduce some output latency (reading input without producing any output) except when forced to flush. The detailed semantics are as follows. deflate performs one or both of the following actions: - Compress more input starting at next_in and update next_in and avail_in accordingly. If not all input can be processed (because there is not enough room in the output buffer), next_in and avail_in are updated and processing will resume at this point for the next call of deflate(). - Provide more output starting at next_out and update next_out and avail_out accordingly. This action is forced if the parameter flush is non zero. Forcing flush frequently degrades the compression ratio, so this parameter should be set only when necessary (in interactive applications). Some output may be provided even if flush is not set. Before the call of deflate(), the application should ensure that at least one of the actions is possible, by providing more input and/or consuming more output, and updating avail_in or avail_out accordingly; avail_out should never be zero before the call. The application can consume the compressed output when it wants, for example when the output buffer is full (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK and with zero avail_out, it must be called again after making room in the output buffer because there might be more output pending. Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to decide how much data to accumulate before producing output, in order to maximize compression. If the parameter flush is set to Z_SYNC_FLUSH, all pending output is flushed to the output buffer and the output is aligned on a byte boundary, so that the decompressor can get all input data available so far. (In particular avail_in is zero after the call if enough output space has been provided before the call.) Flushing may degrade compression for some compression algorithms and so it should be used only when necessary. This completes the current deflate block and follows it with an empty stored block that is three bits plus filler bits to the next byte, followed by four bytes (00 00 ff ff). If flush is set to Z_PARTIAL_FLUSH, all pending output is flushed to the output buffer, but the output is not aligned to a byte boundary. All of the input data so far will be available to the decompressor, as for Z_SYNC_FLUSH. This completes the current deflate block and follows it with an empty fixed codes block that is 10 bits long. This assures that enough bytes are output in order for the decompressor to finish the block before the empty fixed code block. If flush is set to Z_BLOCK, a deflate block is completed and emitted, as for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to seven bits of the current block are held to be written as the next byte after the next deflate block is completed. In this case, the decompressor may not be provided enough bits at this point in order to complete decompression of the data provided so far to the compressor. It may need to wait for the next block to be emitted. This is for advanced applications that need to control the emission of deflate blocks. If flush is set to Z_FULL_FLUSH, all output is flushed as with Z_SYNC_FLUSH, and the compression state is reset so that decompression can restart from this point if previous compressed data has been damaged or if random access is desired. Using Z_FULL_FLUSH too often can seriously degrade compression. If deflate returns with avail_out == 0, this function must be called again with the same value of the flush parameter and more output space (updated avail_out), until the flush is complete (deflate returns with non-zero avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that avail_out is greater than six to avoid repeated flush markers due to avail_out == 0 on return. If the parameter flush is set to Z_FINISH, pending input is processed, pending output is flushed and deflate returns with Z_STREAM_END if there was enough output space; if deflate returns with Z_OK, this function must be called again with Z_FINISH and more output space (updated avail_out) but no more input data, until it returns with Z_STREAM_END or an error. After deflate has returned Z_STREAM_END, the only possible operations on the stream are deflateReset or deflateEnd. Z_FINISH can be used immediately after deflateInit if all the compression is to be done in a single step. In this case, avail_out must be at least the value returned by deflateBound (see below). If deflate does not return Z_STREAM_END, then it must be called again as described above. deflate() sets strm->adler to the adler32 checksum of all input read so far (that is, total_in bytes). deflate() may update strm->data_type if it can make a good guess about the input data type (Z_BINARY or Z_TEXT). In doubt, the data is considered binary. This field is only for information purposes and does not affect the compression algorithm in any manner. deflate() returns Z_OK if some progress has been made (more input processed or more output produced), Z_STREAM_END if all input has been consumed and all output has been produced (only when flush is set to Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not fatal, and deflate() can be called again with more input and more output space to continue compressing. */ ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm)); /* All dynamically allocated data structures for this stream are freed. This function discards any unprocessed input and does not flush any pending output. deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state was inconsistent, Z_DATA_ERROR if the stream was freed prematurely (some input or output was discarded). In the error case, msg may be set but then points to a static string (which must not be deallocated). */ /* ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm)); Initializes the internal stream state for decompression. The fields next_in, avail_in, zalloc, zfree and opaque must be initialized before by the caller. If next_in is not Z_NULL and avail_in is large enough (the exact value depends on the compression method), inflateInit determines the compression method from the zlib header and allocates all data structures accordingly; otherwise the allocation will be deferred to the first call of inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to use default allocation functions. inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_VERSION_ERROR if the zlib library version is incompatible with the version assumed by the caller, or Z_STREAM_ERROR if the parameters are invalid, such as a null pointer to the structure. msg is set to null if there is no error message. inflateInit does not perform any decompression apart from possibly reading the zlib header if present: actual decompression will be done by inflate(). (So next_in and avail_in may be modified, but next_out and avail_out are unused and unchanged.) The current implementation of inflateInit() does not process any header information -- that is deferred until inflate() is called. */ ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush)); /* inflate decompresses as much data as possible, and stops when the input buffer becomes empty or the output buffer becomes full. It may introduce some output latency (reading input without producing any output) except when forced to flush. The detailed semantics are as follows. inflate performs one or both of the following actions: - Decompress more input starting at next_in and update next_in and avail_in accordingly. If not all input can be processed (because there is not enough room in the output buffer), next_in is updated and processing will resume at this point for the next call of inflate(). - Provide more output starting at next_out and update next_out and avail_out accordingly. inflate() provides as much output as possible, until there is no more input data or no more space in the output buffer (see below about the flush parameter). Before the call of inflate(), the application should ensure that at least one of the actions is possible, by providing more input and/or consuming more output, and updating the next_* and avail_* values accordingly. The application can consume the uncompressed output when it wants, for example when the output buffer is full (avail_out == 0), or after each call of inflate(). If inflate returns Z_OK and with zero avail_out, it must be called again after making room in the output buffer because there might be more output pending. The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH, Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much output as possible to the output buffer. Z_BLOCK requests that inflate() stop if and when it gets to the next deflate block boundary. When decoding the zlib or gzip format, this will cause inflate() to return immediately after the header and before the first block. When doing a raw inflate, inflate() will go ahead and process the first block, and will return when it gets to the end of that block, or when it runs out of data. The Z_BLOCK option assists in appending to or combining deflate streams. Also to assist in this, on return inflate() will set strm->data_type to the number of unused bits in the last byte taken from strm->next_in, plus 64 if inflate() is currently decoding the last block in the deflate stream, plus 128 if inflate() returned immediately after decoding an end-of-block code or decoding the complete header up to just before the first byte of the deflate stream. The end-of-block will not be indicated until all of the uncompressed data from that block has been written to strm->next_out. The number of unused bits may in general be greater than seven, except when bit 7 of data_type is set, in which case the number of unused bits will be less than eight. data_type is set as noted here every time inflate() returns for all flush options, and so can be used to determine the amount of currently consumed input in bits. The Z_TREES option behaves as Z_BLOCK does, but it also returns when the end of each deflate block header is reached, before any actual data in that block is decoded. This allows the caller to determine the length of the deflate block header for later use in random access within a deflate block. 256 is added to the value of strm->data_type when inflate() returns immediately after reaching the end of the deflate block header. inflate() should normally be called until it returns Z_STREAM_END or an error. However if all decompression is to be performed in a single step (a single call of inflate), the parameter flush should be set to Z_FINISH. In this case all pending input is processed and all pending output is flushed; avail_out must be large enough to hold all the uncompressed data. (The size of the uncompressed data may have been saved by the compressor for this purpose.) The next operation on this stream must be inflateEnd to deallocate the decompression state. The use of Z_FINISH is never required, but can be used to inform inflate that a faster approach may be used for the single inflate() call. In this implementation, inflate() always flushes as much output as possible to the output buffer, and always uses the faster approach on the first call. So the only effect of the flush parameter in this implementation is on the return value of inflate(), as noted below, or when it returns early because Z_BLOCK or Z_TREES is used. If a preset dictionary is needed after this call (see inflateSetDictionary below), inflate sets strm->adler to the adler32 checksum of the dictionary chosen by the compressor and returns Z_NEED_DICT; otherwise it sets strm->adler to the adler32 checksum of all output produced so far (that is, total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described below. At the end of the stream, inflate() checks that its computed adler32 checksum is equal to that saved by the compressor and returns Z_STREAM_END only if the checksum is correct. inflate() can decompress and check either zlib-wrapped or gzip-wrapped deflate data. The header type is detected automatically, if requested when initializing with inflateInit2(). Any information contained in the gzip header is not retained, so applications that need that information should instead use raw inflate, see inflateInit2() below, or inflateBack() and perform their own processing of the gzip header and trailer. inflate() returns Z_OK if some progress has been made (more input processed or more output produced), Z_STREAM_END if the end of the compressed data has been reached and all uncompressed output has been produced, Z_NEED_DICT if a preset dictionary is needed at this point, Z_DATA_ERROR if the input data was corrupted (input stream not conforming to the zlib format or incorrect check value), Z_STREAM_ERROR if the stream structure was inconsistent (for example next_in or next_out was Z_NULL), Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if no progress is possible or if there was not enough room in the output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and inflate() can be called again with more input and more output space to continue decompressing. If Z_DATA_ERROR is returned, the application may then call inflateSync() to look for a good compression block if a partial recovery of the data is desired. */ ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm)); /* All dynamically allocated data structures for this stream are freed. This function discards any unprocessed input and does not flush any pending output. inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state was inconsistent. In the error case, msg may be set but then points to a static string (which must not be deallocated). */ /* Advanced functions */ /* The following functions are needed only in some special applications. */ /* ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy)); This is another version of deflateInit with more compression options. The fields next_in, zalloc, zfree and opaque must be initialized before by the caller. The method parameter is the compression method. It must be Z_DEFLATED in this version of the library. The windowBits parameter is the base two logarithm of the window size (the size of the history buffer). It should be in the range 8..15 for this version of the library. Larger values of this parameter result in better compression at the expense of memory usage. The default value is 15 if deflateInit is used instead. windowBits can also be -8..-15 for raw deflate. In this case, -windowBits determines the window size. deflate() will then generate raw deflate data with no zlib header or trailer, and will not compute an adler32 check value. windowBits can also be greater than 15 for optional gzip encoding. Add 16 to windowBits to write a simple gzip header and trailer around the compressed data instead of a zlib wrapper. The gzip header will have no file name, no extra data, no comment, no modification time (set to zero), no header crc, and the operating system will be set to 255 (unknown). If a gzip stream is being written, strm->adler is a crc32 instead of an adler32. The memLevel parameter specifies how much memory should be allocated for the internal compression state. memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory for optimal speed. The default value is 8. See zconf.h for total memory usage as a function of windowBits and memLevel. The strategy parameter is used to tune the compression algorithm. Use the value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a filter (or predictor), Z_HUFFMAN_ONLY to force Huffman encoding only (no string match), or Z_RLE to limit match distances to one (run-length encoding). Filtered data consists mostly of small values with a somewhat random distribution. In this case, the compression algorithm is tuned to compress them better. The effect of Z_FILTERED is to force more Huffman coding and less string matching; it is somewhat intermediate between Z_DEFAULT_STRATEGY and Z_HUFFMAN_ONLY. Z_RLE is designed to be almost as fast as Z_HUFFMAN_ONLY, but give better compression for PNG image data. The strategy parameter only affects the compression ratio but not the correctness of the compressed output even if it is not set appropriately. Z_FIXED prevents the use of dynamic Huffman codes, allowing for a simpler decoder for special applications. deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_STREAM_ERROR if any parameter is invalid (such as an invalid method), or Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible with the version assumed by the caller (ZLIB_VERSION). msg is set to null if there is no error message. deflateInit2 does not perform any compression: this will be done by deflate(). */ ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm, const Bytef *dictionary, uInt dictLength)); /* Initializes the compression dictionary from the given byte sequence without producing any compressed output. This function must be called immediately after deflateInit, deflateInit2 or deflateReset, before any call of deflate. The compressor and decompressor must use exactly the same dictionary (see inflateSetDictionary). The dictionary should consist of strings (byte sequences) that are likely to be encountered later in the data to be compressed, with the most commonly used strings preferably put towards the end of the dictionary. Using a dictionary is most useful when the data to be compressed is short and can be predicted with good accuracy; the data can then be compressed better than with the default empty dictionary. Depending on the size of the compression data structures selected by deflateInit or deflateInit2, a part of the dictionary may in effect be discarded, for example if the dictionary is larger than the window size provided in deflateInit or deflateInit2. Thus the strings most likely to be useful should be put at the end of the dictionary, not at the front. In addition, the current implementation of deflate will use at most the window size minus 262 bytes of the provided dictionary. Upon return of this function, strm->adler is set to the adler32 value of the dictionary; the decompressor may later use this value to determine which dictionary has been used by the compressor. (The adler32 value applies to the whole dictionary even if only a subset of the dictionary is actually used by the compressor.) If a raw deflate was requested, then the adler32 value is not computed and strm->adler is not set. deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is inconsistent (for example if deflate has already been called for this stream or if the compression method is bsort). deflateSetDictionary does not perform any compression: this will be done by deflate(). */ ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest, z_streamp source)); /* Sets the destination stream as a complete copy of the source stream. This function can be useful when several compression strategies will be tried, for example when there are several ways of pre-processing the input data with a filter. The streams that will be discarded should then be freed by calling deflateEnd. Note that deflateCopy duplicates the internal compression state which can be quite large, so this strategy is slow and can consume lots of memory. deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc being Z_NULL). msg is left unchanged in both source and destination. */ ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm)); /* This function is equivalent to deflateEnd followed by deflateInit, but does not free and reallocate all the internal compression state. The stream will keep the same compression level and any other attributes that may have been set by deflateInit2. deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc or state being Z_NULL). */ ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm, int level, int strategy)); /* Dynamically update the compression level and compression strategy. The interpretation of level and strategy is as in deflateInit2. This can be used to switch between compression and straight copy of the input data, or to switch to a different kind of input data requiring a different strategy. If the compression level is changed, the input available so far is compressed with the old level (and may be flushed); the new level will take effect only at the next call of deflate(). Before the call of deflateParams, the stream state must be set as for a call of deflate(), since the currently available input may have to be compressed and flushed. In particular, strm->avail_out must be non-zero. deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR if strm->avail_out was zero. */ ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm, int good_length, int max_lazy, int nice_length, int max_chain)); /* Fine tune deflate's internal compression parameters. This should only be used by someone who understands the algorithm used by zlib's deflate for searching for the best matching string, and even then only by the most fanatic optimizer trying to squeeze out the last compressed bit for their specific input data. Read the deflate.c source code for the meaning of the max_lazy, good_length, nice_length, and max_chain parameters. deflateTune() can be called after deflateInit() or deflateInit2(), and returns Z_OK on success, or Z_STREAM_ERROR for an invalid deflate stream. */ ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm, uLong sourceLen)); /* deflateBound() returns an upper bound on the compressed size after deflation of sourceLen bytes. It must be called after deflateInit() or deflateInit2(), and after deflateSetHeader(), if used. This would be used to allocate an output buffer for deflation in a single pass, and so would be called before deflate(). */ ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm, int bits, int value)); /* deflatePrime() inserts bits in the deflate output stream. The intent is that this function is used to start off the deflate output with the bits leftover from a previous deflate stream when appending to it. As such, this function can only be used for raw deflate, and must be used before the first deflate() call after a deflateInit2() or deflateReset(). bits must be less than or equal to 16, and that many of the least significant bits of value will be inserted in the output. deflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent. */ ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm, gz_headerp head)); /* deflateSetHeader() provides gzip header information for when a gzip stream is requested by deflateInit2(). deflateSetHeader() may be called after deflateInit2() or deflateReset() and before the first call of deflate(). The text, time, os, extra field, name, and comment information in the provided gz_header structure are written to the gzip header (xflag is ignored -- the extra flags are set according to the compression level). The caller must assure that, if not Z_NULL, name and comment are terminated with a zero byte, and that if extra is not Z_NULL, that extra_len bytes are available there. If hcrc is true, a gzip header crc is included. Note that the current versions of the command-line version of gzip (up through version 1.3.x) do not support header crc's, and will report that it is a "multi-part gzip file" and give up. If deflateSetHeader is not used, the default gzip header has text false, the time set to zero, and os set to 255, with no extra, name, or comment fields. The gzip header is returned to the default state by deflateReset(). deflateSetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent. */ /* ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm, int windowBits)); This is another version of inflateInit with an extra parameter. The fields next_in, avail_in, zalloc, zfree and opaque must be initialized before by the caller. The windowBits parameter is the base two logarithm of the maximum window size (the size of the history buffer). It should be in the range 8..15 for this version of the library. The default value is 15 if inflateInit is used instead. windowBits must be greater than or equal to the windowBits value provided to deflateInit2() while compressing, or it must be equal to 15 if deflateInit2() was not used. If a compressed stream with a larger window size is given as input, inflate() will return with the error code Z_DATA_ERROR instead of trying to allocate a larger window. windowBits can also be zero to request that inflate use the window size in the zlib header of the compressed stream. windowBits can also be -8..-15 for raw inflate. In this case, -windowBits determines the window size. inflate() will then process raw deflate data, not looking for a zlib or gzip header, not generating a check value, and not looking for any check values for comparison at the end of the stream. This is for use with other formats that use the deflate compressed data format such as zip. Those formats provide their own check values. If a custom format is developed using the raw deflate format for compressed data, it is recommended that a check value such as an adler32 or a crc32 be applied to the uncompressed data as is done in the zlib, gzip, and zip formats. For most applications, the zlib format should be used as is. Note that comments above on the use in deflateInit2() applies to the magnitude of windowBits. windowBits can also be greater than 15 for optional gzip decoding. Add 32 to windowBits to enable zlib and gzip decoding with automatic header detection, or add 16 to decode only the gzip format (the zlib format will return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a crc32 instead of an adler32. inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_VERSION_ERROR if the zlib library version is incompatible with the version assumed by the caller, or Z_STREAM_ERROR if the parameters are invalid, such as a null pointer to the structure. msg is set to null if there is no error message. inflateInit2 does not perform any decompression apart from possibly reading the zlib header if present: actual decompression will be done by inflate(). (So next_in and avail_in may be modified, but next_out and avail_out are unused and unchanged.) The current implementation of inflateInit2() does not process any header information -- that is deferred until inflate() is called. */ ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm, const Bytef *dictionary, uInt dictLength)); /* Initializes the decompression dictionary from the given uncompressed byte sequence. This function must be called immediately after a call of inflate, if that call returned Z_NEED_DICT. The dictionary chosen by the compressor can be determined from the adler32 value returned by that call of inflate. The compressor and decompressor must use exactly the same dictionary (see deflateSetDictionary). For raw inflate, this function can be called immediately after inflateInit2() or inflateReset() and before any call of inflate() to set the dictionary. The application must insure that the dictionary that was used for compression is provided. inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the expected one (incorrect adler32 value). inflateSetDictionary does not perform any decompression: this will be done by subsequent calls of inflate(). */ ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); /* Skips invalid compressed data until a full flush point (see above the description of deflate with Z_FULL_FLUSH) can be found, or until all available input is skipped. No output is provided. inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point has been found, or Z_STREAM_ERROR if the stream structure was inconsistent. In the success case, the application may save the current current value of total_in which indicates where valid compressed data was found. In the error case, the application may repeatedly call inflateSync, providing more input each time, until success or end of the input data. */ ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest, z_streamp source)); /* Sets the destination stream as a complete copy of the source stream. This function can be useful when randomly accessing a large stream. The first pass through the stream can periodically record the inflate state, allowing restarting inflate at those points when randomly accessing the stream. inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc being Z_NULL). msg is left unchanged in both source and destination. */ ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm)); /* This function is equivalent to inflateEnd followed by inflateInit, but does not free and reallocate all the internal decompression state. The stream will keep attributes that may have been set by inflateInit2. inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc or state being Z_NULL). */ ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm, int windowBits)); /* This function is the same as inflateReset, but it also permits changing the wrap and window size requests. The windowBits parameter is interpreted the same as it is for inflateInit2. inflateReset2 returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc or state being Z_NULL), or if the windowBits parameter is invalid. */ ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm, int bits, int value)); /* This function inserts bits in the inflate input stream. The intent is that this function is used to start inflating at a bit position in the middle of a byte. The provided bits will be used before any bytes are used from next_in. This function should only be used with raw inflate, and should be used before the first inflate() call after inflateInit2() or inflateReset(). bits must be less than or equal to 16, and that many of the least significant bits of value will be inserted in the input. If bits is negative, then the input stream bit buffer is emptied. Then inflatePrime() can be called again to put bits in the buffer. This is used to clear out bits leftover after feeding inflate a block description prior to feeding inflate codes. inflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent. */ ZEXTERN long ZEXPORT inflateMark OF((z_streamp strm)); /* This function returns two values, one in the lower 16 bits of the return value, and the other in the remaining upper bits, obtained by shifting the return value down 16 bits. If the upper value is -1 and the lower value is zero, then inflate() is currently decoding information outside of a block. If the upper value is -1 and the lower value is non-zero, then inflate is in the middle of a stored block, with the lower value equaling the number of bytes from the input remaining to copy. If the upper value is not -1, then it is the number of bits back from the current bit position in the input of the code (literal or length/distance pair) currently being processed. In that case the lower value is the number of bytes already emitted for that code. A code is being processed if inflate is waiting for more input to complete decoding of the code, or if it has completed decoding but is waiting for more output space to write the literal or match data. inflateMark() is used to mark locations in the input data for random access, which may be at bit positions, and to note those cases where the output of a code may span boundaries of random access blocks. The current location in the input stream can be determined from avail_in and data_type as noted in the description for the Z_BLOCK flush parameter for inflate. inflateMark returns the value noted above or -1 << 16 if the provided source stream state was inconsistent. */ ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm, gz_headerp head)); /* inflateGetHeader() requests that gzip header information be stored in the provided gz_header structure. inflateGetHeader() may be called after inflateInit2() or inflateReset(), and before the first call of inflate(). As inflate() processes the gzip stream, head->done is zero until the header is completed, at which time head->done is set to one. If a zlib stream is being decoded, then head->done is set to -1 to indicate that there will be no gzip header information forthcoming. Note that Z_BLOCK or Z_TREES can be used to force inflate() to return immediately after header processing is complete and before any actual data is decompressed. The text, time, xflags, and os fields are filled in with the gzip header contents. hcrc is set to true if there is a header CRC. (The header CRC was valid if done is set to one.) If extra is not Z_NULL, then extra_max contains the maximum number of bytes to write to extra. Once done is true, extra_len contains the actual extra field length, and extra contains the extra field, or that field truncated if extra_max is less than extra_len. If name is not Z_NULL, then up to name_max characters are written there, terminated with a zero unless the length is greater than name_max. If comment is not Z_NULL, then up to comm_max characters are written there, terminated with a zero unless the length is greater than comm_max. When any of extra, name, or comment are not Z_NULL and the respective field is not present in the header, then that field is set to Z_NULL to signal its absence. This allows the use of deflateSetHeader() with the returned structure to duplicate the header. However if those fields are set to allocated memory, then the application will need to save those pointers elsewhere so that they can be eventually freed. If inflateGetHeader is not used, then the header information is simply discarded. The header is always checked for validity, including the header CRC if present. inflateReset() will reset the process to discard the header information. The application would need to call inflateGetHeader() again to retrieve the header from the next gzip stream. inflateGetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent. */ /* ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits, unsigned char FAR *window)); Initialize the internal stream state for decompression using inflateBack() calls. The fields zalloc, zfree and opaque in strm must be initialized before the call. If zalloc and zfree are Z_NULL, then the default library- derived memory allocation routines are used. windowBits is the base two logarithm of the window size, in the range 8..15. window is a caller supplied buffer of that size. Except for special applications where it is assured that deflate was used with small window sizes, windowBits must be 15 and a 32K byte window must be supplied to be able to decompress general deflate streams. See inflateBack() for the usage of these routines. inflateBackInit will return Z_OK on success, Z_STREAM_ERROR if any of the paramaters are invalid, Z_MEM_ERROR if the internal state could not be allocated, or Z_VERSION_ERROR if the version of the library does not match the version of the header file. */ typedef unsigned (*in_func) OF((void FAR *, unsigned char FAR * FAR *)); typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned)); ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm, in_func in, void FAR *in_desc, out_func out, void FAR *out_desc)); /* inflateBack() does a raw inflate with a single call using a call-back interface for input and output. This is more efficient than inflate() for file i/o applications in that it avoids copying between the output and the sliding window by simply making the window itself the output buffer. This function trusts the application to not change the output buffer passed by the output function, at least until inflateBack() returns. inflateBackInit() must be called first to allocate the internal state and to initialize the state with the user-provided window buffer. inflateBack() may then be used multiple times to inflate a complete, raw deflate stream with each call. inflateBackEnd() is then called to free the allocated state. A raw deflate stream is one with no zlib or gzip header or trailer. This routine would normally be used in a utility that reads zip or gzip files and writes out uncompressed files. The utility would decode the header and process the trailer on its own, hence this routine expects only the raw deflate stream to decompress. This is different from the normal behavior of inflate(), which expects either a zlib or gzip header and trailer around the deflate stream. inflateBack() uses two subroutines supplied by the caller that are then called by inflateBack() for input and output. inflateBack() calls those routines until it reads a complete deflate stream and writes out all of the uncompressed data, or until it encounters an error. The function's parameters and return types are defined above in the in_func and out_func typedefs. inflateBack() will call in(in_desc, &buf) which should return the number of bytes of provided input, and a pointer to that input in buf. If there is no input available, in() must return zero--buf is ignored in that case--and inflateBack() will return a buffer error. inflateBack() will call out(out_desc, buf, len) to write the uncompressed data buf[0..len-1]. out() should return zero on success, or non-zero on failure. If out() returns non-zero, inflateBack() will return with an error. Neither in() nor out() are permitted to change the contents of the window provided to inflateBackInit(), which is also the buffer that out() uses to write from. The length written by out() will be at most the window size. Any non-zero amount of input may be provided by in(). For convenience, inflateBack() can be provided input on the first call by setting strm->next_in and strm->avail_in. If that input is exhausted, then in() will be called. Therefore strm->next_in must be initialized before calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called immediately for input. If strm->next_in is not Z_NULL, then strm->avail_in must also be initialized, and then if strm->avail_in is not zero, input will initially be taken from strm->next_in[0 .. strm->avail_in - 1]. The in_desc and out_desc parameters of inflateBack() is passed as the first parameter of in() and out() respectively when they are called. These descriptors can be optionally used to pass any information that the caller- supplied in() and out() functions need to do their job. On return, inflateBack() will set strm->next_in and strm->avail_in to pass back any unused input that was provided by the last in() call. The return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR if in() or out() returned an error, Z_DATA_ERROR if there was a format error in the deflate stream (in which case strm->msg is set to indicate the nature of the error), or Z_STREAM_ERROR if the stream was not properly initialized. In the case of Z_BUF_ERROR, an input or output error can be distinguished using strm->next_in which will be Z_NULL only if in() returned an error. If strm->next_in is not Z_NULL, then the Z_BUF_ERROR was due to out() returning non-zero. (in() will always be called before out(), so strm->next_in is assured to be defined if out() returns non-zero.) Note that inflateBack() cannot return Z_OK. */ ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm)); /* All memory allocated by inflateBackInit() is freed. inflateBackEnd() returns Z_OK on success, or Z_STREAM_ERROR if the stream state was inconsistent. */ ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void)); /* Return flags indicating compile-time options. Type sizes, two bits each, 00 = 16 bits, 01 = 32, 10 = 64, 11 = other: 1.0: size of uInt 3.2: size of uLong 5.4: size of voidpf (pointer) 7.6: size of z_off_t Compiler, assembler, and debug options: 8: DEBUG 9: ASMV or ASMINF -- use ASM code 10: ZLIB_WINAPI -- exported functions use the WINAPI calling convention 11: 0 (reserved) One-time table building (smaller code, but not thread-safe if true): 12: BUILDFIXED -- build static block decoding tables when needed 13: DYNAMIC_CRC_TABLE -- build CRC calculation tables when needed 14,15: 0 (reserved) Library content (indicates missing functionality): 16: NO_GZCOMPRESS -- gz* functions cannot compress (to avoid linking deflate code when not needed) 17: NO_GZIP -- deflate can't write gzip streams, and inflate can't detect and decode gzip streams (to avoid linking crc code) 18-19: 0 (reserved) Operation variations (changes in library functionality): 20: PKZIP_BUG_WORKAROUND -- slightly more permissive inflate 21: FASTEST -- deflate algorithm with only one, lowest compression level 22,23: 0 (reserved) The sprintf variant used by gzprintf (zero is best): 24: 0 = vs*, 1 = s* -- 1 means limited to 20 arguments after the format 25: 0 = *nprintf, 1 = *printf -- 1 means gzprintf() not secure! 26: 0 = returns value, 1 = void -- 1 means inferred string length returned Remainder: 27-31: 0 (reserved) */ /* utility functions */ /* The following utility functions are implemented on top of the basic stream-oriented functions. To simplify the interface, some default options are assumed (compression level and memory usage, standard memory allocation functions). The source code of these utility functions can be modified if you need special options. */ ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen)); /* Compresses the source buffer into the destination buffer. sourceLen is the byte length of the source buffer. Upon entry, destLen is the total size of the destination buffer, which must be at least the value returned by compressBound(sourceLen). Upon exit, destLen is the actual size of the compressed buffer. compress returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if there was not enough room in the output buffer. */ ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int level)); /* Compresses the source buffer into the destination buffer. The level parameter has the same meaning as in deflateInit. sourceLen is the byte length of the source buffer. Upon entry, destLen is the total size of the destination buffer, which must be at least the value returned by compressBound(sourceLen). Upon exit, destLen is the actual size of the compressed buffer. compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if there was not enough room in the output buffer, Z_STREAM_ERROR if the level parameter is invalid. */ ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); /* compressBound() returns an upper bound on the compressed size after compress() or compress2() on sourceLen bytes. It would be used before a compress() or compress2() call to allocate the destination buffer. */ ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen)); /* Decompresses the source buffer into the destination buffer. sourceLen is the byte length of the source buffer. Upon entry, destLen is the total size of the destination buffer, which must be large enough to hold the entire uncompressed data. (The size of the uncompressed data must have been saved previously by the compressor and transmitted to the decompressor by some mechanism outside the scope of this compression library.) Upon exit, destLen is the actual size of the uncompressed buffer. uncompress returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if there was not enough room in the output buffer, or Z_DATA_ERROR if the input data was corrupted or incomplete. */ /* gzip file access functions */ /* This library supports reading and writing files in gzip (.gz) format with an interface similar to that of stdio, using the functions that start with "gz". The gzip format is different from the zlib format. gzip is a gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. */ typedef voidp gzFile; /* opaque gzip file descriptor */ /* ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode)); Opens a gzip (.gz) file for reading or writing. The mode parameter is as in fopen ("rb" or "wb") but can also include a compression level ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for Huffman-only compression as in "wb1h", 'R' for run-length encoding as in "wb1R", or 'F' for fixed code compression as in "wb9F". (See the description of deflateInit2 for more information about the strategy parameter.) Also "a" can be used instead of "w" to request that the gzip stream that will be written be appended to the file. "+" will result in an error, since reading and writing to the same gzip file is not supported. gzopen can be used to read a file which is not in gzip format; in this case gzread will directly read from the file without decompression. gzopen returns NULL if the file could not be opened, if there was insufficient memory to allocate the gzFile state, or if an invalid mode was specified (an 'r', 'w', or 'a' was not provided, or '+' was provided). errno can be checked to determine if the reason gzopen failed was that the file could not be opened. */ ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode)); /* gzdopen associates a gzFile with the file descriptor fd. File descriptors are obtained from calls like open, dup, creat, pipe or fileno (if the file has been previously opened with fopen). The mode parameter is as in gzopen. The next call of gzclose on the returned gzFile will also close the file descriptor fd, just like fclose(fdopen(fd, mode)) closes the file descriptor fd. If you want to keep fd open, use fd = dup(fd_keep); gz = gzdopen(fd, mode);. The duplicated descriptor should be saved to avoid a leak, since gzdopen does not close fd if it fails. gzdopen returns NULL if there was insufficient memory to allocate the gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not provided, or '+' was provided), or if fd is -1. The file descriptor is not used until the next gz* read, write, seek, or close operation, so gzdopen will not detect if fd is invalid (unless fd is -1). */ ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size)); /* Set the internal buffer size used by this library's functions. The default buffer size is 8192 bytes. This function must be called after gzopen() or gzdopen(), and before any other calls that read or write the file. The buffer memory allocation is always deferred to the first read or write. Two buffers are allocated, either both of the specified size when writing, or one of the specified size and the other twice that size when reading. A larger buffer size of, for example, 64K or 128K bytes will noticeably increase the speed of decompression (reading). The new buffer size also affects the maximum length for gzprintf(). gzbuffer() returns 0 on success, or -1 on failure, such as being called too late. */ ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); /* Dynamically update the compression level or strategy. See the description of deflateInit2 for the meaning of these parameters. gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not opened for writing. */ ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); /* Reads the given number of uncompressed bytes from the compressed file. If the input file was not in gzip format, gzread copies the given number of bytes into the buffer. After reaching the end of a gzip stream in the input, gzread will continue to read, looking for another gzip stream, or failing that, reading the rest of the input file directly without decompression. The entire input file will be read if gzread is called until it returns less than the requested len. gzread returns the number of uncompressed bytes actually read, less than len for end of file, or -1 for error. */ ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); /* Writes the given number of uncompressed bytes into the compressed file. gzwrite returns the number of uncompressed bytes written or 0 in case of error. */ ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...)); /* Converts, formats, and writes the arguments to the compressed file under control of the format string, as in fprintf. gzprintf returns the number of uncompressed bytes actually written, or 0 in case of error. The number of uncompressed bytes written is limited to 8191, or one less than the buffer size given to gzbuffer(). The caller should assure that this limit is not exceeded. If it is exceeded, then gzprintf() will return an error (0) with nothing written. In this case, there may also be a buffer overflow with unpredictable consequences, which is possible only if zlib was compiled with the insecure functions sprintf() or vsprintf() because the secure snprintf() or vsnprintf() functions were not available. This can be determined using zlibCompileFlags(). */ ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s)); /* Writes the given null-terminated string to the compressed file, excluding the terminating null character. gzputs returns the number of characters written, or -1 in case of error. */ ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len)); /* Reads bytes from the compressed file until len-1 characters are read, or a newline character is read and transferred to buf, or an end-of-file condition is encountered. If any characters are read or if len == 1, the string is terminated with a null character. If no characters are read due to an end-of-file or len < 1, then the buffer is left untouched. gzgets returns buf which is a null-terminated string, or it returns NULL for end-of-file or in case of error. If there was an error, the contents at buf are indeterminate. */ ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); /* Writes c, converted to an unsigned char, into the compressed file. gzputc returns the value that was written, or -1 in case of error. */ ZEXTERN int ZEXPORT gzgetc OF((gzFile file)); /* Reads one byte from the compressed file. gzgetc returns this byte or -1 in case of end of file or error. */ ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file)); /* Push one character back onto the stream to be read as the first character on the next read. At least one character of push-back is allowed. gzungetc() returns the character pushed, or -1 on failure. gzungetc() will fail if c is -1, and may fail if a character has been pushed but not read yet. If gzungetc is used immediately after gzopen or gzdopen, at least the output buffer size of pushed characters is allowed. (See gzbuffer above.) The pushed character will be discarded if the stream is repositioned with gzseek() or gzrewind(). */ ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush)); /* Flushes all pending output into the compressed file. The parameter flush is as in the deflate() function. The return value is the zlib error number (see function gzerror below). gzflush is only permitted when writing. If the flush parameter is Z_FINISH, the remaining data is written and the gzip stream is completed in the output. If gzwrite() is called again, a new gzip stream will be started in the output. gzread() is able to read such concatented gzip streams. gzflush should be called only when strictly necessary because it will degrade compression if called too often. */ /* ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file, z_off_t offset, int whence)); Sets the starting position for the next gzread or gzwrite on the given compressed file. The offset represents a number of bytes in the uncompressed data stream. The whence parameter is defined as in lseek(2); the value SEEK_END is not supported. If the file is opened for reading, this function is emulated but can be extremely slow. If the file is opened for writing, only forward seeks are supported; gzseek then compresses a sequence of zeroes up to the new starting position. gzseek returns the resulting offset location as measured in bytes from the beginning of the uncompressed stream, or -1 in case of error, in particular if the file is opened for writing and the new starting position would be before the current position. */ ZEXTERN int ZEXPORT gzrewind OF((gzFile file)); /* Rewinds the given file. This function is supported only for reading. gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET) */ /* ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file)); Returns the starting position for the next gzread or gzwrite on the given compressed file. This position represents a number of bytes in the uncompressed data stream, and is zero when starting, even if appending or reading a gzip stream from the middle of a file using gzdopen(). gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR) */ /* ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file)); Returns the current offset in the file being read or written. This offset includes the count of bytes that precede the gzip stream, for example when appending or when using gzdopen() for reading. When reading, the offset does not include as yet unused buffered input. This information can be used for a progress indicator. On error, gzoffset() returns -1. */ ZEXTERN int ZEXPORT gzeof OF((gzFile file)); /* Returns true (1) if the end-of-file indicator has been set while reading, false (0) otherwise. Note that the end-of-file indicator is set only if the read tried to go past the end of the input, but came up short. Therefore, just like feof(), gzeof() may return false even if there is no more data to read, in the event that the last read request was for the exact number of bytes remaining in the input file. This will happen if the input file size is an exact multiple of the buffer size. If gzeof() returns true, then the read functions will return no more data, unless the end-of-file indicator is reset by gzclearerr() and the input file has grown since the previous end of file was detected. */ ZEXTERN int ZEXPORT gzdirect OF((gzFile file)); /* Returns true (1) if file is being copied directly while reading, or false (0) if file is a gzip stream being decompressed. This state can change from false to true while reading the input file if the end of a gzip stream is reached, but is followed by data that is not another gzip stream. If the input file is empty, gzdirect() will return true, since the input does not contain a gzip stream. If gzdirect() is used immediately after gzopen() or gzdopen() it will cause buffers to be allocated to allow reading the file to determine if it is a gzip file. Therefore if gzbuffer() is used, it should be called before gzdirect(). */ ZEXTERN int ZEXPORT gzclose OF((gzFile file)); /* Flushes all pending output if necessary, closes the compressed file and deallocates the (de)compression state. Note that once file is closed, you cannot call gzerror with file, since its structures have been deallocated. gzclose must not be called more than once on the same file, just as free must not be called more than once on the same allocation. gzclose will return Z_STREAM_ERROR if file is not valid, Z_ERRNO on a file operation error, or Z_OK on success. */ ZEXTERN int ZEXPORT gzclose_r OF((gzFile file)); ZEXTERN int ZEXPORT gzclose_w OF((gzFile file)); /* Same as gzclose(), but gzclose_r() is only for use when reading, and gzclose_w() is only for use when writing or appending. The advantage to using these instead of gzclose() is that they avoid linking in zlib compression or decompression code that is not used when only reading or only writing respectively. If gzclose() is used, then both compression and decompression code will be included the application when linking to a static zlib library. */ ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum)); /* Returns the error message for the last error which occurred on the given compressed file. errnum is set to zlib error number. If an error occurred in the file system and not in the compression library, errnum is set to Z_ERRNO and the application may consult errno to get the exact error code. The application must not modify the returned string. Future calls to this function may invalidate the previously returned string. If file is closed, then the string previously returned by gzerror will no longer be available. gzerror() should be used to distinguish errors from end-of-file for those functions above that do not distinguish those cases in their return values. */ ZEXTERN void ZEXPORT gzclearerr OF((gzFile file)); /* Clears the error and end-of-file flags for file. This is analogous to the clearerr() function in stdio. This is useful for continuing to read a gzip file that is being written concurrently. */ /* checksum functions */ /* These functions are not related to compression but are exported anyway because they might be useful in applications using the compression library. */ ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); /* Update a running Adler-32 checksum with the bytes buf[0..len-1] and return the updated checksum. If buf is Z_NULL, this function returns the required initial value for the checksum. An Adler-32 checksum is almost as reliable as a CRC32 but can be computed much faster. Usage example: uLong adler = adler32(0L, Z_NULL, 0); while (read_buffer(buffer, length) != EOF) { adler = adler32(adler, buffer, length); } if (adler != original_adler) error(); */ /* ZEXTERN uLong ZEXPORT adler32_combine OF((uLong adler1, uLong adler2, z_off_t len2)); Combine two Adler-32 checksums into one. For two sequences of bytes, seq1 and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for each, adler1 and adler2. adler32_combine() returns the Adler-32 checksum of seq1 and seq2 concatenated, requiring only adler1, adler2, and len2. */ ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); /* Update a running CRC-32 with the bytes buf[0..len-1] and return the updated CRC-32. If buf is Z_NULL, this function returns the required initial value for the for the crc. Pre- and post-conditioning (one's complement) is performed within this function so it shouldn't be done by the application. Usage example: uLong crc = crc32(0L, Z_NULL, 0); while (read_buffer(buffer, length) != EOF) { crc = crc32(crc, buffer, length); } if (crc != original_crc) error(); */ /* ZEXTERN uLong ZEXPORT crc32_combine OF((uLong crc1, uLong crc2, z_off_t len2)); Combine two CRC-32 check values into one. For two sequences of bytes, seq1 and seq2 with lengths len1 and len2, CRC-32 check values were calculated for each, crc1 and crc2. crc32_combine() returns the CRC-32 check value of seq1 and seq2 concatenated, requiring only crc1, crc2, and len2. */ /* various hacks, don't look :) */ /* deflateInit and inflateInit are macros to allow checking the zlib version * and the compiler's view of z_stream: */ ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level, const char *version, int stream_size)); ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm, const char *version, int stream_size)); ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size)); ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, const char *version, int stream_size)); ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, unsigned char FAR *window, const char *version, int stream_size)); #define deflateInit(strm, level) \ deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream)) #define inflateInit(strm) \ inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream)) #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ (strategy), ZLIB_VERSION, sizeof(z_stream)) #define inflateInit2(strm, windowBits) \ inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) #define inflateBackInit(strm, windowBits, window) \ inflateBackInit_((strm), (windowBits), (window), \ ZLIB_VERSION, sizeof(z_stream)) /* provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or * change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if * both are true, the application gets the *64 functions, and the regular * functions are changed to 64 bits) -- in case these are set on systems * without large file support, _LFS64_LARGEFILE must also be true */ #if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int)); ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile)); ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile)); ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t)); ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t)); #endif #if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS-0 == 64 && _LFS64_LARGEFILE-0 # define gzopen gzopen64 # define gzseek gzseek64 # define gztell gztell64 # define gzoffset gzoffset64 # define adler32_combine adler32_combine64 # define crc32_combine crc32_combine64 # ifdef _LARGEFILE64_SOURCE ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int)); ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile)); ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile)); ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); # endif #else ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *)); ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int)); ZEXTERN z_off_t ZEXPORT gztell OF((gzFile)); ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile)); ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t)); ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t)); #endif /* hack for buggy compilers */ #if !defined(ZUTIL_H) && !defined(NO_DUMMY_DECL) struct internal_state {int dummy;}; #endif /* undocumented functions */ ZEXTERN const char * ZEXPORT zError OF((int)); ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp)); ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int)); #ifdef __cplusplus } #endif #endif /* ZLIB_H */ libtelnet-0.23/msvc2008/zlibstat.lib000066400000000000000000006036201336202271100172320ustar00rootroot00000000000000! / 1315203158 0 5297 ` Ã+è+è+è+è+è+è+è+è+è+è+è+è+è+è+è+è>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>ÜšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXé6í í í í í í í 9Â9Â9Â9Â9Â9Â9Â9Â9ÂKKVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšV𬠬 ¬ ÙìÙìÙìÙìÙìÙìÙìÙìÙìÙìðfðfðfðfðfðfðfðfðfðfòòòòòòòòòòòòòòòòò2À5ä5ä5ä5ä5ä5ä5ä5ä5ä5ä5ä5ä5ä€X€X€X€X¶º¶º¶º¼>¼>¼>ÅÌùhùh??_C@_00CNPNBAHC@?$AA@??_C@_05DFCKICEH@1?42?45?$AA@??_C@_0BA@MOKMMFOD@need?5dictionary?$AA@??_C@_0BE@OGGJBMCE@insufficient?5memory?$AA@??_C@_0BF@CJFPCCEG@incompatible?5version?$AA@??_C@_0L@FNAOCBOG@stream?5end?$AA@??_C@_0L@HAHMBNLP@data?5error?$AA@??_C@_0L@KIJFAKBJ@file?5error?$AA@??_C@_0N@DFPGLBGC@buffer?5error?$AA@??_C@_0N@MKKNPMJD@stream?5error?$AA@_zError@4_z_errmsg_zcalloc_zcfree_zlibCompileFlags@0_zlibVersion@0??_C@_01JOAMLHOP@?9?$AA@_LoadCentralDirectoryRecord_Write_EndOfCentralDirectoryRecord_Write_GlobalComment_Write_LocalFileHeader_Write_Zip64EndOfCentralDirectoryLocator_Write_Zip64EndOfCentralDirectoryRecord_zipClose@8_zipCloseFileInZip@4_zipCloseFileInZipRaw64@16_zipCloseFileInZipRaw@12_zipOpen2@16_zipOpen2_64@16_zipOpen3@16_zipOpen64@8_zipOpen@8_zipOpenNewFileInZip2@44_zipOpenNewFileInZip2_64@48_zipOpenNewFileInZip3@64_zipOpenNewFileInZip3_64@68_zipOpenNewFileInZip4@72_zipOpenNewFileInZip4_64@76_zipOpenNewFileInZip64@44_zipOpenNewFileInZip@40_zipRemoveExtraInfoBlock@12_zipWriteInFileInZip@12_zip_copyright_unzClose@4_unzCloseCurrentFile@4_unzGetCurrentFileInfo64@32_unzGetCurrentFileInfo@32_unzGetCurrentFileZStreamPos64@4_unzGetFilePos64@8_unzGetFilePos@8_unzGetGlobalComment@12_unzGetGlobalInfo64@8_unzGetGlobalInfo@8_unzGetLocalExtrafield@12_unzGetOffset64@4_unzGetOffset@4_unzGoToFilePos64@8_unzGoToFilePos@8_unzGoToFirstFile@4_unzGoToNextFile@4_unzLocateFile@12_unzOpen2@8_unzOpen2_64@8_unzOpen64@4_unzOpen@4_unzOpenCurrentFile2@16_unzOpenCurrentFile3@20_unzOpenCurrentFile@4_unzOpenCurrentFilePassword@8_unzReadCurrentFile@12_unzSetOffset64@12_unzSetOffset@8_unzStringFileNameCompare@12_unz_copyright_unzeof@4_unztell64@4_unztell@4_uncompress@16__dist_code__length_code__tr_align__tr_flush_block__tr_init__tr_stored_block__tr_tally??_C@_02GMLFBBN@wb?$AA@??_C@_02JDPG@rb?$AA@??_C@_03HMFOOINA@r?$CLb?$AA@_call_zopen64_call_zseek64_call_ztell64_fill_fopen64_filefunc_fill_fopen_filefunc_fill_zlib_filefunc64_32_def_from_filefunc32_inflate_copyright_inflate_table??_C@_0BD@PJCBIDD@invalid?5block?5type?$AA@??_C@_0BE@EMOGCLGO@invalid?5window?5size?$AA@??_C@_0BE@GONKLEPM@header?5crc?5mismatch?$AA@??_C@_0BF@MEIGEHBE@incorrect?5data?5check?$AA@??_C@_0BG@GMDFCBGP@invalid?5distances?5set?$AA@??_C@_0BG@LBKINIKP@invalid?5distance?5code?$AA@??_C@_0BH@FGKKJGOC@incorrect?5length?5check?$AA@??_C@_0BH@LIBMMIGA@incorrect?5header?5check?$AA@??_C@_0BJ@BLBBCOMO@unknown?5header?5flags?5set?$AA@??_C@_0BJ@HDEPPGOH@invalid?5code?5lengths?5set?$AA@??_C@_0BK@BMMPFBBH@invalid?5bit?5length?5repeat?$AA@??_C@_0BL@IHKGDAEE@unknown?5compression?5method?$AA@??_C@_0BM@FFFLPBBC@invalid?5literal?1length?5code?$AA@??_C@_0BM@IIMGAINC@invalid?5literal?1lengths?5set?$AA@??_C@_0BN@LGAADGOK@invalid?5stored?5block?5lengths?$AA@??_C@_0BO@ECPMAOGG@invalid?5distance?5too?5far?5back?$AA@??_C@_0CE@GMIGFPBB@too?5many?5length?5or?5distance?5symb@??_C@_0CF@DGDMADCD@invalid?5code?5?9?9?5missing?5end?9of?9b@_inflate@8_inflateCopy@8_inflateEnd@4_inflateGetHeader@8_inflateInit2_@16_inflateInit_@12_inflateMark@4_inflatePrime@12_inflateReset2@8_inflateReset@4_inflateSetDictionary@12_inflateSync@4_inflateSyncPoint@4_inflateUndermine@8_inflateBack@20_inflateBackEnd@4_inflateBackInit_@20??_C@_0CF@MLPJFDMM@requested?5length?5does?5not?5fit?5in@??_C@_0CH@DEEGAHIB@internal?5error?3?5deflate?5stream?5c@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@_gzclose_w@4_gzflush@8_gzprintf_gzputc@8_gzputs@8_gzsetparams@12_gzwrite@12??_C@_0BG@HCKBMIHF@compressed?5data?5error?$AA@??_C@_0BH@CFIIDOJD@unexpected?5end?5of?5file?$AA@??_C@_0BP@IIKIGMCC@out?5of?5room?5to?5push?5characters?$AA@??_C@_0CH@CPOLIEKA@internal?5error?3?5inflate?5stream?5c@_gzclose_r@4_gzdirect@4_gzgetc@4_gzgets@12_gzread@12_gzungetc@8??_C@_02LMMGGCAJ@?3?5?$AA@??_C@_07EBNKNFJN@?$DMfd?3?$CFd?$DO?$AA@_gz_error_gzbuffer@8_gzclearerr@4_gzdopen@8_gzeof@4_gzerror@8_gzoffset64@4_gzoffset@4_gzopen64@8_gzopen@8_gzrewind@4_gzseek64@12_gzseek@12_gztell64@4_gztell@4_gzclose@4_deflate@8_deflateBound@8_deflateCopy@8_deflateEnd@4_deflateInit2_@32_deflateInit_@16_deflateParams@12_deflatePrime@12_deflateReset@4_deflateSetDictionary@12_deflateSetHeader@8_deflateTune@20_deflate_copyright_crc32@12_crc32_combine64@12_crc32_combine@12_get_crc_table@0_compress2@20_compress@16_compressBound@4_adler32@12_adler32_combine64@12_adler32_combine@12_inflate_fast_longest_match_match_init / 1315203158 0 4995 ` è+T8Ü>Xš6é íÂ9KšVê© ¬ìÙfðòÀ2ä5X€º¶>¼ÌÅhùà        ??_C@_00CNPNBAHC@?$AA@??_C@_01JOAMLHOP@?9?$AA@??_C@_02GMLFBBN@wb?$AA@??_C@_02JDPG@rb?$AA@??_C@_02LMMGGCAJ@?3?5?$AA@??_C@_03HMFOOINA@r?$CLb?$AA@??_C@_05DFCKICEH@1?42?45?$AA@??_C@_07EBNKNFJN@?$DMfd?3?$CFd?$DO?$AA@??_C@_0BA@MOKMMFOD@need?5dictionary?$AA@??_C@_0BD@PJCBIDD@invalid?5block?5type?$AA@??_C@_0BE@EMOGCLGO@invalid?5window?5size?$AA@??_C@_0BE@GONKLEPM@header?5crc?5mismatch?$AA@??_C@_0BE@OGGJBMCE@insufficient?5memory?$AA@??_C@_0BF@CJFPCCEG@incompatible?5version?$AA@??_C@_0BF@MEIGEHBE@incorrect?5data?5check?$AA@??_C@_0BG@GMDFCBGP@invalid?5distances?5set?$AA@??_C@_0BG@HCKBMIHF@compressed?5data?5error?$AA@??_C@_0BG@LBKINIKP@invalid?5distance?5code?$AA@??_C@_0BH@CFIIDOJD@unexpected?5end?5of?5file?$AA@??_C@_0BH@FGKKJGOC@incorrect?5length?5check?$AA@??_C@_0BH@LIBMMIGA@incorrect?5header?5check?$AA@??_C@_0BJ@BLBBCOMO@unknown?5header?5flags?5set?$AA@??_C@_0BJ@HDEPPGOH@invalid?5code?5lengths?5set?$AA@??_C@_0BK@BMMPFBBH@invalid?5bit?5length?5repeat?$AA@??_C@_0BL@IHKGDAEE@unknown?5compression?5method?$AA@??_C@_0BM@FFFLPBBC@invalid?5literal?1length?5code?$AA@??_C@_0BM@IIMGAINC@invalid?5literal?1lengths?5set?$AA@??_C@_0BN@LGAADGOK@invalid?5stored?5block?5lengths?$AA@??_C@_0BO@ECPMAOGG@invalid?5distance?5too?5far?5back?$AA@??_C@_0BP@IIKIGMCC@out?5of?5room?5to?5push?5characters?$AA@??_C@_0CE@GMIGFPBB@too?5many?5length?5or?5distance?5symb@??_C@_0CF@DGDMADCD@invalid?5code?5?9?9?5missing?5end?9of?9b@??_C@_0CF@MLPJFDMM@requested?5length?5does?5not?5fit?5in@??_C@_0CH@CPOLIEKA@internal?5error?3?5inflate?5stream?5c@??_C@_0CH@DEEGAHIB@internal?5error?3?5deflate?5stream?5c@??_C@_0L@FNAOCBOG@stream?5end?$AA@??_C@_0L@HAHMBNLP@data?5error?$AA@??_C@_0L@KIJFAKBJ@file?5error?$AA@??_C@_0N@DFPGLBGC@buffer?5error?$AA@??_C@_0N@MKKNPMJD@stream?5error?$AA@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@_LoadCentralDirectoryRecord_Write_EndOfCentralDirectoryRecord_Write_GlobalComment_Write_LocalFileHeader_Write_Zip64EndOfCentralDirectoryLocator_Write_Zip64EndOfCentralDirectoryRecord__dist_code__length_code__tr_align__tr_flush_block__tr_init__tr_stored_block__tr_tally_adler32@12_adler32_combine64@12_adler32_combine@12_call_zopen64_call_zseek64_call_ztell64_compress2@20_compress@16_compressBound@4_crc32@12_crc32_combine64@12_crc32_combine@12_deflate@8_deflateBound@8_deflateCopy@8_deflateEnd@4_deflateInit2_@32_deflateInit_@16_deflateParams@12_deflatePrime@12_deflateReset@4_deflateSetDictionary@12_deflateSetHeader@8_deflateTune@20_deflate_copyright_fill_fopen64_filefunc_fill_fopen_filefunc_fill_zlib_filefunc64_32_def_from_filefunc32_get_crc_table@0_gz_error_gzbuffer@8_gzclearerr@4_gzclose@4_gzclose_r@4_gzclose_w@4_gzdirect@4_gzdopen@8_gzeof@4_gzerror@8_gzflush@8_gzgetc@4_gzgets@12_gzoffset64@4_gzoffset@4_gzopen64@8_gzopen@8_gzprintf_gzputc@8_gzputs@8_gzread@12_gzrewind@4_gzseek64@12_gzseek@12_gzsetparams@12_gztell64@4_gztell@4_gzungetc@8_gzwrite@12_inflate@8_inflateBack@20_inflateBackEnd@4_inflateBackInit_@20_inflateCopy@8_inflateEnd@4_inflateGetHeader@8_inflateInit2_@16_inflateInit_@12_inflateMark@4_inflatePrime@12_inflateReset2@8_inflateReset@4_inflateSetDictionary@12_inflateSync@4_inflateSyncPoint@4_inflateUndermine@8_inflate_copyright_inflate_fast_inflate_table_longest_match_match_init_uncompress@16_unzClose@4_unzCloseCurrentFile@4_unzGetCurrentFileInfo64@32_unzGetCurrentFileInfo@32_unzGetCurrentFileZStreamPos64@4_unzGetFilePos64@8_unzGetFilePos@8_unzGetGlobalComment@12_unzGetGlobalInfo64@8_unzGetGlobalInfo@8_unzGetLocalExtrafield@12_unzGetOffset64@4_unzGetOffset@4_unzGoToFilePos64@8_unzGoToFilePos@8_unzGoToFirstFile@4_unzGoToNextFile@4_unzLocateFile@12_unzOpen2@8_unzOpen2_64@8_unzOpen64@4_unzOpen@4_unzOpenCurrentFile2@16_unzOpenCurrentFile3@20_unzOpenCurrentFile@4_unzOpenCurrentFilePassword@8_unzReadCurrentFile@12_unzSetOffset64@12_unzSetOffset@8_unzStringFileNameCompare@12_unz_copyright_unzeof@4_unztell64@4_unztell@4_zError@4_z_errmsg_zcalloc_zcfree_zipClose@8_zipCloseFileInZip@4_zipCloseFileInZipRaw64@16_zipCloseFileInZipRaw@12_zipOpen2@16_zipOpen2_64@16_zipOpen3@16_zipOpen64@8_zipOpen@8_zipOpenNewFileInZip2@44_zipOpenNewFileInZip2_64@48_zipOpenNewFileInZip3@64_zipOpenNewFileInZip3_64@68_zipOpenNewFileInZip4@72_zipOpenNewFileInZip4_64@76_zipOpenNewFileInZip64@44_zipOpenNewFileInZip@40_zipRemoveExtraInfoBlock@12_zipWriteInFileInZip@12_zip_copyright_zlibCompileFlags@0_zlibVersion@0 // 1315203158 0 758 ` .\x86\ZlibStatRelease\Tmp\zutil.obj.\x86\ZlibStatRelease\Tmp\zlib.res.\x86\ZlibStatRelease\Tmp\zip.obj.\x86\ZlibStatRelease\Tmp\unzip.obj.\x86\ZlibStatRelease\Tmp\uncompr.obj.\x86\ZlibStatRelease\Tmp\trees.obj.\x86\ZlibStatRelease\Tmp\ioapi.obj.\x86\ZlibStatRelease\Tmp\inftrees.obj.\x86\ZlibStatRelease\Tmp\inflate.obj.\x86\ZlibStatRelease\Tmp\inffast.obj.\x86\ZlibStatRelease\Tmp\infback.obj.\x86\ZlibStatRelease\Tmp\gzwrite.obj.\x86\ZlibStatRelease\Tmp\gzread.obj.\x86\ZlibStatRelease\Tmp\gzlib.obj.\x86\ZlibStatRelease\Tmp\gzclose.obj.\x86\ZlibStatRelease\Tmp\deflate.obj.\x86\ZlibStatRelease\Tmp\crc32.obj.\x86\ZlibStatRelease\Tmp\compress.obj.\x86\ZlibStatRelease\Tmp\adler32.obj..\..\masmx86\inffas32.obj..\..\masmx86\match686.obj/0 1315202897 100666 3120 ` LQgdN™8.drectve]ä .debug$S°A@B.rdatañ@0@.rdata @0@.rdata@0@.rdata '@0@.rdata 2@0@.rdata ?@0@.rdataJ@@.rdata K@0@.rdataV@0@.rdata(fŽ @0@.text òü P`.rdata@0@.text!  P`.text-C P`.text'Mt P`.text~ P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\zutil.obj:<RRMicrosoft (R) Optimizing Compilerincompatible versionbuffer errorinsufficient memorydata errorstream errorfile errorstream endneed dictionary    $U‹ì¸]Ã)1.2.5U‹ìƒìÇEüÇEøƒ}øtƒ}øt ƒ}øtëë‹EüƒÀ‰Eüë‹MüƒÁ‰Müë ‹UüƒÂ‰UüÇEôƒ}ôtƒ}ôt ƒ}ôtëë‹EüƒÀ‰Eüë‹MüƒÁ‰Müë ‹UüƒÂ ‰UüÇEðƒ}ðtƒ}ðt ƒ}ðtëë‹EüƒÀ‰Eüë‹MüƒÁ ‰Müë ‹UüƒÂ0‰UüÇEìƒ}ìtƒ}ìt ƒ}ìtëë%‹EüƒÀ@‰Eüë‹MüÁ€‰Müë ‹UüÂÀ‰Uü‹Eü‰Eü‹MüÁ‰Mü‹Eü‹å]ÃU‹ì¸+E‹…]Â#U‹ìƒ}t ‹E+EE ‰E ‹M ¯MQèƒÄ]Ã3U‹ì‹E PèƒÄ]Ã7@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.rdata2¤—.rdata }Å2.rdataVxCW.rdata ¬Sä„.rdata îE&:§.rdata Dí<Ì.rdata ï .rdata  õovÉ .rdata IqèÝ) .rdata ( R .text  dR q\ .rdataÜ{k.text!5‰ .texteö5ê .text'•TSé_zcalloc _malloc .text»J£Á_zcfree _free §??_C@_0BF@CJFPCCEG@incompatible?5version?$AA@??_C@_0N@DFPGLBGC@buffer?5error?$AA@??_C@_0BE@OGGJBMCE@insufficient?5memory?$AA@??_C@_0L@HAHMBNLP@data?5error?$AA@??_C@_0N@MKKNPMJD@stream?5error?$AA@??_C@_0L@KIJFAKBJ@file?5error?$AA@??_C@_00CNPNBAHC@?$AA@??_C@_0L@FNAOCBOG@stream?5end?$AA@??_C@_0BA@MOKMMFOD@need?5dictionary?$AA@_z_errmsg_zlibVersion@0??_C@_05DFCKICEH@1?42?45?$AA@_zlibCompileFlags@0_zError@4/36 1315203158 100666 1612 ` LVhdN¦ .debug$SˆŒ@B.rsrc$01Xl@@.rsrc$020v@@ó_c:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\zlib.resôå‚?¡MdÞj3mw=)hñô3C:\Users\Sean\AppData\Local\Temp\lnk5E75.tmp-< RMicrosoft (R) CVTRESŽ=cwdc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9exec:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\cvtres.exe€0€ H,H,4VS_VERSION_INFO½ïþ?ŒStringFileInfoh040904E4†/FileDescriptionzlib data compression and ZIP file I/O library,FileVersion1.2.5*InternalNamezlib: OriginalFilenamezlib.dll2 ProductNameZLib.DLL‚5CommentsDLL support by Alessandro Iacopetti & Gilles Vollant|,LegalCopyright(C) 1995-2010 Jean-loup Gailly & Mark AdlerDVarFileInfo$Translation ä@comp.idR”ÿÿ@feat.00ÿÿ.debug$Sˆ.rsrc$01X.rsrc$020$R000000/71 1315202897 100666 23360 ` L2QgdN&J¬.drectve]ä .debug$S°A@B.rdataOñ@@@.bss€0À.texte@ ¥ P`.text)½æ P`.text>ú8 P`.textsBµ P`.textaÉ P`.textÅ*ï P`.textÕì P`.text:‚¼ P`.text_îM P`.text¹Å~ P`.textì P`.textNR P`.text]pÍ P`.textáù P`.text   P`.text% ¦# P`.text§d$ % P`.textJ%_, P`.rdata•-@0@.rdata›-@0@.textÈ-e/ P`.text.0 P`.text†30 P`.textN¹01 P`.text‚1“1 P`.textu1 P`.textV2h2 P`.textRr2Ä2 P`.textTÎ2"3 P`.textH,3t3 P`.textJ~3È3 P`.textHÒ34 P`.textF$4j4 P`.textút4n6 P`.textDŒ6Ð7 P`.textä7ÿ7 P`.textê 8ó> P`.text@)@ P`.text¸3@ë@ P`.text«A¾B P`.textî"CE P`.textˆtEüE P`.textîFþG P`.text&bHˆH P`.text0’HÂH P`.text(ÌHôI P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¡cc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\zip.obj:<RRMicrosoft (R) Optimizing Compiler zip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDllU‹ììÇE°ÇEÌ‹E‹H,Q‹URèƒÄ‰E¨‰U¬ƒ}¬wƒ}¨v ÇEÌë!‹E¨ E¬u‹M‹Q,R‹EPèƒÄ‰E¨‰U¬ƒ}Ì„«j‹M¬Q‹U¨R‹E‹H,Q‹URèƒÄ…ÀtÇE°ÿÿÿÿEäP‹M‹Q,R‹EPèƒÄ …ÀtÇE°ÿÿÿÿM Q‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿUðR‹E‹H,Q‹URèƒÄ …ÀtÇE°ÿÿÿÿEøP‹M‹Q,R‹EPèƒÄ …ÀtÇE°ÿÿÿÿMôQ‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿU´R‹E‹H,Q‹URèƒÄ …ÀtÇE°ÿÿÿÿEèP‹M‹Q,R‹EPèƒÄ …ÀtÇE°ÿÿÿÿM¸Q‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿ‹U¸;Uèu‹E¼;Eìu ƒ}´uƒ}ôtÇE°™ÿÿÿMÀQ‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿUØR‹E‹H,Q‹URèƒÄ …ÀtÇE°ÿÿÿÿÇEüéÇj‹E¬P‹M¨Q‹U‹B,P‹MQèƒÄ…ÀtÇE°ÿÿÿÿUäR‹E‹H,Q‹URèƒÄ …ÀtÇE°ÿÿÿÿEôP‹M‹Q,R‹EPèƒÄ …ÀtÇE°ÿÿÿÿM´Q‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿÇEèÇEìUäR‹E‹H,Q‹URèƒÄ …Àt ÇE°ÿÿÿÿë ‹Eä3ɉEè‰MìÇE¸ÇE¼UäR‹E‹H,Q‹URèƒÄ …Àt ÇE°ÿÿÿÿë ‹Eä3ɉE¸‰M¼‹U¸;Uèu‹E¼;Eìu ƒ}´uƒ}ôtÇE°™ÿÿÿÇEÀÇEÄMäQ‹U‹B,P‹MQèƒÄ …Àt ÇE°ÿÿÿÿë ‹Uä3À‰UÀ‰EÄÇEØÇEÜMäQ‹U‹B,P‹MQèƒÄ …Àt ÇE°ÿÿÿÿë ‹Uä3À‰U؉EÜMüQ‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿ‹UØUÀ‹EÜEĉ•xÿÿÿ‰…|ÿÿÿ‹M¬;|ÿÿÿwr ‹U¨;•xÿÿÿs ƒ}°uÇE°™ÿÿÿƒ}°t!‹E‹H,Q‹U‹BP‹M‹Qÿ҃ăÈÿéƒ}üv^‹EüƒÀPèƒÄ‹M‰‹Uƒºt:‹EüP‹M‹‘R‹E‹H,Q‹U‹BP‹M‹Qÿ҃ĉEü‹E‹ˆ‹UüÆ‹EØEÀ‹MÜMÄ‹U¨+ЋE¬Á‰UЉEÔ‹M‹UЉ‘ð‹EÔ‰ô‹MÀ‰M‹UĉU”ÇEœð‹EœPèƒÄ‰EŒj‹MØMЋUÜUÔRQ‹E‹H,Q‹URèƒÄ…ÀtÇE°ÿÿÿÿƒ}”w ƒ}†¹ƒ}°…¯ÇE€ðÇE„‹E„;E”rw‹M€;Mv ‹U‰U€‹E”‰E„‹M€Q‹UŒR‹E‹H,Q‹U‹BP‹M‹QÿÒƒÄ3ɉ…pÿÿÿ‰tÿÿÿ‹•pÿÿÿ;U€u ‹…tÿÿÿ;E„tÇE°ÿÿÿÿƒ}°u‹M€Q‹UŒR‹EƒÀ0PèƒÄ ‰E°‹M+M€‹U”U„‰M‰U”é7ÿÿÿƒ}Œt ‹EŒPèƒÄ‹M‹UЉ‘è‹EÔ‰ì‹M‹U¸‰‘ø‹E¼‰üj‹MØMЋUÜUÔRQ‹E‹H,Q‹URèƒÄ…ÀtÇE°ÿÿÿÿ‹E°‹å]Ã#+Y'†¨ Ê#ì0 R t#–#Û#ý#1S u—Çd ¡ ÐTóÓÿLU‹ìƒìƒ}u ¸˜ÿÿÿé‹Eƒxu(è‹M‰A‹U‹E‹H‰ ‹Uƒ:u ¸˜ÿÿÿéÞ‹E‹H‰Mø‹U ‰Uüƒ}†Ã‹Eøƒxu-è‹Mø‰‹Uøƒ:u ¸˜ÿÿÿé ‹Eø‹‰Mø‹U‹Eø‰B‹Mø‹Q;Us ‹Eø‹H‰Môë‹U‰Uô‹Eø‹H‹UøD ‰EðÇEìë ‹MìƒÁ‰Mì‹Uì;Uôs‹EðEì‹MüM슈ëÝ‹Eø‹HMô‹Uø‰J‹Eø‹H+Mô‹Uø‰J‹EüEô‰Eü‹M+Mô‰Mé3ÿÿÿ3À‹å]à jU‹ìQhèƒÄ‰Eüƒ}üt‹EüÇ‹MüÇA‹UüÇBð‹Eü‹å]à U‹ìƒì ÇEøEøP‹M Q‹URèƒÄ ‰Eô‹Eø‰Eüƒ}ôuMøQ‹U R‹EPèƒÄ ‰Eô‹MøÁáMü‰Müƒ}ôu ‹U‹Eü‰ë ‹MÇ‹Eô‹å]Ã=U‹ìƒìjEûP‹M Q‹U‹BP‹M‹Qÿ҃ĉEüƒ}üu¶Eû‹M‰3Àë%ë#‹U R‹E‹HQ‹U‹BÿЃÄ…ÀtƒÈÿëë3À‹å]ÃU‹ìƒì ÇEøEøP‹M Q‹URèƒÄ ‰Eô‹Eø‰Eüƒ}ôuMøQ‹U R‹EPèƒÄ ‰Eô‹MøÁáMü‰Müƒ}ôuUøR‹E P‹MQèƒÄ ‰Eô‹UøÁâUü‰Uüƒ}ôuEøP‹M Q‹URèƒÄ ‰Eô‹EøÁàEü‰Eüƒ}ôu ‹M‹Uü‰ë ‹EÇ‹Eô‹å]Ã=fU‹ìƒìÇEôEôP‹M Q‹URèƒÄ ‰Eð‹Eô™‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™± èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±(èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±0èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±8èEø‹MüʉEø‰Müƒ}ðu‹U‹Eø‰‹Mü‰Jë‹UÇÇB‹Eð‹å]ÃAR$wˆ$­¾$ãô$*$O`$…–$U‹ìƒìHÇEàÿÿÇEäÇEðÇEôjjj‹E P‹MQèƒÄ…Àt 3À3Òéñ‹U R‹EPèƒÄ‰Eø‰Uü‹Mä;Mürw‹Uà;Uøv ‹Eø‰Eà‹Mü‰MähèƒÄ‰E܃}Üu 3À3ÒéžÇEèÇEì‹Uì;Uä‡lr ‹Eè;Eàƒ^‹MèÁ‹UìƒÒ‰MĉUÈ‹EÈ;Eärw‹MÄ;Màv‹Uà‰Uè‹Eä‰Eìë‹MèÁ‹UìƒÒ‰Mè‰Uì‹Eø+Eè‹MüMì‰EЉMÔ‹Uø+UЋEüEÔ‰U¼‰EÀƒ}Àrw }¼v ÇE¸ë‹Mø+MЋUüUÔ‰M¸‹E¸‰EÌj‹MÔQ‹UÐR‹E P‹MQèƒÄ…Àtéž‹UÌR‹EÜP‹M Q‹U‹BP‹M‹QÿÒƒÄ;EÌtëy‹Ẽè‰EØ‹MØ‹U؃ê‰UØ…É~Q‹EÜEضƒùPuA‹UÜUضBƒøKu2‹MÜMضQƒúu#‹EÜEضHƒùu‹EØ™EЋMÔʉEð‰Môë럋Uð Uôtëéˆþÿÿƒ}Üt ‹EÜPèƒÄ‹Eð‹Uô‹å]Ã1N(p)U‹ìƒìXÇEÐÿÿÇEÔÇEðÇEôjjj‹E P‹MQèƒÄ…Àt 3À3Òé‹U R‹EPèƒÄ‰Eø‰Uü‹MÔ;Mürw‹UÐ;Uøv ‹Eø‰EЋMü‰MÔhèƒÄ‰Ẽ}Ìu 3À3ÒéÃÇEèÇEì‹Uì;UÔ‡lr ‹Eè;EЃ^‹MèÁ‹UìƒÒ‰M´‰U¸‹E¸;EÔrw‹M´;MÐv‹UЉUè‹EÔ‰Eìë‹MèÁ‹UìƒÒ‰Mè‰Uì‹Eø+Eè‹MüMì‰EÀ‰MÄ‹Uø+UÀ‹EüEĉU¬‰E°ƒ}°rw }¬v ÇE¨ë‹Mø+MÀ‹UüUĉM¨‹E¨‰E¼j‹MÄQ‹UÀR‹E P‹MQèƒÄ…Àtéž‹U¼R‹EÌP‹M Q‹U‹BP‹M‹QÿÒƒÄ;E¼tëy‹E¼ƒè‰EÈ‹MÈ‹Uȃê‰UÈ…É~Q‹EÌEȶƒùPuA‹UÌUȶBƒøKu2‹MÌMȶQƒúu#‹EÌEȶHƒùu‹EÈ™EÀ‹MÄʉEð‰Môë럋Uð Uôtëéˆþÿÿƒ}Ìt ‹EÌPèƒÄ‹Mð Môu 3À3Òéj‹UôR‹EðP‹M Q‹URèƒÄ…Àt 3À3ÒéóEÜP‹M Q‹URèƒÄ …Àt 3À3ÒéÒEÜP‹M Q‹URèƒÄ …Àt 3À3Ò鱃}Üt 3À3Òé¢EàP‹M Q‹URèƒÄ …Àt 3À3ÒéEÜP‹M Q‹URèƒÄ …Àt3À3Òëcƒ}Üt3À3ÒëWj‹EäP‹MàQ‹U R‹EPèƒÄ…Àt3À3Òë3MÜQ‹U R‹EPèƒÄ …Àt3À3Òë}ÜPKt3À3Òë‹Eà‹Uä‹å]Ã1N(p)Tu – Æ#ç 5 U‹ì¸èVWÇEüÇ…ÿþÿÇ…ÿþÿƒ}u…ðþþÿPèƒÄë‹u¹ ½ðþþÿó¥3Ƀ} ”Á Q‹UR…ðþþÿPèƒÄ ‰…ÿþÿƒ½ÿþÿu3Àé&ƒ} ujjj‹ÿþÿQ•ðþþÿRèƒÄ‹…ÿþÿPðþþÿQèƒÄ‰E؉UÜÇ…(ÿþÿÇ…hÿþÿÇEèÇEìÇEàÇEä• ÿþÿRèƒÄhèƒÄ‰Eøƒ}øu‹…ÿþÿP‹ ÿþÿQÿ•ÿþÿƒÄ3ÀëxÇEðƒ} u•ðþþÿRèƒÄ‰Eüƒ}t‹E‹Mð‰ƒ}üt*ƒ}ðt ‹UðRèƒÄƒ}øt ‹EøPèƒÄ3ÀëëhðþþÿQ‹UøRèƒÄ ‹Eø_^‹å] 180n/¦¼(5Nw‰§2U‹ì‹EÇ@‹MÇ]ÃU‹ìƒì,ƒ}t)‹EPMÔQèƒÄUÔR‹EP‹M Q‹URèëëj‹EP‹M Q‹URè‹å]Â9-.D.U‹ìƒì,VWƒ}t4‹u¹}Ôó¥ÇEøÇEüEÔP‹MQ‹U R‹EPèëëj‹MQ‹U R‹EPè_^‹å]Â:.Q.U‹ìjj‹E P‹MQè]Â.U‹ìjj‹E P‹MQè]Â.U‹ìƒì(‹E PèƒÄ‰Eø‹M‰MüjjhPK‹U‹B,P‹MQèƒÄ‰Eôƒ}ôuF‹Uƒº°tjjj-‹E‹H,Q‹URèƒÄ‰Eôëjjj‹E‹H,Q‹URèƒÄ‰Eôƒ}ôu%j‹E‹ˆ˜3ÒRQ‹E‹H,Q‹URèƒÄ‰Eôƒ}ôu%j‹E‹ˆœ3ÒRQ‹E‹H,Q‹URèƒÄ‰Eôƒ}ôu%j‹E‹ˆ¤3ÒRQ‹E‹H,Q‹URèƒÄ‰Eôƒ}ôujjj‹E‹H,Q‹URèƒÄ‰Eôƒ}ôuF‹Eƒ¸°tjjjÿ‹M‹Q,R‹EPèƒÄ‰Eôëjjj‹M‹Q,R‹EPèƒÄ‰Eôƒ}ôuF‹Mƒ¹°tjjjÿ‹U‹B,P‹MQèƒÄ‰Eôëjjj‹U‹B,P‹MQèƒÄ‰Eôƒ}ôuj‹Uø3ÀPR‹M‹Q,R‹EPèƒÄ‰Eô‹Mƒ¹°t ‹UüƒÂ‰Uüƒ}ôuj‹Eü3ÉQP‹U‹B,P‹MQèƒÄ‰Eôƒ}ôu3ƒ}øv-‹UøR‹E P‹M‹Q,R‹E‹HQ‹U‹BÿЃÄ;EøtÇEôÿÿÿÿƒ}ôu3ƒ}v-‹MQ‹UR‹E‹H,Q‹U‹BP‹M‹QÿÒƒÄ;EtÇEôÿÿÿÿƒ}ô…Þ‹Eƒ¸°„ιf‰Màºf‰UäÇEØÇEÜÇEèÇEì‹E‹H,Q‹URèƒÄ‹M‰¸‰‘¼j¿Eà™RP‹U‹B,P‹MQèƒÄ‰Eôj¿Eä™RP‹U‹B,P‹MQèƒÄ‰Eôj‹UìR‹EèP‹M‹Q,R‹EPèƒÄ‰Eôj‹MÜQ‹UØR‹E‹H,Q‹URèƒÄ‰Eô‹Eô‹å]à F0I^I|I§IÒIýIIMIkI™I·IÜIIæ(I0IPIpIU‹ìƒì ÇEüë ‹EüƒÀ‰Eü‹Mü;M}+‹Uâÿ‹Eƒà‹MüˆT ô‹E‹U±è‰E‰UëÄ‹U Ut$ÇEüë ‹EüƒÀ‰Eü‹Mü;M} ‹UüÆDôÿëå‹EPMôQ‹U R‹E‹HQ‹U‹BÿЃÄ;EtƒÈÿëë3À‹å]Ã?JU‹ìƒì(ÇEôƒ}u ¸šÿÿÿé'ƒ}(tƒ}(t ¸šÿÿÿé‹E‰Eì‹Mìƒy8u‹URè‰Eôƒ}ôt‹Eôéèƒ} uÇE ƒ}$u ÇEüë‹E$PèƒÄ‰Eü‹M QèƒÄ‰Eðƒ}u‹UìÇ‚¤ë/‹Eƒxt‹Mì‹U‹B‰¤ë‹MQèƒÄ‹U쉂¤‹Eì‹ML‰ˆ˜ƒ},tƒ}, u‹Uì‹‚˜ƒÈ‹M쉘ƒ},u‹Uì‹‚˜ƒÈ‹M쉘ƒ},u‹Uì‹‚˜ƒÈ‹M쉘ƒ}@t‹Uì‹‚˜ƒÈ‹M쉘‹UìÇ‚¨‹Eì‹M(‰ˆœ‹UìÇ‚¬‹EìÇ@x‹MìÇA|‹Uì‹E0‰‚ ‹Mì‹Q,R‹EìPèƒÄ‹M쉀‰‘„‹U ‹EðL.Mü‹U쉊‹EìÇ€” ‹Mì‹‘‹Eì”RèƒÄ‹M쉈‹Uì‹E ‰‚ŒjjhPK‹Mì‹‘ˆRèƒÄj‹EH3ÉQP‹Uì‹‚ˆƒÀPèƒÄjjj‹Mì‹‘ˆƒÂRèƒÄj‹E싈˜3ÒRQ‹E싈ˆƒÁQèƒÄj‹Uì‹‚œ3ÉQP‹Uì‹‚ˆƒÀ PèƒÄj‹Mì‹‘¤3ÀPR‹Mì‹‘ˆƒÂ RèƒÄjjj‹E싈ˆƒÁQèƒÄjjj‹Uì‹‚ˆƒÀPèƒÄjjj‹Mì‹‘ˆƒÂRèƒÄj‹Eð3ÉQP‹Uì‹‚ˆƒÀPèƒÄj‹M 3ÒRQ‹E싈ˆƒÁQèƒÄj‹Uü3ÀPR‹Mì‹‘ˆƒÂ RèƒÄjjj‹E싈ˆƒÁ"QèƒÄƒ}ujjj‹Uì‹‚ˆƒÀ$PèƒÄë!j‹M‹Q3ÀPR‹Mì‹‘ˆƒÂ$RèƒÄƒ}ujjj‹E싈ˆƒÁ&QèƒÄë!j‹U‹B 3ÉQP‹Uì‹‚ˆƒÀ&PèƒÄ‹Mì‰MØ‹U؃º„w ‹E؃¸€ÿrjjjÿ‹Mì‹‘ˆƒÂ*RèƒÄë3j‹E싈€3Ò‹Eì+ˆðôRQ‹Mì‹‘ˆƒÂ*RèƒÄÇEøë ‹EøƒÀ‰Eø‹Mø;Mðs‹Uì‹‚ˆ‹M Mø‹UøŠ ˆL.ëÕÇEøë ‹UøƒÂ‰Uø‹Eø;E s ‹Mì‹‘ˆ‹EðL.‹UUø‹EøŠˆëÏÇEøë ‹EøƒÀ‰Eø‹Mø;Müs#‹Uì‹‚ˆ‹MðT.U ‹E$Eø‹MøŠˆ ëÌ‹M샹ˆu ¸˜ÿÿÿéô‹Uì‹EP‰‚°‹MìÇÀÇÄ‹UìÇ‚Èǂ̋EìÇ€¸Ç€¼‹MQ‹UR‹E P‹MìQèƒÄ‰Eô‹UìÇBD‹EìÇ@P‹MìÁ¤‹Uì‰JL‹EìÇ@H‹MìÇAT‹UìÇBlƒ}ô…ˆ‹E샸œu|‹M샹 up‹U샺œud‹EìÇ@`‹MìÇAd‹UìÇBhƒ}4~‹E4÷؉E4j8h‹MMU‹ìƒìVÇEüƒ}u ¸šÿÿÿéÕ‹E‰Eø‹Møƒy8u ¸šÿÿÿ鼋UR‹E P‹Mø‹‘¨Rè‹Mø‰¨‹Uø‹E ‰B@‹Mø‹U‰QDƒ}ü…}‹EøƒxD†p‹MøƒyPu1‹UøRèƒÄƒøÿuÇEüÿÿÿÿ‹EøÇ@P‹MøÁ¤‹Uø‰JLƒ}üté+‹Eøƒ¸œu[‹Møƒ¹ uO‹Uø‹BT‰Eôj‹MøƒÁ@Qè‰Eü‹Uø‹Eô;BTvÇEð‹MðƒÁ‰Mð‹Uø‹BT+Eô‹MøA|‹Uø‰B|é¿‹Eø‹Mø‹PD;QPs ‹Eø‹HD‰Mìë ‹Uø‹BP‰EìÇEèë ‹MèƒÁ‰Mè‹Uè;Uìs‹Eø‹H@‹Uø‹BL‹Uè‹uèŠ 1ˆ ëÕ‹Uø‹BD+Eì‹Mø‰AD‹Uø‹BP+Eì‹Mø‰AP‹Uø‹B@Eì‹Mø‰A@‹Uø‹BLEì‹Mø‰AL‹Uø‹BHEì‹Mø‰AH‹Uø‹BTEì‹Mø‰AT‹Uø‹B|Eì‹Mø‰A|éyþÿÿ‹Eü^‹å] J„އðƒU‹ìƒì ÇEü‹Eƒ¸¬„ƒÇEøë ‹MøƒÁ‰Mø‹U‹Eø;B|sf‹M‹‘ÜR‹EÐPèƒÄ‰Eô‹MMø¶‘¤R‹E‹ˆÜQ‹UÂÐRèƒÄ ‹EEø¶ˆ¤3Mô‹UUøˆŠ¤ë†‹E‹H|Q‹U¤R‹E‹H,Q‹U‹BP‹M‹Qÿ҃ċM;A|tÇEüÿÿÿÿ‹U‹B|3É‹U‚À‹’ÄÑ‹M‰À‰‘Ä‹U‹BH3É‹U‚È‹’ÌÑ‹M‰È‰‘Ì‹UÇBH‹EÇ@|‹Eü‹å]ÃN^{aU‹ì‹EP‹M 3ÒRQ‹EPè] U‹ìƒì@ÇEäÿÿÿÿ3Àf‰EüÇEìƒ}u ¸šÿÿÿ麋M‰Mè‹Uèƒz8u ¸šÿÿÿé¡‹EèÇ@D‹M胹œu|‹U胺 upƒ}ìuj‹EèƒxPu0‹MèQèƒÄƒøÿuÇEìÿÿÿÿ‹UèÇBP‹E褋Mè‰AL‹Uè‹BT‰Eàj‹MèƒÁ@Qè‰Eì‹Uè‹BT+Eà‹MèA|‹Uè‰B|ëƒ}ìuÇEì‹Uèƒz|vƒ}ìu‹EèPèƒÄƒøÿuÇEìÿÿÿÿ‹M胹œu1‹U胺 u%‹EèƒÀ@Pè‰E܃}ìu‹M܉Mì‹UèÇBx‹E胸 u!‹Mè‹‘¨‰U‹E苈ȉM ‹Ì‰U‹E苈À‰Mð‹Ä‰Uô‹Eè‹€à™Eð‹MôʉEð‰Môƒ}ôw4rƒ}ðÿs,ƒ}w&rƒ} ÿs‹Uè‰UÌ‹Ẽ¸„w ‹M̃¹€ÿr6jjj-‹Uè‹‚ˆƒÀPèƒÄjjj-‹Mè‹‘ˆƒÂRèƒÄj‹E3ÉQP‹Uè‹‚ˆƒÀPèƒÄƒ}ôwƒ}ðÿr j‹Mä3ÒRQ‹E苈ˆƒÁQèƒÄëj‹UôR‹EðP‹Mè‹‘ˆƒÂRèƒÄ‹Eèƒxlujjj‹Mè‹‘ˆƒÂ$RèƒÄƒ}wƒ} ÿr j‹Eä3ÉQP‹Uè‹‚ˆƒÀPèƒÄëj‹MQ‹U R‹E苈ˆƒÁQèƒÄƒ}wƒ} ÿr ¿UüƒÂf‰Uüƒ}ôwƒ}ðÿr ¿EüƒÀf‰Eü‹Mè‰MÈ‹Uȃº„w ‹Eȃ¸€ÿr ¿MüƒÁf‰Mü¿Uü…ÒŽ€ÇEØ¿EüƒÀ‹Mè;”v ¸™ÿÿÿév‹Uè‹‚ˆ‹Mè‰EØjjj‹UØRèƒÄ‹E؃À‰EØj¿Eü™RP‹MØQèƒÄ‹U؃‰U؃}wƒ} ÿrj‹EP‹M Q‹UØRèƒÄ‹E؃À‰E؃}ôwƒ}ðÿrj‹MôQ‹UðR‹EØPèƒÄ‹M؃Á‰MØ‹Uè‰UÄ‹E㸄w ‹Mă¹€ÿr(j‹Uè‹‚„P‹Š€Q‹UØRèƒÄ‹E؃À‰EØ¿MüƒÁ‹Uè‹‚”+Á‹M艔¿Uü‹E苈T ‹E艿Mü‹Uè‹‚ŒL‹U艊Œj‹E苈Œ3ÒRQ‹E苈ˆƒÁQèƒÄƒ}ìu&‹Uè‹‚P‹Mè‹‘ˆR‹EèƒÀ0PèƒÄ ‰Eì‹Mè‹‘ˆRèƒÄƒ}ì… ‹Eè‹H,Q‹UèRèƒÄ‰EЉUÔj‹E苈€ƒÁ‹„ƒÒRQ‹Eè‹H,Q‹UèRèƒÄ…ÀtÇEìÿÿÿÿƒ}ìuj‹E3ÉQP‹Uè‹B,P‹MèQèƒÄ‰Eìƒ}w ƒ} ÿ‚§‹Uè‰UÀ‹EÀƒ¸¼w‹MÀƒ¹¸†ƒj‹Uè‹‚¸ƒÀ‹Š¼ƒÑQP‹Uè‹B,P‹MèQèƒÄ…ÀtÇEìÿÿÿÿƒ}ìu j‹UR‹E P‹Mè‹Q,R‹EèPèƒÄ‰Eìƒ}ìu j‹MôQ‹UðR‹Eè‹H,Q‹UèRèƒÄ‰EìëLƒ}ìu j‹EôP‹MðQ‹Uè‹B,P‹MèQèƒÄ‰Eìƒ}ìu j‹UR‹E P‹Mè‹Q,R‹EèPèƒÄ‰Eìj‹MÔQ‹UÐR‹Eè‹H,Q‹UèRèƒÄ…ÀtÇEìÿÿÿÿ‹E苈øƒÁ‹üƒÒ‹E艈ø‰ü‹MèÇA8‹Eì‹å]Ây‡·ƒö‡)Žîg g'gQgrg–gÀgágŽg¬g×ggHgÄgí(Q~Iß I3I[II¡U‹ìjj‹EPè] ŠU‹ìƒìÇEü‹E‹M +ˆð‹Uô‰Mð‰UôjjhPK‹E‹H,Q‹URèƒÄ‰Eüƒ}üujjj‹E‹H,Q‹URèƒÄ‰Eüƒ}üu j‹EôP‹MðQ‹U‹B,P‹MQèƒÄ‰Eüƒ}üujjj‹U‹B,P‹MQèƒÄ‰Eü‹Eü‹å]Ã=I_I…I§IU‹ìƒìÇEøÇEü,jjhPK‹E‹H,Q‹URèƒÄ‰Eøƒ}øuj‹Eü3ÉQP‹U‹B,P‹MQèƒÄ‰Eøƒ}øujjj-‹U‹B,P‹MQèƒÄ‰Eøƒ}øujjj-‹U‹B,P‹MQèƒÄ‰Eøƒ}øujjj‹U‹B,P‹MQèƒÄ‰Eøƒ}øujjj‹U‹B,P‹MQèƒÄ‰Eøƒ}øu)j‹U‹‚üP‹ŠøQ‹U‹B,P‹MQèƒÄ‰Eøƒ}øu)j‹U‹‚üP‹ŠøQ‹U‹B,P‹MQèƒÄ‰Eøƒ}øuj‹U 3ÀPR‹M‹Q,R‹EPèƒÄ‰Eøƒ}øu;‹M‹U+‘ð‹Eô‰Uð‰Eôj‹MôQ‹UðR‹E‹H,Q‹URèƒÄ‰Eø‹Eø‹å]Ã)INIpI’I´IÖII4IYIšIU‹ìƒìÇEüjjhPK‹E‹H,Q‹URèƒÄ‰Eüƒ}üujjj‹E‹H,Q‹URèƒÄ‰Eüƒ}üujjj‹E‹H,Q‹URèƒÄ‰Eüƒ}üug‹E‰Eì‹M샹üw‹Uìºøÿÿr!jjhÿÿ‹E‹H,Q‹URèƒÄ‰Eüë%j‹E‹ˆø3ÒRQ‹E‹H,Q‹URèƒÄ‰Eüƒ}üug‹E‰Eè‹M胹üw‹Uèºøÿÿr!jjhÿÿ‹E‹H,Q‹URèƒÄ‰Eüë%j‹E‹ˆø3ÒRQ‹E‹H,Q‹URèƒÄ‰Eüƒ}üuj‹E 3ÉQP‹U‹B,P‹MQèƒÄ‰Eüƒ}üur‹U‹E+‚ð‹MŠô‰Eð‰Môuƒ}ðÿrjjjÿ‹U‹B,P‹MQèƒÄ‰Eüë1j‹U‹E+‚ð‹MŠô3ÒRP‹E‹H,Q‹URèƒÄ‰Eü‹Eü‹å]Ã"IDIfI¬IÓII@IeIªIÝIU‹ìƒìÇEüÇEøƒ} t‹E PèƒÄ‰Eøj‹Mø3ÒRQ‹E‹H,Q‹URèƒÄ‰Eüƒ}üu3ƒ}øv-‹EøP‹M Q‹U‹B,P‹M‹QR‹E‹HÿуÄ;EøtÇEüÿÿÿÿ‹Eü‹å]ÃF>IU‹ìƒì0ÇEðÇEôƒ}u ¸šÿÿÿéÄ‹E‰Eì‹Mìƒy8u ‹URè‰Eðƒ} u ‹E싈‰M ‹Uì‹B,P‹MìQèƒÄ‰Eø‰Uüƒ}ðuj‹Uì‹B0‰E܃}Üt[ƒ}ðu?‹M܃yv6‹UÜ‹BP‹M܃ÁQ‹Uì‹B,P‹Mì‹QR‹Eì‹HÿуÄ‹UÜ;BtÇEðÿÿÿÿ‹EÜ‹MôH‰Mô‹UÜ‹‰EÜ럋MìƒÁ0QèƒÄ‹Uì‹Eø+‚ð‹MüŠô‰Eà‰Mäuƒ}àÿrE‹Uì‹B,P‹MìQèƒÄ‰EЉUÔ‹UüR‹EøP‹MôQ‹UìRèƒÄ‹EÔP‹MÐQ‹UìRèƒÄ ƒ}ðu‹EüP‹MøQ‹UôR‹EìPèƒÄ‰Eðƒ}ðu‹M Q‹UìRèƒÄ‰Eð‹Eì‹H,Q‹Uì‹BP‹Mì‹Qÿ҃ąÀt ƒ}ðuÇEðÿÿÿÿ‹E샸t‹Mì‹‘RèƒÄƒ}ìt ‹EìPèƒÄ‹Eð‹å]Â8‘](â£(6—J”hšÌÞU‹ì‹E‹QèƒÄ‹UÇB‹EÇ]à ¦U‹ìQƒ}t"‹E‹‰Müƒ}t ‹URèƒÄ‹Eü‰EëØ‹å]ÃU‹ìƒì‹E‰EüÇEðÇEøƒ}t‹M ƒ9} ¸šÿÿÿéð‹U ‹PèƒÄ‰Eè‹Mè‰Mô‹U ‹E9Eüsg‹Müf‹f‰Uä‹Eüf‹Hf‰Mì¿Uä¿E;Ðu¿Mì‹UüD ‰Eüë4¿MìƒÁQ‹UüR‹EôPèƒÄ ¿Mì‹UüD ‰Eü¿Mì‹UðD ‰Eð댋M ‹Uð;}?‹E ‹Qj‹URèƒÄ ƒ}ð~‹EðP‹MèQ‹URèƒÄ ‹E ‹Mð‰ÇEøëÇEøÿÿÿÿƒ}èt ‹UèRèƒÄ‹Eø‹å] 9˜«Ôªî«@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.rdataO~Q™.bss.texte}ý“Ë- _free _malloc I .text)w@W .text>9;Oìn .textsØ ©Ö† .text aý¿› .text Å6ÙÈe¯ .text ÕîÌhœà __allshl .text :Ãv Ù ö .text _ ]­LÛ .text¹ ÔÕð7# 0 > __chkstk _memcpy .textVÔ|U .textN}‰wKf s .text]X÷Ç2  .text~ÚN° .text~ÚN» .text ÏÑÈ _strlen .text§¡.drectve]” .debug$S°ñ@B.rdataQ¡@@@.text<ò.  P`.text¬B P`.textHî 6  P`.textÂT  P`.texts$— P`.texta« P`.textÅ Ñ P`.textÇùÀ P`.text:V P`.text_Â! P`.textW™ð P`.text P`.text%< P`.text_F¥ P`.text>¹ P`.text6÷ P`.text1-^ P`.textÜhD$ P`.textÛ\%7& P`.textìs&_' P`.textŽi'÷' P`.text'(() P`.text`2)’* P`.texteÄ* P`.text6)+_+ P`.textŒi+õ+ P`.textAÿ+@, P`.textiJ,³/ P`.rdata0@0@.textK 0T3 P`.textÂ3Ú3 P`.textä3þ3 P`.text4&4 P`.textT04 P`.textÁ„4E9 P`.text>m9 P`.textC«9 P`.text]î9 P`.text K:U; P`.textà_;?< P`.textÃ]< = P`.text¡*= P`.text(Ë=ó= P`.text„ý=> P`.text‹>¢> P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\unzip.obj:<RRMicrosoft (R) Optimizing Compiler unzip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDllU‹ìƒ}uÇEƒ}u‹E P‹MQèƒÄë‹U R‹EPèƒÄ]  1U‹ìQ‹EŠˆMÿ‹UƒÂ‰U‹E ŠˆMþ‹U ƒÂ‰U ¾Eÿƒøa|¾Mÿƒùz ¾Uÿƒê ˆUÿ¾Eþƒøa|¾Mþƒùz ¾Uþƒê ˆUþ¾Eÿ…Àu ¾Eþ÷ØÀë8¾Mþ…Éu¸ë)¾Uÿ¾Eþ;Ð}ƒÈÿë¾Mÿ¾Uþ;Ê~¸ëé\ÿÿÿ‹å]ÃU‹ìƒì,ƒ} t&‹E PMÔQèƒÄjUÔR‹EPèƒÄ ëëjj‹MQèƒÄ ‹å]Â';U‹ìì,VWÇEð¾ƒø t3Àé—Ç…ÿÿÿÇ…ÿÿÿƒ} uðþÿÿQèƒÄë‹u ¹ ½ðþÿÿó¥‹U‰•ÿÿÿj‹EPðþÿÿQèƒÄ ‰… ÿÿÿƒ½ ÿÿÿu3Àé(‹• ÿÿÿR…ðþÿÿPèƒÄ‰…èþÿÿ‰•ìþÿÿ‹èþÿÿ ìþÿÿ„ôÇEØj‹•ìþÿÿR‹…èþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ…ÀtÇEðÿÿÿÿEôP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ…àþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ…ÜþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ…ÜþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEüP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEäP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ…(ÿÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEèP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ‹Eè;…(ÿÿÿu‹Mì;,ÿÿÿu ƒ}äuƒ}ütÇEð™ÿÿÿ•`ÿÿÿR‹… ÿÿÿPðþÿÿQèƒÄ …ÀtÇEðÿÿÿÿ•hÿÿÿR‹… ÿÿÿPðþÿÿQèƒÄ …ÀtÇEðÿÿÿÿÇ…0ÿÿÿé‹• ÿÿÿR…ðþÿÿPèƒÄ‰…èþÿÿ‰•ìþÿÿ‹èþÿÿ ìþÿÿuÇEðÿÿÿÿÇEØj‹•ìþÿÿR‹…èþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ…ÀtÇEðÿÿÿÿEôP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEüP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEäP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEôP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ‹Eô3ɉ…(ÿÿÿ‰,ÿÿÿUôR‹… ÿÿÿPðþÿÿQèƒÄ …ÀtÇEðÿÿÿÿ‹Uô3À‰Uè‰Eì‹Mè;(ÿÿÿu‹Uì;•,ÿÿÿu ƒ}äuƒ}ütÇEð™ÿÿÿEôP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ‹Eô3ɉ…`ÿÿÿ‰dÿÿÿUôR‹… ÿÿÿPðþÿÿQèƒÄ …ÀtÇEðÿÿÿÿ‹Uô3À‰•hÿÿÿ‰…lÿÿÿ0ÿÿÿQ‹• ÿÿÿR…ðþÿÿPèƒÄ …ÀtÇEðÿÿÿÿ‹hÿÿÿ`ÿÿÿ‹•lÿÿÿ•dÿÿÿ‰Ôþÿÿ‰•Øþÿÿ‹…ìþÿÿ;…Øþÿÿwr‹èþÿÿ;Ôþÿÿs ƒ}ðuÇEð™ÿÿÿƒ}ðt‹• ÿÿÿR‹… ÿÿÿPÿ•ÿÿÿƒÄ3À錋hÿÿÿ`ÿÿÿ‹•lÿÿÿ•dÿÿÿ‹…èþÿÿ+Á‹ìþÿÿʉ…8ÿÿÿ‰<ÿÿÿ‹•èþÿÿ‰•Xÿÿÿ‹…ìþÿÿ‰…\ÿÿÿÇEÐÇEÔhðèƒÄ‰Eøƒ}øt¹<µðþÿÿ‹}øó¥‹MøQè‹Eø_^‹å]ÃGw£/î#;&c‹°#Õ#ý&"&s&›&Ë*>#cˆ­ã<#r#«µSU‹ìƒì ÇEøEøP‹M Q‹URèƒÄ ‰Eô‹Eø‰Eüƒ}ôuMøQ‹U R‹EPèƒÄ ‰Eô‹MøÁá Mü‰Müƒ}ôu ‹U‹Eü‰ë ‹MÇ‹Eô‹å]à = U‹ìƒìjEûP‹M Q‹U‹BP‹M‹Qÿ҃ĉEüƒ}üu¶Eû‹M‰3Àë%ë#‹U R‹E‹HQ‹U‹BÿЃÄ…ÀtƒÈÿëë3À‹å]ÃU‹ìƒì ÇEøEøP‹M Q‹URèƒÄ ‰Eô‹Eø‰Eüƒ}ôuMøQ‹U R‹EPèƒÄ ‰Eô‹MøÁá Mü‰Müƒ}ôuUøR‹E P‹MQèƒÄ ‰Eô‹UøÁâ Uü‰Uüƒ}ôuEøP‹M Q‹URèƒÄ ‰Eô‹EøÁàEü‰Eüƒ}ôu ‹M‹Uü‰ë ‹EÇ‹Eô‹å]à = f  U‹ìƒìÇEôEôP‹M Q‹URèƒÄ ‰Eð‹Eô™‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™± è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±(è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±0è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±8è Eø Uü‰Eø‰Uüƒ}ðu‹E‹Mø‰‹Uü‰Pë‹EÇÇ@‹Eð‹å]à A R'u †'© º'Ý î' "'E V'y Š'U‹ìƒìHÇEàÿÿÇEäÇEðÇEôjjj‹E P‹MQèƒÄ…Àt 3À3Òéñ‹U R‹EPèƒÄ‰Eø‰Uü‹Mä;Mürw‹Uà;Uøv ‹Eø‰Eà‹Mü‰MähèƒÄ‰E܃}Üu 3À3ÒéžÇEèÇEì‹Uì;Uä‡lr ‹Eè;Eàƒ^‹MèÁ‹UìƒÒ‰MĉUÈ‹EÈ;Eärw‹MÄ;Màv‹Uà‰Uè‹Eä‰Eìë‹MèÁ‹UìƒÒ‰Mè‰Uì‹Eø+Eè‹MüMì‰EЉMÔ‹Uø+UЋEüEÔ‰U¼‰EÀƒ}Àrw }¼v ÇE¸ë‹Mø+MЋUüUÔ‰M¸‹E¸‰EÌj‹MÔQ‹UÐR‹E P‹MQèƒÄ…Àtéž‹UÌR‹EÜP‹M Q‹U‹BP‹M‹QÿÒƒÄ;EÌtëy‹Ẽè‰EØ‹MØ‹U؃ê‰UØ…É~Q‹EÜEضƒùPuA‹UÜUضBƒøKu2‹MÜMضQƒúu#‹EÜEضHƒùu‹EØ™EЋMÔʉEð‰Môë럋Uð Uôtëéˆþÿÿƒ}Üt ‹EÜPèƒÄ‹Eð‹Uô‹å]Ã1N,p)+U‹ìƒìXÇEÐÿÿÇEÔÇEðÇEôjjj‹E P‹MQèƒÄ…Àt 3À3Òé‹U R‹EPèƒÄ‰Eø‰Uü‹MÔ;Mürw‹UÐ;Uøv ‹Eø‰EЋMü‰MÔhèƒÄ‰Ẽ}Ìu 3À3ÒéÃÇEèÇEì‹Uì;UÔ‡lr ‹Eè;EЃ^‹MèÁ‹UìƒÒ‰M´‰U¸‹E¸;EÔrw‹M´;MÐv‹UЉUè‹EÔ‰Eìë‹MèÁ‹UìƒÒ‰Mè‰Uì‹Eø+Eè‹MüMì‰EÀ‰MÄ‹Uø+UÀ‹EüEĉU¬‰E°ƒ}°rw }¬v ÇE¨ë‹Mø+MÀ‹UüUĉM¨‹E¨‰E¼j‹MÄQ‹UÀR‹E P‹MQèƒÄ…Àtéž‹U¼R‹EÌP‹M Q‹U‹BP‹M‹QÿÒƒÄ;E¼tëy‹E¼ƒè‰EÈ‹MÈ‹Uȃê‰UÈ…É~Q‹EÌEȶƒùPuA‹UÌUȶBƒøKu2‹MÌMȶQƒúu#‹EÌEȶHƒùu‹EÈ™EÀ‹MÄʉEð‰Môë럋Uð Uôtëéˆþÿÿƒ}Ìt ‹EÌPèƒÄ‹Mð Môu 3À3Òéj‹UôR‹EðP‹M Q‹URèƒÄ…Àt 3À3ÒéóEÜP‹M Q‹URèƒÄ …Àt 3À3ÒéÒEÜP‹M Q‹URèƒÄ …Àt 3À3Ò鱃}Üt 3À3Òé¢EàP‹M Q‹URèƒÄ …Àt 3À3ÒéEÜP‹M Q‹URèƒÄ …Àt3À3Òëcƒ}Üt3À3ÒëWj‹EäP‹MàQ‹U R‹EPèƒÄ…Àt3À3Òë3MÜQ‹U R‹EPèƒÄ …Àt3À3Òë}ÜPKt3À3Òë‹Eà‹Uä‹å]Ã1N,p)+Tu#–#Æ&ç#5#U‹ìƒì,VWƒ} t1‹u ¹}Ôó¥ÇEøÇEüjEÔP‹MQèƒÄ ëëjj‹URèƒÄ _^‹å]Â4HU‹ìjj‹EPèƒÄ ] U‹ìjj‹EPèƒÄ ] U‹ìQƒ}u¸šÿÿÿëH‹E‰Eü‹Müƒ¹àt ‹URè‹Eü‹H0Q‹Uü‹BP‹Mü‹Qÿ҃ă}üt ‹EüPèƒÄ3À‹å]Â(P+U‹ìQƒ}u¸šÿÿÿë'‹E‰Eü‹MüƒÁ8‹U ‹‰‹A‰B‹A‰B‹I ‰J 3À‹å]ÂU‹ìQƒ}u¸šÿÿÿë‹E‰Eü‹Mü‹Q8‹E ‰‹M ‹Uü‹B@‰A3À‹å]ÂU‹ì‹E$P‹M Q‹UR‹EP‹MQ‹URj‹E P‹MQèƒÄ$] &GU‹ììœVWÇEŒÇE˜ƒ}u ¸šÿÿÿé­‹E‰Eüj‹Mü‹Uü‹AXBH‹I\JLQP‹Uü‹B0P‹MüQèƒÄ…ÀtÇEŒÿÿÿÿƒ}Œu4UøR‹Eü‹H0Q‹UüRèƒÄ …Àt ÇEŒÿÿÿÿë}øPKtÇEŒ™ÿÿÿE P‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿM¤Q‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿU¨R‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿE¬P‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿM°Q‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿUàR‹E°3ÉQPèƒÄ U´R‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿEœP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿ‹Mœ3Ò‰M¸‰U¼EœP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿ‹Mœ3Ò‰MÀ‰UÄEÈP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿMÌQ‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿUÐR‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿEÔP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿMØQ‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿUÜR‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿEœP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿ‹Mœ3Ò‰M‰U”‹E˜EȉE˜ƒ}Œugƒ}ta‹MÈ;Ms‹UUÈÆ‹EȉEˆë‹M‰Mˆƒ}Èv3ƒ}v-‹UˆR‹EP‹Mü‹Q0R‹Eü‹HQ‹Uü‹BÿЃÄ;EˆtÇEŒÿÿÿÿ‹M˜+Mˆ‰M˜ƒ}Œ…ǃ}„½‹UÌ;U s ‹EÌ3ɉE€‰M„ë ‹U 3À‰U€‰E„ƒ}˜t/j‹E˜™RP‹Mü‹Q0R‹EüPèƒÄ…Àu ÇE˜ëÇEŒÿÿÿÿƒ}ÌvRƒ} vL‹M€Q‹UR‹Eü‹H0Q‹Uü‹BP‹Mü‹QÿÒƒÄ3ɉ…dÿÿÿ‰hÿÿÿ‹•dÿÿÿ;U€u ‹…hÿÿÿ;E„tÇEŒÿÿÿÿ‹M€‹UÌ+ÑU˜‰U˜ë ‹E˜ẺE˜ƒ}Œ…°ƒ}Ì„¦Ç…|ÿÿÿ‹M˜+M̉M˜t/j‹E˜™RP‹Uü‹B0P‹MüQèƒÄ…Àu ÇE˜ëÇEŒÿÿÿÿ‹•|ÿÿÿ;ŨS…tÿÿÿP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿxÿÿÿQ‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿƒ½tÿÿÿ…·ƒ}Àÿu(ƒ}Äu"UÀR‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿƒ}¸ÿu(ƒ}¼u"E¸P‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿƒ}ÿu(ƒ}”u"MQ‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿƒ}Ôÿu%•pÿÿÿR‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿë*j‹…xÿÿÿ3ÉQP‹Uü‹B0P‹MüQèƒÄ…ÀtÇEŒÿÿÿÿ‹•xÿÿÿ‹…|ÿÿÿL‰|ÿÿÿéžþÿÿƒ}Œ…´ƒ}$„ª‹UÐ;U(s‹E$EÐÆ‹MЉlÿÿÿë ‹U(‰•lÿÿÿƒ}˜t/j‹E˜™RP‹Eü‹H0Q‹UüRèƒÄ…Àu ÇE˜ëÇEŒÿÿÿÿƒ}Ðv9ƒ}(v3‹…lÿÿÿP‹M$Q‹Uü‹B0P‹Mü‹QR‹Eü‹HÿуÄ;…lÿÿÿtÇEŒÿÿÿÿ‹UÐ+•lÿÿÿU˜‰U˜ë ‹E˜EЉE˜ƒ}Œuƒ} t ¹u ‹} ó¥ƒ}Œuƒ}t‹M‹U‰‹E”‰A‹EŒ_^‹å]ÃQy#­Ïñ5#SJj#Œ#¹#æ*Ln#²#“\™¾ù&'&U&€#¬,U‹ìƒì‹E‹U ±è‰Eø‰Uü‹Eøƒà‹Müƒá‹U‰B ‹Eø%à‹Müƒájj QPèƒèƒÚ‹U‰B‹Eø%þ‹MüƒájhQP較ҋU‰B‹E%ø‹M ƒájhQPè‹U‰B‹E%à‹M ƒájj QPè‹U‰B‹Eƒà‹M ƒájjQPè‹U‰‹å]ÃM@LhL’L±LÎKU‹ìƒì\‹E$P‹M Q‹UR‹EP‹MQ‹URjE¨P‹MQèƒÄ$‰E¤ƒ}¤…¦‹U ‹E¨‰‹M ‹U¬‰Q‹E ‹M°‰H‹U ‹E´‰B ‹M ‹U¸‰Q‹E ‹M¼‰H‹U ‹EЉB ‹M ‹UÔ‰Q$‹E ‹M؉H(‹U ‹E܉B,‹M ‹Uà‰Q0‹E ‹Mä‰H4‹U ƒÂ8‹E艋Mì‰J‹Eð‰B‹Mô‰J ‹Eø‰B‹Mü‰J‹UÀ‹E ‰P‹MÈ‹U ‰J‹E¤‹å] )GU‹ìƒìÇEøƒ}u¸šÿÿÿën‹E‰Eü‹Mü‹Uü‹Bx‰AX‹R|‰Q\‹EüÇ@PÇ@Tjjjjjj‹MüÁØQ‹Uü€R‹EPèƒÄ$‰Eø3Àƒ}ø”À™‹Mü‰A`‰Qd‹Eø‹å]ÂhGU‹ìƒìƒ}u ¸šÿÿÿé ‹E‰Eü‹Mü‰Mô‹Uô‹Eô‹J` Hdu ¸œÿÿÿéç‹Uü‰Uð‹Eðx8ÿÿu ‹Mðƒy<t;‹Uü‹BPƒÀ‹JTƒÑ‹Uü‰Eè‰Mì‰Uä‹Eä‹Mè;H8u‹Uä‹Eì;B#ªöU‹ìjjjj‹EPè]ÂiU‹ì‹E Pjjj‹MQè]ÂiU‹ìj‹EP‹MQ‹U R‹EPè]ÂiU‹ìƒìV‹E‰Eüƒ}u3À3Òë4‹Mü‹‘à‰Uøƒ}øu3À3Òë‹Eø‹Mø‹P@‘À‹pD±Ä‹Â‹Ö^‹å]ÂU‹ìƒìpVWÇEðÇEôƒ}u ¸šÿÿÿé“‹E‰Eü‹Mü‹‘à‰Uøƒ}øu ¸šÿÿÿéq‹Eøƒ8u ¸œÿÿÿé_ƒ}u3ÀéR‹Mø‹U ‰Q‹Eø‹M‰H‹U3À‹Mø‰U¸‰E¼‰M´‹U´‹E¼;‚„r+w‹M´‹U¸;‘€v‹Eøƒ¸Èu‹Mø‹‘€‹Eø‰P‹M3Ò‹Eø‹@3ö‹}øGx‹|þ‰M¬‰U°‰E¤‰}¨‹M°;M¨r(w‹U¬;U¤v‹Eøƒ¸Èt‹Mø‹Qx‹EøP‹Mø‰Q‹Uøƒz†‡‹Eøƒx…'‹Mø‰M ‹U ƒz|w ‹E ƒxx† ÇEì@‹Mì3Ò‹Eø‰Eœ‰M”‰U˜‹Mœ‹Q|;U˜wr ‹Eœ‹Hx;M”s ‹Uø‹Bx‰Eìƒ}ìu3Àé&j‹Mø‹Uø‹A@‚À‹IDŠÄQP‹Uø‹‚´P‹MøÁˆQèƒÄ…ÀtƒÈÿéâ‹UìR‹Eø‹Q‹Uø‹‚´P‹Mø‹‘¤R‹Eø‹ˆŒÿуÄ;EìtƒÈÿé©‹Uì3À‹MøQ@‹IDÈ‹Eø‰P@‰HD‹Mì3Ò‹Eø‹px+ñ‹H|Ê‹Uø‰rx‰J|‹Eø‹Mø‹‰P‹Eø‹Mì‰H‹Uøƒº¸t‹Eøƒ¸È„8‹Møƒyu#‹Uø‰U‹E‹M‹Px Q|u‹Eô÷ØÀ#Eôé‹Eø‹Mø‹P;Qs ‹Eø‹H‰Mäë ‹Uø‹B‰EäÇEèë ‹MèƒÁ‰Mè‹Uè;Uäs‹Eø‹H‹Uø‹B‹Uè‹uèŠ 1ˆ ëÕ‹Uä3À‹MøQh‹IlÈ‹Eø‰Ph‰Hl‹MäQ‹Uø‹BP‹Mø‹QpRè‹Mø‰Ap‹Uä3À‹Mø‹±€+ò‹‘„ЋEø‰°€‰„‹Mø‹Q+Uä‹Eø‰P‹Mø‹Q+Uä‹Eø‰P‹Mø‹QUä‹Eø‰P‹Mø‹QUä‹Eø‰P‹Mø‹QUä‹Eø‰P‹MôMä‰Môéú‹Uøƒº¸ uééÇEÔ‹Eø‹H3Ò‰MÀ‰UÄ‹Eø‹H‰Mà‹UÔR‹EøƒÀPè‰Eðƒ}ð|‹MøƒytÇEðýÿÿÿ‹Uø‹B3ɉEȉMÌ‹UÈ+UÀ‹EÌEĉU؉EÜ‹Mø‹QhUØ‹AlEÜ‹Mø‰Qh‰Al‹UØR‹EàP‹Mø‹QpRè‹Mø‰Ap‹Uø‹‚€+EØ‹Š„MÜ‹Uø‰‚€‰Š„‹EÈ+EÀ‹MÌMÄEô‰Eôƒ}ðu ‹Eô÷ØÀ#Eôëƒ}ðtëélüÿÿƒ}ðu‹Eôë‹Eð_^‹å] Ä"ç€LU‹ìƒìƒ}u¸šÿÿÿë%‹E‰Eü‹Mü‹‘à‰Uøƒ}øu¸šÿÿÿë‹Eø‹@‹å]ÂU‹ìƒìƒ}uƒÈÿƒÊÿë)‹E‰Eü‹Mü‹‘à‰Uøƒ}øuƒÈÿƒÊÿë ‹Mø‹Ah‹Ql‹å]ÂU‹ìƒì ƒ}u¸šÿÿÿëD‹E‰Eü‹Mü‹‘à‰Uøƒ}øu¸šÿÿÿë%‹Eø‰Eô‹Mô‹Uô‹€ ‚„u ¸ëë3À‹å]ÂU‹ìƒìƒ}u ¸šÿÿÿéî‹E‰Eô‹Mô‹‘à‰Uðƒ}ðu ¸šÿÿÿéÌ‹Eð‹HX3Ò‹Eð+H`Pd‰Mø‰Uüƒ} u‹Eøé§‹M3Ò‰Mä‰Uè‹Eè;Eürw‹Mä;Møv‹Uø‰Uìë‹E‰Eìƒ}ìu3Àërj‹Mð‹Uð‹APB`‹ITJdQP‹Uð‹‚´P‹MðÁˆQèƒÄ…ÀtƒÈÿë7‹UìR‹E P‹Mð‹‘´R‹Eð‹ˆ¤Q‹Uð‹‚ŒÿЃÄ;EìtƒÈÿë‹Eì‹å] ½U‹ìƒìÇEôƒ}u ¸šÿÿÿ齋E‰Eü‹Mü‹‘à‰Uøƒ}øu ¸šÿÿÿ雋Eø‰Eð‹Mð‹Uð‹€ ‚„u!‹Møƒ¹Èu‹Uø‹Eø‹Jp;HttÇEô—ÿÿÿ‹Uøƒ:t‹Eø‹QèƒÄ‹UøÇ‹EøƒxHu ‹MøƒÁQè‹UøÇBHƒ}øt ‹EøPèƒÄ‹MüÇà‹Eô‹å]‰+ª‘Ã+U‹ìƒìƒ}u ¸šÿÿÿé§‹E‰Eü‹M‰Mø‹Uü‹Eø;B@v ‹Mü‹Q@‰Uøj‹Eü‹HhƒÁ‹PlƒÒRQ‹Eü‹H0Q‹UüRèƒÄ…ÀtƒÈÿëXƒ}øv1‹E Æ‹MøQ‹U R‹Eü‹H0Q‹Uü‹BP‹Mü‹QÿÒƒÄ;EøtƒÈÿë!ƒ} t‹Eü‹M;H@v ‹Uü‹B@‹M Æ‹Eø‹å] UU‹ìƒìƒ}u 3À3Ò醋E‰Eü‹Mü‰Mø‹Uø‹Eø‹J` Hdu3À3Òëf‹Uü‰Uô‹Eô‹Mô‹P8 QÔÖ .text6líP˜³ .text1ÝÈbðÇ .textÜbÞ¡Nã .textÛPŸ”  __allmul ' 1 .textìA5Á²; .textŽr&U .text'Áõ'¶i .text`Ÿo| _strlen .texte‰{õŽ .text6Ø8`¡ .textŒ½y1]² .textAjÈï3Æ .textiƒE:Ø ð .rdata Ü{ .text!K nÒ ! .text"wl†VL" .text#Zü/²b# .text$k¢Àå€$ .text%TUzÛ˜% .text&Áró¹& Ð Û .text'>¨QAÙå' .text(C³.<4ð( .text)]Ï6•þý) .text* Câ,4* .text+à6$Ò“!+ 8 .text,Ü·÷F, .text-¡Ul^Æ^- .text.(¬dݹp. .text/„½™®†€/ .text0™óÓ“0 £_unz_copyright_unzStringFileNameCompare@12_strcmpcasenosensitive_internal_unzOpen2@8_fill_zlib_filefunc64_32_def_from_filefunc32_unzOpenInternal_call_zseek64_call_zopen64_fill_fopen64_filefunc_unz64local_getShort_unz64local_getByte_unz64local_getLong_unz64local_getLong64_unz64local_SearchCentralDir_call_ztell64_unz64local_SearchCentralDir64_unzOpen2_64@8_unzOpen@4_unzOpen64@4_unzClose@4_unzGetGlobalInfo64@8_unzGetGlobalInfo@8_unzGetCurrentFileInfo64@32_unz64local_GetCurrentFileInfoInternal_unz64local_DosDateToTmuDate__aulldiv__aullshr_unzGetCurrentFileInfo@32_unzGoToFirstFile@4_unzGoToNextFile@4_unzLocateFile@12_unzGetFilePos64@8_unzGetFilePos@8_unzGoToFilePos64@8_unzGoToFilePos@8_unzOpenCurrentFile3@20_inflateInit2_@16??_C@_05DFCKICEH@1?42?45?$AA@_unz64local_CheckCurrentFileCoherencyHeader_unzOpenCurrentFile@4_unzOpenCurrentFilePassword@8_unzOpenCurrentFile2@16_unzGetCurrentFileZStreamPos64@4_unzReadCurrentFile@12_inflate@8_crc32@12_unztell@4_unztell64@4_unzeof@4_unzGetLocalExtrafield@12_unzCloseCurrentFile@4_inflateEnd@4_unzGetGlobalComment@12_unzGetOffset64@4_unzGetOffset@4_unzSetOffset64@12_unzSetOffset@8 /141 1315202897 100666 1069 ` LQgdNÄ.drectve]´ .debug$S´@B.textÇÅŒ P`.rdata¾@0@ /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\uncompr.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒì<‹E‰EÈ‹M‰MÌ‹UÌ;Ut ¸ûÿÿÿé‹E‰EÔ‹M ‹‰UØ‹E ‹MØ;t¸ûÿÿÿë~ÇEèÇEìj8hUÈRè‰Eă}Ät‹EÄëRjEÈPè‰Eă}Ät'MÈQèƒ}Ät ƒ}Äûu ƒ}Ìu¸ýÿÿÿë‹EÄë‹U ‹E܉MÈQè‰EÄ‹EÄ‹å]ÂT] v ˆ · 1.2.5@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.textÇ_û{Z  ! , .rdataÜ{=[_uncompress@16_inflateEnd@4_inflate@8_inflateInit_@12??_C@_05DFCKICEH@1?42?45?$AA@ /179 1315202897 100666 19429 ` LQgdNDV.drectve]ü .debug$S°Y@B.rdata8 @@@.data<A}@0À.text–¯E P`.textw P`.textÌ| P`.text7H P`.textµ‰> P`.textÃŽQ P`.text•É^ P`.text‰ P`.text! P`.text¸'$ß$ P`.text´é$% P`.text Å% P`.textùe'^, P`.textf †, P`.text*ì68 P`.texté>8'@ P`.textºm@ P`.text?'A P`.textåfA P`.text¸KB P`.textC D P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\trees.obj:<RRMicrosoft (R) Optimizing Compiler       ŒLÌ,¬lìœ\Ü<¼|ü‚BÂ"¢bâ’RÒ2²rò ŠJÊ*ªjêšZÚ:ºzú†FÆ&¦fæ–VÖ6¶vöŽNÎ.®nîž^Þ>¾~þAÁ!¡aá‘QÑ1±qñ ‰IÉ)©ié™YÙ9¹yù…EÅ%¥eå•UÕ5µuõ MÍ-­mí]Ý=½}ý  “ “ S S Ó Ó 3 3 ³ ³ s s ó ó  ‹ ‹ K K Ë Ë + + « « k k ë ë   › › [ [ Û Û ; ; » » { { û û   ‡ ‡ G G Ç Ç ' ' § § g g ç ç   — — W W × × 7 7 · · w w ÷ ÷    O O Ï Ï / / ¯ ¯ o o ï ï   Ÿ Ÿ _ _ ß ß ? ? ¿ ¿   ÿ ÿ @ `P0pH(hX8xD$dT4tƒCÃ#£cã         (08@P`p€ Àà  0@`€À€  0@`   , U‹ìè‹E”‹M‰ ‹UÇ‚ ‹Eˆ ‹M‰$ ‹UÇ‚, ‹E| ‹M‰0 ‹UÇ‚8 3À‹Mf‰¸‹UÇ‚¼‹EÇ€´‹MQèƒÄ]Ã"@^U‹ì]ÃU‹ìQÇEüë ‹EüƒÀ‰Eü}ü}3É‹Uü‹Ef‰Œ”ëÜÇEüë ‹MüƒÁ‰Müƒ}ü}3Ò‹Eü‹Mf‰”ˆ ëßÇEüë ‹UüƒÂ‰Uüƒ}ü}3À‹Mü‹Uf‰„Š| ë߸‹Mf‰”‹UÇ‚¬‹EÇ€¨‹Mǰ‹UÇ‚ ‹å]ÃU‹ìƒìÇEü¸+Eü‹M9¼Ž¿‹U‰Uø·Eø‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E·ˆ¸áÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E·ˆ¸Áù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J·Eø‹Mº+‘¼‹ÊÓø‹Mf‰¸‹U‹‚¼‹MüTð‹E‰¼ë:·U‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eü‹M‰¼j‹UR‹E P‹MQèƒÄ‹å]Ã,UU‹ìƒì ÇEü¸+Eü‹M9¼޽ÇEø·Uø‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uø‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MüTð‹E‰¼ë;‹Mº‹‰¼Óâ‹E·ˆ¸ Ê‹Uf‰Š¸‹E‹ˆ¼Mü‹U‰Š¼·‰Eô¹+Mô‹U9мŽÀ·‰Eð·Uð‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uð‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MôTð‹E‰¼ë=·‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eô‹M‰¼‹URèƒÄ‹E‹ˆ´ƒÁ ‹U+мƒù @ÇEì¸+Eì‹M9¼޽ÇEè·Uè‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uè‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MìTð‹E‰¼ë;‹Mº‹‰¼Óâ‹E·ˆ¸ Ê‹Uf‰Š¸‹E‹ˆ¼Mì‹U‰Š¼·‰Eä¹+Mä‹U9мŽÀ·‰Eà·Uà‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uà‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MäTð‹E‰¼ë=·‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eä‹M‰¼‹URèƒÄ‹EÇ€´‹å]à @  ?O} ž ^ OU‹ìƒìÇEø‹Eƒ¸„Ž‹M‹ƒz,u‹EPèƒÄ‹M‹‰B,‹E P‹MQèƒÄ‹UÂ$ R‹EPèƒÄ‹MQèƒÄ‰Eø‹U‹‚¨ƒÀ Áè‰Eô‹M‹‘¬ƒÂ Áê‰Uü‹Eü;Eôw‹Mü‰Môë‹UƒÂ‰Uü‹Eü‰Eô‹MƒÁ;Môw#ƒ} t‹UR‹EP‹M Q‹URèƒÄ麋Eƒ¸ˆt ‹Mü;Mô…7ÇEðº+Uð‹E9¼Ž¿‹MƒÁ‰Mì·Uì‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uì‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MðTð‹E‰¼ë?‹MƒÁ·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eð‹M‰¼hh‹URèƒÄ ékÇEè¸+Eè‹M9¼ŽÂ‹UƒÂ‰Uä·Eä‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E·ˆ¸áÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E·ˆ¸Áù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J·Eä‹Mº+‘¼‹ÊÓø‹Mf‰¸‹U‹‚¼‹MèTð‹E‰¼ë?‹MƒÁ·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eè‹M‰¼‹UøƒÂR‹E‹ˆ( ƒÁQ‹U‹‚ ƒÀP‹MQèƒÄ‹Uˆ R‹E”P‹MQèƒÄ ‹URèƒÄƒ}t ‹EPèƒÄ‹å]Ã-IJ+`+l7Û" ! *F{=šF¦¸RU‹ìƒì$‹E ‹‰Mô‹U ‹B‹‰Mä‹U ‹B‹H ‰MüÇEðÿÿÿÿ‹UÇ‚P‹EÇ€T=ÇEøë ‹MøƒÁ‰Mø‹Uø;Uü}]‹Eø‹Mô·…Òt@‹Eø‰Eð‹M‹‘PƒÂ‹E‰P‹M‹‘P‹E‹Mð‰Œ\ ‹UUøÆ‚Xë 3À‹Mø‹Uôf‰DŠë’‹Eƒ¸Pªƒ}ð}‹MðƒÁ‰Mð‹Uð‰UàëÇEà‹E‹ˆPƒÁ‹U‰ŠP‹E‹ˆP‹U‹Eà‰„Š\ ‹Mà‰M캋Eì‹Môf‰‹UUìÆ‚X‹E‹ˆ¨ƒé‹U‰Š¨ƒ}ät‹Eì‹Mä·T‹E‹ˆ¬+Ê‹U‰Š¬éFÿÿÿ‹E ‹Mð‰H‹U‹‚P™+ÂÑø‰Eøë ‹Eøƒè‰Eøƒ}ø|‹MøQ‹UôR‹EPèƒÄ ëÛ‹Mü‰Mì‹U‹‚` ‰Eø‹M‹‘P‹E‹M‹”‘\ ‰` ‹E‹ˆPƒé‹U‰ŠPj‹EôP‹MQèƒÄ ‹U‹‚` ‰Eè‹M‹‘Tƒê‹E‰T‹M‹‘T‹E‹Mø‰Œ\ ‹U‹‚Tƒè‹M‰T‹U‹‚T‹M‹U艔\ ‹Eø‹Mô·‹Eè‹Mô·ЋMì‹Eôf‰ˆ‹MMø¶‘X‹EE趈X;Ñ|‹UUø¶‚X‰EÜë‹MMè¶‘X‰UÜ‹E܃À‹MMìˆX‹Uè‹Eôf‹Mìf‰L‹Uø‹Eôf‹Mìf‰L‹U‹E쉂` ‹MìƒÁ‰Mìj‹UôR‹EPèƒÄ ‹Mƒ¹Pˆþÿÿ‹U‹‚Tƒè‹M‰T‹U‹‚T‹M‹U‹’` ‰”\ ‹E P‹MQèƒÄ‹UÂ< R‹EðP‹MôQèƒÄ ‹å]ï...p1Š4U‹ìƒìV‹E‹M‹”\ ‰Uü‹EÑà‰Eø‹M‹Uø;‘PC‹E‹Mø;ˆP•‹Uø‹E‹Œ` ‹U ·Š‹Mø‹U‹ŒŠ\ ‹U · Š;Á|`‹Uø‹E‹Œ` ‹U ·Š‹Mø‹U‹ŒŠ\ ‹U · Š;Áu=‹Uø‹E‹Œ` ‹U¶„ X‹Mø‹U‹ŒŠ\ ‹U¶Œ X;Á ‹UøƒÂ‰Uø‹Eü‹M ·‹Eø‹M‹„\ ‹M ·;Ð|K‹Mü‹U ·Š‹Mø‹U‹ŒŠ\ ‹U · Š;Áu+‹UUü¶‚X‹Mø‹U‹ŒŠ\ ‹U¶Œ X;Áë-‹U‹E‹Mø‹u‹ŒŽ\ ‰Œ\ ‹Uø‰U‹EøÑà‰Eøé«þÿÿ‹M‹U‹Eü‰„Š\ ^‹å]ÃU‹ìƒì4‹E ‹‰MØ‹U ‹B‰EÔ‹M ‹Q‹‰EÌ‹M ‹Q‹B‰Eô‹M ‹Q‹B‰Eì‹M ‹Q‹B‰EäÇEðÇEàë ‹MàƒÁ‰Màƒ}à3Ò‹Eà‹Mf‰”A< ëß‹U‹‚T‹M‹”\ 3À‹MØf‰D‘‹U‹‚TƒÀ‰Eüë ‹MüƒÁ‰Mü}ü=ö‹Uü‹E‹Œ\ ‰Mø‹Uø‹EØ·L‹UØ·DŠƒÀ‰Eà‹Mà;Mä~‹Uä‰Uà‹EðƒÀ‰Eð‹Mø‹UØf‹Eàf‰DŠ‹Mø;MÔ~ë‘‹Uà‹Ef‹ŒP< fƒÁ‹Uà‹Ef‰ŒP< ÇEÜ‹Mø;Mì|‹Uø+Uì‹Eô‹ ‰MÜ‹Uø‹EØf‹ f‰Mè·Uè‹EàEܯЋM‘¨‹E‰¨ƒ}Ìt'·Mè‹Uø‹EÌ·TUܯʋEˆ¬‹U‰Š¬éôþÿÿƒ}ðuéN‹Eäƒè‰Eà‹Mà‹U·„J< …Àu ‹Màƒé‰Màëã‹Uà‹Ef‹ŒP< fƒé‹Uà‹Ef‰ŒP< ‹Mà‹U·„J> ƒÀ‹Mà‹Uf‰„J> ‹Eä‹Mf‹”A< fƒê‹Eä‹Mf‰”A< ‹Uðƒê‰Uðƒ}ðhÿÿÿ‹Eä‰Eàë ‹Màƒé‰Màƒ}à„›‹Uà‹E·ŒP< ‰Møƒ}øt‹Uüƒê‰Uü‹Eü‹M‹”\ ‰UЋEÐ;EÔ~ë׋MЋUØ·DŠ;Eàt>‹MЋUØ·DŠ‹Mà+È‹UЋEØ·¯Ê‹Eˆ¨‹U‰Š¨‹EЋMØf‹Uàf‰T‹Eøƒè‰Eøé{ÿÿÿéRÿÿÿ‹å]ÃU‹ìƒì43Àf‰EøÇEôë ‹MôƒÁ‰Môƒ}ô%·Uø‹Eô‹M·DAþÐÑâf‰Uø‹Môf‹Uøf‰TMÔëÌÇEüë ‹EüƒÀ‰Eü‹Mü;M Q‹Uü‹E·L‰MЃ}ÐuëÙ‹UзDUÔ‰EÌ‹MÐf‹TMÔfƒÂ‹EÐf‰TEÔ‹MÐQ‹UÌRèƒÄ‹Mü‹Uf‰Šëž‹å]áLU‹ìQ‹E‹ˆ Q‹U”R‹EPèƒÄ ‹M‹‘( R‹Eˆ P‹MQèƒÄ ‹UÂ0 R‹EPèƒÄÇEüë ‹Müƒé‰Müƒ}ü|‹Uü¶‚‹M·”~ …ÒtëëÔ‹EüƒÀkÀ‹M‹‘¨D‹M‰¨‹Eü‹å]Ã:<:R+w U‹ìƒìÇEìÿÿÿÿ‹E ·H‰MðÇEüÇEäÇEèƒ}ðuÇEäŠÇEèºÿÿ‹E‹M f‰TÇEøë ‹UøƒÂ‰Uø‹Eø;E.‹Mð‰Mô‹Uø‹E ·L‰Mð‹UüƒÂ‰Uü‹Eü;Eä}‹Mô;Mðuë¼é¬‹Uü;Uè}$‹Eô‹M·”| Uü‹Eô‹Mf‰”| 逃}ôtB‹Uô;Uìt ‹Eô‹Mf‹”| fƒÂ‹Eô‹Mf‰”| ‹Uf‹‚¼ fƒÀ‹Mf‰¼ ë8ƒ}ü ‹Uf‹‚À fƒÀ‹Mf‰À ë‹Uf‹‚Ä fƒÀ‹Mf‰Ä ÇEü‹Uô‰Uìƒ}ðuÇEäŠÇEèë&‹Eô;EðuÇEäÇEèëÇEäÇEèé½þÿÿ‹å]ÃU‹ìƒì$ÇEø¸+Eø‹M9¼ŽÅ‹U ê‰Uô·Eô‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E·ˆ¸áÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E·ˆ¸Áù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J·Eô‹Mº+‘¼‹ÊÓø‹Mf‰¸‹U‹‚¼‹MøTð‹E‰¼ëB‹M é·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eø‹M‰¼ÇEðº+Uð‹E9¼Ž¿‹Mƒé‰Mì·Uì‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uì‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MðTð‹E‰¼ë?‹Mƒé·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eð‹M‰¼ÇEèº+Uè‹E9¼Ž¿‹Mƒé‰Mä·Uä‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uä‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MèTð‹E‰¼ë?‹Mƒé·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eè‹M‰¼ÇEüë ‹UüƒÂ‰Uü‹Eü;E<ÇEà¹+Mà‹U9мŽÎ‹Eü¶ˆ‹U·„Š~ ‰EÜ·UÜ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÜ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MàTð‹E‰¼ëK‹Mü¶‘‹E·”~ ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eà‹M‰¼é¯þÿÿ‹U ƒêR‹E”P‹MQèƒÄ ‹UƒêR‹Eˆ P‹MQèƒÄ ‹å]Ã¥ s Ò@î@U‹ìƒì\ÇEìÿÿÿÿ‹E ·H‰MðÇEüÇEäÇEèƒ}ðuÇEäŠÇEèÇEøë ‹UøƒÂ‰Uø‹Eø;E ‹Mð‰Mô‹Uø‹E ·L‰Mð‹UüƒÂ‰Uü‹Eü;Eä}‹Mô;Mðuë¼é‚ ‹Uü;UèG‹Eô‹M·”~ ‰Uà¸+Eà‹M9¼ŽÇ‹Uô‹E·Œ| ‰MÜ·UÜ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÜ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MàTð‹E‰¼ëD‹Mô‹U·„Š| ‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼Mà‹U‰Š¼‹Eüƒè‰Eü…¾þÿÿé/ƒ}ô„‹Mô;Mì„<‹Uô‹E·Œ~ ‰Mغ+UØ‹E9¼ŽÇ‹Mô‹U·„Š| ‰EÔ·UÔ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÔ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MØTð‹E‰¼ëD‹Mô‹U·„Š| ‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼MØ‹U‰Š¼‹Eüƒè‰Eü‹M·‘¾ ‰Uи+EЋM9¼ŽÃ‹U·‚¼ ‰EÌ·UÌ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÌ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÐTð‹E‰¼ë@‹M·‘¼ ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EЋM‰¼ÇEȺ+UÈ‹E9¼Ž¿‹Müƒé‰MÄ·UÄ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÄ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÈTð‹E‰¼ë?‹Müƒé·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EÈ‹M‰¼é•ƒ}ü H‹U·‚ ‰EÀ¹+MÀ‹U9мŽÃ‹E·ˆÀ ‰M¼·U¼‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U¼‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÀTð‹E‰¼ë@‹M·‘À ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EÀ‹M‰¼ÇE¸º+U¸‹E9¼Ž¿‹Müƒé‰M´·U´‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U´‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹M¸Tð‹E‰¼ë?‹Müƒé·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼E¸‹M‰¼éC‹U·‚Æ ‰E°¹+M°‹U9мŽÃ‹E·ˆÄ ‰M¬·U¬‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U¬‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹M°Tð‹E‰¼ë@‹M·‘Ä ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼E°‹M‰¼ÇE¨º+U¨‹E9¼Ž¿‹Müƒé ‰M¤·U¤‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U¤‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹M¨Tð‹E‰¼ë?‹Müƒé ·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼E¨‹M‰¼ÇEü‹Uô‰Uìƒ}ðuÇEäŠÇEèë&‹Eô;EðuÇEäÇEèëÇEäÇEèéçõÿÿ‹å]ÃU‹ìQ‹E‹ˆ ‹U‹‚¤f‹U f‰H‹E‹ˆ˜‹U‹‚ ŠUˆ‹E‹ˆ ƒÁ‹U‰Š ƒ} u%‹E‹Mf‹””fƒÂ‹E‹Mf‰””锋U‹‚°ƒÀ‹M‰°‹U ƒê‰U ‹E¶ˆ‹Uf‹„Š˜fƒÀ‹M¶‘‹Mf‰„‘˜} s‹U ¶‚‰Eüë‹M Áé¶‘‰Uü‹Eü‹Mf‹”ˆ fƒÂ‹Eü‹Mf‰”ˆ ‹U‹‚œƒè‹M3Ò9 ”‹‹å]Ú³ÑãU‹ìƒìHÇEô‹Eƒ¸ „Ž‹M‹‘¤‹Eô· B‰Mì‹U‹‚˜‹Mô¶‰Uð‹EôƒÀ‰Eôƒ}ì…0‹Mð‹U ·DЉEè¹+Mè‹U9мŽÆ‹Eð‹M ·‰Uä·Eä‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E·ˆ¸áÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E·ˆ¸Áù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J·Eä‹Mº+‘¼‹ÊÓø‹Mf‰¸‹U‹‚¼‹MèTð‹E‰¼ë@‹Mð‹U ·Š‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼Mè‹U‰Š¼é‹E𶈉Mø‹Uø‹E ·Œ‰Màº+Uà‹E9¼ŽÇ‹Mø‹U ·„ЉEÜ·UÜ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÜ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MàTð‹E‰¼ëD‹Mø‹U ·„Š‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼Mà‹U‰Š¼‹Eø‹ …‰Müƒ}ü„#‹Uø‹Eð+•‰Eð‹Mü‰Mغ+UØ‹E9¼޼‹Mð‰MÔ·UÔ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÔ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MØTð‹E‰¼ë:·Uð‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EØ‹M‰¼‹Uìƒê‰Uì}ìs‹E춈‰M¸ë‹UìÁê¶‚‰E¸‹M¸‰Mø‹Uø‹E·L‰Mк+UЋE9¼ŽÃ‹Mø‹U·ЉEÌ·UÌ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÌ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÐTð‹E‰¼ë@‹Mø‹U·Š‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼MЋU‰Š¼‹Eø‹ …‰Müƒ}ü„#‹Uø‹Eì+•‰Eì‹Mü‰MȺ+UÈ‹E9¼޼‹Mì‰MÄ·UÄ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÄ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÈTð‹E‰¼ë:·Uì‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EÈ‹M‰¼‹U‹Eô;‚ ‚rùÿÿ‹M ·‘‰UÀ¸+EÀ‹M9¼ŽÃ‹U ·‚‰E¼·U¼‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U¼‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÀTð‹E‰¼ë@‹M ·‘‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EÀ‹M‰¼‹U ·‚‹M‰´‹å]ÃŒÌæ*e U‹ìƒìÇEøÀÿóÇEüë‹EüƒÀ‰Eü‹MøÑé‰Møƒ}ü ‹Uøƒât‹Eü‹M·””…Òt3ÀëkëÉ‹E·ˆ¸…Éu‹U·‚¼…Àu‹M·‘È…Òt¸ë8ÇEü ë ‹EüƒÀ‰Eü}ü}‹Mü‹U·„Š”…Àt¸ëëÓ3À‹å]ÃU‹ìQÇEü‹Eƒà Eü‰Eü‹MÑé‰M‹UüÑâ‰Uü‹E ƒè‰E ƒ} Õ‹EüÑè‹å]ÃU‹ì‹Eƒ¸¼ut‹M·‘¸âÿ‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P‹M·‘¸Áú‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P3É‹Uf‰Š¸‹EÇ€¼ë`‹Mƒ¹¼|T‹U‹B‹M‹Q‹MЉ¸ˆ ‹U‹BƒÀ‹M‰A‹Uf‹‚¸fÁè‹Mf‰¸‹U‹‚¼ƒè‹M‰¼]ÃU‹ì‹Eƒ¸¼~[‹M·‘¸âÿ‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P‹M·‘¸Áú‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰Pë3‹Mƒ¹¼~'‹U‹B‹M‹Q‹MЉ¸ˆ ‹U‹BƒÀ‹M‰A3Ò‹Ef‰¸‹MǼ]ÃU‹ì‹EPèƒÄ‹MÇ´ƒ}„¢·Uâÿ‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P·MÁù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E÷зÈáÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E÷зÈÁù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E‹Mƒé‰M…Àt.‹U‹B‹M‹Q‹M Š ˆ ‹U‹BƒÀ‹M‰A‹U ƒÂ‰U ëÂ]ÃR@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.rdata8 Û,éfˆ,t6PDÐRH^HlH yÀ .data<a‘ß„“¢(.text–=è ² .textVè+g¼ .textÌd^ÐÌ .text7$#3ÓØ .text µëãê .text à –q°ÿõ .text •¬ .text ‰šÍ¡ˆ .text ñmçá .text¸±;ÈÃ* .text´¯ãSV5 .text É°D .textù¤îŽO .textf ”(EM_ .text*p•©j .texté¦Böu .textºµ… .text?K’ºK— .textåÒÜž£ .text¸ ².”­ .text~6¬¸ Ä_extra_lbits_extra_dbits_extra_blbits_bl_order_static_ltree_static_dtree__dist_code__length_code_base_length_base_dist_static_l_desc_static_d_desc_static_bl_desc__tr_init_tr_static_init_init_block__tr_stored_block__tr_align__tr_flush_block_build_tree_pqdownheap_gen_bitlen_gen_codes_build_bl_tree_scan_tree_send_all_trees_send_tree__tr_tally_compress_block_detect_data_type_bi_reverse_bi_flush_bi_windup_copy_block /215 1315202897 100666 4378 ` LQgdNp H.drectve]\ .debug$S°¹@B.textDi P`.text­ P`.textY, P`.text… P`.textTf P`.textn¬ P`.rdataB@0@.rdataE@0@.rdataI@0@.text$Lp P`.text$zž P`.text¨Â P`.texttÌ@ P`.textJd P`.textnˆ P`.textT’æ P`.textn, š  P`.text" ä  P`.textxî f  P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\ioapi.obj:<RRMicrosoft (R) Optimizing CompilerU‹ì‹Eƒ8t‹MQ‹U R‹E‹HQ‹U‹ÿÐƒÄ ëë‹MQ‹U R‹E‹HQ‹U‹B ÿÐƒÄ ]ÃU‹ìƒì ‹Eƒxt&‹MQ‹UR‹EP‹M Q‹U‹BP‹M‹QÿÒƒÄëHëF‹E‰Eü‹Mü3Ò‰Mô‰Uø‹Eô;Eu‹Mø;MtƒÈÿë ë‹UR‹EüP‹M Q‹U‹BP‹M‹Q(ÿ҃ċå]ÃU‹ìQ‹Eƒxt‹M Q‹U‹BP‹M‹Q ÿÒƒÄë0ë.‹E P‹M‹QR‹E‹H$ÿуĉEüƒ}üÿu ƒÈÿƒÊÿëë‹Eü3Ò‹å]ÃU‹ì‹EÇ‹M‹U ‹‰A ‹M‹U ‹B‰A‹M‹U ‹B‰A‹M‹U ‹B‰A‹MÇA ‹UÇB‹E‹M ‹Q‰P‹E‹M ‹Q‰P‹E‹M ‹Q‰P‹E‹M ‹Q‰P(‹E‹M ‹Q ‰P$]ÃU‹ì‹EÇ‹MÇA‹UÇB‹EÇ@ ‹MÇA‹UÇB‹EÇ@‹MÇA]Ã$(&,00:4D8U‹ìƒìÇEüÇEø‹Eƒàƒøu ÇEøë ‹Mƒát ÇEøë‹UƒâtÇEøƒ} tƒ}øt‹EøP‹M QèƒÄ‰Eü‹Eü‹å]Ã"!3D]wbr+brbU‹ìQ‹E P‹MQj‹URèƒÄ‰Eü‹Eü‹å]Ã%U‹ìQ‹E P‹MQj‹URèƒÄ‰Eü‹Eü‹å]Ã)U‹ìQ‹E PèƒÄ‰Eü‹Eü‹å]à -U‹ìƒì ÇEü‹E‰Eôƒ}ôt ƒ}ôtƒ}ôt ëÇEüëÇEüëÇEüëƒÈÿë)ÇEø‹MüQ‹UR‹E PèƒÄ …ÀtÇEøÿÿÿÿ‹Eø‹å]Ã[1U‹ìQ‹E PèƒÄ‰Eü‹Eü‹å]à 5U‹ìQ‹E PèƒÄ‰Eü‹Eü‹å]à 9U‹ì‹EÇ‹MÇA‹UÇB‹EÇ@ ‹MÇA‹UÇB‹EÇ@‹MÇA]Ã?$(&B0F:4D8U‹ìƒìÇEüÇEø‹Eƒàƒøu ÇEøë ‹Mƒát ÇEøë‹UƒâtÇEøƒ} tƒ}øt‹EøP‹M QèƒÄ‰Eü‹Eü‹å]Ã"!3D]U‹ìƒì‹E PèƒÄ‰Eø‰Uü‹Eø‹Uü‹å]à CU‹ìƒì ÇEü‹E‰Eôƒ}ôt ƒ}ôtƒ}ôt ëÇEüëÇEüëÇEüëƒÈÿë-ÇEø‹MüQ‹UR‹EP‹M QèƒÄ…ÀtÇEøÿÿÿÿ‹Eø‹å]Ã_G@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.textDƽ,c .textœBã .textY1§ä¿  .textSVÂ. .textT|tÉæ[ .textn»“VOp _fopen .rdata ðwu .rdata 3È墙 .rdata µ¾¶ .text $Rz›ÌË _fread .text $Rz›ÌÜ _fwrite .text½ãdÛî _ftell .texttý~Œuÿ _fseek .text½ãdÛ _fclose .text½ãdÛ" _ferror .textT|tÉæ4 .textn»“VOK .text"dsºn^ q .textxcûÔ˜|  š_call_zopen64_call_zseek64_call_ztell64_fill_zlib_filefunc64_32_def_from_filefunc32_fill_fopen_filefunc_fopen_file_func??_C@_02GMLFBBN@wb?$AA@??_C@_03HMFOOINA@r?$CLb?$AA@??_C@_02JDPG@rb?$AA@_fread_file_func_fwrite_file_func_ftell_file_func_fseek_file_func_fclose_file_func_ferror_file_func_fill_fopen64_filefunc_fopen64_file_func_ftell64_file_func__ftelli64_fseek64_file_func__fseeki64/251 1315202897 100666 2885 ` LQgdN‰ .drectve]´ .debug$S´@B.rdata0Å@@@.textlõa  P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¦hc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\inftrees.obj:<RRMicrosoft (R) Optimizing Compiler inflate 1.2.5 Copyright 1995-2010 Mark Adler  #+3;CScsƒ£ÃãIà !1AaÁ  0@`@@U‹ììÇE°ë ‹E°ƒÀ‰E°ƒ}°w 3É‹U°f‰LUàëåÇE€ë ‹E€ƒÀ‰E€‹M€;Ms$‹U€‹E · Pf‹TMàfƒÂ‹E€‹M ·Af‰TEàëË‹M‹‰U¼Ç…tÿÿÿë‹…tÿÿÿƒè‰…tÿÿÿƒ½tÿÿÿr‹tÿÿÿ·TMà…ÒtëëÕ‹E¼;…tÿÿÿv ‹tÿÿÿ‰M¼ƒ½tÿÿÿuLÆEÜ@ÆEÝ3Òf‰UÞ‹E‹‹U܉‹E‹ƒÁ‹U‰ ‹E‹‹U܉‹E‹ƒÁ‹U‰ ‹EÇ3ÀéUÇEÌë ‹M̃Á‰MÌ‹UÌ;•tÿÿÿs‹EÌ·LEà…ÉtëëÜ‹U¼;UÌs‹ẺE¼ÇE´ÇE°ë ‹M°ƒÁ‰M°ƒ}°w$‹U´Ñâ‰U´‹E°·LEà‹U´+щU´yƒÈÿéÙë̓}´~ƒ}t ƒ½tÿÿÿtƒÈÿéº3Àf‰EŠÇE°ë ‹M°ƒÁ‰M°ƒ}°s‹U°·DUˆ‹M°·TMà‹M°f‰DMŠëÕÇE€ë ‹U€ƒÂ‰U€‹E€;EsL‹M€‹U ·J…Àt<‹M€‹U ·J·LEˆ‹Uf‹E€f‰J‹M€‹U ·Jf‹LEˆfƒÁ‹U€‹E ·Pf‰LUˆë£‹E‰…pÿÿÿƒ½pÿÿÿt ƒ½pÿÿÿtëC‹M‰MØ‹U؉UÔÇE¬ëCÇEÔ‹EÔ-‰EÔÇEØ‹MØé‰MØÇE¬ëÇEÔÇEØÇE¬ÿÿÿÿÇEÐÇE€‹ỦU°‹E‹‰M¸‹U¼‰UÀÇEÄÇ…|ÿÿÿÿÿÿÿ¸‹M¼Óà‰…xÿÿÿ‹xÿÿÿƒé‰Mȃ}u ½xÿÿÿTsƒ}u½xÿÿÿPr ¸é(‹U°+UĈUÝ‹E€‹M·A;U¬}ÆEÜ‹E€‹Mf‹Af‰UÞëC‹E€‹M·A;U¬~*‹E€‹M·A‹EØŠ PˆMÜ‹U€‹E· P‹UÔf‹Jf‰EÞë ÆEÜ`3Éf‰MÞ‹M°+MĺÓâ‰U¨¸‹MÀÓà‰E„‹M„‰MÌ‹U„+U¨‰U„‹EЋMÄÓèE„‹M¸‹U܉ƒ}„uÝ‹M°ƒé¸Óà‰E¨‹MÐ#M¨t ‹U¨Ñê‰U¨ëîƒ}¨t‹E¨ƒè#EЉEЋMÐM¨‰MÐëÇEЋU€ƒÂ‰U€‹E°f‹LEàfƒé‹U°f‰LUà‹E°·LEà…Éu$‹U°;•tÿÿÿué/‹E€‹M·A‹E · P‰M°‹U°;U¼† ‹EÐ#EÈ;…|ÿÿÿ„øƒ}Äu‹M¼‰MÄ‹UÌ‹E¸ ‰M¸‹U°+UĉUÀ¸‹MÀÓà‰E´‹MÀMÄ;tÿÿÿs.‹UÀUÄ·DUà‹M´+ȉM´ƒ}´ë‹UÀƒÂ‰UÀ‹E´Ñà‰E´ëĺ‹MÀÓâ•xÿÿÿ‰•xÿÿÿƒ}u ½xÿÿÿTsƒ}u½xÿÿÿPr ¸é‹EÐ#Eȉ…|ÿÿÿ‹M‹‹…|ÿÿÿŠMÀˆ ‚‹U‹‹|ÿÿÿŠU¼ˆTˆ‹E‹M¸+Áù‹U‹‹•|ÿÿÿf‰LéýÿÿÆEÜ@‹E°+EĈEÝ3Éf‰MÞƒ}Є‹ƒ}Ät)‹UÐ#UÈ;•|ÿÿÿtÇEÄ‹E¼‰E°‹M‹‰U¸ŠE°ˆEÝ‹UЋMÄÓê‹E¸‹M܉ ‹M°ƒéºÓâ‰U¨‹EÐ#E¨t ‹M¨Ñé‰M¨ëîƒ}¨t‹U¨ƒê#UЉUЋEÐE¨‰EÐëÇEÐékÿÿÿ‹M‹‹…xÿÿÿ ‚‹U‰ ‹E‹M¼‰3À‹å]à • ± ¸ @comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.rdata0/ÕeÕ05pR°pð.textl#˜I œ_inflate_copyright?lbase@?1??inflate_table@@9@9?lext@?1??inflate_table@@9@9?dbase@?1??inflate_table@@9@9?dext@?1??inflate_table@@9@9_inflate_table /290 1315202897 100666 21267 ` L'QgdN P`.textˆÂ> P`.textOJ? P`.text™?[A P`.textMyA P`.textvÆA P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\inflate.obj:<RRMicrosoft (R) Optimizing Compiler`Psp0 À `  €@ àX ;x8 Ðh( °ˆH ðTã+t4 È d$ ¨„D è\ ˜S|< Øl, ¸ ŒL øR£#r2 Ä b" ¤‚B äZ ”Cz: Ôj* ´ ŠJ ôV@3v6 Ìf& ¬†F ì ^ œc~> Ün. ¼ŽN ü`Qƒq1  a! ¢A âY ’;y9 Òi) ² ‰I òU+u5 Ê e% ª…E ê] šS}= Úm- º M úSÃ#s3 Æ c# ¦ƒC æ[ –C{; Ök+ ¶ ‹K öW@3w7 Îg' ®‡G î _ žc? Þo/ ¾O þ`Psp0 Á ` ¡€@ áX ‘;x8 Ñh( ±ˆH ñTã+t4 É d$ ©„D é\ ™S|< Ùl, ¹ ŒL ùR£#r2 Å b" ¥‚B åZ •Cz: Õj* µ ŠJ õV@3v6 Íf& ­†F í ^ c~> Ýn. ½ŽN ý`Qƒq1 à a! £A ãY “;y9 Ói) ³ ‰I óU+u5 Ë e% «…E ë] ›S}= Ûm- » M ûSÃ#s3 Ç c# §ƒC ç[ —C{; ×k+ · ‹K ÷W@3w7 Ïg' ¯‡G ï _ Ÿc? ßo/ ¿O ÿA@!  @a`10  Á@     U‹ìQƒ}t ‹Eƒxu ¸þÿÿÿéà‹M‹Q‰Uü‹EüÇ@‹MÇA‹UÇB‹EÇ@‹MÇA0‹UüÇ‹EüÇ@‹MüÇA ‹UüÇB€‹EüÇ@ ‹MüÇA(‹UüÇB,‹EüÇ@0‹MüÇA8‹UüÇB<‹Eü0‹Mü‰Al‹Uü‹Eü‹Hl‰JP‹Uü‹Eü‹HP‰JL‹UüÇ‚À‹EüÇ€Äÿÿÿÿ3À‹å]ÂU‹ìƒìƒ}t ‹Eƒxu ¸þÿÿÿ馋M‹Q‰Uøƒ} }ÇEü‹E ÷؉E ë‹M ÁùƒÁ‰Müƒ} 0} ‹U ƒâ‰U ƒ} tƒ} |ƒ} ~¸þÿÿÿëR‹Eøƒx4t.‹Mø‹Q$;U t#‹Eø‹H4Q‹U‹B(P‹M‹Q$ÿ҃ċEøÇ@4‹Mø‹Uü‰Q‹Eø‹M ‰H$‹URè‹å]ÂÁ U‹ìƒìƒ}t‹E¾¾;Êuƒ}8t ¸úÿÿÿ鿃}u ¸þÿÿÿ鯋EÇ@‹Mƒy u‹UÇB ‹EÇ@(‹Mƒy$u ‹UÇB$hÌj‹E‹H(Q‹U‹B ÿÐƒÄ ‰Eøƒ}øu¸üÿÿÿëL‹M‹Uø‰Q‹EøÇ@4‹M Q‹URè‰Eüƒ}üt ‹EøP‹M‹Q(R‹E‹H$ÿуÄ‹UÇB‹Eü‹å]ÂVs¼1.2.5U‹ì‹EP‹M Qj‹URè] U‹ìQƒ}t ‹Eƒxu¸þÿÿÿë}‹M‹Q‰Uüƒ} }‹EüÇ@8‹MüÇA<3ÀëVƒ} ‹Uü‹B<E ƒø v¸þÿÿÿë;º‹M Óâƒê#U‰U‹Eü‹U‹H<Óâ‹EüP8‹Mü‰Q8‹Uü‹B<E ‹Mü‰A<3À‹å] U‹ìƒì\ƒ}t#‹Eƒxt‹Mƒy t‹Uƒ:u‹Eƒxt ¸þÿÿÿ鎋M‹Q‰UÀ‹EÀƒ8 u ‹MÀÇ ‹U‹B ‰Eü‹M‹Q‰Uà‹E‹‰MÜ‹U‹B‰Eð‹MÀ‹Q8‰UÔ‹EÀ‹H<‰Mä3ÒuÇ‹Eð‰Eì‹Mà‰MÄÇEØ‹UÀ‹‰E¼ƒ}¼‡k‹M¼ÿ$‹UÀƒzu‹EÀÇ éTƒ}äs=ƒ}ðuéH‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÀ‹Bƒàte}Ô‹u\jjjè‹MÀ‰AŠUÔˆUЋEÔÁèˆEÑjMÐQ‹UÀ‹BPè‹MÀ‰A3ÒuÕÇEÔÇEä3Àuî‹MÀÇé‹UÀÇB‹EÀƒx t ‹MÀ‹Q ÇB0ÿÿÿÿ‹EÀ‹Hƒát ‹EÔ%ÿÁà‹UÔÁêÂ3Ò¹÷ñ…Òt‹UÇB‹EÀÇé:‹MÔƒáƒùt‹UÇB‹EÀÇé‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuê‹MÔƒáƒÁ‰Mè‹UÀƒz$u ‹EÀ‹Mè‰H$ë#‹UÀ‹Eè;B$v‹MÇA‹UÀÇ龸‹MèÓà‹MÀ‰Ajjjè‹UÀ‰B‹E‹MÀ‹Q‰P0‹EÔ%÷ØÀƒàþƒÀ ‹MÀ‰ÇEÔÇEä3Òuîécƒ}äs=ƒ}ðuéW‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀ‹UÔ‰Q‹EÀ‹Háÿƒùt‹UÇB‹EÀÇéê‹MÀ‹Qâàt‹EÇ@‹MÀÇéÄ‹UÀƒz t‹EÔÁèƒà‹MÀ‹Q ‰‹EÀ‹Hát+ŠUÔˆUЋEÔÁèˆEÑjMÐQ‹UÀ‹BPè‹MÀ‰A3ÒuÕÇEÔÇEä3Àuî‹MÀǃ}ä s=ƒ}ðuéJ‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀƒy t ‹UÀ‹B ‹MÔ‰H‹UÀ‹B%t=ŠMÔˆMЋUÔÁêˆUÑ‹EÔÁèˆEÒ‹MÔÁéˆMÓjUÐR‹EÀ‹HQè‹UÀ‰B3ÀuÃÇEÔÇEä3Éuî‹UÀǃ}äs=ƒ}ðu鉋Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀƒy t!‹UÔâÿ‹EÀ‹H ‰Q‹UÔÁê‹EÀ‹H ‰Q ‹UÀ‹B%t+ŠMÔˆMЋUÔÁêˆUÑjEÐP‹MÀ‹QRè‹MÀ‰A3ÒuÕÇEÔÇEä3Àuî‹MÀÇ‹UÀ‹B%„±ƒ}äs=ƒ}ðué´‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÀ‹EÔ‰B@‹MÀƒy t ‹UÀ‹B ‹MÔ‰H‹UÀ‹B%t+ŠMÔˆMЋUÔÁêˆUÑjEÐP‹MÀ‹QRè‹MÀ‰A3ÒuÕÇEÔÇEä3Àuîë‹MÀƒy t ‹UÀ‹B Ç@‹MÀÇ‹UÀ‹B%„ä‹MÀ‹Q@‰UÌ‹EÌ;Eðv‹Mð‰M̃}Ì„µ‹UÀƒz tc‹EÀ‹H ƒytW‹UÀ‹B ‹MÀ‹P+Q@‰Uè‹EèEÌ‹MÀ‹Q ;Bv‹EÀ‹H ‹Q+Uè‰U¸ë‹ẺE¸‹M¸Q‹UÜR‹EÀ‹H ‹QUèRèƒÄ ‹EÀ‹Hát‹UÌR‹EÜP‹MÀ‹QRè‹MÀ‰A‹Uð+ỦUð‹EÜẺEÜ‹MÀ‹Q@+UÌ‹EÀ‰P@‹MÀƒy@té‹UÀÇB@‹EÀÇ‹MÀ‹Qâ„ƃ}ðuéÐÇEÌ‹EÜE̶‰Mè‹Ũ‰UÌ‹EÀƒx tA‹MÀ‹Q ƒzt5‹EÀ‹H ‹UÀ‹B@;A s$‹MÀ‹Q ‹B‹MÀ‹Q@ŠMèˆ ‹UÀ‹B@ƒÀ‹MÀ‰A@ƒ}èt‹UÌ;Uðr“‹EÀ‹Hát‹UÌR‹EÜP‹MÀ‹QRè‹MÀ‰A‹Uð+ỦUð‹EÜẺE܃}ètéë‹MÀƒy t ‹UÀ‹B Ç@‹MÀÇA@‹UÀÇ‹EÀ‹Há„Ń}ðuéÏÇEÌ‹UÜU̶‰Eè‹M̃Á‰MÌ‹UÀƒz tA‹EÀ‹H ƒy$t5‹UÀ‹B ‹MÀ‹Q@;P(s$‹EÀ‹H ‹Q$‹EÀ‹H@ŠEèˆ ‹MÀ‹Q@ƒÂ‹EÀ‰P@ƒ}èt‹MÌ;Mðr“‹UÀ‹B%t‹MÌQ‹UÜR‹EÀ‹HQè‹UÀ‰B‹Eð+ẺEð‹MÜM̉M܃}ètéë‹UÀƒz t ‹EÀ‹H ÇA$‹UÀÇ‹EÀ‹Há„‚ƒ}äs=ƒ}ðuéÓ‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀ‹Qâÿÿ9UÔt‹EÇ@‹MÀÇéoÇEÔÇEä3Òuî‹EÀƒx t"‹MÀ‹QÁú ƒâ‹EÀ‹H ‰Q,‹UÀ‹B Ç@0jjjè‹MÀ‰A‹U‹EÀ‹H‰J0‹UÀÇ éƒ}ä s=ƒ}ðuéû‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÔÁéáÿ‹UÔÁêâÿÊ‹EÔ%ÿÁàÈ‹UÔâÿÁâÊ‹EÀ‰H‹M‹UÀ‹B‰A0ÇEÔÇEä3Éuî‹UÀÇ ‹EÀƒx uC‹M‹Uü‰Q ‹E‹Mà‰H‹U‹E܉‹M‹Uð‰Q‹EÀ‹MÔ‰H8‹UÀ‹Eä‰B<3ÉuǸé³jjjè‹UÀ‰B‹E‹MÀ‹Q‰P0‹EÀÇ ƒ} tƒ} uéà‹MÀƒyt.‹Mäƒá‹UÔÓê‰UÔ‹Eäƒà‹Mä+ȉMä3Òuà‹EÀÇ餃}äs=ƒ}ðu阋Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÔƒâ‹EÀ‰P‹MÔÑé‰MÔ‹Uäƒê‰Uä3Àuë‹MÔƒá‰M´ƒ}´wk‹U´ÿ$•‹EÀÇ ëV‹MÀQèƒÄ‹UÀǃ} u‹EÔÁè‰EÔ‹Mäƒé‰Mä3Òuêéçë‹EÀÇë‹MÇA‹UÀÇ‹EÔÁè‰EÔ‹Mäƒé‰Mä3Òuêé§‹Mäƒá‹EÔÓè‰EÔ‹Mäƒá‹Uä+щUä3Àuàƒ}ä s=ƒ}ðué{‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÔâÿÿ‹EÔÁè5ÿÿ;Ðt‹MÇA‹UÀÇé‹EÔ%ÿÿ‹MÀ‰A@ÇEÔÇEä3Òuî‹EÀǃ} uéá‹MÀÇ‹UÀ‹B@‰Ẽ}Ìts‹MÌ;Mðv‹Uð‰UÌ‹EÌ;Eàv‹Mà‰M̃}Ìu颋UÌR‹EÜP‹MüQèƒÄ ‹Uð+ỦUð‹EÜẺEÜ‹Mà+M̉Mà‹UüỦUü‹EÀ‹H@+MÌ‹UÀ‰J@éQ‹EÀÇ éCƒ}äs=ƒ}ðué7‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÔƒâ‹EÀ‰P`‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuê‹MÔƒáƒÁ‹UÀ‰Jd‹EÔÁè‰EÔ‹Mäƒé‰Mä3Òuê‹EÔƒàƒÀ‹MÀ‰A\‹UÔÁê‰UÔ‹Eäƒè‰Eä3Éuê‹UÀz`w ‹EÀƒxdv‹MÇA‹UÀÇé]‹EÀÇ@h‹MÀÇ‹UÀ‹EÀ‹Jh;H\ƒƒ}äs=ƒ}ðué,‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÔƒá‹UÀ‹Bh·E‹EÀf‰LPp‹MÀ‹QhƒÂ‹EÀ‰Ph‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuêéaÿÿÿ‹MÀƒyhs)‹UÀ‹Bh· E3Ò‹EÀf‰THp‹MÀ‹QhƒÂ‹EÀ‰Phë΋MÀÁ0‹UÀ‰Jl‹EÀ‹MÀ‹Ql‰PL‹EÀÇ@T‹MÀÁðQ‹UÀƒÂTR‹EÀƒÀlPj‹MÀƒÁpQjèƒÄ‰E؃}Øt‹UÇB‹EÀÇé‹MÀÇAh‹UÀÇ‹EÀ‹H`‹UÀJd‹EÀ9Hhƒk‹MÀº‹ITÓâƒê#UÔ‹EÀ‹HL‹‘‰Uô¶Eõ;Eäwë=ƒ}ðué­ ‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë™·MöƒùŒ¶Uõ9Uäs=ƒ}ðuéZ ‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅëº3Àu¶¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3Òuä‹EÀ‹Hh‹UÀf‹Eöf‰DJp‹MÀ‹QhƒÂ‹EÀ‰Phéf·Möƒù…¶UõƒÂ9Uäs=ƒ}ðué¾ ‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë·3Àu³¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3Òuä‹EÀƒxhu‹MÇA‹UÀÇéÔ‹EÀ‹Hh‹UÀ·DJn‰Eè‹MÔƒáƒÁ‰MÌ‹UÔÁê‰UÔ‹Eäƒè‰Eä3Éuêé6·Uöƒú…—¶EõƒÀ9Eäs=ƒ}ðuéï ‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë·3Éu³¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3ÒuäÇEè‹EÔƒàƒÀ‰EÌ‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuêé’¶MõƒÁ9Mäs=ƒ}ðuéX ‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë·3Àu³¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3ÒuäÇEè‹EÔƒàƒÀ ‰EÌ‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuê‹MÀ‹QhUÌ‹EÀ‹H`‹EÀHd;Ñv‹MÇA‹UÀÇë8‹EÌ‹M̃é‰MÌ…Àt#‹UÀ‹Bh‹MÀf‹Uèf‰TAp‹EÀ‹HhƒÁ‹UÀ‰JhëÍé}üÿÿ‹EÀƒ8uée ‹MÀ·‘p…Òu‹EÇ@‹MÀÇé? ‹UÀÂ0‹EÀ‰Pl‹MÀ‹UÀ‹Bl‰AL‹MÀÇAT ‹UÀÂðR‹EÀƒÀTP‹MÀƒÁlQ‹UÀ‹B`P‹MÀƒÁpQjèƒÄ‰E؃}Øt‹UÇB‹EÀÇéÉ ‹MÀ‹UÀ‹Bl‰AP‹MÀÇAX‹UÀÂðR‹EÀƒÀXP‹MÀƒÁlQ‹UÀ‹BdP‹MÀ‹Q`‹EÀLPpQjèƒÄ‰E؃}Øt‹UÇB‹EÀÇé[ ‹MÀǃ} uéL ‹UÀǃ}ð‚©}à‚œ‹E‹Mü‰H ‹U‹Eà‰B‹M‹U܉‹E‹Mð‰H‹UÀ‹EÔ‰B8‹MÀ‹Uä‰Q<3ÀuÇ‹MÄQ‹URèƒÄ‹E‹H ‰Mü‹U‹B‰Eà‹M‹‰UÜ‹E‹H‰Mð‹UÀ‹B8‰EÔ‹MÀ‹Q<‰Uä3ÀuÇ‹MÀƒ9 u ‹UÀÇ‚Äÿÿÿÿé‹‹EÀǀċMÀº‹ITÓâƒê#UÔ‹EÀ‹HL‹‘‰Uô¶Eõ;Eäwë=ƒ}ðuéN‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë™¶Mô…ɄŶUôâð…µ‹Eô‰Eø·Uú¶Mù¶EøȸÓàƒè#EÔ¶MùÓèЋMÀ‹AL‹ ‰Mô¶Uù¶EõÐ;Uäwë=ƒ}ðu鯋Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅ냶Mù‹UÔÓê‰UÔ¶Eù‹Mä+ȉMä3Òuä¶Eù‹MÀÄ‹UÀ‰‚ĶMõ‹EÔÓè‰EÔ¶Mõ‹Uä+щUä3Àuä¶Mõ‹UÀŠÄ‹EÀ‰ˆÄ·Mö‹UÀ‰J@¶Eô…Àu‹MÀÇéô¶Uôƒâ t‹EÀÇ€Äÿÿÿÿ‹MÀÇ éжUôƒâ@t‹EÇ@‹MÀÇ鯶Uôƒâ‹EÀ‰PH‹MÀÇ‹UÀƒzH„¡‹EÀ‹Mä;HHs=ƒ}ðué{‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë¸3Àu´‹MÀº‹IHÓâƒê#UÔ‹EÀP@‹MÀ‰Q@‹UÀ‹EÔ‹JHÓè‰EÔ‹MÀ‹Uä+QH‰Uä3Àuâ‹MÀ‹‘Ä‹EÀPH‹MÀ‰‘Ä‹UÀ‹EÀ‹H@‰ŠÈ‹UÀÇ‹EÀº‹HXÓâƒê#UÔ‹EÀ‹HP‹‘‰Uô¶Eõ;Eäwë=ƒ}ðu飋Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë™¶Môáð…µ‹Uô‰Uø·Eú¶Mù¶UøʺÓâƒê#UÔ¶MùÓê‹MÀ‹QP‹‚‰Eô¶Mù¶UõÊ;Mäwë=ƒ}ðué‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅ냶Mù‹EÔÓè‰EÔ¶Mù‹Uä+щUä3Àuä¶Mù‹UÀŠÄ‹EÀ‰ˆÄ¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3Òuä¶Eõ‹MÀÄ‹UÀ‰‚ĶEôƒà@t‹MÇA‹UÀÇéT·Eö‹MÀ‰AD¶Uôƒâ‹EÀ‰PH‹MÀÇ‹UÀƒzH„¡‹EÀ‹Mä;HHs=ƒ}ðué‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë¸3Àu´‹MÀº‹IHÓâƒê#UÔ‹EÀPD‹MÀ‰QD‹UÀ‹EÔ‹JHÓè‰EÔ‹MÀ‹Uä+QH‰Uä3Àuâ‹MÀ‹‘Ä‹EÀPH‹MÀ‰‘Ä‹UÀǃ}àuéw‹EÄ+Eà‰EÌ‹MÀ‹QD;UÌ†Ž‹EÀ‹HD+M̉MÌ‹UÀ‹EÌ;B,v$‹MÀƒ¹Àt‹UÇB‹EÀÇé‹MÀ‹UÌ;Q0v ‹EÀ‹MÌ+H0‰MÌ‹UÀ‹B(+EÌ‹MÀA4‰EÈë‹UÀ‹B0+EÌ‹MÀA4‰EÈ‹UÀ‹EÌ;B@v ‹MÀ‹Q@‰UÌë‹EÀ‹Mü+HD‰MÈ‹UÀ‹B@‰EÌ‹MÌ;Màv‹Uà‰UÌ‹Eà+ẺEà‹MÀ‹Q@+UÌ‹EÀ‰P@‹Mü‹UÈŠˆ‹MüƒÁ‰Mü‹Uȃ‰UÈ‹Ẽè‰EÌuÙ‹MÀƒy@u ‹UÀÇéSƒ}àuéM‹Eü‹MÀŠQ@ˆ‹EüƒÀ‰Eü‹Màƒé‰Mà‹UÀÇé‹EÀƒx„Iƒ}ä s=ƒ}ðué‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÄ+Uà‰UÄ‹E‹HMÄ‹U‰J‹EÀ‹HMÄ‹UÀ‰Jƒ}ÄtQ‹EÀƒxt‹MÄQ‹Uü+UÄR‹EÀ‹HQè‰E°ë‹UÄR‹Eü+EÄP‹MÀ‹QRè‰E°‹EÀ‹M°‰H‹U‹E°‰B0‹Mà‰MÄ‹UÀƒzt‹EÔ‰E¬ë8‹MÔÁéáÿ‹UÔÁêâÿÊ‹EÔ%ÿÁàÈ‹UÔâÿÁâʉM¬‹EÀ‹M¬;Ht‹UÇB‹EÀÇéÙÇEÔÇEä3Éuî‹UÀÇ‹EÀƒx„‚‹MÀƒytyƒ}ä s=ƒ}ðu霋Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀ‹UÔ;Qt‹EÇ@‹MÀÇëAÇEÔÇEä3Òuî‹EÀÇÇEØë"ÇEØýÿÿÿë¸üÿÿÿ髸þÿÿÿé¡étâÿÿ‹M‹Uü‰Q ‹E‹Mà‰H‹U‹E܉‹M‹Uð‰Q‹EÀ‹MÔ‰H8‹UÀ‹Eä‰B<3ÉuÇ‹UÀƒz(u‹EÀƒ8}2‹M‹UÄ;Qt'‹EÄP‹MQèƒÄ…Àt‹UÀǸüÿÿÿé ‹E‹Mì+H‰Mì‹U‹EÄ+B‰EÄ‹M‹QUì‹E‰P‹M‹QUÄ‹E‰P‹MÀ‹QUÄ‹EÀ‰P‹MÀƒyt]ƒ}ÄtW‹UÀƒzt‹EÄP‹M‹Q +UÄR‹EÀ‹HQè‰E¨ë‹UÄR‹E‹H +MÄQ‹UÀ‹BPè‰E¨‹MÀ‹U¨‰Q‹E‹M¨‰H0‹UÀƒ:t‹EÀƒ8t ÇE¤ëÇE¤‹MÀ‹Q÷ÚÒƒâ@‹EÀ‹H<Ê‹UÀ3Àƒ: •Àƒè%€M¤Á‹M‰A,ƒ}ìuƒ}Ätƒ} u ƒ}ØuÇEØûÿÿÿ‹EØ‹å]ÂI·4[Ú~ý{Vxu*{Ps§h,õÍlòíí¥ hû  uÿ a „W \ X– l·RE Ž öN MÎImIÕF5NKC£N¹@A;e:À5õ0¦Âu;+Ö'‰‡9uЀÔtØpÜoànämèkìjðiôeødüc b Y U T S O J = <$ 7( 6, 20 14 -8 ,< (@ $D #H "L `P _T ^X ]incorrect length checkincorrect data checkinvalid distance too far backinvalid distance codeinvalid literal/length codeinvalid distances setinvalid literal/lengths setinvalid code -- missing end-of-blockinvalid bit length repeatinvalid code lengths settoo many length or distance symbolsinvalid stored block lengthsinvalid block typeheader crc mismatchunknown header flags setinvalid window sizeunknown compression methodincorrect header checkU‹ì‹EÇ@L‹MÇAT ‹UÇBP‹EÇ@X]à  U‹ìƒì ‹E‹H‰Mô‹Uôƒz4u;j‹Eôº‹H$ÓâR‹E‹H(Q‹U‹B ÿÐƒÄ ‹Mô‰A4‹Uôƒz4u ¸éJ‹Eôƒx(u'‹Môº‹I$Óâ‹Eô‰P(‹MôÇA0‹UôÇB,‹E‹M +H‰Mø‹Uô‹Eø;B(r>‹Mô‹Q(R‹E‹Mô‹P +Q(R‹Eô‹H4QèƒÄ ‹UôÇB0‹Eô‹Mô‹Q(‰P,éËEô‹Mô‹P(+Q0‰Uü‹Eü;Eøv‹Mø‰Mü‹UüR‹E‹H +MøQ‹Uô‹B4‹MôA0PèƒÄ ‹Uø+Uü‰Uøt4‹EøP‹M‹Q +UøR‹Eô‹H4QèƒÄ ‹Uô‹Eø‰B0‹Mô‹Uô‹B(‰A,ëD‹Mô‹Q0Uü‹Eô‰P0‹Mô‹Uô‹A0;B(u ‹MôÇA0‹Uô‹Eô‹J,;H(s‹Uô‹B,Eü‹Mô‰A,3À‹å]öll9lU‹ìQƒ}t‹Eƒxt ‹Mƒy$u¸þÿÿÿëP‹U‹B‰Eü‹Müƒy4t‹Uü‹B4P‹M‹Q(R‹E‹H$ÿуÄ‹U‹BP‹M‹Q(R‹E‹H$ÿуÄ‹UÇB3À‹å]ÂU‹ìƒìƒ}t ‹Eƒxu ¸þÿÿÿéû‹M‹Q‰Uø‹Eøƒxt‹Møƒ9 t ¸þÿÿÿé׋Uøƒ: u7jjjè‰Eü‹EP‹M Q‹UüRè‰Eü‹Eø‹Mü;Ht ¸ýÿÿÿ阋U‹BP‹MQèƒÄ…Àt‹UøÇ¸üÿÿÿëq‹Eø‹M;H(v1‹Uø‹B(P‹M M‹Uø+J(Q‹Eø‹H4QèƒÄ ‹Uø‹Eø‹H(‰J,ë)‹UR‹E P‹Mø‹Q4‹EøP(+URèƒÄ ‹Mø‹U‰Q,‹EøÇ@ 3À‹å] RufuއÐlþlU‹ìQƒ}t ‹Eƒxu¸þÿÿÿë0‹M‹Q‰Uü‹Eü‹Hƒáu¸þÿÿÿë‹Uü‹E ‰B ‹M ÇA03À‹å]ÂU‹ìƒìƒ}t ‹Eƒxu ¸þÿÿÿéa‹M‹Q‰Uì‹Eƒxu‹Mìƒy<s ¸ûÿÿÿé<‹Uìƒ:„ž‹EìÇ‹Mì‹I<ƒá‹Uì‹B8Óà‹Mì‰A8‹Uì‹B<ƒà‹Mì‹Q<+ЋEì‰P<ÇEø‹Mìƒy<r6‹Uø‹EìŠH8ˆLô‹UøƒÂ‰Uø‹Eì‹H8Áé‹Uì‰J8‹Eì‹H<ƒé‹Uì‰J<ëÁ‹EìÇ@h‹MøQUôR‹EìƒÀhPèƒÄ ‹M‹QR‹E‹Q‹UìƒÂhRèƒÄ ‰Eø‹E‹H+Mø‹U‰J‹E‹Mø‹U‰ ‹E‹HMø‹U‰J‹Eìƒxht¸ýÿÿÿë8‹M‹Q‰Uü‹E‹H‰Mð‹URè‹E‹Mü‰H‹U‹Eð‰B‹MìÇ 3À‹å]Âç––_ U‹ìƒì‹E‹‰MøÇEü‹Uü;Us\ƒ}øsV‹E Eü¶ƒ}øÒâÿÿÿÂÿ;Êu ‹EøƒÀ‰Eøë!‹M Mü¶…Òt ÇEøë ¸+Eø‰Eø‹MüƒÁ‰Mü뜋U‹Eø‰‹Eü‹å]ÃU‹ìƒìƒ}t ‹Eƒxu¸þÿÿÿë-‹M‹Q‰Uü‹Eüƒ8 u‹Müƒy<u ÇEøëÇEø‹Eø‹å]ÂU‹ìƒìƒ}t!ƒ} t‹E ƒxt‹M ƒy t ‹U ƒz$u ¸þÿÿÿé…‹E ‹H‰MðhÌj‹U ‹B(P‹M ‹Q ÿÒƒÄ ‰Eôƒ}ôu ¸üÿÿÿéPÇEü‹Eðƒx4tKj‹Mðº‹I$ÓâR‹E ‹H(Q‹U ‹B ÿÐƒÄ ‰Eüƒ}üu ‹MôQ‹U ‹B(P‹M ‹Q$ÿ҃ĸüÿÿÿéõj8‹E P‹MQèƒÄ hÌ‹UðR‹EôPèƒÄ ‹MðÁ0‹Uð9JLrX‹Eð¼‹Mð9ALwH‹UðÂ0‹Eð‹HL+ÊÁù‹Uô„Š0‹Mô‰AL‹UðÂ0‹Eð‹HP+ÊÁù‹Uô„Š0‹Mô‰AP‹UðÂ0‹Eð‹Hl+ÊÁù‹Uô„Š0‹Mô‰Alƒ}üt'‹Uð¸‹J$Óà‰Eø‹MøQ‹Uð‹B4P‹MüQèƒÄ ‹Uô‹Eü‰B4‹M‹Uô‰Q3À‹å]ÂÒlçl¡lU‹ìQƒ}t ‹Eƒxu¸þÿÿÿë-‹M‹Q‰Uü3Àƒ} ”À‹Mü‰À‹UüÇ‚À¸ýÿÿÿ‹å]ÂU‹ìƒì ƒ}t ‹Eƒxu¸ÿÿëT‹M‹Q‰Uü‹Eüƒ8u ‹Mü‹Q@‰Uøë)‹Eüƒ8u‹Mü‹Uü‹È+B@‰EôëÇEô‹Mô‰Mø‹Uü‹‚ÄÁàEø‹å]Â@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.rdata¦Ìô0I!?€.textÎñ"W .textË U@Ég .textòÇ´Œðx _zcfree _zcalloc .rdataÜ{Š.textÄv¢À¨ .text q‰‘Y¹ .text \ SÒ¤ÛjÊ $LN12 $LN13  $LN14 .rdata YMõÛÕ $LN29h .rdata `}}z $LN45  $LN47Ó .rdata ,Ͻ5 $LN61© $LN75ò .rdata°–~æo$LN97S $LN112 .rdatayÔ*ŸÖ $LN145è $LN146ß .rdatapoã;ä.rdataÄ€I÷.rdata%¸ƒíK.rdataÚÜLˆ$LN2271 .rdata—e½ñ $LN245Ü .rdata$;Ïù$LN263ã $LN272S $LN273J .rdata3 «B:$LN290 .rdata£.e*r$LN295Q $LN296F $LN301 $LN302 $LN521L $LN321K $LN324: $LN329È $LN338 .rdataŽÐðžž$LN3585 $LN370? $LN382> _memcpy $LN3896 $LN410U $LN424‘ $LN442Ð .rdata¾ß! Ì$LN462à  .rdataO̼ .rdata#b:.rdataÛC5o  $LN497» $LN520Ð .text-ÐáÚª .text¡¦‡1•· .texty +QxÅ .text   Á_Ó .text!P(bW¾ì! .text"†˜]˜¡" .text#ˆ Š«?# .text$Oµ¦~$ .text%ÂÚv{Z/% .text&MZÐ>& .text'v‹­µæR' a?lenfix@?1??fixedtables@@9@9?distfix@?1??fixedtables@@9@9?order@?1??inflate@@9@9_inflateReset@4_inflateReset2@8_inflateInit2_@16??_C@_05DFCKICEH@1?42?45?$AA@_inflateInit_@12_inflatePrime@12_inflate@8??_C@_0BH@FGKKJGOC@incorrect?5length?5check?$AA@??_C@_0BF@MEIGEHBE@incorrect?5data?5check?$AA@??_C@_0BO@ECPMAOGG@invalid?5distance?5too?5far?5back?$AA@??_C@_0BG@LBKINIKP@invalid?5distance?5code?$AA@??_C@_0BM@FFFLPBBC@invalid?5literal?1length?5code?$AA@_inflate_fast??_C@_0BG@GMDFCBGP@invalid?5distances?5set?$AA@??_C@_0BM@IIMGAINC@invalid?5literal?1lengths?5set?$AA@??_C@_0CF@DGDMADCD@invalid?5code?5?9?9?5missing?5end?9of?9b@??_C@_0BK@BMMPFBBH@invalid?5bit?5length?5repeat?$AA@??_C@_0BJ@HDEPPGOH@invalid?5code?5lengths?5set?$AA@_inflate_table??_C@_0CE@GMIGFPBB@too?5many?5length?5or?5distance?5symb@??_C@_0BN@LGAADGOK@invalid?5stored?5block?5lengths?$AA@??_C@_0BD@PJCBIDD@invalid?5block?5type?$AA@??_C@_0BE@GONKLEPM@header?5crc?5mismatch?$AA@??_C@_0BJ@BLBBCOMO@unknown?5header?5flags?5set?$AA@_adler32@12??_C@_0BE@EMOGCLGO@invalid?5window?5size?$AA@??_C@_0BL@IHKGDAEE@unknown?5compression?5method?$AA@??_C@_0BH@LIBMMIGA@incorrect?5header?5check?$AA@_crc32@12_fixedtables_updatewindow_inflateEnd@4_inflateSetDictionary@12_inflateGetHeader@8_inflateSync@4_syncsearch_inflateSyncPoint@4_inflateCopy@8_inflateUndermine@8_inflateMark@4 /328 1315202897 100666 485 ` LQgdNu.drectve]d .debug$S´Á@B /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\inffast.obj:<RRMicrosoft (R) Optimizing Compiler@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´ /366 1315202897 100666 11684 ` LQgdN%N.drectve]  .debug$S´i@B.rdata¦@@@.textÃ Ä  P`.rdataâ @0@.text è ô!" P`.rdataH#@0@.rdataf#@0@.rdata|#@0@.rdata˜#@0@.rdata®#@0@.rdata%Ê#@0@.rdataï#@0@.rdata $@0@.rdata$"$@0@.rdataF$@0@.rdatac$@0@.text-v$£$ P`.textK·$ P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\infback.obj:<RRMicrosoft (R) Optimizing Compiler`Psp0 À `  €@ àX ;x8 Ðh( °ˆH ðTã+t4 È d$ ¨„D è\ ˜S|< Øl, ¸ ŒL øR£#r2 Ä b" ¤‚B äZ ”Cz: Ôj* ´ ŠJ ôV@3v6 Ìf& ¬†F ì ^ œc~> Ün. ¼ŽN ü`Qƒq1  a! ¢A âY ’;y9 Òi) ² ‰I òU+u5 Ê e% ª…E ê] šS}= Úm- º M úSÃ#s3 Æ c# ¦ƒC æ[ –C{; Ök+ ¶ ‹K öW@3w7 Îg' ®‡G î _ žc? Þo/ ¾O þ`Psp0 Á ` ¡€@ áX ‘;x8 Ñh( ±ˆH ñTã+t4 É d$ ©„D é\ ™S|< Ùl, ¹ ŒL ùR£#r2 Å b" ¥‚B åZ •Cz: Õj* µ ŠJ õV@3v6 Íf& ­†F í ^ c~> Ýn. ½ŽN ý`Qƒq1 à a! £A ãY “;y9 Ói) ³ ‰I óU+u5 Ë e% «…E ë] ›S}= Ûm- » M ûSÃ#s3 Ç c# §ƒC ç[ —C{; ×k+ · ‹K ÷W@3w7 Ïg' ¯‡G ï _ Ÿc? ßo/ ¿O ÿA@!  @a`10  Á@     U‹ìQƒ}t‹E¾¾;Êuƒ}8t ¸úÿÿÿéЃ}tƒ}t ƒ} |ƒ} ~ ¸þÿÿÿ鮋EÇ@‹Mƒy u‹UÇB ‹EÇ@(‹Mƒy$u ‹UÇB$hÌj‹E‹H(Q‹U‹B ÿÐƒÄ ‰Eüƒ}üu¸üÿÿÿëK‹M‹Uü‰Q‹EüÇ@€‹Mü‹U ‰Q$¸‹M Óà‹Mü‰A(‹Uü‹E‰B4‹MüÇA0‹UüÇB,3À‹å]Âfƒ1.2.5U‹ìƒì@ƒ}t ‹Eƒxu ¸þÿÿÿé§‹M‹Q‰UÌ‹EÇ@‹MÌÇ ‹UÌÇB‹EÌÇ@,‹M‹‰Uàƒ}àt ‹E‹H‰MÈëÇEÈ‹UȉUðÇEØÇEè‹EÌ‹H4‰Mü‹UÌ‹B(‰Eä‹MÌ‹‰UÄ‹EÄƒè ‰Eă}ćô‹MĶ‘ÿ$•‹Ẽxt.‹Mèƒá‹UØÓê‰UØ‹Eèƒà‹Mè+ȉMè3Òuà‹EÌÇ鵃}èsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé„3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë”3Éu‹U؃â‹ẺP‹MØÑé‰MØ‹Uèƒê‰Uè3Àuë‹M؃á‰MÀƒ}ÀwJ‹UÀÿ$•‹EÌÇ ë5‹MÌQèƒÄ‹UÌÇë‹EÌÇë‹MÇA‹UÌÇ‹EØÁè‰EØ‹Mèƒé‰Mè3Òuêé°‹Mèƒá‹EØÓè‰EØ‹Mèƒá‹Uè+щUè3Àuàƒ}è sfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé_3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë”3Éu‹UØâÿÿ‹EØÁè5ÿÿ;Ðt‹MÇA‹UÌÇéð‹EØ%ÿÿ‹M̉A@ÇEØÇEè3Òuî‹Ẽx@„ì‹MÌ‹Q@‰UÔƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé3Òũ}äu=‹EÌ‹H4‰Mü‹UÌ‹B(‰Eä‹MÌ‹Uä‰Q,‹EäP‹MüQ‹URÿUƒÄ …Àt ÇEÜûÿÿÿéH3Àu¹‹MÔ;Mðv‹Uð‰UÔ‹EÔ;Eäv‹Mä‰MÔ‹UÔR‹EàP‹MüQèƒÄ ‹Uð+UÔ‰Uð‹EàEÔ‰Eà‹Mä+MÔ‰Mä‹UüUÔ‰Uü‹EÌ‹H@+MÔ‹ỦJ@éÿÿÿ‹EÌÇ éɃ}èsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé˜3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë”3Éu‹U؃â‹ẺP`‹MØÁé‰MØ‹Uèƒê‰Uè3Àuê‹M؃áƒÁ‹ỦJd‹EØÁè‰EØ‹Mèƒé‰Mè3Òuê‹E؃àƒÀ‹M̉A\‹UØÁê‰UØ‹Eèƒè‰Eè3Éuê‹UÌz`w ‹Ẽxdv‹MÇA‹UÌÇ麋EÌÇ@h‹MÌ‹UÌ‹Ah;B\ƒ¶ƒ}èsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿém3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë”3Éu‹U؃â‹EÌ‹Hh·M‹MÌf‰TAp‹UÌ‹BhƒÀ‹M̉Ah‹UØÁê‰UØ‹Eèƒè‰Eè3Éuêé8ÿÿÿ‹Ũzhs)‹EÌ‹Hh·M3À‹MÌf‰DQp‹UÌ‹BhƒÀ‹M̉Ahë΋UÌÂ0‹ẺPl‹MÌ‹UÌ‹Bl‰AL‹MÌÇAT‹UÌÂðR‹ẼÀTP‹M̃ÁlQj‹ŨÂpRjèƒÄ‰E܃}Üt‹EÇ@‹MÌÇéE ‹UÌÇBh‹EÌ‹H`‹UÌJd‹EÌ9Hhƒ;‹M̺‹ITÓâƒê#UØ‹EÌ‹HL‹‘‰Uô¶Eõ;Eèwëiƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéÎ 3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœémÿÿÿ·Möƒùµ¶Uõ9Uèsfƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéO 3ÒuÌ‹Eðƒè‰Eð‹Mà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3Òuœë‘3Àu¶Mõ‹UØÓê‰UضEõ‹Mè+ȉMè3Òuä‹EÌ‹Hh‹UÌf‹Eöf‰DJp‹MÌ‹QhƒÂ‹ẺPhéá·Möƒù…ë¶UõƒÂ9Uèsfƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéŠ 3ÒuÌ‹Eðƒè‰Eð‹Mà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3ÒuœëŽ3ÀuжMõ‹UØÓê‰UضEõ‹Mè+ȉMè3Òuä‹Ẽxhu‹MÇA‹UÌÇé&‹EÌ‹Hh‹UÌ·DJn‰Eì‹M؃áƒÁ‰MÔ‹UØÁê‰UØ‹Eèƒè‰Eè3Éuê鈷Uöƒú…À¶EõƒÀ9Eèsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé’ 3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3ÀuœëŽ3ÉuжMõ‹UØÓê‰UضEõ‹Mè+ȉMè3ÒuäÇEì‹E؃àƒÀ‰EÔ‹MØÁé‰MØ‹Uèƒê‰Uè3Àuêé»¶MõƒÁ9Mèsfƒ}ðu*UàR‹EPÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéÒ 3ÉuÌ‹Uðƒê‰Uð‹Eà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3ÒuœëŽ3ÀuжMõ‹UØÓê‰UضEõ‹Mè+ȉMè3ÒuäÇEì‹E؃àƒÀ ‰EÔ‹MØÁé‰MØ‹Uèƒê‰Uè3Àuê‹MÌ‹QhUÔ‹EÌ‹H`‹EÌHd;Ñv‹MÇA‹UÌÇë8‹EÔ‹MÔƒé‰MÔ…Àt#‹UÌ‹Bh‹MÌf‹Uìf‰TAp‹EÌ‹HhƒÁ‹ỦJhëÍé­ûÿÿ‹Ẽ8uéÛ‹MÌ·‘p…Òu‹EÇ@‹MÌÇ鵋UÌÂ0‹ẺPl‹MÌ‹UÌ‹Bl‰AL‹MÌÇAT ‹UÌÂðR‹ẼÀTP‹M̃ÁlQ‹UÌ‹B`P‹M̃ÁpQjèƒÄ‰E܃}Üt‹UÇB‹EÌÇé?‹MÌ‹UÌ‹Bl‰AP‹MÌÇAX‹UÌÂðR‹ẼÀXP‹M̃ÁlQ‹UÌ‹BdP‹MÌ‹Q`‹EÌLPpQjèƒÄ‰E܃}Üt‹UÇB‹EÌÇéÑ‹MÌǃ}ð‚´}ä‚§‹U‹Eü‰B ‹M‹Uä‰Q‹E‹Mà‰‹U‹Eð‰B‹MÌ‹U؉Q8‹EÌ‹Mè‰H<3ÒuÇ‹EÌ‹MÌ‹P,;Q(s‹EÌ‹H(+Mä‹ỦJ,‹EÌ‹H(Q‹URèƒÄ‹E‹H ‰Mü‹U‹B‰Eä‹M‹‰Uà‹E‹H‰Mð‹UÌ‹B8‰EØ‹MÌ‹Q<‰Uè3ÀuÇé ‹M̺‹ITÓâƒê#UØ‹EÌ‹HL‹‘‰Uô¶Eõ;Eèwëiƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéµ3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœémÿÿÿ¶Mô…Ʉ۶Uôâð…Ë‹Eô‰Eø·Uú¶Mù¶EøȸÓàƒè#EضMùÓèЋMÌ‹AL‹ ‰Mô¶Uù¶EõÐ;Uèwëiƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéê3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3ÀuœéWÿÿÿ¶Mù‹UØÓê‰UضEù‹Mè+ȉMè3Òuä¶Mõ‹EØÓè‰EضMõ‹Uè+щUè3Àuä·Mö‹ỦJ@¶Eô…Àurƒ}äu=‹MÌ‹Q4‰Uü‹EÌ‹H(‰Mä‹UÌ‹Eä‰B,‹MäQ‹UüR‹EPÿUƒÄ …Àt ÇEÜûÿÿÿé$3Éu¹‹Uü‹EÌŠH@ˆ ‹UüƒÂ‰Uü‹Eäƒè‰Eä‹MÌÇéð¶Uôƒâ t‹EÌÇ éÙ¶Môƒá@t‹UÇB‹EÌÇ鸶Môƒá‹ỦJH‹ẼxH„²‹MÌ‹Uè;QHsfƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéh3ÒuÌ‹Eðƒè‰Eð‹Mà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3Òuœë3Àu‹‹M̺‹IHÓâƒê#UØ‹EÌP@‹M̉Q@‹UÌ‹EØ‹JHÓè‰EØ‹MÌ‹Uè+QH‰Uè3Àuâ‹M̺‹IXÓâƒê#UØ‹EÌ‹HP‹‘‰Uô¶Eõ;Eèwëiƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé—3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœémÿÿÿ¶Môáð…Ë‹Uô‰Uø·Eú¶Mù¶UøʺÓâƒê#UضMùÓê‹MÌ‹QP‹‚‰Eô¶Mù¶UõÊ;Mèwëiƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéØ3ÒuÌ‹Eðƒè‰Eð‹Mà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3ÒuœéWÿÿÿ¶Mù‹EØÓè‰EضMù‹Uè+щUè3Àuä¶Mõ‹UØÓê‰UضEõ‹Mè+ȉMè3Òuä¶Eôƒà@t‹MÇA‹UÌÇéA·Eö‹M̉AD¶Uôƒâ‹ẺPH‹M̃yH„²‹UÌ‹Eè;BHsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéç3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë3Éu‹‹U̸‹JHÓàƒè#EØ‹MÌAD‹ỦBD‹EÌ‹UØ‹HHÓê‰UØ‹EÌ‹Mè+HH‰Mè3Òuâ‹EÌ‹MÌ‹P,;Q(À#Eä‹MÌ‹Q(+ЋEÌ9PDv‹MÇA‹UÌÇé2ƒ}äu=‹EÌ‹H4‰Mü‹UÌ‹B(‰Eä‹MÌ‹Uä‰Q,‹EäP‹MüQ‹URÿUƒÄ …Àt ÇEÜûÿÿÿéô3Àu¹‹MÌ‹UÌ‹A(+BD‰EÔ‹MÔ;Mäs‹UüUÔ‰UЋEä+EÔ‰EÔë‹MÌ‹Uü+QD‰UЋEä‰EÔ‹MÌ‹UÔ;Q@v ‹EÌ‹H@‰MÔ‹UÌ‹B@+EÔ‹M̉A@‹Uä+UÔ‰Uä‹Eü‹MЊˆ‹EüƒÀ‰Eü‹MЃÁ‰MЋUÔƒê‰UÔuÙ‹Ẽx@…ÿÿÿëLÇEÜ‹MÌ‹Uä;Q(s&‹EÌ‹H(+MäQ‹UÌ‹B4P‹MQÿUƒÄ …ÀtÇEÜûÿÿÿëÇEÜýÿÿÿëÇEÜþÿÿÿëéãìÿÿ‹U‹Eà‰‹M‹Uð‰Q‹EÜ‹å]¶G½FžD²JÕ?«;—8á6 Ø @3V2/~ /æ ,F 3\ )´ 3Ê &^ "ã!ZiÌEÐ<Ô7Ø#ÜàäüCBA@invalid distance too far backinvalid distance codeinvalid literal/length codeinvalid distances setinvalid literal/lengths setinvalid code -- missing end-of-blockinvalid bit length repeatinvalid code lengths settoo many length or distance symbolsinvalid stored block lengthsinvalid block typeU‹ì‹EÇ@L‹MÇAT ‹UÇBP‹EÇ@X]à  U‹ìƒ}t‹Eƒxt ‹Mƒy$u¸þÿÿÿë%‹U‹BP‹M‹Q(R‹E‹H$ÿуÄ‹UÇB3À]Â@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.rdata¦Ìô0I!?€.textˆˆZ‰[ _zcfree _zcalloc .rdataÜ{p.text "aÙÔŽ $LN1¤$LN2›$LN5a.rdata,Ͻž.rdata°–~æØ.rdata yÔ* ? $LN130å .rdata poã;M .rdata Ä€I÷} .rdata %¸ƒí´ .rdata ÚÜLñ .rdata—e&Z .rdata$;Ïùi$LN272ä_memcpy .rdata3 «B£$LN310ý.rdata£.e*Û$LN315Ï$LN316Ä$LN317­$LN318¢$LN354ü$LN341Á$LN353Ì$LN352è.text-ÐáÚ .textK¤_ &?lenfix@?1??fixedtables@@9@9?distfix@?1??fixedtables@@9@9?order@?1??inflateBack@@9@9_inflateBackInit_@20??_C@_05DFCKICEH@1?42?45?$AA@_inflateBack@20??_C@_0BO@ECPMAOGG@invalid?5distance?5too?5far?5back?$AA@??_C@_0BG@LBKINIKP@invalid?5distance?5code?$AA@??_C@_0BM@FFFLPBBC@invalid?5literal?1length?5code?$AA@_inflate_fast??_C@_0BG@GMDFCBGP@invalid?5distances?5set?$AA@??_C@_0BM@IIMGAINC@invalid?5literal?1lengths?5set?$AA@??_C@_0CF@DGDMADCD@invalid?5code?5?9?9?5missing?5end?9of?9b@??_C@_0BK@BMMPFBBH@invalid?5bit?5length?5repeat?$AA@??_C@_0BJ@HDEPPGOH@invalid?5code?5lengths?5set?$AA@_inflate_table??_C@_0CE@GMIGFPBB@too?5many?5length?5or?5distance?5symb@??_C@_0BN@LGAADGOK@invalid?5stored?5block?5lengths?$AA@??_C@_0BD@PJCBIDD@invalid?5block?5type?$AA@_fixedtables_inflateBackEnd@4/404 1315202897 100666 5694 ` LQgdNB@.drectve]” .debug$S´ñ@B.textÔ¥y P`.rdata%É@0@.text>î, P`.rdataš@0@.rdata @0@.textI®÷ P`.rdata'Q @0@.textìx d  P`.textí‚ o  P`.textMƒ Ð  P`.textDä (  P`.textP ß  P`.textèó Û P`.textïùè P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\gzwrite.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒì‹E‰Eüƒ}u3À鵋M‰Mð‹UðƒÂT‰Uô‹Eð8±yu ‹MðƒyLt3À鋃}}hjû‹UðRèƒÄ 3Àékƒ}u3Àé^‹Eðƒxu‹MðQèƒÄƒøÿu3Àé=‹UðƒzHt)‹EðÇ@H‹Mð‹QDR‹EðPèƒÄƒøÿu3Àé ‹Mð‹U;Qƒ¢‹Eôƒxu ‹Mô‹Uð‹B‰‹Mð‹Uô‹A+B‰Eø‹Mø;Mv‹U‰Uø‹EøP‹M Q‹Uô‹‹MôAPèƒÄ ‹Uô‹BEø‹Mô‰A‹Uð‹B Eø‹Mð‰A ‹U Uø‰U ‹E+Eø‰Etj‹MðQèƒÄƒøÿu3Àëfƒ}…`ÿÿÿëW‹Uôƒztj‹EðPèƒÄƒøÿu3Àë:‹Mô‹U‰Q‹Eô‹M ‰‹Uð‹B E‹Mð‰A j‹UðRèƒÄƒøÿu3Àë‹Eü‹å] J U ~°' X„»requested length does not fit in intU‹ìƒì‹EƒÀT‰Eü‹M‹QRèƒÄ‹M‰A‹U‹BPèƒÄ‹M‰A‹Uƒzt ‹EƒxuK‹Mƒyt‹U‹BPèƒÄ‹Mƒyt‹U‹BPèƒÄhjü‹MQèƒÄ ƒÈÿ餋UüÇB ‹EüÇ@$‹MüÇA(j8h‹U‹B@Pjjj‹M‹QÛ@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.textÔX“o _memcpy  .rdata%WÓ×.text> DÖ_gz_init T .rdataÜ{f.rdatau–3„_free _malloc .textI Áâ¢1_gz_comp « .rdata '^ KK» õ  __errno _write .text ìÒë3_gz_zero _memset .text íá±VŒ  .text M^GÏ3 _strlen .text DS± ( .textjÓC4 .textè0„b(? O .textï Ý}îŒa _close n |_gzwrite@12_gz_error??_C@_0CF@MLPJFDMM@requested?5length?5does?5not?5fit?5in@_deflateInit2_@32??_C@_05DFCKICEH@1?42?45?$AA@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@_deflateReset@4??_C@_0CH@DEEGAHIB@internal?5error?3?5deflate?5stream?5c@_deflate@8_strerror_gzputc@8_gzputs@8_gzprintf__vsnprintf_gzflush@8_gzsetparams@12_deflateParams@12_gzclose_w@4_deflateEnd@4/442 1315202897 100666 10575 ` LQgdNö\.drectve]$ .debug$S°@B.text14 P`.rdata%z@0@.textŸ/ P`.textåW<  P`.rdataú @0@.rdata @0@.rdata& @0@.rdata< @0@.rdata'J @0@.rdataq @0@.text`ˆ è  P`.textàò Ò  P`.text¿ú ¹ P`.text: ×$ P`.rdatay@0@.rdata’@0@.rdata­@0@.text¿³r P`.text«|' P`.text1À P`.rdataÞ@0@.text‰ý† P`.textM®û P`.text«° P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¤fc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\gzread.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒìƒ}uƒÈÿéé‹E‰Eð‹MðƒÁT‰Mø‹Uð:Ou ‹EðƒxLtƒÈÿ龃}}hjû‹MðQèƒÄ ƒÈÿéƒ}u3Àé‹UðƒzHt*‹EðÇ@H‹Mð‹QDR‹EðPèƒÄƒøÿuƒÈÿé]ÇEô‹Mðƒy$t\‹Uð‹B$;Ev‹M‰Mìë ‹Uð‹B$‰Eì‹Mì‰Mü‹UüR‹Eð‹H Q‹U RèƒÄ ‹Eð‹H Mü‹Uð‰J ‹Eð‹H$+Mü‹Uð‰J$麋Eðƒx(t‹Møƒyu é×éž‹Uðƒz4t ‹Eð‹HÑá9Ms ‹UðRèƒÄƒøÿuƒÈÿé¦é”ëh‹Eðƒx4u$MüQ‹UR‹E P‹MðQèƒÄƒøÿuƒÈÿëtë;‹Uø‹E‰B‹Mø‹U ‰Q ‹EðPèƒÄƒøÿuƒÈÿëJ‹Mð‹Q$‰Uü‹EðÇ@$‹M+Mü‰M‹U Uü‰U ‹EôEü‰Eô‹Mð‹Q Uü‹Eð‰P ƒ}…­þÿÿ‹Eô‹å] F Q ŒFâ C3x¢requested length does not fit in intU‹ìQ‹EÇ‹M‹U+R‹E‹M Q‹U‹BPèƒÄ ‰Eüƒ}üë‹M‹Uü‹E‰‹M‹;Ur½ƒ}ü}$è‹PèƒÄPjÿ‹MQèƒÄ ƒÈÿëƒ}üu ‹UÇB(3À‹å]Ã'W_n U‹ìƒì‹EƒÀT‰Eø‹Mø‹Q‰Uð‹Eøƒxu‹MQèƒÄƒøÿuƒÈÿé§‹Uøƒzuhjý‹EPèƒÄ ƒÈÿéƒj‹MøQè‰Eìƒ}ìþtƒ}ìuhjþ‹URèƒÄ ƒÈÿéNƒ}ìüuhjü‹EPèƒÄ ƒÈÿé-ƒ}ìýu5‹Møƒyu ÇEèë ‹Uø‹B‰Eè‹MèQjý‹URèƒÄ ƒÈÿéò‹Eøƒxt ƒ}ì…ÿÿÿ‹Mø‹Uð+Q‹E‰P$‹Mø‹U‹A +B$‹M‰A ‹U‹B$P‹M‹Q R‹Eø‹H0Qè‹Uø‰B0ƒ}ì…’EüP‹MQèƒÄƒøÿtUôR‹EPèƒÄƒøÿuhjý‹MQèƒÄ ƒÈÿëR‹Uø‹Eü;B0thjý‹MQèƒÄ ƒÈÿë/‹Uø‹Eô;Bthjý‹MQèƒÄ ƒÈÿë ‹UÇB43À‹å]Ã&-D*O e'y&„ š#¥ Æ à 9V0k0x*ƒ ›¦ ¾É incorrect length checkincorrect data checkcompressed data errorout of memoryinternal error: inflate stream corruptunexpected end of fileU‹ìQ‹EƒÀT‰Eü‹MƒyLtƒÈÿëA‹Uƒz(u6‹EüƒÀP‹M‹QR‹E‹HQ‹URèƒÄƒøÿuƒÈÿë ‹Eü‹M‹Q‰3À‹å]Ã>U‹ìƒì,‹EƒÀT‰Eü‹Müƒyu‹URèƒÄƒøÿu ÇEðÿÿÿÿë?‹Eüƒxu ÇEìÿÿÿÿë'‹Mü‹Qƒê‹Eü‰P‹Mü‹¶‰Eì‹Mü‹ƒÂ‹Eü‰‹Mì‰Mð‹Uð‰Uø‹Eüƒxu‹MQèƒÄƒøÿu ÇEèÿÿÿÿë?‹Uüƒzu ÇEäÿÿÿÿë'‹Eü‹Hƒé‹Uü‰J‹Eü‹¶‰Uä‹Eü‹ƒÁ‹Uü‰ ‹Eä‰Eè‹MèÁáMø‰Mø‹Uüƒzu‹EPèƒÄƒøÿu ÇEàÿÿÿÿë?‹Müƒyu ÇEÜÿÿÿÿë'‹Uü‹Bƒè‹Mü‰A‹Uü‹¶‰MÜ‹Uü‹ƒÀ‹Mü‰‹U܉Uà‹EàÁàEø‰Eø‹Müƒyu‹URèƒÄƒøÿu ÇEØÿÿÿÿë?‹Eüƒxu ÇEÔÿÿÿÿë'‹Mü‹Qƒê‹Eü‰P‹Mü‹¶‰EÔ‹Mü‹ƒÂ‹Eü‰‹MÔ‰MØ‹U؉Uôƒ}ôÿuƒÈÿë‹EôÁàEø‰Eø‹M ‹Uø‰3À‹å]Ã-…-ó-a-U‹ìQ‹EƒÀT‰Eü‹Mƒy4u&‹URèƒÄƒøÿuƒÈÿ錋Eƒx$t3Àë‹Mƒy4u;‹UƒÂ$R‹E‹HÑáQ‹U‹BP‹MQèƒÄƒøÿuƒÈÿëI‹U‹E‹H‰J ë9‹Uƒz4u0‹E‹HÑá‹Uü‰J‹Eü‹M‹Q‰P ‹EPèƒÄƒøÿuƒÈÿë3À‹å]Ã6a¨U‹ìì„‹EƒÀT‰Eô‹Mƒy…#‹U‹BPèƒÄ‹M‰A‹U‹BÑàPèƒÄ‹M‰A‹Uƒzt ‹EƒxuK‹Mƒyt‹U‹BPèƒÄ‹Mƒyt‹U‹BPèƒÄhjü‹MQèƒÄ ƒÈÿ鎋U‹E‹H‰J‹UÇBt‹EÇ@x‹MÇA|‹UÇBX‹EÇ@Tj8hjñ‹MƒÁTQè…ÀtC‹U‹BPèƒÄ‹M‹QRèƒÄ‹EÇ@hjü‹MQèƒÄ ƒÈÿéô‹Uôƒzu)‹EPèƒÄƒøÿuƒÈÿéÒ‹Môƒyu3Àé‹Uô‹¶ƒù…<‹Uô‹Bƒè‹Mô‰A‹Uô‹ƒÀ‹Mô‰‹Uôƒzu‹EPèƒÄƒøÿuƒÈÿés‹Môƒy„Þ‹Uô‹¶ù‹…Ê‹Uô‹Bƒè‹Mô‰A‹Uô‹ƒÀ‹Mô‰‹Uôƒzu‹EPèƒÄƒøÿu ÇEðÿÿÿÿë?‹Môƒyu ÇEìÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰Mì‹Uô‹ƒÀ‹Mô‰‹Uì‰Uðƒ}ðthjý‹EPèƒÄ ƒÈÿ鳋Môƒyu‹URèƒÄƒøÿu ÇEèÿÿÿÿë?‹Eôƒxu ÇEäÿÿÿÿë'‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰Eä‹Mô‹ƒÂ‹Eô‰‹Mä‰Mè‹Uè‰Uü‹Eü%àthjý‹MQèƒÄ ƒÈÿé&‹Uôƒzu‹EPèƒÄƒøÿu ÇEàÿÿÿÿë?‹Môƒyu ÇEÜÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰MÜ‹Uô‹ƒÀ‹Mô‰‹U܉Uà‹Eôƒxu‹MQèƒÄƒøÿu ÇEØÿÿÿÿë?‹Uôƒzu ÇEÔÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰UÔ‹Eô‹ƒÁ‹Uô‰ ‹EÔ‰EØ‹Môƒyu‹URèƒÄƒøÿu ÇEÐÿÿÿÿë?‹Eôƒxu ÇEÌÿÿÿÿë'‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰EÌ‹Mô‹ƒÂ‹Eô‰‹M̉MЋUôƒzu‹EPèƒÄƒøÿu ÇEÈÿÿÿÿë?‹Môƒyu ÇEÄÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰MÄ‹Uô‹ƒÀ‹Mô‰‹UĉUÈ‹Eôƒxu‹MQèƒÄƒøÿu ÇEÀÿÿÿÿë?‹Uôƒzu ÇE¼ÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰U¼‹Eô‹ƒÁ‹Uô‰ ‹E¼‰EÀ‹Môƒyu‹URèƒÄƒøÿu ÇE¸ÿÿÿÿë?‹Eôƒxu ÇE´ÿÿÿÿë'‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰E´‹Mô‹ƒÂ‹Eô‰‹M´‰M¸‹Uüƒâ„R‹Eôƒxu‹MQèƒÄƒøÿu ÇE°ÿÿÿÿë?‹Uôƒzu ÇE¬ÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰U¬‹Eô‹ƒÁ‹Uô‰ ‹E¬‰E°‹M°‰Mø‹Uôƒzu‹EPèƒÄƒøÿu ÇE¨ÿÿÿÿë?‹Môƒyu ÇE¤ÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰M¤‹Uô‹ƒÀ‹Mô‰‹U¤‰U¨‹E¨ÁàEø‰Eø‹Mø‹Uøƒê‰Uø…Étl‹Eôƒxu‹MQèƒÄƒøÿu ÇE ÿÿÿÿë?‹Uôƒzu ÇEœÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰Uœ‹Eô‹ƒÁ‹Uô‰ ‹Eœ‰E ƒ} }ëë„‹Müƒátj‹Uôƒzu‹EPèƒÄƒøÿu ÇE˜ÿÿÿÿë?‹Môƒyu ÇE”ÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰M”‹Uô‹ƒÀ‹Mô‰‹U”‰U˜ƒ}˜~ë–‹Eüƒàtj‹Môƒyu‹URèƒÄƒøÿu ÇEÿÿÿÿë?‹Eôƒxu ÇEŒÿÿÿÿë'‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰EŒ‹Mô‹ƒÂ‹Eô‰‹MŒ‰Mƒ}~ë–‹Uüƒâ„Í‹Eôƒxu‹MQèƒÄƒøÿu ÇEˆÿÿÿÿë?‹Uôƒzu ÇE„ÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰U„‹Eô‹ƒÁ‹Uô‰ ‹E„‰Eˆ‹Môƒyu‹URèƒÄƒøÿu ÇE€ÿÿÿÿëH‹Eôƒxu Ç…|ÿÿÿÿÿÿÿë*‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰…|ÿÿÿ‹Mô‹ƒÂ‹Eô‰‹|ÿÿÿ‰M€‹UôRèjjjè‹Mô‰A0‹UÇB4‹EÇ@83ÀéŠë‹M‹QÆ‹EÇ@$‹M‹U‹B ‰A0‹M‹U‹B‰A ‹Môƒyt>‹Uô‹BP‹Mô‹R‹E‹H ‹UJ$QèƒÄ ‹E‹H$‹UôJ‹E‰H$‹MôÇA‹UÇB4‹EÇ@83À‹å]Ã'C>CnB†BŽ#™ éA÷>BB(#3 P-¯--i=t ‘-ö: -€-â-D-¦--v-Þ-\-Ð-B-¸--|7‡ý unknown header flags setunknown compression method1.2.5U‹ìƒìƒ} „©‹Eƒx$to¹…Ét ‹Uz$ÿÿÿw‹E‹H$;M  ‹U‹B$‰Eøë‹M ‰Mø‹Uø‰Uü‹E‹H$+Mü‹U‰J$‹E‹H Mü‹U‰J ‹E‹H Mü‹U‰J ‹E +Eü‰E ë,‹Mƒy(t ‹UƒzXuëë‹EPèƒÄƒøÿuƒÈÿëéMÿÿÿ3À‹å]ã3U‹ìƒìƒ}uƒÈÿé‘‹E‰Eô‹Mô9Ou ‹UôƒzLtƒÈÿër‹Eôƒx$t>‹Mô‹Q$ƒê‹Eô‰P$‹Mô‹Q ƒÂ‹Eô‰P ‹Mô‹Q ŠˆEó‹Mô‹Q ƒÂ‹Eô‰P ¶Eóë+jMÿQ‹URè‰Eøƒ}ø} ÇEìÿÿÿÿë¶Eÿ‰Eì‹Eì‹å]Â…U‹ìƒì ƒ} uƒÈÿéu‹E ‰Eü‹Mü9Ou ‹UüƒzLtƒÈÿéS‹EüƒxHt*‹MüÇAH‹Uü‹BDP‹MüQèƒÄƒøÿuƒÈÿé ƒ}}ƒÈÿé‹Uüƒz$uB‹EüÇ@$‹Mü‹Q‹Eü‹HTQÿ‹Eü‰P ‹Mü‹Q ŠEˆ‹Mü‹Q ƒê‹Eü‰P ‹EéÇ‹Mü‹QÑâ‹Eü9P$uhjû‹MüQèƒÄ ƒÈÿ霋Uü‹Eü‹J ;HuS‹Uü‹B‹MüA$‰Eô‹Uü‹B‹Mü‹QB‰Eø‹Mü‹Uô;Qv‹Eôƒè‰Eô‹Møƒé‰Mø‹Uø‹EôŠˆ ë׋Uü‹Eø‰B ‹Mü‹Q$ƒÂ‹Eü‰P$‹Mü‹Q ƒê‹Eü‰P ‹Mü‹Q ŠEˆ‹Mü‹Q ƒê‹Eü‰P ‹E‹å]ÂUFÓOÞ out of room to push charactersU‹ìƒìƒ}t ƒ} tƒ}}3Àéd‹E‰Eð‹Mð9Ou ‹UðƒzLt3ÀéC‹EðƒxHt)‹MðÇAH‹Uð‹BDP‹MðQèƒÄƒøÿu3Àé‹U ‰Uì‹Eƒè‰Eô„ó‹Mðƒy$u5‹UðRèƒÄƒøÿu3ÀéÛ‹Eðƒx$u‹M ;Mìu3ÀéÃ鵋Uð‹B$;Eôv‹Mô‰Mèë ‹Uð‹B$‰Eè‹Mè‰Mø‹UøRj ‹Eð‹H QèƒÄ ‰Eüƒ}üt‹Uð‹Eü+B ƒÀ‰Eø‹MøQ‹Uð‹B P‹M QèƒÄ ‹Uð‹B$+Eø‹Mð‰A$‹Uð‹B Eø‹Mð‰A ‹Uð‹B Eø‹Mð‰A ‹Uô+Uø‰Uô‹E Eø‰E ƒ}ôt ƒ}ü„ ÿÿÿ‹M Æ‹Eì‹å] _F•3õS$ U‹ìQƒ}u3Àë9‹E‰Eü‹Mü9Ot3Àë$‹Uüƒz4u‹Eüƒx$u ‹MüQèƒÄ‹Uü‹B8‹å]Â:6U‹ìƒìƒ}u ¸þÿÿÿé‹E‰Eø‹Mø9Ot¸þÿÿÿëw‹Uøƒzt*‹EøƒÀTPè‹Mø‹QRèƒÄ‹Eø‹HQèƒÄjj‹UøRèƒÄ ‹Eø‹HQèƒÄ‹Uø‹BPèƒÄ‰Eü‹MøQèƒÄ‹Eü÷ØÀ‹å]Â?[KBZBj yBˆZ—B@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.textbçJ _memcpy  .rdata%WÓ×.text—ˆ\_gz_load S __errno _read .textåÙÅaJ] .rdataYMõÛh.rdata`}}z™È .rdata j†w%Ò .rdata u–3 .rdata 'æP) c .rdata (åרn .text `_¡"è  .textà°åìª .text¿BÁ_gz_make .text: $¡/“ú_gz_head ´ .rdata¾ß! Ä.rdata#bø- .rdataÜ{?_free _malloc .text¿|Nâ_gz_skip .text«¯¯yÑ] .textÂj^g .rdatam?^s.text‰c–”÷¯ _memchr .textM †¾º .text«|k¾Æ _close Ó á_gzread@12_gz_error??_C@_0CF@MLPJFDMM@requested?5length?5does?5not?5fit?5in@_strerror_gz_decomp??_C@_0BH@FGKKJGOC@incorrect?5length?5check?$AA@??_C@_0BF@MEIGEHBE@incorrect?5data?5check?$AA@_crc32@12??_C@_0BG@HCKBMIHF@compressed?5data?5error?$AA@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@??_C@_0CH@CPOLIEKA@internal?5error?3?5inflate?5stream?5c@_inflate@8??_C@_0BH@CFIIDOJD@unexpected?5end?5of?5file?$AA@_gz_avail_gz_next4_inflateReset@4??_C@_0BJ@BLBBCOMO@unknown?5header?5flags?5set?$AA@??_C@_0BL@IHKGDAEE@unknown?5compression?5method?$AA@_inflateInit2_@16??_C@_05DFCKICEH@1?42?45?$AA@_gzgetc@4_gzungetc@8??_C@_0BP@IIKIGMCC@out?5of?5room?5to?5push?5characters?$AA@_gzgets@12_gzdirect@4_gzclose_r@4_inflateEnd@4 /479 1315202897 100666 6290 ` LQgdN/X.drectve]¬ .debug$S° @B.text¹Ò P`.textùÜÕ P`.textf»!  P`.text+ D  P`.textdN ²  P`.rdataä @0@.textZì P`.textdF ª  P`.text ¾ Þ  P`.text:ü 6  P`.text\@ P`.text2œ Î  P`.textsØ K P`.text2U‡ P`.text~‘ P`.textet P`.rdata~@@.textUÔ P`.textæÞÄ P`.rdata@0@.rdata!@0@ /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\gzlib.obj:<RRMicrosoft (R) Optimizing CompilerU‹ì‹E Pjÿ‹MQèƒÄ ] U‹ìƒìhŒèƒÄ‰Eüƒ}üu3Àéa‹EüÇ@‹MüÇA ‹UüÇBP‹EüÇ‹MüÇA<ÿÿÿÿ‹UüÇB@‹E¾…ɄŋU¾ƒø0|‹M¾ƒú9‹E¾ƒé0‹Uü‰J<é‹E¾‰Mø‹Uøƒê+‰Uøƒ}øLwu‹Eø¶ˆÿ$‹UüÇOëY‹EüDZyëN‹MüÇëC‹UüRèƒÄ3Àé‘ë.‹EüÇ@@ë"‹MüÇA@ë‹UüÇB@ë ‹EüÇ@@‹MƒÁ‰Mé-ÿÿÿ‹Uüƒ:u‹EüPèƒÄ3Àé8‹MQèƒÄƒÀPèƒÄ‹Uü‰B‹Eüƒxu‹MüQèƒÄ3Àéþ‹UR‹Eü‹HQèƒÄƒ} ÿt‹U ‰UôëU‹Eü8Ou ÇEðë$‹Mü‹ê±y÷ÚÒâþÿÿÂʉUðh¶‹Eð €P‹MQèƒÄ ‰Eô‹Uü‹Eô‰B‹Müƒyÿu‹Uü‹BPèƒÄ‹MüQèƒÄ3ÀëW‹Uüƒ:u ‹EüDZy‹Mü9Ou,jj‹Uü‹BPèƒÄ ‹Mü‰A,‹Uüƒz,ÿu ‹EüÇ@,‹MüQèƒÄ‹Eü‹å]à ´»å>Q]x’ò"U zˆŒ”˜œ ¤¨ U‹ì‹E8Ou(‹MÇA$‹UÇB(‹EÇ@4‹MÇA8‹UÇBHjj‹EPèƒÄ ‹MÇA ‹UÇBX]ÃIPU‹ì‹E Pjÿ‹MQèƒÄ ] U‹ìƒìƒ}ÿtjèƒÄ‰Eøƒ}øu3Àë;‹EPh‹MøQèƒÄ ‹U R‹EP‹MøQèƒÄ ‰Eü‹UøRèƒÄ‹Eü‹å]Â()1&E TU‹ìQƒ}uƒÈÿëE‹E‰Eü‹Mü9Ot‹Uü:±ytƒÈÿë$‹EüƒxtƒÈÿëƒ} uƒÈÿë ‹Mü‹U ‰Q3À‹å]ÂU‹ìQƒ}uƒÈÿëO‹E‰Eü‹Mü9Ou ‹UüƒzLtƒÈÿë0j‹Eü‹H,Q‹Uü‹BPèƒÄ ƒøÿuƒÈÿë‹MüQèƒÄ3À‹å]Â? UU‹ìƒìƒ}uƒÈÿé‹E‰Eô‹Mô9Ot‹Uô:±ytƒÈÿéâ‹EôƒxLtƒÈÿéу}tƒ}tƒÈÿ齃}u‹Mô‹U +Q ‰U ë‹EôƒxHt ‹Mô‹U QD‰U ‹EôÇ@H‹Mô9O…œ‹Uôƒz4…‹Eô‹H M ‹Uô;J0|~j‹Eô‹M +H$Q‹Uô‹BPèƒÄ ‰Eøƒ}øÿuƒÈÿé1‹MôÇA$‹UôÇB(‹EôÇ@Hjj‹MôQèƒÄ ‹UôÇBX‹Eô‹H M ‹Uô‰J ‹Eô‹@ é߃} }?‹Mô9OtƒÈÿ鯋Uô‹E B ‰E yƒÈÿé°‹MQèƒøÿuƒÈÿéš‹Uô:Oum¸…Àt ‹Môy$ÿÿÿw‹Uô‹B$;E  ‹Mô‹Q$‰Uðë‹E ‰Eð‹Mð‰Mü‹Uô‹B$+Eü‹Mô‰A$‹Uô‹B Eü‹Mô‰A ‹Uô‹B Eü‹Mô‰A ‹U +Uü‰U ƒ} t‹EôÇ@H‹Mô‹U ‰QD‹Eô‹@ E ‹å]Â Ñ Po/U‹ìƒì‹EP‹M Q‹URè‰Eü‹Eü;Eüu‹Mü‰MøëÇEøÿÿÿÿ‹Eø‹å] 2U‹ìƒìƒ}uƒÈÿëE‹E‰Eü‹Mü9Ot‹Uü:±ytƒÈÿë$‹EüƒxHt ‹Mü‹QD‰UøëÇEø‹Eü‹@ Eø‹å]ÂU‹ìƒì‹EPè‰Eü‹Mü;Müu‹Uü‰UøëÇEøÿÿÿÿ‹Eø‹å] 8U‹ìƒìƒ}uƒÈÿë\‹E‰Eø‹Mø9Ot‹Uø:±ytƒÈÿë;jj‹Eø‹HQèƒÄ ‰Eüƒ}üÿuƒÈÿë‹Uø:Ou ‹Eø‹Mü+HX‰Mü‹Eü‹å]Â> U‹ìƒì‹EPè‰Eü‹Mü;Müu‹Uü‰UøëÇEøÿÿÿÿ‹Eø‹å] >U‹ìƒì ƒ}u3Àëh‹E‰Eü‹Mü9Ot‹Uü:±yt3ÀëH‹Eü8Ou3‹Müƒy(t‹UüƒzXu‹Eüƒx$u ÇEøëÇEø‹Mø‰MôëÇEô‹Eô‹å]ÂU‹ìƒìƒ}u3ÀëO‹E‰Eü‹Mü9Ot‹Uü:±yt3Àë/ƒ} t ‹E ‹Mü‹QL‰‹EüƒxPu ÇEøë ‹Mü‹QP‰Uø‹Eø‹å]ÂMJU‹ìQƒ}uëC‹E‰Eü‹Mü9Ot ‹Uü:±ytë%‹Eü8Ou ‹MüÇA(jj‹UüRèƒÄ ‹å]ÂHPU‹ìV‹EƒxPt"‹MƒyLüt‹U‹BPPèƒÄ‹MÇAP‹U‹E ‰BLƒ}ué ƒ} üu‹M‹U‰QP錋E‹HQèƒÄ‹ð‹URèƒÄDPèƒÄ‹M‰AP‹UƒzPu‹EÇ@Lüÿÿÿ‹MÇAPë=‹U‹BP‹M‹QPRèƒÄh‹E‹HPQèƒÄ‹UR‹E‹HPQèƒÄ^]Ã_mz Wµ½TÉQÜQ: out of memory@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.text™‰¬ .textùǦy_gz_open $LN19#_lseek _open _strcpy _strlen $LN8$LN9 $LN10$LN11õ_free $LN13à$LN14Õ$LN15Ê$LN16¿$LN31ˆ$LN30¬_malloc .textf˜CìU .text™‰¬ .textdj;v$ _sprintf .rdata õÛ/.text ZêñDçW .text d*ü0c .text  ?Ú¨áo .text :\ÌD3| .text \ˆKËk‡ .text2°!O¶“ .texts´¾XÄ .text2°!O¶« .text~-}_gzeof@4 .texte;ß¾· .rdataÂ.textU¿0+¤Ù .textæ 'ç _strcat .rdataäDx¼ñ.rdatau–3 3_gzopen@8_gz_reset_gzopen64@8_gzdopen@8??_C@_07EBNKNFJN@?$DMfd?3?$CFd?$DO?$AA@_gzbuffer@8_gzrewind@4_gzseek64@12_gzseek@12_gztell64@4_gztell@4_gzoffset64@4_gzoffset@4_gzerror@8??_C@_00CNPNBAHC@?$AA@_gzclearerr@4_gz_error??_C@_02LMMGGCAJ@?3?5?$AA@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@/515 1315202897 100666 743 ` LQgdNø .drectve]Œ .debug$S´é@B.textGä P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\gzclose.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒìƒ}u¸þÿÿÿë.‹E‰Eü‹Mü9Ou‹URè‰Eøë ‹EPè‰Eø‹Eø‹å]Â) 7 @comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.textGÕæ—   )_gzclose@4_gzclose_w@4_gzclose_r@4 /553 1315202897 100666 19000 ` LQgdNŸA\.drectve]ü .debug$S´Y@B.rdataÆ Ó @@@.text$7[ P`.text7eœ  P`.text½Ø •  P`.textÿ© ¨  P`.text>Ð P`.textK P`.text-Y † P`.textXÌ P`.textt$ P`.text£˜; P`.textP{ P`.textÅË ! P`.text8š! P`.textZÒ",% P`.textúr%l& P`.text@¨&è( P`.text#.)Q, P`.textÂy,;- P`.textHY-¡2 P`.textÝ3â9 P`.text¿Z:? P`.textús?mA P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\deflate.obj:<RRMicrosoft (R) Optimizing Compiler deflate 1.2.5 Copyright 1995-2010 Jean-loup Gailly and Mark Adler   €€ € € 1.2.5PE\OhOtO€UŒU˜U¤U°U¼UU‹ì‹EP‹MQjjjj‹U R‹EPè]ÂU‹ìƒì ÇEôƒ} t‹E ¾¾;Êuƒ}$8t ¸úÿÿÿéýƒ}u ¸þÿÿÿéí‹EÇ@‹Mƒy u‹UÇB ‹EÇ@(‹Mƒy$u ‹UÇB$ƒ} ÿuÇE ƒ}}ÇEô‹E÷؉Eëƒ}~ÇEô‹Mƒé‰Mƒ}|0ƒ} *ƒ}u$ƒ}|ƒ}ƒ} |ƒ}  ƒ}|ƒ}~ ¸þÿÿÿé9ƒ}uÇE hÄj‹U‹B(P‹M‹Q ÿÒƒÄ ‰Eüƒ}üu ¸üÿÿÿé‹E‹Mü‰H‹Uü‹E‰‹Mü‹Uô‰Q‹EüÇ@‹Mü‹U‰Q0‹Eüº‹H0Óâ‹Eü‰P,‹Mü‹Q,ƒê‹Eü‰P4‹MƒÁ‹Uü‰JP‹Eüº‹HPÓâ‹Eü‰PL‹Mü‹QLƒê‹Eü‰PT‹Mü‹APƒÀ3Ò¹÷ñ‹Uü‰BXj‹Eü‹H,Q‹U‹B(P‹M‹Q ÿÒƒÄ ‹Mü‰A8j‹Uü‹B,P‹M‹Q(R‹E‹H ÿÑƒÄ ‹Uü‰B@j‹Eü‹HLQ‹U‹B(P‹M‹Q ÿÒƒÄ ‹Mü‰AD‹UüÇ‚À‹MƒÁ¸Óà‹Mü‰œj‹Uü‹‚œP‹M‹Q(R‹E‹H ÿÑƒÄ ‰Eø‹Uü‹Eø‰B‹Mü‹‘œÁâ‹Eü‰P ‹Müƒy8t‹Uüƒz@t‹EüƒxDt ‹Müƒyu&‹UüÇBš‹E‹ ‰H‹URè¸üÿÿÿë_‹Eü‹ˆœÑé‹UøJ‹Mü‰¤‹Uü‹‚œkÀ‹MüA‹Uü‰‚˜‹Eü‹M ‰ˆ„‹Uü‹E‰‚ˆ‹MüŠUˆQ$‹EPè‹å]  ]z»Ç;-U‹ìƒìV‹E‰EüÇEðƒ}t3‹Mƒyt*ƒ} t$‹U‹Bƒxt‹M‹Qƒzu‹E‹Hƒy*t ¸þÿÿÿé_‹U‹B‰Eô‹Môƒyt‹UR‹E P‹M‹Q0Rè‹M‰A0ƒ}üs3Àé&‹Uô‹Eü;B,v‹Mô‹Q,‰Uü‹E+EüE ‰E ‹MüQ‹U R‹Eô‹H8QèƒÄ ‹Uô‹Eü‰Bl‹Mô‹Uü‰Q\‹Eô‹H8¶‹Eô‰PH‹Mô‹Uô‹AH‹JXÓà‹Mô‹Q8¶J3Á‹Uô#BT‹Mô‰AHÇEøë ‹UøƒÂ‰Uø‹Eüƒè9Eøw|‹Mô‹Uô‹AH‹JXÓà‹Mô‹Q8‹Mø¶T 3‹Mô#AT‹Uô‰BH‹Eô‹HH‹Uô‹BD‹Uô‹uø#r4‹Uô‹R@f‹Hf‰r‹Mô‹Uø#Q4‹Eô‹H@·Q‰Uð‹Eô‹HH‹Uô‹BDf‹Uøf‰Hépÿÿÿƒ}ðtÇEð3À^‹å] yÀU‹ìƒìƒ}t‹Eƒxt‹Mƒy t ‹Uƒz$u ¸þÿÿÿéÈ‹EÇ@‹MÇA‹UÇB‹EÇ@,‹M‹Q‰Uü‹EüÇ@‹Mü‹Uü‹B‰A‹Müƒy}‹Uü‹B÷Ø‹Mü‰A‹Uü‹B÷ØÀƒà¹ƒÀq‹Mü‰A‹Uüƒzujjjè‰Eøëjjjè‰Eø‹E‹Mø‰H0‹UüÇB(‹EüPèƒÄ‹MüQèƒÄ3À‹å]µÅäðAU‹ìƒ}t ‹Eƒxu¸þÿÿÿë!‹M‹Qƒzt¸þÿÿÿë‹E‹H‹U ‰Q3À]ÂU‹ìƒ}t ‹Eƒxu¸þÿÿÿë.‹M‹Q‹E ‰‚¼º‹M Óâƒê#U‹E‹Hf‰‘¸3À] U‹ìƒì ÇEøƒ}t ‹Eƒxu ¸þÿÿÿé‹M‹Q‰Uüƒ} ÿuÇE ƒ} |ƒ}  ƒ}|ƒ}~ ¸þÿÿÿéÉ‹Eü‹ˆ„kÉ ‹‘‰Uô‹Eü‹M;ˆˆu‹U kÒ ‹Eô;‚t‹Mƒytj‹URè‰Eø‹Eü‹ˆ„;M ta‹Uü‹E ‰‚„‹M kÉ ·‘‹Eü‰€‹M kÉ ·‘‹Eü‰Œ‹M kÉ ·‘‹Eü‰‹M kÉ ·‘‹Eü‰P|‹Mü‹U‰‘ˆ‹Eø‹å] l Œ ¢/Ì â ø  U‹ìQƒ}t ‹Eƒxu¸þÿÿÿë8‹M‹Q‰Uü‹Eü‹M ‰ˆŒ‹Uü‹E‰‚€‹Mü‹U‰‘‹Eü‹M‰H|3À‹å]ÂU‹ìƒì‹E ƒÀÁèE ‹M ƒÁ?ÁéT‰Uøƒ}t ‹Eƒxu ‹EøƒÀé2‹M‹Q‰Uü‹Eü‹H‰Mìƒ}ìtƒ}ìtƒ}ìt)éÊÇEôéÅ‹Uü‹Bl÷ØÀƒàƒÀ‰Eôé­ÇEô‹Müƒy„‹Uü‹Bƒxt‹Mü‹Q‹B‹MôT‰Uô‹Eü‹H‹Q‰Uðƒ}ðt‹EôƒÀ‰Eô‹Mð¶‹EðƒÀ‰Eð…Òuä‹Mü‹Q‹B$‰Eðƒ}ðt‹MôƒÁ‰Mô‹Uð¶‹MðƒÁ‰Mð…Àuä‹Uü‹Bƒx,t ‹MôƒÁ‰MôëÇEô‹Uüƒz0u ‹EüƒxPt‹EøEôë‹M Áé M ‹U ÁêÊ‹E ÁèMôD‹å]ÂU‹ìƒì@Vƒ}t‹Eƒxt ƒ} ƒ} } ¸þÿÿÿép‹M‹Q‰Uü‹Eƒx t#‹Mƒ9u ‹Uƒzu‹Eüxšuƒ} t‹M‹‰Q¸þÿÿÿé%‹Eƒxu‹M‹‰Q¸ûÿÿÿé‹Eü‹M‰‹Uü‹B(‰Eø‹Mü‹U ‰Q(‹Eüƒx*…"‹Müƒy…jjjè‹U‰B0‹Eü‹H‹Uü‹BÆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹Eü‹HÆ ‹‹Uü‹BƒÀ‹Mü‰A‹Uü‹B‹Mü‹QÆ‹Eü‹HƒÁ‹Uü‰J‹Eüƒx…-‹Mü‹Q‹Eü‹HÆ ‹Uü‹BƒÀ‹Mü‰A‹Uü‹B‹Mü‹QÆ‹Eü‹HƒÁ‹Uü‰J‹Eü‹H‹Uü‹BÆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹Eü‹HÆ ‹Uü‹BƒÀ‹Mü‰A‹Uü‹B‹Mü‹QÆ‹Eü‹HƒÁ‹Uü‰J‹Eüƒ¸„ u ÇEÔë.‹Müƒ¹ˆ}‹Uüƒº„| ÇEÐëÇEЋEЉEÔ‹Mü‹Q‹Eü‹HŠEÔˆ ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹Eü‹HÆ ‹Uü‹BƒÀ‹Mü‰A‹UüÇBqéh‹Eü‹H3Òƒ9•‹Eü‹H‹A,÷ØÀƒàЋMü‹A‹H÷ÙɃáÑ‹Eü‹H‹A÷ØÀƒàЋMü‹A‹H$÷ÙɃáÑ‹Eü‹H‹Eü‹@ˆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹B%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰A‹Uü‹B‹HÁéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹Eü‹H‹QÁêâÿ‹Eü‹H‹Eü‹@ˆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹BÁè%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰A‹Uüƒº„ u ÇEÌë.‹Eüƒ¸ˆ}‹Müƒ¹„| ÇEÈëÇEÈ‹UȉUÌ‹Eü‹H‹Uü‹BŠÜ‹Eü‹HƒÁ‹Uü‰J‹Eü‹H‹Q âÿ‹Eü‹H‹Eü‹@ˆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Qƒzt\‹Eü‹H‹Qâÿ‹Eü‹H‹Eü‹@ˆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹BÁè%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰A‹Uü‹Bƒx,t ‹Mü‹QR‹Eü‹HQ‹U‹B0Pè‹M‰A0‹UüÇB ‹EüÇ@Eé‹Mü‹Q0ƒêÁâƒÂÁâ‰Uð‹Eüƒ¸ˆ} ‹Müƒ¹„} ÇEôë1‹Uüƒº„} ÇEôë‹Eüƒ¸„u ÇEôëÇEô‹MôÁá Mð‰Mð‹Uüƒzlt ‹EðƒÈ ‰Eð‹Eð3Ò¹÷ñ¸+ÂEð‰Eð‹MüÇAq‹UðR‹EüPèƒÄ‹Müƒylt.‹U‹B0ÁèP‹MüQèƒÄ‹U‹B0%ÿÿP‹MüQèƒÄjjjè‹U‰B0‹EüƒxE…V‹Mü‹Qƒz„<‹Eü‹H‰Mì‹Uü‹B‹Háÿÿ‹Uü9J ƒ´‹Eü‹Mü‹P;Q ub‹Eü‹Hƒy,t1‹Uü‹B;Eìv&‹Mü‹Q+UìR‹Eü‹HMìQ‹U‹B0Pè‹M‰A0‹URèƒÄ‹Eü‹H‰Mì‹Uü‹Eü‹J;H uëD‹Uü‹B‹H‹Uü‹B ‹Uü‹R‹uü‹vŠˆ2‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q ƒÂ‹Eü‰P é1ÿÿÿ‹Mü‹Qƒz,t1‹Eü‹H;Mìv&‹Uü‹B+EìP‹Mü‹QUìR‹E‹H0Qè‹U‰B0‹Eü‹H‹Uü‹B ;Au‹MüÇA ‹UüÇBIë ‹EüÇ@I‹MüƒyI…C‹Uü‹Bƒx„)‹Mü‹Q‰Uè‹Eü‹Mü‹P;Q ui‹Eü‹Hƒy,t1‹Uü‹B;Eèv&‹Mü‹Q+UèR‹Eü‹HMèQ‹U‹B0Pè‹M‰A0‹URèƒÄ‹Eü‹H‰Mè‹Uü‹Eü‹J;H u ÇEäëP‹Uü‹B‹H‹Uü‹B ¶ ‰Mä‹Uü‹B ƒÀ‹Mü‰A ‹Uü‹B‹Mü‹QŠMäˆ ‹Uü‹BƒÀ‹Mü‰Aƒ}ä…9ÿÿÿ‹Uü‹Bƒx,t1‹Mü‹Q;Uèv&‹Eü‹H+MèQ‹Uü‹BEèP‹M‹Q0Rè‹M‰A0ƒ}äu‹UüÇB ‹EüÇ@[ë ‹MüÇA[‹Uüƒz[…9‹Eü‹Hƒy$„‹Uü‹B‰Eà‹Mü‹Uü‹A;B ui‹Mü‹Qƒz,t1‹Eü‹H;Màv&‹Uü‹B+EàP‹Mü‹QUàR‹E‹H0Qè‹U‰B0‹EPèƒÄ‹Mü‹Q‰Uà‹Eü‹Mü‹P;Q u ÇEÜëP‹Eü‹H‹Q$‹Eü‹H ¶ ‰UÜ‹Eü‹H ƒÁ‹Uü‰J ‹Eü‹H‹Uü‹BŠU܈‹Eü‹HƒÁ‹Uü‰Jƒ}Ü…9ÿÿÿ‹Eü‹Hƒy,t1‹Uü‹B;Eàv&‹Mü‹Q+UàR‹Eü‹HMàQ‹U‹B0Pè‹M‰A0ƒ}Üu ‹UüÇBgë ‹EüÇ@g‹Müƒyg…º‹Uü‹Bƒx,„ ‹Mü‹QƒÂ‹Eü;P v ‹MQèƒÄ‹Uü‹BƒÀ‹Mü;A wp‹U‹B0%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰A‹U‹B0Áè%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰Ajjjè‹U‰B0‹EüÇ@që ‹MüÇAq‹Uüƒzt(‹EPèƒÄ‹Mƒyu‹UüÇB(ÿÿÿÿ3ÀéÎë,‹Eƒxu#‹M ;Møƒ} t‹U¡‰B¸ûÿÿÿé ‹Müyšu‹Uƒzt‹E‹ ‰H¸ûÿÿÿéu‹Uƒzu#‹Eüƒxtuƒ} „j‹Müyš„Z‹Uüƒºˆu‹E P‹MüQèƒÄ‰EÄëI‹Uüƒºˆu‹E P‹MüQèƒÄ‰EÀë"‹U R‹EüP‹Mü‹‘„kÒ ‹‚ÿЃÄ‰EÀ‹MÀ‰MÄ‹UĉU؃}Øtƒ}Øu ‹EüÇ@šƒ}Øtƒ}Øu‹Mƒyu ‹UüÇB(ÿÿÿÿ3Àéƒ}Ø…¤ƒ} u‹EüPèƒÄëjƒ} tdjjj‹MüQèƒÄƒ} uL‹Uü‹BL‹Mü‹QD3Éf‰LBþ‹Uü‹BLLþQj‹Uü‹BDPèƒÄ ‹Müƒytu‹UüÇBl‹EüÇ@\‹MQèƒÄ‹Uƒzu‹EüÇ@(ÿÿÿÿ3Àéïƒ} t3Àéâ‹Müƒy ¸éÏ‹Uüƒz…d‹E‹H0áÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹H0Áéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹H0Áéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹H0Áéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹Háÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹HÁéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹HÁéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹HÁéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰Jë/‹E‹H0ÁéQ‹UüRèƒÄ‹E‹H0áÿÿQ‹UüRèƒÄ‹EPèƒÄ‹Müƒy~‹Uü‹B÷Ø‹Mü‰A‹Uü3Àƒz”À^‹å]Âf…Ѽ5¯5Ç5Õap8©¸8bù 8²  8 ­ 8ë  h [‰ X«  2. 1c 0Œ 8M5f5r8U‹ì‹E Áè‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U âÿ‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P]ÃU‹ìQ‹E‹H‹Q‰Uü‹E‹Mü;Hv ‹U‹B‰Eüƒ}üué’‹MüQ‹U‹B‹HQ‹U‹B PèƒÄ ‹M‹Q Uü‹E‰P ‹M‹Q‹BEü‹M‹Q‰B‹E‹HMü‹U‰J‹E‹H+Mü‹U‰J‹E‹H‹Q+Uü‹E‹H‰Q‹U‹Bƒxu‹M‹Q‹E‹H‹R‰Q‹å]ÃEU‹ìQƒ}t ‹Eƒxu ¸þÿÿÿé‹M‹Q‹B‰Eüƒ}ü*t1ƒ}üEt+ƒ}üIt%ƒ}ü[tƒ}ügtƒ}üqt}üšt ¸þÿÿÿéÒ‹M‹Qƒzt‹E‹H‹QR‹E‹H(Q‹U‹B$ÿЃÄ‹M‹QƒzDt‹E‹H‹QDR‹E‹H(Q‹U‹B$ÿЃÄ‹M‹Qƒz@t‹E‹H‹Q@R‹E‹H(Q‹U‹B$ÿЃÄ‹M‹Qƒz8t‹E‹H‹Q8R‹E‹H(Q‹U‹B$ÿЃÄ‹M‹QR‹E‹H(Q‹U‹B$ÿЃÄ‹MÇA3Àƒ}üq•Àƒèƒàý‹å]ÂU‹ìƒì ƒ} tƒ}t ‹E ƒxu ¸þÿÿÿé/‹M ‹Q‰Uôj8‹E P‹MQèƒÄ hÄj‹U‹B(P‹M‹Q ÿÒƒÄ ‰Eøƒ}øu ¸üÿÿÿéè‹E‹Mø‰HhÄ‹UôR‹EøPèƒÄ ‹Mø‹U‰j‹Eø‹H,Q‹U‹B(P‹M‹Q ÿÒƒÄ ‹Mø‰A8j‹Uø‹B,P‹M‹Q(R‹E‹H ÿÑƒÄ ‹Uø‰B@j‹Eø‹HLQ‹U‹B(P‹M‹Q ÿÒƒÄ ‹Mø‰ADj‹Uø‹‚œP‹M‹Q(R‹E‹H ÿÑƒÄ ‰Eü‹Uø‹Eü‰B‹Møƒy8t‹Uøƒz@t‹EøƒxDt ‹Møƒyu‹URè¸üÿÿÿéþ‹Eø‹H,ÑáQ‹Uô‹B8P‹Mø‹Q8RèƒÄ ‹Eø‹H,ÑáQ‹Uô‹B@P‹Mø‹Q@RèƒÄ ‹Eø‹HLÑáQ‹Uô‹BDP‹Mø‹QDRèƒÄ ‹Eø‹H Q‹Uô‹BP‹Mø‹QRèƒÄ ‹Eô‹Mô‹P+Q‹EøP‹Mø‰Q‹Uø‹‚œÑè‹MüA‹Eø‰¤‹Mø‹‘œkÒ‹EøP‹Mø‰‘˜‹UøÂ”‹Eø‰ ‹MøÁˆ ‹Uø‰Š$ ‹Eø| ‹Mø‰0 3À‹å]Â9ƒH;n¬ÉU‹ì‹E‹H,Ñá‹U‰J<‹E‹HL‹U‹BD3Òf‰THþ‹E‹HLT þRj‹E‹HDQèƒÄ ‹U‹‚„kÀ ·ˆ‹U‰Š€‹E‹ˆ„kÉ ·‘‹E‰Œ‹M‹‘„kÒ ·‚‹M‰‹U‹‚„kÀ ·ˆ‹U‰J|‹EÇ@l‹MÇA\‹UÇBt‹EÇ@x‹MÇA`‹UÇBh‹EÇ@Hè]Ã90O k ‡ £ ôBU‹ìƒìÇEøÿÿ‹E‹H ƒé9Møv ‹U‹B ƒè‰Eø‹Mƒytw0‹URèƒÄ‹Eƒxtu ƒ} u3Àéê‹MƒytuéQ‹U‹Bl‹MAt‹U‰Bl‹EÇ@t‹M‹Q\Uø‰Uü‹Eƒxlt‹M‹Ql;Uü‚„‹E‹Hl+Mü‹U‰Jt‹E‹Mü‰Hl‹Uƒz\|‹E‹H8‹UJ\‰MôëÇEôj‹E‹M‹Pl+Q\R‹EôP‹MQèƒÄ‹U‹E‹Hl‰J\‹U‹PèƒÄ‹M‹ƒzu3Àé‹E‹M‹Pl+Q\‹E‹H,é;Ñrl‹Uƒz\|‹E‹H8‹UJ\‰MðëÇEðj‹E‹M‹Pl+Q\R‹EðP‹MQèƒÄ‹U‹E‹Hl‰J\‹U‹PèƒÄ‹M‹ƒzu3Àéévþÿÿ‹Eƒx\|‹M‹Q8‹EP\‰UìëÇEì3Ƀ} ”ÁQ‹U‹E‹Jl+H\Q‹UìR‹EPèƒÄ‹M‹U‹Bl‰A\‹M‹RèƒÄ‹E‹ƒyu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD‹å]Ã5IñF 8yF“8òF 8U‹ìƒì$‹E‹H,‰Mð‹U‹E‹J<+Ht‹U+Jl‰Mô3Àt/ƒ}ôu‹Mƒylu‹Uƒztu‹Eð‰Eôëƒ}ôÿu ‹Môƒé‰Mô‹U‹B,‹Mð”úþÿÿ‹E9Pl‚‹MðQ‹U‹B8EðP‹M‹Q8RèƒÄ ‹E‹Hp+Mð‹U‰Jp‹E‹Hl+Mð‹U‰Jl‹E‹H\+Mð‹U‰J\‹E‹HL‰Mø‹U‹BD‹MøH‰Uü‹Eüƒè‰Eü‹Mü·‰Uì‹Eì;Eðr ‹Mì+Mð‰MàëÇEà‹Uüf‹Eàf‰‹Møƒé‰Møu¿‹Uð‰Uø‹E‹H@‹UøQ‰Eü‹Müƒé‰Mü‹Uü·‰Eì‹Mì;Mðr ‹Uì+Uð‰UÜëÇEÜ‹Eüf‹MÜf‰‹Uøƒê‰Uøu¿‹EôEð‰Eô‹M‹ƒzuéš‹EôP‹M‹Q8‹EPl‹MQtR‹U‹PèƒÄ ‰Eø‹M‹QtUø‹E‰Pt‹MƒytrC‹U‹B8‹M‹Ql¶‹M‰AH‹U‹E‹RH‹HXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹Uzts‹E‹ƒy…ìýÿÿ‹U‹E‹ŠÀ;H<ƒç‹U‹Bl‹MAt‰Eä‹U‹‚À;EäsH‹M‹Q<+Uä‰Uè}èvÇEè‹EèPj‹M‹Q8UäRèƒÄ ‹EäEè‹M‰Àé‚‹Uä‹E9Àsn‹MäÁ‹U+ŠÀ‰Mè‹E‹M‹P<+‘À9Uèv‹E‹M‹P<+‘À‰Uè‹EèPj‹M‹Q8‹EÀRèƒÄ ‹M‹‘ÀUè‹E‰À‹å]É£L‚00U‹ìQ‹E‹H‰Mü‹Uü;Uv‹E‰Eüƒ}üu3Àé–‹M‹Q+Uü‹E‰P‹M‹Qƒzu‹EüP‹M‹R‹E‹H0Qè‹U‰B0ë(‹E‹Hƒyu‹UüR‹E‹Q‹U‹B0Pè‹M‰A0‹UüR‹E‹Q‹U RèƒÄ ‹E‹Mü‹U‰ ‹E‹HMü‹U‰J‹Eü‹å]ÃU˜U‹ìƒì V‹Exts3‹MQèƒÄ‹Uzts ƒ} u3Àé ‹EƒxtuérÇEø‹Mƒyt‚ƒ‹U‹E‹RH‹HXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹U‹BH‹M‹QD‹M‹u‹Il#N4‹u‹v@f‹Bf‰N‹E‹M‹Pl#Q4‹E‹H@·Q‰Uø‹E‹HH‹U‹BD‹Uf‹Rlf‰Hƒ}øt.‹E‹Hl+Mø‹U‹B,-;Èw‹MøQ‹URèƒÄ‹M‰A`‹Uƒz`‚o‹E‹H`ƒéˆM÷‹U‹E‹Jl+Hpf‰Mð‹U‹‚ ‹M‹‘¤f‹Mðf‰ B‹U‹‚˜‹M‹‘ ŠM÷ˆ ‹U‹‚ ƒÀ‹M‰ f‹Uðfƒêf‰Uð¶E÷¶ˆ‹Uf‹„Š˜fƒÀ¶M÷¶‘‹Mf‰„‘˜·Uðú}·E𶈉Mèë·UðÁú¶‚‰Eè‹Mè‹Uf‹„Šˆ fƒÀ‹Mè‹Uf‰„Šˆ ‹E‹ˆœƒé‹U3À9Š ”À‰Eü‹M‹U‹At+B`‹M‰At‹U‹E‹J`;ˆ€‡Û‹Uƒzt‚΋E‹H`ƒé‹U‰J`‹E‹HlƒÁ‹U‰Jl‹E‹M‹PH‹IXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹U‹BH‹M‹QD‹M‹u‹Il#N4‹u‹v@f‹Bf‰N‹E‹M‹Pl#Q4‹E‹H@·Q‰Uø‹E‹HH‹U‹BD‹Uf‹Rlf‰H‹E‹H`ƒé‹U‰J`‹Eƒx`…Rÿÿÿ‹M‹QlƒÂ‹E‰Plë_‹M‹Ql‹EP`‹M‰Ql‹UÇB`‹E‹H8‹U‹Bl¶ ‹U‰JH‹E‹M‹PH‹IXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QHé´‹U‹B8‹M‹QlŠˆEï‹M‹‘ ‹E‹ˆ¤3Àf‰Q‹M‹‘˜‹E‹ˆ ŠEïˆ ‹M‹‘ ƒÂ‹E‰ ¶Mï‹Uf‹„Š”fƒÀ¶Mï‹Uf‰„Š”‹E‹ˆœƒé‹U3À9Š ”À‰Eü‹M‹Qtƒê‹E‰Pt‹M‹QlƒÂ‹E‰Plƒ}ütl‹Mƒy\|‹U‹B8‹MA\‰EäëÇEäj‹U‹E‹Jl+H\Q‹UäR‹EPèƒÄ‹M‹U‹Bl‰A\‹M‹RèƒÄ‹E‹ƒyu3ÀééOûÿÿ‹Uƒz\|‹E‹H8‹UJ\‰MàëÇEà3Àƒ} ”ÀP‹M‹U‹Al+B\P‹MàQ‹URèƒÄ‹E‹M‹Ql‰P\‹E‹QèƒÄ‹U‹ƒxu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD^‹å]ÃIR”Q®QÐPãP€Fš8ùF8U‹ìƒì(V‹Exts3‹MQèƒÄ‹Uzts ƒ} u3Àé ‹EƒxtuéYÇEø‹Mƒyt‚ƒ‹U‹E‹RH‹HXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹U‹BH‹M‹QD‹M‹u‹Il#N4‹u‹v@f‹Bf‰N‹E‹M‹Pl#Q4‹E‹H@·Q‰Uø‹E‹HH‹U‹BD‹Uf‹Rlf‰H‹E‹M‹Q`‰Px‹E‹M‹Qp‰Pd‹EÇ@`ƒ}øt|‹M‹U‹Ax;‚€sk‹M‹Ql+Uø‹E‹H,é;ÑwR‹UøR‹EPèƒÄ‹M‰A`‹Uƒz`w3‹Eƒ¸ˆt‹Mƒy`u‹U‹E‹Jl+Hpùv ‹UÇB`‹Eƒxx‚®‹M‹U‹A`;Bx‡œ‹M‹Ql‹E‹HtT ý‰Uô‹E‹HxƒéˆMó‹U‹Blƒè‹M+Adf‰Eì‹U‹‚ ‹M‹‘¤f‹Mìf‰ B‹U‹‚˜‹M‹‘ ŠMóˆ ‹U‹‚ ƒÀ‹M‰ f‹Uìfƒêf‰Uì¶E󶈋Uf‹„Š˜fƒÀ¶Mó¶‘‹Mf‰„‘˜·Uìú}·E춈‰Mäë·UìÁú¶‚‰Eä‹Mä‹Uf‹„Šˆ fƒÀ‹Mä‹Uf‰„Šˆ ‹E‹ˆœƒé‹U3À9Š ”À‰Eü‹M‹Qxƒê‹E‹Ht+Ê‹U‰Jt‹E‹Hxƒé‹U‰Jx‹E‹HlƒÁ‹U‰Jl‹E‹Hl;Mô‡ƒ‹U‹E‹RH‹HXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹U‹BH‹M‹QD‹M‹u‹Il#N4‹u‹v@f‹Bf‰N‹E‹M‹Pl#Q4‹E‹H@·Q‰Uø‹E‹HH‹U‹BD‹Uf‹Rlf‰H‹E‹Hxƒé‹U‰Jx‹Eƒxx…Cÿÿÿ‹MÇAh‹UÇB`‹E‹HlƒÁ‹U‰Jlƒ}ütl‹Eƒx\|‹M‹Q8‹EP\‰UàëÇEàj‹M‹U‹Al+B\P‹MàQ‹URèƒÄ‹E‹M‹Ql‰P\‹E‹QèƒÄ‹U‹ƒxu3Àé¡é^‹Mƒyh„)‹U‹Bl‹M‹Q8ŠDÿˆEë‹M‹‘ ‹E‹ˆ¤3Àf‰Q‹M‹‘˜‹E‹ˆ ŠEëˆ ‹M‹‘ ƒÂ‹E‰ ¶Më‹Uf‹„Š”fƒÀ¶Më‹Uf‰„Š”‹E‹ˆœƒé‹U3À9Š ”À‰Eüƒ}ütZ‹Mƒy\|‹U‹B8‹MA\‰EÜëÇEÜj‹U‹E‹Jl+H\Q‹UÜR‹EPèƒÄ‹M‹U‹Bl‰A\‹M‹RèƒÄ‹E‹HlƒÁ‹U‰Jl‹E‹Htƒé‹U‰Jt‹E‹ƒyu3Àéhë(‹UÇBh‹E‹HlƒÁ‹U‰Jl‹E‹Htƒé‹U‰Jtéhúÿÿ‹Eƒxh„¡‹M‹Ql‹E‹H8ŠT ÿˆUê‹E‹ˆ ‹U‹‚¤3Òf‰H‹E‹ˆ˜‹U‹‚ ŠUꈋE‹ˆ ƒÁ‹U‰Š ¶Eê‹Mf‹””fƒÂ¶Eê‹Mf‰””‹U‹‚œƒè‹M3Ò9 ”‰Uü‹EÇ@h‹Mƒy\|‹U‹B8‹MA\‰EØëÇEØ3Òƒ} ”ÂR‹E‹M‹Pl+Q\R‹EØP‹MQèƒÄ‹U‹E‹Hl‰J\‹U‹PèƒÄ‹M‹ƒzu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD^‹å]ÃI8R,QFQhP{PF8F98ŽF¨8U‹ìƒì(‹Exts3‹MQèƒÄ‹Uzts ƒ} u3Àé„‹Eƒxtuéë‹MÇA`‹Uƒzt‚h‹Eƒxl†[‹M‹Q8‹E‹HlT ÿ‰Uø‹Eø¶‰Mü‹UøƒÂ‰Uø‹Eø¶9Mü…'‹UøƒÂ‰Uø‹Eø¶9Mü…‹UøƒÂ‰Uø‹Eø¶9Mü…÷‹U‹B8‹M‹Ql„‰Eð‹MøƒÁ‰Mø‹Uø¶9Eü…œ‹MøƒÁ‰Mø‹Uø¶9Eü…„‹MøƒÁ‰Mø‹Uø¶9Eüup‹MøƒÁ‰Mø‹Uø¶9Eüu\‹MøƒÁ‰Mø‹Uø¶9EüuH‹MøƒÁ‰Mø‹Uø¶9Eüu4‹MøƒÁ‰Mø‹Uø¶9Eüu ‹MøƒÁ‰Mø‹Uø¶9Eüu ‹Mø;Mð‚Lÿÿÿ‹Uð+Uø¸+‹M‰A`‹U‹E‹J`;Htv ‹U‹E‹Ht‰J`‹Uƒz`‚4‹E‹H`ƒéˆMïºf‰Uè‹E‹ˆ ‹U‹‚¤f‹Uèf‰H‹E‹ˆ˜‹U‹‚ ŠUE‹ˆ ƒÁ‹U‰Š f‹Eèfƒèf‰Eè¶Mï¶‘‹Ef‹Œ˜fƒÁ¶Uï¶‚‹Uf‰Œ‚˜·Eè=}·Mè¶‘‰Uàë·EèÁø¶ˆ‰Mà‹Uà‹Ef‹Œˆ fƒÁ‹Uà‹Ef‰Œˆ ‹M‹‘œƒê‹E3É9 ”Á‰Mô‹U‹E‹Jt+H`‹U‰Jt‹E‹Hl‹UJ`‹E‰Hl‹MÇA`é´‹U‹B8‹M‹QlŠˆEç‹M‹‘ ‹E‹ˆ¤3Àf‰Q‹M‹‘˜‹E‹ˆ ŠEçˆ ‹M‹‘ ƒÂ‹E‰ ¶Mç‹Uf‹„Š”fƒÀ¶Mç‹Uf‰„Š”‹E‹ˆœƒé‹U3À9Š ”À‰Eô‹M‹Qtƒê‹E‰Pt‹M‹QlƒÂ‹E‰Plƒ}ôtl‹Mƒy\|‹U‹B8‹MA\‰EÜëÇEÜj‹U‹E‹Jl+H\Q‹UÜR‹EPèƒÄ‹M‹U‹Bl‰A\‹M‹RèƒÄ‹E‹ƒyu3ÀééÖûÿÿ‹Uƒz\|‹E‹H8‹UJ\‰MØëÇEØ3Àƒ} ”ÀP‹M‹U‹Al+B\P‹MØQ‹URèƒÄ‹E‹M‹Ql‰P\‹E‹QèƒÄ‹U‹ƒxu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD‹å]ÃI@QZQ{PŽPøF8qF‹8U‹ìƒì‹Eƒxtu'‹MQèƒÄ‹Uƒztuƒ} u3ÀéÅé5‹EÇ@`‹M‹Q8‹E‹HlŠ ˆUû‹E‹ˆ ‹U‹‚¤3Òf‰H‹E‹ˆ˜‹U‹‚ ŠUûˆ‹E‹ˆ ƒÁ‹U‰Š ¶Eû‹Mf‹””fƒÂ¶Eû‹Mf‰””‹U‹‚œƒè‹M3Ò9 ”‰Uü‹E‹Htƒé‹U‰Jt‹E‹HlƒÁ‹U‰Jlƒ}ütl‹Eƒx\|‹M‹Q8‹EP\‰UôëÇEôj‹M‹U‹Al+B\P‹MôQ‹URèƒÄ‹E‹M‹Ql‰P\‹E‹QèƒÄ‹U‹ƒxu3Àéé›þÿÿ‹Mƒy\|‹U‹B8‹MA\‰EðëÇEð3Òƒ} ”ÂR‹E‹M‹Pl+Q\R‹EðP‹MQèƒÄ‹U‹E‹Hl‰J\‹U‹PèƒÄ‹M‹ƒzu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD‹å]ÃI3FM8¬FÆ8@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.rdataÆ Ðú±ðH,À.text$š¶j²O .text7lrè` r_zcfree _zcalloc .text½žýi·| _memcpy • .textÿôÃYò¡ ± » .text>xa2Å .text Kß(Ù .text -Y/M½ê .text X»†6ü .text te¸6<  .text £ ‡òR _memset ' 9 .textP>AŽD .textÅ÷“oQ .text8ºPX` .textZ9&Ún .textúÓ®Ã_lm_init } .text@©Óê9‰ ™ .text#îîNLª .textÂ­Š¢¾· .textH ªâøçÁ ÏÛé .textÝ ~>À&ø .text¿ ݺ .textúu\&‰ !_deflate_copyright_configuration_table?my_version@?1??deflateInit2_@@9@9_deflateInit_@16_deflateInit2_@32_z_errmsg_deflateSetDictionary@12_adler32@12_deflateReset@4__tr_init_crc32@12_deflateSetHeader@8_deflatePrime@12_deflateParams@12_deflateTune@20_deflateBound@8_deflate@8__tr_stored_block__tr_align_putShortMSB_flush_pending_deflateEnd@4_deflateCopy@8_match_init_deflate_stored__tr_flush_block_fill_window_read_buf_deflate_fast__dist_code__length_code_longest_match_deflate_slow_deflate_rle_deflate_huff/591 1315202896 100666 13862 ` L PgdN3$.drectve]ô .debug$S°Q@B.rdata @@@.text # # P`.text#% P`.textò„%v)& P`.textfò*X/& P`.textÔ0ï0 P`.textù02 P`.text>R2 P`.textA2Ñ2 P`.textÛ2ö2 P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\crc32.obj:<RRMicrosoft (R) Optimizing Compiler–0w,aîºQ ™Ämôjp5¥c飕dž2ˆÛ¤¸ÜyéÕàˆÙÒ—+L¶ ½|±~-¸ç‘¿d·ò °jHq¹óÞA¾„}ÔÚëäÝmQµÔôÇ…ÓƒV˜lÀ¨kdzùbýìÉeŠO\Ùlcc=úõ È n;^iLäA`Õrqg¢Ñäjm ¨Zjz Ïäÿ “'® ±ž}D“ðÒ£‡hòþÂi]Wb÷Ëge€q6lçknvÔþà+Ó‰ZzÚÌJÝgoß¹ùùホC¾·Õް`è£ÖÖ~“Ñ¡ÄÂØ8RòßOñg»ÑgW¼¦Ýµ?K6²HÚ+ ØL ¯öJ6`zAÃï`ßUßg¨ïŽn1y¾iFŒ³a˃f¼ Òo%6âhR•w ÌG »¹"/&U¾;ºÅ( ½²’Z´+j³\§ÿ×Â1Ïе‹žÙ,®Þ[°Âd›&òc윣ju “m© œ?6ë…grW‚J¿•z¸â®+±{8¶ ›ŽÒ’ ¾Õå·ïÜ|!ßÛ ÔÒÓ†BâÔñø³ÝhnƒÚ;[&¹öáw°owG·æZˆpjÿÊ;f\ ÿžei®bøÓÿkaEÏlxâ  îÒ ×TƒN³9a&g§÷`ÐMGiIÛwn>JjÑ®ÜZÖÙf ß@ð;Ø7S®¼©Åž»ÞϲGéÿµ0ò½½ŠÂºÊ0“³S¦£´$6к“×Í)WÞT¿gÙ#.zf³¸JaÄh]”+o*7¾ ´¡Ž ÃßZï-A1‚b62ÃS-+ÅldEôw}†§ZVÇ–AOŠÙÈI»ÂÑŠèïúËÙôã Oµ¬M~®µŽ-ƒžÏ˜‡QÂJ#ÙSÓpôx’AïaU×®.æµ7×µ˜–„ƒY˜‚©›Ûú-°šË6©]]wællÿß?AÔžZÍ¢$„•㟌 F²§aw©¾¦áèñçÐóè$ƒÞÃe²ÅÚª®]]ëŸFD(Ìkoiýpv®k19ïZ* ,  m8ó6Fß²]ÆqTpí0ekô÷ó*»¶Â1¢u‘‰4 û¼Ÿº„yÞ©%8ï²<ÿyós¾Hèj}ÅA<*ÞXOyðD~bé‡-OÂÆTÛŠ”@»ƒè#¦ÂÙ8¿ Å 8Lô»!§– Ζ Ì\H1×E‹búnÊSáwT]»ºl £Ö?ˆ—–‘P˜×Þ©ÌÇÒúáì“Ëúõ\×bræykÞµT@Ÿ„OYX#Úp8$›A#=§kýeæZæ|% ËWd8ÐN£®‘⟊!̧3`ý¼*¯á$­îÐ?´-ƒŸl² †«$HÉêSÐ)F~ûhweâöy?/·H$6t 5*ò¼SK³HRpÞey1ï~`þóæç¿Âýþ|‘ÐÕ= ËÌú6Šƒ»‘šxT¼±9e§¨K˜ƒ; ©˜"Éúµ ˆË®O]ï_lôFÍ?ÙmŒÂtCZó#AêÁplÁ€AwØG×6—æ-ŽÅµ¥„„¼ŠAq[»Zh˜èwCÙÙlZO-_~6 œ-'Ý>˜¹S1ƒ b®‹ÑSµ’ÅôÝWôïÄ”§ÂïÕ–Ùöé¼®¨·kÞ1œ*ï*…íykʬHpÓo]ø.*Fáá6Þf ÅcTèT"eóMåó²¤Â©g‘„0& Ÿ)¸®ÅäùŸÞý:ÌóÖ{ýèϼk©€ýZ²™> Ÿ²8„«°$,ñ52F*sw1´ápHõÐkQ6ƒFzw²]cN×úËæáÒ̵Ìù„×àJ–¯ #¶Èp ‰A»„F]#l8Ä?1…(B˜Og©T~ÀúyUËbLÅ8^ô#˜§³Ü–ªTåZ1Oü™bbרSyÎOáIV~úP•-×{ÔÌbŠ-R»–4‘è»ÐÙ ìó~^­ÂeGn‘Hl/ Suè6:© #jT$+e?äy§–¥H¼f‘¤'*нà¼Ëò¡ÐëbÞýÀ#ïæÙ½á¼üЧ ?ƒŠ&~²‘?¹$ÐpøËi;FæBzwý[µkeÜôZ~Å7 Sîv8H÷±® ¸ðŸ¡3Ì?Šrý$“7jÂnÔ„Y¾Fܨ ëÂ˲|…O¸Q;ÑÖ…— áïU dù S“Ø -ž =G\ p£&GÉäw¢)`¬ /›aíÂß«õµiÈò5ÿ˜÷¦&±‘LsZ<#0þzޏMäzàFM8×,9Ž’É;¹ø :<îD? „†>R:À(ôq-Ãv³,šÈõ.­¢7/Àšp÷çXq®Ys™3Ür%“w+OQvrñtE›Õux܉~O¶K }!bÏ|¤t€y“BxÊ zýÊÆ{°.¼l‡D~mÞú8oéúnl†µk[ìwjR1h58ói¯b?mcf«+aQÁé`Ôצeã½ddº"fiàg Ë×H¡INSKyu‘JücÞOË N’·ZL¥Ý˜M˜šÄF¯ðGöN@EÁ$‚DD2ÍAsX@*æIBŒ‹CPhñTg3U>¼uW Ö·VŒÀøS»ª:Râ|PÕ~¾Qè9âZßS [†ífY±‡¤X4‘ë]û)\ZEo^m/­_€5á·q÷àîϱâÙ¥sã\³<ækÙþç2g¸å zä8J&ï äîVž¢ìaô`íäâ/èÓˆíéŠ6«ë½\iêð¸ýÇÒÑüžl—þ©Uÿ,úzØûBÄžùu®\øHéóƒÂò&=„ðWFñ”A ô£+Ëõú•÷ÍÿOö`]xÙW7ºØ‰üÚ9ã>Û¼õqÞ‹Ÿ³ßÒ!õÝåK7ÜØ k×ïf©Ö¶ØïÔ²-Õ¤bÐ3ΠÑjpæÓ]$Òþ^Å'”œÄ~*ÚÆI@ÇÌVWÂû<•â‚ÓÁ•èÀ¨¯MËŸÅÊÆ{ÉÈñ ÉtDÌCm†ÍÓÀÏ-¹Î@–¯‘wüm.B+’(铜>¦–«Td—òê"•Å€à”øÇ¼ŸÏ­~ž–8œ¡yú$oµ˜w™J»1›}Ñóš05‰_KŒ^á Ži‹Ï쀊Û÷B‹‚I‰µ#ƈˆdšƒ¿X‚æ°€ÑÚÜTÌ“„c¦Q…:‡ rÕ† Ðâ©—º ¨Îfªùn¤«|xë®K)¯¬o­%Æ­¬ñ§/ë3¦vUu¤A?·¥Ä)ø óC:¡ªý|£—¾¢Ðsĵç´¾§@¶‰Í‚· ÛͲ;±³bI±Ue‹°h"×»_HºöS¸1œ‘¹´ŠÞ¼ƒà½Ú^Z¿í4˜¾eg¼¸‹È ªî¯µW—b2ðÞ7Ü_k%¹8×ï(´ÅŠO}dà½o‡׸¿ÖJÝØjò3wßàVcXŸWPú0¥èŸúqø¬BÈÀ{ß­§ÇgCru&oÎÍp­•-û·¤?žÐ‡'èÏBs¢¬ ưÉGz>¯2 [ÈŽµg; Ї²i8P/ _ì—âðY…‡—å=ч†e´à:ÝZOÏ?(3w†äêãwXR Øí@h¿Qø¡ø+ðÄŸ—H*0"ZOWžâöoI“õÇ}§@ÕÀümNП5+·#Å–Ÿ *'Gýº| A’ô÷èH¨=X›X?¨#¶1Ó÷¡‰jÏv¨Ê¬á¾„`ÃÒp ^·æY¸©ô<ßL…çÂÑà€~i/Ë{kHwâ ËÇh±s)ÇaL ¸Ùõ˜oDÿÓü~Pfî7ÚVM'¹(@¶Æï°¤£ˆ °Û×g9‘xÒ+ôn“÷&;fšƒˆ?/‘íX“)T`D´1ø ߨMºÏñ¦ìß’þ‰¸.Fg›Tp'ì»HðqÞ/LÉ0€ùÛUçEcœ ?kùǃÓh6ÁrŠyË7]ä®Pá\@ÿTN%˜èösˆ‹®ï7ø@‚'>¼$é!AxU™¯×à‹Ê°\3;¶Yí^ÑåU°~PGÕìÿl!;b F‡Úçé2È‚ŽŽpÔží(±ùQ_Vä‚:1X:ƒ §æn3Á† m¦:µ¤á@½Á†ü/)IJNõ¯óv"2–žŠx¾+˜Ù— KÉôx.®HÀÀýÒ¥fAj^–÷y9*O—–Ÿ]òñ#åkM`~×õŽÑbçë¶Þ_RŽ Â7éµzÙFh¼!¼Ðê1߈Vc0aùÖ"žj𽦽ØÁ¿6n´­S šNrÿ)Î¥†{·táÇÍÙ’¨¾¬*F8#v¥€ufÆØz`þ®Ïr›ÉsÊ"ñ¤WG–ï©9­ýÌ^EîMvc‰ñÎ&DÜèAødQy/ù4“AÚ±&S¿ÖšëéÆù³Œ¡E bðiL¡¾Q›<Û6'„5™’–Pþ..™¹T&üÞèžq]Œwá4Î.6©«IŠEæ? ƒ»v‘àãö\[ýYéI˜>Uñ!‚lDa>Ԫ΋ÆÏ©7~8AÖ]&Ãn³‰v|ÖîÊÄoÖY ±¡áäóy¨K×i˲w«\¡Â¹9Æ~€þ©œå™$ 6 6nQާf†ÂqÚ>,Þo,I¹Ó”ð •渱{I £.±H>ÒC-YnûÃöÛ馑gQ©°ÌzÎ t”a¹fñÞw0–îa,™ QºmÄpjôéc¥5žd•£Ûˆ2yܸ¤àÕé—ÒÙˆ ¶L+~±|½ç¸-¿‘·dj° òó¹qH„¾AÞÚÔ}mÝäëôÔµQƒÓ…Çl˜Vdk¨ÀýbùzŠeÉì\OclÙú=c õ;n ÈLi^Õ`Aä¢gqr<äÑKÔGÒ …ý¥ µk5µ¨úB²˜lÛ»ÉÖ¬¼ù@2ØlãEß\uÜÖ Ï«Ñ=Y&Ù0¬QÞ:È×Q€¿Ða!´ôµV³Ä#Ϻ•™¸½¥(¸ž_ˆÆ Ù²± é$/o|‡XhLÁa«¶f-=vÜAÛq˜Ò ¼ïÕ*q±…‰¶µŸ¿ä¥è¸Ô3xÉ¢ù4– ¨Žá˜j »m=-‘dl—æc\kkQôlab…e0ØòbNl•í¥{‚ôÁõÄWe°ÙÆ·éP‹¾¸êü¹ˆ|bÝßÚ-IŒÓ|óûÔLeM²aX:µQΣ¼tÔ»0âJߥA=ؕפÑÄmÓÖôûCiéj4nÙü­gˆFÚ`¸ÐD-s3åª L_Ý |ÉPq<'Aª¾ É †Whµ% o…³¹fÔ ÎaäŸ^Þù)Ùɘ°Ð˜"Çר´Y³=.´ ·½\;Àºl­í¸ƒ š¿³¶¶â t±ÒšêÕG9Òw¯Û&s܃ãc ”d;„ mj>zjZ¨äÏ “ ÿ ®'}ž±ð“D‡£ÒòhiÂþ÷bW]€egËl6qnkçþÔv‰Ó+àÚzZgÝJÌù¹ßo޾ïù·¾C`°ŽÕÖÖ£è¡Ñ“~8ØÂÄOßòRÑ»gñ¦¼Wg?µÝH²6KØ +Ú¯ L6JöAz`ß`ïègßU1nŽïFi¾yËa³Œ¼fƒ%oÒ Rhâ6Ì w•» G"¹U&/ź;¾²½ (+´Z’\³jÂ×ÿ§µÐÏ1,Ùž‹[Þ®›d°ìcò&uj£œm“ œ ©ë6?rg…W•¿J‚â¸z{±+® ¶8’ÒŽ›åÕ¾ |Üï· Ûß!†ÓÒÔñÔâBhݳøÚƒn¾Íö¹&[o°wá·GwˆZæÿjpf;Ê \ežÿøb®iakÿÓlÏE  âx× ÒîNƒT9³Â§g&aÐ`÷IiGM>nwÛ®ÑjJÙÖZÜ@ß f7Ø;𩼮SÞ»žÅG²Ï0µÿé½½òʺŠS³“0$´£¦ºÐ6ÍדTÞW)#Ùg¿³fz.ÄaJ¸]h*o+”´ ¾7Ã Ž¡Zß-ï1A26b‚+-SÃdlÅ}wôEVZ§†OA–ÇÈÙŠÑ»IúïèŠãôÙˬµO µ®~Mžƒ-އ˜ÏJÂQSÙ#xôpÓaïA’.®×U7µæ˜µ×ƒ„–‚˜Y›©°-úÛ©6Ëšæw]]ÿllÔA?ßÍZž•„$¢ŒŸã§²F ¾©wañèá¦èóÐçÃÞƒ$ÚŲe]]®ªDFŸëokÌ(vpýi91k® *Zï  ,8mßF6óÆ]²ípTqôke0»*ó÷¢1¶‰‘u 4Ÿ¼û„º%©Þy<²ï8sóyÿjèH¾AÅ}XÞ*<ðyOéb~DÂO-‡ÛTÆ”Š»@¦#胿8ÙÂ8 Å !»ôL –§–Î\Ì E×1Hnúb‹wáSʺ»]T£ lˆ?Ö‘–—ÞטPÇÌ©ìáúÒõúË“rb×\kyæ@TµÞYO„ŸX#$8pÚ=#A›eýk§|æZæWË %NÐ8d‘®£ŠŸâ3§Ì!*¼ý`­$᯴?Ð-† ²lÉH$«ÐSêû~F)âewh/?yö6$H· t*5KS¼òRH³yeÞp`~ï1çæóþþý¿ÕБ|ÌË =ƒŠ6úš‘»±¼Tx¨§e9;ƒ˜K"˜© µúɮˈ_ï]OFôlmÙ?ÍtÂŒóZCêA#ÁlpÁØwA€—6×GŽ-極ż„„qAŠhZ»[Cwè˜ZlÙÙ-O 6~_'-œ>ݹ˜ ƒ1S‹®b’µSÑÝôÅÄïôWï§”öÙ–Õ®¼é·¨œ1Þk…*ï*ÊkyíÓpH¬ø]oáF*.fÞ6áÅ TèTcMóe"²óå©Â¤0„‘g)Ÿ &äÅ®¸ýÞŸùÖóÌ:Ïèý{€©k¼™²Zý²Ÿ >«„8,$°5ñ*F21wsHpá´QkÐõzFƒ6c]²wËú×NÒáæù̵Ìàׄ¯–J¶#  pÈ„»A‰#]F8l1?Ä(…gO˜B~T©UyúÀLbË8Ř#ô^³§ª–ÜåTüO1Z×bb™ÎySØIáOPú~V{×-•bÌÔ-Š4–»R»è‘ ÙÐ^~óìGe­lH‘nuS /:6è# ©$Tj?e+–§yä¼H¥¤‘f½Š*'ò˼àëСÀýÞbÙæï#¼á½ §Ðü&Šƒ??‘²~pÐ$¹iËøBæF;[ýwzÜekµÅ~ZôîS 7÷H8v¸ ®±¡ŸðŠ?Ì3“$ýrÂj7„ÔnF¾Y ¨ÜËÂë|²O…Q¸Ñ; —…Ö Uïá ùdØ“S ž- \G=&£päÉG¢w`)/ ¬ía›«ßÂiµõ5òÈ÷˜ÿ±&¦sL‘†„ <À:R=Pe6^X7œ}o5ÚÃ64©1W¿„0•Õ³2Ókê3Ý$kå%©§'ï1þ&-[É#bML" '{ æ™"!$ó*x´(+ºÞ)ü`F(> q-qô,³vÃ.õÈš/7¢­pšÀqXç÷sY®rÜ3™w“%vQO+tñruÕ›E~‰ÜxK¶O} |Ïb!y€t¤xB“z Ê{ÆÊýl¼.°m~D‡o8úÞnúékµ†ljwì[h1Rió85b¯cm?a+«f`éÁQe¦×Ôdd½ãf"ºgàiH×Ë I¡KSNJ‘uyOÞcüN ËLZ·’M˜Ý¥FÄš˜Gð¯E@NöD‚$ÁAÍ2D@XsBIæ*C‹ŒTñhPU3gWu¼>V·Ö SøÀŒR:ª»P|âQ¾~ÕZâ9è[ SßYfí†X¤‡±]ë‘4\)û^oEZ_­/má5€à÷q·â±Ïîãs¥Ùæ<³\çþÙkå¸g2äz ï&J8îä 좞Ví`ôaè/âäéíˆÓë«6Šêi\½ý¸ðüÑÒÇþ—lžÿU©ú,ûØzùžÄBø\®uóéHòƒð„=&ñFWô A”õË+£÷•úöOÿÍÙx]`غ7WÚü‰Û>ã9Þqõ¼ß³Ÿ‹Ýõ!ÒÜ7Kå×k ØÖ©fïÔïØ¶Õ-²Ðb¤Ñ Î3ÓæpjÒ$]Å^þÄœ”'ÆÚ*~Ç@IÂWVÌÕ<ûÁÓ‚¢Àè•ËM¯¨ÊÅŸÈÉ{ÆÉ ñÌDt͆mCÏÀÓι-‘¯–@müw’+B.“é(–¦>œ—dT«•"êò”à€ÅŸ¼Çøž~­Ïœ8–úy¡˜µo$™w›1»JšóÑ}‰50ŒK_Ž á^Ï‹iŠ€ì‹B÷Û‰I‚ˆÆ#µƒšdˆ‚X¿€°æÜÚÑ„“ÌT…Q¦c‡:†Õr ©âР¨ º—ªfΫ¤nù®ëx|¯)K­o¬¬­Æ%§ñ¦3ë/¤uUv¥·?A ø)Ä¡:Có£|ýª¢¾—µÄsдç¶@§¾·‚͉²ÍÛ ³±;±Ib°‹eU»×"hºH_¸Sö¹‘œ1¼ÞŠ´½àƒ¿Z^Ú¾˜4í¸¼geª È‹µ¯îb—W7Þð2%k_Ü×8¹Å´(ï}OŠo½àdׇJÖ¿¸òjØÝàßw3XcVPWŸè¥0úúŸB¬øqß{ÀÈgǧ­urCÍÎo&•­p-?¤·û‡ОÏè'¢sB°Æ ¬zGÉ 2¯>ŽÈ[ ;gµ²‡Ð/P8i—ì_ …Yðâ=å—‡e†‡ÑÝ:à´ÏOZw3(?êä†RXwã@íØ øQ¿hð+ø¡H—ŸÄZ"0*âžWOIoöÇõ“Õ@§}müÀ5ŸÐN#·+Ÿ–Å'* ºýGA |ô’¨Hè÷›X=#¨?X1¶‰¡÷ÓvÏj¬Ê¨¾áÃ`„^ pÒæ·ô©¸YLß<ÑÂç…i~€à{Ë/ÃwHkË ¢s±hÇaÇ)Ù¸ LDo˜õüÓÿîfP~VÚ7¹'M¶@(¤°ïÆ ˆ£Û°9g×+Òx‘“nô;&÷ƒšf‘/?ˆ)“Xí´D`T ø1M¨ß¦ñϺþ’ßìF.¸‰T›gì'pqðH»ÉL/ÞÛù€0cEçUk? œÓƒÇùÁ6hyŠrä]7Ë\áP®NTÿ@öè˜%®‹ˆs7ï‚@ø¼>'!é$™UxA‹àׯ3\°ÊíY¶;UåÑ^GP~°ÿìÕb;!lÚ‡F È2éçpŽŽ‚(ížÔQù±‚äV_:X1:§ ƒ3næ †Áµ:¦m½@á¤ü†ÁI)/¯õNJ2"vóŠž–˜+¾x —ÙxôÉKÀH®.ÒýÀjAf¥÷–^O*9y]Ÿ–—å#ñòMkõ×~`çbÑŽ_Þ¶ë ŽRzµé7hFÙм!¼ˆß1ê0cV"Öùašjž½¦½¿ÁØ­´n6 SrNš¥Î)ÿ·{†Çát’ÙÍ*¬¾¨8F€¥v#ØÆfu`zrÏ®þÊsÉ›W¤ñ"ï–Gý­9©E^ÌvMîÎñ‰cÜD&døAèù/yQA“4S&±ÚëšÖ¿³ùÆé E¡Œðb¡Li<›Q¾„'6Û–’™5..þP&T¹™žèÞüŒ]q4áw©6.ΊI«?æE»ƒ ãà‘v[\öIéYýñU>˜l‚!Ô>aDƋΪ~7©ÏÖA8nÃ&]|v‰³ÄÊîÖYÖoᡱ óäK¨yËi׫w²¹Â¡\~Æ9œ©þ€$™å6 6 ŽQn†f§>ÚqÂ,oÞ,”Ó¹I ð±¸æ•£ I{±.CÒ>HûnY-éÛöÃQg‘¦Ì°©t Îzf¹a”ÞñU‹ì¸]ÃU‹ìQƒ} u3Àé긅ÀtCÇEü¶Mü…Ét‹UR‹E P‹MQèƒÄ é¹ë‹UR‹E P‹MQèƒÄ éž‹Uƒòÿ‰Uƒ}‚L‹E ¶3Máÿ‹UÁê3‰U‹E ƒÀ‰E ‹M ¶3Uâÿ‹EÁè3•‰E‹M ƒÁ‰M ‹U ¶3E%ÿ‹MÁé3 …‰M‹U ƒÂ‰U ‹E ¶3Máÿ‹UÁê3‰U‹E ƒÀ‰E ‹M ¶3Uâÿ‹EÁè3•‰E‹M ƒÁ‰M ‹U ¶3E%ÿ‹MÁé3 …‰M‹U ƒÂ‰U ‹E ¶3Máÿ‹UÁê3‰U‹E ƒÀ‰E ‹M ¶3Uâÿ‹EÁè3•‰E‹M ƒÁ‰M ‹Uƒê‰Uéªþÿÿƒ}t3‹E ¶3Máÿ‹UÁê3‰U‹E ƒÀ‰E ‹Mƒé‰MuÍ‹Eƒðÿ‹å] 6Qˆ°×ÿ'NvžÚU‹ìƒì‹E‰Eø‹Mø÷щMøƒ}t;‹U ƒât3‹E ¶3Møáÿ‹UøÁê3‰Uø‹E ƒÀ‰E ‹Mƒé‰Më¿‹U ‰Uüƒ} ‚Õ‹Eü‹Mø3‰Mø‹UüƒÂ‰Uü‹Eø%ÿ‹MøÁéáÿ‹… 3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uü‹Eø3‰Eø‹MüƒÁ‰Mü‹Uøâÿ‹EøÁè%ÿ‹ • 3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹Mü‹Uø3‰Uø‹EüƒÀ‰Eü‹Møáÿ‹UøÁêâÿ‹ 3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹Eü‹Mø3‰Mø‹UüƒÂ‰Uü‹Eø%ÿ‹MøÁéáÿ‹… 3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uü‹Eø3‰Eø‹MüƒÁ‰Mü‹Uøâÿ‹EøÁè%ÿ‹ • 3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹Mü‹Uø3‰Uø‹EüƒÀ‰Eü‹Møáÿ‹UøÁêâÿ‹ 3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹Eü‹Mø3‰Mø‹UüƒÂ‰Uü‹Eø%ÿ‹MøÁéáÿ‹… 3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uü‹Eø3‰Eø‹MüƒÁ‰Mü‹Uøâÿ‹EøÁè%ÿ‹ • 3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹Mƒé ‰Mé!ýÿÿƒ}rd‹Uü‹Eø3‰Eø‹MüƒÁ‰Mü‹Uøâÿ‹EøÁè%ÿ‹ • 3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹Mƒé‰Më–‹Uü‰U ƒ}t3‹E ¶3Møáÿ‹UøÁê3‰Uø‹E ƒÀ‰E ‹Mƒé‰MuÍ‹Uø÷Ò‰Uø‹Eø‹å]Ã:—©¶èïBI\i›¢´Áóú MTgt¦­¿Ìþ%kr…’ÈU‹ìƒì‹EÁè%ÿ‹MÁéáÿÁ‹UâÿÁâ‹MáÿÁáÁ‰Eø‹Uø÷Ò‰Uøƒ}t:‹E ƒàt2‹MøÁé‹U ¶3È‹UøÁâ3‰Uø‹E ƒÀ‰E ‹Mƒé‰MëÀ‹U ‰Uü‹Eüƒè‰Eüƒ} ‚Ö‹MüƒÁ‰Mü‹Uü‹Eø3‰Eø‹Møáÿ‹UøÁêâÿ‹3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹EüƒÀ‰Eü‹Mü‹Uø3‰Uø‹Eø%ÿ‹MøÁéáÿ‹…3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹UüƒÂ‰Uü‹Eü‹Mø3‰Mø‹Uøâÿ‹EøÁè%ÿ‹ •3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹MüƒÁ‰Mü‹Uü‹Eø3‰Eø‹Møáÿ‹UøÁêâÿ‹3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹EüƒÀ‰Eü‹Mü‹Uø3‰Uø‹Eø%ÿ‹MøÁéáÿ‹…3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹UüƒÂ‰Uü‹Eü‹Mø3‰Mø‹Uøâÿ‹EøÁè%ÿ‹ •3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹MüƒÁ‰Mü‹Uü‹Eø3‰Eø‹Møáÿ‹UøÁêâÿ‹3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹EüƒÀ‰Eü‹Mü‹Uø3‰Uø‹Eø%ÿ‹MøÁéáÿ‹…3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uƒê ‰Ué ýÿÿƒ}rc‹EüƒÀ‰Eü‹Mü‹Uø3‰Uø‹Eø%ÿ‹MøÁéáÿ‹…3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uƒê‰Uë—‹EüƒÀ‰Eü‹Mü‰M ƒ}t2‹UøÁê‹E ¶3Ñ‹EøÁà3•‰Eø‹M ƒÁ‰M ‹Uƒê‰Uu΋Eø÷ЉEø‹EøÁè%ÿ‹MøÁéáÿÁ‹UøâÿÁâ‹MøáÿÁáÁ‹å]ÃkËÒåò$+=J|ƒ–£ÖÝðý/6HU‡Ž¡®áèû:AS`¦­¿Ì U‹ì‹EP‹M Q‹URèƒÄ ] U‹ìì ƒ}‹EéÇ…xÿÿÿ ƒ¸íÇ…ôþÿÿÇEüë ‹EüƒÀ‰Eüƒ}ü } ‹Mü‹•ôþÿÿ‰”xÿÿÿ‹…ôþÿÿÑà‰…ôþÿÿëÑxÿÿÿQ•øþÿÿRèƒÄ…øþÿÿPxÿÿÿQèƒÄ•xÿÿÿR…øþÿÿPèƒÄ‹Mƒát‹UR…øþÿÿPèƒÄ‰E‹MÑù‰Muë>•øþÿÿR…xÿÿÿPèƒÄ‹Mƒát‹UR…xÿÿÿPèƒÄ‰E‹MÑù‰Mu‚‹U3U ‰U‹E‹å]Ãr ˆ ž ¹Þ ùU‹ìQÇEüƒ} t&‹E ƒàt ‹M‹Uü3‰Uü‹E Ñè‰E ‹MƒÁ‰MëÔ‹Eü‹å]ÃU‹ìQÇEüë ‹EüƒÀ‰Eüƒ}ü }!‹Mü‹U ‹ŠP‹M QèƒÄ‹Uü‹M‰‘ëЋå]Ã+U‹ì‹EP‹M Q‹URèƒÄ ] @comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.rdata —¨(ã.text dR q .text l£«  .textò&4©R* .textf&¯¡ `8 .textòeË”C .text ™XÞU .text >c¬ÐKe .text ANèw .text òeË”Š ž_crc_table_get_crc_table@0_crc32@12_crc32_little_crc32_big_crc32_combine@12_crc32_combine__gf2_matrix_times_gf2_matrix_square_crc32_combine64@12/627 1315202896 100666 1352 ` LPgdNV.drectve] .debug$S´a@B.text¿Ô P`.rdata@0@.text * P`.text"4 P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¦hc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\compress.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒì@‹E‰EÈ‹M‰MÌ‹U‰UÔ‹E ‹‰MØ‹U ‹EØ;t ¸ûÿÿÿé…ÇEèÇEìÇEðj8h‹MQUÈRè‰Eă}Ät‹EÄëNjEÈPè‰Eă}Ät#MÈQèƒ}Äu ÇEÀûÿÿÿë‹UĉUÀ‹EÀë‹E ‹M܉UÈRè‰EÄ‹EÄ‹å]ÂLY r „ ¯ 1.2.5U‹ìjÿ‹EP‹MQ‹U R‹EPè]ÂU‹ì‹EÁè E‹MÁéÁ‹UÁêD ]Â@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.text¿ï[À   + .rdataÜ{<.text°²ÛZ .text"Ÿ 4g x_compress2@20_deflateEnd@4_deflate@8_deflateInit_@16??_C@_05DFCKICEH@1?42?45?$AA@_compress@16_compressBound@4/666 1315202897 100666 2385 ` LQgdNÁ.drectve] .debug$S´a@B.text‹ P`.text » P`.text×Å P`.textœ· P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\adler32.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒì‹EÁè%ÿÿ‰Eø‹Máÿÿ‰Mƒ}uL‹U ¶E‰E}ñÿr ‹Méñÿ‰M‹UøU‰Uø}øñÿr ‹Eø-ñÿ‰Eø‹EøÁà Eéƒ} u ¸éƒ}sb‹M‹Uƒê‰U…Ét ‹E ¶M‰M‹U ƒÂ‰U ‹EøE‰EøëÐ}ñÿr ‹Méñÿ‰M‹Eø3Ò¹ñÿ÷ñ‰Uø‹EøÁà Eé›}°‚­‹Uê°‰UÇEü[‹E ¶M‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ƒÀ‰E ‹Müƒé‰Mü…‰þÿÿ‹E3Ò¹ñÿ÷ñ‰U‹Eø3Ò¹ñÿ÷ñ‰UøéFþÿÿƒ}„΃}‚v‹Uƒê‰U‹E ¶M‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ƒÀ‰E é€þÿÿ‹M‹Uƒê‰U…Ét ‹E ¶M‰M‹U ƒÂ‰U ‹EøE‰EøëЋE3Ò¹ñÿ÷ñ‰U‹Eø3Ò¹ñÿ÷ñ‰Uø‹EøÁà E‹å] U‹ì‹EP‹M Q‹URèƒÄ ] U‹ìƒì ‹E3Ò¹ñÿ÷ñ‰Uø‹Uâÿÿ‰Uü‹Eø¯Eü‰Eô‹Eô3Ò¹ñÿ÷ñ‰Uô‹U âÿÿ‹EüŒðÿ‰Mü‹UÁêâÿÿ‹E Áè%ÿÿŒñÿ+MøMô‰Mô}üñÿr ‹Uüêñÿ‰Uü}üñÿr ‹Eü-ñÿ‰Eü}ôâÿr ‹Môéâÿ‰Mô}ôñÿr ‹Uôêñÿ‰Uô‹EôÁà Eü‹å]ÃU‹ì‹EP‹M Q‹URèƒÄ ] @comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.text‹´Ý–‹ .textòeË” .text× &6$ .textòeË”6 L_adler32@12_adler32_combine@12_adler32_combine__adler32_combine64@12 /704 1315203153 100666 13151 ` LQhdN˜)J.text›´P P`.dataÈ@PÀ.debug$S¬Ìx$‚@B.debug$T Œ)@BéIFast decoding Code from Chris Andersoninvalid literal/length codeinvalid distance code‹ÿinvalid distance too far back‹ÿ?ÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿWVUSœƒì@ü‹t$X‹~‹V‹Ðƒê ‰D$,‰T$‹l$\‹N‹^ +é÷Ýëéˉ\$<‰l$(‰L$‹GL‹OP‰D$‰L$ ¸‹OTÓàH‰$¸‹OXÓàH‰D$‹G(‹O0‹W4‰D$4‰L$0‰T$8‹o8‹_<‹t$,‹L$;Îw"ƒÁ +θ +Á|$ó¤‹È3Àóªt$‰t$ë÷Æt3ÀŠF‹ËƒÃÓà èëè‹|$<ƒ=„‰wkPSQRœ‹$4$ œZ3ÐtD3À¢ûGenuu8ùntelu0úineIu(¸¢Áèƒàƒøu÷€uë Çë ÇZY[X뇀ûw 3Àf­ŠË€ÃÓà è‹$‹L$#Õ‹‘ŠÌ*ÜÓí„ÀuÁèª9|$†b9t$wÄéW‹ÐÁêŠÈ¨„ô€át%:ÙsŠé3Àf­ŠË€ÃÓà èŠÍ¸ÓàH*Ù#ÅÓíЉT$€ûw 3Àf­ŠË€ÃÓà è‹T$‹L$ #Õ‹‘‹ÐÁêŠÌ*ÜÓíŠÈ¨„²€áte:ÙsŠé3Àf­ŠË€ÃÓà èŠÍ¸ÓàH*Ù#ÅÓíÐë‰t$,‹Ç+D$(;‚”‹L$‹÷+òƒéŠˆŠFŠVƒÆˆGˆWƒÇó¤‹t$,éÿÿÿƒúu½9|$(t·O‹L$ŠƒéˆGˆGˆGƒÇóªéèþÿÿ¨@…¸ÓàH#Å‹T$‹‚éºþÿÿ¨@…â¸ÓàH#Å‹T$ ‹‚éÿÿÿ‹È‹D$4÷Ù‹t$8;‚Þʃ|$0u$+Áð‹D$;Áv`+Áó¤‹÷+òëV;ÁvR+Áó¤‹÷+òëH‹D$0;Èv,t$4ð+ñ+È‹D$;Áv.+Áó¤‹t$8‹L$0;Áv+Áó¤‹÷+òëð+ñ‹D$;Áv+Áó¤‹÷+ò‹Èó¤‹t$,éþÿÿ‹ÿwnÅ‹ën$$ãnl$êïÉ‹\$ëÓÁƒý wnõn>ƒÆóþƒÅ ëÇÛà~àÜ‹ƒ¶ÌnÉ+é„ÀuÁèª9|$†9t$wºé‹ÐÁꨄàƒàtÓÁnÈ~Á+è# …ÑÓÁƒý wnõn>ƒÆóþƒÅ ëÇ‹\$ Ûè~èÕ‹ƒ¶Ì‹ØÁë+énɨ„¬ƒàtWÓÁnÈ~Á+è# …Ù‰t$,‹Ç+D$(;©‹Ê‹÷+óƒéŠˆŠFŠVƒÆˆGˆWƒÇó¤‹t$,‹\$é-ÿÿÿIƒûu¸9|$(t²O‹ÊŠƒéˆGˆGˆGƒÇóª‹\$éÿÿÿ‹ÿ¨@…ÞƒàÓÁ~Á# …Ê‹‹éÌþÿÿ‹ÿ¨@…®ƒàÓÁ~Á# …‹D$ Ë‹ˆéÿÿÿ‹ÿ‹È‹D$4÷Ù‹t$8;¢˃|$0u +Áð;ÑvX+Ñó¤‹÷+óëN;ÑvJ+Ñó¤‹÷+óë@‹D$0;Èv(t$4ð+ñ+È;Ñv*+Ñó¤‹t$8‹L$0;Ñv+Ñó¤‹÷+óëð+ñ;Ñv+Ñó¤‹÷+ó‹Êó¤‹t$,‹\$é$þÿÿ¹ºë,¨ t ¹º 빺ë‹t$,¹ºë‹D$X…Ét‰H‹@‰ëƒ=u‹Ý‹D$X‹Ë‹PÁé+ñÁá+Ù‰x ‰Z<‹Ë\$9\$u+ó‹‰\$ó‹Xƒë \$‰0»ÓãKƒ=uÓÁ~Åw#ë‰j8‹\$;Þv +ރà ‰Xë +ó÷ÞƒÆ ‰p‹\$;ßv +ßÉXë +û÷ßljxƒÄ@[]^_Ãà = I ÿ W à  § à Óò @ óGC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86\inffas32.asmôº|!¸Š@Ò‡Ö5ü·ëÄò ›Q”P€§€ ¨€ ©€ ª€ «€ ¬€­€²€³€»€¼€¾€¿€"Á€&€*Ä€.Å€1Æ€4È€6É€8Ê€:Ì€@Í€BÏ€FЀJÑ€NÓ€QÔ€TÖ€X×€\Ù€aÚ€dÛ€fÜ€gÝ€j߀oà€rá€tâ€uã€yå€|æ€瀂逆ꀊ뀎퀑ð€˜ñ€œò€žó€ õ€£ö€¥÷€ªø€¬ù€°ú€²û€´ü€¶ý€¸þ€¼ÿ€À€Â€È€Ê€Ì€Î€Ï €Ñ €Ô €Ö €Ø €Ú€Þ€å€ë€í€î€ï€ð€ñ€ò€õ€ü"€ý#€þ$€ÿ%€&€'€(€)€ *€+€,€-€.€/€$0€&1€)2€,3€/4€15€76€97€;9€E:€G<€Q>€R?€S@€TA€UB€XG€[H€]J€_K€aL€cM€fN€hO€jR€mS€qT€sU€v^€x_€z`€|g€~h€€j€ƒk€„p€ˆq€Žs€’t€”u€™y€›z€ž{€ }€¢~€¨€«€€­€¯‚€±„€³…€µ†€·‡€¹ˆ€¼‰€¾Š€À‹€ÂŽ€Ç€É€Ê‘€Ì’€Î“€Ð”€Ò—€Öœ€Ù€ÛŸ€Ý €ß¡€á¢€ä£€æ¤€è§€ì¨€ð©€òª€õ®€÷¯€ú°€ü±€þ²€´€¶€·€ ¸€ ¹€º€»€½€¾€¿€À€Á€Â€ À"Ä€$Ç€)È€+É€,Ê€.Ë€0Ì€2Í€4΀6Ò€:Ó€<Ô€@Ö€B×€HÙ€LÚ€NÛ€PÝ€SÞ€U߀Wà€Zá€]â€`ã€cä€få€iæ€kè€oé€tí€wî€yï€}ð€ò€€ó€„ô€†õ€‰÷€Œø€ù€’ú€•û€—ý€œ€ž€¤€© €« €¬ €® €° €´€·€¼€¾€Ä€É€Ë€Ì€Î€Ð€Ô €×!€Ü&€Þ'€â(€ä)€è+€ê,€ð.€ò/€÷0€ù2€û3€ý5€6€7€9€:€ ;€ <€ =€?€@€B€C€D€E€F€J€!K€#L€%N€)O€+P€-Q€/T€3U€5V€7X€9Y€;Z€?[€C\€E]€G_€I`€Ka€Mb€Oc€Qg€Sh€Uk€Yl€[m€]o€_p€aq€cr€ev€gw€iy€mz€t~€v„€y…€{‡€ˆ€‚‰€‡Š€Š‹€Œ€‘€”‘€—“€š”€œ–€Ÿ—€¢˜€¥™€¨š€«›€®ž€±Ÿ€´ €·¡€º¤€½¥€À¦€Â¨€Ä©€Æ«€É¬€Ê±€Î²€Ô´€Øµ€Ú¶€ßº€á»€ä½€æ¾€ì¿€ïÀ€ñ€ôÀ÷Ä€úÅ€üƀǀʀ̀ Í€ πЀрҀӀԀ׀#Ø€&Ù€)Ú€,Û€/߀2à€4á€7â€9ã€<å€>æ€Dç€Gè€Ië€Lì€Oí€Rî€Tï€[ð€]ó€aô€cõ€g÷€iø€oú€qû€sü€uþ€xÿ€z€|€€‚€…€ˆ€‹€Ž€ €” €˜ € €£€¥€©€«€¬€®€°€³€¶€¹€¼€¿€Á€Å €Ì$€Î%€Ô'€×(€Ú)€Ý*€ä+€æ,€é-€ð1€ò2€ø4€û5€þ6€7€8€ 9€:€;€@€A€B€ C€$E€&F€,H€.I€3J€5L€7M€9O€;P€=R€?S€AT€CU€EV€GX€IY€K[€M\€O]€Q^€S_€Uc€Yd€[e€]g€ah€ci€ej€gm€in€kp€mq€or€ss€wt€yu€{w€}x€y€z€ƒ{€…€‡€€‰ƒ€‹„€†€‡€‘ˆ€“‰€•Ž€—€™‘€’€¡“€¦›€«œ€°€²¥€´¦€¶¨€»©€Àª€Â²€Ç³€Ì´€Îº€Ò»€×¼€Ü½€ÞÁ€â€äÀæÄ€éÆ€ìÇ€îÈ€ðÍ€÷΀ùÒ€ûÖ€ÿ׀؀ـڀ Û€ ܀݀ހ߀á€â€ã€ å€"æ€$ç€(è€*é€-ê€0ë€4î€6ð€;ñ€=ò€>ø€Eù€Gý€Jþ€M€O€Q€T €X €Z€\€^€a€d€f€h€j€m€p€t €v!€x#€z$€€%€ƒ&€…(€‡)€‰*€+€’2€•3€–4€—5€˜6€™7€š8€ñ‡LC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86\inffas32.obj7< RMicrosoft (R) Macro Assembler—=cwdC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86exec:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\ml.exesrcinffas32.asm L_test_for_length_base$L_invalid_distance_too_farL_check_dist_one_mmxL_do_copy1_mmxL_wrap_around_windowL_do_copy1L_add_bits_to_lenL_do_loop'L_invalid_literal_length_code#invalid_distance_code_msgL_get_length_code_mmx_inflate_fastL_init_mmx(L_test_for_second_level_lengthL_save_len L_add_bits_to_dist_mmxinflate_fast_maskL_update_next_inL_dodistL_skip_msgL_get_distance_code"L_wrap_around_window_mmxL_do_loop_mmx!L_invalid_distance_code&L_test_for_second_level_dist!L_test_for_end_of_block)invalid_literal_length_code_msg*L_test_for_second_level_dist_mmxL_clip_window_mmxL_dolen_mmxL_use_mmxL_break_loopL_get_length_codeL_add_bits_to_distL_fixup_outL_get_dist_code_mmxL_clip_windowL_check_mmxL_decode_distance_mmxL_dont_use_mmxL_is_alignedL_check_window L_contiguous_in_windowL_buf_not_usedL_update_stream_stateL_decode_distanceL_while_testinflate_fast_use_mmx,L_test_for_second_level_length_mmxL_check_dist_oneL_end_is_smallerL_check_window_mmxL_while_test_mmxL_update_hold$L_test_for_length_base_mmxL_dodist_mmxL_align_longinflate_fast_entryL_dolenL_last_is_smallerL_check_mmx_popL_done$L_contiguous_in_window_mmx&invalid_distance_too_far_msg| € H L j n  ” ° ´ Ê Î ê î    ! 2 6 [ _ € „ ¡ ¥ º ¾ Ð Ô ú þ   2 6 O S k o  ƒ •! ™! ´" ¸" Ø# Ü# ñ$ õ$ % % <& @& _ c Š' Ž' ¶( º( Ó) ×) ê* î* ÿ+ + , , 4- 8- R. V. i/ m/ ˆ0 Œ0 ¡1 ¥1 ¸2 ¼2 Ù3 Ý3 ó4 ÷4 5 5 %6 )6 G7 K7 a8 e8 ‚9 †9 Ÿ: £: · » ×; Û; < < != %= => A> [? _? w@ {@ A ”A ¶B ºB ÎC ÒC æD êD E E F F 4G 8G OH SH aI eI ‡ ‹ òñ@comp.idR•ÿÿ.text› .data.debug$S¬‚.debug$T L,„>0^sd$$000000™§Î וæûeÂX"Â@®Vtaœ€Ò‹I¢ûL_dodistõ³é¾èÒUë”ù¦¼.²Fðgyº…;ðœj®$ÁpÍáÜïÞûG Ú-6<QS4bÞxÖŠ„—̺tË…Ü]ïÊOß)/6ÂCL_dolenvVfhQL_done’x…“invalid_distance_code_msg_inflate_fastinflate_fast_maskinvalid_literal_length_code_msginflate_fast_use_mmxinvalid_distance_too_far_msgL_test_for_length_baseL_invalid_distance_too_farL_check_dist_one_mmxL_do_copy1_mmxL_wrap_around_windowL_do_copy1L_add_bits_to_lenL_do_loopL_invalid_literal_length_codeL_get_length_code_mmxL_init_mmxL_test_for_second_level_lengthL_save_lenL_add_bits_to_dist_mmxL_update_next_inL_skip_msgL_get_distance_codeL_wrap_around_window_mmxL_do_loop_mmxL_invalid_distance_codeL_test_for_second_level_distL_test_for_end_of_blockL_test_for_second_level_dist_mmxL_clip_window_mmxL_dolen_mmxL_use_mmxL_break_loopL_get_length_codeL_add_bits_to_distL_fixup_outL_get_dist_code_mmxL_clip_windowL_check_mmxL_decode_distance_mmxL_dont_use_mmxL_is_alignedL_check_windowL_contiguous_in_windowL_buf_not_usedL_update_stream_stateL_decode_distanceL_while_testL_test_for_second_level_length_mmxL_check_dist_oneL_end_is_smallerL_check_window_mmxL_while_test_mmxL_update_holdL_test_for_length_base_mmxL_dodist_mmxL_align_longinflate_fast_entryL_last_is_smallerL_check_mmx_popL_contiguous_in_window_mmx /731 1315203153 100666 3563 ` LQhdNŠ .texté´ 0`.data@0À.debug$Sp @B.debug$T<N @BUWVSƒì$‹T$8‹L$<‹Bx‹šŒ;ËB4‹Z||ÁëKÁã ؉$‹‚‹Zt;Ø|‹Ø‰\$‹r8‰t$‹jl|5‰|$ ‹Ç÷؃à‰D$‹B,-+è3í‹Bx‰D$ð‰t$·‰\$·\8ÿ‰\$ ‹z@‹$ëI#Ê· O;͆àêˆÔ·D1ÿ;ÃuÝ‹D$·;D$uω$‹t$‹|$ ñ‹D$ºøþÿÿ¼8´0‹23:u‹D23D:uƒÂuéëqƒÂ©ÿÿuƒÂÁè,ƒÒ:‹|$ +Ç=}L‹T$8‹\$;Ët$‹z@‹\$ ‹$éNÿÿÿ‹\$‰D$‰Jp;Ã}-‹t$ð‰t$·\8ÿ‹z@‰\$ ‹$é!ÿÿÿ‹T$8ÇD$‰Jp‹T$8‹\$‹Bt;؋ÃÄ$[^_]à asm686 with masm, optimised assembly code from Brian Raiter, written 1998 ÃóGC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86\match686.asmôñYa%Ñ?‚¿AÅœ`%ïò0éƒ$Āʀˀ̀̀΀Õ€ Ö€Þ€߀à€á€†ã€"ä€%ì€&í€)î€+ï€.ó€4ô€7õ€9ö€;÷€=ø€Aü€Dý€Hþ€Kÿ€O€S€U€W€Z€^ €a€f€h€j€l€o€s€u€y"€|#€€$€…%€‰&€Œ*€+€”D€–E€šF€œG€¢H€¨I€®J€³K€µL€·M€»N€¿O€ÃP€ÅT€È[€Ì\€Ð]€Ò^€Ö_€Û`€âa€ér€ìs€ït€ñu€õv€ùw€ûx€þy€z€{€|€ }€ ~€€€€€†€‡€ˆ€ ‰€%Š€'€+€/‘€1’€3“€7”€:•€>–€A—€Fž€JŸ€N €Q¡€S¢€U£€Y¤€[¥€_¦€d§€g¨€k©€nª€s®€w¯€°€‚¶€†·€Š¸€¹€º€‘»€“À€–Á€—€˜Ã€™Ä€šÆ€è×€èØ€ñ»LC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86\match686.obj7< RMicrosoft (R) Macro Assembler—=cwdC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86exec:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\ml.exesrcmatch686.asm4èè_longest_matchLastMatchGoodLookaheadLessLimitPositiveLookupLoopLoopEntryLoopCmpsLeaveLoopCmps4LeaveLoopCmpsLenLowerLongerMatchLenMaximumLeaveNowLookaheadRet1_match_init| € ô ø   ' + @ D Y ] o s „ ˆ ˜ œ ² ¶ Ë Ï ß ã ö ú    $ X \ òñ@comp.idR•ÿÿ.texté.data.debug$Sp .debug$T< è $$000000%-=;lI”T®LoopCmpsé^mLenLower{F‡sLeaveNow‚’“Ÿ_longest_match_match_initLastMatchGoodLookaheadLessLimitPositiveLookupLoopLoopEntryLeaveLoopCmps4LeaveLoopCmpsLongerMatchLenMaximumLookaheadRet libtelnet-0.23/msvc2010/000077500000000000000000000000001336202271100146705ustar00rootroot00000000000000libtelnet-0.23/msvc2010/libtelnet.sln000066400000000000000000000033601336202271100173720ustar00rootroot00000000000000 Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libtelnet", "libtelnet.vcxproj", "{1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "telnet-proxy", "telnet-proxy.vcxproj", "{20B4F215-FF36-4979-824A-D094B62BD04C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "telnet-chatd", "telnet-chatd.vcxproj", "{838296BF-E876-42CD-9E67-4866EA43DB11}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}.Debug|Win32.ActiveCfg = Debug|Win32 {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}.Debug|Win32.Build.0 = Debug|Win32 {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}.Release|Win32.ActiveCfg = Release|Win32 {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D}.Release|Win32.Build.0 = Release|Win32 {20B4F215-FF36-4979-824A-D094B62BD04C}.Debug|Win32.ActiveCfg = Debug|Win32 {20B4F215-FF36-4979-824A-D094B62BD04C}.Debug|Win32.Build.0 = Debug|Win32 {20B4F215-FF36-4979-824A-D094B62BD04C}.Release|Win32.ActiveCfg = Release|Win32 {20B4F215-FF36-4979-824A-D094B62BD04C}.Release|Win32.Build.0 = Release|Win32 {838296BF-E876-42CD-9E67-4866EA43DB11}.Debug|Win32.ActiveCfg = Debug|Win32 {838296BF-E876-42CD-9E67-4866EA43DB11}.Debug|Win32.Build.0 = Debug|Win32 {838296BF-E876-42CD-9E67-4866EA43DB11}.Release|Win32.ActiveCfg = Release|Win32 {838296BF-E876-42CD-9E67-4866EA43DB11}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal libtelnet-0.23/msvc2010/libtelnet.vcxproj000066400000000000000000000107231336202271100202720ustar00rootroot00000000000000 Debug Win32 Release Win32 {1C94276F-6AD3-497D-AE42-C34A3BBE0B0D} libtelnet Win32Proj StaticLibrary Unicode true StaticLibrary Unicode <_ProjectFileVersion>10.0.40219.1 $(SolutionDir)$(Configuration)\ $(Configuration)\$(ProjectName)\ $(SolutionDir)$(Configuration)\ $(Configuration)\$(ProjectName)\ Disabled $(SolutionDir);%(AdditionalIncludeDirectories) WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;HAVE_ZLIB;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebugDLL Level3 EditAndContinue false MaxSpeed true $(SolutionDir);%(AdditionalIncludeDirectories) WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;HAVE_ZLIB;%(PreprocessorDefinitions) MultiThreadedDLL true Level3 ProgramDatabase libtelnet-0.23/msvc2010/libtelnet.vcxproj.filters000066400000000000000000000015501336202271100217370ustar00rootroot00000000000000 {4FC737F1-C7A5-4376-A066-2A32D752A2FF} cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx {93995380-89BD-4b04-88EB-625FBE52EBFB} h;hpp;hxx;hm;inl;inc;xsd Source Files Header Files libtelnet-0.23/msvc2010/libtelnet.vcxproj.user000066400000000000000000000002151336202271100212420ustar00rootroot00000000000000 libtelnet-0.23/msvc2010/telnet-chatd.vcxproj000066400000000000000000000131041336202271100206600ustar00rootroot00000000000000 Debug Win32 Release Win32 {838296BF-E876-42CD-9E67-4866EA43DB11} telnetchatd Win32Proj Application Unicode true Application Unicode <_ProjectFileVersion>10.0.40219.1 $(SolutionDir)$(Configuration)\ $(Configuration)\$(ProjectName)\ true $(SolutionDir)$(Configuration)\ $(Configuration)\$(ProjectName)\ false Disabled $(SolutionDir);$(SolutionDir)\..;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_CONSOLE; _CRT_SECURE_NO_WARNINGS;HAVE_ZLIB;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebugDLL Level3 EditAndContinue ws2_32.lib;zlibstat.lib;%(AdditionalDependencies) libcmt.lib;%(IgnoreSpecificDefaultLibraries) true Console MachineX86 MaxSpeed true $(SolutionDir);$(SolutionDir)\..;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_CONSOLE; _CRT_SECURE_NO_WARNINGS;HAVE_ZLIB;%(PreprocessorDefinitions) MultiThreadedDLL true Level3 ProgramDatabase ws2_32.lib;zlibstat.lib;%(AdditionalDependencies) libcmt.lib;%(IgnoreSpecificDefaultLibraries) true Console true true MachineX86 {1c94276f-6ad3-497d-ae42-c34a3bbe0b0d} false libtelnet-0.23/msvc2010/telnet-chatd.vcxproj.filters000066400000000000000000000007721336202271100223360ustar00rootroot00000000000000 {4FC737F1-C7A5-4376-A066-2A32D752A2FF} cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx Source Files libtelnet-0.23/msvc2010/telnet-chatd.vcxproj.user000066400000000000000000000002151336202271100216340ustar00rootroot00000000000000 libtelnet-0.23/msvc2010/telnet-proxy.vcxproj000066400000000000000000000131041336202271100207560ustar00rootroot00000000000000 Debug Win32 Release Win32 {20B4F215-FF36-4979-824A-D094B62BD04C} telnetproxy Win32Proj Application Unicode true Application Unicode <_ProjectFileVersion>10.0.40219.1 $(SolutionDir)$(Configuration)\ $(Configuration)\$(ProjectName)\ true $(SolutionDir)$(Configuration)\ $(Configuration)\$(ProjectName)\ false Disabled $(SolutionDir);$(SolutionDir)\..;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_CONSOLE; _CRT_SECURE_NO_WARNINGS;HAVE_ZLIB;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebugDLL Level3 EditAndContinue ws2_32.lib;zlibstat.lib;%(AdditionalDependencies) libcmt.lib;%(IgnoreSpecificDefaultLibraries) true Console MachineX86 MaxSpeed true $(SolutionDir);$(SolutionDir)\..;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_CONSOLE; _CRT_SECURE_NO_WARNINGS;HAVE_ZLIB;%(PreprocessorDefinitions) MultiThreadedDLL true Level3 ProgramDatabase ws2_32.lib;zlibstat.lib;%(AdditionalDependencies) libcmt.lib;%(IgnoreSpecificDefaultLibraries) true Console true true MachineX86 {1c94276f-6ad3-497d-ae42-c34a3bbe0b0d} false libtelnet-0.23/msvc2010/telnet-proxy.vcxproj.filters000066400000000000000000000007721336202271100224340ustar00rootroot00000000000000 {4FC737F1-C7A5-4376-A066-2A32D752A2FF} cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx Source Files libtelnet-0.23/msvc2010/telnet-proxy.vcxproj.user000066400000000000000000000002151336202271100217320ustar00rootroot00000000000000 libtelnet-0.23/msvc2010/zconf.h000066400000000000000000000320771336202271100161710ustar00rootroot00000000000000/* zconf.h -- configuration of the zlib compression library * Copyright (C) 1995-2010 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #ifndef ZCONF_H #define ZCONF_H /* * If you *really* need a unique prefix for all types and library functions, * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it. * Even better than compiling with -DZ_PREFIX would be to use configure to set * this permanently in zconf.h using "./configure --zprefix". */ #ifdef Z_PREFIX /* may be set to #if 1 by ./configure */ /* all linked symbols */ # define _dist_code z__dist_code # define _length_code z__length_code # define _tr_align z__tr_align # define _tr_flush_block z__tr_flush_block # define _tr_init z__tr_init # define _tr_stored_block z__tr_stored_block # define _tr_tally z__tr_tally # define adler32 z_adler32 # define adler32_combine z_adler32_combine # define adler32_combine64 z_adler32_combine64 # define compress z_compress # define compress2 z_compress2 # define compressBound z_compressBound # define crc32 z_crc32 # define crc32_combine z_crc32_combine # define crc32_combine64 z_crc32_combine64 # define deflate z_deflate # define deflateBound z_deflateBound # define deflateCopy z_deflateCopy # define deflateEnd z_deflateEnd # define deflateInit2_ z_deflateInit2_ # define deflateInit_ z_deflateInit_ # define deflateParams z_deflateParams # define deflatePrime z_deflatePrime # define deflateReset z_deflateReset # define deflateSetDictionary z_deflateSetDictionary # define deflateSetHeader z_deflateSetHeader # define deflateTune z_deflateTune # define deflate_copyright z_deflate_copyright # define get_crc_table z_get_crc_table # define gz_error z_gz_error # define gz_intmax z_gz_intmax # define gz_strwinerror z_gz_strwinerror # define gzbuffer z_gzbuffer # define gzclearerr z_gzclearerr # define gzclose z_gzclose # define gzclose_r z_gzclose_r # define gzclose_w z_gzclose_w # define gzdirect z_gzdirect # define gzdopen z_gzdopen # define gzeof z_gzeof # define gzerror z_gzerror # define gzflush z_gzflush # define gzgetc z_gzgetc # define gzgets z_gzgets # define gzoffset z_gzoffset # define gzoffset64 z_gzoffset64 # define gzopen z_gzopen # define gzopen64 z_gzopen64 # define gzprintf z_gzprintf # define gzputc z_gzputc # define gzputs z_gzputs # define gzread z_gzread # define gzrewind z_gzrewind # define gzseek z_gzseek # define gzseek64 z_gzseek64 # define gzsetparams z_gzsetparams # define gztell z_gztell # define gztell64 z_gztell64 # define gzungetc z_gzungetc # define gzwrite z_gzwrite # define inflate z_inflate # define inflateBack z_inflateBack # define inflateBackEnd z_inflateBackEnd # define inflateBackInit_ z_inflateBackInit_ # define inflateCopy z_inflateCopy # define inflateEnd z_inflateEnd # define inflateGetHeader z_inflateGetHeader # define inflateInit2_ z_inflateInit2_ # define inflateInit_ z_inflateInit_ # define inflateMark z_inflateMark # define inflatePrime z_inflatePrime # define inflateReset z_inflateReset # define inflateReset2 z_inflateReset2 # define inflateSetDictionary z_inflateSetDictionary # define inflateSync z_inflateSync # define inflateSyncPoint z_inflateSyncPoint # define inflateUndermine z_inflateUndermine # define inflate_copyright z_inflate_copyright # define inflate_fast z_inflate_fast # define inflate_table z_inflate_table # define uncompress z_uncompress # define zError z_zError # define zcalloc z_zcalloc # define zcfree z_zcfree # define zlibCompileFlags z_zlibCompileFlags # define zlibVersion z_zlibVersion /* all zlib typedefs in zlib.h and zconf.h */ # define Byte z_Byte # define Bytef z_Bytef # define alloc_func z_alloc_func # define charf z_charf # define free_func z_free_func # define gzFile z_gzFile # define gz_header z_gz_header # define gz_headerp z_gz_headerp # define in_func z_in_func # define intf z_intf # define out_func z_out_func # define uInt z_uInt # define uIntf z_uIntf # define uLong z_uLong # define uLongf z_uLongf # define voidp z_voidp # define voidpc z_voidpc # define voidpf z_voidpf /* all zlib structs in zlib.h and zconf.h */ # define gz_header_s z_gz_header_s # define internal_state z_internal_state #endif #if defined(__MSDOS__) && !defined(MSDOS) # define MSDOS #endif #if (defined(OS_2) || defined(__OS2__)) && !defined(OS2) # define OS2 #endif #if defined(_WINDOWS) && !defined(WINDOWS) # define WINDOWS #endif #if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__) # ifndef WIN32 # define WIN32 # endif #endif #if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32) # if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__) # ifndef SYS16BIT # define SYS16BIT # endif # endif #endif /* * Compile with -DMAXSEG_64K if the alloc function cannot allocate more * than 64k bytes at a time (needed on systems with 16-bit int). */ #ifdef SYS16BIT # define MAXSEG_64K #endif #ifdef MSDOS # define UNALIGNED_OK #endif #ifdef __STDC_VERSION__ # ifndef STDC # define STDC # endif # if __STDC_VERSION__ >= 199901L # ifndef STDC99 # define STDC99 # endif # endif #endif #if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus)) # define STDC #endif #if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__)) # define STDC #endif #if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32)) # define STDC #endif #if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__)) # define STDC #endif #if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */ # define STDC #endif #ifndef STDC # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */ # define const /* note: need a more gentle solution here */ # endif #endif /* Some Mac compilers merge all .h files incorrectly: */ #if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__) # define NO_DUMMY_DECL #endif /* Maximum value for memLevel in deflateInit2 */ #ifndef MAX_MEM_LEVEL # ifdef MAXSEG_64K # define MAX_MEM_LEVEL 8 # else # define MAX_MEM_LEVEL 9 # endif #endif /* Maximum value for windowBits in deflateInit2 and inflateInit2. * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files * created by gzip. (Files created by minigzip can still be extracted by * gzip.) */ #ifndef MAX_WBITS # define MAX_WBITS 15 /* 32K LZ77 window */ #endif /* The memory requirements for deflate are (in bytes): (1 << (windowBits+2)) + (1 << (memLevel+9)) that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) plus a few kilobytes for small objects. For example, if you want to reduce the default memory requirements from 256K to 128K, compile with make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7" Of course this will generally degrade compression (there's no free lunch). The memory requirements for inflate are (in bytes) 1 << windowBits that is, 32K for windowBits=15 (default value) plus a few kilobytes for small objects. */ /* Type declarations */ #ifndef OF /* function prototypes */ # ifdef STDC # define OF(args) args # else # define OF(args) () # endif #endif /* The following definitions for FAR are needed only for MSDOS mixed * model programming (small or medium model with some far allocations). * This was tested only with MSC; for other MSDOS compilers you may have * to define NO_MEMCPY in zutil.h. If you don't need the mixed model, * just define FAR to be empty. */ #ifdef SYS16BIT # if defined(M_I86SM) || defined(M_I86MM) /* MSC small or medium model */ # define SMALL_MEDIUM # ifdef _MSC_VER # define FAR _far # else # define FAR far # endif # endif # if (defined(__SMALL__) || defined(__MEDIUM__)) /* Turbo C small or medium model */ # define SMALL_MEDIUM # ifdef __BORLANDC__ # define FAR _far # else # define FAR far # endif # endif #endif #if defined(WINDOWS) || defined(WIN32) /* If building or using zlib as a DLL, define ZLIB_DLL. * This is not mandatory, but it offers a little performance increase. */ # ifdef ZLIB_DLL # if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500)) # ifdef ZLIB_INTERNAL # define ZEXTERN extern __declspec(dllexport) # else # define ZEXTERN extern __declspec(dllimport) # endif # endif # endif /* ZLIB_DLL */ /* If building or using zlib with the WINAPI/WINAPIV calling convention, * define ZLIB_WINAPI. * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI. */ # ifdef ZLIB_WINAPI # ifdef FAR # undef FAR # endif # include /* No need for _export, use ZLIB.DEF instead. */ /* For complete Windows compatibility, use WINAPI, not __stdcall. */ # define ZEXPORT WINAPI # ifdef WIN32 # define ZEXPORTVA WINAPIV # else # define ZEXPORTVA FAR CDECL # endif # endif #endif #if defined (__BEOS__) # ifdef ZLIB_DLL # ifdef ZLIB_INTERNAL # define ZEXPORT __declspec(dllexport) # define ZEXPORTVA __declspec(dllexport) # else # define ZEXPORT __declspec(dllimport) # define ZEXPORTVA __declspec(dllimport) # endif # endif #endif #ifndef ZEXTERN # define ZEXTERN extern #endif #ifndef ZEXPORT # define ZEXPORT #endif #ifndef ZEXPORTVA # define ZEXPORTVA #endif #ifndef FAR # define FAR #endif #if !defined(__MACTYPES__) typedef unsigned char Byte; /* 8 bits */ #endif typedef unsigned int uInt; /* 16 bits or more */ typedef unsigned long uLong; /* 32 bits or more */ #ifdef SMALL_MEDIUM /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */ # define Bytef Byte FAR #else typedef Byte FAR Bytef; #endif typedef char FAR charf; typedef int FAR intf; typedef uInt FAR uIntf; typedef uLong FAR uLongf; #ifdef STDC typedef void const *voidpc; typedef void FAR *voidpf; typedef void *voidp; #else typedef Byte const *voidpc; typedef Byte FAR *voidpf; typedef Byte *voidp; #endif #ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */ # define Z_HAVE_UNISTD_H #endif #ifdef STDC # include /* for off_t */ #endif /* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even * though the former does not conform to the LFS document), but considering * both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as * equivalently requesting no 64-bit operations */ #if -_LARGEFILE64_SOURCE - -1 == 1 # undef _LARGEFILE64_SOURCE #endif #if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE) # include /* for SEEK_* and off_t */ # ifdef VMS # include /* for off_t */ # endif # ifndef z_off_t # define z_off_t off_t # endif #endif #ifndef SEEK_SET # define SEEK_SET 0 /* Seek from beginning of file. */ # define SEEK_CUR 1 /* Seek from current position. */ # define SEEK_END 2 /* Set file pointer to EOF plus "offset" */ #endif #ifndef z_off_t # define z_off_t long #endif #if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 # define z_off64_t off64_t #else # define z_off64_t z_off_t #endif #if defined(__OS400__) # define NO_vsnprintf #endif #if defined(__MVS__) # define NO_vsnprintf #endif /* MVS linker does not support external names larger than 8 bytes */ #if defined(__MVS__) #pragma map(deflateInit_,"DEIN") #pragma map(deflateInit2_,"DEIN2") #pragma map(deflateEnd,"DEEND") #pragma map(deflateBound,"DEBND") #pragma map(inflateInit_,"ININ") #pragma map(inflateInit2_,"ININ2") #pragma map(inflateEnd,"INEND") #pragma map(inflateSync,"INSY") #pragma map(inflateSetDictionary,"INSEDI") #pragma map(compressBound,"CMBND") #pragma map(inflate_table,"INTABL") #pragma map(inflate_fast,"INFA") #pragma map(inflate_copyright,"INCOPY") #endif #endif /* ZCONF_H */ libtelnet-0.23/msvc2010/zlib.h000066400000000000000000002333141336202271100160070ustar00rootroot00000000000000/* zlib.h -- interface of the 'zlib' general purpose compression library version 1.2.5, April 19th, 2010 Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Jean-loup Gailly Mark Adler jloup@gzip.org madler@alumni.caltech.edu The data format used by the zlib library is described by RFCs (Request for Comments) 1950 to 1952 in the files http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). */ #ifndef ZLIB_H #define ZLIB_H #include "zconf.h" #ifdef __cplusplus extern "C" { #endif #define ZLIB_VERSION "1.2.5" #define ZLIB_VERNUM 0x1250 #define ZLIB_VER_MAJOR 1 #define ZLIB_VER_MINOR 2 #define ZLIB_VER_REVISION 5 #define ZLIB_VER_SUBREVISION 0 /* The 'zlib' compression library provides in-memory compression and decompression functions, including integrity checks of the uncompressed data. This version of the library supports only one compression method (deflation) but other algorithms will be added later and will have the same stream interface. Compression can be done in a single step if the buffers are large enough, or can be done by repeated calls of the compression function. In the latter case, the application must provide more input and/or consume the output (providing more output space) before each call. The compressed data format used by default by the in-memory functions is the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped around a deflate stream, which is itself documented in RFC 1951. The library also supports reading and writing files in gzip (.gz) format with an interface similar to that of stdio using the functions that start with "gz". The gzip format is different from the zlib format. gzip is a gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. This library can optionally read and write gzip streams in memory as well. The zlib format was designed to be compact and fast for use in memory and on communications channels. The gzip format was designed for single- file compression on file systems, has a larger header than zlib to maintain directory information, and uses a different, slower check method than zlib. The library does not install any signal handler. The decoder checks the consistency of the compressed data, so the library should never crash even in case of corrupted input. */ typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); typedef void (*free_func) OF((voidpf opaque, voidpf address)); struct internal_state; typedef struct z_stream_s { Bytef *next_in; /* next input byte */ uInt avail_in; /* number of bytes available at next_in */ uLong total_in; /* total nb of input bytes read so far */ Bytef *next_out; /* next output byte should be put there */ uInt avail_out; /* remaining free space at next_out */ uLong total_out; /* total nb of bytes output so far */ char *msg; /* last error message, NULL if no error */ struct internal_state FAR *state; /* not visible by applications */ alloc_func zalloc; /* used to allocate the internal state */ free_func zfree; /* used to free the internal state */ voidpf opaque; /* private data object passed to zalloc and zfree */ int data_type; /* best guess about the data type: binary or text */ uLong adler; /* adler32 value of the uncompressed data */ uLong reserved; /* reserved for future use */ } z_stream; typedef z_stream FAR *z_streamp; /* gzip header information passed to and from zlib routines. See RFC 1952 for more details on the meanings of these fields. */ typedef struct gz_header_s { int text; /* true if compressed data believed to be text */ uLong time; /* modification time */ int xflags; /* extra flags (not used when writing a gzip file) */ int os; /* operating system */ Bytef *extra; /* pointer to extra field or Z_NULL if none */ uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ uInt extra_max; /* space at extra (only when reading header) */ Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ uInt name_max; /* space at name (only when reading header) */ Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ uInt comm_max; /* space at comment (only when reading header) */ int hcrc; /* true if there was or will be a header crc */ int done; /* true when done reading gzip header (not used when writing a gzip file) */ } gz_header; typedef gz_header FAR *gz_headerp; /* The application must update next_in and avail_in when avail_in has dropped to zero. It must update next_out and avail_out when avail_out has dropped to zero. The application must initialize zalloc, zfree and opaque before calling the init function. All other fields are set by the compression library and must not be updated by the application. The opaque value provided by the application will be passed as the first parameter for calls of zalloc and zfree. This can be useful for custom memory management. The compression library attaches no meaning to the opaque value. zalloc must return Z_NULL if there is not enough memory for the object. If zlib is used in a multi-threaded application, zalloc and zfree must be thread safe. On 16-bit systems, the functions zalloc and zfree must be able to allocate exactly 65536 bytes, but will not be required to allocate more than this if the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS, pointers returned by zalloc for objects of exactly 65536 bytes *must* have their offset normalized to zero. The default allocation function provided by this library ensures this (see zutil.c). To reduce memory requirements and avoid any allocation of 64K objects, at the expense of compression ratio, compile the library with -DMAX_WBITS=14 (see zconf.h). The fields total_in and total_out can be used for statistics or progress reports. After compression, total_in holds the total size of the uncompressed data and may be saved for use in the decompressor (particularly if the decompressor wants to decompress everything in a single step). */ /* constants */ #define Z_NO_FLUSH 0 #define Z_PARTIAL_FLUSH 1 #define Z_SYNC_FLUSH 2 #define Z_FULL_FLUSH 3 #define Z_FINISH 4 #define Z_BLOCK 5 #define Z_TREES 6 /* Allowed flush values; see deflate() and inflate() below for details */ #define Z_OK 0 #define Z_STREAM_END 1 #define Z_NEED_DICT 2 #define Z_ERRNO (-1) #define Z_STREAM_ERROR (-2) #define Z_DATA_ERROR (-3) #define Z_MEM_ERROR (-4) #define Z_BUF_ERROR (-5) #define Z_VERSION_ERROR (-6) /* Return codes for the compression/decompression functions. Negative values * are errors, positive values are used for special but normal events. */ #define Z_NO_COMPRESSION 0 #define Z_BEST_SPEED 1 #define Z_BEST_COMPRESSION 9 #define Z_DEFAULT_COMPRESSION (-1) /* compression levels */ #define Z_FILTERED 1 #define Z_HUFFMAN_ONLY 2 #define Z_RLE 3 #define Z_FIXED 4 #define Z_DEFAULT_STRATEGY 0 /* compression strategy; see deflateInit2() below for details */ #define Z_BINARY 0 #define Z_TEXT 1 #define Z_ASCII Z_TEXT /* for compatibility with 1.2.2 and earlier */ #define Z_UNKNOWN 2 /* Possible values of the data_type field (though see inflate()) */ #define Z_DEFLATED 8 /* The deflate compression method (the only one supported in this version) */ #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ #define zlib_version zlibVersion() /* for compatibility with versions < 1.0.2 */ /* basic functions */ ZEXTERN const char * ZEXPORT zlibVersion OF((void)); /* The application can compare zlibVersion and ZLIB_VERSION for consistency. If the first character differs, the library code actually used is not compatible with the zlib.h header file used by the application. This check is automatically made by deflateInit and inflateInit. */ /* ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); Initializes the internal stream state for compression. The fields zalloc, zfree and opaque must be initialized before by the caller. If zalloc and zfree are set to Z_NULL, deflateInit updates them to use default allocation functions. The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9: 1 gives best speed, 9 gives best compression, 0 gives no compression at all (the input data is simply copied a block at a time). Z_DEFAULT_COMPRESSION requests a default compromise between speed and compression (currently equivalent to level 6). deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_STREAM_ERROR if level is not a valid compression level, or Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible with the version assumed by the caller (ZLIB_VERSION). msg is set to null if there is no error message. deflateInit does not perform any compression: this will be done by deflate(). */ ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); /* deflate compresses as much data as possible, and stops when the input buffer becomes empty or the output buffer becomes full. It may introduce some output latency (reading input without producing any output) except when forced to flush. The detailed semantics are as follows. deflate performs one or both of the following actions: - Compress more input starting at next_in and update next_in and avail_in accordingly. If not all input can be processed (because there is not enough room in the output buffer), next_in and avail_in are updated and processing will resume at this point for the next call of deflate(). - Provide more output starting at next_out and update next_out and avail_out accordingly. This action is forced if the parameter flush is non zero. Forcing flush frequently degrades the compression ratio, so this parameter should be set only when necessary (in interactive applications). Some output may be provided even if flush is not set. Before the call of deflate(), the application should ensure that at least one of the actions is possible, by providing more input and/or consuming more output, and updating avail_in or avail_out accordingly; avail_out should never be zero before the call. The application can consume the compressed output when it wants, for example when the output buffer is full (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK and with zero avail_out, it must be called again after making room in the output buffer because there might be more output pending. Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to decide how much data to accumulate before producing output, in order to maximize compression. If the parameter flush is set to Z_SYNC_FLUSH, all pending output is flushed to the output buffer and the output is aligned on a byte boundary, so that the decompressor can get all input data available so far. (In particular avail_in is zero after the call if enough output space has been provided before the call.) Flushing may degrade compression for some compression algorithms and so it should be used only when necessary. This completes the current deflate block and follows it with an empty stored block that is three bits plus filler bits to the next byte, followed by four bytes (00 00 ff ff). If flush is set to Z_PARTIAL_FLUSH, all pending output is flushed to the output buffer, but the output is not aligned to a byte boundary. All of the input data so far will be available to the decompressor, as for Z_SYNC_FLUSH. This completes the current deflate block and follows it with an empty fixed codes block that is 10 bits long. This assures that enough bytes are output in order for the decompressor to finish the block before the empty fixed code block. If flush is set to Z_BLOCK, a deflate block is completed and emitted, as for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to seven bits of the current block are held to be written as the next byte after the next deflate block is completed. In this case, the decompressor may not be provided enough bits at this point in order to complete decompression of the data provided so far to the compressor. It may need to wait for the next block to be emitted. This is for advanced applications that need to control the emission of deflate blocks. If flush is set to Z_FULL_FLUSH, all output is flushed as with Z_SYNC_FLUSH, and the compression state is reset so that decompression can restart from this point if previous compressed data has been damaged or if random access is desired. Using Z_FULL_FLUSH too often can seriously degrade compression. If deflate returns with avail_out == 0, this function must be called again with the same value of the flush parameter and more output space (updated avail_out), until the flush is complete (deflate returns with non-zero avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that avail_out is greater than six to avoid repeated flush markers due to avail_out == 0 on return. If the parameter flush is set to Z_FINISH, pending input is processed, pending output is flushed and deflate returns with Z_STREAM_END if there was enough output space; if deflate returns with Z_OK, this function must be called again with Z_FINISH and more output space (updated avail_out) but no more input data, until it returns with Z_STREAM_END or an error. After deflate has returned Z_STREAM_END, the only possible operations on the stream are deflateReset or deflateEnd. Z_FINISH can be used immediately after deflateInit if all the compression is to be done in a single step. In this case, avail_out must be at least the value returned by deflateBound (see below). If deflate does not return Z_STREAM_END, then it must be called again as described above. deflate() sets strm->adler to the adler32 checksum of all input read so far (that is, total_in bytes). deflate() may update strm->data_type if it can make a good guess about the input data type (Z_BINARY or Z_TEXT). In doubt, the data is considered binary. This field is only for information purposes and does not affect the compression algorithm in any manner. deflate() returns Z_OK if some progress has been made (more input processed or more output produced), Z_STREAM_END if all input has been consumed and all output has been produced (only when flush is set to Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not fatal, and deflate() can be called again with more input and more output space to continue compressing. */ ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm)); /* All dynamically allocated data structures for this stream are freed. This function discards any unprocessed input and does not flush any pending output. deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state was inconsistent, Z_DATA_ERROR if the stream was freed prematurely (some input or output was discarded). In the error case, msg may be set but then points to a static string (which must not be deallocated). */ /* ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm)); Initializes the internal stream state for decompression. The fields next_in, avail_in, zalloc, zfree and opaque must be initialized before by the caller. If next_in is not Z_NULL and avail_in is large enough (the exact value depends on the compression method), inflateInit determines the compression method from the zlib header and allocates all data structures accordingly; otherwise the allocation will be deferred to the first call of inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to use default allocation functions. inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_VERSION_ERROR if the zlib library version is incompatible with the version assumed by the caller, or Z_STREAM_ERROR if the parameters are invalid, such as a null pointer to the structure. msg is set to null if there is no error message. inflateInit does not perform any decompression apart from possibly reading the zlib header if present: actual decompression will be done by inflate(). (So next_in and avail_in may be modified, but next_out and avail_out are unused and unchanged.) The current implementation of inflateInit() does not process any header information -- that is deferred until inflate() is called. */ ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush)); /* inflate decompresses as much data as possible, and stops when the input buffer becomes empty or the output buffer becomes full. It may introduce some output latency (reading input without producing any output) except when forced to flush. The detailed semantics are as follows. inflate performs one or both of the following actions: - Decompress more input starting at next_in and update next_in and avail_in accordingly. If not all input can be processed (because there is not enough room in the output buffer), next_in is updated and processing will resume at this point for the next call of inflate(). - Provide more output starting at next_out and update next_out and avail_out accordingly. inflate() provides as much output as possible, until there is no more input data or no more space in the output buffer (see below about the flush parameter). Before the call of inflate(), the application should ensure that at least one of the actions is possible, by providing more input and/or consuming more output, and updating the next_* and avail_* values accordingly. The application can consume the uncompressed output when it wants, for example when the output buffer is full (avail_out == 0), or after each call of inflate(). If inflate returns Z_OK and with zero avail_out, it must be called again after making room in the output buffer because there might be more output pending. The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH, Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much output as possible to the output buffer. Z_BLOCK requests that inflate() stop if and when it gets to the next deflate block boundary. When decoding the zlib or gzip format, this will cause inflate() to return immediately after the header and before the first block. When doing a raw inflate, inflate() will go ahead and process the first block, and will return when it gets to the end of that block, or when it runs out of data. The Z_BLOCK option assists in appending to or combining deflate streams. Also to assist in this, on return inflate() will set strm->data_type to the number of unused bits in the last byte taken from strm->next_in, plus 64 if inflate() is currently decoding the last block in the deflate stream, plus 128 if inflate() returned immediately after decoding an end-of-block code or decoding the complete header up to just before the first byte of the deflate stream. The end-of-block will not be indicated until all of the uncompressed data from that block has been written to strm->next_out. The number of unused bits may in general be greater than seven, except when bit 7 of data_type is set, in which case the number of unused bits will be less than eight. data_type is set as noted here every time inflate() returns for all flush options, and so can be used to determine the amount of currently consumed input in bits. The Z_TREES option behaves as Z_BLOCK does, but it also returns when the end of each deflate block header is reached, before any actual data in that block is decoded. This allows the caller to determine the length of the deflate block header for later use in random access within a deflate block. 256 is added to the value of strm->data_type when inflate() returns immediately after reaching the end of the deflate block header. inflate() should normally be called until it returns Z_STREAM_END or an error. However if all decompression is to be performed in a single step (a single call of inflate), the parameter flush should be set to Z_FINISH. In this case all pending input is processed and all pending output is flushed; avail_out must be large enough to hold all the uncompressed data. (The size of the uncompressed data may have been saved by the compressor for this purpose.) The next operation on this stream must be inflateEnd to deallocate the decompression state. The use of Z_FINISH is never required, but can be used to inform inflate that a faster approach may be used for the single inflate() call. In this implementation, inflate() always flushes as much output as possible to the output buffer, and always uses the faster approach on the first call. So the only effect of the flush parameter in this implementation is on the return value of inflate(), as noted below, or when it returns early because Z_BLOCK or Z_TREES is used. If a preset dictionary is needed after this call (see inflateSetDictionary below), inflate sets strm->adler to the adler32 checksum of the dictionary chosen by the compressor and returns Z_NEED_DICT; otherwise it sets strm->adler to the adler32 checksum of all output produced so far (that is, total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described below. At the end of the stream, inflate() checks that its computed adler32 checksum is equal to that saved by the compressor and returns Z_STREAM_END only if the checksum is correct. inflate() can decompress and check either zlib-wrapped or gzip-wrapped deflate data. The header type is detected automatically, if requested when initializing with inflateInit2(). Any information contained in the gzip header is not retained, so applications that need that information should instead use raw inflate, see inflateInit2() below, or inflateBack() and perform their own processing of the gzip header and trailer. inflate() returns Z_OK if some progress has been made (more input processed or more output produced), Z_STREAM_END if the end of the compressed data has been reached and all uncompressed output has been produced, Z_NEED_DICT if a preset dictionary is needed at this point, Z_DATA_ERROR if the input data was corrupted (input stream not conforming to the zlib format or incorrect check value), Z_STREAM_ERROR if the stream structure was inconsistent (for example next_in or next_out was Z_NULL), Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if no progress is possible or if there was not enough room in the output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and inflate() can be called again with more input and more output space to continue decompressing. If Z_DATA_ERROR is returned, the application may then call inflateSync() to look for a good compression block if a partial recovery of the data is desired. */ ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm)); /* All dynamically allocated data structures for this stream are freed. This function discards any unprocessed input and does not flush any pending output. inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state was inconsistent. In the error case, msg may be set but then points to a static string (which must not be deallocated). */ /* Advanced functions */ /* The following functions are needed only in some special applications. */ /* ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy)); This is another version of deflateInit with more compression options. The fields next_in, zalloc, zfree and opaque must be initialized before by the caller. The method parameter is the compression method. It must be Z_DEFLATED in this version of the library. The windowBits parameter is the base two logarithm of the window size (the size of the history buffer). It should be in the range 8..15 for this version of the library. Larger values of this parameter result in better compression at the expense of memory usage. The default value is 15 if deflateInit is used instead. windowBits can also be -8..-15 for raw deflate. In this case, -windowBits determines the window size. deflate() will then generate raw deflate data with no zlib header or trailer, and will not compute an adler32 check value. windowBits can also be greater than 15 for optional gzip encoding. Add 16 to windowBits to write a simple gzip header and trailer around the compressed data instead of a zlib wrapper. The gzip header will have no file name, no extra data, no comment, no modification time (set to zero), no header crc, and the operating system will be set to 255 (unknown). If a gzip stream is being written, strm->adler is a crc32 instead of an adler32. The memLevel parameter specifies how much memory should be allocated for the internal compression state. memLevel=1 uses minimum memory but is slow and reduces compression ratio; memLevel=9 uses maximum memory for optimal speed. The default value is 8. See zconf.h for total memory usage as a function of windowBits and memLevel. The strategy parameter is used to tune the compression algorithm. Use the value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a filter (or predictor), Z_HUFFMAN_ONLY to force Huffman encoding only (no string match), or Z_RLE to limit match distances to one (run-length encoding). Filtered data consists mostly of small values with a somewhat random distribution. In this case, the compression algorithm is tuned to compress them better. The effect of Z_FILTERED is to force more Huffman coding and less string matching; it is somewhat intermediate between Z_DEFAULT_STRATEGY and Z_HUFFMAN_ONLY. Z_RLE is designed to be almost as fast as Z_HUFFMAN_ONLY, but give better compression for PNG image data. The strategy parameter only affects the compression ratio but not the correctness of the compressed output even if it is not set appropriately. Z_FIXED prevents the use of dynamic Huffman codes, allowing for a simpler decoder for special applications. deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_STREAM_ERROR if any parameter is invalid (such as an invalid method), or Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible with the version assumed by the caller (ZLIB_VERSION). msg is set to null if there is no error message. deflateInit2 does not perform any compression: this will be done by deflate(). */ ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm, const Bytef *dictionary, uInt dictLength)); /* Initializes the compression dictionary from the given byte sequence without producing any compressed output. This function must be called immediately after deflateInit, deflateInit2 or deflateReset, before any call of deflate. The compressor and decompressor must use exactly the same dictionary (see inflateSetDictionary). The dictionary should consist of strings (byte sequences) that are likely to be encountered later in the data to be compressed, with the most commonly used strings preferably put towards the end of the dictionary. Using a dictionary is most useful when the data to be compressed is short and can be predicted with good accuracy; the data can then be compressed better than with the default empty dictionary. Depending on the size of the compression data structures selected by deflateInit or deflateInit2, a part of the dictionary may in effect be discarded, for example if the dictionary is larger than the window size provided in deflateInit or deflateInit2. Thus the strings most likely to be useful should be put at the end of the dictionary, not at the front. In addition, the current implementation of deflate will use at most the window size minus 262 bytes of the provided dictionary. Upon return of this function, strm->adler is set to the adler32 value of the dictionary; the decompressor may later use this value to determine which dictionary has been used by the compressor. (The adler32 value applies to the whole dictionary even if only a subset of the dictionary is actually used by the compressor.) If a raw deflate was requested, then the adler32 value is not computed and strm->adler is not set. deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is inconsistent (for example if deflate has already been called for this stream or if the compression method is bsort). deflateSetDictionary does not perform any compression: this will be done by deflate(). */ ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest, z_streamp source)); /* Sets the destination stream as a complete copy of the source stream. This function can be useful when several compression strategies will be tried, for example when there are several ways of pre-processing the input data with a filter. The streams that will be discarded should then be freed by calling deflateEnd. Note that deflateCopy duplicates the internal compression state which can be quite large, so this strategy is slow and can consume lots of memory. deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc being Z_NULL). msg is left unchanged in both source and destination. */ ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm)); /* This function is equivalent to deflateEnd followed by deflateInit, but does not free and reallocate all the internal compression state. The stream will keep the same compression level and any other attributes that may have been set by deflateInit2. deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc or state being Z_NULL). */ ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm, int level, int strategy)); /* Dynamically update the compression level and compression strategy. The interpretation of level and strategy is as in deflateInit2. This can be used to switch between compression and straight copy of the input data, or to switch to a different kind of input data requiring a different strategy. If the compression level is changed, the input available so far is compressed with the old level (and may be flushed); the new level will take effect only at the next call of deflate(). Before the call of deflateParams, the stream state must be set as for a call of deflate(), since the currently available input may have to be compressed and flushed. In particular, strm->avail_out must be non-zero. deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR if strm->avail_out was zero. */ ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm, int good_length, int max_lazy, int nice_length, int max_chain)); /* Fine tune deflate's internal compression parameters. This should only be used by someone who understands the algorithm used by zlib's deflate for searching for the best matching string, and even then only by the most fanatic optimizer trying to squeeze out the last compressed bit for their specific input data. Read the deflate.c source code for the meaning of the max_lazy, good_length, nice_length, and max_chain parameters. deflateTune() can be called after deflateInit() or deflateInit2(), and returns Z_OK on success, or Z_STREAM_ERROR for an invalid deflate stream. */ ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm, uLong sourceLen)); /* deflateBound() returns an upper bound on the compressed size after deflation of sourceLen bytes. It must be called after deflateInit() or deflateInit2(), and after deflateSetHeader(), if used. This would be used to allocate an output buffer for deflation in a single pass, and so would be called before deflate(). */ ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm, int bits, int value)); /* deflatePrime() inserts bits in the deflate output stream. The intent is that this function is used to start off the deflate output with the bits leftover from a previous deflate stream when appending to it. As such, this function can only be used for raw deflate, and must be used before the first deflate() call after a deflateInit2() or deflateReset(). bits must be less than or equal to 16, and that many of the least significant bits of value will be inserted in the output. deflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent. */ ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm, gz_headerp head)); /* deflateSetHeader() provides gzip header information for when a gzip stream is requested by deflateInit2(). deflateSetHeader() may be called after deflateInit2() or deflateReset() and before the first call of deflate(). The text, time, os, extra field, name, and comment information in the provided gz_header structure are written to the gzip header (xflag is ignored -- the extra flags are set according to the compression level). The caller must assure that, if not Z_NULL, name and comment are terminated with a zero byte, and that if extra is not Z_NULL, that extra_len bytes are available there. If hcrc is true, a gzip header crc is included. Note that the current versions of the command-line version of gzip (up through version 1.3.x) do not support header crc's, and will report that it is a "multi-part gzip file" and give up. If deflateSetHeader is not used, the default gzip header has text false, the time set to zero, and os set to 255, with no extra, name, or comment fields. The gzip header is returned to the default state by deflateReset(). deflateSetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent. */ /* ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm, int windowBits)); This is another version of inflateInit with an extra parameter. The fields next_in, avail_in, zalloc, zfree and opaque must be initialized before by the caller. The windowBits parameter is the base two logarithm of the maximum window size (the size of the history buffer). It should be in the range 8..15 for this version of the library. The default value is 15 if inflateInit is used instead. windowBits must be greater than or equal to the windowBits value provided to deflateInit2() while compressing, or it must be equal to 15 if deflateInit2() was not used. If a compressed stream with a larger window size is given as input, inflate() will return with the error code Z_DATA_ERROR instead of trying to allocate a larger window. windowBits can also be zero to request that inflate use the window size in the zlib header of the compressed stream. windowBits can also be -8..-15 for raw inflate. In this case, -windowBits determines the window size. inflate() will then process raw deflate data, not looking for a zlib or gzip header, not generating a check value, and not looking for any check values for comparison at the end of the stream. This is for use with other formats that use the deflate compressed data format such as zip. Those formats provide their own check values. If a custom format is developed using the raw deflate format for compressed data, it is recommended that a check value such as an adler32 or a crc32 be applied to the uncompressed data as is done in the zlib, gzip, and zip formats. For most applications, the zlib format should be used as is. Note that comments above on the use in deflateInit2() applies to the magnitude of windowBits. windowBits can also be greater than 15 for optional gzip decoding. Add 32 to windowBits to enable zlib and gzip decoding with automatic header detection, or add 16 to decode only the gzip format (the zlib format will return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a crc32 instead of an adler32. inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_VERSION_ERROR if the zlib library version is incompatible with the version assumed by the caller, or Z_STREAM_ERROR if the parameters are invalid, such as a null pointer to the structure. msg is set to null if there is no error message. inflateInit2 does not perform any decompression apart from possibly reading the zlib header if present: actual decompression will be done by inflate(). (So next_in and avail_in may be modified, but next_out and avail_out are unused and unchanged.) The current implementation of inflateInit2() does not process any header information -- that is deferred until inflate() is called. */ ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm, const Bytef *dictionary, uInt dictLength)); /* Initializes the decompression dictionary from the given uncompressed byte sequence. This function must be called immediately after a call of inflate, if that call returned Z_NEED_DICT. The dictionary chosen by the compressor can be determined from the adler32 value returned by that call of inflate. The compressor and decompressor must use exactly the same dictionary (see deflateSetDictionary). For raw inflate, this function can be called immediately after inflateInit2() or inflateReset() and before any call of inflate() to set the dictionary. The application must insure that the dictionary that was used for compression is provided. inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the expected one (incorrect adler32 value). inflateSetDictionary does not perform any decompression: this will be done by subsequent calls of inflate(). */ ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); /* Skips invalid compressed data until a full flush point (see above the description of deflate with Z_FULL_FLUSH) can be found, or until all available input is skipped. No output is provided. inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point has been found, or Z_STREAM_ERROR if the stream structure was inconsistent. In the success case, the application may save the current current value of total_in which indicates where valid compressed data was found. In the error case, the application may repeatedly call inflateSync, providing more input each time, until success or end of the input data. */ ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest, z_streamp source)); /* Sets the destination stream as a complete copy of the source stream. This function can be useful when randomly accessing a large stream. The first pass through the stream can periodically record the inflate state, allowing restarting inflate at those points when randomly accessing the stream. inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc being Z_NULL). msg is left unchanged in both source and destination. */ ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm)); /* This function is equivalent to inflateEnd followed by inflateInit, but does not free and reallocate all the internal decompression state. The stream will keep attributes that may have been set by inflateInit2. inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc or state being Z_NULL). */ ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm, int windowBits)); /* This function is the same as inflateReset, but it also permits changing the wrap and window size requests. The windowBits parameter is interpreted the same as it is for inflateInit2. inflateReset2 returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent (such as zalloc or state being Z_NULL), or if the windowBits parameter is invalid. */ ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm, int bits, int value)); /* This function inserts bits in the inflate input stream. The intent is that this function is used to start inflating at a bit position in the middle of a byte. The provided bits will be used before any bytes are used from next_in. This function should only be used with raw inflate, and should be used before the first inflate() call after inflateInit2() or inflateReset(). bits must be less than or equal to 16, and that many of the least significant bits of value will be inserted in the input. If bits is negative, then the input stream bit buffer is emptied. Then inflatePrime() can be called again to put bits in the buffer. This is used to clear out bits leftover after feeding inflate a block description prior to feeding inflate codes. inflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent. */ ZEXTERN long ZEXPORT inflateMark OF((z_streamp strm)); /* This function returns two values, one in the lower 16 bits of the return value, and the other in the remaining upper bits, obtained by shifting the return value down 16 bits. If the upper value is -1 and the lower value is zero, then inflate() is currently decoding information outside of a block. If the upper value is -1 and the lower value is non-zero, then inflate is in the middle of a stored block, with the lower value equaling the number of bytes from the input remaining to copy. If the upper value is not -1, then it is the number of bits back from the current bit position in the input of the code (literal or length/distance pair) currently being processed. In that case the lower value is the number of bytes already emitted for that code. A code is being processed if inflate is waiting for more input to complete decoding of the code, or if it has completed decoding but is waiting for more output space to write the literal or match data. inflateMark() is used to mark locations in the input data for random access, which may be at bit positions, and to note those cases where the output of a code may span boundaries of random access blocks. The current location in the input stream can be determined from avail_in and data_type as noted in the description for the Z_BLOCK flush parameter for inflate. inflateMark returns the value noted above or -1 << 16 if the provided source stream state was inconsistent. */ ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm, gz_headerp head)); /* inflateGetHeader() requests that gzip header information be stored in the provided gz_header structure. inflateGetHeader() may be called after inflateInit2() or inflateReset(), and before the first call of inflate(). As inflate() processes the gzip stream, head->done is zero until the header is completed, at which time head->done is set to one. If a zlib stream is being decoded, then head->done is set to -1 to indicate that there will be no gzip header information forthcoming. Note that Z_BLOCK or Z_TREES can be used to force inflate() to return immediately after header processing is complete and before any actual data is decompressed. The text, time, xflags, and os fields are filled in with the gzip header contents. hcrc is set to true if there is a header CRC. (The header CRC was valid if done is set to one.) If extra is not Z_NULL, then extra_max contains the maximum number of bytes to write to extra. Once done is true, extra_len contains the actual extra field length, and extra contains the extra field, or that field truncated if extra_max is less than extra_len. If name is not Z_NULL, then up to name_max characters are written there, terminated with a zero unless the length is greater than name_max. If comment is not Z_NULL, then up to comm_max characters are written there, terminated with a zero unless the length is greater than comm_max. When any of extra, name, or comment are not Z_NULL and the respective field is not present in the header, then that field is set to Z_NULL to signal its absence. This allows the use of deflateSetHeader() with the returned structure to duplicate the header. However if those fields are set to allocated memory, then the application will need to save those pointers elsewhere so that they can be eventually freed. If inflateGetHeader is not used, then the header information is simply discarded. The header is always checked for validity, including the header CRC if present. inflateReset() will reset the process to discard the header information. The application would need to call inflateGetHeader() again to retrieve the header from the next gzip stream. inflateGetHeader returns Z_OK if success, or Z_STREAM_ERROR if the source stream state was inconsistent. */ /* ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits, unsigned char FAR *window)); Initialize the internal stream state for decompression using inflateBack() calls. The fields zalloc, zfree and opaque in strm must be initialized before the call. If zalloc and zfree are Z_NULL, then the default library- derived memory allocation routines are used. windowBits is the base two logarithm of the window size, in the range 8..15. window is a caller supplied buffer of that size. Except for special applications where it is assured that deflate was used with small window sizes, windowBits must be 15 and a 32K byte window must be supplied to be able to decompress general deflate streams. See inflateBack() for the usage of these routines. inflateBackInit will return Z_OK on success, Z_STREAM_ERROR if any of the paramaters are invalid, Z_MEM_ERROR if the internal state could not be allocated, or Z_VERSION_ERROR if the version of the library does not match the version of the header file. */ typedef unsigned (*in_func) OF((void FAR *, unsigned char FAR * FAR *)); typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned)); ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm, in_func in, void FAR *in_desc, out_func out, void FAR *out_desc)); /* inflateBack() does a raw inflate with a single call using a call-back interface for input and output. This is more efficient than inflate() for file i/o applications in that it avoids copying between the output and the sliding window by simply making the window itself the output buffer. This function trusts the application to not change the output buffer passed by the output function, at least until inflateBack() returns. inflateBackInit() must be called first to allocate the internal state and to initialize the state with the user-provided window buffer. inflateBack() may then be used multiple times to inflate a complete, raw deflate stream with each call. inflateBackEnd() is then called to free the allocated state. A raw deflate stream is one with no zlib or gzip header or trailer. This routine would normally be used in a utility that reads zip or gzip files and writes out uncompressed files. The utility would decode the header and process the trailer on its own, hence this routine expects only the raw deflate stream to decompress. This is different from the normal behavior of inflate(), which expects either a zlib or gzip header and trailer around the deflate stream. inflateBack() uses two subroutines supplied by the caller that are then called by inflateBack() for input and output. inflateBack() calls those routines until it reads a complete deflate stream and writes out all of the uncompressed data, or until it encounters an error. The function's parameters and return types are defined above in the in_func and out_func typedefs. inflateBack() will call in(in_desc, &buf) which should return the number of bytes of provided input, and a pointer to that input in buf. If there is no input available, in() must return zero--buf is ignored in that case--and inflateBack() will return a buffer error. inflateBack() will call out(out_desc, buf, len) to write the uncompressed data buf[0..len-1]. out() should return zero on success, or non-zero on failure. If out() returns non-zero, inflateBack() will return with an error. Neither in() nor out() are permitted to change the contents of the window provided to inflateBackInit(), which is also the buffer that out() uses to write from. The length written by out() will be at most the window size. Any non-zero amount of input may be provided by in(). For convenience, inflateBack() can be provided input on the first call by setting strm->next_in and strm->avail_in. If that input is exhausted, then in() will be called. Therefore strm->next_in must be initialized before calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called immediately for input. If strm->next_in is not Z_NULL, then strm->avail_in must also be initialized, and then if strm->avail_in is not zero, input will initially be taken from strm->next_in[0 .. strm->avail_in - 1]. The in_desc and out_desc parameters of inflateBack() is passed as the first parameter of in() and out() respectively when they are called. These descriptors can be optionally used to pass any information that the caller- supplied in() and out() functions need to do their job. On return, inflateBack() will set strm->next_in and strm->avail_in to pass back any unused input that was provided by the last in() call. The return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR if in() or out() returned an error, Z_DATA_ERROR if there was a format error in the deflate stream (in which case strm->msg is set to indicate the nature of the error), or Z_STREAM_ERROR if the stream was not properly initialized. In the case of Z_BUF_ERROR, an input or output error can be distinguished using strm->next_in which will be Z_NULL only if in() returned an error. If strm->next_in is not Z_NULL, then the Z_BUF_ERROR was due to out() returning non-zero. (in() will always be called before out(), so strm->next_in is assured to be defined if out() returns non-zero.) Note that inflateBack() cannot return Z_OK. */ ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm)); /* All memory allocated by inflateBackInit() is freed. inflateBackEnd() returns Z_OK on success, or Z_STREAM_ERROR if the stream state was inconsistent. */ ZEXTERN uLong ZEXPORT zlibCompileFlags OF((void)); /* Return flags indicating compile-time options. Type sizes, two bits each, 00 = 16 bits, 01 = 32, 10 = 64, 11 = other: 1.0: size of uInt 3.2: size of uLong 5.4: size of voidpf (pointer) 7.6: size of z_off_t Compiler, assembler, and debug options: 8: DEBUG 9: ASMV or ASMINF -- use ASM code 10: ZLIB_WINAPI -- exported functions use the WINAPI calling convention 11: 0 (reserved) One-time table building (smaller code, but not thread-safe if true): 12: BUILDFIXED -- build static block decoding tables when needed 13: DYNAMIC_CRC_TABLE -- build CRC calculation tables when needed 14,15: 0 (reserved) Library content (indicates missing functionality): 16: NO_GZCOMPRESS -- gz* functions cannot compress (to avoid linking deflate code when not needed) 17: NO_GZIP -- deflate can't write gzip streams, and inflate can't detect and decode gzip streams (to avoid linking crc code) 18-19: 0 (reserved) Operation variations (changes in library functionality): 20: PKZIP_BUG_WORKAROUND -- slightly more permissive inflate 21: FASTEST -- deflate algorithm with only one, lowest compression level 22,23: 0 (reserved) The sprintf variant used by gzprintf (zero is best): 24: 0 = vs*, 1 = s* -- 1 means limited to 20 arguments after the format 25: 0 = *nprintf, 1 = *printf -- 1 means gzprintf() not secure! 26: 0 = returns value, 1 = void -- 1 means inferred string length returned Remainder: 27-31: 0 (reserved) */ /* utility functions */ /* The following utility functions are implemented on top of the basic stream-oriented functions. To simplify the interface, some default options are assumed (compression level and memory usage, standard memory allocation functions). The source code of these utility functions can be modified if you need special options. */ ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen)); /* Compresses the source buffer into the destination buffer. sourceLen is the byte length of the source buffer. Upon entry, destLen is the total size of the destination buffer, which must be at least the value returned by compressBound(sourceLen). Upon exit, destLen is the actual size of the compressed buffer. compress returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if there was not enough room in the output buffer. */ ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int level)); /* Compresses the source buffer into the destination buffer. The level parameter has the same meaning as in deflateInit. sourceLen is the byte length of the source buffer. Upon entry, destLen is the total size of the destination buffer, which must be at least the value returned by compressBound(sourceLen). Upon exit, destLen is the actual size of the compressed buffer. compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if there was not enough room in the output buffer, Z_STREAM_ERROR if the level parameter is invalid. */ ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); /* compressBound() returns an upper bound on the compressed size after compress() or compress2() on sourceLen bytes. It would be used before a compress() or compress2() call to allocate the destination buffer. */ ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen)); /* Decompresses the source buffer into the destination buffer. sourceLen is the byte length of the source buffer. Upon entry, destLen is the total size of the destination buffer, which must be large enough to hold the entire uncompressed data. (The size of the uncompressed data must have been saved previously by the compressor and transmitted to the decompressor by some mechanism outside the scope of this compression library.) Upon exit, destLen is the actual size of the uncompressed buffer. uncompress returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if there was not enough room in the output buffer, or Z_DATA_ERROR if the input data was corrupted or incomplete. */ /* gzip file access functions */ /* This library supports reading and writing files in gzip (.gz) format with an interface similar to that of stdio, using the functions that start with "gz". The gzip format is different from the zlib format. gzip is a gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. */ typedef voidp gzFile; /* opaque gzip file descriptor */ /* ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode)); Opens a gzip (.gz) file for reading or writing. The mode parameter is as in fopen ("rb" or "wb") but can also include a compression level ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for Huffman-only compression as in "wb1h", 'R' for run-length encoding as in "wb1R", or 'F' for fixed code compression as in "wb9F". (See the description of deflateInit2 for more information about the strategy parameter.) Also "a" can be used instead of "w" to request that the gzip stream that will be written be appended to the file. "+" will result in an error, since reading and writing to the same gzip file is not supported. gzopen can be used to read a file which is not in gzip format; in this case gzread will directly read from the file without decompression. gzopen returns NULL if the file could not be opened, if there was insufficient memory to allocate the gzFile state, or if an invalid mode was specified (an 'r', 'w', or 'a' was not provided, or '+' was provided). errno can be checked to determine if the reason gzopen failed was that the file could not be opened. */ ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode)); /* gzdopen associates a gzFile with the file descriptor fd. File descriptors are obtained from calls like open, dup, creat, pipe or fileno (if the file has been previously opened with fopen). The mode parameter is as in gzopen. The next call of gzclose on the returned gzFile will also close the file descriptor fd, just like fclose(fdopen(fd, mode)) closes the file descriptor fd. If you want to keep fd open, use fd = dup(fd_keep); gz = gzdopen(fd, mode);. The duplicated descriptor should be saved to avoid a leak, since gzdopen does not close fd if it fails. gzdopen returns NULL if there was insufficient memory to allocate the gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not provided, or '+' was provided), or if fd is -1. The file descriptor is not used until the next gz* read, write, seek, or close operation, so gzdopen will not detect if fd is invalid (unless fd is -1). */ ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size)); /* Set the internal buffer size used by this library's functions. The default buffer size is 8192 bytes. This function must be called after gzopen() or gzdopen(), and before any other calls that read or write the file. The buffer memory allocation is always deferred to the first read or write. Two buffers are allocated, either both of the specified size when writing, or one of the specified size and the other twice that size when reading. A larger buffer size of, for example, 64K or 128K bytes will noticeably increase the speed of decompression (reading). The new buffer size also affects the maximum length for gzprintf(). gzbuffer() returns 0 on success, or -1 on failure, such as being called too late. */ ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); /* Dynamically update the compression level or strategy. See the description of deflateInit2 for the meaning of these parameters. gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not opened for writing. */ ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); /* Reads the given number of uncompressed bytes from the compressed file. If the input file was not in gzip format, gzread copies the given number of bytes into the buffer. After reaching the end of a gzip stream in the input, gzread will continue to read, looking for another gzip stream, or failing that, reading the rest of the input file directly without decompression. The entire input file will be read if gzread is called until it returns less than the requested len. gzread returns the number of uncompressed bytes actually read, less than len for end of file, or -1 for error. */ ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); /* Writes the given number of uncompressed bytes into the compressed file. gzwrite returns the number of uncompressed bytes written or 0 in case of error. */ ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...)); /* Converts, formats, and writes the arguments to the compressed file under control of the format string, as in fprintf. gzprintf returns the number of uncompressed bytes actually written, or 0 in case of error. The number of uncompressed bytes written is limited to 8191, or one less than the buffer size given to gzbuffer(). The caller should assure that this limit is not exceeded. If it is exceeded, then gzprintf() will return an error (0) with nothing written. In this case, there may also be a buffer overflow with unpredictable consequences, which is possible only if zlib was compiled with the insecure functions sprintf() or vsprintf() because the secure snprintf() or vsnprintf() functions were not available. This can be determined using zlibCompileFlags(). */ ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s)); /* Writes the given null-terminated string to the compressed file, excluding the terminating null character. gzputs returns the number of characters written, or -1 in case of error. */ ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len)); /* Reads bytes from the compressed file until len-1 characters are read, or a newline character is read and transferred to buf, or an end-of-file condition is encountered. If any characters are read or if len == 1, the string is terminated with a null character. If no characters are read due to an end-of-file or len < 1, then the buffer is left untouched. gzgets returns buf which is a null-terminated string, or it returns NULL for end-of-file or in case of error. If there was an error, the contents at buf are indeterminate. */ ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); /* Writes c, converted to an unsigned char, into the compressed file. gzputc returns the value that was written, or -1 in case of error. */ ZEXTERN int ZEXPORT gzgetc OF((gzFile file)); /* Reads one byte from the compressed file. gzgetc returns this byte or -1 in case of end of file or error. */ ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file)); /* Push one character back onto the stream to be read as the first character on the next read. At least one character of push-back is allowed. gzungetc() returns the character pushed, or -1 on failure. gzungetc() will fail if c is -1, and may fail if a character has been pushed but not read yet. If gzungetc is used immediately after gzopen or gzdopen, at least the output buffer size of pushed characters is allowed. (See gzbuffer above.) The pushed character will be discarded if the stream is repositioned with gzseek() or gzrewind(). */ ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush)); /* Flushes all pending output into the compressed file. The parameter flush is as in the deflate() function. The return value is the zlib error number (see function gzerror below). gzflush is only permitted when writing. If the flush parameter is Z_FINISH, the remaining data is written and the gzip stream is completed in the output. If gzwrite() is called again, a new gzip stream will be started in the output. gzread() is able to read such concatented gzip streams. gzflush should be called only when strictly necessary because it will degrade compression if called too often. */ /* ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file, z_off_t offset, int whence)); Sets the starting position for the next gzread or gzwrite on the given compressed file. The offset represents a number of bytes in the uncompressed data stream. The whence parameter is defined as in lseek(2); the value SEEK_END is not supported. If the file is opened for reading, this function is emulated but can be extremely slow. If the file is opened for writing, only forward seeks are supported; gzseek then compresses a sequence of zeroes up to the new starting position. gzseek returns the resulting offset location as measured in bytes from the beginning of the uncompressed stream, or -1 in case of error, in particular if the file is opened for writing and the new starting position would be before the current position. */ ZEXTERN int ZEXPORT gzrewind OF((gzFile file)); /* Rewinds the given file. This function is supported only for reading. gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET) */ /* ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file)); Returns the starting position for the next gzread or gzwrite on the given compressed file. This position represents a number of bytes in the uncompressed data stream, and is zero when starting, even if appending or reading a gzip stream from the middle of a file using gzdopen(). gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR) */ /* ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file)); Returns the current offset in the file being read or written. This offset includes the count of bytes that precede the gzip stream, for example when appending or when using gzdopen() for reading. When reading, the offset does not include as yet unused buffered input. This information can be used for a progress indicator. On error, gzoffset() returns -1. */ ZEXTERN int ZEXPORT gzeof OF((gzFile file)); /* Returns true (1) if the end-of-file indicator has been set while reading, false (0) otherwise. Note that the end-of-file indicator is set only if the read tried to go past the end of the input, but came up short. Therefore, just like feof(), gzeof() may return false even if there is no more data to read, in the event that the last read request was for the exact number of bytes remaining in the input file. This will happen if the input file size is an exact multiple of the buffer size. If gzeof() returns true, then the read functions will return no more data, unless the end-of-file indicator is reset by gzclearerr() and the input file has grown since the previous end of file was detected. */ ZEXTERN int ZEXPORT gzdirect OF((gzFile file)); /* Returns true (1) if file is being copied directly while reading, or false (0) if file is a gzip stream being decompressed. This state can change from false to true while reading the input file if the end of a gzip stream is reached, but is followed by data that is not another gzip stream. If the input file is empty, gzdirect() will return true, since the input does not contain a gzip stream. If gzdirect() is used immediately after gzopen() or gzdopen() it will cause buffers to be allocated to allow reading the file to determine if it is a gzip file. Therefore if gzbuffer() is used, it should be called before gzdirect(). */ ZEXTERN int ZEXPORT gzclose OF((gzFile file)); /* Flushes all pending output if necessary, closes the compressed file and deallocates the (de)compression state. Note that once file is closed, you cannot call gzerror with file, since its structures have been deallocated. gzclose must not be called more than once on the same file, just as free must not be called more than once on the same allocation. gzclose will return Z_STREAM_ERROR if file is not valid, Z_ERRNO on a file operation error, or Z_OK on success. */ ZEXTERN int ZEXPORT gzclose_r OF((gzFile file)); ZEXTERN int ZEXPORT gzclose_w OF((gzFile file)); /* Same as gzclose(), but gzclose_r() is only for use when reading, and gzclose_w() is only for use when writing or appending. The advantage to using these instead of gzclose() is that they avoid linking in zlib compression or decompression code that is not used when only reading or only writing respectively. If gzclose() is used, then both compression and decompression code will be included the application when linking to a static zlib library. */ ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum)); /* Returns the error message for the last error which occurred on the given compressed file. errnum is set to zlib error number. If an error occurred in the file system and not in the compression library, errnum is set to Z_ERRNO and the application may consult errno to get the exact error code. The application must not modify the returned string. Future calls to this function may invalidate the previously returned string. If file is closed, then the string previously returned by gzerror will no longer be available. gzerror() should be used to distinguish errors from end-of-file for those functions above that do not distinguish those cases in their return values. */ ZEXTERN void ZEXPORT gzclearerr OF((gzFile file)); /* Clears the error and end-of-file flags for file. This is analogous to the clearerr() function in stdio. This is useful for continuing to read a gzip file that is being written concurrently. */ /* checksum functions */ /* These functions are not related to compression but are exported anyway because they might be useful in applications using the compression library. */ ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); /* Update a running Adler-32 checksum with the bytes buf[0..len-1] and return the updated checksum. If buf is Z_NULL, this function returns the required initial value for the checksum. An Adler-32 checksum is almost as reliable as a CRC32 but can be computed much faster. Usage example: uLong adler = adler32(0L, Z_NULL, 0); while (read_buffer(buffer, length) != EOF) { adler = adler32(adler, buffer, length); } if (adler != original_adler) error(); */ /* ZEXTERN uLong ZEXPORT adler32_combine OF((uLong adler1, uLong adler2, z_off_t len2)); Combine two Adler-32 checksums into one. For two sequences of bytes, seq1 and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for each, adler1 and adler2. adler32_combine() returns the Adler-32 checksum of seq1 and seq2 concatenated, requiring only adler1, adler2, and len2. */ ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); /* Update a running CRC-32 with the bytes buf[0..len-1] and return the updated CRC-32. If buf is Z_NULL, this function returns the required initial value for the for the crc. Pre- and post-conditioning (one's complement) is performed within this function so it shouldn't be done by the application. Usage example: uLong crc = crc32(0L, Z_NULL, 0); while (read_buffer(buffer, length) != EOF) { crc = crc32(crc, buffer, length); } if (crc != original_crc) error(); */ /* ZEXTERN uLong ZEXPORT crc32_combine OF((uLong crc1, uLong crc2, z_off_t len2)); Combine two CRC-32 check values into one. For two sequences of bytes, seq1 and seq2 with lengths len1 and len2, CRC-32 check values were calculated for each, crc1 and crc2. crc32_combine() returns the CRC-32 check value of seq1 and seq2 concatenated, requiring only crc1, crc2, and len2. */ /* various hacks, don't look :) */ /* deflateInit and inflateInit are macros to allow checking the zlib version * and the compiler's view of z_stream: */ ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level, const char *version, int stream_size)); ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm, const char *version, int stream_size)); ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size)); ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, const char *version, int stream_size)); ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, unsigned char FAR *window, const char *version, int stream_size)); #define deflateInit(strm, level) \ deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream)) #define inflateInit(strm) \ inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream)) #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ (strategy), ZLIB_VERSION, sizeof(z_stream)) #define inflateInit2(strm, windowBits) \ inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) #define inflateBackInit(strm, windowBits, window) \ inflateBackInit_((strm), (windowBits), (window), \ ZLIB_VERSION, sizeof(z_stream)) /* provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or * change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if * both are true, the application gets the *64 functions, and the regular * functions are changed to 64 bits) -- in case these are set on systems * without large file support, _LFS64_LARGEFILE must also be true */ #if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int)); ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile)); ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile)); ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t)); ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t)); #endif #if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS-0 == 64 && _LFS64_LARGEFILE-0 # define gzopen gzopen64 # define gzseek gzseek64 # define gztell gztell64 # define gzoffset gzoffset64 # define adler32_combine adler32_combine64 # define crc32_combine crc32_combine64 # ifdef _LARGEFILE64_SOURCE ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int)); ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile)); ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile)); ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); # endif #else ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *)); ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int)); ZEXTERN z_off_t ZEXPORT gztell OF((gzFile)); ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile)); ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t)); ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t)); #endif /* hack for buggy compilers */ #if !defined(ZUTIL_H) && !defined(NO_DUMMY_DECL) struct internal_state {int dummy;}; #endif /* undocumented functions */ ZEXTERN const char * ZEXPORT zError OF((int)); ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp)); ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int)); #ifdef __cplusplus } #endif #endif /* ZLIB_H */ libtelnet-0.23/msvc2010/zlibstat.lib000066400000000000000000006036201336202271100172230ustar00rootroot00000000000000! / 1315203158 0 5297 ` Ã+è+è+è+è+è+è+è+è+è+è+è+è+è+è+è+è>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>Ü>ÜšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXšXé6í í í í í í í 9Â9Â9Â9Â9Â9Â9Â9Â9ÂKKVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšVšV𬠬 ¬ ÙìÙìÙìÙìÙìÙìÙìÙìÙìÙìðfðfðfðfðfðfðfðfðfðfòòòòòòòòòòòòòòòòò2À5ä5ä5ä5ä5ä5ä5ä5ä5ä5ä5ä5ä5ä€X€X€X€X¶º¶º¶º¼>¼>¼>ÅÌùhùh??_C@_00CNPNBAHC@?$AA@??_C@_05DFCKICEH@1?42?45?$AA@??_C@_0BA@MOKMMFOD@need?5dictionary?$AA@??_C@_0BE@OGGJBMCE@insufficient?5memory?$AA@??_C@_0BF@CJFPCCEG@incompatible?5version?$AA@??_C@_0L@FNAOCBOG@stream?5end?$AA@??_C@_0L@HAHMBNLP@data?5error?$AA@??_C@_0L@KIJFAKBJ@file?5error?$AA@??_C@_0N@DFPGLBGC@buffer?5error?$AA@??_C@_0N@MKKNPMJD@stream?5error?$AA@_zError@4_z_errmsg_zcalloc_zcfree_zlibCompileFlags@0_zlibVersion@0??_C@_01JOAMLHOP@?9?$AA@_LoadCentralDirectoryRecord_Write_EndOfCentralDirectoryRecord_Write_GlobalComment_Write_LocalFileHeader_Write_Zip64EndOfCentralDirectoryLocator_Write_Zip64EndOfCentralDirectoryRecord_zipClose@8_zipCloseFileInZip@4_zipCloseFileInZipRaw64@16_zipCloseFileInZipRaw@12_zipOpen2@16_zipOpen2_64@16_zipOpen3@16_zipOpen64@8_zipOpen@8_zipOpenNewFileInZip2@44_zipOpenNewFileInZip2_64@48_zipOpenNewFileInZip3@64_zipOpenNewFileInZip3_64@68_zipOpenNewFileInZip4@72_zipOpenNewFileInZip4_64@76_zipOpenNewFileInZip64@44_zipOpenNewFileInZip@40_zipRemoveExtraInfoBlock@12_zipWriteInFileInZip@12_zip_copyright_unzClose@4_unzCloseCurrentFile@4_unzGetCurrentFileInfo64@32_unzGetCurrentFileInfo@32_unzGetCurrentFileZStreamPos64@4_unzGetFilePos64@8_unzGetFilePos@8_unzGetGlobalComment@12_unzGetGlobalInfo64@8_unzGetGlobalInfo@8_unzGetLocalExtrafield@12_unzGetOffset64@4_unzGetOffset@4_unzGoToFilePos64@8_unzGoToFilePos@8_unzGoToFirstFile@4_unzGoToNextFile@4_unzLocateFile@12_unzOpen2@8_unzOpen2_64@8_unzOpen64@4_unzOpen@4_unzOpenCurrentFile2@16_unzOpenCurrentFile3@20_unzOpenCurrentFile@4_unzOpenCurrentFilePassword@8_unzReadCurrentFile@12_unzSetOffset64@12_unzSetOffset@8_unzStringFileNameCompare@12_unz_copyright_unzeof@4_unztell64@4_unztell@4_uncompress@16__dist_code__length_code__tr_align__tr_flush_block__tr_init__tr_stored_block__tr_tally??_C@_02GMLFBBN@wb?$AA@??_C@_02JDPG@rb?$AA@??_C@_03HMFOOINA@r?$CLb?$AA@_call_zopen64_call_zseek64_call_ztell64_fill_fopen64_filefunc_fill_fopen_filefunc_fill_zlib_filefunc64_32_def_from_filefunc32_inflate_copyright_inflate_table??_C@_0BD@PJCBIDD@invalid?5block?5type?$AA@??_C@_0BE@EMOGCLGO@invalid?5window?5size?$AA@??_C@_0BE@GONKLEPM@header?5crc?5mismatch?$AA@??_C@_0BF@MEIGEHBE@incorrect?5data?5check?$AA@??_C@_0BG@GMDFCBGP@invalid?5distances?5set?$AA@??_C@_0BG@LBKINIKP@invalid?5distance?5code?$AA@??_C@_0BH@FGKKJGOC@incorrect?5length?5check?$AA@??_C@_0BH@LIBMMIGA@incorrect?5header?5check?$AA@??_C@_0BJ@BLBBCOMO@unknown?5header?5flags?5set?$AA@??_C@_0BJ@HDEPPGOH@invalid?5code?5lengths?5set?$AA@??_C@_0BK@BMMPFBBH@invalid?5bit?5length?5repeat?$AA@??_C@_0BL@IHKGDAEE@unknown?5compression?5method?$AA@??_C@_0BM@FFFLPBBC@invalid?5literal?1length?5code?$AA@??_C@_0BM@IIMGAINC@invalid?5literal?1lengths?5set?$AA@??_C@_0BN@LGAADGOK@invalid?5stored?5block?5lengths?$AA@??_C@_0BO@ECPMAOGG@invalid?5distance?5too?5far?5back?$AA@??_C@_0CE@GMIGFPBB@too?5many?5length?5or?5distance?5symb@??_C@_0CF@DGDMADCD@invalid?5code?5?9?9?5missing?5end?9of?9b@_inflate@8_inflateCopy@8_inflateEnd@4_inflateGetHeader@8_inflateInit2_@16_inflateInit_@12_inflateMark@4_inflatePrime@12_inflateReset2@8_inflateReset@4_inflateSetDictionary@12_inflateSync@4_inflateSyncPoint@4_inflateUndermine@8_inflateBack@20_inflateBackEnd@4_inflateBackInit_@20??_C@_0CF@MLPJFDMM@requested?5length?5does?5not?5fit?5in@??_C@_0CH@DEEGAHIB@internal?5error?3?5deflate?5stream?5c@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@_gzclose_w@4_gzflush@8_gzprintf_gzputc@8_gzputs@8_gzsetparams@12_gzwrite@12??_C@_0BG@HCKBMIHF@compressed?5data?5error?$AA@??_C@_0BH@CFIIDOJD@unexpected?5end?5of?5file?$AA@??_C@_0BP@IIKIGMCC@out?5of?5room?5to?5push?5characters?$AA@??_C@_0CH@CPOLIEKA@internal?5error?3?5inflate?5stream?5c@_gzclose_r@4_gzdirect@4_gzgetc@4_gzgets@12_gzread@12_gzungetc@8??_C@_02LMMGGCAJ@?3?5?$AA@??_C@_07EBNKNFJN@?$DMfd?3?$CFd?$DO?$AA@_gz_error_gzbuffer@8_gzclearerr@4_gzdopen@8_gzeof@4_gzerror@8_gzoffset64@4_gzoffset@4_gzopen64@8_gzopen@8_gzrewind@4_gzseek64@12_gzseek@12_gztell64@4_gztell@4_gzclose@4_deflate@8_deflateBound@8_deflateCopy@8_deflateEnd@4_deflateInit2_@32_deflateInit_@16_deflateParams@12_deflatePrime@12_deflateReset@4_deflateSetDictionary@12_deflateSetHeader@8_deflateTune@20_deflate_copyright_crc32@12_crc32_combine64@12_crc32_combine@12_get_crc_table@0_compress2@20_compress@16_compressBound@4_adler32@12_adler32_combine64@12_adler32_combine@12_inflate_fast_longest_match_match_init / 1315203158 0 4995 ` è+T8Ü>Xš6é íÂ9KšVê© ¬ìÙfðòÀ2ä5X€º¶>¼ÌÅhùà        ??_C@_00CNPNBAHC@?$AA@??_C@_01JOAMLHOP@?9?$AA@??_C@_02GMLFBBN@wb?$AA@??_C@_02JDPG@rb?$AA@??_C@_02LMMGGCAJ@?3?5?$AA@??_C@_03HMFOOINA@r?$CLb?$AA@??_C@_05DFCKICEH@1?42?45?$AA@??_C@_07EBNKNFJN@?$DMfd?3?$CFd?$DO?$AA@??_C@_0BA@MOKMMFOD@need?5dictionary?$AA@??_C@_0BD@PJCBIDD@invalid?5block?5type?$AA@??_C@_0BE@EMOGCLGO@invalid?5window?5size?$AA@??_C@_0BE@GONKLEPM@header?5crc?5mismatch?$AA@??_C@_0BE@OGGJBMCE@insufficient?5memory?$AA@??_C@_0BF@CJFPCCEG@incompatible?5version?$AA@??_C@_0BF@MEIGEHBE@incorrect?5data?5check?$AA@??_C@_0BG@GMDFCBGP@invalid?5distances?5set?$AA@??_C@_0BG@HCKBMIHF@compressed?5data?5error?$AA@??_C@_0BG@LBKINIKP@invalid?5distance?5code?$AA@??_C@_0BH@CFIIDOJD@unexpected?5end?5of?5file?$AA@??_C@_0BH@FGKKJGOC@incorrect?5length?5check?$AA@??_C@_0BH@LIBMMIGA@incorrect?5header?5check?$AA@??_C@_0BJ@BLBBCOMO@unknown?5header?5flags?5set?$AA@??_C@_0BJ@HDEPPGOH@invalid?5code?5lengths?5set?$AA@??_C@_0BK@BMMPFBBH@invalid?5bit?5length?5repeat?$AA@??_C@_0BL@IHKGDAEE@unknown?5compression?5method?$AA@??_C@_0BM@FFFLPBBC@invalid?5literal?1length?5code?$AA@??_C@_0BM@IIMGAINC@invalid?5literal?1lengths?5set?$AA@??_C@_0BN@LGAADGOK@invalid?5stored?5block?5lengths?$AA@??_C@_0BO@ECPMAOGG@invalid?5distance?5too?5far?5back?$AA@??_C@_0BP@IIKIGMCC@out?5of?5room?5to?5push?5characters?$AA@??_C@_0CE@GMIGFPBB@too?5many?5length?5or?5distance?5symb@??_C@_0CF@DGDMADCD@invalid?5code?5?9?9?5missing?5end?9of?9b@??_C@_0CF@MLPJFDMM@requested?5length?5does?5not?5fit?5in@??_C@_0CH@CPOLIEKA@internal?5error?3?5inflate?5stream?5c@??_C@_0CH@DEEGAHIB@internal?5error?3?5deflate?5stream?5c@??_C@_0L@FNAOCBOG@stream?5end?$AA@??_C@_0L@HAHMBNLP@data?5error?$AA@??_C@_0L@KIJFAKBJ@file?5error?$AA@??_C@_0N@DFPGLBGC@buffer?5error?$AA@??_C@_0N@MKKNPMJD@stream?5error?$AA@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@_LoadCentralDirectoryRecord_Write_EndOfCentralDirectoryRecord_Write_GlobalComment_Write_LocalFileHeader_Write_Zip64EndOfCentralDirectoryLocator_Write_Zip64EndOfCentralDirectoryRecord__dist_code__length_code__tr_align__tr_flush_block__tr_init__tr_stored_block__tr_tally_adler32@12_adler32_combine64@12_adler32_combine@12_call_zopen64_call_zseek64_call_ztell64_compress2@20_compress@16_compressBound@4_crc32@12_crc32_combine64@12_crc32_combine@12_deflate@8_deflateBound@8_deflateCopy@8_deflateEnd@4_deflateInit2_@32_deflateInit_@16_deflateParams@12_deflatePrime@12_deflateReset@4_deflateSetDictionary@12_deflateSetHeader@8_deflateTune@20_deflate_copyright_fill_fopen64_filefunc_fill_fopen_filefunc_fill_zlib_filefunc64_32_def_from_filefunc32_get_crc_table@0_gz_error_gzbuffer@8_gzclearerr@4_gzclose@4_gzclose_r@4_gzclose_w@4_gzdirect@4_gzdopen@8_gzeof@4_gzerror@8_gzflush@8_gzgetc@4_gzgets@12_gzoffset64@4_gzoffset@4_gzopen64@8_gzopen@8_gzprintf_gzputc@8_gzputs@8_gzread@12_gzrewind@4_gzseek64@12_gzseek@12_gzsetparams@12_gztell64@4_gztell@4_gzungetc@8_gzwrite@12_inflate@8_inflateBack@20_inflateBackEnd@4_inflateBackInit_@20_inflateCopy@8_inflateEnd@4_inflateGetHeader@8_inflateInit2_@16_inflateInit_@12_inflateMark@4_inflatePrime@12_inflateReset2@8_inflateReset@4_inflateSetDictionary@12_inflateSync@4_inflateSyncPoint@4_inflateUndermine@8_inflate_copyright_inflate_fast_inflate_table_longest_match_match_init_uncompress@16_unzClose@4_unzCloseCurrentFile@4_unzGetCurrentFileInfo64@32_unzGetCurrentFileInfo@32_unzGetCurrentFileZStreamPos64@4_unzGetFilePos64@8_unzGetFilePos@8_unzGetGlobalComment@12_unzGetGlobalInfo64@8_unzGetGlobalInfo@8_unzGetLocalExtrafield@12_unzGetOffset64@4_unzGetOffset@4_unzGoToFilePos64@8_unzGoToFilePos@8_unzGoToFirstFile@4_unzGoToNextFile@4_unzLocateFile@12_unzOpen2@8_unzOpen2_64@8_unzOpen64@4_unzOpen@4_unzOpenCurrentFile2@16_unzOpenCurrentFile3@20_unzOpenCurrentFile@4_unzOpenCurrentFilePassword@8_unzReadCurrentFile@12_unzSetOffset64@12_unzSetOffset@8_unzStringFileNameCompare@12_unz_copyright_unzeof@4_unztell64@4_unztell@4_zError@4_z_errmsg_zcalloc_zcfree_zipClose@8_zipCloseFileInZip@4_zipCloseFileInZipRaw64@16_zipCloseFileInZipRaw@12_zipOpen2@16_zipOpen2_64@16_zipOpen3@16_zipOpen64@8_zipOpen@8_zipOpenNewFileInZip2@44_zipOpenNewFileInZip2_64@48_zipOpenNewFileInZip3@64_zipOpenNewFileInZip3_64@68_zipOpenNewFileInZip4@72_zipOpenNewFileInZip4_64@76_zipOpenNewFileInZip64@44_zipOpenNewFileInZip@40_zipRemoveExtraInfoBlock@12_zipWriteInFileInZip@12_zip_copyright_zlibCompileFlags@0_zlibVersion@0 // 1315203158 0 758 ` .\x86\ZlibStatRelease\Tmp\zutil.obj.\x86\ZlibStatRelease\Tmp\zlib.res.\x86\ZlibStatRelease\Tmp\zip.obj.\x86\ZlibStatRelease\Tmp\unzip.obj.\x86\ZlibStatRelease\Tmp\uncompr.obj.\x86\ZlibStatRelease\Tmp\trees.obj.\x86\ZlibStatRelease\Tmp\ioapi.obj.\x86\ZlibStatRelease\Tmp\inftrees.obj.\x86\ZlibStatRelease\Tmp\inflate.obj.\x86\ZlibStatRelease\Tmp\inffast.obj.\x86\ZlibStatRelease\Tmp\infback.obj.\x86\ZlibStatRelease\Tmp\gzwrite.obj.\x86\ZlibStatRelease\Tmp\gzread.obj.\x86\ZlibStatRelease\Tmp\gzlib.obj.\x86\ZlibStatRelease\Tmp\gzclose.obj.\x86\ZlibStatRelease\Tmp\deflate.obj.\x86\ZlibStatRelease\Tmp\crc32.obj.\x86\ZlibStatRelease\Tmp\compress.obj.\x86\ZlibStatRelease\Tmp\adler32.obj..\..\masmx86\inffas32.obj..\..\masmx86\match686.obj/0 1315202897 100666 3120 ` LQgdN™8.drectve]ä .debug$S°A@B.rdatañ@0@.rdata @0@.rdata@0@.rdata '@0@.rdata 2@0@.rdata ?@0@.rdataJ@@.rdata K@0@.rdataV@0@.rdata(fŽ @0@.text òü P`.rdata@0@.text!  P`.text-C P`.text'Mt P`.text~ P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\zutil.obj:<RRMicrosoft (R) Optimizing Compilerincompatible versionbuffer errorinsufficient memorydata errorstream errorfile errorstream endneed dictionary    $U‹ì¸]Ã)1.2.5U‹ìƒìÇEüÇEøƒ}øtƒ}øt ƒ}øtëë‹EüƒÀ‰Eüë‹MüƒÁ‰Müë ‹UüƒÂ‰UüÇEôƒ}ôtƒ}ôt ƒ}ôtëë‹EüƒÀ‰Eüë‹MüƒÁ‰Müë ‹UüƒÂ ‰UüÇEðƒ}ðtƒ}ðt ƒ}ðtëë‹EüƒÀ‰Eüë‹MüƒÁ ‰Müë ‹UüƒÂ0‰UüÇEìƒ}ìtƒ}ìt ƒ}ìtëë%‹EüƒÀ@‰Eüë‹MüÁ€‰Müë ‹UüÂÀ‰Uü‹Eü‰Eü‹MüÁ‰Mü‹Eü‹å]ÃU‹ì¸+E‹…]Â#U‹ìƒ}t ‹E+EE ‰E ‹M ¯MQèƒÄ]Ã3U‹ì‹E PèƒÄ]Ã7@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.rdata2¤—.rdata }Å2.rdataVxCW.rdata ¬Sä„.rdata îE&:§.rdata Dí<Ì.rdata ï .rdata  õovÉ .rdata IqèÝ) .rdata ( R .text  dR q\ .rdataÜ{k.text!5‰ .texteö5ê .text'•TSé_zcalloc _malloc .text»J£Á_zcfree _free §??_C@_0BF@CJFPCCEG@incompatible?5version?$AA@??_C@_0N@DFPGLBGC@buffer?5error?$AA@??_C@_0BE@OGGJBMCE@insufficient?5memory?$AA@??_C@_0L@HAHMBNLP@data?5error?$AA@??_C@_0N@MKKNPMJD@stream?5error?$AA@??_C@_0L@KIJFAKBJ@file?5error?$AA@??_C@_00CNPNBAHC@?$AA@??_C@_0L@FNAOCBOG@stream?5end?$AA@??_C@_0BA@MOKMMFOD@need?5dictionary?$AA@_z_errmsg_zlibVersion@0??_C@_05DFCKICEH@1?42?45?$AA@_zlibCompileFlags@0_zError@4/36 1315203158 100666 1612 ` LVhdN¦ .debug$SˆŒ@B.rsrc$01Xl@@.rsrc$020v@@ó_c:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\zlib.resôå‚?¡MdÞj3mw=)hñô3C:\Users\Sean\AppData\Local\Temp\lnk5E75.tmp-< RMicrosoft (R) CVTRESŽ=cwdc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9exec:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\cvtres.exe€0€ H,H,4VS_VERSION_INFO½ïþ?ŒStringFileInfoh040904E4†/FileDescriptionzlib data compression and ZIP file I/O library,FileVersion1.2.5*InternalNamezlib: OriginalFilenamezlib.dll2 ProductNameZLib.DLL‚5CommentsDLL support by Alessandro Iacopetti & Gilles Vollant|,LegalCopyright(C) 1995-2010 Jean-loup Gailly & Mark AdlerDVarFileInfo$Translation ä@comp.idR”ÿÿ@feat.00ÿÿ.debug$Sˆ.rsrc$01X.rsrc$020$R000000/71 1315202897 100666 23360 ` L2QgdN&J¬.drectve]ä .debug$S°A@B.rdataOñ@@@.bss€0À.texte@ ¥ P`.text)½æ P`.text>ú8 P`.textsBµ P`.textaÉ P`.textÅ*ï P`.textÕì P`.text:‚¼ P`.text_îM P`.text¹Å~ P`.textì P`.textNR P`.text]pÍ P`.textáù P`.text   P`.text% ¦# P`.text§d$ % P`.textJ%_, P`.rdata•-@0@.rdata›-@0@.textÈ-e/ P`.text.0 P`.text†30 P`.textN¹01 P`.text‚1“1 P`.textu1 P`.textV2h2 P`.textRr2Ä2 P`.textTÎ2"3 P`.textH,3t3 P`.textJ~3È3 P`.textHÒ34 P`.textF$4j4 P`.textút4n6 P`.textDŒ6Ð7 P`.textä7ÿ7 P`.textê 8ó> P`.text@)@ P`.text¸3@ë@ P`.text«A¾B P`.textî"CE P`.textˆtEüE P`.textîFþG P`.text&bHˆH P`.text0’HÂH P`.text(ÌHôI P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¡cc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\zip.obj:<RRMicrosoft (R) Optimizing Compiler zip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDllU‹ììÇE°ÇEÌ‹E‹H,Q‹URèƒÄ‰E¨‰U¬ƒ}¬wƒ}¨v ÇEÌë!‹E¨ E¬u‹M‹Q,R‹EPèƒÄ‰E¨‰U¬ƒ}Ì„«j‹M¬Q‹U¨R‹E‹H,Q‹URèƒÄ…ÀtÇE°ÿÿÿÿEäP‹M‹Q,R‹EPèƒÄ …ÀtÇE°ÿÿÿÿM Q‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿUðR‹E‹H,Q‹URèƒÄ …ÀtÇE°ÿÿÿÿEøP‹M‹Q,R‹EPèƒÄ …ÀtÇE°ÿÿÿÿMôQ‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿU´R‹E‹H,Q‹URèƒÄ …ÀtÇE°ÿÿÿÿEèP‹M‹Q,R‹EPèƒÄ …ÀtÇE°ÿÿÿÿM¸Q‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿ‹U¸;Uèu‹E¼;Eìu ƒ}´uƒ}ôtÇE°™ÿÿÿMÀQ‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿUØR‹E‹H,Q‹URèƒÄ …ÀtÇE°ÿÿÿÿÇEüéÇj‹E¬P‹M¨Q‹U‹B,P‹MQèƒÄ…ÀtÇE°ÿÿÿÿUäR‹E‹H,Q‹URèƒÄ …ÀtÇE°ÿÿÿÿEôP‹M‹Q,R‹EPèƒÄ …ÀtÇE°ÿÿÿÿM´Q‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿÇEèÇEìUäR‹E‹H,Q‹URèƒÄ …Àt ÇE°ÿÿÿÿë ‹Eä3ɉEè‰MìÇE¸ÇE¼UäR‹E‹H,Q‹URèƒÄ …Àt ÇE°ÿÿÿÿë ‹Eä3ɉE¸‰M¼‹U¸;Uèu‹E¼;Eìu ƒ}´uƒ}ôtÇE°™ÿÿÿÇEÀÇEÄMäQ‹U‹B,P‹MQèƒÄ …Àt ÇE°ÿÿÿÿë ‹Uä3À‰UÀ‰EÄÇEØÇEÜMäQ‹U‹B,P‹MQèƒÄ …Àt ÇE°ÿÿÿÿë ‹Uä3À‰U؉EÜMüQ‹U‹B,P‹MQèƒÄ …ÀtÇE°ÿÿÿÿ‹UØUÀ‹EÜEĉ•xÿÿÿ‰…|ÿÿÿ‹M¬;|ÿÿÿwr ‹U¨;•xÿÿÿs ƒ}°uÇE°™ÿÿÿƒ}°t!‹E‹H,Q‹U‹BP‹M‹Qÿ҃ăÈÿéƒ}üv^‹EüƒÀPèƒÄ‹M‰‹Uƒºt:‹EüP‹M‹‘R‹E‹H,Q‹U‹BP‹M‹Qÿ҃ĉEü‹E‹ˆ‹UüÆ‹EØEÀ‹MÜMÄ‹U¨+ЋE¬Á‰UЉEÔ‹M‹UЉ‘ð‹EÔ‰ô‹MÀ‰M‹UĉU”ÇEœð‹EœPèƒÄ‰EŒj‹MØMЋUÜUÔRQ‹E‹H,Q‹URèƒÄ…ÀtÇE°ÿÿÿÿƒ}”w ƒ}†¹ƒ}°…¯ÇE€ðÇE„‹E„;E”rw‹M€;Mv ‹U‰U€‹E”‰E„‹M€Q‹UŒR‹E‹H,Q‹U‹BP‹M‹QÿÒƒÄ3ɉ…pÿÿÿ‰tÿÿÿ‹•pÿÿÿ;U€u ‹…tÿÿÿ;E„tÇE°ÿÿÿÿƒ}°u‹M€Q‹UŒR‹EƒÀ0PèƒÄ ‰E°‹M+M€‹U”U„‰M‰U”é7ÿÿÿƒ}Œt ‹EŒPèƒÄ‹M‹UЉ‘è‹EÔ‰ì‹M‹U¸‰‘ø‹E¼‰üj‹MØMЋUÜUÔRQ‹E‹H,Q‹URèƒÄ…ÀtÇE°ÿÿÿÿ‹E°‹å]Ã#+Y'†¨ Ê#ì0 R t#–#Û#ý#1S u—Çd ¡ ÐTóÓÿLU‹ìƒìƒ}u ¸˜ÿÿÿé‹Eƒxu(è‹M‰A‹U‹E‹H‰ ‹Uƒ:u ¸˜ÿÿÿéÞ‹E‹H‰Mø‹U ‰Uüƒ}†Ã‹Eøƒxu-è‹Mø‰‹Uøƒ:u ¸˜ÿÿÿé ‹Eø‹‰Mø‹U‹Eø‰B‹Mø‹Q;Us ‹Eø‹H‰Môë‹U‰Uô‹Eø‹H‹UøD ‰EðÇEìë ‹MìƒÁ‰Mì‹Uì;Uôs‹EðEì‹MüM슈ëÝ‹Eø‹HMô‹Uø‰J‹Eø‹H+Mô‹Uø‰J‹EüEô‰Eü‹M+Mô‰Mé3ÿÿÿ3À‹å]à jU‹ìQhèƒÄ‰Eüƒ}üt‹EüÇ‹MüÇA‹UüÇBð‹Eü‹å]à U‹ìƒì ÇEøEøP‹M Q‹URèƒÄ ‰Eô‹Eø‰Eüƒ}ôuMøQ‹U R‹EPèƒÄ ‰Eô‹MøÁáMü‰Müƒ}ôu ‹U‹Eü‰ë ‹MÇ‹Eô‹å]Ã=U‹ìƒìjEûP‹M Q‹U‹BP‹M‹Qÿ҃ĉEüƒ}üu¶Eû‹M‰3Àë%ë#‹U R‹E‹HQ‹U‹BÿЃÄ…ÀtƒÈÿëë3À‹å]ÃU‹ìƒì ÇEøEøP‹M Q‹URèƒÄ ‰Eô‹Eø‰Eüƒ}ôuMøQ‹U R‹EPèƒÄ ‰Eô‹MøÁáMü‰Müƒ}ôuUøR‹E P‹MQèƒÄ ‰Eô‹UøÁâUü‰Uüƒ}ôuEøP‹M Q‹URèƒÄ ‰Eô‹EøÁàEü‰Eüƒ}ôu ‹M‹Uü‰ë ‹EÇ‹Eô‹å]Ã=fU‹ìƒìÇEôEôP‹M Q‹URèƒÄ ‰Eð‹Eô™‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™± èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±(èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±0èEø‹MüʉEø‰Müƒ}ðuUôR‹E P‹MQèƒÄ ‰Eð‹Eô™±8èEø‹MüʉEø‰Müƒ}ðu‹U‹Eø‰‹Mü‰Jë‹UÇÇB‹Eð‹å]ÃAR$wˆ$­¾$ãô$*$O`$…–$U‹ìƒìHÇEàÿÿÇEäÇEðÇEôjjj‹E P‹MQèƒÄ…Àt 3À3Òéñ‹U R‹EPèƒÄ‰Eø‰Uü‹Mä;Mürw‹Uà;Uøv ‹Eø‰Eà‹Mü‰MähèƒÄ‰E܃}Üu 3À3ÒéžÇEèÇEì‹Uì;Uä‡lr ‹Eè;Eàƒ^‹MèÁ‹UìƒÒ‰MĉUÈ‹EÈ;Eärw‹MÄ;Màv‹Uà‰Uè‹Eä‰Eìë‹MèÁ‹UìƒÒ‰Mè‰Uì‹Eø+Eè‹MüMì‰EЉMÔ‹Uø+UЋEüEÔ‰U¼‰EÀƒ}Àrw }¼v ÇE¸ë‹Mø+MЋUüUÔ‰M¸‹E¸‰EÌj‹MÔQ‹UÐR‹E P‹MQèƒÄ…Àtéž‹UÌR‹EÜP‹M Q‹U‹BP‹M‹QÿÒƒÄ;EÌtëy‹Ẽè‰EØ‹MØ‹U؃ê‰UØ…É~Q‹EÜEضƒùPuA‹UÜUضBƒøKu2‹MÜMضQƒúu#‹EÜEضHƒùu‹EØ™EЋMÔʉEð‰Môë럋Uð Uôtëéˆþÿÿƒ}Üt ‹EÜPèƒÄ‹Eð‹Uô‹å]Ã1N(p)U‹ìƒìXÇEÐÿÿÇEÔÇEðÇEôjjj‹E P‹MQèƒÄ…Àt 3À3Òé‹U R‹EPèƒÄ‰Eø‰Uü‹MÔ;Mürw‹UÐ;Uøv ‹Eø‰EЋMü‰MÔhèƒÄ‰Ẽ}Ìu 3À3ÒéÃÇEèÇEì‹Uì;UÔ‡lr ‹Eè;EЃ^‹MèÁ‹UìƒÒ‰M´‰U¸‹E¸;EÔrw‹M´;MÐv‹UЉUè‹EÔ‰Eìë‹MèÁ‹UìƒÒ‰Mè‰Uì‹Eø+Eè‹MüMì‰EÀ‰MÄ‹Uø+UÀ‹EüEĉU¬‰E°ƒ}°rw }¬v ÇE¨ë‹Mø+MÀ‹UüUĉM¨‹E¨‰E¼j‹MÄQ‹UÀR‹E P‹MQèƒÄ…Àtéž‹U¼R‹EÌP‹M Q‹U‹BP‹M‹QÿÒƒÄ;E¼tëy‹E¼ƒè‰EÈ‹MÈ‹Uȃê‰UÈ…É~Q‹EÌEȶƒùPuA‹UÌUȶBƒøKu2‹MÌMȶQƒúu#‹EÌEȶHƒùu‹EÈ™EÀ‹MÄʉEð‰Môë럋Uð Uôtëéˆþÿÿƒ}Ìt ‹EÌPèƒÄ‹Mð Môu 3À3Òéj‹UôR‹EðP‹M Q‹URèƒÄ…Àt 3À3ÒéóEÜP‹M Q‹URèƒÄ …Àt 3À3ÒéÒEÜP‹M Q‹URèƒÄ …Àt 3À3Ò鱃}Üt 3À3Òé¢EàP‹M Q‹URèƒÄ …Àt 3À3ÒéEÜP‹M Q‹URèƒÄ …Àt3À3Òëcƒ}Üt3À3ÒëWj‹EäP‹MàQ‹U R‹EPèƒÄ…Àt3À3Òë3MÜQ‹U R‹EPèƒÄ …Àt3À3Òë}ÜPKt3À3Òë‹Eà‹Uä‹å]Ã1N(p)Tu – Æ#ç 5 U‹ì¸èVWÇEüÇ…ÿþÿÇ…ÿþÿƒ}u…ðþþÿPèƒÄë‹u¹ ½ðþþÿó¥3Ƀ} ”Á Q‹UR…ðþþÿPèƒÄ ‰…ÿþÿƒ½ÿþÿu3Àé&ƒ} ujjj‹ÿþÿQ•ðþþÿRèƒÄ‹…ÿþÿPðþþÿQèƒÄ‰E؉UÜÇ…(ÿþÿÇ…hÿþÿÇEèÇEìÇEàÇEä• ÿþÿRèƒÄhèƒÄ‰Eøƒ}øu‹…ÿþÿP‹ ÿþÿQÿ•ÿþÿƒÄ3ÀëxÇEðƒ} u•ðþþÿRèƒÄ‰Eüƒ}t‹E‹Mð‰ƒ}üt*ƒ}ðt ‹UðRèƒÄƒ}øt ‹EøPèƒÄ3ÀëëhðþþÿQ‹UøRèƒÄ ‹Eø_^‹å] 180n/¦¼(5Nw‰§2U‹ì‹EÇ@‹MÇ]ÃU‹ìƒì,ƒ}t)‹EPMÔQèƒÄUÔR‹EP‹M Q‹URèëëj‹EP‹M Q‹URè‹å]Â9-.D.U‹ìƒì,VWƒ}t4‹u¹}Ôó¥ÇEøÇEüEÔP‹MQ‹U R‹EPèëëj‹MQ‹U R‹EPè_^‹å]Â:.Q.U‹ìjj‹E P‹MQè]Â.U‹ìjj‹E P‹MQè]Â.U‹ìƒì(‹E PèƒÄ‰Eø‹M‰MüjjhPK‹U‹B,P‹MQèƒÄ‰Eôƒ}ôuF‹Uƒº°tjjj-‹E‹H,Q‹URèƒÄ‰Eôëjjj‹E‹H,Q‹URèƒÄ‰Eôƒ}ôu%j‹E‹ˆ˜3ÒRQ‹E‹H,Q‹URèƒÄ‰Eôƒ}ôu%j‹E‹ˆœ3ÒRQ‹E‹H,Q‹URèƒÄ‰Eôƒ}ôu%j‹E‹ˆ¤3ÒRQ‹E‹H,Q‹URèƒÄ‰Eôƒ}ôujjj‹E‹H,Q‹URèƒÄ‰Eôƒ}ôuF‹Eƒ¸°tjjjÿ‹M‹Q,R‹EPèƒÄ‰Eôëjjj‹M‹Q,R‹EPèƒÄ‰Eôƒ}ôuF‹Mƒ¹°tjjjÿ‹U‹B,P‹MQèƒÄ‰Eôëjjj‹U‹B,P‹MQèƒÄ‰Eôƒ}ôuj‹Uø3ÀPR‹M‹Q,R‹EPèƒÄ‰Eô‹Mƒ¹°t ‹UüƒÂ‰Uüƒ}ôuj‹Eü3ÉQP‹U‹B,P‹MQèƒÄ‰Eôƒ}ôu3ƒ}øv-‹UøR‹E P‹M‹Q,R‹E‹HQ‹U‹BÿЃÄ;EøtÇEôÿÿÿÿƒ}ôu3ƒ}v-‹MQ‹UR‹E‹H,Q‹U‹BP‹M‹QÿÒƒÄ;EtÇEôÿÿÿÿƒ}ô…Þ‹Eƒ¸°„ιf‰Màºf‰UäÇEØÇEÜÇEèÇEì‹E‹H,Q‹URèƒÄ‹M‰¸‰‘¼j¿Eà™RP‹U‹B,P‹MQèƒÄ‰Eôj¿Eä™RP‹U‹B,P‹MQèƒÄ‰Eôj‹UìR‹EèP‹M‹Q,R‹EPèƒÄ‰Eôj‹MÜQ‹UØR‹E‹H,Q‹URèƒÄ‰Eô‹Eô‹å]à F0I^I|I§IÒIýIIMIkI™I·IÜIIæ(I0IPIpIU‹ìƒì ÇEüë ‹EüƒÀ‰Eü‹Mü;M}+‹Uâÿ‹Eƒà‹MüˆT ô‹E‹U±è‰E‰UëÄ‹U Ut$ÇEüë ‹EüƒÀ‰Eü‹Mü;M} ‹UüÆDôÿëå‹EPMôQ‹U R‹E‹HQ‹U‹BÿЃÄ;EtƒÈÿëë3À‹å]Ã?JU‹ìƒì(ÇEôƒ}u ¸šÿÿÿé'ƒ}(tƒ}(t ¸šÿÿÿé‹E‰Eì‹Mìƒy8u‹URè‰Eôƒ}ôt‹Eôéèƒ} uÇE ƒ}$u ÇEüë‹E$PèƒÄ‰Eü‹M QèƒÄ‰Eðƒ}u‹UìÇ‚¤ë/‹Eƒxt‹Mì‹U‹B‰¤ë‹MQèƒÄ‹U쉂¤‹Eì‹ML‰ˆ˜ƒ},tƒ}, u‹Uì‹‚˜ƒÈ‹M쉘ƒ},u‹Uì‹‚˜ƒÈ‹M쉘ƒ},u‹Uì‹‚˜ƒÈ‹M쉘ƒ}@t‹Uì‹‚˜ƒÈ‹M쉘‹UìÇ‚¨‹Eì‹M(‰ˆœ‹UìÇ‚¬‹EìÇ@x‹MìÇA|‹Uì‹E0‰‚ ‹Mì‹Q,R‹EìPèƒÄ‹M쉀‰‘„‹U ‹EðL.Mü‹U쉊‹EìÇ€” ‹Mì‹‘‹Eì”RèƒÄ‹M쉈‹Uì‹E ‰‚ŒjjhPK‹Mì‹‘ˆRèƒÄj‹EH3ÉQP‹Uì‹‚ˆƒÀPèƒÄjjj‹Mì‹‘ˆƒÂRèƒÄj‹E싈˜3ÒRQ‹E싈ˆƒÁQèƒÄj‹Uì‹‚œ3ÉQP‹Uì‹‚ˆƒÀ PèƒÄj‹Mì‹‘¤3ÀPR‹Mì‹‘ˆƒÂ RèƒÄjjj‹E싈ˆƒÁQèƒÄjjj‹Uì‹‚ˆƒÀPèƒÄjjj‹Mì‹‘ˆƒÂRèƒÄj‹Eð3ÉQP‹Uì‹‚ˆƒÀPèƒÄj‹M 3ÒRQ‹E싈ˆƒÁQèƒÄj‹Uü3ÀPR‹Mì‹‘ˆƒÂ RèƒÄjjj‹E싈ˆƒÁ"QèƒÄƒ}ujjj‹Uì‹‚ˆƒÀ$PèƒÄë!j‹M‹Q3ÀPR‹Mì‹‘ˆƒÂ$RèƒÄƒ}ujjj‹E싈ˆƒÁ&QèƒÄë!j‹U‹B 3ÉQP‹Uì‹‚ˆƒÀ&PèƒÄ‹Mì‰MØ‹U؃º„w ‹E؃¸€ÿrjjjÿ‹Mì‹‘ˆƒÂ*RèƒÄë3j‹E싈€3Ò‹Eì+ˆðôRQ‹Mì‹‘ˆƒÂ*RèƒÄÇEøë ‹EøƒÀ‰Eø‹Mø;Mðs‹Uì‹‚ˆ‹M Mø‹UøŠ ˆL.ëÕÇEøë ‹UøƒÂ‰Uø‹Eø;E s ‹Mì‹‘ˆ‹EðL.‹UUø‹EøŠˆëÏÇEøë ‹EøƒÀ‰Eø‹Mø;Müs#‹Uì‹‚ˆ‹MðT.U ‹E$Eø‹MøŠˆ ëÌ‹M샹ˆu ¸˜ÿÿÿéô‹Uì‹EP‰‚°‹MìÇÀÇÄ‹UìÇ‚Èǂ̋EìÇ€¸Ç€¼‹MQ‹UR‹E P‹MìQèƒÄ‰Eô‹UìÇBD‹EìÇ@P‹MìÁ¤‹Uì‰JL‹EìÇ@H‹MìÇAT‹UìÇBlƒ}ô…ˆ‹E샸œu|‹M샹 up‹U샺œud‹EìÇ@`‹MìÇAd‹UìÇBhƒ}4~‹E4÷؉E4j8h‹MMU‹ìƒìVÇEüƒ}u ¸šÿÿÿéÕ‹E‰Eø‹Møƒy8u ¸šÿÿÿ鼋UR‹E P‹Mø‹‘¨Rè‹Mø‰¨‹Uø‹E ‰B@‹Mø‹U‰QDƒ}ü…}‹EøƒxD†p‹MøƒyPu1‹UøRèƒÄƒøÿuÇEüÿÿÿÿ‹EøÇ@P‹MøÁ¤‹Uø‰JLƒ}üté+‹Eøƒ¸œu[‹Møƒ¹ uO‹Uø‹BT‰Eôj‹MøƒÁ@Qè‰Eü‹Uø‹Eô;BTvÇEð‹MðƒÁ‰Mð‹Uø‹BT+Eô‹MøA|‹Uø‰B|é¿‹Eø‹Mø‹PD;QPs ‹Eø‹HD‰Mìë ‹Uø‹BP‰EìÇEèë ‹MèƒÁ‰Mè‹Uè;Uìs‹Eø‹H@‹Uø‹BL‹Uè‹uèŠ 1ˆ ëÕ‹Uø‹BD+Eì‹Mø‰AD‹Uø‹BP+Eì‹Mø‰AP‹Uø‹B@Eì‹Mø‰A@‹Uø‹BLEì‹Mø‰AL‹Uø‹BHEì‹Mø‰AH‹Uø‹BTEì‹Mø‰AT‹Uø‹B|Eì‹Mø‰A|éyþÿÿ‹Eü^‹å] J„އðƒU‹ìƒì ÇEü‹Eƒ¸¬„ƒÇEøë ‹MøƒÁ‰Mø‹U‹Eø;B|sf‹M‹‘ÜR‹EÐPèƒÄ‰Eô‹MMø¶‘¤R‹E‹ˆÜQ‹UÂÐRèƒÄ ‹EEø¶ˆ¤3Mô‹UUøˆŠ¤ë†‹E‹H|Q‹U¤R‹E‹H,Q‹U‹BP‹M‹Qÿ҃ċM;A|tÇEüÿÿÿÿ‹U‹B|3É‹U‚À‹’ÄÑ‹M‰À‰‘Ä‹U‹BH3É‹U‚È‹’ÌÑ‹M‰È‰‘Ì‹UÇBH‹EÇ@|‹Eü‹å]ÃN^{aU‹ì‹EP‹M 3ÒRQ‹EPè] U‹ìƒì@ÇEäÿÿÿÿ3Àf‰EüÇEìƒ}u ¸šÿÿÿ麋M‰Mè‹Uèƒz8u ¸šÿÿÿé¡‹EèÇ@D‹M胹œu|‹U胺 upƒ}ìuj‹EèƒxPu0‹MèQèƒÄƒøÿuÇEìÿÿÿÿ‹UèÇBP‹E褋Mè‰AL‹Uè‹BT‰Eàj‹MèƒÁ@Qè‰Eì‹Uè‹BT+Eà‹MèA|‹Uè‰B|ëƒ}ìuÇEì‹Uèƒz|vƒ}ìu‹EèPèƒÄƒøÿuÇEìÿÿÿÿ‹M胹œu1‹U胺 u%‹EèƒÀ@Pè‰E܃}ìu‹M܉Mì‹UèÇBx‹E胸 u!‹Mè‹‘¨‰U‹E苈ȉM ‹Ì‰U‹E苈À‰Mð‹Ä‰Uô‹Eè‹€à™Eð‹MôʉEð‰Môƒ}ôw4rƒ}ðÿs,ƒ}w&rƒ} ÿs‹Uè‰UÌ‹Ẽ¸„w ‹M̃¹€ÿr6jjj-‹Uè‹‚ˆƒÀPèƒÄjjj-‹Mè‹‘ˆƒÂRèƒÄj‹E3ÉQP‹Uè‹‚ˆƒÀPèƒÄƒ}ôwƒ}ðÿr j‹Mä3ÒRQ‹E苈ˆƒÁQèƒÄëj‹UôR‹EðP‹Mè‹‘ˆƒÂRèƒÄ‹Eèƒxlujjj‹Mè‹‘ˆƒÂ$RèƒÄƒ}wƒ} ÿr j‹Eä3ÉQP‹Uè‹‚ˆƒÀPèƒÄëj‹MQ‹U R‹E苈ˆƒÁQèƒÄƒ}wƒ} ÿr ¿UüƒÂf‰Uüƒ}ôwƒ}ðÿr ¿EüƒÀf‰Eü‹Mè‰MÈ‹Uȃº„w ‹Eȃ¸€ÿr ¿MüƒÁf‰Mü¿Uü…ÒŽ€ÇEØ¿EüƒÀ‹Mè;”v ¸™ÿÿÿév‹Uè‹‚ˆ‹Mè‰EØjjj‹UØRèƒÄ‹E؃À‰EØj¿Eü™RP‹MØQèƒÄ‹U؃‰U؃}wƒ} ÿrj‹EP‹M Q‹UØRèƒÄ‹E؃À‰E؃}ôwƒ}ðÿrj‹MôQ‹UðR‹EØPèƒÄ‹M؃Á‰MØ‹Uè‰UÄ‹E㸄w ‹Mă¹€ÿr(j‹Uè‹‚„P‹Š€Q‹UØRèƒÄ‹E؃À‰EØ¿MüƒÁ‹Uè‹‚”+Á‹M艔¿Uü‹E苈T ‹E艿Mü‹Uè‹‚ŒL‹U艊Œj‹E苈Œ3ÒRQ‹E苈ˆƒÁQèƒÄƒ}ìu&‹Uè‹‚P‹Mè‹‘ˆR‹EèƒÀ0PèƒÄ ‰Eì‹Mè‹‘ˆRèƒÄƒ}ì… ‹Eè‹H,Q‹UèRèƒÄ‰EЉUÔj‹E苈€ƒÁ‹„ƒÒRQ‹Eè‹H,Q‹UèRèƒÄ…ÀtÇEìÿÿÿÿƒ}ìuj‹E3ÉQP‹Uè‹B,P‹MèQèƒÄ‰Eìƒ}w ƒ} ÿ‚§‹Uè‰UÀ‹EÀƒ¸¼w‹MÀƒ¹¸†ƒj‹Uè‹‚¸ƒÀ‹Š¼ƒÑQP‹Uè‹B,P‹MèQèƒÄ…ÀtÇEìÿÿÿÿƒ}ìu j‹UR‹E P‹Mè‹Q,R‹EèPèƒÄ‰Eìƒ}ìu j‹MôQ‹UðR‹Eè‹H,Q‹UèRèƒÄ‰EìëLƒ}ìu j‹EôP‹MðQ‹Uè‹B,P‹MèQèƒÄ‰Eìƒ}ìu j‹UR‹E P‹Mè‹Q,R‹EèPèƒÄ‰Eìj‹MÔQ‹UÐR‹Eè‹H,Q‹UèRèƒÄ…ÀtÇEìÿÿÿÿ‹E苈øƒÁ‹üƒÒ‹E艈ø‰ü‹MèÇA8‹Eì‹å]Ây‡·ƒö‡)Žîg g'gQgrg–gÀgágŽg¬g×ggHgÄgí(Q~Iß I3I[II¡U‹ìjj‹EPè] ŠU‹ìƒìÇEü‹E‹M +ˆð‹Uô‰Mð‰UôjjhPK‹E‹H,Q‹URèƒÄ‰Eüƒ}üujjj‹E‹H,Q‹URèƒÄ‰Eüƒ}üu j‹EôP‹MðQ‹U‹B,P‹MQèƒÄ‰Eüƒ}üujjj‹U‹B,P‹MQèƒÄ‰Eü‹Eü‹å]Ã=I_I…I§IU‹ìƒìÇEøÇEü,jjhPK‹E‹H,Q‹URèƒÄ‰Eøƒ}øuj‹Eü3ÉQP‹U‹B,P‹MQèƒÄ‰Eøƒ}øujjj-‹U‹B,P‹MQèƒÄ‰Eøƒ}øujjj-‹U‹B,P‹MQèƒÄ‰Eøƒ}øujjj‹U‹B,P‹MQèƒÄ‰Eøƒ}øujjj‹U‹B,P‹MQèƒÄ‰Eøƒ}øu)j‹U‹‚üP‹ŠøQ‹U‹B,P‹MQèƒÄ‰Eøƒ}øu)j‹U‹‚üP‹ŠøQ‹U‹B,P‹MQèƒÄ‰Eøƒ}øuj‹U 3ÀPR‹M‹Q,R‹EPèƒÄ‰Eøƒ}øu;‹M‹U+‘ð‹Eô‰Uð‰Eôj‹MôQ‹UðR‹E‹H,Q‹URèƒÄ‰Eø‹Eø‹å]Ã)INIpI’I´IÖII4IYIšIU‹ìƒìÇEüjjhPK‹E‹H,Q‹URèƒÄ‰Eüƒ}üujjj‹E‹H,Q‹URèƒÄ‰Eüƒ}üujjj‹E‹H,Q‹URèƒÄ‰Eüƒ}üug‹E‰Eì‹M샹üw‹Uìºøÿÿr!jjhÿÿ‹E‹H,Q‹URèƒÄ‰Eüë%j‹E‹ˆø3ÒRQ‹E‹H,Q‹URèƒÄ‰Eüƒ}üug‹E‰Eè‹M胹üw‹Uèºøÿÿr!jjhÿÿ‹E‹H,Q‹URèƒÄ‰Eüë%j‹E‹ˆø3ÒRQ‹E‹H,Q‹URèƒÄ‰Eüƒ}üuj‹E 3ÉQP‹U‹B,P‹MQèƒÄ‰Eüƒ}üur‹U‹E+‚ð‹MŠô‰Eð‰Môuƒ}ðÿrjjjÿ‹U‹B,P‹MQèƒÄ‰Eüë1j‹U‹E+‚ð‹MŠô3ÒRP‹E‹H,Q‹URèƒÄ‰Eü‹Eü‹å]Ã"IDIfI¬IÓII@IeIªIÝIU‹ìƒìÇEüÇEøƒ} t‹E PèƒÄ‰Eøj‹Mø3ÒRQ‹E‹H,Q‹URèƒÄ‰Eüƒ}üu3ƒ}øv-‹EøP‹M Q‹U‹B,P‹M‹QR‹E‹HÿуÄ;EøtÇEüÿÿÿÿ‹Eü‹å]ÃF>IU‹ìƒì0ÇEðÇEôƒ}u ¸šÿÿÿéÄ‹E‰Eì‹Mìƒy8u ‹URè‰Eðƒ} u ‹E싈‰M ‹Uì‹B,P‹MìQèƒÄ‰Eø‰Uüƒ}ðuj‹Uì‹B0‰E܃}Üt[ƒ}ðu?‹M܃yv6‹UÜ‹BP‹M܃ÁQ‹Uì‹B,P‹Mì‹QR‹Eì‹HÿуÄ‹UÜ;BtÇEðÿÿÿÿ‹EÜ‹MôH‰Mô‹UÜ‹‰EÜ럋MìƒÁ0QèƒÄ‹Uì‹Eø+‚ð‹MüŠô‰Eà‰Mäuƒ}àÿrE‹Uì‹B,P‹MìQèƒÄ‰EЉUÔ‹UüR‹EøP‹MôQ‹UìRèƒÄ‹EÔP‹MÐQ‹UìRèƒÄ ƒ}ðu‹EüP‹MøQ‹UôR‹EìPèƒÄ‰Eðƒ}ðu‹M Q‹UìRèƒÄ‰Eð‹Eì‹H,Q‹Uì‹BP‹Mì‹Qÿ҃ąÀt ƒ}ðuÇEðÿÿÿÿ‹E샸t‹Mì‹‘RèƒÄƒ}ìt ‹EìPèƒÄ‹Eð‹å]Â8‘](â£(6—J”hšÌÞU‹ì‹E‹QèƒÄ‹UÇB‹EÇ]à ¦U‹ìQƒ}t"‹E‹‰Müƒ}t ‹URèƒÄ‹Eü‰EëØ‹å]ÃU‹ìƒì‹E‰EüÇEðÇEøƒ}t‹M ƒ9} ¸šÿÿÿéð‹U ‹PèƒÄ‰Eè‹Mè‰Mô‹U ‹E9Eüsg‹Müf‹f‰Uä‹Eüf‹Hf‰Mì¿Uä¿E;Ðu¿Mì‹UüD ‰Eüë4¿MìƒÁQ‹UüR‹EôPèƒÄ ¿Mì‹UüD ‰Eü¿Mì‹UðD ‰Eð댋M ‹Uð;}?‹E ‹Qj‹URèƒÄ ƒ}ð~‹EðP‹MèQ‹URèƒÄ ‹E ‹Mð‰ÇEøëÇEøÿÿÿÿƒ}èt ‹UèRèƒÄ‹Eø‹å] 9˜«Ôªî«@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.rdataO~Q™.bss.texte}ý“Ë- _free _malloc I .text)w@W .text>9;Oìn .textsØ ©Ö† .text aý¿› .text Å6ÙÈe¯ .text ÕîÌhœà __allshl .text :Ãv Ù ö .text _ ]­LÛ .text¹ ÔÕð7# 0 > __chkstk _memcpy .textVÔ|U .textN}‰wKf s .text]X÷Ç2  .text~ÚN° .text~ÚN» .text ÏÑÈ _strlen .text§¡.drectve]” .debug$S°ñ@B.rdataQ¡@@@.text<ò.  P`.text¬B P`.textHî 6  P`.textÂT  P`.texts$— P`.texta« P`.textÅ Ñ P`.textÇùÀ P`.text:V P`.text_Â! P`.textW™ð P`.text P`.text%< P`.text_F¥ P`.text>¹ P`.text6÷ P`.text1-^ P`.textÜhD$ P`.textÛ\%7& P`.textìs&_' P`.textŽi'÷' P`.text'(() P`.text`2)’* P`.texteÄ* P`.text6)+_+ P`.textŒi+õ+ P`.textAÿ+@, P`.textiJ,³/ P`.rdata0@0@.textK 0T3 P`.textÂ3Ú3 P`.textä3þ3 P`.text4&4 P`.textT04 P`.textÁ„4E9 P`.text>m9 P`.textC«9 P`.text]î9 P`.text K:U; P`.textà_;?< P`.textÃ]< = P`.text¡*= P`.text(Ë=ó= P`.text„ý=> P`.text‹>¢> P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\unzip.obj:<RRMicrosoft (R) Optimizing Compiler unzip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDllU‹ìƒ}uÇEƒ}u‹E P‹MQèƒÄë‹U R‹EPèƒÄ]  1U‹ìQ‹EŠˆMÿ‹UƒÂ‰U‹E ŠˆMþ‹U ƒÂ‰U ¾Eÿƒøa|¾Mÿƒùz ¾Uÿƒê ˆUÿ¾Eþƒøa|¾Mþƒùz ¾Uþƒê ˆUþ¾Eÿ…Àu ¾Eþ÷ØÀë8¾Mþ…Éu¸ë)¾Uÿ¾Eþ;Ð}ƒÈÿë¾Mÿ¾Uþ;Ê~¸ëé\ÿÿÿ‹å]ÃU‹ìƒì,ƒ} t&‹E PMÔQèƒÄjUÔR‹EPèƒÄ ëëjj‹MQèƒÄ ‹å]Â';U‹ìì,VWÇEð¾ƒø t3Àé—Ç…ÿÿÿÇ…ÿÿÿƒ} uðþÿÿQèƒÄë‹u ¹ ½ðþÿÿó¥‹U‰•ÿÿÿj‹EPðþÿÿQèƒÄ ‰… ÿÿÿƒ½ ÿÿÿu3Àé(‹• ÿÿÿR…ðþÿÿPèƒÄ‰…èþÿÿ‰•ìþÿÿ‹èþÿÿ ìþÿÿ„ôÇEØj‹•ìþÿÿR‹…èþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ…ÀtÇEðÿÿÿÿEôP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ…àþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ…ÜþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ…ÜþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEüP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEäP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ…(ÿÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEèP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ‹Eè;…(ÿÿÿu‹Mì;,ÿÿÿu ƒ}äuƒ}ütÇEð™ÿÿÿ•`ÿÿÿR‹… ÿÿÿPðþÿÿQèƒÄ …ÀtÇEðÿÿÿÿ•hÿÿÿR‹… ÿÿÿPðþÿÿQèƒÄ …ÀtÇEðÿÿÿÿÇ…0ÿÿÿé‹• ÿÿÿR…ðþÿÿPèƒÄ‰…èþÿÿ‰•ìþÿÿ‹èþÿÿ ìþÿÿuÇEðÿÿÿÿÇEØj‹•ìþÿÿR‹…èþÿÿP‹ ÿÿÿQ•ðþÿÿRèƒÄ…ÀtÇEðÿÿÿÿEôP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEüP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEäP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿEôP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ‹Eô3ɉ…(ÿÿÿ‰,ÿÿÿUôR‹… ÿÿÿPðþÿÿQèƒÄ …ÀtÇEðÿÿÿÿ‹Uô3À‰Uè‰Eì‹Mè;(ÿÿÿu‹Uì;•,ÿÿÿu ƒ}äuƒ}ütÇEð™ÿÿÿEôP‹ ÿÿÿQ•ðþÿÿRèƒÄ …ÀtÇEðÿÿÿÿ‹Eô3ɉ…`ÿÿÿ‰dÿÿÿUôR‹… ÿÿÿPðþÿÿQèƒÄ …ÀtÇEðÿÿÿÿ‹Uô3À‰•hÿÿÿ‰…lÿÿÿ0ÿÿÿQ‹• ÿÿÿR…ðþÿÿPèƒÄ …ÀtÇEðÿÿÿÿ‹hÿÿÿ`ÿÿÿ‹•lÿÿÿ•dÿÿÿ‰Ôþÿÿ‰•Øþÿÿ‹…ìþÿÿ;…Øþÿÿwr‹èþÿÿ;Ôþÿÿs ƒ}ðuÇEð™ÿÿÿƒ}ðt‹• ÿÿÿR‹… ÿÿÿPÿ•ÿÿÿƒÄ3À錋hÿÿÿ`ÿÿÿ‹•lÿÿÿ•dÿÿÿ‹…èþÿÿ+Á‹ìþÿÿʉ…8ÿÿÿ‰<ÿÿÿ‹•èþÿÿ‰•Xÿÿÿ‹…ìþÿÿ‰…\ÿÿÿÇEÐÇEÔhðèƒÄ‰Eøƒ}øt¹<µðþÿÿ‹}øó¥‹MøQè‹Eø_^‹å]ÃGw£/î#;&c‹°#Õ#ý&"&s&›&Ë*>#cˆ­ã<#r#«µSU‹ìƒì ÇEøEøP‹M Q‹URèƒÄ ‰Eô‹Eø‰Eüƒ}ôuMøQ‹U R‹EPèƒÄ ‰Eô‹MøÁá Mü‰Müƒ}ôu ‹U‹Eü‰ë ‹MÇ‹Eô‹å]à = U‹ìƒìjEûP‹M Q‹U‹BP‹M‹Qÿ҃ĉEüƒ}üu¶Eû‹M‰3Àë%ë#‹U R‹E‹HQ‹U‹BÿЃÄ…ÀtƒÈÿëë3À‹å]ÃU‹ìƒì ÇEøEøP‹M Q‹URèƒÄ ‰Eô‹Eø‰Eüƒ}ôuMøQ‹U R‹EPèƒÄ ‰Eô‹MøÁá Mü‰Müƒ}ôuUøR‹E P‹MQèƒÄ ‰Eô‹UøÁâ Uü‰Uüƒ}ôuEøP‹M Q‹URèƒÄ ‰Eô‹EøÁàEü‰Eüƒ}ôu ‹M‹Uü‰ë ‹EÇ‹Eô‹å]à = f  U‹ìƒìÇEôEôP‹M Q‹URèƒÄ ‰Eð‹Eô™‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™± è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±(è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±0è Eø Uü‰Eø‰Uüƒ}ðuEôP‹M Q‹URèƒÄ ‰Eð‹Eô™±8è Eø Uü‰Eø‰Uüƒ}ðu‹E‹Mø‰‹Uü‰Pë‹EÇÇ@‹Eð‹å]à A R'u †'© º'Ý î' "'E V'y Š'U‹ìƒìHÇEàÿÿÇEäÇEðÇEôjjj‹E P‹MQèƒÄ…Àt 3À3Òéñ‹U R‹EPèƒÄ‰Eø‰Uü‹Mä;Mürw‹Uà;Uøv ‹Eø‰Eà‹Mü‰MähèƒÄ‰E܃}Üu 3À3ÒéžÇEèÇEì‹Uì;Uä‡lr ‹Eè;Eàƒ^‹MèÁ‹UìƒÒ‰MĉUÈ‹EÈ;Eärw‹MÄ;Màv‹Uà‰Uè‹Eä‰Eìë‹MèÁ‹UìƒÒ‰Mè‰Uì‹Eø+Eè‹MüMì‰EЉMÔ‹Uø+UЋEüEÔ‰U¼‰EÀƒ}Àrw }¼v ÇE¸ë‹Mø+MЋUüUÔ‰M¸‹E¸‰EÌj‹MÔQ‹UÐR‹E P‹MQèƒÄ…Àtéž‹UÌR‹EÜP‹M Q‹U‹BP‹M‹QÿÒƒÄ;EÌtëy‹Ẽè‰EØ‹MØ‹U؃ê‰UØ…É~Q‹EÜEضƒùPuA‹UÜUضBƒøKu2‹MÜMضQƒúu#‹EÜEضHƒùu‹EØ™EЋMÔʉEð‰Môë럋Uð Uôtëéˆþÿÿƒ}Üt ‹EÜPèƒÄ‹Eð‹Uô‹å]Ã1N,p)+U‹ìƒìXÇEÐÿÿÇEÔÇEðÇEôjjj‹E P‹MQèƒÄ…Àt 3À3Òé‹U R‹EPèƒÄ‰Eø‰Uü‹MÔ;Mürw‹UÐ;Uøv ‹Eø‰EЋMü‰MÔhèƒÄ‰Ẽ}Ìu 3À3ÒéÃÇEèÇEì‹Uì;UÔ‡lr ‹Eè;EЃ^‹MèÁ‹UìƒÒ‰M´‰U¸‹E¸;EÔrw‹M´;MÐv‹UЉUè‹EÔ‰Eìë‹MèÁ‹UìƒÒ‰Mè‰Uì‹Eø+Eè‹MüMì‰EÀ‰MÄ‹Uø+UÀ‹EüEĉU¬‰E°ƒ}°rw }¬v ÇE¨ë‹Mø+MÀ‹UüUĉM¨‹E¨‰E¼j‹MÄQ‹UÀR‹E P‹MQèƒÄ…Àtéž‹U¼R‹EÌP‹M Q‹U‹BP‹M‹QÿÒƒÄ;E¼tëy‹E¼ƒè‰EÈ‹MÈ‹Uȃê‰UÈ…É~Q‹EÌEȶƒùPuA‹UÌUȶBƒøKu2‹MÌMȶQƒúu#‹EÌEȶHƒùu‹EÈ™EÀ‹MÄʉEð‰Môë럋Uð Uôtëéˆþÿÿƒ}Ìt ‹EÌPèƒÄ‹Mð Môu 3À3Òéj‹UôR‹EðP‹M Q‹URèƒÄ…Àt 3À3ÒéóEÜP‹M Q‹URèƒÄ …Àt 3À3ÒéÒEÜP‹M Q‹URèƒÄ …Àt 3À3Ò鱃}Üt 3À3Òé¢EàP‹M Q‹URèƒÄ …Àt 3À3ÒéEÜP‹M Q‹URèƒÄ …Àt3À3Òëcƒ}Üt3À3ÒëWj‹EäP‹MàQ‹U R‹EPèƒÄ…Àt3À3Òë3MÜQ‹U R‹EPèƒÄ …Àt3À3Òë}ÜPKt3À3Òë‹Eà‹Uä‹å]Ã1N,p)+Tu#–#Æ&ç#5#U‹ìƒì,VWƒ} t1‹u ¹}Ôó¥ÇEøÇEüjEÔP‹MQèƒÄ ëëjj‹URèƒÄ _^‹å]Â4HU‹ìjj‹EPèƒÄ ] U‹ìjj‹EPèƒÄ ] U‹ìQƒ}u¸šÿÿÿëH‹E‰Eü‹Müƒ¹àt ‹URè‹Eü‹H0Q‹Uü‹BP‹Mü‹Qÿ҃ă}üt ‹EüPèƒÄ3À‹å]Â(P+U‹ìQƒ}u¸šÿÿÿë'‹E‰Eü‹MüƒÁ8‹U ‹‰‹A‰B‹A‰B‹I ‰J 3À‹å]ÂU‹ìQƒ}u¸šÿÿÿë‹E‰Eü‹Mü‹Q8‹E ‰‹M ‹Uü‹B@‰A3À‹å]ÂU‹ì‹E$P‹M Q‹UR‹EP‹MQ‹URj‹E P‹MQèƒÄ$] &GU‹ììœVWÇEŒÇE˜ƒ}u ¸šÿÿÿé­‹E‰Eüj‹Mü‹Uü‹AXBH‹I\JLQP‹Uü‹B0P‹MüQèƒÄ…ÀtÇEŒÿÿÿÿƒ}Œu4UøR‹Eü‹H0Q‹UüRèƒÄ …Àt ÇEŒÿÿÿÿë}øPKtÇEŒ™ÿÿÿE P‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿM¤Q‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿU¨R‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿE¬P‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿM°Q‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿUàR‹E°3ÉQPèƒÄ U´R‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿEœP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿ‹Mœ3Ò‰M¸‰U¼EœP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿ‹Mœ3Ò‰MÀ‰UÄEÈP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿMÌQ‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿUÐR‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿEÔP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿMØQ‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿUÜR‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿEœP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿ‹Mœ3Ò‰M‰U”‹E˜EȉE˜ƒ}Œugƒ}ta‹MÈ;Ms‹UUÈÆ‹EȉEˆë‹M‰Mˆƒ}Èv3ƒ}v-‹UˆR‹EP‹Mü‹Q0R‹Eü‹HQ‹Uü‹BÿЃÄ;EˆtÇEŒÿÿÿÿ‹M˜+Mˆ‰M˜ƒ}Œ…ǃ}„½‹UÌ;U s ‹EÌ3ɉE€‰M„ë ‹U 3À‰U€‰E„ƒ}˜t/j‹E˜™RP‹Mü‹Q0R‹EüPèƒÄ…Àu ÇE˜ëÇEŒÿÿÿÿƒ}ÌvRƒ} vL‹M€Q‹UR‹Eü‹H0Q‹Uü‹BP‹Mü‹QÿÒƒÄ3ɉ…dÿÿÿ‰hÿÿÿ‹•dÿÿÿ;U€u ‹…hÿÿÿ;E„tÇEŒÿÿÿÿ‹M€‹UÌ+ÑU˜‰U˜ë ‹E˜ẺE˜ƒ}Œ…°ƒ}Ì„¦Ç…|ÿÿÿ‹M˜+M̉M˜t/j‹E˜™RP‹Uü‹B0P‹MüQèƒÄ…Àu ÇE˜ëÇEŒÿÿÿÿ‹•|ÿÿÿ;ŨS…tÿÿÿP‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿxÿÿÿQ‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿƒ½tÿÿÿ…·ƒ}Àÿu(ƒ}Äu"UÀR‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿƒ}¸ÿu(ƒ}¼u"E¸P‹Mü‹Q0R‹EüPèƒÄ …ÀtÇEŒÿÿÿÿƒ}ÿu(ƒ}”u"MQ‹Uü‹B0P‹MüQèƒÄ …ÀtÇEŒÿÿÿÿƒ}Ôÿu%•pÿÿÿR‹Eü‹H0Q‹UüRèƒÄ …ÀtÇEŒÿÿÿÿë*j‹…xÿÿÿ3ÉQP‹Uü‹B0P‹MüQèƒÄ…ÀtÇEŒÿÿÿÿ‹•xÿÿÿ‹…|ÿÿÿL‰|ÿÿÿéžþÿÿƒ}Œ…´ƒ}$„ª‹UÐ;U(s‹E$EÐÆ‹MЉlÿÿÿë ‹U(‰•lÿÿÿƒ}˜t/j‹E˜™RP‹Eü‹H0Q‹UüRèƒÄ…Àu ÇE˜ëÇEŒÿÿÿÿƒ}Ðv9ƒ}(v3‹…lÿÿÿP‹M$Q‹Uü‹B0P‹Mü‹QR‹Eü‹HÿуÄ;…lÿÿÿtÇEŒÿÿÿÿ‹UÐ+•lÿÿÿU˜‰U˜ë ‹E˜EЉE˜ƒ}Œuƒ} t ¹u ‹} ó¥ƒ}Œuƒ}t‹M‹U‰‹E”‰A‹EŒ_^‹å]ÃQy#­Ïñ5#SJj#Œ#¹#æ*Ln#²#“\™¾ù&'&U&€#¬,U‹ìƒì‹E‹U ±è‰Eø‰Uü‹Eøƒà‹Müƒá‹U‰B ‹Eø%à‹Müƒájj QPèƒèƒÚ‹U‰B‹Eø%þ‹MüƒájhQP較ҋU‰B‹E%ø‹M ƒájhQPè‹U‰B‹E%à‹M ƒájj QPè‹U‰B‹Eƒà‹M ƒájjQPè‹U‰‹å]ÃM@LhL’L±LÎKU‹ìƒì\‹E$P‹M Q‹UR‹EP‹MQ‹URjE¨P‹MQèƒÄ$‰E¤ƒ}¤…¦‹U ‹E¨‰‹M ‹U¬‰Q‹E ‹M°‰H‹U ‹E´‰B ‹M ‹U¸‰Q‹E ‹M¼‰H‹U ‹EЉB ‹M ‹UÔ‰Q$‹E ‹M؉H(‹U ‹E܉B,‹M ‹Uà‰Q0‹E ‹Mä‰H4‹U ƒÂ8‹E艋Mì‰J‹Eð‰B‹Mô‰J ‹Eø‰B‹Mü‰J‹UÀ‹E ‰P‹MÈ‹U ‰J‹E¤‹å] )GU‹ìƒìÇEøƒ}u¸šÿÿÿën‹E‰Eü‹Mü‹Uü‹Bx‰AX‹R|‰Q\‹EüÇ@PÇ@Tjjjjjj‹MüÁØQ‹Uü€R‹EPèƒÄ$‰Eø3Àƒ}ø”À™‹Mü‰A`‰Qd‹Eø‹å]ÂhGU‹ìƒìƒ}u ¸šÿÿÿé ‹E‰Eü‹Mü‰Mô‹Uô‹Eô‹J` Hdu ¸œÿÿÿéç‹Uü‰Uð‹Eðx8ÿÿu ‹Mðƒy<t;‹Uü‹BPƒÀ‹JTƒÑ‹Uü‰Eè‰Mì‰Uä‹Eä‹Mè;H8u‹Uä‹Eì;B#ªöU‹ìjjjj‹EPè]ÂiU‹ì‹E Pjjj‹MQè]ÂiU‹ìj‹EP‹MQ‹U R‹EPè]ÂiU‹ìƒìV‹E‰Eüƒ}u3À3Òë4‹Mü‹‘à‰Uøƒ}øu3À3Òë‹Eø‹Mø‹P@‘À‹pD±Ä‹Â‹Ö^‹å]ÂU‹ìƒìpVWÇEðÇEôƒ}u ¸šÿÿÿé“‹E‰Eü‹Mü‹‘à‰Uøƒ}øu ¸šÿÿÿéq‹Eøƒ8u ¸œÿÿÿé_ƒ}u3ÀéR‹Mø‹U ‰Q‹Eø‹M‰H‹U3À‹Mø‰U¸‰E¼‰M´‹U´‹E¼;‚„r+w‹M´‹U¸;‘€v‹Eøƒ¸Èu‹Mø‹‘€‹Eø‰P‹M3Ò‹Eø‹@3ö‹}øGx‹|þ‰M¬‰U°‰E¤‰}¨‹M°;M¨r(w‹U¬;U¤v‹Eøƒ¸Èt‹Mø‹Qx‹EøP‹Mø‰Q‹Uøƒz†‡‹Eøƒx…'‹Mø‰M ‹U ƒz|w ‹E ƒxx† ÇEì@‹Mì3Ò‹Eø‰Eœ‰M”‰U˜‹Mœ‹Q|;U˜wr ‹Eœ‹Hx;M”s ‹Uø‹Bx‰Eìƒ}ìu3Àé&j‹Mø‹Uø‹A@‚À‹IDŠÄQP‹Uø‹‚´P‹MøÁˆQèƒÄ…ÀtƒÈÿéâ‹UìR‹Eø‹Q‹Uø‹‚´P‹Mø‹‘¤R‹Eø‹ˆŒÿуÄ;EìtƒÈÿé©‹Uì3À‹MøQ@‹IDÈ‹Eø‰P@‰HD‹Mì3Ò‹Eø‹px+ñ‹H|Ê‹Uø‰rx‰J|‹Eø‹Mø‹‰P‹Eø‹Mì‰H‹Uøƒº¸t‹Eøƒ¸È„8‹Møƒyu#‹Uø‰U‹E‹M‹Px Q|u‹Eô÷ØÀ#Eôé‹Eø‹Mø‹P;Qs ‹Eø‹H‰Mäë ‹Uø‹B‰EäÇEèë ‹MèƒÁ‰Mè‹Uè;Uäs‹Eø‹H‹Uø‹B‹Uè‹uèŠ 1ˆ ëÕ‹Uä3À‹MøQh‹IlÈ‹Eø‰Ph‰Hl‹MäQ‹Uø‹BP‹Mø‹QpRè‹Mø‰Ap‹Uä3À‹Mø‹±€+ò‹‘„ЋEø‰°€‰„‹Mø‹Q+Uä‹Eø‰P‹Mø‹Q+Uä‹Eø‰P‹Mø‹QUä‹Eø‰P‹Mø‹QUä‹Eø‰P‹Mø‹QUä‹Eø‰P‹MôMä‰Môéú‹Uøƒº¸ uééÇEÔ‹Eø‹H3Ò‰MÀ‰UÄ‹Eø‹H‰Mà‹UÔR‹EøƒÀPè‰Eðƒ}ð|‹MøƒytÇEðýÿÿÿ‹Uø‹B3ɉEȉMÌ‹UÈ+UÀ‹EÌEĉU؉EÜ‹Mø‹QhUØ‹AlEÜ‹Mø‰Qh‰Al‹UØR‹EàP‹Mø‹QpRè‹Mø‰Ap‹Uø‹‚€+EØ‹Š„MÜ‹Uø‰‚€‰Š„‹EÈ+EÀ‹MÌMÄEô‰Eôƒ}ðu ‹Eô÷ØÀ#Eôëƒ}ðtëélüÿÿƒ}ðu‹Eôë‹Eð_^‹å] Ä"ç€LU‹ìƒìƒ}u¸šÿÿÿë%‹E‰Eü‹Mü‹‘à‰Uøƒ}øu¸šÿÿÿë‹Eø‹@‹å]ÂU‹ìƒìƒ}uƒÈÿƒÊÿë)‹E‰Eü‹Mü‹‘à‰Uøƒ}øuƒÈÿƒÊÿë ‹Mø‹Ah‹Ql‹å]ÂU‹ìƒì ƒ}u¸šÿÿÿëD‹E‰Eü‹Mü‹‘à‰Uøƒ}øu¸šÿÿÿë%‹Eø‰Eô‹Mô‹Uô‹€ ‚„u ¸ëë3À‹å]ÂU‹ìƒìƒ}u ¸šÿÿÿéî‹E‰Eô‹Mô‹‘à‰Uðƒ}ðu ¸šÿÿÿéÌ‹Eð‹HX3Ò‹Eð+H`Pd‰Mø‰Uüƒ} u‹Eøé§‹M3Ò‰Mä‰Uè‹Eè;Eürw‹Mä;Møv‹Uø‰Uìë‹E‰Eìƒ}ìu3Àërj‹Mð‹Uð‹APB`‹ITJdQP‹Uð‹‚´P‹MðÁˆQèƒÄ…ÀtƒÈÿë7‹UìR‹E P‹Mð‹‘´R‹Eð‹ˆ¤Q‹Uð‹‚ŒÿЃÄ;EìtƒÈÿë‹Eì‹å] ½U‹ìƒìÇEôƒ}u ¸šÿÿÿ齋E‰Eü‹Mü‹‘à‰Uøƒ}øu ¸šÿÿÿ雋Eø‰Eð‹Mð‹Uð‹€ ‚„u!‹Møƒ¹Èu‹Uø‹Eø‹Jp;HttÇEô—ÿÿÿ‹Uøƒ:t‹Eø‹QèƒÄ‹UøÇ‹EøƒxHu ‹MøƒÁQè‹UøÇBHƒ}øt ‹EøPèƒÄ‹MüÇà‹Eô‹å]‰+ª‘Ã+U‹ìƒìƒ}u ¸šÿÿÿé§‹E‰Eü‹M‰Mø‹Uü‹Eø;B@v ‹Mü‹Q@‰Uøj‹Eü‹HhƒÁ‹PlƒÒRQ‹Eü‹H0Q‹UüRèƒÄ…ÀtƒÈÿëXƒ}øv1‹E Æ‹MøQ‹U R‹Eü‹H0Q‹Uü‹BP‹Mü‹QÿÒƒÄ;EøtƒÈÿë!ƒ} t‹Eü‹M;H@v ‹Uü‹B@‹M Æ‹Eø‹å] UU‹ìƒìƒ}u 3À3Ò醋E‰Eü‹Mü‰Mø‹Uø‹Eø‹J` Hdu3À3Òëf‹Uü‰Uô‹Eô‹Mô‹P8 QÔÖ .text6líP˜³ .text1ÝÈbðÇ .textÜbÞ¡Nã .textÛPŸ”  __allmul ' 1 .textìA5Á²; .textŽr&U .text'Áõ'¶i .text`Ÿo| _strlen .texte‰{õŽ .text6Ø8`¡ .textŒ½y1]² .textAjÈï3Æ .textiƒE:Ø ð .rdata Ü{ .text!K nÒ ! .text"wl†VL" .text#Zü/²b# .text$k¢Àå€$ .text%TUzÛ˜% .text&Áró¹& Ð Û .text'>¨QAÙå' .text(C³.<4ð( .text)]Ï6•þý) .text* Câ,4* .text+à6$Ò“!+ 8 .text,Ü·÷F, .text-¡Ul^Æ^- .text.(¬dݹp. .text/„½™®†€/ .text0™óÓ“0 £_unz_copyright_unzStringFileNameCompare@12_strcmpcasenosensitive_internal_unzOpen2@8_fill_zlib_filefunc64_32_def_from_filefunc32_unzOpenInternal_call_zseek64_call_zopen64_fill_fopen64_filefunc_unz64local_getShort_unz64local_getByte_unz64local_getLong_unz64local_getLong64_unz64local_SearchCentralDir_call_ztell64_unz64local_SearchCentralDir64_unzOpen2_64@8_unzOpen@4_unzOpen64@4_unzClose@4_unzGetGlobalInfo64@8_unzGetGlobalInfo@8_unzGetCurrentFileInfo64@32_unz64local_GetCurrentFileInfoInternal_unz64local_DosDateToTmuDate__aulldiv__aullshr_unzGetCurrentFileInfo@32_unzGoToFirstFile@4_unzGoToNextFile@4_unzLocateFile@12_unzGetFilePos64@8_unzGetFilePos@8_unzGoToFilePos64@8_unzGoToFilePos@8_unzOpenCurrentFile3@20_inflateInit2_@16??_C@_05DFCKICEH@1?42?45?$AA@_unz64local_CheckCurrentFileCoherencyHeader_unzOpenCurrentFile@4_unzOpenCurrentFilePassword@8_unzOpenCurrentFile2@16_unzGetCurrentFileZStreamPos64@4_unzReadCurrentFile@12_inflate@8_crc32@12_unztell@4_unztell64@4_unzeof@4_unzGetLocalExtrafield@12_unzCloseCurrentFile@4_inflateEnd@4_unzGetGlobalComment@12_unzGetOffset64@4_unzGetOffset@4_unzSetOffset64@12_unzSetOffset@8 /141 1315202897 100666 1069 ` LQgdNÄ.drectve]´ .debug$S´@B.textÇÅŒ P`.rdata¾@0@ /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\uncompr.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒì<‹E‰EÈ‹M‰MÌ‹UÌ;Ut ¸ûÿÿÿé‹E‰EÔ‹M ‹‰UØ‹E ‹MØ;t¸ûÿÿÿë~ÇEèÇEìj8hUÈRè‰Eă}Ät‹EÄëRjEÈPè‰Eă}Ät'MÈQèƒ}Ät ƒ}Äûu ƒ}Ìu¸ýÿÿÿë‹EÄë‹U ‹E܉MÈQè‰EÄ‹EÄ‹å]ÂT] v ˆ · 1.2.5@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.textÇ_û{Z  ! , .rdataÜ{=[_uncompress@16_inflateEnd@4_inflate@8_inflateInit_@12??_C@_05DFCKICEH@1?42?45?$AA@ /179 1315202897 100666 19429 ` LQgdNDV.drectve]ü .debug$S°Y@B.rdata8 @@@.data<A}@0À.text–¯E P`.textw P`.textÌ| P`.text7H P`.textµ‰> P`.textÃŽQ P`.text•É^ P`.text‰ P`.text! P`.text¸'$ß$ P`.text´é$% P`.text Å% P`.textùe'^, P`.textf †, P`.text*ì68 P`.texté>8'@ P`.textºm@ P`.text?'A P`.textåfA P`.text¸KB P`.textC D P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\trees.obj:<RRMicrosoft (R) Optimizing Compiler       ŒLÌ,¬lìœ\Ü<¼|ü‚BÂ"¢bâ’RÒ2²rò ŠJÊ*ªjêšZÚ:ºzú†FÆ&¦fæ–VÖ6¶vöŽNÎ.®nîž^Þ>¾~þAÁ!¡aá‘QÑ1±qñ ‰IÉ)©ié™YÙ9¹yù…EÅ%¥eå•UÕ5µuõ MÍ-­mí]Ý=½}ý  “ “ S S Ó Ó 3 3 ³ ³ s s ó ó  ‹ ‹ K K Ë Ë + + « « k k ë ë   › › [ [ Û Û ; ; » » { { û û   ‡ ‡ G G Ç Ç ' ' § § g g ç ç   — — W W × × 7 7 · · w w ÷ ÷    O O Ï Ï / / ¯ ¯ o o ï ï   Ÿ Ÿ _ _ ß ß ? ? ¿ ¿   ÿ ÿ @ `P0pH(hX8xD$dT4tƒCÃ#£cã         (08@P`p€ Àà  0@`€À€  0@`   , U‹ìè‹E”‹M‰ ‹UÇ‚ ‹Eˆ ‹M‰$ ‹UÇ‚, ‹E| ‹M‰0 ‹UÇ‚8 3À‹Mf‰¸‹UÇ‚¼‹EÇ€´‹MQèƒÄ]Ã"@^U‹ì]ÃU‹ìQÇEüë ‹EüƒÀ‰Eü}ü}3É‹Uü‹Ef‰Œ”ëÜÇEüë ‹MüƒÁ‰Müƒ}ü}3Ò‹Eü‹Mf‰”ˆ ëßÇEüë ‹UüƒÂ‰Uüƒ}ü}3À‹Mü‹Uf‰„Š| ë߸‹Mf‰”‹UÇ‚¬‹EÇ€¨‹Mǰ‹UÇ‚ ‹å]ÃU‹ìƒìÇEü¸+Eü‹M9¼Ž¿‹U‰Uø·Eø‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E·ˆ¸áÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E·ˆ¸Áù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J·Eø‹Mº+‘¼‹ÊÓø‹Mf‰¸‹U‹‚¼‹MüTð‹E‰¼ë:·U‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eü‹M‰¼j‹UR‹E P‹MQèƒÄ‹å]Ã,UU‹ìƒì ÇEü¸+Eü‹M9¼޽ÇEø·Uø‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uø‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MüTð‹E‰¼ë;‹Mº‹‰¼Óâ‹E·ˆ¸ Ê‹Uf‰Š¸‹E‹ˆ¼Mü‹U‰Š¼·‰Eô¹+Mô‹U9мŽÀ·‰Eð·Uð‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uð‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MôTð‹E‰¼ë=·‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eô‹M‰¼‹URèƒÄ‹E‹ˆ´ƒÁ ‹U+мƒù @ÇEì¸+Eì‹M9¼޽ÇEè·Uè‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uè‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MìTð‹E‰¼ë;‹Mº‹‰¼Óâ‹E·ˆ¸ Ê‹Uf‰Š¸‹E‹ˆ¼Mì‹U‰Š¼·‰Eä¹+Mä‹U9мŽÀ·‰Eà·Uà‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uà‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MäTð‹E‰¼ë=·‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eä‹M‰¼‹URèƒÄ‹EÇ€´‹å]à @  ?O} ž ^ OU‹ìƒìÇEø‹Eƒ¸„Ž‹M‹ƒz,u‹EPèƒÄ‹M‹‰B,‹E P‹MQèƒÄ‹UÂ$ R‹EPèƒÄ‹MQèƒÄ‰Eø‹U‹‚¨ƒÀ Áè‰Eô‹M‹‘¬ƒÂ Áê‰Uü‹Eü;Eôw‹Mü‰Môë‹UƒÂ‰Uü‹Eü‰Eô‹MƒÁ;Môw#ƒ} t‹UR‹EP‹M Q‹URèƒÄ麋Eƒ¸ˆt ‹Mü;Mô…7ÇEðº+Uð‹E9¼Ž¿‹MƒÁ‰Mì·Uì‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uì‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MðTð‹E‰¼ë?‹MƒÁ·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eð‹M‰¼hh‹URèƒÄ ékÇEè¸+Eè‹M9¼ŽÂ‹UƒÂ‰Uä·Eä‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E·ˆ¸áÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E·ˆ¸Áù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J·Eä‹Mº+‘¼‹ÊÓø‹Mf‰¸‹U‹‚¼‹MèTð‹E‰¼ë?‹MƒÁ·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eè‹M‰¼‹UøƒÂR‹E‹ˆ( ƒÁQ‹U‹‚ ƒÀP‹MQèƒÄ‹Uˆ R‹E”P‹MQèƒÄ ‹URèƒÄƒ}t ‹EPèƒÄ‹å]Ã-IJ+`+l7Û" ! *F{=šF¦¸RU‹ìƒì$‹E ‹‰Mô‹U ‹B‹‰Mä‹U ‹B‹H ‰MüÇEðÿÿÿÿ‹UÇ‚P‹EÇ€T=ÇEøë ‹MøƒÁ‰Mø‹Uø;Uü}]‹Eø‹Mô·…Òt@‹Eø‰Eð‹M‹‘PƒÂ‹E‰P‹M‹‘P‹E‹Mð‰Œ\ ‹UUøÆ‚Xë 3À‹Mø‹Uôf‰DŠë’‹Eƒ¸Pªƒ}ð}‹MðƒÁ‰Mð‹Uð‰UàëÇEà‹E‹ˆPƒÁ‹U‰ŠP‹E‹ˆP‹U‹Eà‰„Š\ ‹Mà‰M캋Eì‹Môf‰‹UUìÆ‚X‹E‹ˆ¨ƒé‹U‰Š¨ƒ}ät‹Eì‹Mä·T‹E‹ˆ¬+Ê‹U‰Š¬éFÿÿÿ‹E ‹Mð‰H‹U‹‚P™+ÂÑø‰Eøë ‹Eøƒè‰Eøƒ}ø|‹MøQ‹UôR‹EPèƒÄ ëÛ‹Mü‰Mì‹U‹‚` ‰Eø‹M‹‘P‹E‹M‹”‘\ ‰` ‹E‹ˆPƒé‹U‰ŠPj‹EôP‹MQèƒÄ ‹U‹‚` ‰Eè‹M‹‘Tƒê‹E‰T‹M‹‘T‹E‹Mø‰Œ\ ‹U‹‚Tƒè‹M‰T‹U‹‚T‹M‹U艔\ ‹Eø‹Mô·‹Eè‹Mô·ЋMì‹Eôf‰ˆ‹MMø¶‘X‹EE趈X;Ñ|‹UUø¶‚X‰EÜë‹MMè¶‘X‰UÜ‹E܃À‹MMìˆX‹Uè‹Eôf‹Mìf‰L‹Uø‹Eôf‹Mìf‰L‹U‹E쉂` ‹MìƒÁ‰Mìj‹UôR‹EPèƒÄ ‹Mƒ¹Pˆþÿÿ‹U‹‚Tƒè‹M‰T‹U‹‚T‹M‹U‹’` ‰”\ ‹E P‹MQèƒÄ‹UÂ< R‹EðP‹MôQèƒÄ ‹å]ï...p1Š4U‹ìƒìV‹E‹M‹”\ ‰Uü‹EÑà‰Eø‹M‹Uø;‘PC‹E‹Mø;ˆP•‹Uø‹E‹Œ` ‹U ·Š‹Mø‹U‹ŒŠ\ ‹U · Š;Á|`‹Uø‹E‹Œ` ‹U ·Š‹Mø‹U‹ŒŠ\ ‹U · Š;Áu=‹Uø‹E‹Œ` ‹U¶„ X‹Mø‹U‹ŒŠ\ ‹U¶Œ X;Á ‹UøƒÂ‰Uø‹Eü‹M ·‹Eø‹M‹„\ ‹M ·;Ð|K‹Mü‹U ·Š‹Mø‹U‹ŒŠ\ ‹U · Š;Áu+‹UUü¶‚X‹Mø‹U‹ŒŠ\ ‹U¶Œ X;Áë-‹U‹E‹Mø‹u‹ŒŽ\ ‰Œ\ ‹Uø‰U‹EøÑà‰Eøé«þÿÿ‹M‹U‹Eü‰„Š\ ^‹å]ÃU‹ìƒì4‹E ‹‰MØ‹U ‹B‰EÔ‹M ‹Q‹‰EÌ‹M ‹Q‹B‰Eô‹M ‹Q‹B‰Eì‹M ‹Q‹B‰EäÇEðÇEàë ‹MàƒÁ‰Màƒ}à3Ò‹Eà‹Mf‰”A< ëß‹U‹‚T‹M‹”\ 3À‹MØf‰D‘‹U‹‚TƒÀ‰Eüë ‹MüƒÁ‰Mü}ü=ö‹Uü‹E‹Œ\ ‰Mø‹Uø‹EØ·L‹UØ·DŠƒÀ‰Eà‹Mà;Mä~‹Uä‰Uà‹EðƒÀ‰Eð‹Mø‹UØf‹Eàf‰DŠ‹Mø;MÔ~ë‘‹Uà‹Ef‹ŒP< fƒÁ‹Uà‹Ef‰ŒP< ÇEÜ‹Mø;Mì|‹Uø+Uì‹Eô‹ ‰MÜ‹Uø‹EØf‹ f‰Mè·Uè‹EàEܯЋM‘¨‹E‰¨ƒ}Ìt'·Mè‹Uø‹EÌ·TUܯʋEˆ¬‹U‰Š¬éôþÿÿƒ}ðuéN‹Eäƒè‰Eà‹Mà‹U·„J< …Àu ‹Màƒé‰Màëã‹Uà‹Ef‹ŒP< fƒé‹Uà‹Ef‰ŒP< ‹Mà‹U·„J> ƒÀ‹Mà‹Uf‰„J> ‹Eä‹Mf‹”A< fƒê‹Eä‹Mf‰”A< ‹Uðƒê‰Uðƒ}ðhÿÿÿ‹Eä‰Eàë ‹Màƒé‰Màƒ}à„›‹Uà‹E·ŒP< ‰Møƒ}øt‹Uüƒê‰Uü‹Eü‹M‹”\ ‰UЋEÐ;EÔ~ë׋MЋUØ·DŠ;Eàt>‹MЋUØ·DŠ‹Mà+È‹UЋEØ·¯Ê‹Eˆ¨‹U‰Š¨‹EЋMØf‹Uàf‰T‹Eøƒè‰Eøé{ÿÿÿéRÿÿÿ‹å]ÃU‹ìƒì43Àf‰EøÇEôë ‹MôƒÁ‰Môƒ}ô%·Uø‹Eô‹M·DAþÐÑâf‰Uø‹Môf‹Uøf‰TMÔëÌÇEüë ‹EüƒÀ‰Eü‹Mü;M Q‹Uü‹E·L‰MЃ}ÐuëÙ‹UзDUÔ‰EÌ‹MÐf‹TMÔfƒÂ‹EÐf‰TEÔ‹MÐQ‹UÌRèƒÄ‹Mü‹Uf‰Šëž‹å]áLU‹ìQ‹E‹ˆ Q‹U”R‹EPèƒÄ ‹M‹‘( R‹Eˆ P‹MQèƒÄ ‹UÂ0 R‹EPèƒÄÇEüë ‹Müƒé‰Müƒ}ü|‹Uü¶‚‹M·”~ …ÒtëëÔ‹EüƒÀkÀ‹M‹‘¨D‹M‰¨‹Eü‹å]Ã:<:R+w U‹ìƒìÇEìÿÿÿÿ‹E ·H‰MðÇEüÇEäÇEèƒ}ðuÇEäŠÇEèºÿÿ‹E‹M f‰TÇEøë ‹UøƒÂ‰Uø‹Eø;E.‹Mð‰Mô‹Uø‹E ·L‰Mð‹UüƒÂ‰Uü‹Eü;Eä}‹Mô;Mðuë¼é¬‹Uü;Uè}$‹Eô‹M·”| Uü‹Eô‹Mf‰”| 逃}ôtB‹Uô;Uìt ‹Eô‹Mf‹”| fƒÂ‹Eô‹Mf‰”| ‹Uf‹‚¼ fƒÀ‹Mf‰¼ ë8ƒ}ü ‹Uf‹‚À fƒÀ‹Mf‰À ë‹Uf‹‚Ä fƒÀ‹Mf‰Ä ÇEü‹Uô‰Uìƒ}ðuÇEäŠÇEèë&‹Eô;EðuÇEäÇEèëÇEäÇEèé½þÿÿ‹å]ÃU‹ìƒì$ÇEø¸+Eø‹M9¼ŽÅ‹U ê‰Uô·Eô‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E·ˆ¸áÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E·ˆ¸Áù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J·Eô‹Mº+‘¼‹ÊÓø‹Mf‰¸‹U‹‚¼‹MøTð‹E‰¼ëB‹M é·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eø‹M‰¼ÇEðº+Uð‹E9¼Ž¿‹Mƒé‰Mì·Uì‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uì‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MðTð‹E‰¼ë?‹Mƒé·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eð‹M‰¼ÇEèº+Uè‹E9¼Ž¿‹Mƒé‰Mä·Uä‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·Uä‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MèTð‹E‰¼ë?‹Mƒé·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eè‹M‰¼ÇEüë ‹UüƒÂ‰Uü‹Eü;E<ÇEà¹+Mà‹U9мŽÎ‹Eü¶ˆ‹U·„Š~ ‰EÜ·UÜ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÜ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MàTð‹E‰¼ëK‹Mü¶‘‹E·”~ ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼Eà‹M‰¼é¯þÿÿ‹U ƒêR‹E”P‹MQèƒÄ ‹UƒêR‹Eˆ P‹MQèƒÄ ‹å]Ã¥ s Ò@î@U‹ìƒì\ÇEìÿÿÿÿ‹E ·H‰MðÇEüÇEäÇEèƒ}ðuÇEäŠÇEèÇEøë ‹UøƒÂ‰Uø‹Eø;E ‹Mð‰Mô‹Uø‹E ·L‰Mð‹UüƒÂ‰Uü‹Eü;Eä}‹Mô;Mðuë¼é‚ ‹Uü;UèG‹Eô‹M·”~ ‰Uà¸+Eà‹M9¼ŽÇ‹Uô‹E·Œ| ‰MÜ·UÜ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÜ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MàTð‹E‰¼ëD‹Mô‹U·„Š| ‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼Mà‹U‰Š¼‹Eüƒè‰Eü…¾þÿÿé/ƒ}ô„‹Mô;Mì„<‹Uô‹E·Œ~ ‰Mغ+UØ‹E9¼ŽÇ‹Mô‹U·„Š| ‰EÔ·UÔ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÔ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MØTð‹E‰¼ëD‹Mô‹U·„Š| ‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼MØ‹U‰Š¼‹Eüƒè‰Eü‹M·‘¾ ‰Uи+EЋM9¼ŽÃ‹U·‚¼ ‰EÌ·UÌ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÌ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÐTð‹E‰¼ë@‹M·‘¼ ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EЋM‰¼ÇEȺ+UÈ‹E9¼Ž¿‹Müƒé‰MÄ·UÄ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÄ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÈTð‹E‰¼ë?‹Müƒé·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EÈ‹M‰¼é•ƒ}ü H‹U·‚ ‰EÀ¹+MÀ‹U9мŽÃ‹E·ˆÀ ‰M¼·U¼‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U¼‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÀTð‹E‰¼ë@‹M·‘À ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EÀ‹M‰¼ÇE¸º+U¸‹E9¼Ž¿‹Müƒé‰M´·U´‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U´‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹M¸Tð‹E‰¼ë?‹Müƒé·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼E¸‹M‰¼éC‹U·‚Æ ‰E°¹+M°‹U9мŽÃ‹E·ˆÄ ‰M¬·U¬‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U¬‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹M°Tð‹E‰¼ë@‹M·‘Ä ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼E°‹M‰¼ÇE¨º+U¨‹E9¼Ž¿‹Müƒé ‰M¤·U¤‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U¤‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹M¨Tð‹E‰¼ë?‹Müƒé ·Ñ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼E¨‹M‰¼ÇEü‹Uô‰Uìƒ}ðuÇEäŠÇEèë&‹Eô;EðuÇEäÇEèëÇEäÇEèéçõÿÿ‹å]ÃU‹ìQ‹E‹ˆ ‹U‹‚¤f‹U f‰H‹E‹ˆ˜‹U‹‚ ŠUˆ‹E‹ˆ ƒÁ‹U‰Š ƒ} u%‹E‹Mf‹””fƒÂ‹E‹Mf‰””锋U‹‚°ƒÀ‹M‰°‹U ƒê‰U ‹E¶ˆ‹Uf‹„Š˜fƒÀ‹M¶‘‹Mf‰„‘˜} s‹U ¶‚‰Eüë‹M Áé¶‘‰Uü‹Eü‹Mf‹”ˆ fƒÂ‹Eü‹Mf‰”ˆ ‹U‹‚œƒè‹M3Ò9 ”‹‹å]Ú³ÑãU‹ìƒìHÇEô‹Eƒ¸ „Ž‹M‹‘¤‹Eô· B‰Mì‹U‹‚˜‹Mô¶‰Uð‹EôƒÀ‰Eôƒ}ì…0‹Mð‹U ·DЉEè¹+Mè‹U9мŽÆ‹Eð‹M ·‰Uä·Eä‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E·ˆ¸áÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E·ˆ¸Áù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J·Eä‹Mº+‘¼‹ÊÓø‹Mf‰¸‹U‹‚¼‹MèTð‹E‰¼ë@‹Mð‹U ·Š‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼Mè‹U‰Š¼é‹E𶈉Mø‹Uø‹E ·Œ‰Màº+Uà‹E9¼ŽÇ‹Mø‹U ·„ЉEÜ·UÜ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÜ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MàTð‹E‰¼ëD‹Mø‹U ·„Š‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼Mà‹U‰Š¼‹Eø‹ …‰Müƒ}ü„#‹Uø‹Eð+•‰Eð‹Mü‰Mغ+UØ‹E9¼޼‹Mð‰MÔ·UÔ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÔ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MØTð‹E‰¼ë:·Uð‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EØ‹M‰¼‹Uìƒê‰Uì}ìs‹E춈‰M¸ë‹UìÁê¶‚‰E¸‹M¸‰Mø‹Uø‹E·L‰Mк+UЋE9¼ŽÃ‹Mø‹U·ЉEÌ·UÌ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÌ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÐTð‹E‰¼ë@‹Mø‹U·Š‹M‹‰¼Óà‹U·Š¸ È‹Uf‰Š¸‹E‹ˆ¼MЋU‰Š¼‹Eø‹ …‰Müƒ}ü„#‹Uø‹Eì+•‰Eì‹Mü‰MȺ+UÈ‹E9¼޼‹Mì‰MÄ·UÄ‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·UÄ‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÈTð‹E‰¼ë:·Uì‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EÈ‹M‰¼‹U‹Eô;‚ ‚rùÿÿ‹M ·‘‰UÀ¸+EÀ‹M9¼ŽÃ‹U ·‚‰E¼·U¼‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U·‚¸%ÿ‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U·‚¸Áø‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A·U¼‹E¹+ˆ¼Óú‹Mf‰‘¸‹U‹‚¼‹MÀTð‹E‰¼ë@‹M ·‘‹E‹ˆ¼Óâ‹M·¸ ‹Mf‰¸‹U‹‚¼EÀ‹M‰¼‹U ·‚‹M‰´‹å]ÃŒÌæ*e U‹ìƒìÇEøÀÿóÇEüë‹EüƒÀ‰Eü‹MøÑé‰Møƒ}ü ‹Uøƒât‹Eü‹M·””…Òt3ÀëkëÉ‹E·ˆ¸…Éu‹U·‚¼…Àu‹M·‘È…Òt¸ë8ÇEü ë ‹EüƒÀ‰Eü}ü}‹Mü‹U·„Š”…Àt¸ëëÓ3À‹å]ÃU‹ìQÇEü‹Eƒà Eü‰Eü‹MÑé‰M‹UüÑâ‰Uü‹E ƒè‰E ƒ} Õ‹EüÑè‹å]ÃU‹ì‹Eƒ¸¼ut‹M·‘¸âÿ‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P‹M·‘¸Áú‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P3É‹Uf‰Š¸‹EÇ€¼ë`‹Mƒ¹¼|T‹U‹B‹M‹Q‹MЉ¸ˆ ‹U‹BƒÀ‹M‰A‹Uf‹‚¸fÁè‹Mf‰¸‹U‹‚¼ƒè‹M‰¼]ÃU‹ì‹Eƒ¸¼~[‹M·‘¸âÿ‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P‹M·‘¸Áú‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰Pë3‹Mƒ¹¼~'‹U‹B‹M‹Q‹MЉ¸ˆ ‹U‹BƒÀ‹M‰A3Ò‹Ef‰¸‹MǼ]ÃU‹ì‹EPèƒÄ‹MÇ´ƒ}„¢·Uâÿ‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P·MÁù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E÷зÈáÿ‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E÷зÈÁù‹U‹B‹U‹Rˆ ‹E‹HƒÁ‹U‰J‹E‹Mƒé‰M…Àt.‹U‹B‹M‹Q‹M Š ˆ ‹U‹BƒÀ‹M‰A‹U ƒÂ‰U ëÂ]ÃR@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.rdata8 Û,éfˆ,t6PDÐRH^HlH yÀ .data<a‘ß„“¢(.text–=è ² .textVè+g¼ .textÌd^ÐÌ .text7$#3ÓØ .text µëãê .text à –q°ÿõ .text •¬ .text ‰šÍ¡ˆ .text ñmçá .text¸±;ÈÃ* .text´¯ãSV5 .text É°D .textù¤îŽO .textf ”(EM_ .text*p•©j .texté¦Böu .textºµ… .text?K’ºK— .textåÒÜž£ .text¸ ².”­ .text~6¬¸ Ä_extra_lbits_extra_dbits_extra_blbits_bl_order_static_ltree_static_dtree__dist_code__length_code_base_length_base_dist_static_l_desc_static_d_desc_static_bl_desc__tr_init_tr_static_init_init_block__tr_stored_block__tr_align__tr_flush_block_build_tree_pqdownheap_gen_bitlen_gen_codes_build_bl_tree_scan_tree_send_all_trees_send_tree__tr_tally_compress_block_detect_data_type_bi_reverse_bi_flush_bi_windup_copy_block /215 1315202897 100666 4378 ` LQgdNp H.drectve]\ .debug$S°¹@B.textDi P`.text­ P`.textY, P`.text… P`.textTf P`.textn¬ P`.rdataB@0@.rdataE@0@.rdataI@0@.text$Lp P`.text$zž P`.text¨Â P`.texttÌ@ P`.textJd P`.textnˆ P`.textT’æ P`.textn, š  P`.text" ä  P`.textxî f  P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\ioapi.obj:<RRMicrosoft (R) Optimizing CompilerU‹ì‹Eƒ8t‹MQ‹U R‹E‹HQ‹U‹ÿÐƒÄ ëë‹MQ‹U R‹E‹HQ‹U‹B ÿÐƒÄ ]ÃU‹ìƒì ‹Eƒxt&‹MQ‹UR‹EP‹M Q‹U‹BP‹M‹QÿÒƒÄëHëF‹E‰Eü‹Mü3Ò‰Mô‰Uø‹Eô;Eu‹Mø;MtƒÈÿë ë‹UR‹EüP‹M Q‹U‹BP‹M‹Q(ÿ҃ċå]ÃU‹ìQ‹Eƒxt‹M Q‹U‹BP‹M‹Q ÿÒƒÄë0ë.‹E P‹M‹QR‹E‹H$ÿуĉEüƒ}üÿu ƒÈÿƒÊÿëë‹Eü3Ò‹å]ÃU‹ì‹EÇ‹M‹U ‹‰A ‹M‹U ‹B‰A‹M‹U ‹B‰A‹M‹U ‹B‰A‹MÇA ‹UÇB‹E‹M ‹Q‰P‹E‹M ‹Q‰P‹E‹M ‹Q‰P‹E‹M ‹Q‰P(‹E‹M ‹Q ‰P$]ÃU‹ì‹EÇ‹MÇA‹UÇB‹EÇ@ ‹MÇA‹UÇB‹EÇ@‹MÇA]Ã$(&,00:4D8U‹ìƒìÇEüÇEø‹Eƒàƒøu ÇEøë ‹Mƒát ÇEøë‹UƒâtÇEøƒ} tƒ}øt‹EøP‹M QèƒÄ‰Eü‹Eü‹å]Ã"!3D]wbr+brbU‹ìQ‹E P‹MQj‹URèƒÄ‰Eü‹Eü‹å]Ã%U‹ìQ‹E P‹MQj‹URèƒÄ‰Eü‹Eü‹å]Ã)U‹ìQ‹E PèƒÄ‰Eü‹Eü‹å]à -U‹ìƒì ÇEü‹E‰Eôƒ}ôt ƒ}ôtƒ}ôt ëÇEüëÇEüëÇEüëƒÈÿë)ÇEø‹MüQ‹UR‹E PèƒÄ …ÀtÇEøÿÿÿÿ‹Eø‹å]Ã[1U‹ìQ‹E PèƒÄ‰Eü‹Eü‹å]à 5U‹ìQ‹E PèƒÄ‰Eü‹Eü‹å]à 9U‹ì‹EÇ‹MÇA‹UÇB‹EÇ@ ‹MÇA‹UÇB‹EÇ@‹MÇA]Ã?$(&B0F:4D8U‹ìƒìÇEüÇEø‹Eƒàƒøu ÇEøë ‹Mƒát ÇEøë‹UƒâtÇEøƒ} tƒ}øt‹EøP‹M QèƒÄ‰Eü‹Eü‹å]Ã"!3D]U‹ìƒì‹E PèƒÄ‰Eø‰Uü‹Eø‹Uü‹å]à CU‹ìƒì ÇEü‹E‰Eôƒ}ôt ƒ}ôtƒ}ôt ëÇEüëÇEüëÇEüëƒÈÿë-ÇEø‹MüQ‹UR‹EP‹M QèƒÄ…ÀtÇEøÿÿÿÿ‹Eø‹å]Ã_G@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.textDƽ,c .textœBã .textY1§ä¿  .textSVÂ. .textT|tÉæ[ .textn»“VOp _fopen .rdata ðwu .rdata 3È墙 .rdata µ¾¶ .text $Rz›ÌË _fread .text $Rz›ÌÜ _fwrite .text½ãdÛî _ftell .texttý~Œuÿ _fseek .text½ãdÛ _fclose .text½ãdÛ" _ferror .textT|tÉæ4 .textn»“VOK .text"dsºn^ q .textxcûÔ˜|  š_call_zopen64_call_zseek64_call_ztell64_fill_zlib_filefunc64_32_def_from_filefunc32_fill_fopen_filefunc_fopen_file_func??_C@_02GMLFBBN@wb?$AA@??_C@_03HMFOOINA@r?$CLb?$AA@??_C@_02JDPG@rb?$AA@_fread_file_func_fwrite_file_func_ftell_file_func_fseek_file_func_fclose_file_func_ferror_file_func_fill_fopen64_filefunc_fopen64_file_func_ftell64_file_func__ftelli64_fseek64_file_func__fseeki64/251 1315202897 100666 2885 ` LQgdN‰ .drectve]´ .debug$S´@B.rdata0Å@@@.textlõa  P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¦hc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\inftrees.obj:<RRMicrosoft (R) Optimizing Compiler inflate 1.2.5 Copyright 1995-2010 Mark Adler  #+3;CScsƒ£ÃãIà !1AaÁ  0@`@@U‹ììÇE°ë ‹E°ƒÀ‰E°ƒ}°w 3É‹U°f‰LUàëåÇE€ë ‹E€ƒÀ‰E€‹M€;Ms$‹U€‹E · Pf‹TMàfƒÂ‹E€‹M ·Af‰TEàëË‹M‹‰U¼Ç…tÿÿÿë‹…tÿÿÿƒè‰…tÿÿÿƒ½tÿÿÿr‹tÿÿÿ·TMà…ÒtëëÕ‹E¼;…tÿÿÿv ‹tÿÿÿ‰M¼ƒ½tÿÿÿuLÆEÜ@ÆEÝ3Òf‰UÞ‹E‹‹U܉‹E‹ƒÁ‹U‰ ‹E‹‹U܉‹E‹ƒÁ‹U‰ ‹EÇ3ÀéUÇEÌë ‹M̃Á‰MÌ‹UÌ;•tÿÿÿs‹EÌ·LEà…ÉtëëÜ‹U¼;UÌs‹ẺE¼ÇE´ÇE°ë ‹M°ƒÁ‰M°ƒ}°w$‹U´Ñâ‰U´‹E°·LEà‹U´+щU´yƒÈÿéÙë̓}´~ƒ}t ƒ½tÿÿÿtƒÈÿéº3Àf‰EŠÇE°ë ‹M°ƒÁ‰M°ƒ}°s‹U°·DUˆ‹M°·TMà‹M°f‰DMŠëÕÇE€ë ‹U€ƒÂ‰U€‹E€;EsL‹M€‹U ·J…Àt<‹M€‹U ·J·LEˆ‹Uf‹E€f‰J‹M€‹U ·Jf‹LEˆfƒÁ‹U€‹E ·Pf‰LUˆë£‹E‰…pÿÿÿƒ½pÿÿÿt ƒ½pÿÿÿtëC‹M‰MØ‹U؉UÔÇE¬ëCÇEÔ‹EÔ-‰EÔÇEØ‹MØé‰MØÇE¬ëÇEÔÇEØÇE¬ÿÿÿÿÇEÐÇE€‹ỦU°‹E‹‰M¸‹U¼‰UÀÇEÄÇ…|ÿÿÿÿÿÿÿ¸‹M¼Óà‰…xÿÿÿ‹xÿÿÿƒé‰Mȃ}u ½xÿÿÿTsƒ}u½xÿÿÿPr ¸é(‹U°+UĈUÝ‹E€‹M·A;U¬}ÆEÜ‹E€‹Mf‹Af‰UÞëC‹E€‹M·A;U¬~*‹E€‹M·A‹EØŠ PˆMÜ‹U€‹E· P‹UÔf‹Jf‰EÞë ÆEÜ`3Éf‰MÞ‹M°+MĺÓâ‰U¨¸‹MÀÓà‰E„‹M„‰MÌ‹U„+U¨‰U„‹EЋMÄÓèE„‹M¸‹U܉ƒ}„uÝ‹M°ƒé¸Óà‰E¨‹MÐ#M¨t ‹U¨Ñê‰U¨ëîƒ}¨t‹E¨ƒè#EЉEЋMÐM¨‰MÐëÇEЋU€ƒÂ‰U€‹E°f‹LEàfƒé‹U°f‰LUà‹E°·LEà…Éu$‹U°;•tÿÿÿué/‹E€‹M·A‹E · P‰M°‹U°;U¼† ‹EÐ#EÈ;…|ÿÿÿ„øƒ}Äu‹M¼‰MÄ‹UÌ‹E¸ ‰M¸‹U°+UĉUÀ¸‹MÀÓà‰E´‹MÀMÄ;tÿÿÿs.‹UÀUÄ·DUà‹M´+ȉM´ƒ}´ë‹UÀƒÂ‰UÀ‹E´Ñà‰E´ëĺ‹MÀÓâ•xÿÿÿ‰•xÿÿÿƒ}u ½xÿÿÿTsƒ}u½xÿÿÿPr ¸é‹EÐ#Eȉ…|ÿÿÿ‹M‹‹…|ÿÿÿŠMÀˆ ‚‹U‹‹|ÿÿÿŠU¼ˆTˆ‹E‹M¸+Áù‹U‹‹•|ÿÿÿf‰LéýÿÿÆEÜ@‹E°+EĈEÝ3Éf‰MÞƒ}Є‹ƒ}Ät)‹UÐ#UÈ;•|ÿÿÿtÇEÄ‹E¼‰E°‹M‹‰U¸ŠE°ˆEÝ‹UЋMÄÓê‹E¸‹M܉ ‹M°ƒéºÓâ‰U¨‹EÐ#E¨t ‹M¨Ñé‰M¨ëîƒ}¨t‹U¨ƒê#UЉUЋEÐE¨‰EÐëÇEÐékÿÿÿ‹M‹‹…xÿÿÿ ‚‹U‰ ‹E‹M¼‰3À‹å]à • ± ¸ @comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.rdata0/ÕeÕ05pR°pð.textl#˜I œ_inflate_copyright?lbase@?1??inflate_table@@9@9?lext@?1??inflate_table@@9@9?dbase@?1??inflate_table@@9@9?dext@?1??inflate_table@@9@9_inflate_table /290 1315202897 100666 21267 ` L'QgdN P`.textˆÂ> P`.textOJ? P`.text™?[A P`.textMyA P`.textvÆA P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\inflate.obj:<RRMicrosoft (R) Optimizing Compiler`Psp0 À `  €@ àX ;x8 Ðh( °ˆH ðTã+t4 È d$ ¨„D è\ ˜S|< Øl, ¸ ŒL øR£#r2 Ä b" ¤‚B äZ ”Cz: Ôj* ´ ŠJ ôV@3v6 Ìf& ¬†F ì ^ œc~> Ün. ¼ŽN ü`Qƒq1  a! ¢A âY ’;y9 Òi) ² ‰I òU+u5 Ê e% ª…E ê] šS}= Úm- º M úSÃ#s3 Æ c# ¦ƒC æ[ –C{; Ök+ ¶ ‹K öW@3w7 Îg' ®‡G î _ žc? Þo/ ¾O þ`Psp0 Á ` ¡€@ áX ‘;x8 Ñh( ±ˆH ñTã+t4 É d$ ©„D é\ ™S|< Ùl, ¹ ŒL ùR£#r2 Å b" ¥‚B åZ •Cz: Õj* µ ŠJ õV@3v6 Íf& ­†F í ^ c~> Ýn. ½ŽN ý`Qƒq1 à a! £A ãY “;y9 Ói) ³ ‰I óU+u5 Ë e% «…E ë] ›S}= Ûm- » M ûSÃ#s3 Ç c# §ƒC ç[ —C{; ×k+ · ‹K ÷W@3w7 Ïg' ¯‡G ï _ Ÿc? ßo/ ¿O ÿA@!  @a`10  Á@     U‹ìQƒ}t ‹Eƒxu ¸þÿÿÿéà‹M‹Q‰Uü‹EüÇ@‹MÇA‹UÇB‹EÇ@‹MÇA0‹UüÇ‹EüÇ@‹MüÇA ‹UüÇB€‹EüÇ@ ‹MüÇA(‹UüÇB,‹EüÇ@0‹MüÇA8‹UüÇB<‹Eü0‹Mü‰Al‹Uü‹Eü‹Hl‰JP‹Uü‹Eü‹HP‰JL‹UüÇ‚À‹EüÇ€Äÿÿÿÿ3À‹å]ÂU‹ìƒìƒ}t ‹Eƒxu ¸þÿÿÿ馋M‹Q‰Uøƒ} }ÇEü‹E ÷؉E ë‹M ÁùƒÁ‰Müƒ} 0} ‹U ƒâ‰U ƒ} tƒ} |ƒ} ~¸þÿÿÿëR‹Eøƒx4t.‹Mø‹Q$;U t#‹Eø‹H4Q‹U‹B(P‹M‹Q$ÿ҃ċEøÇ@4‹Mø‹Uü‰Q‹Eø‹M ‰H$‹URè‹å]ÂÁ U‹ìƒìƒ}t‹E¾¾;Êuƒ}8t ¸úÿÿÿ鿃}u ¸þÿÿÿ鯋EÇ@‹Mƒy u‹UÇB ‹EÇ@(‹Mƒy$u ‹UÇB$hÌj‹E‹H(Q‹U‹B ÿÐƒÄ ‰Eøƒ}øu¸üÿÿÿëL‹M‹Uø‰Q‹EøÇ@4‹M Q‹URè‰Eüƒ}üt ‹EøP‹M‹Q(R‹E‹H$ÿуÄ‹UÇB‹Eü‹å]ÂVs¼1.2.5U‹ì‹EP‹M Qj‹URè] U‹ìQƒ}t ‹Eƒxu¸þÿÿÿë}‹M‹Q‰Uüƒ} }‹EüÇ@8‹MüÇA<3ÀëVƒ} ‹Uü‹B<E ƒø v¸þÿÿÿë;º‹M Óâƒê#U‰U‹Eü‹U‹H<Óâ‹EüP8‹Mü‰Q8‹Uü‹B<E ‹Mü‰A<3À‹å] U‹ìƒì\ƒ}t#‹Eƒxt‹Mƒy t‹Uƒ:u‹Eƒxt ¸þÿÿÿ鎋M‹Q‰UÀ‹EÀƒ8 u ‹MÀÇ ‹U‹B ‰Eü‹M‹Q‰Uà‹E‹‰MÜ‹U‹B‰Eð‹MÀ‹Q8‰UÔ‹EÀ‹H<‰Mä3ÒuÇ‹Eð‰Eì‹Mà‰MÄÇEØ‹UÀ‹‰E¼ƒ}¼‡k‹M¼ÿ$‹UÀƒzu‹EÀÇ éTƒ}äs=ƒ}ðuéH‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÀ‹Bƒàte}Ô‹u\jjjè‹MÀ‰AŠUÔˆUЋEÔÁèˆEÑjMÐQ‹UÀ‹BPè‹MÀ‰A3ÒuÕÇEÔÇEä3Àuî‹MÀÇé‹UÀÇB‹EÀƒx t ‹MÀ‹Q ÇB0ÿÿÿÿ‹EÀ‹Hƒát ‹EÔ%ÿÁà‹UÔÁêÂ3Ò¹÷ñ…Òt‹UÇB‹EÀÇé:‹MÔƒáƒùt‹UÇB‹EÀÇé‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuê‹MÔƒáƒÁ‰Mè‹UÀƒz$u ‹EÀ‹Mè‰H$ë#‹UÀ‹Eè;B$v‹MÇA‹UÀÇ龸‹MèÓà‹MÀ‰Ajjjè‹UÀ‰B‹E‹MÀ‹Q‰P0‹EÔ%÷ØÀƒàþƒÀ ‹MÀ‰ÇEÔÇEä3Òuîécƒ}äs=ƒ}ðuéW‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀ‹UÔ‰Q‹EÀ‹Háÿƒùt‹UÇB‹EÀÇéê‹MÀ‹Qâàt‹EÇ@‹MÀÇéÄ‹UÀƒz t‹EÔÁèƒà‹MÀ‹Q ‰‹EÀ‹Hát+ŠUÔˆUЋEÔÁèˆEÑjMÐQ‹UÀ‹BPè‹MÀ‰A3ÒuÕÇEÔÇEä3Àuî‹MÀǃ}ä s=ƒ}ðuéJ‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀƒy t ‹UÀ‹B ‹MÔ‰H‹UÀ‹B%t=ŠMÔˆMЋUÔÁêˆUÑ‹EÔÁèˆEÒ‹MÔÁéˆMÓjUÐR‹EÀ‹HQè‹UÀ‰B3ÀuÃÇEÔÇEä3Éuî‹UÀǃ}äs=ƒ}ðu鉋Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀƒy t!‹UÔâÿ‹EÀ‹H ‰Q‹UÔÁê‹EÀ‹H ‰Q ‹UÀ‹B%t+ŠMÔˆMЋUÔÁêˆUÑjEÐP‹MÀ‹QRè‹MÀ‰A3ÒuÕÇEÔÇEä3Àuî‹MÀÇ‹UÀ‹B%„±ƒ}äs=ƒ}ðué´‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÀ‹EÔ‰B@‹MÀƒy t ‹UÀ‹B ‹MÔ‰H‹UÀ‹B%t+ŠMÔˆMЋUÔÁêˆUÑjEÐP‹MÀ‹QRè‹MÀ‰A3ÒuÕÇEÔÇEä3Àuîë‹MÀƒy t ‹UÀ‹B Ç@‹MÀÇ‹UÀ‹B%„ä‹MÀ‹Q@‰UÌ‹EÌ;Eðv‹Mð‰M̃}Ì„µ‹UÀƒz tc‹EÀ‹H ƒytW‹UÀ‹B ‹MÀ‹P+Q@‰Uè‹EèEÌ‹MÀ‹Q ;Bv‹EÀ‹H ‹Q+Uè‰U¸ë‹ẺE¸‹M¸Q‹UÜR‹EÀ‹H ‹QUèRèƒÄ ‹EÀ‹Hát‹UÌR‹EÜP‹MÀ‹QRè‹MÀ‰A‹Uð+ỦUð‹EÜẺEÜ‹MÀ‹Q@+UÌ‹EÀ‰P@‹MÀƒy@té‹UÀÇB@‹EÀÇ‹MÀ‹Qâ„ƃ}ðuéÐÇEÌ‹EÜE̶‰Mè‹Ũ‰UÌ‹EÀƒx tA‹MÀ‹Q ƒzt5‹EÀ‹H ‹UÀ‹B@;A s$‹MÀ‹Q ‹B‹MÀ‹Q@ŠMèˆ ‹UÀ‹B@ƒÀ‹MÀ‰A@ƒ}èt‹UÌ;Uðr“‹EÀ‹Hát‹UÌR‹EÜP‹MÀ‹QRè‹MÀ‰A‹Uð+ỦUð‹EÜẺE܃}ètéë‹MÀƒy t ‹UÀ‹B Ç@‹MÀÇA@‹UÀÇ‹EÀ‹Há„Ń}ðuéÏÇEÌ‹UÜU̶‰Eè‹M̃Á‰MÌ‹UÀƒz tA‹EÀ‹H ƒy$t5‹UÀ‹B ‹MÀ‹Q@;P(s$‹EÀ‹H ‹Q$‹EÀ‹H@ŠEèˆ ‹MÀ‹Q@ƒÂ‹EÀ‰P@ƒ}èt‹MÌ;Mðr“‹UÀ‹B%t‹MÌQ‹UÜR‹EÀ‹HQè‹UÀ‰B‹Eð+ẺEð‹MÜM̉M܃}ètéë‹UÀƒz t ‹EÀ‹H ÇA$‹UÀÇ‹EÀ‹Há„‚ƒ}äs=ƒ}ðuéÓ‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀ‹Qâÿÿ9UÔt‹EÇ@‹MÀÇéoÇEÔÇEä3Òuî‹EÀƒx t"‹MÀ‹QÁú ƒâ‹EÀ‹H ‰Q,‹UÀ‹B Ç@0jjjè‹MÀ‰A‹U‹EÀ‹H‰J0‹UÀÇ éƒ}ä s=ƒ}ðuéû‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÔÁéáÿ‹UÔÁêâÿÊ‹EÔ%ÿÁàÈ‹UÔâÿÁâÊ‹EÀ‰H‹M‹UÀ‹B‰A0ÇEÔÇEä3Éuî‹UÀÇ ‹EÀƒx uC‹M‹Uü‰Q ‹E‹Mà‰H‹U‹E܉‹M‹Uð‰Q‹EÀ‹MÔ‰H8‹UÀ‹Eä‰B<3ÉuǸé³jjjè‹UÀ‰B‹E‹MÀ‹Q‰P0‹EÀÇ ƒ} tƒ} uéà‹MÀƒyt.‹Mäƒá‹UÔÓê‰UÔ‹Eäƒà‹Mä+ȉMä3Òuà‹EÀÇ餃}äs=ƒ}ðu阋Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÔƒâ‹EÀ‰P‹MÔÑé‰MÔ‹Uäƒê‰Uä3Àuë‹MÔƒá‰M´ƒ}´wk‹U´ÿ$•‹EÀÇ ëV‹MÀQèƒÄ‹UÀǃ} u‹EÔÁè‰EÔ‹Mäƒé‰Mä3Òuêéçë‹EÀÇë‹MÇA‹UÀÇ‹EÔÁè‰EÔ‹Mäƒé‰Mä3Òuêé§‹Mäƒá‹EÔÓè‰EÔ‹Mäƒá‹Uä+щUä3Àuàƒ}ä s=ƒ}ðué{‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÔâÿÿ‹EÔÁè5ÿÿ;Ðt‹MÇA‹UÀÇé‹EÔ%ÿÿ‹MÀ‰A@ÇEÔÇEä3Òuî‹EÀǃ} uéá‹MÀÇ‹UÀ‹B@‰Ẽ}Ìts‹MÌ;Mðv‹Uð‰UÌ‹EÌ;Eàv‹Mà‰M̃}Ìu颋UÌR‹EÜP‹MüQèƒÄ ‹Uð+ỦUð‹EÜẺEÜ‹Mà+M̉Mà‹UüỦUü‹EÀ‹H@+MÌ‹UÀ‰J@éQ‹EÀÇ éCƒ}äs=ƒ}ðué7‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÔƒâ‹EÀ‰P`‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuê‹MÔƒáƒÁ‹UÀ‰Jd‹EÔÁè‰EÔ‹Mäƒé‰Mä3Òuê‹EÔƒàƒÀ‹MÀ‰A\‹UÔÁê‰UÔ‹Eäƒè‰Eä3Éuê‹UÀz`w ‹EÀƒxdv‹MÇA‹UÀÇé]‹EÀÇ@h‹MÀÇ‹UÀ‹EÀ‹Jh;H\ƒƒ}äs=ƒ}ðué,‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÔƒá‹UÀ‹Bh·E‹EÀf‰LPp‹MÀ‹QhƒÂ‹EÀ‰Ph‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuêéaÿÿÿ‹MÀƒyhs)‹UÀ‹Bh· E3Ò‹EÀf‰THp‹MÀ‹QhƒÂ‹EÀ‰Phë΋MÀÁ0‹UÀ‰Jl‹EÀ‹MÀ‹Ql‰PL‹EÀÇ@T‹MÀÁðQ‹UÀƒÂTR‹EÀƒÀlPj‹MÀƒÁpQjèƒÄ‰E؃}Øt‹UÇB‹EÀÇé‹MÀÇAh‹UÀÇ‹EÀ‹H`‹UÀJd‹EÀ9Hhƒk‹MÀº‹ITÓâƒê#UÔ‹EÀ‹HL‹‘‰Uô¶Eõ;Eäwë=ƒ}ðué­ ‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë™·MöƒùŒ¶Uõ9Uäs=ƒ}ðuéZ ‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅëº3Àu¶¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3Òuä‹EÀ‹Hh‹UÀf‹Eöf‰DJp‹MÀ‹QhƒÂ‹EÀ‰Phéf·Möƒù…¶UõƒÂ9Uäs=ƒ}ðué¾ ‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë·3Àu³¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3Òuä‹EÀƒxhu‹MÇA‹UÀÇéÔ‹EÀ‹Hh‹UÀ·DJn‰Eè‹MÔƒáƒÁ‰MÌ‹UÔÁê‰UÔ‹Eäƒè‰Eä3Éuêé6·Uöƒú…—¶EõƒÀ9Eäs=ƒ}ðuéï ‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë·3Éu³¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3ÒuäÇEè‹EÔƒàƒÀ‰EÌ‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuêé’¶MõƒÁ9Mäs=ƒ}ðuéX ‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë·3Àu³¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3ÒuäÇEè‹EÔƒàƒÀ ‰EÌ‹MÔÁé‰MÔ‹Uäƒê‰Uä3Àuê‹MÀ‹QhUÌ‹EÀ‹H`‹EÀHd;Ñv‹MÇA‹UÀÇë8‹EÌ‹M̃é‰MÌ…Àt#‹UÀ‹Bh‹MÀf‹Uèf‰TAp‹EÀ‹HhƒÁ‹UÀ‰JhëÍé}üÿÿ‹EÀƒ8uée ‹MÀ·‘p…Òu‹EÇ@‹MÀÇé? ‹UÀÂ0‹EÀ‰Pl‹MÀ‹UÀ‹Bl‰AL‹MÀÇAT ‹UÀÂðR‹EÀƒÀTP‹MÀƒÁlQ‹UÀ‹B`P‹MÀƒÁpQjèƒÄ‰E؃}Øt‹UÇB‹EÀÇéÉ ‹MÀ‹UÀ‹Bl‰AP‹MÀÇAX‹UÀÂðR‹EÀƒÀXP‹MÀƒÁlQ‹UÀ‹BdP‹MÀ‹Q`‹EÀLPpQjèƒÄ‰E؃}Øt‹UÇB‹EÀÇé[ ‹MÀǃ} uéL ‹UÀǃ}ð‚©}à‚œ‹E‹Mü‰H ‹U‹Eà‰B‹M‹U܉‹E‹Mð‰H‹UÀ‹EÔ‰B8‹MÀ‹Uä‰Q<3ÀuÇ‹MÄQ‹URèƒÄ‹E‹H ‰Mü‹U‹B‰Eà‹M‹‰UÜ‹E‹H‰Mð‹UÀ‹B8‰EÔ‹MÀ‹Q<‰Uä3ÀuÇ‹MÀƒ9 u ‹UÀÇ‚Äÿÿÿÿé‹‹EÀǀċMÀº‹ITÓâƒê#UÔ‹EÀ‹HL‹‘‰Uô¶Eõ;Eäwë=ƒ}ðuéN‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë™¶Mô…ɄŶUôâð…µ‹Eô‰Eø·Uú¶Mù¶EøȸÓàƒè#EÔ¶MùÓèЋMÀ‹AL‹ ‰Mô¶Uù¶EõÐ;Uäwë=ƒ}ðu鯋Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅ냶Mù‹UÔÓê‰UÔ¶Eù‹Mä+ȉMä3Òuä¶Eù‹MÀÄ‹UÀ‰‚ĶMõ‹EÔÓè‰EÔ¶Mõ‹Uä+щUä3Àuä¶Mõ‹UÀŠÄ‹EÀ‰ˆÄ·Mö‹UÀ‰J@¶Eô…Àu‹MÀÇéô¶Uôƒâ t‹EÀÇ€Äÿÿÿÿ‹MÀÇ éжUôƒâ@t‹EÇ@‹MÀÇ鯶Uôƒâ‹EÀ‰PH‹MÀÇ‹UÀƒzH„¡‹EÀ‹Mä;HHs=ƒ}ðué{‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë¸3Àu´‹MÀº‹IHÓâƒê#UÔ‹EÀP@‹MÀ‰Q@‹UÀ‹EÔ‹JHÓè‰EÔ‹MÀ‹Uä+QH‰Uä3Àuâ‹MÀ‹‘Ä‹EÀPH‹MÀ‰‘Ä‹UÀ‹EÀ‹H@‰ŠÈ‹UÀÇ‹EÀº‹HXÓâƒê#UÔ‹EÀ‹HP‹‘‰Uô¶Eõ;Eäwë=ƒ}ðu飋Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë™¶Môáð…µ‹Uô‰Uø·Eú¶Mù¶UøʺÓâƒê#UÔ¶MùÓê‹MÀ‹QP‹‚‰Eô¶Mù¶UõÊ;Mäwë=ƒ}ðué‹Eðƒè‰Eð‹Mܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅ냶Mù‹EÔÓè‰EÔ¶Mù‹Uä+щUä3Àuä¶Mù‹UÀŠÄ‹EÀ‰ˆÄ¶Mõ‹UÔÓê‰UÔ¶Eõ‹Mä+ȉMä3Òuä¶Eõ‹MÀÄ‹UÀ‰‚ĶEôƒà@t‹MÇA‹UÀÇéT·Eö‹MÀ‰AD¶Uôƒâ‹EÀ‰PH‹MÀÇ‹UÀƒzH„¡‹EÀ‹Mä;HHs=ƒ}ðué‹Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë¸3Àu´‹MÀº‹IHÓâƒê#UÔ‹EÀPD‹MÀ‰QD‹UÀ‹EÔ‹JHÓè‰EÔ‹MÀ‹Uä+QH‰Uä3Àuâ‹MÀ‹‘Ä‹EÀPH‹MÀ‰‘Ä‹UÀǃ}àuéw‹EÄ+Eà‰EÌ‹MÀ‹QD;UÌ†Ž‹EÀ‹HD+M̉MÌ‹UÀ‹EÌ;B,v$‹MÀƒ¹Àt‹UÇB‹EÀÇé‹MÀ‹UÌ;Q0v ‹EÀ‹MÌ+H0‰MÌ‹UÀ‹B(+EÌ‹MÀA4‰EÈë‹UÀ‹B0+EÌ‹MÀA4‰EÈ‹UÀ‹EÌ;B@v ‹MÀ‹Q@‰UÌë‹EÀ‹Mü+HD‰MÈ‹UÀ‹B@‰EÌ‹MÌ;Màv‹Uà‰UÌ‹Eà+ẺEà‹MÀ‹Q@+UÌ‹EÀ‰P@‹Mü‹UÈŠˆ‹MüƒÁ‰Mü‹Uȃ‰UÈ‹Ẽè‰EÌuÙ‹MÀƒy@u ‹UÀÇéSƒ}àuéM‹Eü‹MÀŠQ@ˆ‹EüƒÀ‰Eü‹Màƒé‰Mà‹UÀÇé‹EÀƒx„Iƒ}ä s=ƒ}ðué‹Mðƒé‰Mð‹Uܶ‹MäÓàEÔ‰EÔ‹M܃Á‰MÜ‹UäƒÂ‰Uä3ÀuÅë½3Éu¹‹UÄ+Uà‰UÄ‹E‹HMÄ‹U‰J‹EÀ‹HMÄ‹UÀ‰Jƒ}ÄtQ‹EÀƒxt‹MÄQ‹Uü+UÄR‹EÀ‹HQè‰E°ë‹UÄR‹Eü+EÄP‹MÀ‹QRè‰E°‹EÀ‹M°‰H‹U‹E°‰B0‹Mà‰MÄ‹UÀƒzt‹EÔ‰E¬ë8‹MÔÁéáÿ‹UÔÁêâÿÊ‹EÔ%ÿÁàÈ‹UÔâÿÁâʉM¬‹EÀ‹M¬;Ht‹UÇB‹EÀÇéÙÇEÔÇEä3Éuî‹UÀÇ‹EÀƒx„‚‹MÀƒytyƒ}ä s=ƒ}ðu霋Uðƒê‰Uð‹Eܶ‹MäÓâUÔ‰UÔ‹E܃À‰EÜ‹MäƒÁ‰Mä3ÒuÅë½3Àu¹‹MÀ‹UÔ;Qt‹EÇ@‹MÀÇëAÇEÔÇEä3Òuî‹EÀÇÇEØë"ÇEØýÿÿÿë¸üÿÿÿ髸þÿÿÿé¡étâÿÿ‹M‹Uü‰Q ‹E‹Mà‰H‹U‹E܉‹M‹Uð‰Q‹EÀ‹MÔ‰H8‹UÀ‹Eä‰B<3ÉuÇ‹UÀƒz(u‹EÀƒ8}2‹M‹UÄ;Qt'‹EÄP‹MQèƒÄ…Àt‹UÀǸüÿÿÿé ‹E‹Mì+H‰Mì‹U‹EÄ+B‰EÄ‹M‹QUì‹E‰P‹M‹QUÄ‹E‰P‹MÀ‹QUÄ‹EÀ‰P‹MÀƒyt]ƒ}ÄtW‹UÀƒzt‹EÄP‹M‹Q +UÄR‹EÀ‹HQè‰E¨ë‹UÄR‹E‹H +MÄQ‹UÀ‹BPè‰E¨‹MÀ‹U¨‰Q‹E‹M¨‰H0‹UÀƒ:t‹EÀƒ8t ÇE¤ëÇE¤‹MÀ‹Q÷ÚÒƒâ@‹EÀ‹H<Ê‹UÀ3Àƒ: •Àƒè%€M¤Á‹M‰A,ƒ}ìuƒ}Ätƒ} u ƒ}ØuÇEØûÿÿÿ‹EØ‹å]ÂI·4[Ú~ý{Vxu*{Ps§h,õÍlòíí¥ hû  uÿ a „W \ X– l·RE Ž öN MÎImIÕF5NKC£N¹@A;e:À5õ0¦Âu;+Ö'‰‡9uЀÔtØpÜoànämèkìjðiôeødüc b Y U T S O J = <$ 7( 6, 20 14 -8 ,< (@ $D #H "L `P _T ^X ]incorrect length checkincorrect data checkinvalid distance too far backinvalid distance codeinvalid literal/length codeinvalid distances setinvalid literal/lengths setinvalid code -- missing end-of-blockinvalid bit length repeatinvalid code lengths settoo many length or distance symbolsinvalid stored block lengthsinvalid block typeheader crc mismatchunknown header flags setinvalid window sizeunknown compression methodincorrect header checkU‹ì‹EÇ@L‹MÇAT ‹UÇBP‹EÇ@X]à  U‹ìƒì ‹E‹H‰Mô‹Uôƒz4u;j‹Eôº‹H$ÓâR‹E‹H(Q‹U‹B ÿÐƒÄ ‹Mô‰A4‹Uôƒz4u ¸éJ‹Eôƒx(u'‹Môº‹I$Óâ‹Eô‰P(‹MôÇA0‹UôÇB,‹E‹M +H‰Mø‹Uô‹Eø;B(r>‹Mô‹Q(R‹E‹Mô‹P +Q(R‹Eô‹H4QèƒÄ ‹UôÇB0‹Eô‹Mô‹Q(‰P,éËEô‹Mô‹P(+Q0‰Uü‹Eü;Eøv‹Mø‰Mü‹UüR‹E‹H +MøQ‹Uô‹B4‹MôA0PèƒÄ ‹Uø+Uü‰Uøt4‹EøP‹M‹Q +UøR‹Eô‹H4QèƒÄ ‹Uô‹Eø‰B0‹Mô‹Uô‹B(‰A,ëD‹Mô‹Q0Uü‹Eô‰P0‹Mô‹Uô‹A0;B(u ‹MôÇA0‹Uô‹Eô‹J,;H(s‹Uô‹B,Eü‹Mô‰A,3À‹å]öll9lU‹ìQƒ}t‹Eƒxt ‹Mƒy$u¸þÿÿÿëP‹U‹B‰Eü‹Müƒy4t‹Uü‹B4P‹M‹Q(R‹E‹H$ÿуÄ‹U‹BP‹M‹Q(R‹E‹H$ÿуÄ‹UÇB3À‹å]ÂU‹ìƒìƒ}t ‹Eƒxu ¸þÿÿÿéû‹M‹Q‰Uø‹Eøƒxt‹Møƒ9 t ¸þÿÿÿé׋Uøƒ: u7jjjè‰Eü‹EP‹M Q‹UüRè‰Eü‹Eø‹Mü;Ht ¸ýÿÿÿ阋U‹BP‹MQèƒÄ…Àt‹UøÇ¸üÿÿÿëq‹Eø‹M;H(v1‹Uø‹B(P‹M M‹Uø+J(Q‹Eø‹H4QèƒÄ ‹Uø‹Eø‹H(‰J,ë)‹UR‹E P‹Mø‹Q4‹EøP(+URèƒÄ ‹Mø‹U‰Q,‹EøÇ@ 3À‹å] RufuއÐlþlU‹ìQƒ}t ‹Eƒxu¸þÿÿÿë0‹M‹Q‰Uü‹Eü‹Hƒáu¸þÿÿÿë‹Uü‹E ‰B ‹M ÇA03À‹å]ÂU‹ìƒìƒ}t ‹Eƒxu ¸þÿÿÿéa‹M‹Q‰Uì‹Eƒxu‹Mìƒy<s ¸ûÿÿÿé<‹Uìƒ:„ž‹EìÇ‹Mì‹I<ƒá‹Uì‹B8Óà‹Mì‰A8‹Uì‹B<ƒà‹Mì‹Q<+ЋEì‰P<ÇEø‹Mìƒy<r6‹Uø‹EìŠH8ˆLô‹UøƒÂ‰Uø‹Eì‹H8Áé‹Uì‰J8‹Eì‹H<ƒé‹Uì‰J<ëÁ‹EìÇ@h‹MøQUôR‹EìƒÀhPèƒÄ ‹M‹QR‹E‹Q‹UìƒÂhRèƒÄ ‰Eø‹E‹H+Mø‹U‰J‹E‹Mø‹U‰ ‹E‹HMø‹U‰J‹Eìƒxht¸ýÿÿÿë8‹M‹Q‰Uü‹E‹H‰Mð‹URè‹E‹Mü‰H‹U‹Eð‰B‹MìÇ 3À‹å]Âç––_ U‹ìƒì‹E‹‰MøÇEü‹Uü;Us\ƒ}øsV‹E Eü¶ƒ}øÒâÿÿÿÂÿ;Êu ‹EøƒÀ‰Eøë!‹M Mü¶…Òt ÇEøë ¸+Eø‰Eø‹MüƒÁ‰Mü뜋U‹Eø‰‹Eü‹å]ÃU‹ìƒìƒ}t ‹Eƒxu¸þÿÿÿë-‹M‹Q‰Uü‹Eüƒ8 u‹Müƒy<u ÇEøëÇEø‹Eø‹å]ÂU‹ìƒìƒ}t!ƒ} t‹E ƒxt‹M ƒy t ‹U ƒz$u ¸þÿÿÿé…‹E ‹H‰MðhÌj‹U ‹B(P‹M ‹Q ÿÒƒÄ ‰Eôƒ}ôu ¸üÿÿÿéPÇEü‹Eðƒx4tKj‹Mðº‹I$ÓâR‹E ‹H(Q‹U ‹B ÿÐƒÄ ‰Eüƒ}üu ‹MôQ‹U ‹B(P‹M ‹Q$ÿ҃ĸüÿÿÿéõj8‹E P‹MQèƒÄ hÌ‹UðR‹EôPèƒÄ ‹MðÁ0‹Uð9JLrX‹Eð¼‹Mð9ALwH‹UðÂ0‹Eð‹HL+ÊÁù‹Uô„Š0‹Mô‰AL‹UðÂ0‹Eð‹HP+ÊÁù‹Uô„Š0‹Mô‰AP‹UðÂ0‹Eð‹Hl+ÊÁù‹Uô„Š0‹Mô‰Alƒ}üt'‹Uð¸‹J$Óà‰Eø‹MøQ‹Uð‹B4P‹MüQèƒÄ ‹Uô‹Eü‰B4‹M‹Uô‰Q3À‹å]ÂÒlçl¡lU‹ìQƒ}t ‹Eƒxu¸þÿÿÿë-‹M‹Q‰Uü3Àƒ} ”À‹Mü‰À‹UüÇ‚À¸ýÿÿÿ‹å]ÂU‹ìƒì ƒ}t ‹Eƒxu¸ÿÿëT‹M‹Q‰Uü‹Eüƒ8u ‹Mü‹Q@‰Uøë)‹Eüƒ8u‹Mü‹Uü‹È+B@‰EôëÇEô‹Mô‰Mø‹Uü‹‚ÄÁàEø‹å]Â@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.rdata¦Ìô0I!?€.textÎñ"W .textË U@Ég .textòÇ´Œðx _zcfree _zcalloc .rdataÜ{Š.textÄv¢À¨ .text q‰‘Y¹ .text \ SÒ¤ÛjÊ $LN12 $LN13  $LN14 .rdata YMõÛÕ $LN29h .rdata `}}z $LN45  $LN47Ó .rdata ,Ͻ5 $LN61© $LN75ò .rdata°–~æo$LN97S $LN112 .rdatayÔ*ŸÖ $LN145è $LN146ß .rdatapoã;ä.rdataÄ€I÷.rdata%¸ƒíK.rdataÚÜLˆ$LN2271 .rdata—e½ñ $LN245Ü .rdata$;Ïù$LN263ã $LN272S $LN273J .rdata3 «B:$LN290 .rdata£.e*r$LN295Q $LN296F $LN301 $LN302 $LN521L $LN321K $LN324: $LN329È $LN338 .rdataŽÐðžž$LN3585 $LN370? $LN382> _memcpy $LN3896 $LN410U $LN424‘ $LN442Ð .rdata¾ß! Ì$LN462à  .rdataO̼ .rdata#b:.rdataÛC5o  $LN497» $LN520Ð .text-ÐáÚª .text¡¦‡1•· .texty +QxÅ .text   Á_Ó .text!P(bW¾ì! .text"†˜]˜¡" .text#ˆ Š«?# .text$Oµ¦~$ .text%ÂÚv{Z/% .text&MZÐ>& .text'v‹­µæR' a?lenfix@?1??fixedtables@@9@9?distfix@?1??fixedtables@@9@9?order@?1??inflate@@9@9_inflateReset@4_inflateReset2@8_inflateInit2_@16??_C@_05DFCKICEH@1?42?45?$AA@_inflateInit_@12_inflatePrime@12_inflate@8??_C@_0BH@FGKKJGOC@incorrect?5length?5check?$AA@??_C@_0BF@MEIGEHBE@incorrect?5data?5check?$AA@??_C@_0BO@ECPMAOGG@invalid?5distance?5too?5far?5back?$AA@??_C@_0BG@LBKINIKP@invalid?5distance?5code?$AA@??_C@_0BM@FFFLPBBC@invalid?5literal?1length?5code?$AA@_inflate_fast??_C@_0BG@GMDFCBGP@invalid?5distances?5set?$AA@??_C@_0BM@IIMGAINC@invalid?5literal?1lengths?5set?$AA@??_C@_0CF@DGDMADCD@invalid?5code?5?9?9?5missing?5end?9of?9b@??_C@_0BK@BMMPFBBH@invalid?5bit?5length?5repeat?$AA@??_C@_0BJ@HDEPPGOH@invalid?5code?5lengths?5set?$AA@_inflate_table??_C@_0CE@GMIGFPBB@too?5many?5length?5or?5distance?5symb@??_C@_0BN@LGAADGOK@invalid?5stored?5block?5lengths?$AA@??_C@_0BD@PJCBIDD@invalid?5block?5type?$AA@??_C@_0BE@GONKLEPM@header?5crc?5mismatch?$AA@??_C@_0BJ@BLBBCOMO@unknown?5header?5flags?5set?$AA@_adler32@12??_C@_0BE@EMOGCLGO@invalid?5window?5size?$AA@??_C@_0BL@IHKGDAEE@unknown?5compression?5method?$AA@??_C@_0BH@LIBMMIGA@incorrect?5header?5check?$AA@_crc32@12_fixedtables_updatewindow_inflateEnd@4_inflateSetDictionary@12_inflateGetHeader@8_inflateSync@4_syncsearch_inflateSyncPoint@4_inflateCopy@8_inflateUndermine@8_inflateMark@4 /328 1315202897 100666 485 ` LQgdNu.drectve]d .debug$S´Á@B /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\inffast.obj:<RRMicrosoft (R) Optimizing Compiler@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´ /366 1315202897 100666 11684 ` LQgdN%N.drectve]  .debug$S´i@B.rdata¦@@@.textÃ Ä  P`.rdataâ @0@.text è ô!" P`.rdataH#@0@.rdataf#@0@.rdata|#@0@.rdata˜#@0@.rdata®#@0@.rdata%Ê#@0@.rdataï#@0@.rdata $@0@.rdata$"$@0@.rdataF$@0@.rdatac$@0@.text-v$£$ P`.textK·$ P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\infback.obj:<RRMicrosoft (R) Optimizing Compiler`Psp0 À `  €@ àX ;x8 Ðh( °ˆH ðTã+t4 È d$ ¨„D è\ ˜S|< Øl, ¸ ŒL øR£#r2 Ä b" ¤‚B äZ ”Cz: Ôj* ´ ŠJ ôV@3v6 Ìf& ¬†F ì ^ œc~> Ün. ¼ŽN ü`Qƒq1  a! ¢A âY ’;y9 Òi) ² ‰I òU+u5 Ê e% ª…E ê] šS}= Úm- º M úSÃ#s3 Æ c# ¦ƒC æ[ –C{; Ök+ ¶ ‹K öW@3w7 Îg' ®‡G î _ žc? Þo/ ¾O þ`Psp0 Á ` ¡€@ áX ‘;x8 Ñh( ±ˆH ñTã+t4 É d$ ©„D é\ ™S|< Ùl, ¹ ŒL ùR£#r2 Å b" ¥‚B åZ •Cz: Õj* µ ŠJ õV@3v6 Íf& ­†F í ^ c~> Ýn. ½ŽN ý`Qƒq1 à a! £A ãY “;y9 Ói) ³ ‰I óU+u5 Ë e% «…E ë] ›S}= Ûm- » M ûSÃ#s3 Ç c# §ƒC ç[ —C{; ×k+ · ‹K ÷W@3w7 Ïg' ¯‡G ï _ Ÿc? ßo/ ¿O ÿA@!  @a`10  Á@     U‹ìQƒ}t‹E¾¾;Êuƒ}8t ¸úÿÿÿéЃ}tƒ}t ƒ} |ƒ} ~ ¸þÿÿÿ鮋EÇ@‹Mƒy u‹UÇB ‹EÇ@(‹Mƒy$u ‹UÇB$hÌj‹E‹H(Q‹U‹B ÿÐƒÄ ‰Eüƒ}üu¸üÿÿÿëK‹M‹Uü‰Q‹EüÇ@€‹Mü‹U ‰Q$¸‹M Óà‹Mü‰A(‹Uü‹E‰B4‹MüÇA0‹UüÇB,3À‹å]Âfƒ1.2.5U‹ìƒì@ƒ}t ‹Eƒxu ¸þÿÿÿé§‹M‹Q‰UÌ‹EÇ@‹MÌÇ ‹UÌÇB‹EÌÇ@,‹M‹‰Uàƒ}àt ‹E‹H‰MÈëÇEÈ‹UȉUðÇEØÇEè‹EÌ‹H4‰Mü‹UÌ‹B(‰Eä‹MÌ‹‰UÄ‹EÄƒè ‰Eă}ćô‹MĶ‘ÿ$•‹Ẽxt.‹Mèƒá‹UØÓê‰UØ‹Eèƒà‹Mè+ȉMè3Òuà‹EÌÇ鵃}èsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé„3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë”3Éu‹U؃â‹ẺP‹MØÑé‰MØ‹Uèƒê‰Uè3Àuë‹M؃á‰MÀƒ}ÀwJ‹UÀÿ$•‹EÌÇ ë5‹MÌQèƒÄ‹UÌÇë‹EÌÇë‹MÇA‹UÌÇ‹EØÁè‰EØ‹Mèƒé‰Mè3Òuêé°‹Mèƒá‹EØÓè‰EØ‹Mèƒá‹Uè+щUè3Àuàƒ}è sfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé_3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë”3Éu‹UØâÿÿ‹EØÁè5ÿÿ;Ðt‹MÇA‹UÌÇéð‹EØ%ÿÿ‹M̉A@ÇEØÇEè3Òuî‹Ẽx@„ì‹MÌ‹Q@‰UÔƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé3Òũ}äu=‹EÌ‹H4‰Mü‹UÌ‹B(‰Eä‹MÌ‹Uä‰Q,‹EäP‹MüQ‹URÿUƒÄ …Àt ÇEÜûÿÿÿéH3Àu¹‹MÔ;Mðv‹Uð‰UÔ‹EÔ;Eäv‹Mä‰MÔ‹UÔR‹EàP‹MüQèƒÄ ‹Uð+UÔ‰Uð‹EàEÔ‰Eà‹Mä+MÔ‰Mä‹UüUÔ‰Uü‹EÌ‹H@+MÔ‹ỦJ@éÿÿÿ‹EÌÇ éɃ}èsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé˜3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë”3Éu‹U؃â‹ẺP`‹MØÁé‰MØ‹Uèƒê‰Uè3Àuê‹M؃áƒÁ‹ỦJd‹EØÁè‰EØ‹Mèƒé‰Mè3Òuê‹E؃àƒÀ‹M̉A\‹UØÁê‰UØ‹Eèƒè‰Eè3Éuê‹UÌz`w ‹Ẽxdv‹MÇA‹UÌÇ麋EÌÇ@h‹MÌ‹UÌ‹Ah;B\ƒ¶ƒ}èsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿém3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë”3Éu‹U؃â‹EÌ‹Hh·M‹MÌf‰TAp‹UÌ‹BhƒÀ‹M̉Ah‹UØÁê‰UØ‹Eèƒè‰Eè3Éuêé8ÿÿÿ‹Ũzhs)‹EÌ‹Hh·M3À‹MÌf‰DQp‹UÌ‹BhƒÀ‹M̉Ahë΋UÌÂ0‹ẺPl‹MÌ‹UÌ‹Bl‰AL‹MÌÇAT‹UÌÂðR‹ẼÀTP‹M̃ÁlQj‹ŨÂpRjèƒÄ‰E܃}Üt‹EÇ@‹MÌÇéE ‹UÌÇBh‹EÌ‹H`‹UÌJd‹EÌ9Hhƒ;‹M̺‹ITÓâƒê#UØ‹EÌ‹HL‹‘‰Uô¶Eõ;Eèwëiƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéÎ 3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœémÿÿÿ·Möƒùµ¶Uõ9Uèsfƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéO 3ÒuÌ‹Eðƒè‰Eð‹Mà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3Òuœë‘3Àu¶Mõ‹UØÓê‰UضEõ‹Mè+ȉMè3Òuä‹EÌ‹Hh‹UÌf‹Eöf‰DJp‹MÌ‹QhƒÂ‹ẺPhéá·Möƒù…ë¶UõƒÂ9Uèsfƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéŠ 3ÒuÌ‹Eðƒè‰Eð‹Mà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3ÒuœëŽ3ÀuжMõ‹UØÓê‰UضEõ‹Mè+ȉMè3Òuä‹Ẽxhu‹MÇA‹UÌÇé&‹EÌ‹Hh‹UÌ·DJn‰Eì‹M؃áƒÁ‰MÔ‹UØÁê‰UØ‹Eèƒè‰Eè3Éuê鈷Uöƒú…À¶EõƒÀ9Eèsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé’ 3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3ÀuœëŽ3ÉuжMõ‹UØÓê‰UضEõ‹Mè+ȉMè3ÒuäÇEì‹E؃àƒÀ‰EÔ‹MØÁé‰MØ‹Uèƒê‰Uè3Àuêé»¶MõƒÁ9Mèsfƒ}ðu*UàR‹EPÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéÒ 3ÉuÌ‹Uðƒê‰Uð‹Eà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3ÒuœëŽ3ÀuжMõ‹UØÓê‰UضEõ‹Mè+ȉMè3ÒuäÇEì‹E؃àƒÀ ‰EÔ‹MØÁé‰MØ‹Uèƒê‰Uè3Àuê‹MÌ‹QhUÔ‹EÌ‹H`‹EÌHd;Ñv‹MÇA‹UÌÇë8‹EÔ‹MÔƒé‰MÔ…Àt#‹UÌ‹Bh‹MÌf‹Uìf‰TAp‹EÌ‹HhƒÁ‹ỦJhëÍé­ûÿÿ‹Ẽ8uéÛ‹MÌ·‘p…Òu‹EÇ@‹MÌÇ鵋UÌÂ0‹ẺPl‹MÌ‹UÌ‹Bl‰AL‹MÌÇAT ‹UÌÂðR‹ẼÀTP‹M̃ÁlQ‹UÌ‹B`P‹M̃ÁpQjèƒÄ‰E܃}Üt‹UÇB‹EÌÇé?‹MÌ‹UÌ‹Bl‰AP‹MÌÇAX‹UÌÂðR‹ẼÀXP‹M̃ÁlQ‹UÌ‹BdP‹MÌ‹Q`‹EÌLPpQjèƒÄ‰E܃}Üt‹UÇB‹EÌÇéÑ‹MÌǃ}ð‚´}ä‚§‹U‹Eü‰B ‹M‹Uä‰Q‹E‹Mà‰‹U‹Eð‰B‹MÌ‹U؉Q8‹EÌ‹Mè‰H<3ÒuÇ‹EÌ‹MÌ‹P,;Q(s‹EÌ‹H(+Mä‹ỦJ,‹EÌ‹H(Q‹URèƒÄ‹E‹H ‰Mü‹U‹B‰Eä‹M‹‰Uà‹E‹H‰Mð‹UÌ‹B8‰EØ‹MÌ‹Q<‰Uè3ÀuÇé ‹M̺‹ITÓâƒê#UØ‹EÌ‹HL‹‘‰Uô¶Eõ;Eèwëiƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéµ3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœémÿÿÿ¶Mô…Ʉ۶Uôâð…Ë‹Eô‰Eø·Uú¶Mù¶EøȸÓàƒè#EضMùÓèЋMÌ‹AL‹ ‰Mô¶Uù¶EõÐ;Uèwëiƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéê3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3ÀuœéWÿÿÿ¶Mù‹UØÓê‰UضEù‹Mè+ȉMè3Òuä¶Mõ‹EØÓè‰EضMõ‹Uè+щUè3Àuä·Mö‹ỦJ@¶Eô…Àurƒ}äu=‹MÌ‹Q4‰Uü‹EÌ‹H(‰Mä‹UÌ‹Eä‰B,‹MäQ‹UüR‹EPÿUƒÄ …Àt ÇEÜûÿÿÿé$3Éu¹‹Uü‹EÌŠH@ˆ ‹UüƒÂ‰Uü‹Eäƒè‰Eä‹MÌÇéð¶Uôƒâ t‹EÌÇ éÙ¶Môƒá@t‹UÇB‹EÌÇ鸶Môƒá‹ỦJH‹ẼxH„²‹MÌ‹Uè;QHsfƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéh3ÒuÌ‹Eðƒè‰Eð‹Mà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3Òuœë3Àu‹‹M̺‹IHÓâƒê#UØ‹EÌP@‹M̉Q@‹UÌ‹EØ‹JHÓè‰EØ‹MÌ‹Uè+QH‰Uè3Àuâ‹M̺‹IXÓâƒê#UØ‹EÌ‹HP‹‘‰Uô¶Eõ;Eèwëiƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿé—3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœémÿÿÿ¶Môáð…Ë‹Uô‰Uø·Eú¶Mù¶UøʺÓâƒê#UضMùÓê‹MÌ‹QP‹‚‰Eô¶Mù¶UõÊ;Mèwëiƒ}ðu*EàP‹MQÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéØ3ÒuÌ‹Eðƒè‰Eð‹Mà¶‹MèÓâU؉UØ‹EàƒÀ‰Eà‹MèƒÁ‰Mè3ÒuœéWÿÿÿ¶Mù‹EØÓè‰EضMù‹Uè+щUè3Àuä¶Mõ‹UØÓê‰UضEõ‹Mè+ȉMè3Òuä¶Eôƒà@t‹MÇA‹UÌÇéA·Eö‹M̉AD¶Uôƒâ‹ẺPH‹M̃yH„²‹UÌ‹Eè;BHsfƒ}ðu*MàQ‹URÿU ƒÄ‰Eðƒ}ðuÇEàÇEÜûÿÿÿéç3ÀuÌ‹Mðƒé‰Mð‹Uà¶‹MèÓàE؉EØ‹MàƒÁ‰Mà‹UèƒÂ‰Uè3Àuœë3Éu‹‹U̸‹JHÓàƒè#EØ‹MÌAD‹ỦBD‹EÌ‹UØ‹HHÓê‰UØ‹EÌ‹Mè+HH‰Mè3Òuâ‹EÌ‹MÌ‹P,;Q(À#Eä‹MÌ‹Q(+ЋEÌ9PDv‹MÇA‹UÌÇé2ƒ}äu=‹EÌ‹H4‰Mü‹UÌ‹B(‰Eä‹MÌ‹Uä‰Q,‹EäP‹MüQ‹URÿUƒÄ …Àt ÇEÜûÿÿÿéô3Àu¹‹MÌ‹UÌ‹A(+BD‰EÔ‹MÔ;Mäs‹UüUÔ‰UЋEä+EÔ‰EÔë‹MÌ‹Uü+QD‰UЋEä‰EÔ‹MÌ‹UÔ;Q@v ‹EÌ‹H@‰MÔ‹UÌ‹B@+EÔ‹M̉A@‹Uä+UÔ‰Uä‹Eü‹MЊˆ‹EüƒÀ‰Eü‹MЃÁ‰MЋUÔƒê‰UÔuÙ‹Ẽx@…ÿÿÿëLÇEÜ‹MÌ‹Uä;Q(s&‹EÌ‹H(+MäQ‹UÌ‹B4P‹MQÿUƒÄ …ÀtÇEÜûÿÿÿëÇEÜýÿÿÿëÇEÜþÿÿÿëéãìÿÿ‹U‹Eà‰‹M‹Uð‰Q‹EÜ‹å]¶G½FžD²JÕ?«;—8á6 Ø @3V2/~ /æ ,F 3\ )´ 3Ê &^ "ã!ZiÌEÐ<Ô7Ø#ÜàäüCBA@invalid distance too far backinvalid distance codeinvalid literal/length codeinvalid distances setinvalid literal/lengths setinvalid code -- missing end-of-blockinvalid bit length repeatinvalid code lengths settoo many length or distance symbolsinvalid stored block lengthsinvalid block typeU‹ì‹EÇ@L‹MÇAT ‹UÇBP‹EÇ@X]à  U‹ìƒ}t‹Eƒxt ‹Mƒy$u¸þÿÿÿë%‹U‹BP‹M‹Q(R‹E‹H$ÿуÄ‹UÇB3À]Â@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.rdata¦Ìô0I!?€.textˆˆZ‰[ _zcfree _zcalloc .rdataÜ{p.text "aÙÔŽ $LN1¤$LN2›$LN5a.rdata,Ͻž.rdata°–~æØ.rdata yÔ* ? $LN130å .rdata poã;M .rdata Ä€I÷} .rdata %¸ƒí´ .rdata ÚÜLñ .rdata—e&Z .rdata$;Ïùi$LN272ä_memcpy .rdata3 «B£$LN310ý.rdata£.e*Û$LN315Ï$LN316Ä$LN317­$LN318¢$LN354ü$LN341Á$LN353Ì$LN352è.text-ÐáÚ .textK¤_ &?lenfix@?1??fixedtables@@9@9?distfix@?1??fixedtables@@9@9?order@?1??inflateBack@@9@9_inflateBackInit_@20??_C@_05DFCKICEH@1?42?45?$AA@_inflateBack@20??_C@_0BO@ECPMAOGG@invalid?5distance?5too?5far?5back?$AA@??_C@_0BG@LBKINIKP@invalid?5distance?5code?$AA@??_C@_0BM@FFFLPBBC@invalid?5literal?1length?5code?$AA@_inflate_fast??_C@_0BG@GMDFCBGP@invalid?5distances?5set?$AA@??_C@_0BM@IIMGAINC@invalid?5literal?1lengths?5set?$AA@??_C@_0CF@DGDMADCD@invalid?5code?5?9?9?5missing?5end?9of?9b@??_C@_0BK@BMMPFBBH@invalid?5bit?5length?5repeat?$AA@??_C@_0BJ@HDEPPGOH@invalid?5code?5lengths?5set?$AA@_inflate_table??_C@_0CE@GMIGFPBB@too?5many?5length?5or?5distance?5symb@??_C@_0BN@LGAADGOK@invalid?5stored?5block?5lengths?$AA@??_C@_0BD@PJCBIDD@invalid?5block?5type?$AA@_fixedtables_inflateBackEnd@4/404 1315202897 100666 5694 ` LQgdNB@.drectve]” .debug$S´ñ@B.textÔ¥y P`.rdata%É@0@.text>î, P`.rdataš@0@.rdata @0@.textI®÷ P`.rdata'Q @0@.textìx d  P`.textí‚ o  P`.textMƒ Ð  P`.textDä (  P`.textP ß  P`.textèó Û P`.textïùè P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\gzwrite.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒì‹E‰Eüƒ}u3À鵋M‰Mð‹UðƒÂT‰Uô‹Eð8±yu ‹MðƒyLt3À鋃}}hjû‹UðRèƒÄ 3Àékƒ}u3Àé^‹Eðƒxu‹MðQèƒÄƒøÿu3Àé=‹UðƒzHt)‹EðÇ@H‹Mð‹QDR‹EðPèƒÄƒøÿu3Àé ‹Mð‹U;Qƒ¢‹Eôƒxu ‹Mô‹Uð‹B‰‹Mð‹Uô‹A+B‰Eø‹Mø;Mv‹U‰Uø‹EøP‹M Q‹Uô‹‹MôAPèƒÄ ‹Uô‹BEø‹Mô‰A‹Uð‹B Eø‹Mð‰A ‹U Uø‰U ‹E+Eø‰Etj‹MðQèƒÄƒøÿu3Àëfƒ}…`ÿÿÿëW‹Uôƒztj‹EðPèƒÄƒøÿu3Àë:‹Mô‹U‰Q‹Eô‹M ‰‹Uð‹B E‹Mð‰A j‹UðRèƒÄƒøÿu3Àë‹Eü‹å] J U ~°' X„»requested length does not fit in intU‹ìƒì‹EƒÀT‰Eü‹M‹QRèƒÄ‹M‰A‹U‹BPèƒÄ‹M‰A‹Uƒzt ‹EƒxuK‹Mƒyt‹U‹BPèƒÄ‹Mƒyt‹U‹BPèƒÄhjü‹MQèƒÄ ƒÈÿ餋UüÇB ‹EüÇ@$‹MüÇA(j8h‹U‹B@Pjjj‹M‹QÛ@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.textÔX“o _memcpy  .rdata%WÓ×.text> DÖ_gz_init T .rdataÜ{f.rdatau–3„_free _malloc .textI Áâ¢1_gz_comp « .rdata '^ KK» õ  __errno _write .text ìÒë3_gz_zero _memset .text íá±VŒ  .text M^GÏ3 _strlen .text DS± ( .textjÓC4 .textè0„b(? O .textï Ý}îŒa _close n |_gzwrite@12_gz_error??_C@_0CF@MLPJFDMM@requested?5length?5does?5not?5fit?5in@_deflateInit2_@32??_C@_05DFCKICEH@1?42?45?$AA@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@_deflateReset@4??_C@_0CH@DEEGAHIB@internal?5error?3?5deflate?5stream?5c@_deflate@8_strerror_gzputc@8_gzputs@8_gzprintf__vsnprintf_gzflush@8_gzsetparams@12_deflateParams@12_gzclose_w@4_deflateEnd@4/442 1315202897 100666 10575 ` LQgdNö\.drectve]$ .debug$S°@B.text14 P`.rdata%z@0@.textŸ/ P`.textåW<  P`.rdataú @0@.rdata @0@.rdata& @0@.rdata< @0@.rdata'J @0@.rdataq @0@.text`ˆ è  P`.textàò Ò  P`.text¿ú ¹ P`.text: ×$ P`.rdatay@0@.rdata’@0@.rdata­@0@.text¿³r P`.text«|' P`.text1À P`.rdataÞ@0@.text‰ý† P`.textM®û P`.text«° P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¤fc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\gzread.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒìƒ}uƒÈÿéé‹E‰Eð‹MðƒÁT‰Mø‹Uð:Ou ‹EðƒxLtƒÈÿ龃}}hjû‹MðQèƒÄ ƒÈÿéƒ}u3Àé‹UðƒzHt*‹EðÇ@H‹Mð‹QDR‹EðPèƒÄƒøÿuƒÈÿé]ÇEô‹Mðƒy$t\‹Uð‹B$;Ev‹M‰Mìë ‹Uð‹B$‰Eì‹Mì‰Mü‹UüR‹Eð‹H Q‹U RèƒÄ ‹Eð‹H Mü‹Uð‰J ‹Eð‹H$+Mü‹Uð‰J$麋Eðƒx(t‹Møƒyu é×éž‹Uðƒz4t ‹Eð‹HÑá9Ms ‹UðRèƒÄƒøÿuƒÈÿé¦é”ëh‹Eðƒx4u$MüQ‹UR‹E P‹MðQèƒÄƒøÿuƒÈÿëtë;‹Uø‹E‰B‹Mø‹U ‰Q ‹EðPèƒÄƒøÿuƒÈÿëJ‹Mð‹Q$‰Uü‹EðÇ@$‹M+Mü‰M‹U Uü‰U ‹EôEü‰Eô‹Mð‹Q Uü‹Eð‰P ƒ}…­þÿÿ‹Eô‹å] F Q ŒFâ C3x¢requested length does not fit in intU‹ìQ‹EÇ‹M‹U+R‹E‹M Q‹U‹BPèƒÄ ‰Eüƒ}üë‹M‹Uü‹E‰‹M‹;Ur½ƒ}ü}$è‹PèƒÄPjÿ‹MQèƒÄ ƒÈÿëƒ}üu ‹UÇB(3À‹å]Ã'W_n U‹ìƒì‹EƒÀT‰Eø‹Mø‹Q‰Uð‹Eøƒxu‹MQèƒÄƒøÿuƒÈÿé§‹Uøƒzuhjý‹EPèƒÄ ƒÈÿéƒj‹MøQè‰Eìƒ}ìþtƒ}ìuhjþ‹URèƒÄ ƒÈÿéNƒ}ìüuhjü‹EPèƒÄ ƒÈÿé-ƒ}ìýu5‹Møƒyu ÇEèë ‹Uø‹B‰Eè‹MèQjý‹URèƒÄ ƒÈÿéò‹Eøƒxt ƒ}ì…ÿÿÿ‹Mø‹Uð+Q‹E‰P$‹Mø‹U‹A +B$‹M‰A ‹U‹B$P‹M‹Q R‹Eø‹H0Qè‹Uø‰B0ƒ}ì…’EüP‹MQèƒÄƒøÿtUôR‹EPèƒÄƒøÿuhjý‹MQèƒÄ ƒÈÿëR‹Uø‹Eü;B0thjý‹MQèƒÄ ƒÈÿë/‹Uø‹Eô;Bthjý‹MQèƒÄ ƒÈÿë ‹UÇB43À‹å]Ã&-D*O e'y&„ š#¥ Æ à 9V0k0x*ƒ ›¦ ¾É incorrect length checkincorrect data checkcompressed data errorout of memoryinternal error: inflate stream corruptunexpected end of fileU‹ìQ‹EƒÀT‰Eü‹MƒyLtƒÈÿëA‹Uƒz(u6‹EüƒÀP‹M‹QR‹E‹HQ‹URèƒÄƒøÿuƒÈÿë ‹Eü‹M‹Q‰3À‹å]Ã>U‹ìƒì,‹EƒÀT‰Eü‹Müƒyu‹URèƒÄƒøÿu ÇEðÿÿÿÿë?‹Eüƒxu ÇEìÿÿÿÿë'‹Mü‹Qƒê‹Eü‰P‹Mü‹¶‰Eì‹Mü‹ƒÂ‹Eü‰‹Mì‰Mð‹Uð‰Uø‹Eüƒxu‹MQèƒÄƒøÿu ÇEèÿÿÿÿë?‹Uüƒzu ÇEäÿÿÿÿë'‹Eü‹Hƒé‹Uü‰J‹Eü‹¶‰Uä‹Eü‹ƒÁ‹Uü‰ ‹Eä‰Eè‹MèÁáMø‰Mø‹Uüƒzu‹EPèƒÄƒøÿu ÇEàÿÿÿÿë?‹Müƒyu ÇEÜÿÿÿÿë'‹Uü‹Bƒè‹Mü‰A‹Uü‹¶‰MÜ‹Uü‹ƒÀ‹Mü‰‹U܉Uà‹EàÁàEø‰Eø‹Müƒyu‹URèƒÄƒøÿu ÇEØÿÿÿÿë?‹Eüƒxu ÇEÔÿÿÿÿë'‹Mü‹Qƒê‹Eü‰P‹Mü‹¶‰EÔ‹Mü‹ƒÂ‹Eü‰‹MÔ‰MØ‹U؉Uôƒ}ôÿuƒÈÿë‹EôÁàEø‰Eø‹M ‹Uø‰3À‹å]Ã-…-ó-a-U‹ìQ‹EƒÀT‰Eü‹Mƒy4u&‹URèƒÄƒøÿuƒÈÿ錋Eƒx$t3Àë‹Mƒy4u;‹UƒÂ$R‹E‹HÑáQ‹U‹BP‹MQèƒÄƒøÿuƒÈÿëI‹U‹E‹H‰J ë9‹Uƒz4u0‹E‹HÑá‹Uü‰J‹Eü‹M‹Q‰P ‹EPèƒÄƒøÿuƒÈÿë3À‹å]Ã6a¨U‹ìì„‹EƒÀT‰Eô‹Mƒy…#‹U‹BPèƒÄ‹M‰A‹U‹BÑàPèƒÄ‹M‰A‹Uƒzt ‹EƒxuK‹Mƒyt‹U‹BPèƒÄ‹Mƒyt‹U‹BPèƒÄhjü‹MQèƒÄ ƒÈÿ鎋U‹E‹H‰J‹UÇBt‹EÇ@x‹MÇA|‹UÇBX‹EÇ@Tj8hjñ‹MƒÁTQè…ÀtC‹U‹BPèƒÄ‹M‹QRèƒÄ‹EÇ@hjü‹MQèƒÄ ƒÈÿéô‹Uôƒzu)‹EPèƒÄƒøÿuƒÈÿéÒ‹Môƒyu3Àé‹Uô‹¶ƒù…<‹Uô‹Bƒè‹Mô‰A‹Uô‹ƒÀ‹Mô‰‹Uôƒzu‹EPèƒÄƒøÿuƒÈÿés‹Môƒy„Þ‹Uô‹¶ù‹…Ê‹Uô‹Bƒè‹Mô‰A‹Uô‹ƒÀ‹Mô‰‹Uôƒzu‹EPèƒÄƒøÿu ÇEðÿÿÿÿë?‹Môƒyu ÇEìÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰Mì‹Uô‹ƒÀ‹Mô‰‹Uì‰Uðƒ}ðthjý‹EPèƒÄ ƒÈÿ鳋Môƒyu‹URèƒÄƒøÿu ÇEèÿÿÿÿë?‹Eôƒxu ÇEäÿÿÿÿë'‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰Eä‹Mô‹ƒÂ‹Eô‰‹Mä‰Mè‹Uè‰Uü‹Eü%àthjý‹MQèƒÄ ƒÈÿé&‹Uôƒzu‹EPèƒÄƒøÿu ÇEàÿÿÿÿë?‹Môƒyu ÇEÜÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰MÜ‹Uô‹ƒÀ‹Mô‰‹U܉Uà‹Eôƒxu‹MQèƒÄƒøÿu ÇEØÿÿÿÿë?‹Uôƒzu ÇEÔÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰UÔ‹Eô‹ƒÁ‹Uô‰ ‹EÔ‰EØ‹Môƒyu‹URèƒÄƒøÿu ÇEÐÿÿÿÿë?‹Eôƒxu ÇEÌÿÿÿÿë'‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰EÌ‹Mô‹ƒÂ‹Eô‰‹M̉MЋUôƒzu‹EPèƒÄƒøÿu ÇEÈÿÿÿÿë?‹Môƒyu ÇEÄÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰MÄ‹Uô‹ƒÀ‹Mô‰‹UĉUÈ‹Eôƒxu‹MQèƒÄƒøÿu ÇEÀÿÿÿÿë?‹Uôƒzu ÇE¼ÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰U¼‹Eô‹ƒÁ‹Uô‰ ‹E¼‰EÀ‹Môƒyu‹URèƒÄƒøÿu ÇE¸ÿÿÿÿë?‹Eôƒxu ÇE´ÿÿÿÿë'‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰E´‹Mô‹ƒÂ‹Eô‰‹M´‰M¸‹Uüƒâ„R‹Eôƒxu‹MQèƒÄƒøÿu ÇE°ÿÿÿÿë?‹Uôƒzu ÇE¬ÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰U¬‹Eô‹ƒÁ‹Uô‰ ‹E¬‰E°‹M°‰Mø‹Uôƒzu‹EPèƒÄƒøÿu ÇE¨ÿÿÿÿë?‹Môƒyu ÇE¤ÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰M¤‹Uô‹ƒÀ‹Mô‰‹U¤‰U¨‹E¨ÁàEø‰Eø‹Mø‹Uøƒê‰Uø…Étl‹Eôƒxu‹MQèƒÄƒøÿu ÇE ÿÿÿÿë?‹Uôƒzu ÇEœÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰Uœ‹Eô‹ƒÁ‹Uô‰ ‹Eœ‰E ƒ} }ëë„‹Müƒátj‹Uôƒzu‹EPèƒÄƒøÿu ÇE˜ÿÿÿÿë?‹Môƒyu ÇE”ÿÿÿÿë'‹Uô‹Bƒè‹Mô‰A‹Uô‹¶‰M”‹Uô‹ƒÀ‹Mô‰‹U”‰U˜ƒ}˜~ë–‹Eüƒàtj‹Môƒyu‹URèƒÄƒøÿu ÇEÿÿÿÿë?‹Eôƒxu ÇEŒÿÿÿÿë'‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰EŒ‹Mô‹ƒÂ‹Eô‰‹MŒ‰Mƒ}~ë–‹Uüƒâ„Í‹Eôƒxu‹MQèƒÄƒøÿu ÇEˆÿÿÿÿë?‹Uôƒzu ÇE„ÿÿÿÿë'‹Eô‹Hƒé‹Uô‰J‹Eô‹¶‰U„‹Eô‹ƒÁ‹Uô‰ ‹E„‰Eˆ‹Môƒyu‹URèƒÄƒøÿu ÇE€ÿÿÿÿëH‹Eôƒxu Ç…|ÿÿÿÿÿÿÿë*‹Mô‹Qƒê‹Eô‰P‹Mô‹¶‰…|ÿÿÿ‹Mô‹ƒÂ‹Eô‰‹|ÿÿÿ‰M€‹UôRèjjjè‹Mô‰A0‹UÇB4‹EÇ@83ÀéŠë‹M‹QÆ‹EÇ@$‹M‹U‹B ‰A0‹M‹U‹B‰A ‹Môƒyt>‹Uô‹BP‹Mô‹R‹E‹H ‹UJ$QèƒÄ ‹E‹H$‹UôJ‹E‰H$‹MôÇA‹UÇB4‹EÇ@83À‹å]Ã'C>CnB†BŽ#™ éA÷>BB(#3 P-¯--i=t ‘-ö: -€-â-D-¦--v-Þ-\-Ð-B-¸--|7‡ý unknown header flags setunknown compression method1.2.5U‹ìƒìƒ} „©‹Eƒx$to¹…Ét ‹Uz$ÿÿÿw‹E‹H$;M  ‹U‹B$‰Eøë‹M ‰Mø‹Uø‰Uü‹E‹H$+Mü‹U‰J$‹E‹H Mü‹U‰J ‹E‹H Mü‹U‰J ‹E +Eü‰E ë,‹Mƒy(t ‹UƒzXuëë‹EPèƒÄƒøÿuƒÈÿëéMÿÿÿ3À‹å]ã3U‹ìƒìƒ}uƒÈÿé‘‹E‰Eô‹Mô9Ou ‹UôƒzLtƒÈÿër‹Eôƒx$t>‹Mô‹Q$ƒê‹Eô‰P$‹Mô‹Q ƒÂ‹Eô‰P ‹Mô‹Q ŠˆEó‹Mô‹Q ƒÂ‹Eô‰P ¶Eóë+jMÿQ‹URè‰Eøƒ}ø} ÇEìÿÿÿÿë¶Eÿ‰Eì‹Eì‹å]Â…U‹ìƒì ƒ} uƒÈÿéu‹E ‰Eü‹Mü9Ou ‹UüƒzLtƒÈÿéS‹EüƒxHt*‹MüÇAH‹Uü‹BDP‹MüQèƒÄƒøÿuƒÈÿé ƒ}}ƒÈÿé‹Uüƒz$uB‹EüÇ@$‹Mü‹Q‹Eü‹HTQÿ‹Eü‰P ‹Mü‹Q ŠEˆ‹Mü‹Q ƒê‹Eü‰P ‹EéÇ‹Mü‹QÑâ‹Eü9P$uhjû‹MüQèƒÄ ƒÈÿ霋Uü‹Eü‹J ;HuS‹Uü‹B‹MüA$‰Eô‹Uü‹B‹Mü‹QB‰Eø‹Mü‹Uô;Qv‹Eôƒè‰Eô‹Møƒé‰Mø‹Uø‹EôŠˆ ë׋Uü‹Eø‰B ‹Mü‹Q$ƒÂ‹Eü‰P$‹Mü‹Q ƒê‹Eü‰P ‹Mü‹Q ŠEˆ‹Mü‹Q ƒê‹Eü‰P ‹E‹å]ÂUFÓOÞ out of room to push charactersU‹ìƒìƒ}t ƒ} tƒ}}3Àéd‹E‰Eð‹Mð9Ou ‹UðƒzLt3ÀéC‹EðƒxHt)‹MðÇAH‹Uð‹BDP‹MðQèƒÄƒøÿu3Àé‹U ‰Uì‹Eƒè‰Eô„ó‹Mðƒy$u5‹UðRèƒÄƒøÿu3ÀéÛ‹Eðƒx$u‹M ;Mìu3ÀéÃ鵋Uð‹B$;Eôv‹Mô‰Mèë ‹Uð‹B$‰Eè‹Mè‰Mø‹UøRj ‹Eð‹H QèƒÄ ‰Eüƒ}üt‹Uð‹Eü+B ƒÀ‰Eø‹MøQ‹Uð‹B P‹M QèƒÄ ‹Uð‹B$+Eø‹Mð‰A$‹Uð‹B Eø‹Mð‰A ‹Uð‹B Eø‹Mð‰A ‹Uô+Uø‰Uô‹E Eø‰E ƒ}ôt ƒ}ü„ ÿÿÿ‹M Æ‹Eì‹å] _F•3õS$ U‹ìQƒ}u3Àë9‹E‰Eü‹Mü9Ot3Àë$‹Uüƒz4u‹Eüƒx$u ‹MüQèƒÄ‹Uü‹B8‹å]Â:6U‹ìƒìƒ}u ¸þÿÿÿé‹E‰Eø‹Mø9Ot¸þÿÿÿëw‹Uøƒzt*‹EøƒÀTPè‹Mø‹QRèƒÄ‹Eø‹HQèƒÄjj‹UøRèƒÄ ‹Eø‹HQèƒÄ‹Uø‹BPèƒÄ‰Eü‹MøQèƒÄ‹Eü÷ØÀ‹å]Â?[KBZBj yBˆZ—B@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.textbçJ _memcpy  .rdata%WÓ×.text—ˆ\_gz_load S __errno _read .textåÙÅaJ] .rdataYMõÛh.rdata`}}z™È .rdata j†w%Ò .rdata u–3 .rdata 'æP) c .rdata (åרn .text `_¡"è  .textà°åìª .text¿BÁ_gz_make .text: $¡/“ú_gz_head ´ .rdata¾ß! Ä.rdata#bø- .rdataÜ{?_free _malloc .text¿|Nâ_gz_skip .text«¯¯yÑ] .textÂj^g .rdatam?^s.text‰c–”÷¯ _memchr .textM †¾º .text«|k¾Æ _close Ó á_gzread@12_gz_error??_C@_0CF@MLPJFDMM@requested?5length?5does?5not?5fit?5in@_strerror_gz_decomp??_C@_0BH@FGKKJGOC@incorrect?5length?5check?$AA@??_C@_0BF@MEIGEHBE@incorrect?5data?5check?$AA@_crc32@12??_C@_0BG@HCKBMIHF@compressed?5data?5error?$AA@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@??_C@_0CH@CPOLIEKA@internal?5error?3?5inflate?5stream?5c@_inflate@8??_C@_0BH@CFIIDOJD@unexpected?5end?5of?5file?$AA@_gz_avail_gz_next4_inflateReset@4??_C@_0BJ@BLBBCOMO@unknown?5header?5flags?5set?$AA@??_C@_0BL@IHKGDAEE@unknown?5compression?5method?$AA@_inflateInit2_@16??_C@_05DFCKICEH@1?42?45?$AA@_gzgetc@4_gzungetc@8??_C@_0BP@IIKIGMCC@out?5of?5room?5to?5push?5characters?$AA@_gzgets@12_gzdirect@4_gzclose_r@4_inflateEnd@4 /479 1315202897 100666 6290 ` LQgdN/X.drectve]¬ .debug$S° @B.text¹Ò P`.textùÜÕ P`.textf»!  P`.text+ D  P`.textdN ²  P`.rdataä @0@.textZì P`.textdF ª  P`.text ¾ Þ  P`.text:ü 6  P`.text\@ P`.text2œ Î  P`.textsØ K P`.text2U‡ P`.text~‘ P`.textet P`.rdata~@@.textUÔ P`.textæÞÄ P`.rdata@0@.rdata!@0@ /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\gzlib.obj:<RRMicrosoft (R) Optimizing CompilerU‹ì‹E Pjÿ‹MQèƒÄ ] U‹ìƒìhŒèƒÄ‰Eüƒ}üu3Àéa‹EüÇ@‹MüÇA ‹UüÇBP‹EüÇ‹MüÇA<ÿÿÿÿ‹UüÇB@‹E¾…ɄŋU¾ƒø0|‹M¾ƒú9‹E¾ƒé0‹Uü‰J<é‹E¾‰Mø‹Uøƒê+‰Uøƒ}øLwu‹Eø¶ˆÿ$‹UüÇOëY‹EüDZyëN‹MüÇëC‹UüRèƒÄ3Àé‘ë.‹EüÇ@@ë"‹MüÇA@ë‹UüÇB@ë ‹EüÇ@@‹MƒÁ‰Mé-ÿÿÿ‹Uüƒ:u‹EüPèƒÄ3Àé8‹MQèƒÄƒÀPèƒÄ‹Uü‰B‹Eüƒxu‹MüQèƒÄ3Àéþ‹UR‹Eü‹HQèƒÄƒ} ÿt‹U ‰UôëU‹Eü8Ou ÇEðë$‹Mü‹ê±y÷ÚÒâþÿÿÂʉUðh¶‹Eð €P‹MQèƒÄ ‰Eô‹Uü‹Eô‰B‹Müƒyÿu‹Uü‹BPèƒÄ‹MüQèƒÄ3ÀëW‹Uüƒ:u ‹EüDZy‹Mü9Ou,jj‹Uü‹BPèƒÄ ‹Mü‰A,‹Uüƒz,ÿu ‹EüÇ@,‹MüQèƒÄ‹Eü‹å]à ´»å>Q]x’ò"U zˆŒ”˜œ ¤¨ U‹ì‹E8Ou(‹MÇA$‹UÇB(‹EÇ@4‹MÇA8‹UÇBHjj‹EPèƒÄ ‹MÇA ‹UÇBX]ÃIPU‹ì‹E Pjÿ‹MQèƒÄ ] U‹ìƒìƒ}ÿtjèƒÄ‰Eøƒ}øu3Àë;‹EPh‹MøQèƒÄ ‹U R‹EP‹MøQèƒÄ ‰Eü‹UøRèƒÄ‹Eü‹å]Â()1&E TU‹ìQƒ}uƒÈÿëE‹E‰Eü‹Mü9Ot‹Uü:±ytƒÈÿë$‹EüƒxtƒÈÿëƒ} uƒÈÿë ‹Mü‹U ‰Q3À‹å]ÂU‹ìQƒ}uƒÈÿëO‹E‰Eü‹Mü9Ou ‹UüƒzLtƒÈÿë0j‹Eü‹H,Q‹Uü‹BPèƒÄ ƒøÿuƒÈÿë‹MüQèƒÄ3À‹å]Â? UU‹ìƒìƒ}uƒÈÿé‹E‰Eô‹Mô9Ot‹Uô:±ytƒÈÿéâ‹EôƒxLtƒÈÿéу}tƒ}tƒÈÿ齃}u‹Mô‹U +Q ‰U ë‹EôƒxHt ‹Mô‹U QD‰U ‹EôÇ@H‹Mô9O…œ‹Uôƒz4…‹Eô‹H M ‹Uô;J0|~j‹Eô‹M +H$Q‹Uô‹BPèƒÄ ‰Eøƒ}øÿuƒÈÿé1‹MôÇA$‹UôÇB(‹EôÇ@Hjj‹MôQèƒÄ ‹UôÇBX‹Eô‹H M ‹Uô‰J ‹Eô‹@ é߃} }?‹Mô9OtƒÈÿ鯋Uô‹E B ‰E yƒÈÿé°‹MQèƒøÿuƒÈÿéš‹Uô:Oum¸…Àt ‹Môy$ÿÿÿw‹Uô‹B$;E  ‹Mô‹Q$‰Uðë‹E ‰Eð‹Mð‰Mü‹Uô‹B$+Eü‹Mô‰A$‹Uô‹B Eü‹Mô‰A ‹Uô‹B Eü‹Mô‰A ‹U +Uü‰U ƒ} t‹EôÇ@H‹Mô‹U ‰QD‹Eô‹@ E ‹å]Â Ñ Po/U‹ìƒì‹EP‹M Q‹URè‰Eü‹Eü;Eüu‹Mü‰MøëÇEøÿÿÿÿ‹Eø‹å] 2U‹ìƒìƒ}uƒÈÿëE‹E‰Eü‹Mü9Ot‹Uü:±ytƒÈÿë$‹EüƒxHt ‹Mü‹QD‰UøëÇEø‹Eü‹@ Eø‹å]ÂU‹ìƒì‹EPè‰Eü‹Mü;Müu‹Uü‰UøëÇEøÿÿÿÿ‹Eø‹å] 8U‹ìƒìƒ}uƒÈÿë\‹E‰Eø‹Mø9Ot‹Uø:±ytƒÈÿë;jj‹Eø‹HQèƒÄ ‰Eüƒ}üÿuƒÈÿë‹Uø:Ou ‹Eø‹Mü+HX‰Mü‹Eü‹å]Â> U‹ìƒì‹EPè‰Eü‹Mü;Müu‹Uü‰UøëÇEøÿÿÿÿ‹Eø‹å] >U‹ìƒì ƒ}u3Àëh‹E‰Eü‹Mü9Ot‹Uü:±yt3ÀëH‹Eü8Ou3‹Müƒy(t‹UüƒzXu‹Eüƒx$u ÇEøëÇEø‹Mø‰MôëÇEô‹Eô‹å]ÂU‹ìƒìƒ}u3ÀëO‹E‰Eü‹Mü9Ot‹Uü:±yt3Àë/ƒ} t ‹E ‹Mü‹QL‰‹EüƒxPu ÇEøë ‹Mü‹QP‰Uø‹Eø‹å]ÂMJU‹ìQƒ}uëC‹E‰Eü‹Mü9Ot ‹Uü:±ytë%‹Eü8Ou ‹MüÇA(jj‹UüRèƒÄ ‹å]ÂHPU‹ìV‹EƒxPt"‹MƒyLüt‹U‹BPPèƒÄ‹MÇAP‹U‹E ‰BLƒ}ué ƒ} üu‹M‹U‰QP錋E‹HQèƒÄ‹ð‹URèƒÄDPèƒÄ‹M‰AP‹UƒzPu‹EÇ@Lüÿÿÿ‹MÇAPë=‹U‹BP‹M‹QPRèƒÄh‹E‹HPQèƒÄ‹UR‹E‹HPQèƒÄ^]Ã_mz Wµ½TÉQÜQ: out of memory@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.text™‰¬ .textùǦy_gz_open $LN19#_lseek _open _strcpy _strlen $LN8$LN9 $LN10$LN11õ_free $LN13à$LN14Õ$LN15Ê$LN16¿$LN31ˆ$LN30¬_malloc .textf˜CìU .text™‰¬ .textdj;v$ _sprintf .rdata õÛ/.text ZêñDçW .text d*ü0c .text  ?Ú¨áo .text :\ÌD3| .text \ˆKËk‡ .text2°!O¶“ .texts´¾XÄ .text2°!O¶« .text~-}_gzeof@4 .texte;ß¾· .rdataÂ.textU¿0+¤Ù .textæ 'ç _strcat .rdataäDx¼ñ.rdatau–3 3_gzopen@8_gz_reset_gzopen64@8_gzdopen@8??_C@_07EBNKNFJN@?$DMfd?3?$CFd?$DO?$AA@_gzbuffer@8_gzrewind@4_gzseek64@12_gzseek@12_gztell64@4_gztell@4_gzoffset64@4_gzoffset@4_gzerror@8??_C@_00CNPNBAHC@?$AA@_gzclearerr@4_gz_error??_C@_02LMMGGCAJ@?3?5?$AA@??_C@_0O@BNNCBLEN@out?5of?5memory?$AA@/515 1315202897 100666 743 ` LQgdNø .drectve]Œ .debug$S´é@B.textGä P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\gzclose.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒìƒ}u¸þÿÿÿë.‹E‰Eü‹Mü9Ou‹URè‰Eøë ‹EPè‰Eø‹Eø‹å]Â) 7 @comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.textGÕæ—   )_gzclose@4_gzclose_w@4_gzclose_r@4 /553 1315202897 100666 19000 ` LQgdNŸA\.drectve]ü .debug$S´Y@B.rdataÆ Ó @@@.text$7[ P`.text7eœ  P`.text½Ø •  P`.textÿ© ¨  P`.text>Ð P`.textK P`.text-Y † P`.textXÌ P`.textt$ P`.text£˜; P`.textP{ P`.textÅË ! P`.text8š! P`.textZÒ",% P`.textúr%l& P`.text@¨&è( P`.text#.)Q, P`.textÂy,;- P`.textHY-¡2 P`.textÝ3â9 P`.text¿Z:? P`.textús?mA P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\deflate.obj:<RRMicrosoft (R) Optimizing Compiler deflate 1.2.5 Copyright 1995-2010 Jean-loup Gailly and Mark Adler   €€ € € 1.2.5PE\OhOtO€UŒU˜U¤U°U¼UU‹ì‹EP‹MQjjjj‹U R‹EPè]ÂU‹ìƒì ÇEôƒ} t‹E ¾¾;Êuƒ}$8t ¸úÿÿÿéýƒ}u ¸þÿÿÿéí‹EÇ@‹Mƒy u‹UÇB ‹EÇ@(‹Mƒy$u ‹UÇB$ƒ} ÿuÇE ƒ}}ÇEô‹E÷؉Eëƒ}~ÇEô‹Mƒé‰Mƒ}|0ƒ} *ƒ}u$ƒ}|ƒ}ƒ} |ƒ}  ƒ}|ƒ}~ ¸þÿÿÿé9ƒ}uÇE hÄj‹U‹B(P‹M‹Q ÿÒƒÄ ‰Eüƒ}üu ¸üÿÿÿé‹E‹Mü‰H‹Uü‹E‰‹Mü‹Uô‰Q‹EüÇ@‹Mü‹U‰Q0‹Eüº‹H0Óâ‹Eü‰P,‹Mü‹Q,ƒê‹Eü‰P4‹MƒÁ‹Uü‰JP‹Eüº‹HPÓâ‹Eü‰PL‹Mü‹QLƒê‹Eü‰PT‹Mü‹APƒÀ3Ò¹÷ñ‹Uü‰BXj‹Eü‹H,Q‹U‹B(P‹M‹Q ÿÒƒÄ ‹Mü‰A8j‹Uü‹B,P‹M‹Q(R‹E‹H ÿÑƒÄ ‹Uü‰B@j‹Eü‹HLQ‹U‹B(P‹M‹Q ÿÒƒÄ ‹Mü‰AD‹UüÇ‚À‹MƒÁ¸Óà‹Mü‰œj‹Uü‹‚œP‹M‹Q(R‹E‹H ÿÑƒÄ ‰Eø‹Uü‹Eø‰B‹Mü‹‘œÁâ‹Eü‰P ‹Müƒy8t‹Uüƒz@t‹EüƒxDt ‹Müƒyu&‹UüÇBš‹E‹ ‰H‹URè¸üÿÿÿë_‹Eü‹ˆœÑé‹UøJ‹Mü‰¤‹Uü‹‚œkÀ‹MüA‹Uü‰‚˜‹Eü‹M ‰ˆ„‹Uü‹E‰‚ˆ‹MüŠUˆQ$‹EPè‹å]  ]z»Ç;-U‹ìƒìV‹E‰EüÇEðƒ}t3‹Mƒyt*ƒ} t$‹U‹Bƒxt‹M‹Qƒzu‹E‹Hƒy*t ¸þÿÿÿé_‹U‹B‰Eô‹Môƒyt‹UR‹E P‹M‹Q0Rè‹M‰A0ƒ}üs3Àé&‹Uô‹Eü;B,v‹Mô‹Q,‰Uü‹E+EüE ‰E ‹MüQ‹U R‹Eô‹H8QèƒÄ ‹Uô‹Eü‰Bl‹Mô‹Uü‰Q\‹Eô‹H8¶‹Eô‰PH‹Mô‹Uô‹AH‹JXÓà‹Mô‹Q8¶J3Á‹Uô#BT‹Mô‰AHÇEøë ‹UøƒÂ‰Uø‹Eüƒè9Eøw|‹Mô‹Uô‹AH‹JXÓà‹Mô‹Q8‹Mø¶T 3‹Mô#AT‹Uô‰BH‹Eô‹HH‹Uô‹BD‹Uô‹uø#r4‹Uô‹R@f‹Hf‰r‹Mô‹Uø#Q4‹Eô‹H@·Q‰Uð‹Eô‹HH‹Uô‹BDf‹Uøf‰Hépÿÿÿƒ}ðtÇEð3À^‹å] yÀU‹ìƒìƒ}t‹Eƒxt‹Mƒy t ‹Uƒz$u ¸þÿÿÿéÈ‹EÇ@‹MÇA‹UÇB‹EÇ@,‹M‹Q‰Uü‹EüÇ@‹Mü‹Uü‹B‰A‹Müƒy}‹Uü‹B÷Ø‹Mü‰A‹Uü‹B÷ØÀƒà¹ƒÀq‹Mü‰A‹Uüƒzujjjè‰Eøëjjjè‰Eø‹E‹Mø‰H0‹UüÇB(‹EüPèƒÄ‹MüQèƒÄ3À‹å]µÅäðAU‹ìƒ}t ‹Eƒxu¸þÿÿÿë!‹M‹Qƒzt¸þÿÿÿë‹E‹H‹U ‰Q3À]ÂU‹ìƒ}t ‹Eƒxu¸þÿÿÿë.‹M‹Q‹E ‰‚¼º‹M Óâƒê#U‹E‹Hf‰‘¸3À] U‹ìƒì ÇEøƒ}t ‹Eƒxu ¸þÿÿÿé‹M‹Q‰Uüƒ} ÿuÇE ƒ} |ƒ}  ƒ}|ƒ}~ ¸þÿÿÿéÉ‹Eü‹ˆ„kÉ ‹‘‰Uô‹Eü‹M;ˆˆu‹U kÒ ‹Eô;‚t‹Mƒytj‹URè‰Eø‹Eü‹ˆ„;M ta‹Uü‹E ‰‚„‹M kÉ ·‘‹Eü‰€‹M kÉ ·‘‹Eü‰Œ‹M kÉ ·‘‹Eü‰‹M kÉ ·‘‹Eü‰P|‹Mü‹U‰‘ˆ‹Eø‹å] l Œ ¢/Ì â ø  U‹ìQƒ}t ‹Eƒxu¸þÿÿÿë8‹M‹Q‰Uü‹Eü‹M ‰ˆŒ‹Uü‹E‰‚€‹Mü‹U‰‘‹Eü‹M‰H|3À‹å]ÂU‹ìƒì‹E ƒÀÁèE ‹M ƒÁ?ÁéT‰Uøƒ}t ‹Eƒxu ‹EøƒÀé2‹M‹Q‰Uü‹Eü‹H‰Mìƒ}ìtƒ}ìtƒ}ìt)éÊÇEôéÅ‹Uü‹Bl÷ØÀƒàƒÀ‰Eôé­ÇEô‹Müƒy„‹Uü‹Bƒxt‹Mü‹Q‹B‹MôT‰Uô‹Eü‹H‹Q‰Uðƒ}ðt‹EôƒÀ‰Eô‹Mð¶‹EðƒÀ‰Eð…Òuä‹Mü‹Q‹B$‰Eðƒ}ðt‹MôƒÁ‰Mô‹Uð¶‹MðƒÁ‰Mð…Àuä‹Uü‹Bƒx,t ‹MôƒÁ‰MôëÇEô‹Uüƒz0u ‹EüƒxPt‹EøEôë‹M Áé M ‹U ÁêÊ‹E ÁèMôD‹å]ÂU‹ìƒì@Vƒ}t‹Eƒxt ƒ} ƒ} } ¸þÿÿÿép‹M‹Q‰Uü‹Eƒx t#‹Mƒ9u ‹Uƒzu‹Eüxšuƒ} t‹M‹‰Q¸þÿÿÿé%‹Eƒxu‹M‹‰Q¸ûÿÿÿé‹Eü‹M‰‹Uü‹B(‰Eø‹Mü‹U ‰Q(‹Eüƒx*…"‹Müƒy…jjjè‹U‰B0‹Eü‹H‹Uü‹BÆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹Eü‹HÆ ‹‹Uü‹BƒÀ‹Mü‰A‹Uü‹B‹Mü‹QÆ‹Eü‹HƒÁ‹Uü‰J‹Eüƒx…-‹Mü‹Q‹Eü‹HÆ ‹Uü‹BƒÀ‹Mü‰A‹Uü‹B‹Mü‹QÆ‹Eü‹HƒÁ‹Uü‰J‹Eü‹H‹Uü‹BÆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹Eü‹HÆ ‹Uü‹BƒÀ‹Mü‰A‹Uü‹B‹Mü‹QÆ‹Eü‹HƒÁ‹Uü‰J‹Eüƒ¸„ u ÇEÔë.‹Müƒ¹ˆ}‹Uüƒº„| ÇEÐëÇEЋEЉEÔ‹Mü‹Q‹Eü‹HŠEÔˆ ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹Eü‹HÆ ‹Uü‹BƒÀ‹Mü‰A‹UüÇBqéh‹Eü‹H3Òƒ9•‹Eü‹H‹A,÷ØÀƒàЋMü‹A‹H÷ÙɃáÑ‹Eü‹H‹A÷ØÀƒàЋMü‹A‹H$÷ÙɃáÑ‹Eü‹H‹Eü‹@ˆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹B%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰A‹Uü‹B‹HÁéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹Eü‹H‹QÁêâÿ‹Eü‹H‹Eü‹@ˆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹BÁè%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰A‹Uüƒº„ u ÇEÌë.‹Eüƒ¸ˆ}‹Müƒ¹„| ÇEÈëÇEÈ‹UȉUÌ‹Eü‹H‹Uü‹BŠÜ‹Eü‹HƒÁ‹Uü‰J‹Eü‹H‹Q âÿ‹Eü‹H‹Eü‹@ˆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Qƒzt\‹Eü‹H‹Qâÿ‹Eü‹H‹Eü‹@ˆ‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q‹BÁè%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰A‹Uü‹Bƒx,t ‹Mü‹QR‹Eü‹HQ‹U‹B0Pè‹M‰A0‹UüÇB ‹EüÇ@Eé‹Mü‹Q0ƒêÁâƒÂÁâ‰Uð‹Eüƒ¸ˆ} ‹Müƒ¹„} ÇEôë1‹Uüƒº„} ÇEôë‹Eüƒ¸„u ÇEôëÇEô‹MôÁá Mð‰Mð‹Uüƒzlt ‹EðƒÈ ‰Eð‹Eð3Ò¹÷ñ¸+ÂEð‰Eð‹MüÇAq‹UðR‹EüPèƒÄ‹Müƒylt.‹U‹B0ÁèP‹MüQèƒÄ‹U‹B0%ÿÿP‹MüQèƒÄjjjè‹U‰B0‹EüƒxE…V‹Mü‹Qƒz„<‹Eü‹H‰Mì‹Uü‹B‹Háÿÿ‹Uü9J ƒ´‹Eü‹Mü‹P;Q ub‹Eü‹Hƒy,t1‹Uü‹B;Eìv&‹Mü‹Q+UìR‹Eü‹HMìQ‹U‹B0Pè‹M‰A0‹URèƒÄ‹Eü‹H‰Mì‹Uü‹Eü‹J;H uëD‹Uü‹B‹H‹Uü‹B ‹Uü‹R‹uü‹vŠˆ2‹Mü‹QƒÂ‹Eü‰P‹Mü‹Q ƒÂ‹Eü‰P é1ÿÿÿ‹Mü‹Qƒz,t1‹Eü‹H;Mìv&‹Uü‹B+EìP‹Mü‹QUìR‹E‹H0Qè‹U‰B0‹Eü‹H‹Uü‹B ;Au‹MüÇA ‹UüÇBIë ‹EüÇ@I‹MüƒyI…C‹Uü‹Bƒx„)‹Mü‹Q‰Uè‹Eü‹Mü‹P;Q ui‹Eü‹Hƒy,t1‹Uü‹B;Eèv&‹Mü‹Q+UèR‹Eü‹HMèQ‹U‹B0Pè‹M‰A0‹URèƒÄ‹Eü‹H‰Mè‹Uü‹Eü‹J;H u ÇEäëP‹Uü‹B‹H‹Uü‹B ¶ ‰Mä‹Uü‹B ƒÀ‹Mü‰A ‹Uü‹B‹Mü‹QŠMäˆ ‹Uü‹BƒÀ‹Mü‰Aƒ}ä…9ÿÿÿ‹Uü‹Bƒx,t1‹Mü‹Q;Uèv&‹Eü‹H+MèQ‹Uü‹BEèP‹M‹Q0Rè‹M‰A0ƒ}äu‹UüÇB ‹EüÇ@[ë ‹MüÇA[‹Uüƒz[…9‹Eü‹Hƒy$„‹Uü‹B‰Eà‹Mü‹Uü‹A;B ui‹Mü‹Qƒz,t1‹Eü‹H;Màv&‹Uü‹B+EàP‹Mü‹QUàR‹E‹H0Qè‹U‰B0‹EPèƒÄ‹Mü‹Q‰Uà‹Eü‹Mü‹P;Q u ÇEÜëP‹Eü‹H‹Q$‹Eü‹H ¶ ‰UÜ‹Eü‹H ƒÁ‹Uü‰J ‹Eü‹H‹Uü‹BŠU܈‹Eü‹HƒÁ‹Uü‰Jƒ}Ü…9ÿÿÿ‹Eü‹Hƒy,t1‹Uü‹B;Eàv&‹Mü‹Q+UàR‹Eü‹HMàQ‹U‹B0Pè‹M‰A0ƒ}Üu ‹UüÇBgë ‹EüÇ@g‹Müƒyg…º‹Uü‹Bƒx,„ ‹Mü‹QƒÂ‹Eü;P v ‹MQèƒÄ‹Uü‹BƒÀ‹Mü;A wp‹U‹B0%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰A‹U‹B0Áè%ÿ‹Mü‹Q‹Mü‹Iˆ ‹Uü‹BƒÀ‹Mü‰Ajjjè‹U‰B0‹EüÇ@që ‹MüÇAq‹Uüƒzt(‹EPèƒÄ‹Mƒyu‹UüÇB(ÿÿÿÿ3ÀéÎë,‹Eƒxu#‹M ;Møƒ} t‹U¡‰B¸ûÿÿÿé ‹Müyšu‹Uƒzt‹E‹ ‰H¸ûÿÿÿéu‹Uƒzu#‹Eüƒxtuƒ} „j‹Müyš„Z‹Uüƒºˆu‹E P‹MüQèƒÄ‰EÄëI‹Uüƒºˆu‹E P‹MüQèƒÄ‰EÀë"‹U R‹EüP‹Mü‹‘„kÒ ‹‚ÿЃÄ‰EÀ‹MÀ‰MÄ‹UĉU؃}Øtƒ}Øu ‹EüÇ@šƒ}Øtƒ}Øu‹Mƒyu ‹UüÇB(ÿÿÿÿ3Àéƒ}Ø…¤ƒ} u‹EüPèƒÄëjƒ} tdjjj‹MüQèƒÄƒ} uL‹Uü‹BL‹Mü‹QD3Éf‰LBþ‹Uü‹BLLþQj‹Uü‹BDPèƒÄ ‹Müƒytu‹UüÇBl‹EüÇ@\‹MQèƒÄ‹Uƒzu‹EüÇ@(ÿÿÿÿ3Àéïƒ} t3Àéâ‹Müƒy ¸éÏ‹Uüƒz…d‹E‹H0áÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹H0Áéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹H0Áéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹H0Áéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹Háÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹HÁéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹HÁéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰J‹E‹HÁéáÿ‹Uü‹B‹Uü‹Rˆ ‹Eü‹HƒÁ‹Uü‰Jë/‹E‹H0ÁéQ‹UüRèƒÄ‹E‹H0áÿÿQ‹UüRèƒÄ‹EPèƒÄ‹Müƒy~‹Uü‹B÷Ø‹Mü‰A‹Uü3Àƒz”À^‹å]Âf…Ѽ5¯5Ç5Õap8©¸8bù 8²  8 ­ 8ë  h [‰ X«  2. 1c 0Œ 8M5f5r8U‹ì‹E Áè‹M‹Q‹M‹Iˆ ‹U‹BƒÀ‹M‰A‹U âÿ‹E‹H‹E‹@ˆ‹M‹QƒÂ‹E‰P]ÃU‹ìQ‹E‹H‹Q‰Uü‹E‹Mü;Hv ‹U‹B‰Eüƒ}üué’‹MüQ‹U‹B‹HQ‹U‹B PèƒÄ ‹M‹Q Uü‹E‰P ‹M‹Q‹BEü‹M‹Q‰B‹E‹HMü‹U‰J‹E‹H+Mü‹U‰J‹E‹H‹Q+Uü‹E‹H‰Q‹U‹Bƒxu‹M‹Q‹E‹H‹R‰Q‹å]ÃEU‹ìQƒ}t ‹Eƒxu ¸þÿÿÿé‹M‹Q‹B‰Eüƒ}ü*t1ƒ}üEt+ƒ}üIt%ƒ}ü[tƒ}ügtƒ}üqt}üšt ¸þÿÿÿéÒ‹M‹Qƒzt‹E‹H‹QR‹E‹H(Q‹U‹B$ÿЃÄ‹M‹QƒzDt‹E‹H‹QDR‹E‹H(Q‹U‹B$ÿЃÄ‹M‹Qƒz@t‹E‹H‹Q@R‹E‹H(Q‹U‹B$ÿЃÄ‹M‹Qƒz8t‹E‹H‹Q8R‹E‹H(Q‹U‹B$ÿЃÄ‹M‹QR‹E‹H(Q‹U‹B$ÿЃÄ‹MÇA3Àƒ}üq•Àƒèƒàý‹å]ÂU‹ìƒì ƒ} tƒ}t ‹E ƒxu ¸þÿÿÿé/‹M ‹Q‰Uôj8‹E P‹MQèƒÄ hÄj‹U‹B(P‹M‹Q ÿÒƒÄ ‰Eøƒ}øu ¸üÿÿÿéè‹E‹Mø‰HhÄ‹UôR‹EøPèƒÄ ‹Mø‹U‰j‹Eø‹H,Q‹U‹B(P‹M‹Q ÿÒƒÄ ‹Mø‰A8j‹Uø‹B,P‹M‹Q(R‹E‹H ÿÑƒÄ ‹Uø‰B@j‹Eø‹HLQ‹U‹B(P‹M‹Q ÿÒƒÄ ‹Mø‰ADj‹Uø‹‚œP‹M‹Q(R‹E‹H ÿÑƒÄ ‰Eü‹Uø‹Eü‰B‹Møƒy8t‹Uøƒz@t‹EøƒxDt ‹Møƒyu‹URè¸üÿÿÿéþ‹Eø‹H,ÑáQ‹Uô‹B8P‹Mø‹Q8RèƒÄ ‹Eø‹H,ÑáQ‹Uô‹B@P‹Mø‹Q@RèƒÄ ‹Eø‹HLÑáQ‹Uô‹BDP‹Mø‹QDRèƒÄ ‹Eø‹H Q‹Uô‹BP‹Mø‹QRèƒÄ ‹Eô‹Mô‹P+Q‹EøP‹Mø‰Q‹Uø‹‚œÑè‹MüA‹Eø‰¤‹Mø‹‘œkÒ‹EøP‹Mø‰‘˜‹UøÂ”‹Eø‰ ‹MøÁˆ ‹Uø‰Š$ ‹Eø| ‹Mø‰0 3À‹å]Â9ƒH;n¬ÉU‹ì‹E‹H,Ñá‹U‰J<‹E‹HL‹U‹BD3Òf‰THþ‹E‹HLT þRj‹E‹HDQèƒÄ ‹U‹‚„kÀ ·ˆ‹U‰Š€‹E‹ˆ„kÉ ·‘‹E‰Œ‹M‹‘„kÒ ·‚‹M‰‹U‹‚„kÀ ·ˆ‹U‰J|‹EÇ@l‹MÇA\‹UÇBt‹EÇ@x‹MÇA`‹UÇBh‹EÇ@Hè]Ã90O k ‡ £ ôBU‹ìƒìÇEøÿÿ‹E‹H ƒé9Møv ‹U‹B ƒè‰Eø‹Mƒytw0‹URèƒÄ‹Eƒxtu ƒ} u3Àéê‹MƒytuéQ‹U‹Bl‹MAt‹U‰Bl‹EÇ@t‹M‹Q\Uø‰Uü‹Eƒxlt‹M‹Ql;Uü‚„‹E‹Hl+Mü‹U‰Jt‹E‹Mü‰Hl‹Uƒz\|‹E‹H8‹UJ\‰MôëÇEôj‹E‹M‹Pl+Q\R‹EôP‹MQèƒÄ‹U‹E‹Hl‰J\‹U‹PèƒÄ‹M‹ƒzu3Àé‹E‹M‹Pl+Q\‹E‹H,é;Ñrl‹Uƒz\|‹E‹H8‹UJ\‰MðëÇEðj‹E‹M‹Pl+Q\R‹EðP‹MQèƒÄ‹U‹E‹Hl‰J\‹U‹PèƒÄ‹M‹ƒzu3Àéévþÿÿ‹Eƒx\|‹M‹Q8‹EP\‰UìëÇEì3Ƀ} ”ÁQ‹U‹E‹Jl+H\Q‹UìR‹EPèƒÄ‹M‹U‹Bl‰A\‹M‹RèƒÄ‹E‹ƒyu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD‹å]Ã5IñF 8yF“8òF 8U‹ìƒì$‹E‹H,‰Mð‹U‹E‹J<+Ht‹U+Jl‰Mô3Àt/ƒ}ôu‹Mƒylu‹Uƒztu‹Eð‰Eôëƒ}ôÿu ‹Môƒé‰Mô‹U‹B,‹Mð”úþÿÿ‹E9Pl‚‹MðQ‹U‹B8EðP‹M‹Q8RèƒÄ ‹E‹Hp+Mð‹U‰Jp‹E‹Hl+Mð‹U‰Jl‹E‹H\+Mð‹U‰J\‹E‹HL‰Mø‹U‹BD‹MøH‰Uü‹Eüƒè‰Eü‹Mü·‰Uì‹Eì;Eðr ‹Mì+Mð‰MàëÇEà‹Uüf‹Eàf‰‹Møƒé‰Møu¿‹Uð‰Uø‹E‹H@‹UøQ‰Eü‹Müƒé‰Mü‹Uü·‰Eì‹Mì;Mðr ‹Uì+Uð‰UÜëÇEÜ‹Eüf‹MÜf‰‹Uøƒê‰Uøu¿‹EôEð‰Eô‹M‹ƒzuéš‹EôP‹M‹Q8‹EPl‹MQtR‹U‹PèƒÄ ‰Eø‹M‹QtUø‹E‰Pt‹MƒytrC‹U‹B8‹M‹Ql¶‹M‰AH‹U‹E‹RH‹HXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹Uzts‹E‹ƒy…ìýÿÿ‹U‹E‹ŠÀ;H<ƒç‹U‹Bl‹MAt‰Eä‹U‹‚À;EäsH‹M‹Q<+Uä‰Uè}èvÇEè‹EèPj‹M‹Q8UäRèƒÄ ‹EäEè‹M‰Àé‚‹Uä‹E9Àsn‹MäÁ‹U+ŠÀ‰Mè‹E‹M‹P<+‘À9Uèv‹E‹M‹P<+‘À‰Uè‹EèPj‹M‹Q8‹EÀRèƒÄ ‹M‹‘ÀUè‹E‰À‹å]É£L‚00U‹ìQ‹E‹H‰Mü‹Uü;Uv‹E‰Eüƒ}üu3Àé–‹M‹Q+Uü‹E‰P‹M‹Qƒzu‹EüP‹M‹R‹E‹H0Qè‹U‰B0ë(‹E‹Hƒyu‹UüR‹E‹Q‹U‹B0Pè‹M‰A0‹UüR‹E‹Q‹U RèƒÄ ‹E‹Mü‹U‰ ‹E‹HMü‹U‰J‹Eü‹å]ÃU˜U‹ìƒì V‹Exts3‹MQèƒÄ‹Uzts ƒ} u3Àé ‹EƒxtuérÇEø‹Mƒyt‚ƒ‹U‹E‹RH‹HXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹U‹BH‹M‹QD‹M‹u‹Il#N4‹u‹v@f‹Bf‰N‹E‹M‹Pl#Q4‹E‹H@·Q‰Uø‹E‹HH‹U‹BD‹Uf‹Rlf‰Hƒ}øt.‹E‹Hl+Mø‹U‹B,-;Èw‹MøQ‹URèƒÄ‹M‰A`‹Uƒz`‚o‹E‹H`ƒéˆM÷‹U‹E‹Jl+Hpf‰Mð‹U‹‚ ‹M‹‘¤f‹Mðf‰ B‹U‹‚˜‹M‹‘ ŠM÷ˆ ‹U‹‚ ƒÀ‹M‰ f‹Uðfƒêf‰Uð¶E÷¶ˆ‹Uf‹„Š˜fƒÀ¶M÷¶‘‹Mf‰„‘˜·Uðú}·E𶈉Mèë·UðÁú¶‚‰Eè‹Mè‹Uf‹„Šˆ fƒÀ‹Mè‹Uf‰„Šˆ ‹E‹ˆœƒé‹U3À9Š ”À‰Eü‹M‹U‹At+B`‹M‰At‹U‹E‹J`;ˆ€‡Û‹Uƒzt‚΋E‹H`ƒé‹U‰J`‹E‹HlƒÁ‹U‰Jl‹E‹M‹PH‹IXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹U‹BH‹M‹QD‹M‹u‹Il#N4‹u‹v@f‹Bf‰N‹E‹M‹Pl#Q4‹E‹H@·Q‰Uø‹E‹HH‹U‹BD‹Uf‹Rlf‰H‹E‹H`ƒé‹U‰J`‹Eƒx`…Rÿÿÿ‹M‹QlƒÂ‹E‰Plë_‹M‹Ql‹EP`‹M‰Ql‹UÇB`‹E‹H8‹U‹Bl¶ ‹U‰JH‹E‹M‹PH‹IXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QHé´‹U‹B8‹M‹QlŠˆEï‹M‹‘ ‹E‹ˆ¤3Àf‰Q‹M‹‘˜‹E‹ˆ ŠEïˆ ‹M‹‘ ƒÂ‹E‰ ¶Mï‹Uf‹„Š”fƒÀ¶Mï‹Uf‰„Š”‹E‹ˆœƒé‹U3À9Š ”À‰Eü‹M‹Qtƒê‹E‰Pt‹M‹QlƒÂ‹E‰Plƒ}ütl‹Mƒy\|‹U‹B8‹MA\‰EäëÇEäj‹U‹E‹Jl+H\Q‹UäR‹EPèƒÄ‹M‹U‹Bl‰A\‹M‹RèƒÄ‹E‹ƒyu3ÀééOûÿÿ‹Uƒz\|‹E‹H8‹UJ\‰MàëÇEà3Àƒ} ”ÀP‹M‹U‹Al+B\P‹MàQ‹URèƒÄ‹E‹M‹Ql‰P\‹E‹QèƒÄ‹U‹ƒxu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD^‹å]ÃIR”Q®QÐPãP€Fš8ùF8U‹ìƒì(V‹Exts3‹MQèƒÄ‹Uzts ƒ} u3Àé ‹EƒxtuéYÇEø‹Mƒyt‚ƒ‹U‹E‹RH‹HXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹U‹BH‹M‹QD‹M‹u‹Il#N4‹u‹v@f‹Bf‰N‹E‹M‹Pl#Q4‹E‹H@·Q‰Uø‹E‹HH‹U‹BD‹Uf‹Rlf‰H‹E‹M‹Q`‰Px‹E‹M‹Qp‰Pd‹EÇ@`ƒ}øt|‹M‹U‹Ax;‚€sk‹M‹Ql+Uø‹E‹H,é;ÑwR‹UøR‹EPèƒÄ‹M‰A`‹Uƒz`w3‹Eƒ¸ˆt‹Mƒy`u‹U‹E‹Jl+Hpùv ‹UÇB`‹Eƒxx‚®‹M‹U‹A`;Bx‡œ‹M‹Ql‹E‹HtT ý‰Uô‹E‹HxƒéˆMó‹U‹Blƒè‹M+Adf‰Eì‹U‹‚ ‹M‹‘¤f‹Mìf‰ B‹U‹‚˜‹M‹‘ ŠMóˆ ‹U‹‚ ƒÀ‹M‰ f‹Uìfƒêf‰Uì¶E󶈋Uf‹„Š˜fƒÀ¶Mó¶‘‹Mf‰„‘˜·Uìú}·E춈‰Mäë·UìÁú¶‚‰Eä‹Mä‹Uf‹„Šˆ fƒÀ‹Mä‹Uf‰„Šˆ ‹E‹ˆœƒé‹U3À9Š ”À‰Eü‹M‹Qxƒê‹E‹Ht+Ê‹U‰Jt‹E‹Hxƒé‹U‰Jx‹E‹HlƒÁ‹U‰Jl‹E‹Hl;Mô‡ƒ‹U‹E‹RH‹HXÓâ‹E‹Hl‹E‹@8¶L3Ñ‹E#PT‹M‰QH‹U‹BH‹M‹QD‹M‹u‹Il#N4‹u‹v@f‹Bf‰N‹E‹M‹Pl#Q4‹E‹H@·Q‰Uø‹E‹HH‹U‹BD‹Uf‹Rlf‰H‹E‹Hxƒé‹U‰Jx‹Eƒxx…Cÿÿÿ‹MÇAh‹UÇB`‹E‹HlƒÁ‹U‰Jlƒ}ütl‹Eƒx\|‹M‹Q8‹EP\‰UàëÇEàj‹M‹U‹Al+B\P‹MàQ‹URèƒÄ‹E‹M‹Ql‰P\‹E‹QèƒÄ‹U‹ƒxu3Àé¡é^‹Mƒyh„)‹U‹Bl‹M‹Q8ŠDÿˆEë‹M‹‘ ‹E‹ˆ¤3Àf‰Q‹M‹‘˜‹E‹ˆ ŠEëˆ ‹M‹‘ ƒÂ‹E‰ ¶Më‹Uf‹„Š”fƒÀ¶Më‹Uf‰„Š”‹E‹ˆœƒé‹U3À9Š ”À‰Eüƒ}ütZ‹Mƒy\|‹U‹B8‹MA\‰EÜëÇEÜj‹U‹E‹Jl+H\Q‹UÜR‹EPèƒÄ‹M‹U‹Bl‰A\‹M‹RèƒÄ‹E‹HlƒÁ‹U‰Jl‹E‹Htƒé‹U‰Jt‹E‹ƒyu3Àéhë(‹UÇBh‹E‹HlƒÁ‹U‰Jl‹E‹Htƒé‹U‰Jtéhúÿÿ‹Eƒxh„¡‹M‹Ql‹E‹H8ŠT ÿˆUê‹E‹ˆ ‹U‹‚¤3Òf‰H‹E‹ˆ˜‹U‹‚ ŠUꈋE‹ˆ ƒÁ‹U‰Š ¶Eê‹Mf‹””fƒÂ¶Eê‹Mf‰””‹U‹‚œƒè‹M3Ò9 ”‰Uü‹EÇ@h‹Mƒy\|‹U‹B8‹MA\‰EØëÇEØ3Òƒ} ”ÂR‹E‹M‹Pl+Q\R‹EØP‹MQèƒÄ‹U‹E‹Hl‰J\‹U‹PèƒÄ‹M‹ƒzu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD^‹å]ÃI8R,QFQhP{PF8F98ŽF¨8U‹ìƒì(‹Exts3‹MQèƒÄ‹Uzts ƒ} u3Àé„‹Eƒxtuéë‹MÇA`‹Uƒzt‚h‹Eƒxl†[‹M‹Q8‹E‹HlT ÿ‰Uø‹Eø¶‰Mü‹UøƒÂ‰Uø‹Eø¶9Mü…'‹UøƒÂ‰Uø‹Eø¶9Mü…‹UøƒÂ‰Uø‹Eø¶9Mü…÷‹U‹B8‹M‹Ql„‰Eð‹MøƒÁ‰Mø‹Uø¶9Eü…œ‹MøƒÁ‰Mø‹Uø¶9Eü…„‹MøƒÁ‰Mø‹Uø¶9Eüup‹MøƒÁ‰Mø‹Uø¶9Eüu\‹MøƒÁ‰Mø‹Uø¶9EüuH‹MøƒÁ‰Mø‹Uø¶9Eüu4‹MøƒÁ‰Mø‹Uø¶9Eüu ‹MøƒÁ‰Mø‹Uø¶9Eüu ‹Mø;Mð‚Lÿÿÿ‹Uð+Uø¸+‹M‰A`‹U‹E‹J`;Htv ‹U‹E‹Ht‰J`‹Uƒz`‚4‹E‹H`ƒéˆMïºf‰Uè‹E‹ˆ ‹U‹‚¤f‹Uèf‰H‹E‹ˆ˜‹U‹‚ ŠUE‹ˆ ƒÁ‹U‰Š f‹Eèfƒèf‰Eè¶Mï¶‘‹Ef‹Œ˜fƒÁ¶Uï¶‚‹Uf‰Œ‚˜·Eè=}·Mè¶‘‰Uàë·EèÁø¶ˆ‰Mà‹Uà‹Ef‹Œˆ fƒÁ‹Uà‹Ef‰Œˆ ‹M‹‘œƒê‹E3É9 ”Á‰Mô‹U‹E‹Jt+H`‹U‰Jt‹E‹Hl‹UJ`‹E‰Hl‹MÇA`é´‹U‹B8‹M‹QlŠˆEç‹M‹‘ ‹E‹ˆ¤3Àf‰Q‹M‹‘˜‹E‹ˆ ŠEçˆ ‹M‹‘ ƒÂ‹E‰ ¶Mç‹Uf‹„Š”fƒÀ¶Mç‹Uf‰„Š”‹E‹ˆœƒé‹U3À9Š ”À‰Eô‹M‹Qtƒê‹E‰Pt‹M‹QlƒÂ‹E‰Plƒ}ôtl‹Mƒy\|‹U‹B8‹MA\‰EÜëÇEÜj‹U‹E‹Jl+H\Q‹UÜR‹EPèƒÄ‹M‹U‹Bl‰A\‹M‹RèƒÄ‹E‹ƒyu3ÀééÖûÿÿ‹Uƒz\|‹E‹H8‹UJ\‰MØëÇEØ3Àƒ} ”ÀP‹M‹U‹Al+B\P‹MØQ‹URèƒÄ‹E‹M‹Ql‰P\‹E‹QèƒÄ‹U‹ƒxu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD‹å]ÃI@QZQ{PŽPøF8qF‹8U‹ìƒì‹Eƒxtu'‹MQèƒÄ‹Uƒztuƒ} u3ÀéÅé5‹EÇ@`‹M‹Q8‹E‹HlŠ ˆUû‹E‹ˆ ‹U‹‚¤3Òf‰H‹E‹ˆ˜‹U‹‚ ŠUûˆ‹E‹ˆ ƒÁ‹U‰Š ¶Eû‹Mf‹””fƒÂ¶Eû‹Mf‰””‹U‹‚œƒè‹M3Ò9 ”‰Uü‹E‹Htƒé‹U‰Jt‹E‹HlƒÁ‹U‰Jlƒ}ütl‹Eƒx\|‹M‹Q8‹EP\‰UôëÇEôj‹M‹U‹Al+B\P‹MôQ‹URèƒÄ‹E‹M‹Ql‰P\‹E‹QèƒÄ‹U‹ƒxu3Àéé›þÿÿ‹Mƒy\|‹U‹B8‹MA\‰EðëÇEð3Òƒ} ”ÂR‹E‹M‹Pl+Q\R‹EðP‹MQèƒÄ‹U‹E‹Hl‰J\‹U‹PèƒÄ‹M‹ƒzu3Àƒ} •Àƒèƒàë 3Àƒ} ”ÀD‹å]ÃI3FM8¬FÆ8@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.rdataÆ Ðú±ðH,À.text$š¶j²O .text7lrè` r_zcfree _zcalloc .text½žýi·| _memcpy • .textÿôÃYò¡ ± » .text>xa2Å .text Kß(Ù .text -Y/M½ê .text X»†6ü .text te¸6<  .text £ ‡òR _memset ' 9 .textP>AŽD .textÅ÷“oQ .text8ºPX` .textZ9&Ún .textúÓ®Ã_lm_init } .text@©Óê9‰ ™ .text#îîNLª .textÂ­Š¢¾· .textH ªâøçÁ ÏÛé .textÝ ~>À&ø .text¿ ݺ .textúu\&‰ !_deflate_copyright_configuration_table?my_version@?1??deflateInit2_@@9@9_deflateInit_@16_deflateInit2_@32_z_errmsg_deflateSetDictionary@12_adler32@12_deflateReset@4__tr_init_crc32@12_deflateSetHeader@8_deflatePrime@12_deflateParams@12_deflateTune@20_deflateBound@8_deflate@8__tr_stored_block__tr_align_putShortMSB_flush_pending_deflateEnd@4_deflateCopy@8_match_init_deflate_stored__tr_flush_block_fill_window_read_buf_deflate_fast__dist_code__length_code_longest_match_deflate_slow_deflate_rle_deflate_huff/591 1315202896 100666 13862 ` L PgdN3$.drectve]ô .debug$S°Q@B.rdata @@@.text # # P`.text#% P`.textò„%v)& P`.textfò*X/& P`.textÔ0ï0 P`.textù02 P`.text>R2 P`.textA2Ñ2 P`.textÛ2ö2 P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ£ec:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\crc32.obj:<RRMicrosoft (R) Optimizing Compiler–0w,aîºQ ™Ämôjp5¥c飕dž2ˆÛ¤¸ÜyéÕàˆÙÒ—+L¶ ½|±~-¸ç‘¿d·ò °jHq¹óÞA¾„}ÔÚëäÝmQµÔôÇ…ÓƒV˜lÀ¨kdzùbýìÉeŠO\Ùlcc=úõ È n;^iLäA`Õrqg¢Ñäjm ¨Zjz Ïäÿ “'® ±ž}D“ðÒ£‡hòþÂi]Wb÷Ëge€q6lçknvÔþà+Ó‰ZzÚÌJÝgoß¹ùùホC¾·Õް`è£ÖÖ~“Ñ¡ÄÂØ8RòßOñg»ÑgW¼¦Ýµ?K6²HÚ+ ØL ¯öJ6`zAÃï`ßUßg¨ïŽn1y¾iFŒ³a˃f¼ Òo%6âhR•w ÌG »¹"/&U¾;ºÅ( ½²’Z´+j³\§ÿ×Â1Ïе‹žÙ,®Þ[°Âd›&òc윣ju “m© œ?6ë…grW‚J¿•z¸â®+±{8¶ ›ŽÒ’ ¾Õå·ïÜ|!ßÛ ÔÒÓ†BâÔñø³ÝhnƒÚ;[&¹öáw°owG·æZˆpjÿÊ;f\ ÿžei®bøÓÿkaEÏlxâ  îÒ ×TƒN³9a&g§÷`ÐMGiIÛwn>JjÑ®ÜZÖÙf ß@ð;Ø7S®¼©Åž»ÞϲGéÿµ0ò½½ŠÂºÊ0“³S¦£´$6к“×Í)WÞT¿gÙ#.zf³¸JaÄh]”+o*7¾ ´¡Ž ÃßZï-A1‚b62ÃS-+ÅldEôw}†§ZVÇ–AOŠÙÈI»ÂÑŠèïúËÙôã Oµ¬M~®µŽ-ƒžÏ˜‡QÂJ#ÙSÓpôx’AïaU×®.æµ7×µ˜–„ƒY˜‚©›Ûú-°šË6©]]wællÿß?AÔžZÍ¢$„•㟌 F²§aw©¾¦áèñçÐóè$ƒÞÃe²ÅÚª®]]ëŸFD(Ìkoiýpv®k19ïZ* ,  m8ó6Fß²]ÆqTpí0ekô÷ó*»¶Â1¢u‘‰4 û¼Ÿº„yÞ©%8ï²<ÿyós¾Hèj}ÅA<*ÞXOyðD~bé‡-OÂÆTÛŠ”@»ƒè#¦ÂÙ8¿ Å 8Lô»!§– Ζ Ì\H1×E‹búnÊSáwT]»ºl £Ö?ˆ—–‘P˜×Þ©ÌÇÒúáì“Ëúõ\×bræykÞµT@Ÿ„OYX#Úp8$›A#=§kýeæZæ|% ËWd8ÐN£®‘⟊!̧3`ý¼*¯á$­îÐ?´-ƒŸl² †«$HÉêSÐ)F~ûhweâöy?/·H$6t 5*ò¼SK³HRpÞey1ï~`þóæç¿Âýþ|‘ÐÕ= ËÌú6Šƒ»‘šxT¼±9e§¨K˜ƒ; ©˜"Éúµ ˆË®O]ï_lôFÍ?ÙmŒÂtCZó#AêÁplÁ€AwØG×6—æ-ŽÅµ¥„„¼ŠAq[»Zh˜èwCÙÙlZO-_~6 œ-'Ý>˜¹S1ƒ b®‹ÑSµ’ÅôÝWôïÄ”§ÂïÕ–Ùöé¼®¨·kÞ1œ*ï*…íykʬHpÓo]ø.*Fáá6Þf ÅcTèT"eóMåó²¤Â©g‘„0& Ÿ)¸®ÅäùŸÞý:ÌóÖ{ýèϼk©€ýZ²™> Ÿ²8„«°$,ñ52F*sw1´ápHõÐkQ6ƒFzw²]cN×úËæáÒ̵Ìù„×àJ–¯ #¶Èp ‰A»„F]#l8Ä?1…(B˜Og©T~ÀúyUËbLÅ8^ô#˜§³Ü–ªTåZ1Oü™bbרSyÎOáIV~úP•-×{ÔÌbŠ-R»–4‘è»ÐÙ ìó~^­ÂeGn‘Hl/ Suè6:© #jT$+e?äy§–¥H¼f‘¤'*нà¼Ëò¡ÐëbÞýÀ#ïæÙ½á¼üЧ ?ƒŠ&~²‘?¹$ÐpøËi;FæBzwý[µkeÜôZ~Å7 Sîv8H÷±® ¸ðŸ¡3Ì?Šrý$“7jÂnÔ„Y¾Fܨ ëÂ˲|…O¸Q;ÑÖ…— áïU dù S“Ø -ž =G\ p£&GÉäw¢)`¬ /›aíÂß«õµiÈò5ÿ˜÷¦&±‘LsZ<#0þzޏMäzàFM8×,9Ž’É;¹ø :<îD? „†>R:À(ôq-Ãv³,šÈõ.­¢7/Àšp÷çXq®Ys™3Ür%“w+OQvrñtE›Õux܉~O¶K }!bÏ|¤t€y“BxÊ zýÊÆ{°.¼l‡D~mÞú8oéúnl†µk[ìwjR1h58ói¯b?mcf«+aQÁé`Ôצeã½ddº"fiàg Ë×H¡INSKyu‘JücÞOË N’·ZL¥Ý˜M˜šÄF¯ðGöN@EÁ$‚DD2ÍAsX@*æIBŒ‹CPhñTg3U>¼uW Ö·VŒÀøS»ª:Râ|PÕ~¾Qè9âZßS [†ífY±‡¤X4‘ë]û)\ZEo^m/­_€5á·q÷àîϱâÙ¥sã\³<ækÙþç2g¸å zä8J&ï äîVž¢ìaô`íäâ/èÓˆíéŠ6«ë½\iêð¸ýÇÒÑüžl—þ©Uÿ,úzØûBÄžùu®\øHéóƒÂò&=„ðWFñ”A ô£+Ëõú•÷ÍÿOö`]xÙW7ºØ‰üÚ9ã>Û¼õqÞ‹Ÿ³ßÒ!õÝåK7ÜØ k×ïf©Ö¶ØïÔ²-Õ¤bÐ3ΠÑjpæÓ]$Òþ^Å'”œÄ~*ÚÆI@ÇÌVWÂû<•â‚ÓÁ•èÀ¨¯MËŸÅÊÆ{ÉÈñ ÉtDÌCm†ÍÓÀÏ-¹Î@–¯‘wüm.B+’(铜>¦–«Td—òê"•Å€à”øÇ¼ŸÏ­~ž–8œ¡yú$oµ˜w™J»1›}Ñóš05‰_KŒ^á Ži‹Ï쀊Û÷B‹‚I‰µ#ƈˆdšƒ¿X‚æ°€ÑÚÜTÌ“„c¦Q…:‡ rÕ† Ðâ©—º ¨Îfªùn¤«|xë®K)¯¬o­%Æ­¬ñ§/ë3¦vUu¤A?·¥Ä)ø óC:¡ªý|£—¾¢Ðsĵç´¾§@¶‰Í‚· ÛͲ;±³bI±Ue‹°h"×»_HºöS¸1œ‘¹´ŠÞ¼ƒà½Ú^Z¿í4˜¾eg¼¸‹È ªî¯µW—b2ðÞ7Ü_k%¹8×ï(´ÅŠO}dà½o‡׸¿ÖJÝØjò3wßàVcXŸWPú0¥èŸúqø¬BÈÀ{ß­§ÇgCru&oÎÍp­•-û·¤?žÐ‡'èÏBs¢¬ ưÉGz>¯2 [ÈŽµg; Ї²i8P/ _ì—âðY…‡—å=ч†e´à:ÝZOÏ?(3w†äêãwXR Øí@h¿Qø¡ø+ðÄŸ—H*0"ZOWžâöoI“õÇ}§@ÕÀümNП5+·#Å–Ÿ *'Gýº| A’ô÷èH¨=X›X?¨#¶1Ó÷¡‰jÏv¨Ê¬á¾„`ÃÒp ^·æY¸©ô<ßL…çÂÑà€~i/Ë{kHwâ ËÇh±s)ÇaL ¸Ùõ˜oDÿÓü~Pfî7ÚVM'¹(@¶Æï°¤£ˆ °Û×g9‘xÒ+ôn“÷&;fšƒˆ?/‘íX“)T`D´1ø ߨMºÏñ¦ìß’þ‰¸.Fg›Tp'ì»HðqÞ/LÉ0€ùÛUçEcœ ?kùǃÓh6ÁrŠyË7]ä®Pá\@ÿTN%˜èösˆ‹®ï7ø@‚'>¼$é!AxU™¯×à‹Ê°\3;¶Yí^ÑåU°~PGÕìÿl!;b F‡Úçé2È‚ŽŽpÔží(±ùQ_Vä‚:1X:ƒ §æn3Á† m¦:µ¤á@½Á†ü/)IJNõ¯óv"2–žŠx¾+˜Ù— KÉôx.®HÀÀýÒ¥fAj^–÷y9*O—–Ÿ]òñ#åkM`~×õŽÑbçë¶Þ_RŽ Â7éµzÙFh¼!¼Ðê1߈Vc0aùÖ"žj𽦽ØÁ¿6n´­S šNrÿ)Î¥†{·táÇÍÙ’¨¾¬*F8#v¥€ufÆØz`þ®Ïr›ÉsÊ"ñ¤WG–ï©9­ýÌ^EîMvc‰ñÎ&DÜèAødQy/ù4“AÚ±&S¿ÖšëéÆù³Œ¡E bðiL¡¾Q›<Û6'„5™’–Pþ..™¹T&üÞèžq]Œwá4Î.6©«IŠEæ? ƒ»v‘àãö\[ýYéI˜>Uñ!‚lDa>Ԫ΋ÆÏ©7~8AÖ]&Ãn³‰v|ÖîÊÄoÖY ±¡áäóy¨K×i˲w«\¡Â¹9Æ~€þ©œå™$ 6 6nQާf†ÂqÚ>,Þo,I¹Ó”ð •渱{I £.±H>ÒC-YnûÃöÛ馑gQ©°ÌzÎ t”a¹fñÞw0–îa,™ QºmÄpjôéc¥5žd•£Ûˆ2yܸ¤àÕé—ÒÙˆ ¶L+~±|½ç¸-¿‘·dj° òó¹qH„¾AÞÚÔ}mÝäëôÔµQƒÓ…Çl˜Vdk¨ÀýbùzŠeÉì\OclÙú=c õ;n ÈLi^Õ`Aä¢gqr<äÑKÔGÒ …ý¥ µk5µ¨úB²˜lÛ»ÉÖ¬¼ù@2ØlãEß\uÜÖ Ï«Ñ=Y&Ù0¬QÞ:È×Q€¿Ða!´ôµV³Ä#Ϻ•™¸½¥(¸ž_ˆÆ Ù²± é$/o|‡XhLÁa«¶f-=vÜAÛq˜Ò ¼ïÕ*q±…‰¶µŸ¿ä¥è¸Ô3xÉ¢ù4– ¨Žá˜j »m=-‘dl—æc\kkQôlab…e0ØòbNl•í¥{‚ôÁõÄWe°ÙÆ·éP‹¾¸êü¹ˆ|bÝßÚ-IŒÓ|óûÔLeM²aX:µQΣ¼tÔ»0âJߥA=ؕפÑÄmÓÖôûCiéj4nÙü­gˆFÚ`¸ÐD-s3åª L_Ý |ÉPq<'Aª¾ É †Whµ% o…³¹fÔ ÎaäŸ^Þù)Ùɘ°Ð˜"Çר´Y³=.´ ·½\;Àºl­í¸ƒ š¿³¶¶â t±ÒšêÕG9Òw¯Û&s܃ãc ”d;„ mj>zjZ¨äÏ “ ÿ ®'}ž±ð“D‡£ÒòhiÂþ÷bW]€egËl6qnkçþÔv‰Ó+àÚzZgÝJÌù¹ßo޾ïù·¾C`°ŽÕÖÖ£è¡Ñ“~8ØÂÄOßòRÑ»gñ¦¼Wg?µÝH²6KØ +Ú¯ L6JöAz`ß`ïègßU1nŽïFi¾yËa³Œ¼fƒ%oÒ Rhâ6Ì w•» G"¹U&/ź;¾²½ (+´Z’\³jÂ×ÿ§µÐÏ1,Ùž‹[Þ®›d°ìcò&uj£œm“ œ ©ë6?rg…W•¿J‚â¸z{±+® ¶8’ÒŽ›åÕ¾ |Üï· Ûß!†ÓÒÔñÔâBhݳøÚƒn¾Íö¹&[o°wá·GwˆZæÿjpf;Ê \ežÿøb®iakÿÓlÏE  âx× ÒîNƒT9³Â§g&aÐ`÷IiGM>nwÛ®ÑjJÙÖZÜ@ß f7Ø;𩼮SÞ»žÅG²Ï0µÿé½½òʺŠS³“0$´£¦ºÐ6ÍדTÞW)#Ùg¿³fz.ÄaJ¸]h*o+”´ ¾7Ã Ž¡Zß-ï1A26b‚+-SÃdlÅ}wôEVZ§†OA–ÇÈÙŠÑ»IúïèŠãôÙˬµO µ®~Mžƒ-އ˜ÏJÂQSÙ#xôpÓaïA’.®×U7µæ˜µ×ƒ„–‚˜Y›©°-úÛ©6Ëšæw]]ÿllÔA?ßÍZž•„$¢ŒŸã§²F ¾©wañèá¦èóÐçÃÞƒ$ÚŲe]]®ªDFŸëokÌ(vpýi91k® *Zï  ,8mßF6óÆ]²ípTqôke0»*ó÷¢1¶‰‘u 4Ÿ¼û„º%©Þy<²ï8sóyÿjèH¾AÅ}XÞ*<ðyOéb~DÂO-‡ÛTÆ”Š»@¦#胿8ÙÂ8 Å !»ôL –§–Î\Ì E×1Hnúb‹wáSʺ»]T£ lˆ?Ö‘–—ÞטPÇÌ©ìáúÒõúË“rb×\kyæ@TµÞYO„ŸX#$8pÚ=#A›eýk§|æZæWË %NÐ8d‘®£ŠŸâ3§Ì!*¼ý`­$᯴?Ð-† ²lÉH$«ÐSêû~F)âewh/?yö6$H· t*5KS¼òRH³yeÞp`~ï1çæóþþý¿ÕБ|ÌË =ƒŠ6úš‘»±¼Tx¨§e9;ƒ˜K"˜© µúɮˈ_ï]OFôlmÙ?ÍtÂŒóZCêA#ÁlpÁØwA€—6×GŽ-極ż„„qAŠhZ»[Cwè˜ZlÙÙ-O 6~_'-œ>ݹ˜ ƒ1S‹®b’µSÑÝôÅÄïôWï§”öÙ–Õ®¼é·¨œ1Þk…*ï*ÊkyíÓpH¬ø]oáF*.fÞ6áÅ TèTcMóe"²óå©Â¤0„‘g)Ÿ &äÅ®¸ýÞŸùÖóÌ:Ïèý{€©k¼™²Zý²Ÿ >«„8,$°5ñ*F21wsHpá´QkÐõzFƒ6c]²wËú×NÒáæù̵Ìàׄ¯–J¶#  pÈ„»A‰#]F8l1?Ä(…gO˜B~T©UyúÀLbË8Ř#ô^³§ª–ÜåTüO1Z×bb™ÎySØIáOPú~V{×-•bÌÔ-Š4–»R»è‘ ÙÐ^~óìGe­lH‘nuS /:6è# ©$Tj?e+–§yä¼H¥¤‘f½Š*'ò˼àëСÀýÞbÙæï#¼á½ §Ðü&Šƒ??‘²~pÐ$¹iËøBæF;[ýwzÜekµÅ~ZôîS 7÷H8v¸ ®±¡ŸðŠ?Ì3“$ýrÂj7„ÔnF¾Y ¨ÜËÂë|²O…Q¸Ñ; —…Ö Uïá ùdØ“S ž- \G=&£päÉG¢w`)/ ¬ía›«ßÂiµõ5òÈ÷˜ÿ±&¦sL‘†„ <À:R=Pe6^X7œ}o5ÚÃ64©1W¿„0•Õ³2Ókê3Ý$kå%©§'ï1þ&-[É#bML" '{ æ™"!$ó*x´(+ºÞ)ü`F(> q-qô,³vÃ.õÈš/7¢­pšÀqXç÷sY®rÜ3™w“%vQO+tñruÕ›E~‰ÜxK¶O} |Ïb!y€t¤xB“z Ê{ÆÊýl¼.°m~D‡o8úÞnúékµ†ljwì[h1Rió85b¯cm?a+«f`éÁQe¦×Ôdd½ãf"ºgàiH×Ë I¡KSNJ‘uyOÞcüN ËLZ·’M˜Ý¥FÄš˜Gð¯E@NöD‚$ÁAÍ2D@XsBIæ*C‹ŒTñhPU3gWu¼>V·Ö SøÀŒR:ª»P|âQ¾~ÕZâ9è[ SßYfí†X¤‡±]ë‘4\)û^oEZ_­/má5€à÷q·â±Ïîãs¥Ùæ<³\çþÙkå¸g2äz ï&J8îä 좞Ví`ôaè/âäéíˆÓë«6Šêi\½ý¸ðüÑÒÇþ—lžÿU©ú,ûØzùžÄBø\®uóéHòƒð„=&ñFWô A”õË+£÷•úöOÿÍÙx]`غ7WÚü‰Û>ã9Þqõ¼ß³Ÿ‹Ýõ!ÒÜ7Kå×k ØÖ©fïÔïØ¶Õ-²Ðb¤Ñ Î3ÓæpjÒ$]Å^þÄœ”'ÆÚ*~Ç@IÂWVÌÕ<ûÁÓ‚¢Àè•ËM¯¨ÊÅŸÈÉ{ÆÉ ñÌDt͆mCÏÀÓι-‘¯–@müw’+B.“é(–¦>œ—dT«•"êò”à€ÅŸ¼Çøž~­Ïœ8–úy¡˜µo$™w›1»JšóÑ}‰50ŒK_Ž á^Ï‹iŠ€ì‹B÷Û‰I‚ˆÆ#µƒšdˆ‚X¿€°æÜÚÑ„“ÌT…Q¦c‡:†Õr ©âР¨ º—ªfΫ¤nù®ëx|¯)K­o¬¬­Æ%§ñ¦3ë/¤uUv¥·?A ø)Ä¡:Có£|ýª¢¾—µÄsдç¶@§¾·‚͉²ÍÛ ³±;±Ib°‹eU»×"hºH_¸Sö¹‘œ1¼ÞŠ´½àƒ¿Z^Ú¾˜4í¸¼geª È‹µ¯îb—W7Þð2%k_Ü×8¹Å´(ï}OŠo½àdׇJÖ¿¸òjØÝàßw3XcVPWŸè¥0úúŸB¬øqß{ÀÈgǧ­urCÍÎo&•­p-?¤·û‡ОÏè'¢sB°Æ ¬zGÉ 2¯>ŽÈ[ ;gµ²‡Ð/P8i—ì_ …Yðâ=å—‡e†‡ÑÝ:à´ÏOZw3(?êä†RXwã@íØ øQ¿hð+ø¡H—ŸÄZ"0*âžWOIoöÇõ“Õ@§}müÀ5ŸÐN#·+Ÿ–Å'* ºýGA |ô’¨Hè÷›X=#¨?X1¶‰¡÷ÓvÏj¬Ê¨¾áÃ`„^ pÒæ·ô©¸YLß<ÑÂç…i~€à{Ë/ÃwHkË ¢s±hÇaÇ)Ù¸ LDo˜õüÓÿîfP~VÚ7¹'M¶@(¤°ïÆ ˆ£Û°9g×+Òx‘“nô;&÷ƒšf‘/?ˆ)“Xí´D`T ø1M¨ß¦ñϺþ’ßìF.¸‰T›gì'pqðH»ÉL/ÞÛù€0cEçUk? œÓƒÇùÁ6hyŠrä]7Ë\áP®NTÿ@öè˜%®‹ˆs7ï‚@ø¼>'!é$™UxA‹àׯ3\°ÊíY¶;UåÑ^GP~°ÿìÕb;!lÚ‡F È2éçpŽŽ‚(ížÔQù±‚äV_:X1:§ ƒ3næ †Áµ:¦m½@á¤ü†ÁI)/¯õNJ2"vóŠž–˜+¾x —ÙxôÉKÀH®.ÒýÀjAf¥÷–^O*9y]Ÿ–—å#ñòMkõ×~`çbÑŽ_Þ¶ë ŽRzµé7hFÙм!¼ˆß1ê0cV"Öùašjž½¦½¿ÁØ­´n6 SrNš¥Î)ÿ·{†Çát’ÙÍ*¬¾¨8F€¥v#ØÆfu`zrÏ®þÊsÉ›W¤ñ"ï–Gý­9©E^ÌvMîÎñ‰cÜD&døAèù/yQA“4S&±ÚëšÖ¿³ùÆé E¡Œðb¡Li<›Q¾„'6Û–’™5..þP&T¹™žèÞüŒ]q4áw©6.ΊI«?æE»ƒ ãà‘v[\öIéYýñU>˜l‚!Ô>aDƋΪ~7©ÏÖA8nÃ&]|v‰³ÄÊîÖYÖoᡱ óäK¨yËi׫w²¹Â¡\~Æ9œ©þ€$™å6 6 ŽQn†f§>ÚqÂ,oÞ,”Ó¹I ð±¸æ•£ I{±.CÒ>HûnY-éÛöÃQg‘¦Ì°©t Îzf¹a”ÞñU‹ì¸]ÃU‹ìQƒ} u3Àé긅ÀtCÇEü¶Mü…Ét‹UR‹E P‹MQèƒÄ é¹ë‹UR‹E P‹MQèƒÄ éž‹Uƒòÿ‰Uƒ}‚L‹E ¶3Máÿ‹UÁê3‰U‹E ƒÀ‰E ‹M ¶3Uâÿ‹EÁè3•‰E‹M ƒÁ‰M ‹U ¶3E%ÿ‹MÁé3 …‰M‹U ƒÂ‰U ‹E ¶3Máÿ‹UÁê3‰U‹E ƒÀ‰E ‹M ¶3Uâÿ‹EÁè3•‰E‹M ƒÁ‰M ‹U ¶3E%ÿ‹MÁé3 …‰M‹U ƒÂ‰U ‹E ¶3Máÿ‹UÁê3‰U‹E ƒÀ‰E ‹M ¶3Uâÿ‹EÁè3•‰E‹M ƒÁ‰M ‹Uƒê‰Uéªþÿÿƒ}t3‹E ¶3Máÿ‹UÁê3‰U‹E ƒÀ‰E ‹Mƒé‰MuÍ‹Eƒðÿ‹å] 6Qˆ°×ÿ'NvžÚU‹ìƒì‹E‰Eø‹Mø÷щMøƒ}t;‹U ƒât3‹E ¶3Møáÿ‹UøÁê3‰Uø‹E ƒÀ‰E ‹Mƒé‰Më¿‹U ‰Uüƒ} ‚Õ‹Eü‹Mø3‰Mø‹UüƒÂ‰Uü‹Eø%ÿ‹MøÁéáÿ‹… 3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uü‹Eø3‰Eø‹MüƒÁ‰Mü‹Uøâÿ‹EøÁè%ÿ‹ • 3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹Mü‹Uø3‰Uø‹EüƒÀ‰Eü‹Møáÿ‹UøÁêâÿ‹ 3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹Eü‹Mø3‰Mø‹UüƒÂ‰Uü‹Eø%ÿ‹MøÁéáÿ‹… 3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uü‹Eø3‰Eø‹MüƒÁ‰Mü‹Uøâÿ‹EøÁè%ÿ‹ • 3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹Mü‹Uø3‰Uø‹EüƒÀ‰Eü‹Møáÿ‹UøÁêâÿ‹ 3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹Eü‹Mø3‰Mø‹UüƒÂ‰Uü‹Eø%ÿ‹MøÁéáÿ‹… 3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uü‹Eø3‰Eø‹MüƒÁ‰Mü‹Uøâÿ‹EøÁè%ÿ‹ • 3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹Mƒé ‰Mé!ýÿÿƒ}rd‹Uü‹Eø3‰Eø‹MüƒÁ‰Mü‹Uøâÿ‹EøÁè%ÿ‹ • 3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹Mƒé‰Më–‹Uü‰U ƒ}t3‹E ¶3Møáÿ‹UøÁê3‰Uø‹E ƒÀ‰E ‹Mƒé‰MuÍ‹Uø÷Ò‰Uø‹Eø‹å]Ã:—©¶èïBI\i›¢´Áóú MTgt¦­¿Ìþ%kr…’ÈU‹ìƒì‹EÁè%ÿ‹MÁéáÿÁ‹UâÿÁâ‹MáÿÁáÁ‰Eø‹Uø÷Ò‰Uøƒ}t:‹E ƒàt2‹MøÁé‹U ¶3È‹UøÁâ3‰Uø‹E ƒÀ‰E ‹Mƒé‰MëÀ‹U ‰Uü‹Eüƒè‰Eüƒ} ‚Ö‹MüƒÁ‰Mü‹Uü‹Eø3‰Eø‹Møáÿ‹UøÁêâÿ‹3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹EüƒÀ‰Eü‹Mü‹Uø3‰Uø‹Eø%ÿ‹MøÁéáÿ‹…3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹UüƒÂ‰Uü‹Eü‹Mø3‰Mø‹Uøâÿ‹EøÁè%ÿ‹ •3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹MüƒÁ‰Mü‹Uü‹Eø3‰Eø‹Møáÿ‹UøÁêâÿ‹3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹EüƒÀ‰Eü‹Mü‹Uø3‰Uø‹Eø%ÿ‹MøÁéáÿ‹…3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹UüƒÂ‰Uü‹Eü‹Mø3‰Mø‹Uøâÿ‹EøÁè%ÿ‹ •3 …‹UøÁêâÿ3 •‹EøÁè3 …‰Mø‹MüƒÁ‰Mü‹Uü‹Eø3‰Eø‹Møáÿ‹UøÁêâÿ‹3•‹MøÁéáÿ3‹UøÁê3•‰Eø‹EüƒÀ‰Eü‹Mü‹Uø3‰Uø‹Eø%ÿ‹MøÁéáÿ‹…3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uƒê ‰Ué ýÿÿƒ}rc‹EüƒÀ‰Eü‹Mü‹Uø3‰Uø‹Eø%ÿ‹MøÁéáÿ‹…3‹EøÁè%ÿ3…‹MøÁé3‰Uø‹Uƒê‰Uë—‹EüƒÀ‰Eü‹Mü‰M ƒ}t2‹UøÁê‹E ¶3Ñ‹EøÁà3•‰Eø‹M ƒÁ‰M ‹Uƒê‰Uu΋Eø÷ЉEø‹EøÁè%ÿ‹MøÁéáÿÁ‹UøâÿÁâ‹MøáÿÁáÁ‹å]ÃkËÒåò$+=J|ƒ–£ÖÝðý/6HU‡Ž¡®áèû:AS`¦­¿Ì U‹ì‹EP‹M Q‹URèƒÄ ] U‹ìì ƒ}‹EéÇ…xÿÿÿ ƒ¸íÇ…ôþÿÿÇEüë ‹EüƒÀ‰Eüƒ}ü } ‹Mü‹•ôþÿÿ‰”xÿÿÿ‹…ôþÿÿÑà‰…ôþÿÿëÑxÿÿÿQ•øþÿÿRèƒÄ…øþÿÿPxÿÿÿQèƒÄ•xÿÿÿR…øþÿÿPèƒÄ‹Mƒát‹UR…øþÿÿPèƒÄ‰E‹MÑù‰Muë>•øþÿÿR…xÿÿÿPèƒÄ‹Mƒát‹UR…xÿÿÿPèƒÄ‰E‹MÑù‰Mu‚‹U3U ‰U‹E‹å]Ãr ˆ ž ¹Þ ùU‹ìQÇEüƒ} t&‹E ƒàt ‹M‹Uü3‰Uü‹E Ñè‰E ‹MƒÁ‰MëÔ‹Eü‹å]ÃU‹ìQÇEüë ‹EüƒÀ‰Eüƒ}ü }!‹Mü‹U ‹ŠP‹M QèƒÄ‹Uü‹M‰‘ëЋå]Ã+U‹ì‹EP‹M Q‹URèƒÄ ] @comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S°.rdata —¨(ã.text dR q .text l£«  .textò&4©R* .textf&¯¡ `8 .textòeË”C .text ™XÞU .text >c¬ÐKe .text ANèw .text òeË”Š ž_crc_table_get_crc_table@0_crc32@12_crc32_little_crc32_big_crc32_combine@12_crc32_combine__gf2_matrix_times_gf2_matrix_square_crc32_combine64@12/627 1315202896 100666 1352 ` LPgdNV.drectve] .debug$S´a@B.text¿Ô P`.rdata@0@.text * P`.text"4 P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¦hc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\compress.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒì@‹E‰EÈ‹M‰MÌ‹U‰UÔ‹E ‹‰MØ‹U ‹EØ;t ¸ûÿÿÿé…ÇEèÇEìÇEðj8h‹MQUÈRè‰Eă}Ät‹EÄëNjEÈPè‰Eă}Ät#MÈQèƒ}Äu ÇEÀûÿÿÿë‹UĉUÀ‹EÀë‹E ‹M܉UÈRè‰EÄ‹EÄ‹å]ÂLY r „ ¯ 1.2.5U‹ìjÿ‹EP‹MQ‹U R‹EPè]ÂU‹ì‹EÁè E‹MÁéÁ‹UÁêD ]Â@comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.text¿ï[À   + .rdataÜ{<.text°²ÛZ .text"Ÿ 4g x_compress2@20_deflateEnd@4_deflate@8_deflateInit_@16??_C@_05DFCKICEH@1?42?45?$AA@_compress@16_compressBound@4/666 1315202897 100666 2385 ` LQgdNÁ.drectve] .debug$S´a@B.text‹ P`.text » P`.text×Å P`.textœ· P` /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"LIBCMT" /DEFAULTLIB:"OLDNAMES" ñ¥gc:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\vstudio\vc9\x86\ZlibStatRelease\Tmp\adler32.obj:<RRMicrosoft (R) Optimizing CompilerU‹ìƒì‹EÁè%ÿÿ‰Eø‹Máÿÿ‰Mƒ}uL‹U ¶E‰E}ñÿr ‹Méñÿ‰M‹UøU‰Uø}øñÿr ‹Eø-ñÿ‰Eø‹EøÁà Eéƒ} u ¸éƒ}sb‹M‹Uƒê‰U…Ét ‹E ¶M‰M‹U ƒÂ‰U ‹EøE‰EøëÐ}ñÿr ‹Méñÿ‰M‹Eø3Ò¹ñÿ÷ñ‰Uø‹EøÁà Eé›}°‚­‹Uê°‰UÇEü[‹E ¶M‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ƒÀ‰E ‹Müƒé‰Mü…‰þÿÿ‹E3Ò¹ñÿ÷ñ‰U‹Eø3Ò¹ñÿ÷ñ‰UøéFþÿÿƒ}„΃}‚v‹Uƒê‰U‹E ¶M‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶H M‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ¶HM‰M‹UøU‰Uø‹E ƒÀ‰E é€þÿÿ‹M‹Uƒê‰U…Ét ‹E ¶M‰M‹U ƒÂ‰U ‹EøE‰EøëЋE3Ò¹ñÿ÷ñ‰U‹Eø3Ò¹ñÿ÷ñ‰Uø‹EøÁà E‹å] U‹ì‹EP‹M Q‹URèƒÄ ] U‹ìƒì ‹E3Ò¹ñÿ÷ñ‰Uø‹Uâÿÿ‰Uü‹Eø¯Eü‰Eô‹Eô3Ò¹ñÿ÷ñ‰Uô‹U âÿÿ‹EüŒðÿ‰Mü‹UÁêâÿÿ‹E Áè%ÿÿŒñÿ+MøMô‰Mô}üñÿr ‹Uüêñÿ‰Uü}üñÿr ‹Eü-ñÿ‰Eü}ôâÿr ‹Môéâÿ‰Mô}ôñÿr ‹Uôêñÿ‰Uô‹EôÁà Eü‹å]ÃU‹ì‹EP‹M Q‹URèƒÄ ] @comp.idRƒÿÿ@feat.00ÿÿ.drectve].debug$S´.text‹´Ý–‹ .textòeË” .text× &6$ .textòeË”6 L_adler32@12_adler32_combine@12_adler32_combine__adler32_combine64@12 /704 1315203153 100666 13151 ` LQhdN˜)J.text›´P P`.dataÈ@PÀ.debug$S¬Ìx$‚@B.debug$T Œ)@BéIFast decoding Code from Chris Andersoninvalid literal/length codeinvalid distance code‹ÿinvalid distance too far back‹ÿ?ÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿWVUSœƒì@ü‹t$X‹~‹V‹Ðƒê ‰D$,‰T$‹l$\‹N‹^ +é÷Ýëéˉ\$<‰l$(‰L$‹GL‹OP‰D$‰L$ ¸‹OTÓàH‰$¸‹OXÓàH‰D$‹G(‹O0‹W4‰D$4‰L$0‰T$8‹o8‹_<‹t$,‹L$;Îw"ƒÁ +θ +Á|$ó¤‹È3Àóªt$‰t$ë÷Æt3ÀŠF‹ËƒÃÓà èëè‹|$<ƒ=„‰wkPSQRœ‹$4$ œZ3ÐtD3À¢ûGenuu8ùntelu0úineIu(¸¢Áèƒàƒøu÷€uë Çë ÇZY[X뇀ûw 3Àf­ŠË€ÃÓà è‹$‹L$#Õ‹‘ŠÌ*ÜÓí„ÀuÁèª9|$†b9t$wÄéW‹ÐÁêŠÈ¨„ô€át%:ÙsŠé3Àf­ŠË€ÃÓà èŠÍ¸ÓàH*Ù#ÅÓíЉT$€ûw 3Àf­ŠË€ÃÓà è‹T$‹L$ #Õ‹‘‹ÐÁêŠÌ*ÜÓíŠÈ¨„²€áte:ÙsŠé3Àf­ŠË€ÃÓà èŠÍ¸ÓàH*Ù#ÅÓíÐë‰t$,‹Ç+D$(;‚”‹L$‹÷+òƒéŠˆŠFŠVƒÆˆGˆWƒÇó¤‹t$,éÿÿÿƒúu½9|$(t·O‹L$ŠƒéˆGˆGˆGƒÇóªéèþÿÿ¨@…¸ÓàH#Å‹T$‹‚éºþÿÿ¨@…â¸ÓàH#Å‹T$ ‹‚éÿÿÿ‹È‹D$4÷Ù‹t$8;‚Þʃ|$0u$+Áð‹D$;Áv`+Áó¤‹÷+òëV;ÁvR+Áó¤‹÷+òëH‹D$0;Èv,t$4ð+ñ+È‹D$;Áv.+Áó¤‹t$8‹L$0;Áv+Áó¤‹÷+òëð+ñ‹D$;Áv+Áó¤‹÷+ò‹Èó¤‹t$,éþÿÿ‹ÿwnÅ‹ën$$ãnl$êïÉ‹\$ëÓÁƒý wnõn>ƒÆóþƒÅ ëÇÛà~àÜ‹ƒ¶ÌnÉ+é„ÀuÁèª9|$†9t$wºé‹ÐÁꨄàƒàtÓÁnÈ~Á+è# …ÑÓÁƒý wnõn>ƒÆóþƒÅ ëÇ‹\$ Ûè~èÕ‹ƒ¶Ì‹ØÁë+énɨ„¬ƒàtWÓÁnÈ~Á+è# …Ù‰t$,‹Ç+D$(;©‹Ê‹÷+óƒéŠˆŠFŠVƒÆˆGˆWƒÇó¤‹t$,‹\$é-ÿÿÿIƒûu¸9|$(t²O‹ÊŠƒéˆGˆGˆGƒÇóª‹\$éÿÿÿ‹ÿ¨@…ÞƒàÓÁ~Á# …Ê‹‹éÌþÿÿ‹ÿ¨@…®ƒàÓÁ~Á# …‹D$ Ë‹ˆéÿÿÿ‹ÿ‹È‹D$4÷Ù‹t$8;¢˃|$0u +Áð;ÑvX+Ñó¤‹÷+óëN;ÑvJ+Ñó¤‹÷+óë@‹D$0;Èv(t$4ð+ñ+È;Ñv*+Ñó¤‹t$8‹L$0;Ñv+Ñó¤‹÷+óëð+ñ;Ñv+Ñó¤‹÷+ó‹Êó¤‹t$,‹\$é$þÿÿ¹ºë,¨ t ¹º 빺ë‹t$,¹ºë‹D$X…Ét‰H‹@‰ëƒ=u‹Ý‹D$X‹Ë‹PÁé+ñÁá+Ù‰x ‰Z<‹Ë\$9\$u+ó‹‰\$ó‹Xƒë \$‰0»ÓãKƒ=uÓÁ~Åw#ë‰j8‹\$;Þv +ރà ‰Xë +ó÷ÞƒÆ ‰p‹\$;ßv +ßÉXë +û÷ßljxƒÄ@[]^_Ãà = I ÿ W à  § à Óò @ óGC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86\inffas32.asmôº|!¸Š@Ò‡Ö5ü·ëÄò ›Q”P€§€ ¨€ ©€ ª€ «€ ¬€­€²€³€»€¼€¾€¿€"Á€&€*Ä€.Å€1Æ€4È€6É€8Ê€:Ì€@Í€BÏ€FЀJÑ€NÓ€QÔ€TÖ€X×€\Ù€aÚ€dÛ€fÜ€gÝ€j߀oà€rá€tâ€uã€yå€|æ€瀂逆ꀊ뀎퀑ð€˜ñ€œò€žó€ õ€£ö€¥÷€ªø€¬ù€°ú€²û€´ü€¶ý€¸þ€¼ÿ€À€Â€È€Ê€Ì€Î€Ï €Ñ €Ô €Ö €Ø €Ú€Þ€å€ë€í€î€ï€ð€ñ€ò€õ€ü"€ý#€þ$€ÿ%€&€'€(€)€ *€+€,€-€.€/€$0€&1€)2€,3€/4€15€76€97€;9€E:€G<€Q>€R?€S@€TA€UB€XG€[H€]J€_K€aL€cM€fN€hO€jR€mS€qT€sU€v^€x_€z`€|g€~h€€j€ƒk€„p€ˆq€Žs€’t€”u€™y€›z€ž{€ }€¢~€¨€«€€­€¯‚€±„€³…€µ†€·‡€¹ˆ€¼‰€¾Š€À‹€ÂŽ€Ç€É€Ê‘€Ì’€Î“€Ð”€Ò—€Öœ€Ù€ÛŸ€Ý €ß¡€á¢€ä£€æ¤€è§€ì¨€ð©€òª€õ®€÷¯€ú°€ü±€þ²€´€¶€·€ ¸€ ¹€º€»€½€¾€¿€À€Á€Â€ À"Ä€$Ç€)È€+É€,Ê€.Ë€0Ì€2Í€4΀6Ò€:Ó€<Ô€@Ö€B×€HÙ€LÚ€NÛ€PÝ€SÞ€U߀Wà€Zá€]â€`ã€cä€få€iæ€kè€oé€tí€wî€yï€}ð€ò€€ó€„ô€†õ€‰÷€Œø€ù€’ú€•û€—ý€œ€ž€¤€© €« €¬ €® €° €´€·€¼€¾€Ä€É€Ë€Ì€Î€Ð€Ô €×!€Ü&€Þ'€â(€ä)€è+€ê,€ð.€ò/€÷0€ù2€û3€ý5€6€7€9€:€ ;€ <€ =€?€@€B€C€D€E€F€J€!K€#L€%N€)O€+P€-Q€/T€3U€5V€7X€9Y€;Z€?[€C\€E]€G_€I`€Ka€Mb€Oc€Qg€Sh€Uk€Yl€[m€]o€_p€aq€cr€ev€gw€iy€mz€t~€v„€y…€{‡€ˆ€‚‰€‡Š€Š‹€Œ€‘€”‘€—“€š”€œ–€Ÿ—€¢˜€¥™€¨š€«›€®ž€±Ÿ€´ €·¡€º¤€½¥€À¦€Â¨€Ä©€Æ«€É¬€Ê±€Î²€Ô´€Øµ€Ú¶€ßº€á»€ä½€æ¾€ì¿€ïÀ€ñ€ôÀ÷Ä€úÅ€üƀǀʀ̀ Í€ πЀрҀӀԀ׀#Ø€&Ù€)Ú€,Û€/߀2à€4á€7â€9ã€<å€>æ€Dç€Gè€Ië€Lì€Oí€Rî€Tï€[ð€]ó€aô€cõ€g÷€iø€oú€qû€sü€uþ€xÿ€z€|€€‚€…€ˆ€‹€Ž€ €” €˜ € €£€¥€©€«€¬€®€°€³€¶€¹€¼€¿€Á€Å €Ì$€Î%€Ô'€×(€Ú)€Ý*€ä+€æ,€é-€ð1€ò2€ø4€û5€þ6€7€8€ 9€:€;€@€A€B€ C€$E€&F€,H€.I€3J€5L€7M€9O€;P€=R€?S€AT€CU€EV€GX€IY€K[€M\€O]€Q^€S_€Uc€Yd€[e€]g€ah€ci€ej€gm€in€kp€mq€or€ss€wt€yu€{w€}x€y€z€ƒ{€…€‡€€‰ƒ€‹„€†€‡€‘ˆ€“‰€•Ž€—€™‘€’€¡“€¦›€«œ€°€²¥€´¦€¶¨€»©€Àª€Â²€Ç³€Ì´€Îº€Ò»€×¼€Ü½€ÞÁ€â€äÀæÄ€éÆ€ìÇ€îÈ€ðÍ€÷΀ùÒ€ûÖ€ÿ׀؀ـڀ Û€ ܀݀ހ߀á€â€ã€ å€"æ€$ç€(è€*é€-ê€0ë€4î€6ð€;ñ€=ò€>ø€Eù€Gý€Jþ€M€O€Q€T €X €Z€\€^€a€d€f€h€j€m€p€t €v!€x#€z$€€%€ƒ&€…(€‡)€‰*€+€’2€•3€–4€—5€˜6€™7€š8€ñ‡LC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86\inffas32.obj7< RMicrosoft (R) Macro Assembler—=cwdC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86exec:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\ml.exesrcinffas32.asm L_test_for_length_base$L_invalid_distance_too_farL_check_dist_one_mmxL_do_copy1_mmxL_wrap_around_windowL_do_copy1L_add_bits_to_lenL_do_loop'L_invalid_literal_length_code#invalid_distance_code_msgL_get_length_code_mmx_inflate_fastL_init_mmx(L_test_for_second_level_lengthL_save_len L_add_bits_to_dist_mmxinflate_fast_maskL_update_next_inL_dodistL_skip_msgL_get_distance_code"L_wrap_around_window_mmxL_do_loop_mmx!L_invalid_distance_code&L_test_for_second_level_dist!L_test_for_end_of_block)invalid_literal_length_code_msg*L_test_for_second_level_dist_mmxL_clip_window_mmxL_dolen_mmxL_use_mmxL_break_loopL_get_length_codeL_add_bits_to_distL_fixup_outL_get_dist_code_mmxL_clip_windowL_check_mmxL_decode_distance_mmxL_dont_use_mmxL_is_alignedL_check_window L_contiguous_in_windowL_buf_not_usedL_update_stream_stateL_decode_distanceL_while_testinflate_fast_use_mmx,L_test_for_second_level_length_mmxL_check_dist_oneL_end_is_smallerL_check_window_mmxL_while_test_mmxL_update_hold$L_test_for_length_base_mmxL_dodist_mmxL_align_longinflate_fast_entryL_dolenL_last_is_smallerL_check_mmx_popL_done$L_contiguous_in_window_mmx&invalid_distance_too_far_msg| € H L j n  ” ° ´ Ê Î ê î    ! 2 6 [ _ € „ ¡ ¥ º ¾ Ð Ô ú þ   2 6 O S k o  ƒ •! ™! ´" ¸" Ø# Ü# ñ$ õ$ % % <& @& _ c Š' Ž' ¶( º( Ó) ×) ê* î* ÿ+ + , , 4- 8- R. V. i/ m/ ˆ0 Œ0 ¡1 ¥1 ¸2 ¼2 Ù3 Ý3 ó4 ÷4 5 5 %6 )6 G7 K7 a8 e8 ‚9 †9 Ÿ: £: · » ×; Û; < < != %= => A> [? _? w@ {@ A ”A ¶B ºB ÎC ÒC æD êD E E F F 4G 8G OH SH aI eI ‡ ‹ òñ@comp.idR•ÿÿ.text› .data.debug$S¬‚.debug$T L,„>0^sd$$000000™§Î וæûeÂX"Â@®Vtaœ€Ò‹I¢ûL_dodistõ³é¾èÒUë”ù¦¼.²Fðgyº…;ðœj®$ÁpÍáÜïÞûG Ú-6<QS4bÞxÖŠ„—̺tË…Ü]ïÊOß)/6ÂCL_dolenvVfhQL_done’x…“invalid_distance_code_msg_inflate_fastinflate_fast_maskinvalid_literal_length_code_msginflate_fast_use_mmxinvalid_distance_too_far_msgL_test_for_length_baseL_invalid_distance_too_farL_check_dist_one_mmxL_do_copy1_mmxL_wrap_around_windowL_do_copy1L_add_bits_to_lenL_do_loopL_invalid_literal_length_codeL_get_length_code_mmxL_init_mmxL_test_for_second_level_lengthL_save_lenL_add_bits_to_dist_mmxL_update_next_inL_skip_msgL_get_distance_codeL_wrap_around_window_mmxL_do_loop_mmxL_invalid_distance_codeL_test_for_second_level_distL_test_for_end_of_blockL_test_for_second_level_dist_mmxL_clip_window_mmxL_dolen_mmxL_use_mmxL_break_loopL_get_length_codeL_add_bits_to_distL_fixup_outL_get_dist_code_mmxL_clip_windowL_check_mmxL_decode_distance_mmxL_dont_use_mmxL_is_alignedL_check_windowL_contiguous_in_windowL_buf_not_usedL_update_stream_stateL_decode_distanceL_while_testL_test_for_second_level_length_mmxL_check_dist_oneL_end_is_smallerL_check_window_mmxL_while_test_mmxL_update_holdL_test_for_length_base_mmxL_dodist_mmxL_align_longinflate_fast_entryL_last_is_smallerL_check_mmx_popL_contiguous_in_window_mmx /731 1315203153 100666 3563 ` LQhdNŠ .texté´ 0`.data@0À.debug$Sp @B.debug$T<N @BUWVSƒì$‹T$8‹L$<‹Bx‹šŒ;ËB4‹Z||ÁëKÁã ؉$‹‚‹Zt;Ø|‹Ø‰\$‹r8‰t$‹jl|5‰|$ ‹Ç÷؃à‰D$‹B,-+è3í‹Bx‰D$ð‰t$·‰\$·\8ÿ‰\$ ‹z@‹$ëI#Ê· O;͆àêˆÔ·D1ÿ;ÃuÝ‹D$·;D$uω$‹t$‹|$ ñ‹D$ºøþÿÿ¼8´0‹23:u‹D23D:uƒÂuéëqƒÂ©ÿÿuƒÂÁè,ƒÒ:‹|$ +Ç=}L‹T$8‹\$;Ët$‹z@‹\$ ‹$éNÿÿÿ‹\$‰D$‰Jp;Ã}-‹t$ð‰t$·\8ÿ‹z@‰\$ ‹$é!ÿÿÿ‹T$8ÇD$‰Jp‹T$8‹\$‹Bt;؋ÃÄ$[^_]à asm686 with masm, optimised assembly code from Brian Raiter, written 1998 ÃóGC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86\match686.asmôñYa%Ñ?‚¿AÅœ`%ïò0éƒ$Āʀˀ̀̀΀Õ€ Ö€Þ€߀à€á€†ã€"ä€%ì€&í€)î€+ï€.ó€4ô€7õ€9ö€;÷€=ø€Aü€Dý€Hþ€Kÿ€O€S€U€W€Z€^ €a€f€h€j€l€o€s€u€y"€|#€€$€…%€‰&€Œ*€+€”D€–E€šF€œG€¢H€¨I€®J€³K€µL€·M€»N€¿O€ÃP€ÅT€È[€Ì\€Ð]€Ò^€Ö_€Û`€âa€ér€ìs€ït€ñu€õv€ùw€ûx€þy€z€{€|€ }€ ~€€€€€†€‡€ˆ€ ‰€%Š€'€+€/‘€1’€3“€7”€:•€>–€A—€Fž€JŸ€N €Q¡€S¢€U£€Y¤€[¥€_¦€d§€g¨€k©€nª€s®€w¯€°€‚¶€†·€Š¸€¹€º€‘»€“À€–Á€—€˜Ã€™Ä€šÆ€è×€èØ€ñ»LC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86\match686.obj7< RMicrosoft (R) Macro Assembler—=cwdC:\Users\Sean\Desktop\zlib125\zlib-1.2.5\contrib\masmx86exec:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\ml.exesrcmatch686.asm4èè_longest_matchLastMatchGoodLookaheadLessLimitPositiveLookupLoopLoopEntryLoopCmpsLeaveLoopCmps4LeaveLoopCmpsLenLowerLongerMatchLenMaximumLeaveNowLookaheadRet1_match_init| € ô ø   ' + @ D Y ] o s „ ˆ ˜ œ ² ¶ Ë Ï ß ã ö ú    $ X \ òñ@comp.idR•ÿÿ.texté.data.debug$Sp .debug$T< è $$000000%-=;lI”T®LoopCmpsé^mLenLower{F‡sLeaveNow‚’“Ÿ_longest_match_match_initLastMatchGoodLookaheadLessLimitPositiveLookupLoopLoopEntryLeaveLoopCmps4LeaveLoopCmpsLongerMatchLenMaximumLookaheadRet libtelnet-0.23/test/000077500000000000000000000000001336202271100143745ustar00rootroot00000000000000libtelnet-0.23/test/Makefile.am000066400000000000000000000004311336202271100164260ustar00rootroot00000000000000TEST_FILES = \ environ01.test \ environ02.test \ environ03.test \ mssp01.test \ rfc1143.test \ simple01.test \ simple02.test \ ttype01.test \ zmp01.test \ zmp02.test \ zmp03.test if BUILD_UTIL TESTS = run-all.sh endif EXTRA_DIST = run-all.sh run-test.sh $(TEST_FILES) libtelnet-0.23/test/environ01.test000066400000000000000000000003441336202271100171170ustar00rootroot00000000000000# basic ENVIRON test # send me info on VAR FOO USERVAR BAR %FF%FA%24 %01 %00FOO %03BAR %FF%F0 # send me info on everything %FF%FA%24 %01 %FF%F0 %% ENVIRON [2 parts] ==> SEND VAR "FOO" USERVAR "BAR" ENVIRON [0 parts] ==> SEND libtelnet-0.23/test/environ02.test000066400000000000000000000002111336202271100171110ustar00rootroot00000000000000# test ENVIRON ESC handling %FF%FA%24 %01 %00FO%02%02O %03B%02%01AR %FF%F0 %% ENVIRON [2 parts] ==> SEND VAR "FO%02O" USERVAR "B%01AR" libtelnet-0.23/test/environ03.test000066400000000000000000000001701336202271100171160ustar00rootroot00000000000000# basic ENVIRON test # send me info on all USERVARs %FF%FA%24 %01 %03 %FF%F0 %% ENVIRON [1 parts] ==> SEND USERVAR "" libtelnet-0.23/test/mssp01.test000066400000000000000000000006711336202271100164240ustar00rootroot00000000000000# test MSSP # send no vars %FF%FA%46 %FF%F0 # send me one var, one value %FF%FA%46 %01FOO %02BAR %FF%F0 # send me one var, two values %FF%FA%46 %01FOO %02BAR %02BAZ %FF%F0 # send me three vars, no values %FF%FA%46 %01FOO %01BAR %01BAZ %FF%F0 # send me one var w/ one value, one var w/ no value %FF%FA%46 %01FOO %02BAR %01BAZ %FF%F0 %% MSSP [1] ==> "FOO"="BAR" MSSP [2] ==> "FOO"="BAR" "FOO"="BAZ" MSSP [0] ==> MSSP [1] ==> "FOO"="BAR" libtelnet-0.23/test/rfc1143.test000066400000000000000000000004611336202271100163610ustar00rootroot00000000000000# test RFC1143 option negotiation # enable ZMP (expect DO to be output) %FF%FD%5D # enable ZMP again (expect nothing) %FF%FD%5D # enable NAWS (expect nothing) %FF%FD%1F # disable ZMP (expect DONT to be in output) %FF%FE%5D # disable ZMP again (expect nothing) %FF%FE%5D %% DO 93 (ZMP) DONT 93 (ZMP) libtelnet-0.23/test/run-all.sh000077500000000000000000000001001336202271100162740ustar00rootroot00000000000000#!/bin/sh DIR=$(dirname "$0") "$DIR/run-test.sh" "$DIR/"*.test libtelnet-0.23/test/run-test.sh000077500000000000000000000007151336202271100165170ustar00rootroot00000000000000DIR=$(dirname "$0") RS=0 while [ "x$1" != "x" ] ; do echo -ne "TEST $1\t\t\t" RUNTMP="$(basename "$1").run.tmp" OUTTMP="$(basename "$1").out.tmp" "../util/telnet-test" "$1" > "$RUNTMP" sed -n '/%%/,$p' < "$1" | tail -n+2 > "$OUTTMP" if cmp -s "$OUTTMP" "$RUNTMP" ; then echo "OK" else echo "FAIL" echo "EXPECTED:" sed 's/^/\t/' < "$OUTTMP" echo "GOT:" sed 's/^/\t/' < "$RUNTMP" RS=1 fi rm -f "$RUNTMP" "$OUTTMP" shift done exit $RS libtelnet-0.23/test/simple01.test000066400000000000000000000001661336202271100167320ustar00rootroot00000000000000# Test a single line of regular input This is a single line of input %% DATA [30] ==> This is a single line of input libtelnet-0.23/test/simple02.test000066400000000000000000000000761336202271100167330ustar00rootroot00000000000000# Test a single IAC command (IAC GA) %FF%F9 %% IAC 249 (GA) libtelnet-0.23/test/ttype01.test000066400000000000000000000003111336202271100165760ustar00rootroot00000000000000# basic TERMINAL-TYPE test # proper usages %FF%FA%18%01%FF%F0 %FF%FA%18%00xterm%FF%F0 # improper usages %FF%FA%18%00%FF%F0 %FF%FA%18%01xterm%FF%F0 %% TTYPE SEND TTYPE IS xterm TTYPE IS TTYPE SEND libtelnet-0.23/test/zmp01.test000066400000000000000000000001161336202271100162420ustar00rootroot00000000000000# Test a simple ZMP command %FF%FA%5Dzmp.ping%00%FF%F0 %% ZMP (zmp.ping) [1] libtelnet-0.23/test/zmp02.test000066400000000000000000000001541336202271100162450ustar00rootroot00000000000000# Test a simple ZMP command with two argument %FF%FA%5Dzmp.test%00one%00two%00%FF%F0 %% ZMP (zmp.test) [3] libtelnet-0.23/test/zmp03.test000066400000000000000000000001461336202271100162470ustar00rootroot00000000000000# Test error handling for an invalid ZMP request %FF%FA%5Dbad%FF%F0 %% WARNING: incomplete ZMP frame libtelnet-0.23/util/000077500000000000000000000000001336202271100143725ustar00rootroot00000000000000libtelnet-0.23/util/.gitignore000066400000000000000000000000641336202271100163620ustar00rootroot00000000000000telnet-proxy telnet-client telnet-chatd telnet-test libtelnet-0.23/util/Makefile.am000066400000000000000000000007611336202271100164320ustar00rootroot00000000000000AM_CFLAGS = -I$(top_srcdir) telnet_client_SOURCES = telnet-client.c ../libtelnet.h telnet_client_LDADD = ../libtelnet.la telnet_chatd_SOURCES = telnet-chatd.c ../libtelnet.h telnet_chatd_LDADD = ../libtelnet.la telnet_proxy_SOURCES = telnet-proxy.c ../libtelnet.h telnet_proxy_LDADD = ../libtelnet.la telnet_test_SOURCES = telnet-test.c ../libtelnet.h telnet_test_LDADD = ../libtelnet.la if BUILD_UTIL bin_PROGRAMS = telnet-client telnet-chatd telnet-proxy check_PROGRAMS = telnet-test endif libtelnet-0.23/util/telnet-chatd.c000066400000000000000000000211661336202271100171200ustar00rootroot00000000000000/* * Sean Middleditch * sean@sourcemud.org * * The author or authors of this code dedicate any and all copyright interest * in this code to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and successors. We * intend this dedication to be an overt act of relinquishment in perpetuity of * all present and future rights to this code under copyright law. */ #if !defined(_WIN32) # if !defined(_BSD_SOURCE) # define _BSD_SOURCE # endif # include # include # include # include # include # include #else # include # include #ifndef _UCRT # define snprintf _snprintf #endif # define poll WSAPoll # define close closesocket # define strdup _strdup # define ECONNRESET WSAECONNRESET #endif #include #include #include #include #include #include "libtelnet.h" #define MAX_USERS 64 #define LINEBUFFER_SIZE 256 static const telnet_telopt_t telopts[] = { { TELNET_TELOPT_COMPRESS2, TELNET_WILL, TELNET_DONT }, { -1, 0, 0 } }; struct user_t { char *name; int sock; telnet_t *telnet; char linebuf[256]; int linepos; }; static struct user_t users[MAX_USERS]; static void linebuffer_push(char *buffer, size_t size, int *linepos, char ch, void (*cb)(const char *line, int overflow, void *ud), void *ud) { /* CRLF -- line terminator */ if (ch == '\n' && *linepos > 0 && buffer[*linepos - 1] == '\r') { /* NUL terminate (replaces \r in buffer), notify app, clear */ buffer[*linepos - 1] = 0; cb(buffer, 0, ud); *linepos = 0; /* CRNUL -- just a CR */ } else if (ch == 0 && *linepos > 0 && buffer[*linepos - 1] == '\r') { /* do nothing, the CR is already in the buffer */ /* anything else (including technically invalid CR followed by * anything besides LF or NUL -- just buffer if we have room * \r */ } else if (*linepos != size) { buffer[(*linepos)++] = ch; /* buffer overflow */ } else { /* terminate (NOTE: eats a byte), notify app, clear buffer */ buffer[size - 1] = 0; cb(buffer, size - 1, ud); *linepos = 0; } } static void _message(const char *from, const char *msg) { int i; for (i = 0; i != MAX_USERS; ++i) { if (users[i].sock != -1) { telnet_printf(users[i].telnet, "%s: %s\n", from, msg); } } } static void _send(int sock, const char *buffer, unsigned int size) { int rs; /* ignore on invalid socket */ if (sock == -1) return; /* send data */ while (size > 0) { if ((rs = send(sock, buffer, size, 0)) == -1) { if (errno != EINTR && errno != ECONNRESET) { fprintf(stderr, "send() failed: %s\n", strerror(errno)); exit(1); } else { return; } } else if (rs == 0) { fprintf(stderr, "send() unexpectedly returned 0\n"); exit(1); } /* update pointer and size to see if we've got more to send */ buffer += rs; size -= rs; } } /* process input line */ static void _online(const char *line, int overflow, void *ud) { struct user_t *user = (struct user_t*)ud; int i; /* if the user has no name, this is his "login" */ if (user->name == 0) { /* must not be empty, must be at least 32 chars */ if (strlen(line) == 0 || strlen(line) > 32) { telnet_printf(user->telnet, "Invalid name.\nEnter name: "); return; } /* must not already be in use */ for (i = 0; i != MAX_USERS; ++i) { if (users[i].name != 0 && strcmp(users[i].name, line) == 0) { telnet_printf(user->telnet, "Name in use.\nEnter name: "); return; } } /* keep name */ user->name = strdup(line); telnet_printf(user->telnet, "Welcome, %s!\n", line); return; } /* if line is "quit" then, well, quit */ if (strcmp(line, "quit") == 0) { close(user->sock); user->sock = -1; _message(user->name, "** HAS QUIT **"); free(user->name); user->name = 0; return; } /* just a message -- send to all users */ _message(user->name, line); } static void _input(struct user_t *user, const char *buffer, unsigned int size) { unsigned int i; for (i = 0; i != size; ++i) linebuffer_push(user->linebuf, sizeof(user->linebuf), &user->linepos, (char)buffer[i], _online, user); } static void _event_handler(telnet_t *telnet, telnet_event_t *ev, void *user_data) { struct user_t *user = (struct user_t*)user_data; switch (ev->type) { /* data received */ case TELNET_EV_DATA: _input(user, ev->data.buffer, ev->data.size); telnet_negotiate(telnet, TELNET_WONT, TELNET_TELOPT_ECHO); telnet_negotiate(telnet, TELNET_WILL, TELNET_TELOPT_ECHO); break; /* data must be sent */ case TELNET_EV_SEND: _send(user->sock, ev->data.buffer, ev->data.size); break; /* enable compress2 if accepted by client */ case TELNET_EV_DO: if (ev->neg.telopt == TELNET_TELOPT_COMPRESS2) telnet_begin_compress2(telnet); break; /* error */ case TELNET_EV_ERROR: close(user->sock); user->sock = -1; if (user->name != 0) { _message(user->name, "** HAS HAD AN ERROR **"); free(user->name); user->name = 0; } telnet_free(user->telnet); break; default: /* ignore */ break; } } int main(int argc, char **argv) { char buffer[512]; short listen_port; int listen_sock; int rs; int i; struct sockaddr_in addr; socklen_t addrlen; struct pollfd pfd[MAX_USERS + 1]; /* initialize Winsock */ #if defined(_WIN32) WSADATA wsd; WSAStartup(MAKEWORD(2, 2), &wsd); #endif /* check usage */ if (argc != 2) { fprintf(stderr, "Usage:\n ./telnet-chatd \n"); return 1; } /* initialize data structures */ memset(&pfd, 0, sizeof(pfd)); memset(users, 0, sizeof(users)); for (i = 0; i != MAX_USERS; ++i) users[i].sock = -1; /* parse listening port */ listen_port = (short)strtol(argv[1], 0, 10); /* create listening socket */ if ((listen_sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) { fprintf(stderr, "socket() failed: %s\n", strerror(errno)); return 1; } /* reuse address option */ rs = 1; setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR, (void*)&rs, sizeof(rs)); /* bind to listening addr/port */ memset(&addr, 0, sizeof(addr)); addr.sin_family = AF_INET; addr.sin_addr.s_addr = INADDR_ANY; addr.sin_port = htons(listen_port); if (bind(listen_sock, (struct sockaddr *)&addr, sizeof(addr)) == -1) { fprintf(stderr, "bind() failed: %s\n", strerror(errno)); return 1; } /* listen for clients */ if (listen(listen_sock, 5) == -1) { fprintf(stderr, "listen() failed: %s\n", strerror(errno)); return 1; } printf("LISTENING ON PORT %d\n", listen_port); /* initialize listening descriptors */ pfd[MAX_USERS].fd = listen_sock; pfd[MAX_USERS].events = POLLIN; /* loop for ever */ for (;;) { /* prepare for poll */ for (i = 0; i != MAX_USERS; ++i) { if (users[i].sock != -1) { pfd[i].fd = users[i].sock; pfd[i].events = POLLIN; } else { pfd[i].fd = -1; pfd[i].events = 0; } } /* poll */ rs = poll(pfd, MAX_USERS + 1, -1); if (rs == -1 && errno != EINTR) { fprintf(stderr, "poll() failed: %s\n", strerror(errno)); return 1; } /* new connection */ if (pfd[MAX_USERS].revents & POLLIN) { /* acept the sock */ addrlen = sizeof(addr); if ((rs = accept(listen_sock, (struct sockaddr *)&addr, &addrlen)) == -1) { fprintf(stderr, "accept() failed: %s\n", strerror(errno)); return 1; } printf("Connection received.\n"); /* find a free user */ for (i = 0; i != MAX_USERS; ++i) if (users[i].sock == -1) break; if (i == MAX_USERS) { printf(" rejected (too many users)\n"); _send(rs, "Too many users.\r\n", 14); close(rs); } /* init, welcome */ users[i].sock = rs; users[i].telnet = telnet_init(telopts, _event_handler, 0, &users[i]); telnet_negotiate(users[i].telnet, TELNET_WILL, TELNET_TELOPT_COMPRESS2); telnet_printf(users[i].telnet, "Enter name: "); telnet_negotiate(users[i].telnet, TELNET_WILL, TELNET_TELOPT_ECHO); } /* read from client */ for (i = 0; i != MAX_USERS; ++i) { /* skip users that aren't actually connected */ if (users[i].sock == -1) continue; if (pfd[i].revents & POLLIN) { if ((rs = recv(users[i].sock, buffer, sizeof(buffer), 0)) > 0) { telnet_recv(users[i].telnet, buffer, rs); } else if (rs == 0) { printf("Connection closed.\n"); close(users[i].sock); if (users[i].name != 0) { _message(users[i].name, "** HAS DISCONNECTED **"); free(users[i].name); users[i].name = 0; } telnet_free(users[i].telnet); users[i].sock = -1; break; } else if (errno != EINTR) { fprintf(stderr, "recv(client) failed: %s\n", strerror(errno)); exit(1); } } } } /* not that we can reach this, but GCC will cry if it's not here */ return 0; } libtelnet-0.23/util/telnet-client.c000066400000000000000000000142141336202271100173070ustar00rootroot00000000000000/* * Sean Middleditch * sean@sourcemud.org * * The author or authors of this code dedicate any and all copyright interest * in this code to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and successors. We * intend this dedication to be an overt act of relinquishment in perpetuity of * all present and future rights to this code under copyright law. */ #if !defined(_BSD_SOURCE) # define _BSD_SOURCE #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_ZLIB #include "zlib.h" #endif #include "libtelnet.h" static struct termios orig_tios; static telnet_t *telnet; static int do_echo; static const telnet_telopt_t telopts[] = { { TELNET_TELOPT_ECHO, TELNET_WONT, TELNET_DO }, { TELNET_TELOPT_TTYPE, TELNET_WILL, TELNET_DONT }, { TELNET_TELOPT_COMPRESS2, TELNET_WONT, TELNET_DO }, { TELNET_TELOPT_MSSP, TELNET_WONT, TELNET_DO }, { -1, 0, 0 } }; static void _cleanup(void) { tcsetattr(STDOUT_FILENO, TCSADRAIN, &orig_tios); } static void _input(char *buffer, int size) { static char crlf[] = { '\r', '\n' }; int i; for (i = 0; i != size; ++i) { /* if we got a CR or LF, replace with CRLF * NOTE that usually you'd get a CR in UNIX, but in raw * mode we get LF instead (not sure why) */ if (buffer[i] == '\r' || buffer[i] == '\n') { if (do_echo) printf("\r\n"); telnet_send(telnet, crlf, 2); } else { if (do_echo) putchar(buffer[i]); telnet_send(telnet, buffer + i, 1); } } fflush(stdout); } static void _send(int sock, const char *buffer, size_t size) { int rs; /* send data */ while (size > 0) { if ((rs = send(sock, buffer, size, 0)) == -1) { fprintf(stderr, "send() failed: %s\n", strerror(errno)); exit(1); } else if (rs == 0) { fprintf(stderr, "send() unexpectedly returned 0\n"); exit(1); } /* update pointer and size to see if we've got more to send */ buffer += rs; size -= rs; } } static void _event_handler(telnet_t *telnet, telnet_event_t *ev, void *user_data) { int sock = *(int*)user_data; switch (ev->type) { /* data received */ case TELNET_EV_DATA: if (ev->data.size && fwrite(ev->data.buffer, 1, ev->data.size, stdout) != ev->data.size) { fprintf(stderr, "ERROR: Could not write complete buffer to stdout"); } fflush(stdout); break; /* data must be sent */ case TELNET_EV_SEND: _send(sock, ev->data.buffer, ev->data.size); break; /* request to enable remote feature (or receipt) */ case TELNET_EV_WILL: /* we'll agree to turn off our echo if server wants us to stop */ if (ev->neg.telopt == TELNET_TELOPT_ECHO) do_echo = 0; break; /* notification of disabling remote feature (or receipt) */ case TELNET_EV_WONT: if (ev->neg.telopt == TELNET_TELOPT_ECHO) do_echo = 1; break; /* request to enable local feature (or receipt) */ case TELNET_EV_DO: break; /* demand to disable local feature (or receipt) */ case TELNET_EV_DONT: break; /* respond to TTYPE commands */ case TELNET_EV_TTYPE: /* respond with our terminal type, if requested */ if (ev->ttype.cmd == TELNET_TTYPE_SEND) { telnet_ttype_is(telnet, getenv("TERM")); } break; /* respond to particular subnegotiations */ case TELNET_EV_SUBNEGOTIATION: break; /* error */ case TELNET_EV_ERROR: fprintf(stderr, "ERROR: %s\n", ev->error.msg); exit(1); default: /* ignore */ break; } } int main(int argc, char **argv) { char buffer[512]; int rs; int sock; struct sockaddr_in addr; struct pollfd pfd[2]; struct addrinfo *ai; struct addrinfo hints; struct termios tios; const char *servname; const char *hostname; /* check usage */ if (argc < 2) { fprintf(stderr, "Usage:\n ./telnet-client [port]\n"); return 1; } /* process arguments */ servname = (argc < 3) ? "23" : argv[2]; hostname = argv[1]; /* look up server host */ memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_UNSPEC; hints.ai_socktype = SOCK_STREAM; if ((rs = getaddrinfo(hostname, servname, &hints, &ai)) != 0) { fprintf(stderr, "getaddrinfo() failed for %s: %s\n", hostname, gai_strerror(rs)); return 1; } /* create server socket */ if ((sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) { fprintf(stderr, "socket() failed: %s\n", strerror(errno)); return 1; } /* bind server socket */ memset(&addr, 0, sizeof(addr)); addr.sin_family = AF_INET; if (bind(sock, (struct sockaddr *)&addr, sizeof(addr)) == -1) { fprintf(stderr, "bind() failed: %s\n", strerror(errno)); return 1; } /* connect */ if (connect(sock, ai->ai_addr, ai->ai_addrlen) == -1) { fprintf(stderr, "connect() failed: %s\n", strerror(errno)); return 1; } /* free address lookup info */ freeaddrinfo(ai); /* get current terminal settings, set raw mode, make sure we * register atexit handler to restore terminal settings */ tcgetattr(STDOUT_FILENO, &orig_tios); atexit(_cleanup); tios = orig_tios; cfmakeraw(&tios); tcsetattr(STDOUT_FILENO, TCSADRAIN, &tios); /* set input echoing on by default */ do_echo = 1; /* initialize telnet box */ telnet = telnet_init(telopts, _event_handler, 0, &sock); /* initialize poll descriptors */ memset(pfd, 0, sizeof(pfd)); pfd[0].fd = STDIN_FILENO; pfd[0].events = POLLIN; pfd[1].fd = sock; pfd[1].events = POLLIN; /* loop while both connections are open */ while (poll(pfd, 2, -1) != -1) { /* read from stdin */ if (pfd[0].revents & POLLIN) { if ((rs = read(STDIN_FILENO, buffer, sizeof(buffer))) > 0) { _input(buffer, rs); } else if (rs == 0) { break; } else { fprintf(stderr, "recv(server) failed: %s\n", strerror(errno)); exit(1); } } /* read from client */ if (pfd[1].revents & POLLIN) { if ((rs = recv(sock, buffer, sizeof(buffer), 0)) > 0) { telnet_recv(telnet, buffer, rs); } else if (rs == 0) { break; } else { fprintf(stderr, "recv(client) failed: %s\n", strerror(errno)); exit(1); } } } /* clean up */ telnet_free(telnet); close(sock); return 0; } libtelnet-0.23/util/telnet-proxy.c000066400000000000000000000315361336202271100172200ustar00rootroot00000000000000/* * Sean Middleditch * sean@sourcemud.org * * The author or authors of this code dedicate any and all copyright interest * in this code to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and successors. We * intend this dedication to be an overt act of relinquishment in perpetuity of * all present and future rights to this code under copyright law. */ #if !defined(_WIN32) # if !defined(_BSD_SOURCE) # define _BSD_SOURCE # endif # include # include # include # include # include # include #else # include # include #ifndef _UCRT # define snprintf _snprintf #endif # define poll WSAPoll # define close closesocket # undef gai_strerror # define gai_strerror gai_strerrorA # define ECONNRESET WSAECONNRESET #endif #include #include #include #include #include #ifdef HAVE_ZLIB #include "zlib.h" #endif #include "libtelnet.h" #ifdef ENABLE_COLOR # define COLOR_SERVER "\e[35m" # define COLOR_CLIENT "\e[34m" # define COLOR_BOLD "\e[1m" # define COLOR_UNBOLD "\e[22m" # define COLOR_NORMAL "\e[0m" #else # define COLOR_SERVER "" # define COLOR_CLIENT "" # define COLOR_BOLD "" # define COLOR_UNBOLD "" # define COLOR_NORMAL "" #endif struct conn_t { const char *name; int sock; telnet_t *telnet; struct conn_t *remote; }; static const char *get_cmd(unsigned char cmd) { static char buffer[4]; switch (cmd) { case 255: return "IAC"; case 254: return "DONT"; case 253: return "DO"; case 252: return "WONT"; case 251: return "WILL"; case 250: return "SB"; case 249: return "GA"; case 248: return "EL"; case 247: return "EC"; case 246: return "AYT"; case 245: return "AO"; case 244: return "IP"; case 243: return "BREAK"; case 242: return "DM"; case 241: return "NOP"; case 240: return "SE"; case 239: return "EOR"; case 238: return "ABORT"; case 237: return "SUSP"; case 236: return "xEOF"; default: snprintf(buffer, sizeof(buffer), "%d", (int)cmd); return buffer; } } static const char *get_opt(unsigned char opt) { switch (opt) { case 0: return "BINARY"; case 1: return "ECHO"; case 2: return "RCP"; case 3: return "SGA"; case 4: return "NAMS"; case 5: return "STATUS"; case 6: return "TM"; case 7: return "RCTE"; case 8: return "NAOL"; case 9: return "NAOP"; case 10: return "NAOCRD"; case 11: return "NAOHTS"; case 12: return "NAOHTD"; case 13: return "NAOFFD"; case 14: return "NAOVTS"; case 15: return "NAOVTD"; case 16: return "NAOLFD"; case 17: return "XASCII"; case 18: return "LOGOUT"; case 19: return "BM"; case 20: return "DET"; case 21: return "SUPDUP"; case 22: return "SUPDUPOUTPUT"; case 23: return "SNDLOC"; case 24: return "TTYPE"; case 25: return "EOR"; case 26: return "TUID"; case 27: return "OUTMRK"; case 28: return "TTYLOC"; case 29: return "3270REGIME"; case 30: return "X3PAD"; case 31: return "NAWS"; case 32: return "TSPEED"; case 33: return "LFLOW"; case 34: return "LINEMODE"; case 35: return "XDISPLOC"; case 36: return "ENVIRON"; case 37: return "AUTHENTICATION"; case 38: return "ENCRYPT"; case 39: return "NEW-ENVIRON"; case 70: return "MSSP"; case 85: return "COMPRESS"; case 86: return "COMPRESS2"; case 93: return "ZMP"; case 255: return "EXOPL"; default: return "unknown"; } } static void print_buffer(const char *buffer, size_t size) { printf("%.*s", (int)size, buffer); size_t i; printf(" ["); for (i = 0; i != size; ++i) { printf("<" COLOR_BOLD "0x%02X" COLOR_UNBOLD ">", (unsigned char)buffer[i]); if(buffer[i] == '\n') printf("%c", '\n'); } printf("]"); } static void _send(int sock, const char *buffer, size_t size) { int rs; /* send data */ while (size > 0) { if ((rs = send(sock, buffer, size, 0)) == -1) { if (errno != EINTR && errno != ECONNRESET) { fprintf(stderr, "send() failed: %s\n", strerror(errno)); exit(1); } else { return; } } else if (rs == 0) { fprintf(stderr, "send() unexpectedly returned 0\n"); exit(1); } /* update pointer and size to see if we've got more to send */ buffer += rs; size -= rs; } } static void _event_handler(telnet_t *telnet, telnet_event_t *ev, void *user_data) { struct conn_t *conn = (struct conn_t*)user_data; switch (ev->type) { /* data received */ case TELNET_EV_DATA: printf("%s DATA: ", conn->name); print_buffer(ev->data.buffer, ev->data.size); printf(COLOR_NORMAL "\n"); telnet_send(conn->remote->telnet, ev->data.buffer, ev->data.size); break; /* data must be sent */ case TELNET_EV_SEND: /* DONT SPAM printf("%s SEND: ", conn->name); print_buffer(ev->buffer, ev->size); printf(COLOR_BOLD "\n"); */ _send(conn->sock, ev->data.buffer, ev->data.size); break; /* IAC command */ case TELNET_EV_IAC: printf("%s IAC %s" COLOR_NORMAL "\n", conn->name, get_cmd(ev->iac.cmd)); telnet_iac(conn->remote->telnet, ev->iac.cmd); break; /* negotiation, WILL */ case TELNET_EV_WILL: printf("%s IAC WILL %d (%s)" COLOR_NORMAL "\n", conn->name, (int)ev->neg.telopt, get_opt(ev->neg.telopt)); telnet_negotiate(conn->remote->telnet, TELNET_WILL, ev->neg.telopt); break; /* negotiation, WONT */ case TELNET_EV_WONT: printf("%s IAC WONT %d (%s)" COLOR_NORMAL "\n", conn->name, (int)ev->neg.telopt, get_opt(ev->neg.telopt)); telnet_negotiate(conn->remote->telnet, TELNET_WONT, ev->neg.telopt); break; /* negotiation, DO */ case TELNET_EV_DO: printf("%s IAC DO %d (%s)" COLOR_NORMAL "\n", conn->name, (int)ev->neg.telopt, get_opt(ev->neg.telopt)); telnet_negotiate(conn->remote->telnet, TELNET_DO, ev->neg.telopt); break; case TELNET_EV_DONT: printf("%s IAC DONT %d (%s)" COLOR_NORMAL "\n", conn->name, (int)ev->neg.telopt, get_opt(ev->neg.telopt)); telnet_negotiate(conn->remote->telnet, TELNET_DONT, ev->neg.telopt); break; /* generic subnegotiation */ case TELNET_EV_SUBNEGOTIATION: printf("%s SUB %d (%s)", conn->name, (int)ev->sub.telopt, get_opt(ev->sub.telopt)); if (ev->sub.size > 0) { printf(" [%zi bytes]: ", ev->sub.size); print_buffer(ev->sub.buffer, ev->sub.size); } printf(COLOR_NORMAL "\n"); /* forward */ telnet_subnegotiation(conn->remote->telnet, ev->sub.telopt, ev->sub.buffer, ev->sub.size); break; /* ZMP command */ case TELNET_EV_ZMP: if (ev->zmp.argc != 0) { size_t i; printf("%s ZMP [%zi params]", conn->name, ev->zmp.argc); for (i = 0; i != ev->zmp.argc; ++i) { printf(" \""); print_buffer(ev->zmp.argv[i], strlen(ev->zmp.argv[i])); printf("\""); } printf(COLOR_NORMAL "\n"); } break; /* TERMINAL-TYPE command */ case TELNET_EV_TTYPE: printf("%s TTYPE %s %s", conn->name, ev->ttype.cmd ? "SEND" : "IS", ev->ttype.name ? ev->ttype.name : ""); break; /* ENVIRON/NEW-ENVIRON commands */ case TELNET_EV_ENVIRON: { size_t i; printf("%s ENVIRON (%s) [%zi parts]", conn->name, ev->environ.cmd == TELNET_ENVIRON_IS ? "IS" : ev->environ.cmd == TELNET_ENVIRON_SEND ? "SEND" : "INFO", ev->environ.size); for (i = 0; i != ev->environ.size; ++i) { printf(" %s \"", ev->environ.values[i].type == TELNET_ENVIRON_VAR ? "VAR" : "USERVAR"); if (ev->environ.values[i].var != 0) { print_buffer(ev->environ.values[i].var, strlen(ev->environ.values[i].var)); } if (ev->environ.cmd != TELNET_ENVIRON_SEND) { printf("\"=\""); if (ev->environ.values[i].value != 0) { print_buffer(ev->environ.values[i].value, strlen(ev->environ.values[i].value)); } printf("\""); } } printf(COLOR_NORMAL "\n"); break; } case TELNET_EV_MSSP: { size_t i; printf("%s MSSP [%zi parts]", conn->name, ev->mssp.size); for (i = 0; i != ev->mssp.size; ++i) { printf(" \""); print_buffer(ev->mssp.values[i].var, strlen(ev->mssp.values[i].var)); printf("\"=\""); print_buffer(ev->mssp.values[i].value, strlen(ev->mssp.values[i].value)); printf("\""); } printf(COLOR_NORMAL "\n"); break; } /* compression notification */ case TELNET_EV_COMPRESS: printf("%s COMPRESSION %s" COLOR_NORMAL "\n", conn->name, ev->compress.state ? "ON" : "OFF"); break; /* warning */ case TELNET_EV_WARNING: printf("%s WARNING: %s in %s,%d: %s" COLOR_NORMAL "\n", conn->name, ev->error.func, ev->error.file, ev->error.line, ev->error.msg); break; /* error */ case TELNET_EV_ERROR: printf("%s ERROR: %s in %s,%d: %s" COLOR_NORMAL "\n", conn->name, ev->error.func, ev->error.file, ev->error.line, ev->error.msg); exit(1); } } int main(int argc, char **argv) { char buffer[512]; short listen_port; int listen_sock; int rs; struct sockaddr_in addr; socklen_t addrlen; struct pollfd pfd[2]; struct conn_t server; struct conn_t client; struct addrinfo *ai; struct addrinfo hints; /* initialize Winsock */ #if defined(_WIN32) WSADATA wsd; WSAStartup(MAKEWORD(2, 2), &wsd); #endif /* check usage */ if (argc != 4) { fprintf(stderr, "Usage:\n ./telnet-proxy " "\n"); return 1; } /* parse listening port */ listen_port = (short)strtol(argv[3], 0, 10); /* loop forever, until user kills process */ for (;;) { /* create listening socket */ if ((listen_sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) { fprintf(stderr, "socket() failed: %s\n", strerror(errno)); return 1; } /* reuse address option */ rs = 1; setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR, (void*)&rs, sizeof(rs)); /* bind to listening addr/port */ memset(&addr, 0, sizeof(addr)); addr.sin_family = AF_INET; addr.sin_addr.s_addr = INADDR_ANY; addr.sin_port = htons(listen_port); if (bind(listen_sock, (struct sockaddr *)&addr, sizeof(addr)) == -1) { fprintf(stderr, "bind() failed: %s\n", strerror(errno)); return 1; } printf("LISTENING ON PORT %d\n", listen_port); /* wait for client */ if (listen(listen_sock, 1) == -1) { fprintf(stderr, "listen() failed: %s\n", strerror(errno)); return 1; } addrlen = sizeof(addr); if ((client.sock = accept(listen_sock, (struct sockaddr *)&addr, &addrlen)) == -1) { fprintf(stderr, "accept() failed: %s\n", strerror(errno)); return 1; } printf("CLIENT CONNECTION RECEIVED\n"); /* stop listening now that we have a client */ close(listen_sock); /* look up server host */ memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_UNSPEC; hints.ai_socktype = SOCK_STREAM; if ((rs = getaddrinfo(argv[1], argv[2], &hints, &ai)) != 0) { fprintf(stderr, "getaddrinfo() failed for %s: %s\n", argv[1], gai_strerror(rs)); return 1; } /* create server socket */ if ((server.sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) { fprintf(stderr, "socket() failed: %s\n", strerror(errno)); return 1; } /* bind server socket */ memset(&addr, 0, sizeof(addr)); addr.sin_family = AF_INET; if (bind(server.sock, (struct sockaddr *)&addr, sizeof(addr)) == -1) { fprintf(stderr, "bind() failed: %s\n", strerror(errno)); return 1; } /* connect */ if (connect(server.sock, ai->ai_addr, ai->ai_addrlen) == -1) { fprintf(stderr, "server() failed: %s\n", strerror(errno)); return 1; } /* free address lookup info */ freeaddrinfo(ai); printf("SERVER CONNECTION ESTABLISHED\n"); /* initialize connection structs */ server.name = COLOR_SERVER "SERVER"; server.remote = &client; client.name = COLOR_CLIENT "CLIENT"; client.remote = &server; /* initialize telnet boxes */ server.telnet = telnet_init(0, _event_handler, TELNET_FLAG_PROXY, &server); client.telnet = telnet_init(0, _event_handler, TELNET_FLAG_PROXY, &client); /* initialize poll descriptors */ memset(pfd, 0, sizeof(pfd)); pfd[0].fd = server.sock; pfd[0].events = POLLIN; pfd[1].fd = client.sock; pfd[1].events = POLLIN; /* loop while both connections are open */ while (poll(pfd, 2, -1) != -1) { /* read from server */ if (pfd[0].revents & POLLIN) { if ((rs = recv(server.sock, buffer, sizeof(buffer), 0)) > 0) { telnet_recv(server.telnet, buffer, rs); } else if (rs == 0) { printf("%s DISCONNECTED" COLOR_NORMAL "\n", server.name); break; } else { if (errno != EINTR && errno != ECONNRESET) { fprintf(stderr, "recv(server) failed: %s\n", strerror(errno)); exit(1); } } } /* read from client */ if (pfd[1].revents & POLLIN) { if ((rs = recv(client.sock, buffer, sizeof(buffer), 0)) > 0) { telnet_recv(client.telnet, buffer, rs); } else if (rs == 0) { printf("%s DISCONNECTED" COLOR_NORMAL "\n", client.name); break; } else { if (errno != EINTR && errno != ECONNRESET) { fprintf(stderr, "recv(server) failed: %s\n", strerror(errno)); exit(1); } } } } /* clean up */ telnet_free(server.telnet); telnet_free(client.telnet); close(server.sock); close(client.sock); /* all done */ printf("BOTH CONNECTIONS CLOSED\n"); } /* not that we can reach this, but GCC will cry if it's not here */ return 0; } libtelnet-0.23/util/telnet-test.c000066400000000000000000000163431336202271100170150ustar00rootroot00000000000000/* * Sean Middleditch * sean@sourcemud.org * * The author or authors of this code dedicate any and all copyright interest * in this code to the public domain. We make this dedication for the benefit * of the public at large and to the detriment of our heirs and successors. We * intend this dedication to be an overt act of relinquishment in perpetuity of * all present and future rights to this code under copyright law. */ #include #include #include #include #include "libtelnet.h" static const telnet_telopt_t telopts[] = { { TELNET_TELOPT_COMPRESS2, TELNET_WILL, TELNET_DONT }, { TELNET_TELOPT_ZMP, TELNET_WILL, TELNET_DONT }, { TELNET_TELOPT_MSSP, TELNET_WILL, TELNET_DONT }, { TELNET_TELOPT_NEW_ENVIRON, TELNET_WILL, TELNET_DONT }, { TELNET_TELOPT_TTYPE, TELNET_WILL, TELNET_DONT }, { -1, 0, 0 } }; static const char *get_cmd(unsigned char cmd) { static char buffer[4]; switch (cmd) { case 255: return "IAC"; case 254: return "DONT"; case 253: return "DO"; case 252: return "WONT"; case 251: return "WILL"; case 250: return "SB"; case 249: return "GA"; case 248: return "EL"; case 247: return "EC"; case 246: return "AYT"; case 245: return "AO"; case 244: return "IP"; case 243: return "BREAK"; case 242: return "DM"; case 241: return "NOP"; case 240: return "SE"; case 239: return "EOR"; case 238: return "ABORT"; case 237: return "SUSP"; case 236: return "xEOF"; default: snprintf(buffer, sizeof(buffer), "%d", (int)cmd); return buffer; } } static const char *get_opt(unsigned char opt) { switch (opt) { case 0: return "BINARY"; case 1: return "ECHO"; case 2: return "RCP"; case 3: return "SGA"; case 4: return "NAMS"; case 5: return "STATUS"; case 6: return "TM"; case 7: return "RCTE"; case 8: return "NAOL"; case 9: return "NAOP"; case 10: return "NAOCRD"; case 11: return "NAOHTS"; case 12: return "NAOHTD"; case 13: return "NAOFFD"; case 14: return "NAOVTS"; case 15: return "NAOVTD"; case 16: return "NAOLFD"; case 17: return "XASCII"; case 18: return "LOGOUT"; case 19: return "BM"; case 20: return "DET"; case 21: return "SUPDUP"; case 22: return "SUPDUPOUTPUT"; case 23: return "SNDLOC"; case 24: return "TTYPE"; case 25: return "EOR"; case 26: return "TUID"; case 27: return "OUTMRK"; case 28: return "TTYLOC"; case 29: return "3270REGIME"; case 30: return "X3PAD"; case 31: return "NAWS"; case 32: return "TSPEED"; case 33: return "LFLOW"; case 34: return "LINEMODE"; case 35: return "XDISPLOC"; case 36: return "ENVIRON"; case 37: return "AUTHENTICATION"; case 38: return "ENCRYPT"; case 39: return "NEW-ENVIRON"; case 70: return "MSSP"; case 85: return "COMPRESS"; case 86: return "COMPRESS2"; case 93: return "ZMP"; case 255: return "EXOPL"; default: return "unknown"; } } static void decode(char *buffer, size_t *size) { const char *in = buffer, *end = buffer + *size; char *out = buffer; int c; while (in != end) { if (*in == '%') { ++in; if (in == end) { break; } if (*in == '%') { *out = '%'; } else { if (isdigit(*in)) { c = *in - '0'; } else { c = *in - 'A' + 10; } ++in; if (in == end) { break; } c *= 16; if (isdigit(*in)) { c += *in - '0'; } else { c += *in - 'A' + 10; } *out = c; } ++out; } else if (isprint(*in)) { *out = *in; ++out; } ++in; } *out = '\0'; *size = out - buffer; } static void print_encode(const char *buffer, size_t size) { const char *in = buffer, *end = buffer + size; while (in != end) { if (*in == '%') { printf("%%%%"); } else if (isprint(*in)) { printf("%c", *in); } else { printf("%%%02X", *in); } ++in; } } static void event_print(telnet_t *telnet, telnet_event_t *ev, void *ud) { size_t i; switch (ev->type) { case TELNET_EV_DATA: printf("DATA [%zi] ==> ", ev->data.size); print_encode(ev->data.buffer, ev->data.size); printf("\n"); break; case TELNET_EV_SEND: break; case TELNET_EV_IAC: printf("IAC %d (%s)\n", (int)ev->iac.cmd, get_cmd(ev->iac.cmd)); break; case TELNET_EV_WILL: printf("WILL %d (%s)\n", (int)ev->neg.telopt, get_opt(ev->neg.telopt)); break; case TELNET_EV_WONT: printf("WONT %d (%s)\n", (int)ev->neg.telopt, get_opt(ev->neg.telopt)); break; case TELNET_EV_DO: printf("DO %d (%s)\n", (int)ev->neg.telopt, get_opt(ev->neg.telopt)); break; case TELNET_EV_DONT: printf("DONT %d (%s)\n", (int)ev->neg.telopt, get_opt(ev->neg.telopt)); break; case TELNET_EV_SUBNEGOTIATION: switch (ev->sub.telopt) { case TELNET_TELOPT_ENVIRON: case TELNET_TELOPT_NEW_ENVIRON: case TELNET_TELOPT_TTYPE: case TELNET_TELOPT_ZMP: case TELNET_TELOPT_MSSP: /* print nothing */ break; default: printf("SUB %d (%s) [%zi]\n", (int)ev->sub.telopt, get_opt(ev->sub.telopt), ev->sub.size); break; } break; case TELNET_EV_ZMP: printf("ZMP (%s) [%zi]\n", ev->zmp.argv[0], ev->zmp.argc); break; case TELNET_EV_TTYPE: printf("TTYPE %s %s\n", ev->ttype.cmd ? "SEND" : "IS", ev->ttype.name ? ev->ttype.name : ""); break; /* ENVIRON/NEW-ENVIRON commands */ case TELNET_EV_ENVIRON: printf("ENVIRON [%zi parts] ==> %s", ev->environ.size, ev->environ.cmd == TELNET_ENVIRON_IS ? "IS" : (ev->environ.cmd == TELNET_ENVIRON_SEND ? "SEND" : "INFO")); for (i = 0; i != ev->environ.size; ++i) { printf(" %s \"", ev->environ.values[i].type == TELNET_ENVIRON_VAR ? "VAR" : "USERVAR"); if (ev->environ.values[i].var != 0) { print_encode(ev->environ.values[i].var, strlen(ev->environ.values[i].var)); } printf("\""); if (ev->environ.cmd != TELNET_ENVIRON_SEND) { printf("=\""); if (ev->environ.values[i].value != 0) { print_encode(ev->environ.values[i].value, strlen(ev->environ.values[i].value)); } printf("\""); } } printf("\n"); break; case TELNET_EV_MSSP: printf("MSSP [%zi] ==>", ev->mssp.size); for (i = 0; i != ev->mssp.size; ++i) { printf(" \""); print_encode(ev->mssp.values[i].var, strlen(ev->mssp.values[i].var)); printf("\"=\""); print_encode(ev->mssp.values[i].value, strlen(ev->mssp.values[i].value)); printf("\""); } printf("\n"); break; case TELNET_EV_COMPRESS: printf("COMPRESSION %s\n", ev->compress.state ? "ON" : "OFF"); break; case TELNET_EV_WARNING: printf("WARNING: %s\n", ev->error.msg); break; case TELNET_EV_ERROR: printf("ERROR: %s\n", ev->error.msg); break; } } int main(int argc, char** argv) { FILE *fh; telnet_t *telnet; char buffer[4096]; size_t len; /* check for a requested input file */ if (argc != 2) { fprintf(stderr, "Usage: telnet-test [test file]\n"); return 1; } /* open requested file */ if ((fh = fopen(argv[1], "rt")) == NULL) { fprintf(stderr, "Failed to open %s: %s\n", argv[1], strerror(errno)); return 2; } /* create telnet parser instance */ if ((telnet = telnet_init(telopts, event_print, 0, NULL)) == 0) { fprintf(stderr, "Failed to initialize libtelnet: %s\n", strerror(errno)); return 3; } /* read input until we hit EOF or marker */ while (fgets(buffer, sizeof(buffer), fh) != NULL && strcmp(buffer, "%%\n") != 0) { if (buffer[0] != '#') { len = strlen(buffer); decode(buffer, &len); telnet_recv(telnet, buffer, len); } } /* clean up */ telnet_free(telnet); fclose(fh); return 0; }